@charset "UTF-8";
@font-face {
  font-family: "TTFirsNeue-Light";
  src: url("../fonts/TTFirsNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Regular";
  src: url("../fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-ExtraLight";
  src: url("../fonts/TTFirsNeue-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-DemiBold";
  src: url("../fonts/TTFirsNeue-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Bold";
  src: url("../fonts/TTFirsNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-ExtraBold";
  src: url("../fonts/TTFirsNeue-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Medium";
  src: url("../fonts/TTFirsNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Thin";
  src: url("../fonts/TTFirsNeue-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Black";
  src: url("../fonts/TTFirsNeue-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1320px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding-top: 144px;
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 114px;
  }
}

.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Inter";
  color: #fff;
  background: #000;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

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

.header__row {
  background: #0B0B0B;
  border-radius: 23px;
  padding: 35px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__row {
    padding: 20px 15px;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .logo img {
    width: 180px;
  }
}

.lang__arrow {
  margin-left: 6px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.current__lang {
  font-weight: 400;
  font-size: 14.7px;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lang-item {
  font-size: 14.7px;
}

.lang__hover {
  background: #e5f3ff;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-right: 45px;
}
@media screen and (max-width: 1024px) {
  .burger__button {
    margin-right: 15px;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 32px;
  height: 32px;
  position: relative;
}
.burger span {
  width: 32px;
  height: 2px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger span:nth-child(1) {
  width: 32px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.mobile__menu {
  position: fixed;
  top: 144px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    top: 114px;
  }
}

.menu__block {
  border-radius: 23px;
  padding: 35px 30px;
  background: #0B0B0B;
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.back {
  background: rgba(18, 18, 18, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

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

.menu-item {
  list-style-type: none;
  margin-bottom: 10px;
}
.menu-item a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.section1__block {
  padding-top: 70px;
  padding-bottom: 120px;
  border-radius: 35px;
  background: url("../img/section1.webp") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .section1__block {
    padding: 50px 15px;
  }
}

.section1__title {
  text-align: center;
  font-size: 68.6px;
  line-height: 59px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.02em;
  background: radial-gradient(50% 50% at 50% 50%, #E1E1E1 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.section1__title span {
  font-weight: 400;
  text-transform: initial;
  font-size: 50px;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 25.6px;
    line-height: 120%;
  }
  .section1__title span {
    font-size: 20px;
  }
}

.section1__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
}
@media screen and (max-width: 1024px) {
  .section1__line {
    margin: 25px 0;
  }
}

.section1__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section1__content {
    margin-bottom: 25px;
  }
}
.section1__content ul {
  padding: 0;
  margin: 0;
}
.section1__content ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: bold;
  font-weight: "Raleway";
  color: rgba(250, 250, 250, 0.8);
  margin-bottom: 5px;
}
.section1__content ul li:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section1__content ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.section1__content ul li::before {
  content: "";
  min-width: 18px;
  min-height: 18px;
  background: url("../img/check.svg") no-repeat;
  display: block;
  margin-right: 16px;
}

.section1__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button1 {
  max-width: 295px;
  width: 100%;
  background: #FFE01A;
  border-radius: 16px;
  padding: 17px 17px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-family: "Raleway";
  font-weight: 900;
  font-size: 16px;
  color: #0B1515;
}
@media screen and (max-width: 1024px) {
  .button1 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 10px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.button1:hover {
  opacity: 0.6;
}

.section2 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section2 {
    margin-top: 40px;
  }
}

.section2__block {
  background: url("../img/map.png") no-repeat center;
  background-size: contain;
  padding: 60px 15px;
}
@media screen and (max-width: 1024px) {
  .section2__block {
    padding: 30px 15px;
  }
}

.seciont2__title {
  text-align: center;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 69px;
  text-align: center;
  background: radial-gradient(50% 50% at 50% 50%, #E1E1E1 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .seciont2__title {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 35px;
  }
}

.section2__row {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 70px 1fr 70px 1fr 70px 1fr 70px 1fr 70px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 70px;
  grid-row-gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 35px;
  }
}
@media screen and (max-width: 600px) {
  .section2__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

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

.section2__item__img {
  margin-right: 10px;
}
.section2__item__img img {
  width: 23px;
  height: 17px;
  border-radius: 2.3px;
  position: relative;
  top: 5px;
}

.section2__item__title {
  color: rgba(239, 239, 239, 0.7);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .section2__item__title {
    font-size: 16px;
  }
}

.city {
  color: #EFEFEF;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .city {
    font-size: 16px;
  }
}

.section2__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fraza {
  text-align: center;
  margin-bottom: 30px;
}

.section3 {
  margin-top: 80px;
  position: relative;
  background: url("../img/section3__decor.png") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-top: 40px;
  }
}

.section3__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .section3__title {
    margin-bottom: 25px;
  }
}

.section3__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  .section3__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }
}

.section3__item {
  border-radius: 10px;
  position: relative;
  background: url("../img/card.png") no-repeat bottom;
  padding: 60px 30px;
  overflow: hidden;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .section3__item {
    padding: 20px 15px;
  }
}

.s3__item__img {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.s3__item__title {
  font-size: 28.36px;
  color: #EFEFEF;
  line-height: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  min-height: 72px;
}
@media screen and (max-width: 1024px) {
  .s3__item__title {
    font-size: 22px;
    line-height: 120%;
    min-height: auto;
  }
}

.s3__item__txt {
  font-size: 15.75px;
  font-weight: 500;
  color: #D1D5DB;
}

.section4 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section4 {
    margin-top: 40px;
  }
}

.section4__row {
  background: url("../img/card2.png") no-repeat;
  background-size: cover;
  padding: 32px 25px;
  padding-bottom: 43px;
  border-radius: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  max-width: 1185px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .section4__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    background: #0B0B0B;
    border: 1px solid #FFE01A;
  }
}

.section4__item {
  background: #24200C;
  -webkit-box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

.section4__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section4__center img {
  min-width: 33px;
  min-height: 33px;
}

.s4__ico {
  margin-bottom: 9px;
}

.s4__title {
  font-size: 16px;
  color: #CFCFCF;
}

.s4__txt {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
}

.section5 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 40px;
  }
}

.section5__title {
  margin-bottom: 15px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0C0D0E;
  border-radius: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 20px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.active {
  background: rgba(181, 159, 25, 0.2);
  color: #FFFD85;
}

.swiper__c {
  overflow: hidden;
  padding-top: 20px;
  position: relative;
  width: 90%;
  margin: auto;
  z-index: 200;
}
@media screen and (max-width: 1024px) {
  .swiper__c {
    width: 70%;
  }
}

.swiper__s {
  overflow: hidden;
  width: 90%;
  margin: auto;
  z-index: 200;
}
@media screen and (max-width: 1024px) {
  .swiper__s {
    width: 70%;
  }
}

.tab__hidden {
  display: none;
}

.tab__hidden.visible {
  display: block;
}

.sw__pagin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
  z-index: 201;
  position: relative;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 6px;
  background: #393939;
  opacity: 1;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.swiper-pagination-bullet-active {
  width: 70px;
  background: #FFDF1B;
}

.c__item {
  border-radius: 20px;
  background: #0B0B0B;
  padding: 80px 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c__item {
    padding: 30px 15px;
  }
}

.s__item img {
  height: auto;
  border-radius: 16px;
  width: 100%;
}

.c__item__img {
  position: absolute;
  left: 30px;
  top: -20px;
}
@media screen and (max-width: 1024px) {
  .c__item__img {
    left: 15px;
    top: -10px;
  }
  .c__item__img img {
    width: 30px;
  }
}

.c__text {
  font-size: 16px;
  line-height: 24px;
  color: #D1D5DB;
  margin-bottom: 20px;
  font-style: italic;
}

.c__title {
  font-size: 18px;
  font-weight: 600;
}

.tab__hidden {
  position: relative;
}

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

.sw__left {
  cursor: pointer;
}

.sw__right {
  cursor: pointer;
}

.section5__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .section5__button {
    margin-top: 35px;
  }
}

.section6 {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section6 {
    margin-top: 40px;
  }
}

.section6__block {
  background: #000000;
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  border-radius: 20px;
  padding: 44px 120px;
}
@media screen and (max-width: 1024px) {
  .section6__block {
    padding: 30px 15px;
  }
}

.section6__decor {
  position: absolute;
  width: 100%;
  height: 270px;
}
.section6__decor img {
  width: 100%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}

.question__item {
  cursor: pointer;
  margin-bottom: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.11);
}

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

.question__title {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .question__title {
    font-size: 14px;
  }
}

.question__hidden {
  margin-top: 30px;
}

.question__arrow {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.question__arrow img {
  min-width: 16px;
}

.active2 .question__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.section7 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section7 {
    margin-top: 40px;
  }
}

.section7__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section7__item {
  margin: 20px 20px;
}

.footer {
  padding: 60px 0;
  background: #0B0B0B;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.footer__social {
  margin-right: 10px;
}
.footer__social:nth-last-child(1) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.copyright {
  font-size: 14px;
  color: #9CA3AF;
}
@media screen and (max-width: 1024px) {
  .copyright {
    margin-bottom: 20px;
  }
}

.footer__link {
  font-size: 14px;
  text-decoration: none;
  color: #9CA3AF;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__link {
    margin-bottom: 10px;
  }
}
.footer__link:nth-last-child(1) {
  margin-right: 0;
}

.fancybox__content {
  background: #0B0B0B;
  border-radius: 20px;
}

.form__title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}

.button1 {
  outline: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.form__input {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.form__input:nth-last-child(1) {
  margin-bottom: 0;
}
.form__input .wpcf7-form-control-wrap {
  width: 100%;
}
.form__input input {
  outline: none;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 10px 20px;
  width: 100%;
}
.form__input textarea {
  outline: none;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 10px 20px;
  height: 120px;
  width: 100%;
}

.soc {
  position: fixed;
  right: 70px;
  bottom: 70px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .soc {
    right: 20px;
  }
}

.soc__link {
  margin-bottom: 10px;
  display: block;
}
.soc__link:nth-last-child(1) {
  margin-bottom: 0px;
}

.wpcf7-response-output {
  text-align: center;
  color: #fff;
}