@font-face {
  font-family: 'Poppins';
  src: local('Poppins'), url(/fonts/Poppins-Regular.ttf) format(truetype),
    url(/fonts/Poppins-Medium.ttf) format(truetype),
    url(/fonts/Poppins-SemiBold.ttf) format(truetype),
    url(/fonts/Poppins-Bold.ttf) format(truetype);
}

body {
  font-family: 'Poppins', sans-serif;
  color: black;
  background-color: #f1f1f1;
  font-size: 14px;
}

.container {
  max-width: 1230px;
  padding: 0 30px;
  margin: 0 auto;
}

/* HEADER */

.header-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.logo {
  position: relative;
  padding: 0 12px 3px 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: black;
}

.logo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  display: block;
  background-color: #fda300;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.nav-list {
  display: flex;
  column-gap: 50px;
  font-weight: 500;
  font-size: 14px;
}

.nav-button {
  display: none;
}

.nav-link {
  color: #000;
}

.nav-link.active {
  color: #606060;
}

.header-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 76px;
}
.header-content {
  max-width: 500px;
  margin-top: 124px;
}
.header-content p {
  line-height: 2;
}
.header-heading {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}

.services {
  padding: 90px 0;
}
.services-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.services-card p {
  line-height: 2;
}
.services-card-img {
  margin-bottom: 30px;
}
.services-card-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio {
  padding: 90px 0;
}
.portfolio-title {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 70px;
  text-align: center;
}
.project {
  text-align: center;
}
.project + .project {
  margin-top: 90px;
}
.project-img {
  margin-bottom: 40px;
}
.project-title {
  font-size: 18px;
}
.project-title a {
  color: #000;
  text-decoration: underline;
}

.contacts {
  text-align: center;
  padding: 90px 0;
}
.contacts-title {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 40px;
}

.footer-dsc {
  font-size: 18px;
  margin-bottom: 40px;
}

.contacts-btn {
  margin-bottom: 80px;
}

.btn {
  padding: 7px 22px;
  background-color: black;
  color: #fff;
  border-radius: 30px;
  transition: 0.2s ease-in;
}

.btn:hover,
.btn:focus {
  background-color: #414141;
}

.btn:active {
  position: relative;
  top: 2px;
}

.social {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.contacts-footer {
  font-size: 14px;
  color: #828282;
}
