@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: "Montserrat";
  font-weight: 400;
  color: #000000;
  font-size: 18px;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

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

a img {
  border: none;
  outline: none;
}

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

.container {
  max-width: 1176px;
  margin: 0 auto;
}

@media screen and (max-width: 1300px) {
  .container {
    width: 924px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: 100%;
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}
/* BTN */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  font-size: 20px;
  width: 320px;
  height: 82px;
}
@media only screen and (max-width: 1800px) {
  .btn {
    width: 223px;
    height: 57px;
    font-size: 14px;
  }
}
.btn::after {
  content: "";
  display: block;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  margin-left: 16px;
}
@media only screen and (max-width: 1800px) {
  .btn::after {
    width: 41px;
    height: 41px;
    margin-left: 12px;
  }
}
.btn.btn-white {
  background: #fff;
  color: #383838;
}
.btn.btn-white::after {
  background-color: #ffa300;
  background-repeat: no-repeat;
  transition: 300ms;
  background-position: center center;
  background-image: url(../images/arrow-btn.svg);
  background-size: 10px;
}
@media only screen and (max-width: 1800px) {
  .btn.btn-white::after {
    background-size: 6px;
  }
}
.btn.btn-white:hover::after {
  background-color: #c3262b;
}

/* TITLE */
.title {
  font-size: 48px;
  line-height: 125%;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 991px) {
  .title {
    font-size: 24px;
  }
}
.title span {
  display: inline-block;
  border-radius: 40px;
  color: #fff;
  background: #ffa300;
  padding: 0 35px;
}
@media only screen and (max-width: 1880px) {
  .title span {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1300px) {
  .title span {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .title span {
    padding: 0 12px;
  }
}
.title.title-white {
  color: #fff;
}
.title.title-white span {
  background: #383838;
}

.wrapper {
  overflow: hidden;
  position: relative;
  background: #fff;
}

.header {
  padding: 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 150;
}
@media only screen and (max-width: 1300px) {
  .header {
    padding: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 16px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 24px 16px;
  }
}
.header__end {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media only screen and (max-width: 1300px) {
  .header__end {
    gap: 32px;
  }
}
.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__item {
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .header__logo {
    height: 32px;
  }
}
.header__logo img.new {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .header__logo img.new {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .header__logo img.new {
    display: none;
  }
}
@media only screen and (max-width: 1300px) {
  .header__logo img {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .header__logo img {
    display: block;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav li {
  margin-right: 64px;
}
@media only screen and (max-width: 1300px) {
  .header__nav li {
    margin-right: 32px;
  }
}
.header__nav li:last-child {
  margin-right: 0;
}
.header__nav li a {
  font-size: 18px;
  position: relative;
  color: #fff;
  font-weight: 700;
}
.header__nav li a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ffa300;
  transition: 300ms;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media only screen and (max-width: 1300px) {
  .header__nav li a::before {
    height: 1px;
    bottom: -2px;
  }
}
.header__nav li a:hover::before {
  width: 100%;
}
.header__btn {
  width: 206px;
  height: 44px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .header__btn {
    display: none;
  }
}
.header__btn.btn.btn-white {
  color: #ffa300;
}
.header__btn.btn.btn-white::after {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .header__btn.btn.btn-white::after {
    width: 30px;
    height: 30px;
    background-size: 5px;
  }
}
.header__burger {
  display: none;
  width: 37px;
  height: 37px;
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}
.header__burger a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 2px;
  border-radius: 35px;
  background: transparent;
  transition: all 0.2s ease-in-out;
  background: #fff;
}
.header__burger a span:before, .header__burger a span:after {
  content: "";
  width: 19px;
  height: 2px;
  position: absolute;
  left: 0;
  background: #fff;
  border-radius: 35px;
  transition: all 0.2s ease-in-out;
}
.header__burger a span:before {
  top: -5px;
}
.header__burger a span:after {
  top: 5px;
}

.showcase {
  border-radius: 0 0 40px 40px;
  background: #ffa300 linear-gradient(45deg, #d78900 0%, rgba(215, 137, 0, 0) 62.86%);
  position: relative;
}
@media only screen and (max-width: 1300px) {
  .showcase {
    overflow: hidden;
  }
}
.showcase__inner {
  position: relative;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 991px) {
  .showcase__inner {
    height: 654px;
    align-items: flex-start;
    padding-top: 73px;
  }
}
.showcase__line {
  display: flex;
  align-items: center;
  position: absolute;
}
.showcase__line.first {
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 1650px) {
  .showcase__line.first {
    height: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .showcase__line.first {
    display: none;
  }
}
.showcase__line.second {
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 1650px) {
  .showcase__line.second {
    height: 200px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 991px) {
  .showcase__line.second {
    display: none;
  }
}
.showcase__line.mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .showcase__line.mobile {
    display: flex;
    bottom: 0;
    width: 100%;
  }
  .showcase__line.mobile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.showcase__title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}
.showcase__title span {
  display: block;
  font-size: 45px;
}
@media only screen and (max-width: 991px) {
  .showcase__title span {
    font-size: 24px;
  }
}
.showcase__title p {
  font-size: 90px;
  line-height: 0.9;
}
@media only screen and (max-width: 991px) {
  .showcase__title p {
    font-size: 40px;
  }
}
.showcase__text {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 533px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .showcase__text {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.showcase__label {
  padding: 7px 32px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  background: #c3262b;
  max-width: 630px;
  letter-spacing: 0.05em;
  border-radius: 30px;
}
@media only screen and (max-width: 991px) {
  .showcase__label {
    font-size: 14px;
    max-width: 414px;
    padding: 8px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .showcase__label {
    border-radius: 15px;
  }
}
.showcase__after {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 1450px;
  height: 634px;
}
@media only screen and (max-width: 1650px) {
  .showcase__after {
    height: 539px;
    width: 1240px;
    bottom: 10%;
  }
}
@media only screen and (max-width: 991px) {
  .showcase__after {
    width: 808px;
    height: 351px;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%) translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .showcase__after {
    width: 462px;
    height: 200px;
    top: 55%;
  }
}
.showcase__img {
  position: absolute;
  right: -25%;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1650px) {
  .showcase__img {
    right: 0;
  }
}
@media only screen and (max-width: 1300px) {
  .showcase__img {
    height: 630px;
    z-index: 4;
    bottom: -82px;
    right: -20px;
  }
  .showcase__img img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .showcase__img {
    width: 539px;
    height: 568px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    bottom: -21%;
  }
}
@media only screen and (max-width: 767px) {
  .showcase__img {
    width: 323px;
    height: 340px;
    bottom: 0;
  }
}
.showcase__info {
  max-width: 750px;
  position: relative;
  z-index: 1;
}
.showcase__btn {
  display: none;
}
@media only screen and (max-width: 991px) {
  .showcase__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    z-index: 5;
  }
}
.showcase__btn .header__btn {
  display: flex;
  width: 288px;
  height: 44px;
}

.drop-menu {
  background: #ffa300;
  width: 100%;
  position: fixed;
  top: -200vh;
  left: 0;
  z-index: 200;
  display: none;
  transition: 500ms;
}
@media only screen and (max-width: 991px) {
  .drop-menu {
    display: block;
  }
  .drop-menu.active {
    top: 0;
  }
}
.drop-menu__inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  align-items: center;
  position: relative;
  padding-bottom: 120px;
}
.drop-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px 25px;
}
.drop-menu__strong {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  order: 1;
}
.drop-menu__logo {
  display: flex;
  align-items: center;
  height: 32px;
}
.drop-menu__nav {
  margin-bottom: 55px;
}
.drop-menu__nav li {
  margin-bottom: 32px;
}
.drop-menu__nav li:last-child {
  margin-bottom: 0;
}
.drop-menu__nav li a {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.drop-menu__btn {
  margin: 0 auto;
  width: 288px;
  height: 44px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 700;
}
.drop-menu__btn.btn.btn-white {
  color: #ffa300;
}
.drop-menu__btn.btn.btn-white::after {
  display: none;
}

.banner {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .banner {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.banner__inner {
  height: 210px;
  margin-top: -105px;
  background: #fff;
  position: relative;
  z-index: 4;
  border-radius: 40px;
  padding: 32px 47px;
  position: relative;
  overflow: hidden;
  background: #faf6ec;
}
@media only screen and (max-width: 991px) {
  .banner__inner {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner__inner {
    padding: 32px 16px;
    height: 321px;
  }
}
.banner__inner:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  opacity: 0.4;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .banner__inner:before {
    display: none;
  }
}
.banner__img {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .banner__img {
    width: 440px;
    height: 400px;
    top: auto;
    bottom: -50%;
    left: 50%;
    transform: translateX(-40%);
  }
}
.banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner__img img.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .banner__img img {
    display: none;
  }
  .banner__img img.mobile {
    display: block;
  }
}
.banner__btn {
  background: #ffa300;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 237px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.banner__btn:after {
  display: none;
}
.banner__info {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .banner__info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.banner__info ul {
  margin-bottom: 17px;
}
@media only screen and (max-width: 991px) {
  .banner__info ul {
    margin-bottom: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__info ul {
    margin-bottom: 140px;
  }
}
.banner__info ul li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .banner__info ul li {
    font-size: 14px;
  }
}
.banner__info ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #ffa300;
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .banner__info ul li:before {
    width: 6px;
    height: 6px;
  }
}
.banner__promo {
  position: absolute;
  right: 102px;
  top: 50%;
  transform: translateY(-50%) rotate(-9deg);
  z-index: 6;
  font-weight: 700;
  font-size: 25px;
  line-height: 148%;
  letter-spacing: 0.05em;
  color: #fff;
  background: #c3262b;
  border-radius: 35px;
  padding: 8px 37px;
}
@media only screen and (max-width: 991px) {
  .banner__promo {
    right: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__promo {
    right: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-9deg);
    font-size: 16px;
    width: 168px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.dohod {
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .dohod {
    margin-bottom: 80px;
  }
}
.dohod__inner {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .dohod__inner {
    flex-direction: column;
  }
}
.dohod__title {
  max-width: 700px;
  margin-bottom: 42px;
}
@media only screen and (max-width: 991px) {
  .dohod__title {
    margin-bottom: 30px;
  }
}
.dohod__title span {
  display: inline;
}
@media only screen and (max-width: 1300px) {
  .dohod__title span {
    display: inline-block;
  }
}
.dohod__text {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .dohod__text {
    font-size: 14px;
  }
}
.dohod__text p {
  margin-bottom: 20px;
}
.dohod__text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .dohod__info {
    margin-bottom: 20px;
  }
}
.dohod__img {
  display: flex;
  align-items: center;
  width: 394px;
  flex-shrink: 0;
  margin-left: 50px;
}
@media only screen and (max-width: 1300px) {
  .dohod__img {
    height: 604px;
    border-radius: 40px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 991px) {
  .dohod__img {
    width: 100%;
    height: 320px;
    margin-left: 0;
  }
}
.dohod__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.franch {
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .franch {
    margin-bottom: 80px;
  }
}
.franch__title {
  margin-bottom: 62px;
}
.franch__item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed rgba(178, 123, 16, 0.4);
  padding-bottom: 33px;
  margin-bottom: 33px;
}
@media only screen and (max-width: 991px) {
  .franch__item {
    padding-bottom: 22px;
    margin-bottom: 22px;
    flex-direction: column;
  }
}
.franch__item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.franch__item span {
  flex-shrink: 0;
  width: 250px;
  margin-right: 48px;
  font-weight: 500;
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .franch__item span {
    width: auto;
    font-size: 16px;
  }
}
.franch__item p {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .franch__item p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 400;
  }
}
.franch__items {
  margin-bottom: 64px;
}
@media only screen and (max-width: 991px) {
  .franch__items {
    margin-bottom: 33px;
  }
}
.franch__banner {
  border-radius: 40px;
  background: rgb(250, 246, 236);
  position: relative;
  min-height: 210px;
  border-radius: 40px;
  overflow: hidden;
  padding: 28px 40px;
}
@media only screen and (max-width: 991px) {
  .franch__banner {
    padding: 16px;
    border-radius: 20px;
    min-height: 100%;
  }
}
.franch__banner--info {
  max-width: 77%;
}
@media only screen and (max-width: 1300px) {
  .franch__banner--info {
    max-width: 603px;
  }
}
@media only screen and (max-width: 991px) {
  .franch__banner--info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .franch__banner--info .banner__btn {
    width: 256px;
    font-size: 16px;
  }
}
.franch__banner--sub {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .franch__banner--sub {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.franch__banner--text {
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .franch__banner--text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.franch__banner--img {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
  .franch__banner--img {
    display: none;
  }
}

.mission {
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .mission {
    margin-bottom: 80px;
  }
}
.mission__title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .mission__title {
    margin-bottom: 16px;
  }
}
.mission__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
}
@media only screen and (max-width: 1300px) {
  .mission__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .mission__items {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}
.mission__image {
  grid-column: span 2;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1300px) {
  .mission__image {
    order: 1;
    height: 276px;
    border-radius: 40px;
    overflow: hidden;
  }
  .mission__image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media only screen and (max-width: 991px) {
  .mission__image {
    display: none;
  }
}
.mission__block {
  background: rgb(250, 246, 236);
  position: relative;
  border-radius: 40px;
  position: relative;
  padding: 49px 64px 32px 32px;
  min-height: 276px;
}
@media only screen and (max-width: 1300px) {
  .mission__block {
    min-height: 260px;
  }
}
@media only screen and (max-width: 991px) {
  .mission__block {
    min-height: 100%;
    padding: 16px;
    border-radius: 20px;
    padding-right: 40px;
  }
}
.mission__block-image {
  position: absolute;
  display: flex;
  align-items: center;
  right: 32px;
  top: 32px;
}
@media only screen and (max-width: 991px) {
  .mission__block-image {
    right: 16px;
    top: 16px;
    width: 42px;
  }
}
.mission__head {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 47px;
}
@media only screen and (max-width: 991px) {
  .mission__head {
    font-size: 17px;
    margin-bottom: 16px;
  }
}
.mission__text {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .mission__text {
    font-weight: 400;
    font-size: 14px;
  }
}

.buisnes {
  margin-bottom: 180px;
  background: url("../images/buisnes.png") 50% 50%;
  min-height: 716px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .buisnes {
    min-height: 100%;
    margin-bottom: 80px;
    padding: 74px 0;
  }
}
.buisnes__inner {
  background: rgb(250, 246, 236);
  border-radius: 40px;
  padding: 40px;
}
@media only screen and (max-width: 991px) {
  .buisnes__inner {
    padding: 16px;
    border-radius: 20px;
  }
}
.buisnes__title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .buisnes__title {
    margin-bottom: 16px;
  }
}
.buisnes__text {
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .buisnes__text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .buisnes .banner__btn {
    width: 100%;
  }
}

.russian {
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .russian {
    margin-bottom: 80px;
  }
}
.russian__title {
  margin-bottom: 24px;
}
.russian__info {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .russian__info {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .russian__info {
    flex-direction: column-reverse;
  }
}
.russian__items {
  height: 606px;
  width: 633px;
  position: relative;
  flex-shrink: 0;
  margin-right: 34px;
}
@media only screen and (max-width: 1300px) {
  .russian__items {
    width: 393px;
    height: 376px;
  }
}
@media only screen and (max-width: 991px) {
  .russian__items {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .russian__items {
    width: 288px;
    height: 275px;
  }
}
.russian__item {
  position: absolute;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 1300px) {
  .russian__item {
    height: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .russian__item {
    height: 158px;
  }
  .russian__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.russian__item--first {
  left: 0;
  top: 69px;
}
@media only screen and (max-width: 767px) {
  .russian__item--first {
    top: 31px;
  }
}
.russian__item--second {
  right: 0;
  top: 0;
}
.russian__item--third {
  bottom: 0;
  transform: translateX(80%);
}
@media only screen and (max-width: 991px) {
  .russian__nav {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .russian__nav {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.russian__nav li {
  position: relative;
  padding-left: 30px;
  font-size: 24px;
  font-weight: 600;
  max-width: 74%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .russian__nav li {
    font-size: 16px;
    padding-left: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .russian__nav li {
    margin-bottom: 32px;
  }
}
.russian__nav li:last-child {
  margin-bottom: 0;
}
.russian__nav li:before {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffa300;
  border-radius: 50%;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .russian__nav li:before {
    width: 6px;
    height: 6px;
  }
}

.design {
  background: #ffa300;
  position: relative;
  padding: 100px 0;
  margin-bottom: 180px;
}
@media only screen and (max-width: 1300px) {
  .design {
    padding: 55px 0;
  }
}
@media only screen and (max-width: 991px) {
  .design {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .design {
    background: #fff;
    margin-top: -50px;
    padding: 0;
  }
}
.design__line {
  display: flex;
  align-items: center;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .design__line {
    display: none;
  }
}
.design__line.first {
  left: 0;
  top: 0;
}
.design__line.second {
  right: 0;
  top: 0;
}
.design__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .design__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .design__inner {
    flex-direction: column-reverse;
    margin: 0 -16px;
  }
}
.design__bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .design__bg {
    width: 1250px;
    height: 550px;
    left: -41%;
  }
}
@media only screen and (max-width: 767px) {
  .design__bg {
    display: none;
  }
}
.design__container {
  max-width: 510px;
  margin-left: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1300px) {
  .design__container {
    max-width: 442px;
  }
}
@media only screen and (max-width: 991px) {
  .design__container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1300px) {
  .design__item {
    height: 599px;
    border-radius: 48px;
    overflow: hidden;
  }
  .design__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media only screen and (max-width: 991px) {
  .design__item {
    border-radius: 20px;
    height: 593px;
  }
}
.design__aside {
  width: 100%;
  margin-left: 40px;
}
@media only screen and (max-width: 991px) {
  .design__aside {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .design__aside {
    padding: 0 16px;
    margin-bottom: -100px;
    position: relative;
    z-index: 4;
  }
}
.design__content {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 2px solid rgb(250, 246, 236);
  border-radius: 48px;
  padding: 64px;
}
@media only screen and (max-width: 991px) {
  .design__content {
    padding: 16px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .design__content .banner__btn {
    width: 100%;
    font-size: 16px;
  }
}
.design__title {
  margin-bottom: 16px;
}
.design__text {
  font-weight: 500;
  margin-bottom: 46px;
}
@media only screen and (max-width: 991px) {
  .design__text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 35px;
  }
}
.design__text p {
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .design__text p {
    margin-bottom: 20px;
  }
}
.design__text p:last-child {
  margin-bottom: 0;
}
.design .swiper-pagination {
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.4);
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin: 0;
  bottom: 20px;
}
.design .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.design .swiper-pagination-bullet-active {
  background: #c3262b;
}

.best {
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .best {
    margin-bottom: 80px;
  }
}
.best__title {
  max-width: 450px;
  margin-bottom: 43px;
}
@media only screen and (max-width: 991px) {
  .best__title {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .best__title {
    max-width: 230px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
  }
  .best__title span {
    padding: 5px 12px;
  }
}
.best__info p {
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .best__info p {
    font-size: 14px;
    font-weight: 400;
  }
}
.best__info p:last-child {
  margin-bottom: 0;
}
.best__items {
  display: grid;
  grid-template-columns: 1fr 394px;
  grid-gap: 64px;
}
@media only screen and (max-width: 991px) {
  .best__items {
    grid-template-columns: 1fr 288px;
    grid-gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .best__items {
    grid-template-columns: 1fr;
  }
}
.best__right {
  position: relative;
}
.best__sicle {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffa300;
  border-radius: 35px;
  max-width: 326px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 8px 0;
}
@media only screen and (max-width: 991px) {
  .best__sicle {
    max-width: 229px;
    border-radius: 8px;
  }
}
.best__head {
  color: #fff;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .best__head {
    font-size: 18px;
  }
}
.best__city {
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .best__city {
    font-size: 12px;
  }
}
.best__image {
  height: 530px;
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .best__image {
    height: 328px;
    border-radius: 20px;
  }
}
.best__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.company {
  background: rgb(250, 246, 236);
  position: relative;
  margin-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .company {
    margin-bottom: 80px;
  }
}
.company__line {
  display: flex;
  align-items: center;
  position: absolute;
}
.company__line.first {
  top: 0;
  left: 0;
}
.company__line.second {
  bottom: 0;
  right: 0;
}
.company__inner {
  padding-top: 78px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .company__inner {
    padding: 32px 0;
  }
}
.company__title {
  text-align: center;
  margin-bottom: 74px;
}
@media only screen and (max-width: 991px) {
  .company__title {
    margin-bottom: 20px;
  }
}
.company__content {
  background: #fff;
  padding: 48px;
  position: relative;
  z-index: 1;
  border-radius: 48px;
}
@media only screen and (max-width: 991px) {
  .company__content {
    padding: 16px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .company__container {
    padding-bottom: 100px;
  }
}
.company__item {
  display: grid;
  grid-template-columns: 1fr 331px;
  grid-gap: 40px;
}
@media only screen and (max-width: 1300px) {
  .company__item {
    grid-gap: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .company__item {
    grid-template-columns: 1fr 256px;
    grid-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .company__item {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.company__sub {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .company__sub {
    font-size: 24px;
  }
}
.company__text {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .company__text {
    font-weight: 400;
    font-size: 14px;
  }
}
.company .counter {
  position: absolute;
  bottom: 0;
  right: 380px;
  font-size: 32px;
  font-weight: 700;
  line-height: 187%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .company .counter {
    font-size: 24px;
    right: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .company .counter {
    right: 0;
  }
}
.company__btns {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 4;
}
.company__next, .company__prev {
  display: flex;
  align-items: center;
  background: rgb(250, 246, 236);
  width: 48px;
  height: 48px;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.company__img {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .company__img {
    order: -1;
    width: 100%;
    height: 326px;
    border-radius: 20px;
    overflow: hidden;
  }
  .company__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.service {
  margin-bottom: 228px;
}
@media only screen and (max-width: 991px) {
  .service {
    margin-bottom: 80px;
  }
}
.service__title {
  margin-bottom: 74px;
}
@media only screen and (max-width: 991px) {
  .service__title {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .service__title {
    text-align: center;
  }
}
.service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .service__items {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}
.service__item {
  background: #ffa300;
  border-radius: 40px;
  padding: 48px 24px;
}
@media only screen and (max-width: 991px) {
  .service__item {
    padding: 24px;
    border-radius: 20px;
  }
}
.service__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .service__image {
    height: 63px;
    margin-bottom: 24px;
  }
}
.service__head {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .service__head {
    font-size: 24px;
  }
}
.service__text {
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .service__text {
    font-size: 14px;
  }
}

.format {
  margin-bottom: 207px;
}
@media only screen and (max-width: 991px) {
  .format {
    margin-bottom: 80px;
  }
}
.format__title {
  text-align: center;
  margin-bottom: 60px;
}
.format__info {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .format__info {
    display: block;
  }
}
.format__left {
  width: 152px;
  margin-right: 82px;
  margin-top: 80px;
}
@media only screen and (max-width: 1300px) {
  .format__left {
    margin-right: 40px;
    margin-top: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .format__left {
    display: none;
  }
}
.format__left span {
  display: block;
  font-weight: 500;
  margin-bottom: 42px;
}
.format__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}
@media only screen and (max-width: 1300px) {
  .format__items {
    grid-gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .format__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    width: 100%;
  }
}
.format__item {
  background: rgb(250, 246, 236);
  padding: 40px;
  border-radius: 40px;
}
@media only screen and (max-width: 991px) {
  .format__item {
    padding: 16px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .format__item {
    width: 100%;
  }
}
.format__top {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(178, 123, 16, 0.4);
  padding-bottom: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1300px) {
  .format__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 991px) {
  .format__top {
    flex-direction: row;
    align-items: center;
  }
  .format__top img {
    width: 48px;
    height: 48px;
  }
}
.format__top span {
  font-weight: 900;
  font-size: 26px;
  line-height: 138%;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 991px) {
  .format__top span {
    font-size: 18px;
  }
}
.format__text {
  font-weight: 500;
  font-size: 18px;
  height: 60px;
  border-bottom: 1px dashed rgba(178, 123, 16, 0.4);
  padding-bottom: 30px;
  line-height: 156%;
}
@media only screen and (max-width: 991px) {
  .format__text {
    height: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
  }
}
.format__text span {
  display: none;
}
@media only screen and (max-width: 991px) {
  .format__text span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.format__grid {
  border-bottom: 1px dashed rgba(178, 123, 16, 0.4);
  padding-bottom: 20px;
  margin-bottom: 15px;
  margin-top: 20px;
}
.format__grid--none {
  border-bottom: 0;
}
.format__grid span {
  display: none;
}
@media only screen and (max-width: 991px) {
  .format__grid span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
  }
}
.format__grid p {
  font-weight: 900;
  font-size: 26px;
  line-height: 138%;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 991px) {
  .format__grid p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .format .banner__btn {
    width: 100%;
  }
}

.form {
  background: #ffa300 linear-gradient(192deg, rgba(0, 0, 0, 0.2) 15.58%, rgba(0, 0, 0, 0) 57.59%);
  position: relative;
}
.form__image {
  position: absolute;
  left: -20%;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .form__image {
    left: -50%;
    top: -10%;
  }
}
.form__inner {
  padding-top: 82px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .form__inner {
    padding-top: 30px;
  }
}
.form__title {
  background: #c3262b;
  padding: 32px 42px;
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .form__title {
    font-size: 24px;
    padding: 12px;
    margin-bottom: 0;
  }
}
.form__item {
  position: absolute;
  display: flex;
  align-items: center;
  left: -13%;
  z-index: 1;
  bottom: 0;
}
@media only screen and (max-width: 1300px) {
  .form__item {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .form__item {
    display: flex;
    left: 0;
    position: relative;
    width: 442px;
    height: 453px;
    margin: -10px auto;
    z-index: 2;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .form__item {
    width: 379px;
    height: 389px;
    margin-top: -25px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 380px) {
  .form__item {
    transform: translateX(-40px);
  }
}
.form__items {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1300px) {
  .form__items {
    justify-content: center;
  }
}
@media only screen and (max-width: 991px) {
  .form__items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.form__form {
  transform: rotate(2.73deg);
  background: #f6f6f6;
  width: 680px;
  border-radius: 56px;
  padding: 74px 65px 242px 90px;
  background: #fff;
  margin-bottom: -157px;
}
@media only screen and (max-width: 991px) {
  .form__form {
    width: 100%;
    max-width: 605px;
    padding: 55px 68px 150px;
    margin-bottom: -100px;
    position: relative;
    z-index: 3;
    margin-top: -60px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .form__form {
    width: 384px;
  }
}
.form__form-content {
  transform: rotate(-2.73deg);
}
.form__form-head {
  font-size: 32px;
  line-height: 47px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .form__form-head {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 120%;
  }
}
.form__btn {
  display: none;
}
@media only screen and (max-width: 991px) {
  .form__btn {
    display: flex;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .form__mobile {
    display: none;
  }
}
.form__input {
  position: relative;
  margin-bottom: 52px;
}
.form__input span {
  display: none;
}
.form__input.error span {
  display: block;
  font-size: 14px;
  color: #c3262b;
  line-height: 26px;
}
.form__input.error input {
  border-bottom: 1px solid #c3262b;
}
.form form input {
  width: 100%;
  padding-bottom: 22px;
  border: 0;
  background: none;
  border-bottom: 1px solid #383838;
  font-size: 24px;
  font-weight: 500;
  color: #383838;
}
.form form input::-moz-placeholder {
  color: #b7b7b7;
}
.form form input::-ms-input-placeholder {
  color: #b7b7b7;
}
.form form input::placeholder {
  color: #b7b7b7;
}
.form form button {
  cursor: pointer;
  transition: 300ms;
  width: 311px;
  border: 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
}
.form form button:hover {
  background: #c3262b;
}
.form form button::after {
  background-color: #fff;
  background-repeat: no-repeat;
  transition: 300ms;
  background-position: center center;
  background-image: url(../images/arrow-btn-yellow.svg);
  background-size: 10px;
}
.form .checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 60px;
  position: relative;
}
.form .checkbox:last-child {
  margin-bottom: 0;
}
.form .checkbox__inner {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 22px;
}
.form .checkbox__inner > span {
  width: 100%;
  height: 100%;
  border: 1px solid #383838;
  display: block;
  border-radius: 3px;
  position: relative;
}
.form .checkbox__inner > span.active {
  opacity: 1;
}
.form .checkbox__inner > span::before {
  display: block;
  content: "";
  position: absolute;
  top: 8%;
  left: 9%;
  right: 0;
  bottom: 0;
  border: solid #b9bdc2;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  width: 5px;
  height: 11px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}
.form .checkbox input {
  display: none;
}
.form .checkbox input:checked + span::before {
  opacity: 1;
  visibility: visible;
  border: solid #2d2e30;
  border-width: 0px 2px 2px 0;
}
@media only screen and (max-width: 1800px) {
  .form .checkbox input:checked + span::before {
    border-width: 0px 1px 1px 0;
    top: 12%;
    left: 9%;
    width: 3px;
    height: 7px;
  }
}
.form .checkbox__text {
  font-size: 18px;
}
.form .checkbox__text a {
  position: relative;
}
.form .checkbox__text a:hover::before {
  opacity: 0;
}
.form .checkbox__text a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ffa300;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 300ms;
}

.footer {
  background: #000;
  padding: 52px 0;
  margin-top: -35px;
  position: relative;
  z-index: 5;
  color: #fff;
}
.footer__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  padding: 0 28px;
}
@media only screen and (max-width: 767px) {
  .footer__items {
    grid-template-columns: 1fr;
    grid-gap: 55px;
  }
}
.footer__left, .footer__right {
  font-size: 14px;
}
.footer__left p, .footer__right p {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__left span,
.footer__left a, .footer__right span,
.footer__right a {
  font-size: 14px;
  color: #5a6c7d;
}
.footer__right {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footer__right {
    text-align: left;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer__socials {
    justify-content: flex-start;
  }
}
.footer__socials a {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.footer__socials a:last-child {
  margin-right: 0;
}

.fancybox-bg {
  background: rgba(255, 163, 0, 0.8);
}

.modal {
  max-width: 562px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  overflow: initial;
}
@media only screen and (max-width: 767px) {
  .modal {
    padding: 30px 20px;
    border-radius: 20px;
  }
}
.modal__close {
  display: flex;
  align-items: center;
  position: absolute;
  top: -50px;
  right: -60px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modal__close {
    right: 0;
    background: #ffa300;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    justify-content: center;
  }
}
.modal form input {
  width: 100%;
  padding-bottom: 16px;
  border: 0;
  background: none;
  border-bottom: 1px solid #383838;
  font-size: 18px;
  font-weight: 500;
  color: #383838;
}
@media only screen and (max-width: 1800px) {
  .modal form input {
    padding-bottom: 14px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  .modal form input {
    font-size: 14px;
    padding-bottom: 10px;
  }
}
.modal form input::-moz-placeholder {
  color: #b7b7b7;
}
.modal form input::-ms-input-placeholder {
  color: #b7b7b7;
}
.modal form input::placeholder {
  color: #b7b7b7;
}
.modal form button {
  cursor: pointer;
  transition: 300ms;
  border: 0;
  font-weight: 700;
  text-transform: none;
  display: flex;
  width: 237px;
  height: 57px;
  font-size: 18px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .modal form button {
    width: 100%;
  }
}
.modal form button:hover {
  background: #c3262b;
}
.modal form button::after {
  background-color: #fff;
  background-repeat: no-repeat;
  transition: 300ms;
  background-position: center center;
  background-image: url(../images/arrow-btn-yellow.svg);
  background-size: 10px;
}
@media only screen and (max-width: 1800px) {
  .modal form button::after {
    background-size: 6px;
  }
}
@media only screen and (max-width: 1800px) {
  .modal form button::after {
    width: 41px;
    height: 41px;
    margin-left: 11px;
  }
}
@media only screen and (max-width: 1300px) {
  .modal form button::after {
    width: 32px;
    height: 32px;
    margin-left: 8px;
    background-size: 5px;
  }
}
.modal form .form__input {
  margin-bottom: 20px;
}
.modal .checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 60px;
  position: relative;
}
@media only screen and (max-width: 1800px) {
  .modal .checkbox {
    margin-bottom: 42px;
  }
}
.modal .checkbox:last-child {
  margin-bottom: 0;
}
.modal .checkbox__inner {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 22px;
}
@media only screen and (max-width: 1800px) {
  .modal .checkbox__inner {
    margin-right: 17px;
    width: 15px;
    height: 15px;
  }
}
.modal .checkbox__inner > span {
  width: 100%;
  height: 100%;
  border: 1px solid #383838;
  display: block;
  border-radius: 3px;
  position: relative;
}
.modal .checkbox__inner > span.active {
  opacity: 1;
}
.modal .checkbox__inner > span::before {
  display: block;
  content: "";
  position: absolute;
  top: 8%;
  left: 9%;
  right: 0;
  bottom: 0;
  border: solid #b9bdc2;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  width: 5px;
  height: 11px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}
.modal .checkbox input {
  display: none;
}
.modal .checkbox input:checked + span::before {
  opacity: 1;
  visibility: visible;
  border: solid #2d2e30;
  border-width: 0px 2px 2px 0;
}
@media only screen and (max-width: 1800px) {
  .modal .checkbox input:checked + span::before {
    border-width: 0px 1px 1px 0;
    top: 12%;
    left: 9%;
    width: 3px;
    height: 7px;
  }
}
.modal .checkbox__text {
  font-size: 18px;
}
@media only screen and (max-width: 1800px) {
  .modal .checkbox__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1300px) {
  .modal .checkbox__text {
    font-size: 11px;
  }
}
.modal .checkbox__text a {
  position: relative;
}
.modal .checkbox__text a:hover::before {
  opacity: 0;
}
.modal .checkbox__text a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ffa300;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 300ms;
}
.modal .checkbox.error .checkbox__inner, .checkbox.error .checkbox__inner > span {
  border: 1px solid #c3262b;
}
.checkbox > .error {
  display: none;
}
.checkbox.error > .error {
  display: inline;
  position: absolute;
  font-size: 10px;
  color: red;
  top: 25px;
}
.modal .form__form {
  width: 100%;
  transform: none;
  padding: 0;
  margin: 0;
  min-width: auto;
}
@media only screen and (max-width: 767px) {
  .modal .form__form {
    display: block;
  }
}
.modal .form__form-content {
  transform: none;
}
.modal .form__form-head {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .modal .form__form-head {
    font-size: 18px;
    line-height: 28px;
  }
}
.modal .fancybox-close-small {
  display: none;
}