:root {
  --white: #ffffff;
  --black: #272727;
  --gray: #e4e0e0;
  --gray-light: #f2f2f2;
  --gray-dark: #686868;
  --orange: #e88b1a;
  --red: #e04e4e;
  --bg_dark: #383838;
  --hover_color: #ea9c3c;
  --main-font: "Inter", sans-serif;
  --timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", sans-serif;
  list-style-type: none;
  outline: none;
}

body,
html {
  font-family: "Inter", sans-serif;
  color: var(--black);
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  scroll-behavior: smooth;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  color: var(--black);
}

input:focus-visible {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.section {
  padding-top: 58px;
  padding-bottom: 58px;
  background-color: var(--white);
  overflow: hidden;
}

.section__dark {
  background-color: var(--bg_dark);
  overflow: hidden;
}

.flex {
  display: flex;
}

.white {
  color: var(--white);
}

.gray {
  color: var(--gray);
}

h1 {
  font-weight: 700;
  font-size: 30.5px;
  color: var(--black);
  overflow: hidden;
}

h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: var(--black);
  text-align: center;
}

h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--black);
  transition: 0.3s linear;
}

header {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 89px;
  padding: 26px 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: 0 auto;
  position: fixed;
  z-index: 100;
  transition: 0.3s linear;
}
header.unactive {
  background: transparent;
}
header.sticky {
  background-color: var(--white);
  filter: drop-shadow(2px 11px 20px rgba(146, 146, 146, 0.11));
}

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

.logo__link {
  text-decoration: none;
  cursor: pointer;
}

.logo__img {
  width: 205px;
  height: 36.16px;
  opacity: 0;
  transition: all 0.3s linear;
  animation: down 0.5s linear forwards;
}

@keyframes down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navigation__list {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}

.navigation__list-item:hover > .header__link {
  color: var(--orange);
}
.page_link-wrapper {
  display: inline-flex;
  align-items: center;
}

.header__link,
.page_link {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  white-space: nowrap;
  transition: all 0.3s linear;
}
.page_link {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
}
.icon_check,
.icon_check-wrapper {
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.icon_check-wrapper {
  border-radius: 50%;
  border: 1px solid var(--orange);
  background: transparent;
}
.lang__mob-wrapper.active .icon_check-wrapper {
  background-color: var(--orange);
  background-image: url("../images/checked.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
}
.lang__mob-wrapper {
  width: 100%;
  outline: none;
  background: transparent;
  padding: 20px 0px 20px 14px;
}
.arrow_up,
.dropbtn_img {
  width: 24px;
  height: 24px;
  fill: var(--black);
}
.img_flag {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.dropbtn {
  background-color: transparent;
  color: var(--black);
  font-weight: 400;
  font-size: 18px;
  border: none;
  outline: none !important;
  width: 82px;
  padding: 0;
}

.language_wrapper {
  display: inline-flex;
  padding: 2px;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown:hover .dropdown-content,
.dropdown:focus .dropdown-content {
  display: flex;
}
.menu-button {
  display: none;
}

.section__main {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 98px;
  background-image: linear-gradient(#584b381a, #584b38cc),
    url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.main__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.section__main-title {
  text-align: center;
}

.orange {
  color: var(--orange);
}

.text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  font-feature-settings: "case" on;
}

/***section About**/
.section__about {
  padding-top: 160px;
  overflow-x: hidden;
  background-image: url(../images/top_line.png);
  background-repeat: no-repeat;
  background-size: 260px;
  background-position: left -60px top;
  overflow-y: inherit;
  overflow-x: hidden;
}

.section__about-wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
}

.about__img {
  width: 100%;
  height: 100%;
}

.desc__prof {
  font-weight: 400;
  font-size: 14px;
  line-height: 145.7%;
  font-feature-settings: "case";
}

.list__prof {
  display: flex;
  flex-direction: column;
}

.list__prof-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
  width: 100%;
  max-width: 579px;
  cursor: pointer;
  transform: translate(-200%, 0px);
  transition: all 0.3s ease 0s;
}
.list__prof-item:last-child {
  border-bottom: none;
}
.list__prof-item:first-child {
  padding-top: 0;
}
.list__prof.animate .list__prof-item {
  transform: translate(0px, 0px);
}

.list__prof.animate .list__prof-item:nth-child(1) {
  transition: all 0.8s ease 0s;
}

.list__prof.animate .list__prof-item:nth-child(2) {
  transition: all 0.8s ease 0.1s;
}

.list__prof.animate .list__prof-item:nth-child(3) {
  transition: all 0.8s ease 0.2s;
}

.list__prof.animate .list__prof-item:nth-child(4) {
  transition: all 0.8s ease 0.3s;
}
.list__prof.animate .list__prof-item:nth-child(5) {
  transition: all 0.8s ease 0.4s;
}

.desc__prof {
  font-size: 18px;
  line-height: 145.7%;
}
.list__prof-desc-item {
  display: flex;
  gap: 8px;
}
.list__prof-desc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.check_img {
  width: 24px;
  height: 24px;
}

/***section Benefits**/
.section__benefits-title {
  margin-bottom: 16px;
}

.section__benefits-title span {
  position: relative;
  z-index: 0;
}
.section__benefits-sub {
  text-align: center;
  color: var(--gray-dark);
}

.benefits__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px;
  margin-top: 32px;
}

.benefits__list-item {
  width: 100%;
  min-height: 362px;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  filter: drop-shadow(rgba(61, 61, 61, 0.05) 0px 8px 5px);
  padding: 16px;
}

.benefits__list-item-count {
  font-weight: 700;
  font-size: 82px;
  line-height: 84px;
  text-align: center;
}

.benefits__list-item-title {
  font-size: 30px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
}

.benefits__list-item-desc {
  text-align: center;
  margin-top: 20px;
}

/**section Projects***/
.section__projects {
  padding-bottom: 30px;
}

.section__projects-title {
  margin-bottom: 16px;
}
.section__projects-sub {
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 26px !important;
  color: var(--gray-dark);
}
.section__projects-sub-link,
.section__faq-sub-link {
  display: inline-flex;
  align-items: center;
  gap:8px;
  text-decoration: underline;
}
.image__describe-text {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.image__describe-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 145.7%;
  margin-bottom: 4px;
}

.image__describe {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 176px;
  padding: 77px 14px 8px;
  background: linear-gradient(180deg, rgba(67, 51, 32, 0), rgba(67, 51, 32, 1));
  overflow: hidden;
  z-index: 1;
  pointer-events: visible;
  transition: 1s cubic-bezier(0, 0, 1, 1) 300ms;
}

.swiper-pagination-bullet-active {
  background-color: #5f5f5f !important;
}

/***section Reviews**/
.section__reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.section__reviews-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  filter: drop-shadow(rgba(61, 61, 61, 0.05) 0px 8px 5px);
  padding: 24px 16px;
  background: var(--white);
}
.swiper-slide.section__reviews-item {
  width: 410px !important;
  height: 316px !important;
}
.brackets__img,
.avatar__img,
.avatar__wrapper {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.avatar__img,
.avatar__wrapper {
  margin-right: 12px;
}
.brackets__img {
  margin-bottom: 12px;
}

.avatar__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--gray-light);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}
.section__reviews-list {
  font-size: 18px;
}
.section__reviews-context {
  height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/**section FAQ***/
.section__questions-title {
  margin-bottom: 20px;
}
.section__questions-title span {
  position: relative;
}

.section__questions-title span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20px;
  left: -40px;
  background-image: url("../images/line_above_mob.svg");
  background-repeat: no-repeat;
}

.section__questions-sub {
  text-align: center;
  max-width: 541px;
  margin: 0 auto;
  margin-bottom: 26px;
}

.link_email,
.link_whatsup,
.section__faq-sub-link {
  font-weight: 600;
}
.link_email {
  text-decoration: underline;
}

.section__questions-wrapper {
  max-width: 1062px;
  margin: 0 auto;
}

.accordion__list {
  list-style-type: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: height 0.3s linear;
}

.accordion__list.active {
  display: flex;
}

.accordion__item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  outline: none;
  text-decoration: none;
  background: transparent;
  font: inherit;
  color: inherit;
  user-select: none;
  padding: 0;
  border-top: 1px solid var(--gray-light);
  transition: 0.3s linear;
}

.accordion__item:first-child,
.accordion__item.accordion__item_show:first-child {
  border-top: none;
}
.accordion__item:last-child {
  border-bottom: 1px solid var(--gray-light);
}

.accordion__item.accordion__item_show:last-child {
  border-bottom: 1px solid var(--orange);
}

.accordion__item.accordion__item_show {
  border-top: 1px solid var(--orange);
}

.accordion__item.accordion__item_show {
  border-bottom: 1px solid var(--orange);
}

.accordion__item.accordion__item_show + .accordion__item {
  border-top: none;
}

.accordion__header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-right: 23px;
  margin-bottom: 0;
  color: var(--black);
  transition: all 0.3s linear;
}

.visible__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.accordion__item.accordion__item_show > .visible__content .accordion__header {
  color: var(--orange);
}

.accordion__icon-img {
  min-width: 16px;
  height: 8px;
  stroke: var(--black);
  transition: all 0.3s linear;
}

.accordion__icon-img:hover {
  stroke: var(--orange);
}

.accordion__item.accordion__item_show > .visible__content .accordion__icon-img {
  stroke: var(--orange);
  transform: rotateX(180deg);
}

.desc {
  padding-bottom: 20px;
  padding-right: 23px;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

.accordion__item:not(.accordion__item_show) .accordion__body {
  display: none;
}

/**section Contacts***/
.section__contacts .container {
  position: relative;
  z-index: 0;
}

.section__contacts-wrapper {
  max-width: 844px;
  margin: 0 auto;
}

.section__contacts-sub {
  margin-top: 18px;
  margin-bottom: 25px;
  text-align: center;
}

.section__contacts-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.section__contacts-content-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 169px;
}

.section__contacts-content-contact img {
  width: 24px;
  height: 24px;
}

.section__contacts-content-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--orange);
  margin-top: 8px;
  margin-bottom: 8px;
}

.section__contacts-content-text {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 28px;
  text-align: center;
}

.section__contacts-content-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--black);
}

.form__title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-top: 58px;
  margin-bottom: 26px;
}

.form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.input__box,
.textarea__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input__wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.input__wrapper,
.textarea__box {
  gap: 7px;
}

.textarea__box {
  width: 100%;
  margin-bottom: 20px;
}

.form__btn {
  width: 189px;
  height: 45px;
  margin: 0 auto;
}

label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--black);
  cursor: text;
  transition: 0.3s linear;
  pointer-events: none;
}

input {
  width: 100%;
  height: 50px;
  background: transparent;
  border: 1px solid;
  border-color: var(--black);
  border-radius: 12px;
  padding: 10px 16px;
  outline: none;
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  transition: all 0.3s linear;
}

input::placeholder {
  color: transparent;
}

input:focus,
input:active,
textarea:focus,
textarea:active {
  border: 1px solid;
  border-color: var(--orange);
  transition: all 0.3s linear;
}

textarea {
  width: 100%;
  height: 203px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--black);
  border-radius: 12px;
  outline: none;
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  transition: all 0.3s linear;
  resize: none;
}

.error__text {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 5px;
  font-weight: 400;
  font-size: 12px;
  color: var(--red);
  text-align: right;
}
button {
  border: none;
  outline: none;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 13.5px;
  line-height: 16px;
  text-align: center;
  flex-shrink: 1;
  order: 1;
  align-self: stretch;
  box-sizing: border-box;
  white-space: nowrap;
  padding: 7.5px;
  border-radius: 4.5px;
  cursor: pointer;
  transition: 0.3s linear;
}

.primary {
  height: 36px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--orange);
  transition: all 0.3s linear;
}

.primary:hover {
  background-color: var(--hover_color);
}
.submit__btn-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.error__captcha {
  position: absolute;
  top: -26px;
  right: -54px;
  width: 100%;
  height: 5px;
  text-align: right;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: initial;
  overflow: hidden;
  opacity: 1;
  padding: 40px 16px;
  transition: opacity 250ms var(--timing-function);
}

.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--timing-function) 300ms;
  overflow: hidden;
}

button.close-button {
  outline: none;
  border: none;
  background: transparent;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
}

.close-button__icon {
  width: 100%;
  height: 100%;
}

.modal {
  position: relative;
  border-radius: 6px;
  padding: 39px 12px;
  background-color: var(--white);
  width: 306px;
  height: 252px;
  transition: transform 500ms var(--timing-function) 250ms;
}

.backdrop.is-hidden .modal {
  transform: scale(0) rotateX(-90deg);
  transition: transform 500ms var(--timing-function) 250ms;
}

.image__wrapper-answer {
  display: none;
  width: 109px;
  height: 109px;
  margin: 0 auto;
}

.image__wrapper-answer.active {
  display: block;
}

.content__wrapper-answer {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  margin-top: 32px;
  color: var(--black);
}

/****Footer***/
footer {
  width: 100%;
  padding: 24px 0;
  overflow: hidden;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__content-wrapper {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: inline-block;
  cursor: pointer;
  margin-bottom: 38px;
  width: 139px;
  height: 25px;
  transition: scale 0.3s linear;
}

.footer__logo:hover {
  scale: 1.05;
}
.footer__content {
  display: flex;
  gap: 24px;
}
.footer__content-address,
.footer__content-address-contacts {
  display: flex;
  flex-direction: column;
  max-width: 247px;
}

.footer__content-address-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 8px;
}

.footer__content-address-link,
.footer__link {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--gray);
  transition: 0.3s linear;
}

.footer__content-address-link.link-email {
  text-decoration: underline;
}

.footer__list-links {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row: 1fr 1fr 1fr;
  column-gap: 24px;
  row-gap: 16px;
}

.footer__list-links-item {
  position: relative;
  width: 189px;
}

.footer__link:hover {
  color: var(--orange);
}

@media screen and (max-width: 1089px) {
  section {
    overflow: hidden;
  }
  header {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    padding: 22px 0px;
    background-color: transparent !important;
    background: none;
  }

  .header__logo {
    position: relative;
    width: 100%;
    height: 100%;
  }

  header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo__img {
    display: none;
  }

  .logo__link {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    transition: 0.3s linear;
  }

  .logo__link.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .logo__img-mob {
    width: 139px;
    height: 24.52px;
    fill: var(--orange);
    stroke: var(--orange);
    transition: 0.3s linear;
  }

  .header__link,
  .page_link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-light);
    width: 100%;
    height: 64px;
    text-align: left;
  }
  .dropdown {
    display: none;
  }
  .menu-button {
    display: inline-flex;
    width: 59px;
    height: 37px;
    padding: 10px;
    border: none;
    background-color: transparent;
    background-image: url(../images/burger.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }

  .menu-button.is-open {
    padding: 0;
    background-image: url(../images/icons-close.svg);
    background-size: 20px 20px;
  }

  .navigation__menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 67px;
    left: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-align: center;
    width: 100%;
    height: calc(100vh - 89px);
    background-color: transparent;
  }

  .navigation__menu.is-open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .arrow_up {
    fill: var(--white);
  }
  .main__img {
    display: none;
  }

  .text__main {
    color: var(--white);
  }

  .logo_img {
    width: 139px;
    height: 25px;
  }

  .main__content.unactive {
    display: none;
  }

  .container_header {
    position: relative;
  }

  .mob__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: transparent;
    transition: 0.3s linear;
  }

  .mob__overlay.active {
    background: #584b38e6;
  }

  .navigation__list {
    flex-direction: column;
    justify-content: flex-start;
  }

  .navigation__list-item {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-bottom: 0.5px solid rgb(140, 140, 140);
  }
  .navigation__list-item.lang__mob {
    padding: 0;
  }

  .navigation__list-item.animate,
  .navigation__list-item.page_link-wrapper.animate,
  .navigation__list-item.lang__mob.animate {
    opacity: 0;
    transform: translateY(100%);
    animation: up 0.3s ease 0s 1 forwards;
  }

  .navigation__list-item.animate:nth-child(2) {
    animation-delay: 0.2s;
  }

  .navigation__list-item.animate:nth-child(3) {
    animation-delay: 0.4s;
  }

  .navigation__list-item.animate:nth-child(4) {
    animation-delay: 0.6s;
  }

  .navigation__list-item.animate:nth-child(5) {
    animation-delay: 0.8s;
  }

  .navigation__list-item.animate:nth-child(6) {
    animation-delay: 1s;
  }
  .navigation__list-item.animate:nth-child(7) {
    animation-delay: 1.2s;
  }
  .navigation__list-item.animate:nth-child(8) {
    animation-delay: 1.4s;
  }
  .navigation__list-item.animate:nth-child(9) {
    animation-delay: 1.6s;
  }

  @keyframes up {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body.open {
    overflow: hidden;
  }

  .button_down {
    display: none;
  }

  .about__img.about__img-desktop {
    display: none;
  }

  .list__prof {
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .list__prof-item {
    max-width: 100%;
  }
  .desc__prof {
    font-size: 16px;
  }
  .section__main {
    background-image: linear-gradient(#584b381a #584b38cc),
      url("../images/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .section__about {
    padding-top: 63px;
    padding-bottom: 29px;
  }

  .section__about-wrapper {
    display: flex;
    flex-direction: column;
  }
  .section__about-title {
    margin-bottom: 32px;
  }
  .section__benefits {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .benefits__list,
  .section__reviews-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .benefits__list-item-count {
    font-size: 41px;
    line-height: 142.7%;
    margin-bottom: 10px;
  }

  .benefits__list-item-title {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 10px;
  }

  .benefits__list-item-desc.text {
    font-size: 14px;
    line-height: 145.7%;
  }

  .section__projects {
    padding-top: 64px;
  }
  .section__questions {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .section__reviews {
    padding-top: 12px;
    padding-bottom: 17px;
  }
  .section__reviews-context {
    height: 292px;
  }
  .section__contacts {
    background-image: url("../images/top_line.png");
    background-repeat: no-repeat;
    background-position: right -12px top;
    background-size: 180px;
    padding-top: 81px;
  }
  .swiper__desk {
    display: none;
  }

  .wrapper__image {
    position: relative;
    text-decoration: none;
    margin-left: 10px;
    height: 328px;
  }

  .wrapper__image:first-child {
    margin-left: 0;
  }

  .image__project {
    width: 358px;
    height: 328px;
    object-fit: cover;
  }

  .swiper-slide {
    width: 358px !important;
    height: 328px !important;
  }
  .swiper-slide.section__reviews-item {
    width: 336px !important;
    height: 376px !important;
  }
  .swiper-wrapper {
    padding-bottom: 50px;
  }

  span.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin-left: 12px !important;
  }

  .submit__btn-wrapper {
    margin-top: 14px;
  }
  .footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 550px) {
  .section__main {
    background-image: linear-gradient(#584b38cc, #584b381a),
      url("../images/bg_mob.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .text,
  .desc__prof {
    font-size: 18px;
    line-height: 22px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
    line-height: 51px;
  }

  h3 {
    font-size: 24px;
    line-height: 26px;
  }

  .section__benefits-title {
    margin-bottom: 20px;
  }

  .section__benefits-title span::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -25px;
    left: 100px;
    background-image: url("../images/orange_border.svg");
    background-repeat: no-repeat;
    z-index: 1;
  }

  .section__questions-title {
    margin-top: 73px;
  }

  .section__questions-title span::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -40px;
    left: -80px;
    background-image: url("../images/line_above.svg");
    background-repeat: no-repeat;
  }

  .section__questions-sub {
    margin-bottom: 20px;
  }

  button {
    font-size: 18px;
    line-height: 22px;
    padding: 10px;
    border-radius: 12px;
  }

  .primary {
    height: 42px;
  }

  .accordion__item {
    padding: 16px 0;
  }

  .accordion__header {
    font-size: 18px;
    margin-right: 0;
  }

  .visible__content {
    padding-right: 30px;
  }

  .desc {
    padding-right: 109px;
    padding-top: 2px;
    padding-bottom: 0;
    font-size: 18px;
  }

  .section__contacts-sub {
    margin-bottom: 64px;
  }

  .section__contacts-content {
    justify-content: space-between;
    gap: 0;
  }

  .section__contacts-content-contact {
    max-width: 366px;
  }

  .section__contacts-content-contact img {
    width: 42px;
    height: 42px;
  }

  .section__contacts-content-title {
    font-size: 24px;
    line-height: 29px;
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .section__contacts-content-text,
  .section__contacts-content-link,
  .footer__content-address-title,
  .footer__content-address-link,
  .footer__link,
  label,
  input {
    font-size: 18px;
    line-height: 22px;
  }

  .form__title {
    font-size: 28px;
    margin-top: 104px;
    margin-bottom: 42px;
  }

  .input__wrapper,
  .textarea__box {
    gap: 10px;
  }

  textarea {
    font-size: 18px;
    height: 251px;
  }

  .error__text,
  .error__captcha {
    font-size: 14px;
  }

  .error__captcha {
    right: -34px;
  }

  .modal {
    width: 656px;
    height: 466px;
    padding: 112px 95px;
  }

  .image__wrapper-answer {
    width: 188px;
    height: 188px;
  }

  .footer__logo {
    width: 181px;
    height: 32px;
    margin-bottom: 30px;
  }

  .footer__list-links {
    column-gap: 24px;
  }
}

@media screen and (min-width: 1090px) {
  header.sticky .header__logo .logo__img {
    width: 185.78px;
    height: 32.77px;
  }

  header.sticky .navigation__list-item .header__link,
  header.sticky .navigation__list-item .page_link {
    font-size: 16px;
  }

  .header__link.active {
    color: var(--orange);
  }

  .section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .logo__img-mob {
    display: none;
  }

  .navigation__list {
    gap: 12px;
  }

  .navigation__list-item {
    position: relative;
    cursor: pointer;
  }

  .navigation__list-item:after {
    position: absolute;
    display: block;
    content: "";
    width: 0%;
    height: 1px;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
  }
  .navigation__list-item.page_link-wrapper:after,
  .navigation__list-item.lang__mob::after {
    display: none;
  }
  .navigation__list-item:hover:after {
    width: 100%;
    background: var(--orange);
  }
  .navigation__list-item.lang__mob {
    display: none;
  }
  .section__main {
    align-items: flex-end;
  }
  .main__content {
    margin-bottom: 50px;
  }
  .about__img.about__img-mob {
    display: none;
  }

  .about__img.about__img-desktop {
    max-width: 546px;
  }

  .section__about {
    background-image: none;
    padding-top: 160px;
    padding-bottom: 0;
  }
  .section__about-title {
    text-align: center;
    margin-bottom: 80px;
  }
  .section__benefits {
    padding-bottom: 0;
    overflow: inherit;
  }
  .section__about-wrapper {
    justify-content: space-between;
    gap: 4vw;
  }
  .section__about-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -57px;
    left: 0;
    background-image: url("../images/top_line.png");
    background-repeat: no-repeat;
    background-size: 260px;
  }
  .section__benefits-sub {
    margin-bottom: 64px;
  }
  .section__questions {
    padding-bottom: 0;
  }
  .section__projects {
    padding-bottom: 45px;
  }
  .section__reviews {
    padding-top: 115px;
    padding-bottom: 42px;
  }
  .section__projects-title {
    margin-bottom: 50px;
  }

  .project__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .gap-30 {
    gap: 30px;
  }

  .image__describe-title {
    font-size: 18px;
  }

  .image__describe {
    padding: 65px 22px 20px;
  }

  .wrapper__image {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    cursor: pointer;
  }

  .wrapper__image img {
    transition: 1s linear;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    object-fit: cover;
  }

  .wrapper__image:hover img {
    transform: scale(1.05);
  }

  .wrapper__image:hover .image__describe {
    opacity: 1;
    visibility: visible;
  }

  .wrapper__image-one,
  .wrapper__image-four {
    width: 407px;
    height: 328px;
  }

  .wrapper__image-two,
  .wrapper__image-three {
    width: 843px;
    height: 328px;
  }

  .swiper-wrapper {
    padding-bottom: 60px;
  }

  span.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    margin-left: 25px !important;
  }

  .swiper__mob {
    display: none;
  }

  .section__contacts .container::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -52px;
    left: 73%;
    background-image: url("../images/top_line.png");
    background-repeat: no-repeat;
    background-size: 260px;
  }

  .form {
    gap: 24px;
  }

  .input__box {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .form__btn {
    width: 231px;
    height: 58px;
  }
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer {
    padding: 42px 0;
  }
}

@media screen and (min-width: 1200px) {
  .section__about-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -57px;
    left: -267px;
    background-image: url("../images/top_line.png");
    background-repeat: no-repeat;
    background-size: 354px;
  }

  .section__contacts .container::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -52px;
    left: 73%;
    background-image: url("../images/top_line.png");
    background-repeat: no-repeat;
    background-size: 354px;
    z-index: -1;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 0 80px;
  }
  .navigation__list {
    gap: 32px;
  }
}
