html,
body {
  font-family: "Inter", sans-serif;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1840px;
  margin: 0 auto;
  height: 100%;
}

.container--second {
  max-width: 1379px;
  margin: 0 auto;
  height: 100%;
  margin-left: 461px;
}

.btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #0A4650;
  border: 1px solid #0A4650;
  border-radius: 100px;
  padding: 14px 32px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent;
}
.btn::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #2C9E4B;
  display: inline-block;
  border-radius: 100%;
  margin-right: 12px;
}
.btn:hover {
  border: 1px solid #2C9E4B;
  background-color: #2C9E4B;
  color: #FFF2B2;
}
.btn:hover::before {
  background-color: #FFF2B2;
}

.title {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  color: #0A4650;
  letter-spacing: -0.04em;
  padding-top: 120px;
  margin-bottom: 48px;
}

.btn--hover path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--hover circle {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.btn--hover:hover circle {
  fill: #2C9E4B;
}
.btn--hover:hover path {
  fill: #FFF2B2;
}

.overlay-open {
  overflow: hidden;
}

.overlay,
.overlay__thanks {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(19, 21, 22, 0.4);
  z-index: 70;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.overlay--show {
  visibility: visible;
  opacity: 1;
}

.overlay__container {
  width: 420px;
  height: 480px;
  padding: 40px;
  margin: 50vh auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border-radius: 12px;
}

.overlay__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #0A4650;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 40px;
}

.btn__x {
  position: absolute;
  top: 12px;
  right: 12px;
}

.overlay__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.overlay__label {
  margin-bottom: 24px;
}

.overlay__input {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #131516;
  width: 100%;
  border-bottom: 1px solid #C7CED2;
  padding-bottom: 8px;
}

.custom-select-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-select {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #5A5F61;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-bottom: 1px solid #C7CED2;
}

.custom-select-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-bottom: 8px;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
.custom-select-trigger::before {
  content: "";
  background: url("../images/icons/arrow-bottom.svg") no-repeat;
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 20%;
  right: 0;
  pointer-events: none;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom: 1px solid #C7CED2;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.custom-option {
  padding: 10px 10px;
  padding-right: 0px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-option:hover {
  background-color: #f0f0f0;
}

.custom-select.open .custom-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overlay__btn {
  max-width: 218px;
  margin: 0 auto;
  margin-top: 32px;
}

.overlay__thanks-container {
  width: 720px;
  height: 240px;
  padding: 60px 80px;
  margin: 50vh auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.overlay__thanks-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #5A5F61;
  text-align: center;
  max-width: 480px;
}

.burger {
  display: none;
}

.header {
  height: 1000px;
  background-image: url("../images/hero-bg.jpg");
  background-repeat: no-repeat;
  padding-top: 20px;
}

.header__top {
  background-color: #fff;
  height: 84px;
  border-radius: 12px;
}

.header__top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 16px;
}

.header__top-logo {
  margin-left: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__top-logo:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.header__nav-container {
  margin-left: 261px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__list-item {
  margin-right: 64px;
}
.header__list-item:last-child {
  margin-right: 0px;
}

.header__list-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__list-link:hover {
  color: #2C9E4B;
}

.header__btn-box {
  margin-right: 24px;
}

.header__main-inner {
  margin-top: 466px;
}

.header__main-content {
  max-width: 700px;
}

.header__main-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  color: #fff;
  letter-spacing: -0.04em;
}
.header__main-title span {
  color: #2C9E4B;
}

.header__main-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin: 22px 0px;
}

.header__main-btn {
  border: 1px solid #fff;
  color: #fff;
  width: 181px;
}

.products {
  background-color: #9ED763;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  padding-bottom: 40px;
}

.products__slider {
  padding-bottom: 80px;
  overflow: hidden;
}

.products__slide {
  overflow: hidden;
  width: 457px;
  height: 620px;
  background-color: #fff;
  padding: 10px 10px 28px 10px;
  border-radius: 12px;
  margin-right: 4px;
}

.products__img-box {
  background-color: #FFF2B2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 437px;
  border-radius: 12px;
}

.products__slide-content {
  margin: 20px 28px 0px 28px;
}

.products__slide-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #0A4650;
  margin-bottom: 20px;
}
.products__slide-title span {
  color: #2C9E4B;
}

.products__slide-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products__slide-item {
  margin-bottom: 12px;
}
.products__slide-item:last-child {
  margin-bottom: 0px;
}

.products__slide-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #0A4650;
}

.solutions {
  border-radius: 40px;
  background-color: #fff;
  margin-top: -40px;
  padding-bottom: 40px;
}

.solutions__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.solutions__list--responsive {
  display: none;
}

.solutions__list-item {
  border-top: 1px solid #C7CED2;
}
.solutions__list-item:last-child {
  border-bottom: 1px solid #C7CED2;
}

.solutions__list-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #0A4650;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  margin-top: 23px;
}
.solutions__list-title h2 {
  padding-left: 12px;
}

.solutions__list-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #0A4650;
  margin-left: 36px;
  margin-bottom: 36px;
}

.solutions__table {
  border-collapse: collapse;
  margin-bottom: 80px;
}

.solutions__table-row {
  height: 120px;
}
.solutions__table-row:last-child {
  border-bottom: 1px solid #C7CED2;
}
.solutions__table-row td {
  border-top: 1px solid #C7CED2;
}

.solutions__table-title {
  width: 405px;
}
.solutions__table-title h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #0A4650;
  margin-left: 20px;
}

.solutions__table-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
}

.solutions__map-box svg {
  width: 100%;
  height: 100%;
}

.about {
  background-color: #FFF2B2;
  border-radius: 40px 40px 0px 0px;
  margin-top: -40px;
  padding-bottom: 40px;
}

.about__inner {
  position: relative;
}

.about__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.about__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
  max-width: 611px;
  margin-bottom: 20px;
}
.about__text:last-child {
  margin-bottom: 48px;
}

.about__slider-arrows {
  position: absolute;
  top: 356px;
  right: 0;
}

.about__slider-prev {
  margin-right: 10px;
}

.about__slider {
  margin-bottom: 80px;
}

.about__slide {
  padding-right: 4px;
}

.about__img-box {
  position: relative;
}
.about__img-box:hover .about__img-overlay {
  opacity: 1;
}
.about__img-box:hover .about__search-icon {
  opacity: 1;
}

.about__img--mini {
  display: none !important;
}

.about__search-icon--mini {
  display: none;
}

.about__img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 70, 80, 0.25);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.about__search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact {
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  padding-bottom: 40px;
}

.contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact__contacts-list {
  margin-right: 143px;
}

.contact__content-subtitle {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #2C9E4B;
  margin-bottom: 32px;
}

.contact__content-list {
  min-width: 260px;
  max-width: 318px;
}

.contact__content-item {
  margin-bottom: 24px;
}

.contact__content-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact__content-text p {
  margin-left: 4px;
}

.contact__form-wrapper {
  width: 100%;
}

.contact__form-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #2C9E4B;
  margin-bottom: 32px;
}

.contact__form-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
}

.contact__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}

.contact__form-label {
  height: 34px;
  width: 100%;
  border-bottom: 1px solid #C7CED2;
  margin-right: 10px;
}

.contact__form-input {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
}

.contact__form-textarea {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
  border-bottom: 1px solid #C7CED2;
  width: 100%;
  padding-bottom: 36px;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-right: 10px;
  resize: none;
}

.contact__form-submit {
  margin-bottom: 50px;
}

.contact__map {
  margin-bottom: 47px;
  position: relative;
  width: 100%;
  height: 610px;
}

.contact__map-iframe {
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #FFF2B2;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
}

.footer__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__img-box {
  padding: 40px 0 0px 40px;
  margin-right: 20px;
}

.footer__logo-link {
  margin-bottom: 160px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__logo-link:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.footer__container {
  margin-left: 225px;
}

.footer__content {
  width: 1419px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.footer__contacts-list {
  margin-top: 40px;
}

.footer__contacts-title {
  margin-bottom: 20px;
}
.footer__contacts-title h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #0A4650;
}

.footer__contacts-item {
  margin-bottom: 12px;
}
.footer__contacts-item:last-child {
  margin-bottom: 0px;
}

.footer__last-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

.footer__row-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__rights {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
  margin-right: 20px;
  padding-left: 40px;
}

.footer__row-container {
  margin-left: 122px;
}
.footer__row-container p {
  margin: 40px 0px;
}

.footer__contacts-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0A4650;
}

.footer__socials-list {
  position: absolute;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__socials-item {
  margin-right: 12px;
}
.footer__socials-item:last-child {
  margin-right: 0px;
}

@media (max-width: 1400px) {
  .container--second {
    margin-left: 300px;
  }
  .header__nav-container {
    margin-left: 100px;
  }
  .solutions__table-title {
    width: 270px;
  }
  .contact__contacts-list {
    margin-right: 50px;
  }
}
@media (max-width: 1200px) {
  .solutions__table-title {
    width: 270px;
  }
  .solutions__table-title h2 {
    font-size: 18px;
  }
  .solutions__table-text p {
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .footer__rights {
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .container--second {
    margin-left: 150px;
  }
  .header__nav-container {
    margin-left: 50px;
  }
  .solutions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__container {
    margin-left: 185px;
  }
  .footer__row-container {
    margin-left: 82px;
  }
}
@media (max-width: 950px) {
  .container--second {
    margin-left: 0px;
  }
  .title {
    font-size: 40px;
  }
  .container {
    padding: 0px 10px;
  }
  .header {
    padding-top: 8px;
  }
  .header__nav-container {
    margin-left: 50px;
  }
  .header__btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 12px;
  }
  .overlay__burger {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(19, 21, 22, 0.4);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
  }
  .overlay__burger--show {
    opacity: 1;
    visibility: visible;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 50%;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    margin-left: 8px;
  }
  .icon--hidden {
    display: none;
  }
  .header__top {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 64px;
    z-index: 10;
  }
  .header__top-content {
    padding-top: 5px;
  }
  .header__top-logo {
    margin-left: 12px;
  }
  .header__top-logo svg {
    width: 89px;
  }
  .btn {
    font-weight: 500;
    font-size: 11px;
    line-height: 140%;
    color: #0A4650;
    padding: 12px 16px;
  }
  .header__nav {
    position: fixed;
    top: 80px;
    left: 8px;
    right: 8px;
    background-color: #fff;
    z-index: 100;
    max-height: 336px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 336px;
    border-radius: 8px;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  .header__nav--open {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__list-item {
    letter-spacing: -0.04em;
    margin: 0;
    margin-top: 40px;
  }
  .header__list-link {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #0A4650;
  }
  .header__main-btn {
    color: #fff;
  }
  .products {
    border-radius: 20px 20px 0 0;
  }
  .products__slide {
    width: 280px;
    height: 520px;
    padding: 4px;
  }
  .products__img-box {
    height: 272px;
  }
  .products__slide-img {
    -webkit-transform: scale(0.5111);
            transform: scale(0.5111);
  }
  .products__slide-content {
    margin: 12px 16px 0px 16px;
  }
  .products__slide-descr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .products__slide-list {
    margin-bottom: 12px;
  }
  .products__slide-list:last-child {
    margin-bottom: 0px;
  }
  .products__slide-title {
    font-size: 16px;
  }
  .products__slide-text {
    font-size: 14px;
  }
  .slick-list {
    padding: 0 20% 0 0;
  }
  .solutions {
    border-radius: 20px;
  }
  .solutions__table {
    display: none;
  }
  .solutions__list--responsive {
    display: block;
  }
  .about {
    border-radius: 20px 20px 0 0;
  }
  .about__img {
    display: none !important;
  }
  .about__img--mini {
    display: block !important;
  }
  .about__text {
    font-size: 14px;
  }
  .about__img-overlay {
    opacity: 1;
  }
  .about__search-icon {
    opacity: 1;
  }
  .about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__slider {
    margin-bottom: 20px;
  }
  .about__slider-arrows {
    position: static;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin: 0 auto;
    margin-bottom: 100px;
  }
  .contact {
    border-radius: 20px 20px 0 0;
  }
  .contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__contacts-list {
    margin-right: 0px;
    margin-bottom: 32px;
  }
  .contact__form-submit {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__form-label {
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .contact__form-textarea {
    margin-top: 0px;
  }
  .contact__map {
    height: 450px;
    margin-bottom: 60px;
  }
  .footer {
    border-radius: 20px 20px 0px 0px;
  }
  .footer__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__container {
    margin-left: 5px;
  }
  .footer__img-box {
    padding-left: 5px;
  }
  .footer__last-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__rights {
    padding-left: 5px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__row-container {
    margin-left: 5px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__socials-list {
    position: static;
    margin-left: 5px;
  }
  .overlay__title {
    font-size: 24px;
  }
  .overlay__thanks-text {
    font-size: 16px;
  }
  .overlay__thanks-container {
    width: 344px;
    height: 266px;
    padding: 64px 20px;
  }
}
@media (max-width: 600px) {
  .header {
    height: 820px;
  }
  .header__main-inner {
    margin-top: 386px;
  }
  .header__main-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #fff;
    letter-spacing: -0.04em;
  }
  .header__main-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #fff;
  }
  .header__main-btn {
    width: 133px;
  }
  .overlay__container {
    width: 344px;
    height: 460px;
  }
}
@media (max-width: 500px) {
  .contact__content-subtitle {
    font-size: 24px;
  }
  .contact__content-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #0A4650;
  }
  .contact__content-text div {
    font-size: 14px;
  }
  .contact__form-title {
    font-size: 24px;
  }
  .contact__form-text {
    font-size: 14px;
  }
  .contact__form-input {
    font-size: 14px;
  }
  .contact__form-textarea {
    font-size: 14px;
  }
  .contact__map {
    height: 344px;
  }
  .footer__logo-link svg {
    width: 94px;
  }
  .footer__contacts-title h2 {
    font-size: 16px;
  }
  .footer__contacts-text {
    font-size: 14px;
  }
  .footer__rights {
    font-size: 14px;
  }
}