/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html, body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #323232;
}

.modal-open {
  overflow: hidden;
  height: 100vh;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1140px;
}
.container--fluid {
  padding: unset;
  max-width: unset;
  width: 100%;
}

p {
  line-height: 1.6875;
  letter-spacing: 1.15px;
}

p + p {
  margin-top: 20px;
}

.logo, a.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #323232;
}
.logo__txt, a.logo__txt {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .logo__txt, a.logo__txt {
    font-size: 20px;
  }
  p + p {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .logo__txt, a.logo__txt {
    font-size: 18px;
  }
}
.title-1, .title-2, .title-4 {
  font-weight: 600;
}

.title-1, .title-2 {
  letter-spacing: 0.8px;
}

.title-3, .title-4 {
  letter-spacing: 0.5px;
}

.title-1 {
  font-size: 54px;
  line-height: 1.4629;
}

.title-2 {
  font-size: 42px;
  line-height: 1.4761;
}

.title-3 {
  font-size: 24px;
  font-weight: 600;
}

.title-4 {
  font-size: 21px;
}

@media (max-width: 1140px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 30px;
  }
  .title-3 {
    font-size: 20px;
  }
  .title-4 {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .title-1 {
    font-size: 30px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 26px;
  }
  .title-2 {
    font-size: 26px;
  }
  .title-3 {
    font-size: 18px;
  }
  .title-4 {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .title-1 {
    font-size: 24px;
  }
  .title-3 {
    font-size: 16px;
  }
}
.btn {
  display: inline-block;
  padding: 18px 39px 16px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: 29px;
  transition: all 0.2s ease-in;
}

.btn--orange {
  color: #fff;
  background-color: #f78434;
}
.btn--orange:hover {
  color: #f78434;
  background-color: #fff;
}

.btn--white {
  color: #f78434;
  background-color: #fff;
}
.btn--white:hover {
  color: #fff;
  background-color: #f78434;
}

@media (max-width: 1140px) {
  .btn {
    padding: 15px 30px;
  }
}
@media (max-width: 992px) {
  .btn {
    padding: 13px 25px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 10px 22px;
  }
}
.header {
  padding: 35px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__burger {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.header__burger:before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("./../img/icons/burger-menu.svg");
  background-size: 100%;
}

@media (max-width: 1024px) {
  .header {
    padding: 25px 0;
  }
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0%;
    background-color: #fff;
    overflow: hidden;
    z-index: 9;
    transition: 0.3s ease-in;
  }
  .header__nav--show {
    height: 100%;
  }
  .header__burger {
    display: inline-block;
    z-index: 99;
  }
}
.nav__list {
  display: flex;
  gap: 42px;
}

.nav__link {
  color: #323232;
  transition: color 0.2s ease-in;
}
.nav__link:hover {
  color: #f78434;
}
.nav__link--active {
  font-weight: 600;
  color: #f78434;
}

@media (max-width: 1024px) {
  .nav__list {
    gap: 30px;
  }
  .nav__link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.hero__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__content {
  max-width: 467px;
}

.hero__title {
  position: relative;
  margin: 0 -160px 25px 0;
  z-index: 1;
}

.hero__desc {
  margin-bottom: 42px;
}

.hero__img img {
  border-radius: 40px 40px 40px 0;
}

@media (max-width: 1140px) {
  .hero__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    max-width: 100%;
  }
  .hero__title {
    margin: unset;
  }
  .hero__desc {
    max-width: 470px;
    margin-bottom: unset;
  }
}
@media (max-width: 992px) {
  .hero__title {
    max-width: 370px;
  }
  .hero__desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 30px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .hero__content {
    margin: 0 auto;
    max-width: 340px;
    text-align: center;
  }
  .hero__title {
    max-width: 340px;
  }
  .hero__img {
    display: none;
  }
}
.form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-radius: 29px;
  box-shadow: 0px 17px 42px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  transition: box-shadow 0.2s ease-in;
}
.form--active {
  box-shadow: 0px 17px 42px rgba(247, 132, 52, 0.27);
}

.form__label {
  position: relative;
  padding-left: 72px;
  flex-grow: 1;
}
.form__label::before {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 19px;
  background-image: url("./../img/icons/mail.svg");
}

.form__input::placeholder {
  color: #bbb;
}

@media (max-width: 992px) {
  .form__input {
    font-size: 14px;
  }
}
@media (max-width: 426px) {
  .form {
    flex-direction: column;
    gap: 10px;
    box-shadow: unset;
  }
  .form--active {
    box-shadow: unset;
  }
  .form .btn {
    width: 290px;
  }
  .form__label {
    padding: 10px 10px 10px 72px;
    width: 290px;
    box-shadow: 0px 17px 42px rgba(0, 0, 0, 0.12);
    border-radius: 29px;
  }
}
.clients {
  padding: 60px 0;
}

.clients__list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  column-gap: 90px;
}

@media (max-width: 1024px) {
  .clients {
    padding: 30px 0;
  }
  .clients__list {
    column-gap: 75px;
  }
}
@media (max-width: 768px) {
  .clients__list {
    column-gap: 30px;
  }
}
@media (max-width: 600px) {
  .clients__list {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 20px 30px;
  }
  .client__img {
    max-width: 120px;
  }
}
.objects {
  padding: 80px 0;
}

.objects__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  overflow-x: hidden;
}

.objects__img {
  position: relative;
  display: flex;
  column-gap: 32px;
}

.objects__content {
  padding-right: 150px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 524px;
}

@media (max-width: 1250px) {
  .objects__container {
    justify-content: flex-end;
    gap: 100px;
  }
  .objects__img {
    column-gap: 20px;
  }
  .objects__content {
    padding-right: 15px;
    row-gap: 20px;
    max-width: 389px;
  }
}
@media (max-width: 1024px) {
  .objects {
    padding: 60px 0;
  }
  .objects__container {
    gap: 40px;
  }
  .objects__img {
    column-gap: 15px;
  }
  .objects__content {
    row-gap: 10px;
    max-width: 380px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .objects {
    padding: 40px 0;
  }
  .objects__container {
    gap: 15px;
  }
  .objects__img {
    column-gap: 10px;
  }
  .objects__content {
    max-width: 320px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .objects__container {
    padding: 0 15px;
    flex-direction: column;
    gap: 20px;
  }
  .objects__img {
    order: 2;
  }
  .objects__content {
    align-items: center;
    max-width: 500px;
    font-size: 14px;
    text-align: center;
  }
  .objects__title {
    max-width: 290px;
  }
}
.object {
  width: 385px;
}
.object img {
  border-radius: 20px 20px 0 20px;
}
.object--first img {
  border-radius: 20px;
}

.object__card {
  position: absolute;
  bottom: 87px;
  right: -46px;
  padding: 32px 29px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
}

.object__card-content {
  max-width: 177px;
}

.object__card-title {
  font-weight: 700;
  letter-spacing: 0.8px;
}

@media (max-width: 1024px) {
  .object {
    width: 300px;
  }
  .object__card {
    bottom: 10px;
    right: 13px;
    padding: 20px;
    gap: 10px;
  }
  .object__card-content {
    font-size: 14px;
  }
  .object__card-title {
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .object {
    width: 250px;
  }
  .object__card {
    bottom: 10px;
    right: 14.5px;
    padding: 15px;
  }
  .object__card-content {
    max-width: 136px;
    font-size: 12px;
  }
  .object__card-title {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .object__card {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cta {
  padding: 100px 0;
}

.cta__block {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  border-radius: 20px;
  background-color: #58bebf;
  overflow: hidden;
}
.cta__block::before, .cta__block::after {
  position: absolute;
  content: "";
  width: 304px;
  height: 304px;
  background-repeat: no-repeat;
}
.cta__block::before {
  top: -100px;
  right: -75px;
  background-image: url("./../img/cta/circle-top.svg");
}
.cta__block::after {
  left: 50%;
  bottom: -210px;
  transform: translateX(-50%);
  background-image: url("./../img/cta/circle-bottom.svg");
}

.cta__img {
  margin-top: 59px;
  padding: 25px 25px 0 0;
  border-radius: 0 21px 0 0;
  background-color: #fff;
}

.cta__content {
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.cta__title {
  margin-bottom: 15px;
}

.cta__desc {
  margin-bottom: 30px;
}

.cta__buttons {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .cta {
    padding: 60px 0;
  }
  .cta__block::before, .cta__block::after {
    display: none;
  }
  .cta__img {
    padding: 10px;
  }
  .cta__content {
    padding: 0 40px 15px;
    font-size: 14px;
  }
  .cta__desc {
    margin-bottom: 15px;
  }
  .cta__buttons {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding: 30px 0;
  }
  .cta__block {
    padding: 15px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .cta__img {
    margin-top: unset;
    grid-row-start: 2;
    border-radius: 20px;
  }
  .cta__content {
    padding: unset;
    align-items: center;
    text-align: center;
  }
  .cta__desc {
    max-width: 320px;
  }
}
@media (max-width: 350px) {
  .cta__buttons {
    flex-direction: column;
    gap: 10px;
  }
  .cta__buttons .btn {
    width: 260px;
  }
}
.serve {
  position: relative;
  padding: 80px 0;
}
.serve::before {
  position: absolute;
  top: -50%;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f5f6fa;
  z-index: -1;
}

.serve__header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.serve__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.serve__item {
  box-shadow: 0px 40px 52px -22px rgba(0, 0, 0, 0.08);
}

.serve__link {
  padding: 40px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  color: #323232;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.serve__link--active {
  color: #fff;
  background-color: #f78434;
}
.serve__link--active svg {
  fill: #fff;
}
.serve__link:hover {
  color: #fff;
  background-color: #f78434;
}
.serve__link:hover svg {
  fill: #fff;
}

@media (max-width: 1024px) {
  .serve {
    padding: 60px 0;
  }
  .serve__header {
    margin-bottom: 40px;
  }
  .serve__list {
    gap: 20px;
  }
  .serve__link {
    padding: 25px 60px;
    row-gap: 15px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .serve {
    padding: 30px 0;
  }
  .serve__header {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
  }
  .serve__link {
    padding: 20px 15px;
    row-gap: 10px;
  }
  .serve__link svg {
    width: 45px;
  }
}
@media (max-width: 600px) {
  .serve__list {
    grid-template-columns: 1fr;
  }
  .serve__link {
    padding: 15px;
  }
  .serve__link svg {
    width: 40px;
  }
  .serve__link-desc {
    max-width: 270px;
  }
}
.benefits {
  padding: 80px 0;
}

.benefits__header {
  margin-bottom: 60px;
  text-align: center;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  text-align: center;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #def2f2;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.benefit__icon svg {
  fill: #58bebf;
}
.benefit__icon:hover {
  background-color: #f78434;
}
.benefit__icon:hover svg {
  fill: #fff;
}

@media (max-width: 1024px) {
  .benefits {
    padding: 60px 0;
  }
  .benefits__header {
    margin-bottom: 40px;
  }
  .benefit {
    row-gap: 10px;
  }
  .benefit__icon {
    width: 50px;
    height: 50px;
  }
  .benefit__icon svg {
    width: 25px;
  }
  .benefit__desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .benefits {
    padding: 30px 0;
  }
  .benefits__header {
    margin-bottom: 20px;
  }
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
  }
  .benefit__desc {
    max-width: 240px;
  }
}
@media (max-width: 600px) {
  .benefits__list {
    gap: 20px;
  }
  .benefit__icon {
    width: 40px;
    height: 40px;
  }
  .benefit__icon svg {
    width: 20px;
  }
}
@media (max-width: 350px) {
  .benefits__list {
    grid-template-columns: 1fr;
  }
}
.reviews {
  padding: 80px 0;
}

.reviews__header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews__title {
  max-width: 460px;
}

.reviews__subtitle {
  max-width: 398px;
  color: #606060;
}

.reviews__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.reviews__list::after {
  position: absolute;
  top: -40px;
  right: -40px;
  content: "";
  width: 80px;
  height: 80px;
  background-image: url("./../img/reviews/design-element.svg");
  background-size: 100%;
}

.review__link {
  display: inline-block;
  color: #323232;
  transition: all 0.2s ease-in;
}
.review__link:hover {
  box-shadow: 0px 10px 52px rgba(0, 0, 0, 0.08);
}
.review__link:hover .review__city {
  color: #f78434;
}

.review__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.review__img {
  position: relative;
}

.review__btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.review__btn:hover {
  background-color: #f78434;
}
.review__btn:hover svg {
  fill: #fff;
}
.review__btn svg {
  fill: #f78434;
}

.review__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.review__city {
  color: #58bebf;
  line-height: 1.6875;
  letter-spacing: 1.15px;
}

@media (max-width: 1200px) {
  .reviews__list::after {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  .reviews {
    padding: 60px 0;
  }
  .reviews__header {
    margin-bottom: 40px;
  }
  .reviews__title {
    max-width: 400px;
  }
  .reviews__subtitle {
    max-width: 350px;
    font-size: 14px;
  }
  .reviews__list {
    gap: 20px;
  }
  .review__content {
    padding: 15px 20px;
    row-gap: 5px;
    font-size: 14px;
  }
  .review__btn {
    right: 15px;
    bottom: 15px;
    width: 35px;
    height: 35px;
  }
  .review__name {
    font-size: 14px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .reviews {
    padding: 30px 0;
  }
  .reviews__header {
    margin-bottom: 20px;
    flex-direction: column;
    row-gap: 10px;
  }
  .reviews__title {
    max-width: 320px;
    text-align: center;
  }
  .reviews__subtitle {
    max-width: 343px;
    text-align: center;
  }
  .reviews__list {
    grid-template-columns: auto;
    justify-content: center;
    gap: 20px;
  }
  .reviews__list::after {
    display: none;
  }
  .review__content {
    padding: 10px 0;
    max-width: 290px;
    row-gap: 5px;
  }
}
.contact {
  background-color: #58bebf;
  background-image: url("./../img/contact/mask.png");
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
}

.contact__container {
  display: flex;
  align-items: center;
  gap: 95px;
}

.contact__content {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #fff;
}

.contact__img {
  position: relative;
  padding-left: 80px;
}
.contact__img img {
  position: relative;
  z-index: 1;
}
.contact__img::before {
  position: absolute;
  left: 0;
  bottom: -372px;
  content: "";
  width: 743px;
  height: 743px;
  background-image: url("./../img/contact/circle.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 1024px) {
  .contact__container {
    justify-content: center;
    gap: 30px;
  }
  .contact__content {
    max-width: 320px;
    row-gap: 15px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .contact__container {
    gap: 20px;
  }
  .contact__content {
    max-width: 280px;
    row-gap: 10px;
  }
}
@media (max-width: 600px) {
  .contact {
    padding: 30px 0;
  }
  .contact__container {
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
  .contact__img {
    display: none;
  }
}
.footer {
  padding: 60px 0;
}

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

.footer__nav-wrapper {
  display: flex;
  column-gap: 80px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer__nav--social {
  max-width: 270px;
  font-size: 14px;
}

.footer__social-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social-link {
  display: flex;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer__nav-link {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.5px;
  color: #323232;
  transition: color 0.2s ease-in;
}
.footer__nav-link:hover {
  color: #f78434;
}

@media (max-width: 1024px) {
  .footer {
    padding: 30px 0;
  }
  .footer__container, .footer__nav-wrapper {
    flex-direction: column;
    row-gap: 30px;
  }
  .footer__nav {
    row-gap: 10px;
  }
  .footer__nav-list {
    row-gap: 5px;
  }
  .footer__nav-link {
    line-height: 1.3;
  }
}/*# sourceMappingURL=main.css.map */