@charset "UTF-8";

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/StolzlRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/StolzlMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

input {
  outline: none;
}

textarea {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  background-color: white;
  font-family: "Albert Sans", sans-serif;
  font-size: 18px;
  color: #131418;
}

body.locked {
  overflow: hidden;
}

body.dark {
  background: #242424;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

section {
  padding: 100px 0;
}

img {
  max-width: 100%;
}

textarea {
  resize: none;
  font-family: "Albert Sans", sans-serif;
  color: #747474;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-title {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: 1px solid #C95A0C;
}

.title-secondary {
  font-size: 20px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  font-size: 20px;
  text-align: center;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn-main {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 15px 0;
  border-radius: 10px;
  background: #C95B0C;
  width: 250px;
}

.btn-main:hover {
  background: #FF8F3F;
}

.main-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.main-input {
  width: 100%;
  color: #747474;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-block {
  border-radius: 10px;
  border: 1px solid #EFEEEE;
  background: #FFF;
  -webkit-box-shadow: 2px -2px 2px 0px rgba(0, 0, 0, 0.05) inset;
          box-shadow: 2px -2px 2px 0px rgba(0, 0, 0, 0.05) inset;
  padding: 10px 20px;
  -webkit-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.main-label {
  color: #BBB;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-block:focus-within {
  border: 1px solid #FF8F3F;
}

.checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 20px;
}

.checkbox-item .checkbox-input {
  display: none;
}

.checkbox-item .checkbox-input:checked + .checkbox-active::before {
  opacity: 1;
}

.checkbox-item .checkbox-active {
  height: 24px;
  min-width: 24px;
  display: block;
  position: relative;
  border-radius: 5px;
  border: 1px solid #EFEEEE;
  background: #FFF;
  -webkit-box-shadow: 2px -2px 2px 0px rgba(0, 0, 0, 0.05) inset;
          box-shadow: 2px -2px 2px 0px rgba(0, 0, 0, 0.05) inset;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.checkbox-item .checkbox-active::before {
  content: "";
  background: #C95A0C url(../img/select.svg) no-repeat;
  background-position: 4px 5px;
  position: absolute;
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 5px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.checkbox-item:hover .checkbox-active {
  border-color: #FF8F3F;
}

.checkbox-text {
  color: #747474;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 140% */
  letter-spacing: 0.3px;
  max-width: 266px;
}

.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal__wrapper.active {
  opacity: 1;
  visibility: visible;
}

.modal__wrapper .modal {
  padding: 45px;
  border-radius: 10px;
  background: #F5F5F5;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  min-height: 350px;
  width: 800px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.modal__wrapper.active .modal__wrapper .modal {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.modal__wrapper .modal__title {
  text-align: center;
}

.modal__wrapper .modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.modal__wrapper .modal__close {
  cursor: pointer;
  position: absolute;
  right: 45px;
  top: 45px;
}

.modal__wrapper .modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header {
  position: sticky;
  top: 0;
  z-index: 111;
}

.header {
  background: #232323;
}

.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.navbars {
  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;
  padding: 20px 0;
  height: 120px;
}

.logo {
  z-index: 111;
  width: 200px;
}

.logo a {
  color: #ffffff !important;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.menu__logo {
  display: none;
}

.menu__logo a {
  color: #ffffff;
}

.menu__right span {
  display: none;
  color: #00000087;
  text-align: center;
  line-height: 130%;
  /* 20.8px */
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.menu__item-link {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.menu__item-link:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  background: white;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  -o-transition: 0.5s transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
  display: block;
}

.menu__item-link:hover {
  opacity: 1;
}

.menu__item-link:hover:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.burger {
  display: none;
  background: transparent;
  z-index: 33;
}

/* Overlay background (initially hidden) */

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 20;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* Когда меню открыто, overlay активируется */

.overlay.active {
  display: block;
  opacity: 1;
}

/* Скрытие логотипа при открытом меню */

/*
.logo.hidden {
  display: none;
}

!* Исходное состояние ссылки внутри .logo *!
.logo a {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

!* Состояние скрытой ссылки *!
.logo a.hidden {
  opacity: 0;
  visibility: hidden;
}
*/

.menu__right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.intro {
  padding: 356px 0 100px;
  background-image: url("../img/intro-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.intro__title {
  color: #FFF;
  font-size: 125px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.intro__inner {
  max-width: 738px;
}

.intro__info {
  color: #FFF;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 100px;
}

.main__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

.company {
  padding: 80px 0 60px;
}

.company__info {
  margin-bottom: 60px;
  font-size: 24px;
  line-height: 2.5;
  color: #747474;
}

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

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

.company__item-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.company__item-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.company__item-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.company__item-title {
  color: #000;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.company__item-info {
  color: #747474;
  font-size: 24px;
  line-height: 1.6;
  max-width: 600px;
}

/* Адаптив: при узком экране колонки станут в столбик */

.company__item-one {
  padding-left: 60px;
  padding-top: 40px;
}

.company__item-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners {
  padding: 80px 0 65px;
}

.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact {
  padding: 80px 0 60px;
}

.contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact__left iframe {
  max-width: 100%;
  height: 100%;
}

.contact__right {
  min-width: 400px;
}

.form__title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.form__subtitle {
  color: #747474;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
  max-width: 320px;
}

.form-block {
  margin-bottom: 10px;
}

.form__btn {
  margin-top: 20px;
  width: 100%;
}

.footer {
  background-color: #232323;
  color: #ffffff;
  padding: 50px 0;
  font-size: 20px;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-item {
  margin-bottom: 43px;
}

.footer__nav-item:last-child {
  margin-bottom: unset;
}

.footer__contact-item {
  margin-bottom: 43px;
}

.footer__contact-item:last-child {
  margin-bottom: unset;
}

.footer__contact-link {
  color: #ffffff;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__section_type_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.footer__nav-link {
  position: relative;
}

.footer__nav-link:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  background: white;
  height: 1px;
  width: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  -o-transition: 0.5s transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
  display: block;
}

.footer__nav-link:hover {
  opacity: 1;
}

.footer__nav-link:hover:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 1449.98px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 970px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }

  .modal__wrapper .modal {
    width: 100%;
    height: 100%;
    border-radius: unset;
  }

  .modal__close {
    width: 24px;
    height: 24px;
  }

  .header {
    background: unset;
  }

  .navbars {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .logo {
    display: none;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 76px;
    margin: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 126px;
  }

  .menu__logo {
    position: absolute;
    display: block;
    left: 60px;
    top: 35px;
  }

  .menu__right span {
    display: block;
    max-width: 165px;
  }

  .menu__item-link {
    font-size: 20px;
  }

  .menu {
    width: 100% !important;
  }

  .intro {
    margin-top: -80px;
  }

  .intro__title {
    font-size: 96px;
  }

  .intro__info {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .company__info {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .company__list .company__item:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .company__list .company__item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .company__list .company__item:nth-child(3) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .company__item-title {
    font-size: 24px;
  }

  .company__item-info {
    max-width: unset;
    font-size: 16px;
  }

  .company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .company__item-img,
  .company__item-block {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 100%;
  }

  .company__item-block {
    padding: 20px;
  }

  .partners__list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    gap: 30px;
  }

  .partners__list img {
    width: 120px;
  }

  .contact__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contact__left iframe {
    height: revert-layer;
  }

  .contact__right {
    min-width: unset;
  }

  .contact__form {
    width: 100%;
  }

  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 123px;
  }

  .footer__section_type_contacts {
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    position: fixed;
    background: #232323;
    right: 0;
    left: auto;
    top: 0;
    height: 100%;
    width: 50vh;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    pointer-events: none;
    z-index: 22;
    padding-top: 130px;
    padding-bottom: 10px;
    padding-left: 60px;
  }

  .menu.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    pointer-events: all;
  }

  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 20px;
    width: 30px;
  }

  .burger.active:before {
    background: #C95A0C;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    top: 8px;
  }

  .burger.active:after {
    background: #C95A0C;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 10px;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger.active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .burger:before,
  .burger:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #C95A0C;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger:before {
    top: 0;
  }

  .burger::after {
    bottom: 0;
  }

  .burger span {
    position: absolute;
    top: 9px;
    right: 0;
    width: 100%;
    background: #C95A0C;
    height: 2px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 740px;
  }

  body {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .menu__item-link {
    font-size: 16px;
  }

  .intro button {
    margin: 0 auto;
    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;
  }

  .intro__title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .intro__inner {
    max-width: unset;
  }

  .intro__info {
    font-size: 14px;
    max-width: 315px;
  }

  .company {
    padding: 30px 0 30px;
  }

  .company__info {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .company__item-img img {
    height: unset;
  }

  .company__item-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .company__item-info {
    font-size: 12px;
  }

  .partners {
    padding: 30px 0 40px;
  }

  .contact {
    padding: 30px 0 60px;
  }

  .form__title {
    font-size: 20px;
  }

  .form__subtitle {
    font-size: 12px;
    max-width: 200px;
    margin-bottom: 20px;
  }

  .footer__wrapper {
    gap: 80px;
  }

  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 65px;
  }

  .footer__section_type_contacts {
    text-align: unset;
  }

  .footer__contact-link {
    font-size: 16px;
  }

  .footer__nav-link {
    font-size: 16px;
  }

  .footer__logo-link {
    font-size: 16px;
  }
}

@media (max-width: 479.98px) {
  .container {
    max-width: none;
  }
}