@font-face {
  font-family: "Strelka Ultra";
  src: url("../fonts/Strelka-Ultra.eot");
  src: url("../fonts/Strelka-Ultra.eot?#iefix") format("embedded-opentype"), url("../fonts/Strelka-Ultra.woff2") format("woff2"), url("../fonts/Strelka-Ultra.woff") format("woff"), url("../fonts/Strelka-Ultra.ttf") format("truetype"), url("../fonts/Strelka-Ultra.svg#Strelka-Ultra") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-Medium.eot');
  src: url('../fonts/Exo-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Exo-Medium.woff2') format('woff2'), url('../fonts/Exo-Medium.woff') format('woff'), url('../fonts/Exo-Medium.ttf') format('truetype'), url('../fonts/Exo-Medium.svg#Exo-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Medium.eot');
  src: url('../fonts/EBGaramond-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/EBGaramond-Medium.woff2') format('woff2'), url('../fonts/EBGaramond-Medium.woff') format('woff'), url('../fonts/EBGaramond-Medium.ttf') format('truetype'), url('../fonts/EBGaramond-Medium.svg#EBGaramond-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Bold.eot');
  src: url('../fonts/EBGaramond-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/EBGaramond-Bold.woff2') format('woff2'), url('../fonts/EBGaramond-Bold.woff') format('woff'), url('../fonts/EBGaramond-Bold.ttf') format('truetype'), url('../fonts/EBGaramond-Bold.svg#EBGaramond-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-Regular.eot');
  src: url('../fonts/Exo-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Exo-Regular.woff2') format('woff2'), url('../fonts/Exo-Regular.woff') format('woff'), url('../fonts/Exo-Regular.ttf') format('truetype'), url('../fonts/Exo-Regular.svg#Exo-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-SemiBold.eot');
  src: url('../fonts/EBGaramond-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/EBGaramond-SemiBold.woff2') format('woff2'), url('../fonts/EBGaramond-SemiBold.woff') format('woff'), url('../fonts/EBGaramond-SemiBold.ttf') format('truetype'), url('../fonts/EBGaramond-SemiBold.svg#EBGaramond-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} */

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

select::-ms-expand {
  /* IE */
  display: none;
}

body {
  /* font-family: 'Exo', sans-serif; */
  font-family: sans-serif;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
  color: #3f3333;
}

html,
body {
  overflow-x: hidden;
}

.body-block {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.wrapper {
  max-width: 1170px;
  padding: 0 10px;
  margin: 0 auto;
}

.section {
  padding: 55px 0;
}

.section-title {
  /* font-family: 'EB Garamond'; */
  text-align: left;
  font-size: 40px;
  margin-bottom: 60px;
  text-transform: uppercase;
  color: #000;
}

.btn-primary {
  display: inline-block;
  padding: 13px 0;
  font-weight: 500;
  color: #fff;
  background: #f9c68e;
  box-shadow: 2px 4px 23px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #f8bc7b;
}

.btn-primary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 51%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
}

.btn-gradient {
  /* font-family: 'EB Garamond'; */
  font-weight: 700;
  font-size: 20px;
  padding: 16px 0;
  box-sizing: border-box;
  border: 2px solid #ffdc83;
  border-radius: 10px;
  background: -webkit-linear-gradient(top, #ffd39e 0.01%, #e39955 99.98%);
  background: linear-gradient(180deg, #ffd39e 0.01%, #e39955 99.98%);
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}

.btn-gradient:hover {
  background: -webkit-linear-gradient(top, #e39955 0.01%, #ffd39e 99.98%);
  background: linear-gradient(180deg, #e39955 0.01%, #ffd39e 99.98%);
}

.btn-gradient:hover::after {
  opacity: 0;
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-gradient::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 0;
  width: 140px;
  height: 33px;
  background-color: #ffe2aa;
  -webkit-filter: blur(12.5px);
  filter: blur(12.5px);
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 100%;
  width: 140px;
  height: 33px;
  background-color: #ffe2aa;
  -webkit-filter: blur(12.5px);
  filter: blur(12.5px);
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.menu {
  position: relative;
}

.menu__trigger > * {
  width: 100%;
}

.menu__content {
  position: absolute;
  bottom: calc(100% + 8px);
  min-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #ccc;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: translate(5px) scale(0.9);
  transition: 0.25s;
}
.menu__content.active {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  transform: translate(0) scale(1);
}

.menu__list li a {
  background: transparent;
  color: inherit;
}

.menu__list li a:active {
  background-color: #ccc;
}

.menu__list li a img {
  display: block;
  margin-right: 8px;
}

/* Шапка */

.burger {
  width: 24px;
  height: 16px;
  margin-left: 15px;
  position: relative;
  z-index: 100;
  display: none;
}

.burger__item {
  position: absolute;
  left: 0;
  width: 23px;
  height: 2px;
  background-color: #de8f44;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.burger__item:nth-child(1) {
  top: 0;
}

.burger__item:nth-child(2) {
  top: calc(50% - 1px);
}

.burger__item:nth-child(3) {
  bottom: 0;
}

.burger.active .burger__item:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__item:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 20px;
}

.burger.active .burger__item:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 20px;
}

.header-scroll {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 5px 0;
  display: none;
}

.header-scroll.active {
  display: block;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 5px 0;
}

.header__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__call {
  /* font-family: 'EB Garamond'; */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
  color: #3f3333;
}
.header__call:not(:first-child) {
  margin-top: 5px;
}

.header__call:hover {
  text-decoration: none;
}

.header__call img {
  display: block;
  margin-right: 10px;
  width: 16px;
}

.header__loc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #747474;
  max-width: 315px;
  line-height: 1.16;
}

.header__loc img {
  display: block;
  margin-right: 12px;
}

.header-scroll .header__soc {
  margin-right: auto;
}

.header__soc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.header__soc li:nth-child(1),
.header__soc li:nth-child(2) {
  display: inline-block;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.header__soc li:first-child {
  margin-right: 12px;
}

.header__soc li:nth-child(2) {
  margin-right: 15px;
}

.header__soc li a {
  display: block;
}

.header__soc li a img {
  display: block;
}

.header__logo-img {
  display: block;
  width: 60px;
  margin-right: 12px;
}

.header-scroll .header__logo {
  margin-right: auto;
}

.header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.header__logo_title {
  font-family: "Strelka Ultra";
  letter-spacing: 4px;
  transform: scaleY(1.4);
  font-weight: 700;
  font-size: 24px;
  color: #de8f44;
  margin-bottom: 1px;
}

.header__logo_descr {
  /* font-family: 'EB Garamond'; */
  font-size: 14px;
  color: #3f3333;
}

.header__btn {
  width: 200px;
}

/* / Шапка */

/* Первая секция */

.nav {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 18px 0;
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.nav__item {
  position: relative;
}

.nav__item:not(:last-child) {
  margin-right: 50px;
}

.nav__link {
  color: #3f3333;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  background: #ffffff;
  min-width: 200px;
  padding-top: 20px;
}
.submenu li {
}
.submenu li a {
  display: block;
  padding: 10px 20px;
}

@media screen and (max-width: 950px) {
  .submenu {
    display: block;
    position: relative;
    top: 0;
    min-width: 100%;
    padding-top: 0px;
  }

  .submenu li a {
    width: 100%;
    padding: 5px 10px;
    color: #de8f44;
  }
}

.nav__item:hover .submenu {
  display: block;
}

.i-hero {
  padding-top: 130px;
  padding-bottom: 93px;
  position: relative;
  overflow: hidden;
}

.in-hero-img {
  position: absolute;
  right: calc((100% - 1250px) / 2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  z-index: -1;
}

.hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 93px;
  z-index: 2;
}

.hero__bgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__bg {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}
.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hero__bg.active {
  opacity: 1;
}

.hero__top img {
  width: 120px;
  margin-right: 20px;
  display: block;
}

.hero__top {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.hero__title {
  /* font-family: 'EB Garamond'; */
  font-size: 50px;
  margin-bottom: 0;
}

.hero__title span {
  font-size: 25px;
  padding-left: 5px;
  color: #de8f44;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  white-space: nowrap;
}

.hero__title span::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -3px;
  display: block;
  width: 340px;
  height: calc(100% + 6px);
  background: -webkit-linear-gradient(left, #ffffff 3.7%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #ffffff 3.7%, rgba(255, 255, 255, 0) 100%);
  border-radius: 5px;
  z-index: -1;
}

.hero__descr {
  font-size: 23px;
  max-width: 405px;
  margin-bottom: 20px;
}

.hero__bottom {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(226, 226, 226, 0.31);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 10px;
}

.hero__btn {
  margin-right: 15px;
  width: 270px;
}

.hero__cert {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #747474;
  max-width: 230px;
}

.hero__cert img {
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: 8px;
}

.hero__text {
  margin-bottom: 30px;
}

.hero__advs {
  -webkit-transform: translateX(-120px);
  -ms-transform: translateX(-120px);
  transform: translateX(-120px);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(226, 226, 226, 0.31);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.hero__adv {
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  width: 300px;
  position: relative;
  overflow: hidden;
}

.hero__adv::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  animation: heroAnim 2s linear infinite;
  z-index: 1;
}

@keyframes heroAnim {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

.hero__adv:not(:last-child) {
  margin-right: 20px;
}

.hero__adv_name {
  color: #3f3333;
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.hero__adv_descr {
  color: #747474;
  max-width: 155px;
  box-sizing: border-box;
  padding-left: 15px;
  position: relative;
  z-index: 2;
}

.hero__adv_descr::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #de8f44;
}

.hero__adv_icon {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 0;
}

/* / Первая секция */

/* Преимущества */

.advantages__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.advantages__item {
  width: calc(25% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  background-color: #d4e8ff;
  box-sizing: border-box;
  padding: 60px 20px 25px 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.advantages__icon {
  position: absolute;
  left: calc(50% - 40px);
  top: -40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0b477;
  border-radius: 50px;
}

.advantages__name {
  font-size: 18px;
  margin-bottom: 13px;
  color: #3f3333;
  font-weight: 500;
}

.advantages__descr {
  color: #747474;
}

/* / Преимущества */

/* Поиск */

.search {
  margin-bottom: 240px;
  position: relative;
  z-index: 2;
}

.search__bg {
  position: absolute;
  left: 50%;
  top: -60px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.search__main {
  position: relative;
}

.search__center {
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(50%);
  -ms-transform: translateX(-50%) translateY(50%);
  transform: translateX(-50%) translateY(50%);
  left: 50%;
  bottom: 0;
  z-index: -1;
}

.search__center_rd::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("/img/icons/search-border-rounded.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.search__center_rd {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  border-radius: 100px;
  box-sizing: border-box;
}
.search__center_rd1 {
  animation: 4s searchCenterAnim1 infinite;
  top: 65%;
  left: 50%;
  width: 500px;
  height: 500px;
}
.search__center_rd2 {
  animation: 4s searchCenterAnim2 infinite;
  top: calc(65% - 20px);
  left: 50%;
  width: 560px;
  height: 560px;
}
.search__center_rd3 {
  animation: 8s searchCenterAnim1 infinite;
  top: calc(65% - 40px);
  left: 50%;
  width: 620px;
  height: 620px;
}

@keyframes searchCenterAnim1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes searchCenterAnim2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.search__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.search__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #d4e8ff;
  border-radius: 10px;
  width: 320px;
  box-sizing: border-box;
}

.search__item:not(:last-child) {
  margin-bottom: 30px;
}

.search__item img {
  display: block;
}

.search__col:first-child .search__item {
  padding: 10px 0 10px 20px;
}

.search__col:first-child .search__item:first-child {
  -webkit-transform: translateX(140px);
  -ms-transform: translateX(140px);
  transform: translateX(140px);
}

.search__col:first-child .search__item:nth-child(2) {
  -webkit-transform: translateX(70px);
  -ms-transform: translateX(70px);
  transform: translateX(70px);
}

.search__col:first-child .search__item img {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.search__col:last-child .search__item {
  padding: 10px 20px 10px 0;
}

.search__col:last-child .search__item:first-child {
  -webkit-transform: translateX(-140px);
  -ms-transform: translateX(-140px);
  transform: translateX(-140px);
}

.search__col:last-child .search__item:nth-child(2) {
  -webkit-transform: translateX(-70px);
  -ms-transform: translateX(-70px);
  transform: translateX(-70px);
}

.search__col:last-child .search__item img {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* / Поиск */

/* Как мы работает */

.how {
  position: relative;
  z-index: 3;
}

.how__content {
  position: relative;
  padding-top: 160px;
}

.how__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.how__item {
  width: calc(50% - 40px);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.how__item:not(:last-child) {
  margin-bottom: 50px;
}

.how__item:nth-child(2n + 1) {
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

.how__item:nth-child(2n) {
  text-align: right;
}

.how__item:nth-child(2n) .how__num {
  margin-right: 0;
  margin-left: 20px;
}

.how__item:nth-child(2n) .how__num::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  left: unset;
  right: -20px;
}

.how__item.active .how__num {
  color: #fff;
}

.how__item:nth-child(2n).active .how__num {
  background: -webkit-linear-gradient(left, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(90deg, #ffd39e 0%, #e39955 100%);
}

.how__item:nth-child(2n + 1).active .how__num {
  background: -webkit-linear-gradient(right, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(270deg, #ffd39e 0%, #e39955 100%);
}

.how__item.active .how__num::after {
  background-image: url("../img/icons/plane-design.svg");
}

.how__num {
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #d4e8ff;
  font-weight: 700;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 20px;
  background: #fff;
}

.how__num::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 78px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  background-image: url("../img/icons/plane-design-inactive.svg");
  z-index: -1;
}

.how__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: 1px;
}

.how__descr {
  color: #747474;
  letter-spacing: 1px;
}

.how__road {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  width: 64px;
  height: 100%;
}

.how__road_road {
  display: block;
  height: 100%;
  width: 100%;
}

.how__road_airplane {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -100px;
  max-width: unset;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.how__road_airplane.airplane-stage2 {
  top: 40px;
}

.how__road_airplane.airplane-stage3 {
  top: 200px;
}

.how__road_airplane.airplane-stage4 {
  top: 320px;
}

.how__road_airplane.airplane-stage5 {
  top: 440px;
}

.how__road_airplane.airplane-stage6 {
  top: 550px;
}

/* / Как мы работает */

/* Почему */

.why {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.why__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.why__item {
  width: calc(25% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  background-color: #d4e8ff;
  box-sizing: border-box;
  padding: 75px 20px 25px 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.why__icon {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.why__name {
  font-size: 18px;
  margin-bottom: 13px;
}

.why__descr {
  color: #747474;
}

.why__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}

/* / Почему */

/* Способ */

.method {
  position: relative;
  z-index: 3;
}

.method__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  padding: 15px;
  background: rgba(226, 226, 226, 0.31);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.method__item {
  width: calc(25% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  background-color: #fff;
  box-shadow: 2px 4px 23px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 25px 22px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.method__btn {
  display: block;
}

.method__name {
  font-size: 18px;
  margin-bottom: 10px;
}

.method__cost {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 18px;
}

.method__cost span {
  font-size: 24px;
  color: #bb1414;
}

.method__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  animation: heroAnim 2s linear infinite;
  z-index: -1;
}
.method__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: -2;
}

.method__list {
  margin-bottom: 20px;
}

.method__list li {
  position: relative;
  color: #747474;
  padding-left: 15px;
  font-size: 12px;
  max-width: 50%;
}

.method__list li:not(:last-child) {
  margin-bottom: 5px;
}

.method__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #de8f44;
}

/* / Способ */

/* Команда */

.team {
  position: relative;
  z-index: 2;
}

.team__bg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

.team__slide {
  height: 346px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}

.team__slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;

  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -2;
}

.team__slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(71, 71, 71, 0) 58.85%, rgba(48, 48, 48, 0.773259) 83.44%, #292929 99.17%);
  background: linear-gradient(180deg, rgba(71, 71, 71, 0) 58.85%, rgba(48, 48, 48, 0.773259) 83.44%, #292929 99.17%);
}

.team__text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: 14px;
  min-height: 85px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
  text-align: center;
}

.team__name {
  font-size: 18px;
  font-weight: 700;
}

.team__slider {
  position: relative;
}

.team-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 20px;
}

.team-pagination-bullet {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #d9d9d9;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
}

.team-pagination-bullet-active {
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
}

.team-btn-prev,
.team-btn-next {
  position: absolute;
  top: calc(50% - 34px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
}

.team-btn-prev img,
.team-btn-next img {
  display: block;
}

.team-btn-prev {
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.team-btn-next {
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

/* / Команда */

/* Фото грузов */

.photo {
  position: relative;
  z-index: 3;
}

.photo__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.photo__item {
  width: calc(100% / 12 * 4 - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  height: 290px;
}
.photo__item-lg {
  width: calc(100% / 12 * 6 - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  height: 290px;
  border-radius: 10px;
  overflow: hidden;
}

.photo__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
}

.video {
  height: 100%;
  position: relative;
}
.video__preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  display: block;
  border-radius: 15px;
  width: 60px;
}
.video__play img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.video__bg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video__iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.video__iframe.active {
  opacity: 1;
  pointer-events: auto;
}

/* / Фото грузов */

/* Выкуп */

.buyout {
  position: relative;
}

.buyout__bg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.buyout__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.buyout__stats {
  width: 245px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.buyout__stats::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(255, 248, 209, 0), #fff7ce, rgba(255, 248, 210, 0));
  background: linear-gradient(180deg, rgba(255, 248, 209, 0), #fff7ce, rgba(255, 248, 210, 0));
}

.buyout__stat {
  width: 100%;
  max-width: 164px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.buyout__stat:not(:last-child) {
  margin-bottom: 30px;
}

.buyout__num {
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 80px;
  font-weight: 700;
}

.buyout__name {
  font-size: 18px;
}

.buyout__main {
  padding-left: 60px;
}

.buyout__text {
  font-size: 18px;
  line-height: 1.5;
  max-width: 722px;
}

/* / Выкуп */

/* Клиенты */

.client-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 20px;
}

.client__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client__slider .swiper-wrapper {
  align-items: center;
}

.client-pagination-bullet {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #d9d9d9;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
}

.client-pagination-bullet-active {
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
}

/* / Клиенты */

/* Отзывы */

.review {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.review__slider {
  position: relative;
}

.review-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 20px;
}

.review-pagination-bullet {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #d9d9d9;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
}

.review-pagination-bullet-active {
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
}

.review-btn-prev,
.review-btn-next {
  position: absolute;
  top: calc(50% - 34px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
}

.review-btn-prev img,
.review-btn-next img {
  display: block;
}

.review-btn-prev {
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.review-btn-next {
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.review__avatar {
  margin-bottom: 24px;
}

.review-swiper {
  overflow: unset;
  padding: 20px 0;
}

.review-swiper.slide-change-started {
  overflow: hidden;
}

.review__slide {
  background-color: #fff;
  box-shadow: 2px 4px 23px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
  height: unset;
  padding: 24px 20px;
  opacity: 0;
  pointer-events: none;
}

.review__slide.swiper-slide-visible {
  opacity: 1;
  pointer-events: auto;
}

.review__name {
  text-align: center;
  font-weight: 600;
  color: #de8f44;
  margin-bottom: 14px;
}

.review__text {
  color: #747474;
}

.review__text_more {
  font-size: 14px;
  font-weight: 600;
  color: #de8f44;
  display: inline-block;
  cursor: pointer;
}

/* / Отзывы */

/* Футер */

.btn-up {
  position: fixed;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  display: none;
  z-index: 100;
}

.btn-up.active {
  display: block;
}

.btn-up img {
  display: block;
}

.footer__row img {
  display: block;
  margin-right: 12px;
  width: 80px;
}

.footer__soc li:not(:last-child) {
  margin-right: 12px;
}

.footer__soc {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer__row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer {
  background-color: #363636;
  padding-top: 65px;
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.footer__logo {
  /* font-family: 'EB Garamond'; */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.footer__logo_title {
  font-size: 28px;
  color: #de8f44;
  font-weight: 700;
  margin-bottom: 1px;
  display: inline-block;
  font-family: "Strelka Ultra";
  letter-spacing: 4px;
  transform: scaleY(1.4);
}

.footer__logo_descr {
  color: #fff;
  display: inline-block;
}

.footer__call {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  margin-bottom: 14px;
}

.footer__call a {
  font-size: 20px;
  display: inline-block;
  margin-left: 5px;
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  white-space: nowrap;
  line-height: 1;
  border-bottom: 1px solid #e39955;
}

.footer__call a:not(:first-child) {
  margin-top: 8px;
}

.footer__call a:hover {
  border-color: transparent;
}

.footer__address {
  color: #fff;
  max-width: 320px;
}

.footer__address span {
  display: inline-block;
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.footer__list:not(:last-child) {
  margin-right: 60px;
}

.footer__list li:not(:last-child) {
  margin-bottom: 20px;
}

.footer__list li a {
  color: #d4e8ff;
}

.footer__list li a:hover {
  text-decoration: underline;
}

.footer__txt {
  color: #747474;
  font-size: 14px;
}

.footer__bottom {
  background-color: #747474;
  color: #fff;
  margin-top: 17px;
  padding: 17px 0;
  font-size: 14px;
}

.footer__bottom_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer__bottom_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.footer__bottom_list li:not(:last-child) {
  margin-right: 20px;
}

.footer__bottom_list li a {
  text-decoration: underline;
}

.footer__bottom_list li a:hover {
  text-decoration: none;
}

.zayavka {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 234px;
}

.zayavka__title {
  color: #b9b9b9;
  margin-bottom: 25px;
}

.zayavka__inp {
  padding: 11px 20px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #747474;
  border-radius: 10px;
  color: #747474;
  margin-bottom: 20px;
}

.zayavka__inp::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #747474;
}

.zayavka__inp:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #747474;
}

.zayavka__inp::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #747474;
}

.zayavka__inp::placeholder {
  /* Most modern browsers support this now. */
  color: #747474;
}

/* / Футер */

/* in-service */

.in-service__content {
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 45px 70px;
  position: relative;
  z-index: 2;
}

.in-service__text {
  max-width: 815px;
}

.service-text-in {
  max-width: 60% !important;
}

.in-service__name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 21px;
}

.in-service__descr {
  color: #747474;
  margin-bottom: 28px;
}

.in-service__img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: calc(100% / 12 * 7 + 30px);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
  z-index: -1;
}

.img-top {
  height: auto !important;
}

.in-service__bottom {
  font-size: 14px;
  max-width: 70%;
}

.in-service__list {
  margin-bottom: 40px;
  max-width: 70%;
}

.service-list-in {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.in-service__list li {
  position: relative;
  padding-left: 41px;
  color: #747474;
}

.in-service__list li:not(:last-child) {
  margin-bottom: 22px;
}

.in-service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/icons/in-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.in-service__btn {
  width: 270px;
}

/* / in-service */

/* Модалка */

.modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1112;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal__content {
  width: 100%;
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  z-index: 2;
  margin-top: 20px;
  padding: 45px 20px 20px 20px;
  box-sizing: border-box;
}

.modal__content-lg {
  max-width: 900px;
}

.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close img {
  width: 12px;
  height: 12px;
}

.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.form__title {
  text-align: center;
  display: block;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form__submit {
  display: block;
  width: 100%;
}

.form__inp {
  width: 100%;
  padding: 18px 27px;
  border: 1px solid #cdcdcd;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 20px;
}
.form__inp-imp {
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
}
.form__inp.err {
  border-color: #dc3545;
}

/* / Модалка */

.mob-btns {
  display: none;
}

.yt-story {
  position: relative;
}
.yt-story__box1 {
  position: absolute;
  left: calc(50% + 660px);
  bottom: 0;
  width: 120px;
}

.yt-story.section {
  padding-top: 0;
  padding-bottom: 0;
}

.yt-modal-story {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.yt-modal-story.active {
  opacity: 1;
  pointer-events: auto;
}

.yt-modal-story__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.yt-modal-story__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  width: calc(100% - 20px);
  max-width: 650px;
  height: calc(100vh - 90px);
  border-radius: 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

.yt-modal-story__slider {
  height: 100%;
}
.yt-modal-story__close img {
  display: block;
}
.yt-modal-story__close {
  position: absolute;
  right: 30px;
  top: 15px;
  display: block;
  cursor: pointer;
}
.yt-modal-story-swiper {
  height: 100%;
}
.yt-modal-story__slide {
  background-color: #000;
}
.yt-modal-story__slide iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* pointer-events: none; */
  transition: 0.25s;
}

.yt-modal-story__slide.paused {
  position: relative;
}
.yt-modal-story-btn-prev,
.yt-modal-story-btn-next {
  position: absolute;
  left: calc(50% + 350px);
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
}
.yt-modal-story-btn-prev svg,
.yt-modal-story-btn-next svg {
  display: block;
  width: 100%;
}

.yt-modal-story-btn-next {
  top: calc(50% + 10px);
}
.yt-modal-story-btn-prev {
  bottom: calc(50% + 10px);
}

.yt-modal-story__slide.paused::after {
  content: url('data:image/svg+xml,<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.1665 9.14766C9.1665 7.3672 9.1665 6.47696 9.53774 5.98623C9.86114 5.55872 10.3555 5.29417 10.8906 5.26222C11.5048 5.22554 12.2455 5.71936 13.727 6.70698L33.0055 19.5593C34.2296 20.3754 34.8416 20.7834 35.0549 21.2977C35.2414 21.7473 35.2414 22.2527 35.0549 22.7023C34.8416 23.2166 34.2296 23.6246 33.0055 24.4407L13.727 37.293C12.2455 38.2807 11.5048 38.7745 10.8906 38.7378C10.3555 38.7059 9.86114 38.4413 9.53774 38.0138C9.1665 37.5231 9.1665 36.6328 9.1665 34.8524V9.14766Z" stroke="%23FFFFFF" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.yt-modal-story__slide.paused iframe {
  opacity: 0;
}

.yt-story__slide {
  height: 485px;
  cursor: pointer;
  position: relative;
}
.yt-story__slide img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.25s;
}
.yt-story__slide:hover img {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
}

.yt-story__slider {
  position: relative;
}

.yt-story-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 20px;
}

.yt-story-pagination-bullet {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #d9d9d9;
  margin-left: 4px;
  margin-right: 4px;
  cursor: pointer;
}

.yt-story-pagination-bullet-active {
  background: -webkit-linear-gradient(top, #ffd39e 0%, #e39955 100%);
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
}

.yt-story-btn-prev,
.yt-story-btn-next {
  position: absolute;
  top: calc(50% - 34px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
}

.yt-story-btn-prev img,
.yt-story-btn-next img {
  display: block;
}

.yt-story-btn-prev {
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.yt-story-btn-next {
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.p-contact {
  padding: 130px 0 50px;
}
.p-contact__content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.p-contact__text {
  width: calc(45% - 12px);
}
.p-contact__main {
  width: calc(55% - 12px);
}
.p-contact__address {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  margin-top: 20px;
}

.p-contact__address span {
  font-size: 25px;
  display: block;
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-contact__address img {
  display: block;
  flex-shrink: 0;
  margin-right: 12px;
}

.p-contact__form {
  max-width: 234px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.p-contact__form_title {
  color: #b9b9b9;
  margin-bottom: 25px;
  text-align: center;
}
.p-contact__form_inp {
  padding: 11px 20px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #dddddd;
  border-radius: 10px;
  color: #747474;
  margin-bottom: 20px;
}
.p-contact__form_submit {
  width: 100%;
}

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

.p-contact__users {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.p-contact__user {
  width: calc(100% / 12 * 4 - 10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-contact__user_avatar {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  object-fit: fill;
  object-position: center;
}

.p-contact__user_name {
  color: #747474;
  margin-top: 14px;
}
.p-contact__user_descr {
  color: #b9b9b9;
  margin-top: 7px;
  font-size: 14px;
}

.p-contact__user_phone {
  margin-top: 12px;
}
.p-contact__user_phone a {
  display: block;
  background: linear-gradient(180deg, #ffd39e 0%, #e39955 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 20px;
}

@media screen and (max-width: 1400px) {
  .hero__advs {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .nav__item:not(:last-child) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1150px) {
  .section-title {
    font-size: 40px;
  }

  .header__loc {
    display: none;
  }

  .header__soc {
    margin-left: auto;
    margin-right: 15px;
  }

  .header__call {
    margin-right: 15px;
  }

  .advantages__items {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -30px;
  }

  .advantages__item {
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }

  .buyout__stats {
    width: 200px;
  }

  .buyout__num {
    font-size: 60px;
  }

  .buyout__name {
    font-size: 16px;
  }

  .buyout__main {
    padding-left: 30px;
  }

  .buyout__bg {
    width: 70%;
    bottom: 0;
    top: unset;
    height: unset;
  }

  .method__items {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .method__item {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }

  .team .wrapper,
  .review .wrapper {
    overflow: hidden;
  }

  .team__slide,
  .review__slide {
    opacity: 1;
    pointer-events: auto;
  }

  .team-swiper,
  .review-swiper {
    overflow: unset;
  }

  .team-swiper.slide-change-started,
  .review-swiper.slide-change-started {
    overflow: unset;
  }

  .team-pagination,
  .review-pagination,
  .yt-story-pagination {
    margin-top: 60px;
  }

  .team-btn-prev,
  .review-btn-prev,
  .yt-story-btn-prev,
  .team-btn-next,
  .yt-story-btn-next,
  .review-btn-next {
    top: unset;
    left: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    bottom: 15px;
    width: 40px;
  }

  .team-btn-prev,
  .yt-story-btn-prev,
  .review-btn-prev {
    right: calc(50% + 5px);
  }

  .team-btn-next,
  .yt-story-btn-next,
  .review-btn-next {
    left: calc(50% + 5px);
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .footer__content > * {
    width: 100%;
    max-width: 450px;
  }

  .footer__content > *:not(:last-child) {
    margin-bottom: 30px;
  }

  .zayavka {
    margin-left: auto;
    margin-right: auto;
  }

  .yt-story__slide {
    height: 55vw;
  }
}

@media screen and (max-width: 950px) {
  .hero {
    z-index: 3;
  }

  .i-hero {
    padding-bottom: 0;
  }

  .burger {
    display: block;
  }

  .header__call img {
    margin-right: 0;
  }

  .header__call span {
    display: none;
  }

  .nav {
    position: fixed;
    top: 64px;
    height: calc(100vh - 64px);
    z-index: 3;
    background-color: #fff;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
    align-items: unset;
  }

  .nav__link {
    display: block;
    width: 100%;
    color: #de8f44;
  }

  .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__title span {
    font-size: 20px;
  }

  .hero__title span::before {
    width: 220px;
  }

  .hero__descr {
    font-size: 18px;
    max-width: 330px;
  }

  .hero__advs {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .hero__adv {
    width: calc(100% / 12 * 4 - 10px);
  }

  .hero__adv:not(:last-child) {
    margin-right: 0;
  }

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

  .buyout__stats {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    padding-bottom: 15px;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .buyout__stats::after {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 8px;
  }

  .buyout__stat {
    width: calc(100% / 12 * 4 - 10px);
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .buyout__bg {
    position: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    width: 100%;
  }

  .search__item {
    width: 240px;
    font-size: 12px;
  }

  .search__col:first-child .search__item:first-child {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }

  .search__col:first-child .search__item:nth-child(2) {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }

  .search__col:last-child .search__item:first-child {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  .search__col:last-child .search__item:nth-child(2) {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  .why__items {
    margin-bottom: -60px;
  }

  .why__item {
    width: calc(50% - 20px);
    margin-bottom: 60px;
  }

  .why .section-title {
    margin-bottom: 60px;
  }

  .photo__item {
    width: calc(50% - 20px);
  }
  .photo__item-lg {
    width: calc(100% - 20px);
  }

  .in-service__content {
    padding: 15px 10px;
  }

  .in-service__img {
    position: unset;
    width: 100%;
    -webkit-transform: translateX(10px) translateY(15px);
    -ms-transform: translateX(10px) translateY(15px);
    transform: translateX(10px) translateY(15px);
    display: block;
  }

  .in-service__list,
  .in-service__descr {
    max-width: unset;
  }

  .in-service__text {
    max-width: unset;
  }

  .yt-story.section {
    padding: 20px 0;
  }

  .p-contact__content {
    flex-direction: column;
    justify-content: unset;
  }
  .p-contact__main {
    order: -1;
  }
  .p-contact__text,
  .p-contact__main {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 35px 0;
  }

  .nav {
    top: 51px;
    height: calc(100vh - 51px);
  }

  .header__btn {
    display: none;
  }

  .header__call {
    margin-right: 0;
  }

  .header__logo_title {
    font-size: 18px;
  }

  .header__logo_descr {
    font-size: 11px;
  }

  .hero__advs {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .hero__adv {
    width: calc(50% - 10px);
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .in-hero-img {
    position: unset;
    transform: unset;
  }

  .search {
    margin-bottom: 0;
  }

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

  .search__col {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .search__col:first-child {
    margin-bottom: 30px;
  }

  .search__item {
    -webkit-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }

  .search__center {
    position: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .how__road {
    display: none;
  }

  .how__item {
    width: 100%;
  }

  .how__main {
    text-align: left;
  }

  .how__content {
    padding-top: 0;
  }

  .how__num {
    margin-left: 0 !important;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    order: -1;
    margin-right: 30px !important;
    color: #fff;
    background: -webkit-linear-gradient(left, #ffd39e 0%, #e39955 100%) !important;
    background: linear-gradient(90deg, #ffd39e 0%, #e39955 100%) !important;
  }

  .how__num::after {
    background-image: url("../img/icons/plane-design.svg") !important;
    -webkit-transform: translateY(-50%) rotate(180deg) !important;
    -ms-transform: translateY(-50%) rotate(180deg) !important;
    transform: translateY(-50%) rotate(180deg) !important;
    left: unset;
    right: -20px;
  }

  .footer__bottom_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .footer__bottom_list {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .footer__bottom_list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .btn-up {
    right: 10px;
    bottom: 55px;
  }

  .yt-story__slide {
    height: 83vw;
  }

  .yt-modal-story__close {
    right: 10px;
  }
  .yt-modal-story__content {
    width: calc(100% - 90px);
  }

  .yt-modal-story-btn-prev,
  .yt-modal-story-btn-next {
    left: 50%;
    transform: translateX(-50%);
  }

  .yt-modal-story-btn-next {
    bottom: 5px;
    top: unset;
  }
  .yt-modal-story-btn-prev {
    top: 5px;
  }

  .p-contact__users {
    flex-wrap: wrap;
  }
  .p-contact__user {
    width: calc(50% - 10px);
  }
  .p-contact__user:not(:last-child) {
    margin-bottom: 30px;
  }
  .p-contact__address {
    font-size: 12px;
  }
  .p-contact__address span {
    font-size: 14px;
  }
}

@media screen and (max-width: 700px) {
  .method__item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .yt-modal-story__content {
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 80px);
    width: calc(100% - 10px);
    max-width: 100%;
    left: 5px;
  }

  .yt-modal-story-btn-prev,
  .yt-modal-story-btn-next {
    width: 24px;
    height: 24px;
  }

  .yt-modal-story-btn-next {
    bottom: 10px;
  }
  .yt-modal-story-btn-prev {
    top: 7px;
  }

  .yt-modal-story__close {
    top: 10px;
    right: 10px;
  }
}

@media screen and (max-width: 660px) {
  .hero__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
  }

  .hero__cert {
    width: 100%;
    max-width: unset;
    margin-top: 15px;
  }
}

@media screen and (max-width: 600px) {
  .section-title {
    margin-bottom: 20px;
  }

  .hero__adv {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .advantages .section-title {
    margin-bottom: 40px;
  }

  .advantages__item {
    width: calc(100% - 20px);
  }

  .buyout__stats {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .buyout__stat {
    width: 100%;
  }

  .buyout__main {
    padding-left: 0;
  }

  .buyout__text {
    font-size: 14px;
  }

  .why__item {
    width: calc(100% - 20px);
  }

  .hero__top img {
    order: -1;
    margin-left: 0;
    margin-right: 12px;
    width: 70px;
  }
  .hero__title {
    width: 100%;
    font-size: 28px;
  }
  .hero__top {
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .section-title {
    font-size: 32px;
  }

  .burger {
    margin-left: 8px;
  }

  .mob-btns {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    z-index: 9998;
  }

  .mob-btns > * {
    width: calc(50% - 5px);
  }

  .mob-btns a,
  .mob-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 36px;
    background: linear-gradient(180deg, #ffd39e 0.01%, #e39955 99.98%);
    color: #fff;
    border-radius: 4px;
  }

  .nav {
    top: 59px;
    height: calc(100vh - 59px);
  }

  .header__logo {
    max-width: 170px;
    white-space: unset;
  }

  .header__logo-img {
    width: 30px;
    margin-right: 8px;
  }

  .header__logo_title {
    font-size: 14px;
  }

  .header__soc {
    margin-right: 10px;
  }

  .header__soc li:first-child {
    margin-right: 0px;
  }

  .header__soc li:nth-child(2) {
    margin-right: 2px;
  }

  .footer__row img {
    width: 60px;
  }

  .footer__logo {
    white-space: unset;
  }

  .footer__logo_descr {
    margin-bottom: 0;
    font-size: 12px;
  }

  .footer__logo_title {
    font-size: 22px;
  }

  .footer__list:not(:last-child) {
    margin-right: 25px;
  }

  .footer__list li a {
    font-size: 12px;
  }

  .footer__soc {
    flex-wrap: wrap;
    justify-content: unset;
  }

  .footer__soc li:not(:last-child) {
    margin-right: 8px;
    margin-bottom: 10px;
  }
  .footer__soc li a img {
    width: 28px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .hero__top {
    margin-bottom: 0;
  }

  .hero__title br {
    display: none;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__title span::before {
    width: 140px;
  }

  .how__num {
    width: 35px;
    height: 35px;
    margin-right: 20px !important;
  }

  .how__num::after {
    width: 58px;
    height: 44px;
    right: -15px !important;
  }

  .how__descr {
    font-size: 12px;
  }

  .how__name {
    font-size: 16px;
  }

  .team-swiper {
    overflow: unset;
  }

  .photo__item {
    height: 30vw;
  }

  .btn-up {
    width: 40px;
    height: 40px;
    display: none;
  }

  .hero__cert img {
    margin-top: 20px;
  }
  .hero__cert {
    flex-direction: column;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

.loader-active {
  opacity: 1;
  pointer-events: none;
}

.loader-end {
  opacity: 0;
  pointer-events: none;
}

.sended {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 0;
}

.sended-active {
  opacity: 1;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.windows8 {
  position: absolute;
  width: 78px;
  height: 78px;
  margin: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.windows8 .wBall {
  position: absolute;
  width: 74px;
  height: 74px;
  opacity: 0;
  transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  animation: orbit 3.9325s infinite;
  -o-animation: orbit 3.9325s infinite;
  -ms-animation: orbit 3.9325s infinite;
  -webkit-animation: orbit 3.9325s infinite;
  -moz-animation: orbit 3.9325s infinite;
}

.windows8 .wBall .wInnerBall {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffcb18;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.windows8 #wBall_1 {
  animation-delay: 0.856s;
  -o-animation-delay: 0.856s;
  -ms-animation-delay: 0.856s;
  -webkit-animation-delay: 0.856s;
  -moz-animation-delay: 0.856s;
}

.windows8 #wBall_2 {
  animation-delay: 0.173s;
  -o-animation-delay: 0.173s;
  -ms-animation-delay: 0.173s;
  -webkit-animation-delay: 0.173s;
  -moz-animation-delay: 0.173s;
}

.windows8 #wBall_3 {
  animation-delay: 0.3465s;
  -o-animation-delay: 0.3465s;
  -ms-animation-delay: 0.3465s;
  -webkit-animation-delay: 0.3465s;
  -moz-animation-delay: 0.3465s;
}

.windows8 #wBall_4 {
  animation-delay: 0.5095s;
  -o-animation-delay: 0.5095s;
  -ms-animation-delay: 0.5095s;
  -webkit-animation-delay: 0.5095s;
  -moz-animation-delay: 0.5095s;
}

.windows8 #wBall_5 {
  animation-delay: 0.693s;
  -o-animation-delay: 0.693s;
  -ms-animation-delay: 0.693s;
  -webkit-animation-delay: 0.693s;
  -moz-animation-delay: 0.693s;
}

@keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    origin: 0;
  }

  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    origin: 7%;
  }

  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    origin: 30%;
  }

  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    origin: 39%;
  }

  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    origin: 70%;
  }

  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
  }
}

@-webkit-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 0;
  }

  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    -webkit-origin: 7%;
  }

  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 30%;
  }

  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 39%;
  }

  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 70%;
  }

  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
}

.modalitem {
  background: #fff;
  border-radius: 7px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 12px 10px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all linear 0.2s;
}

.error h4 {
  text-transform: uppercase;
}
.error {
  text-align: center;
}
.error {
  width: 100%;
  height: 100vh;
  background: url(/img/not-found.jpg) center/cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #000;
}
.error > div {
  margin-bottom: 9%;
}

.error h4 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}

.error p {
  font-size: 20px;
  font-weight: 700;
}

.error .but {
  margin: 0 auto;
  background: #4ddd22;
  color: #fff;
}
.my-404 {
  margin: 0;
}
