@import url("normalize.css");

body {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 14px;
}


h1 {
  margin: 0;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px 0;
}
/* Nav */
.header {
  padding-top: 46px;
  background-color: #f1f1f1;
}

.header__row {
  display: flex;
  justify-content: space-between;
}

.logo {
  line-height: 1;
  font-size: 32px;
  font-weight: 700;
  padding: 0 12px 3px;
  position: relative;
  margin: 0 -12px -3px;
}

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

.header__list {
  display: flex;
  column-gap: 50px;
  z-index: 5
}

.nav__btn {
  display: none;
  position: absolute;
  top: 46px;
  right: 30px;
  z-index: 120;
  background: none;
  border: none;
}

.nav__list {
  list-style: none;
}
.nav__link {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.active {
  color: #606060;
}

/* Header */
.header__content {
  display: flex;
  justify-content: space-between;

  column-gap: 30px;
}
.header__heading {
  max-width: 500px;
  margin-top: 200px;
}

.header__heading p {
  font-weight: 400;
  line-height: 2;
}
.header__title {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}
.header__img {
  margin-top: 76px;
  transform: translateY(3px);
}

/* Service */
.service {
  padding: 90px 0;
}

.service__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
}
.service__card {
  max-width: 370px;
}
.service__title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.service__card p {
  line-height: 2;
  
}
/* Portfolio */
.portfolio {
  background-color: #f1f1f1;
  padding: 90px 0 90px 0;
  text-align: center;
}
.title {
  font-weight: 600;
  font-size: 34px;
}
.portfolio__title {
  margin-bottom: 70px;
}

.portfolio__card + .portfolio__card {
  margin-top: 90px;
}

.card__img {
  margin-bottom: 40px;
  max-width: 100%;
}

.portfolio__card-title {
  font-size: 18px;
  font-weight: 400;
}

.portfolio__card-title a {
  color: #070707;
  text-decoration: underline;
  margin-bottom: 90px;
}

.contacts {
  background-color: #fff;
  text-align: center;
  padding: 90px 0;
}

.contacts__content p {
  font-size: 18px;
  margin-top: 40px;
}
.contacts__link {
  margin-top: 47px;
}

.contacts__btn {
  text-decoration: none;
  color: #fff;
  background-color: #070707;
  padding: 7px 22px;
  border-radius: 30px;
}
.contacts__btn:hover {
  background-color: #272020;
  transition: 0.3s;
}
.contacts__social {
  display: flex;
  column-gap: 60px;
  margin-top: 87px;
  justify-content: center;
}
.contacts__text {
  color: #828282;
  margin-top: 40px;
}
