@charset "UTF-8";

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background-color: #fff;
    z-index: 1000;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo a {
  display: flex;
  width: 90px;
  height: 45px;
}

.header__logo a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header ul li:last-child a {
  color: #5d101e;
}

.header ul li a {
    color: #111;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: -0.215px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}
.header__lang a {
  color: #111!important;
}
.header ul li a.is-active {
  color: #5D101E!important;
  text-decoration: underline;
}

.header ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #D2A751;
    transform: scaleX(0);
    transform-origin: left;
    /* изначально нарастает слева направо */
    transition: transform 0.4s ease;
}

.header ul li a:hover::after {
    transform: scaleX(1);
    /* появляется */
    transform-origin: left;
}

.header ul li a:not(:hover)::after {
    transform-origin: right;
    /* исчезает справа налево */
}
.header .header__lang-mob {
    display: none;
}
.header .burger {
    display: grid;
    grid-template-columns: repeat(3, 5px);
    width: 25px;
    gap: 5px;
    display: none;
    position: relative;
    z-index: 999;
}

.header .burger-dot {
    background-color: #5D101E;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transition: 0.3s;
}

.header .burger.active .burger-dot {
    background-color: transparent;
}

.header .burger-dot--line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #5D101E;
    border-radius: 5px;
    transition: width 0.3s;
}

.header .burger.active .burger-dot--line::before {
    width: 18px;
}

.header .burger .burger-dot--left-top {
    transform: rotate(45deg);
}

.header .burger .burger-dot--right-top {
    transform: rotate(135deg);
}

.header .burger .burger-dot--left-bottom {
    transform: rotate(-45deg);
}

.header .burger .burger-dot--right-bottom {
    transform: rotate(-135deg);
}

.header .mob-logo {
    display: none;
}

.header .phone-mob {
    display: none;
}

.header .phone-desc {
    margin-left: auto;
}

.header .nav-mob {
    display: none;
}

.header__req {
  display: inline-flex;
  color: #fff;
  font-size: 14px;
  padding: 8px 12px;
  background: #5D101E;
  border-radius: 5px;
  white-space: nowrap;
}

#svg-map {
  transform: scale(1.5) translateX(110px);
}

.arrow__container {
  position: relative;
}

.swiper-fade .swiper-slide-active {
  height: auto!important;
}

.hero__slide {
  height: 100%;
}

#profitbase_front {
  height: 740px;
}

.header__phone {
  color: #5D101E;
}

.header__phone:hover {
  text-decoration: underline;
}

@media (max-width: 1440px) {
    .header__nav ul li a {
        font-size: 12px;
    }

    .header .btn-hov {
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .header .burger {
        display: grid;
        order: 3;
    }

    .header__btn {
        width: 100%;
    }
    .header .header__lang-mob {
        display: flex;
        flex-direction: row;
    }
    .header .header__lang {
        display: none;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -200%;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: 0.4s;
        background-color: #fff;
        width: 100%;
        padding-top: 50px;
        height: 100%;
    }

    .header__nav.active {
        right: 0;
    }

    .header__nav ul {
        flex-direction: column;
    }

    .header__nav .header__lang {
        flex-direction: row;
    }

    .header .mob-logo {
        display: flex;
        flex-direction: column;
    }

    .header .nav-mob {
        display: block;
    }
}

@media (max-width: 992px) {
    .header .phone-desc {
        display: none;
    }

    .header__logo a img {
        width: 95px;
    }

    .header .phone-mob {
        display: block;
        margin-left: auto;
    }
    .header__phone {
      display: none;
    }
}

.hero__slider {
    position: relative;
}

.hero__slide::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(182deg, rgba(0, 0, 0, 0.00) 2.63%, rgba(0, 0, 0, 0.70) 83.58%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 6;
    padding: 25% 20px 5%;
    color: #fff;
}

.hero__content p {
    color: #FFF;
    text-shadow: 0 0 20px #000, 0 0 20px #000;
    font-family: Commissioner;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.277px;
    width: 100%;
    max-width: 509px;
    margin-top: 20px;
    margin-bottom: 74px;
}

.hero__btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__btn button:first-of-type {
    border-radius: 8px;
    border: 2px solid #FFF;
    background: rgba(0, 0, 0, 0.2);
    color: #FFF;
    text-align: center;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 122.222% */
    padding: 14px 30px;
}

.hero__btn button:first-of-type:hover {
    background: #fff;
    color: #5D101E;
}

/* .hero .swiper-button-prev,
.hero .swiper-button-next {
    display: none;
} */

@media (max-width: 992px) {
    .hero__btn button:first-of-type {
        font-size: 14px;
        padding: 12px;
    }

    .hero__btn button {
        font-size: 14px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .hero__content {
      display: flex;
      flex-direction: column;
        padding: 40% 20px 11%;
        height: 100%;
    }
    .hero__btn {
      margin-top: auto;
    }
    .map svg {
      transform: scale(1.1);
      margin-top: 12px;
    }
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
}

.swiper-button-prev,
.swiper-button-next {
  display: flex;
  width: 45px;
  height: 45px;
    top: auto;
    bottom: 50px;
}

.swiper-button-next {
    right: 100px;
}

.swiper-button-prev {
    left: auto;
    right: 160px;
}

.premium {
    background-color: #5D101E;
}

.premium__content {
    font-size: 85px;
    line-height: 100px;
    max-width: 80%;
    margin: auto;
    color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-family: "Beikho";
    font-weight: 500;
    padding: 150px 20px;
    width: 100%;
}

.premium__content .word {
    color: #9C5A52;
    transition: color 0.5s ease;
}

.premium__content .word.active {
    color: #FCCBA1;
}

@media (max-width: 992px) {
    .premium__content {
        font-size: 40px;
        line-height: 50px;
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .premium__content {
        font-size: 35px;
        line-height: 40px;
    }
}

.advantages__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
}

.advantages__container {
    display: flex;
    align-items: center;
}

.advantages__left {
    position: relative;
    padding: 20%;
    width: 50%;
}

.advantages__left::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3803921569);
}

.advantages__text {
  text-align: justify;
    position: absolute;
    z-index: 5;
    bottom: 100px;
    right: 0;
    left: 0;
    margin: auto;
    color: #FFF;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 138.889% */
    letter-spacing: -0.246px;
    max-width: 530px;
}

.advantages__right {
    width: 50%;
}

.advantages__right ul {
    display: flex;
    flex-direction: column;
}

.advantages__right ul li {
    color: #353535;
    font-family: "Beikho";
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    /* 100% */
    letter-spacing: 0.5px;
    padding: 36px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.advantages__right ul li:hover {
    color: #5D101E;
    background: rgba(93, 16, 30, 0.1411764706);
    border-color: #5D101E;
}

.advantages__content {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.advantages__content::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3803921569);
}

.advantages__content h3 {
    position: relative;
    z-index: 5;
    color: #FFF;
    font-family: "Beikho";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 100% */
    letter-spacing: 0.5px;
    padding: 0 30px;
}

.advantages__content p {
    position: relative;
    z-index: 5;
    color: #FFF;
    text-shadow: 0 0 40px #000, 0 0 20px #000;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 128.571% */
    letter-spacing: -0.277px;
    margin-top: 20px;
    padding: 0 30px;
}

.advantages__mob {
    display: none;
}

.advantages__title {
    color: #353535;
    font-family: "Beikho";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    /* 100% */
    letter-spacing: 0.5px;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.advantages__title svg {
    transition: 0.3s;
}

.advantages__title svg path {
    transition: 0.3s;
}

.advantages__wrapp.active .advantages__title svg {
    transform: rotate(180deg);
}

.advantages__wrapp.active .advantages__title svg path {
    stroke: #5D101E;
}

.advantages__wrapp.active {
    background: rgba(93, 16, 30, 0.1411764706);
}

.advantages__wrapp.active .advantages__title {
    color: #5D101E;
}

.advantages__wrapp.active .advantages__content {
    /* padding: 70px 0 30px; */
}

.advantages__content-wrapper {
  padding: 70px 0 30px 0;
}

.advantages__info {
    position: relative;
}

.advantages__info-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 20px;
    position: relative;
    z-index: 5;
}

.advantages__info-group {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.advantages__info-group span {
    color: #5D101E;
    font-family: "Beikho";
    font-size: 130px;
    font-style: normal;
    font-weight: 500;
    line-height: 130px;
    /* 100% */
}

.advantages__info-group p {
    color: #353535;
    font-family: Commissioner;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
}

.advantages .mob-img {
    display: none;
}

@media (max-width: 1280px) {
    .advantages__info-group span {
        font-size: 100px;
    }
}

@media (max-width: 992px) {
    .advantages__desc {
        display: none;
    }

    .advantages__mob {
        display: block;
    }

    .advantages__info-wrapper {
        grid-template-columns: 1fr;
    }

    .advantages .desc-img {
        display: none;
    }

    .advantages .mob-img {
        display: block;
    }

    .advantages__info-group {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    

    .advantages__info-group span {
        font-size: 80px;
        line-height: 100%;
    }

    .advantages__info-wrapper {
      gap: 30px;
    }

    .advantages__info-group p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .advantages__wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.location {
    position: relative;
    height: 100vh;
}

.location__slide::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3803921569);
    content: "";
}

.location__slide {
  position: relative;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    /* z-index: 5; */
    /* opacity: 0; */
    /* transition: none; */
    /* pointer-events: none; */
}

.swiper-fade .swiper-slide-active.location__slide {
    height: 100%!important;
}

.location__slide.active {
    opacity: 1;
    pointer-events: all;
}

.location__content {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    bottom: 140px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 1115px;
}

.location__arrows {
  display: flex;
  gap: 15px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 2;
}

.location__arrows div {
  position: static;
  transform: unset;
}

.location__content p {
    margin-top: 30px;
    color: #FFF;
    text-align: center;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 138.889% */
    letter-spacing: -0.308px;
}

.form {
    background: #5D101E;
    color: #fff;
}

.second-form {
    background: #5d101e8d;
    position: relative;
}

.second-form::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #5d101ed6;
    z-index: 5;
}

.form__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
}

.form__left {
    width: 37%;
    position: relative;
    z-index: 10;
}

.form__left p {
    color: #FFF;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: -0.277px;
    margin-top: 30px;
}

.form__right {
    width: 45%;
    position: relative;
    z-index: 10;
}

.form__right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__right form input,
.form__right textarea {
    border-radius: 6px;
    border: 1px solid #EEB950;
    opacity: 0.8;
    background: #FFF;
    padding: 12px 20px;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form__right form input::-moz-placeholder,
.form__right textarea::-moz-placeholder {
    color: #5D101E;
}

.form__right form input::placeholder,
.form__right textarea::placeholder {
    color: #5D101E;
}

.form .control {
    display: flex;
    align-items: center;
    gap: 17px;
}

.form .control span {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: -0.277px;
    opacity: 0.6;
}

.form .control-mark {
    border-radius: 6px;
    border: 1px solid #EEB950;
    opacity: 0.8;
    background: #FFF;
    width: 100%;
    height: 24px;
    max-width: 24px;
    cursor: pointer;
    position: relative;
}

.form .control-mark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: url("../img/mark.svg") center no-repeat;
    display: none;
}

.form input[type=checkbox]:checked+.control-mark::after {
    display: block;
}

.form__right form button {
    border-radius: 6px;
    border: 1px solid #FCCBA1;
    background: #5D101E;
    color: #FFF;
    text-align: center;
    font-family: Commissioner;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px;
}

.form__right form button:hover {
    background: #D2A751;
}

@media (max-width: 768px) {
    .form__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .form__left {
        width: 100%;
        text-align: center;
    }

    .form__right {
        width: 100%;
    }

    .form__right form button {
        font-size: 16px;
    }
}

.collection {
  margin-bottom: 80px;
}

.collection h2 {
    font-size: 80px;
    color: #5D101E;
    text-align: center;
    position: relative;
    max-width: 780px;
    margin: auto;
}

.collection h2::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 32px;
    height: 1px;
    background: #353535;
}

.collection h2::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 32px;
    height: 1px;
    background: #353535;
}

.collection p {
    margin: 20px auto 0;
    color: #5D101E;
    text-align: justify;
    font-family: Commissioner;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: -0.277px;
    max-width: 1107px;
}

.collection__text {
  text-align: center!important;
}

.collection__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    margin-top: 50px;
}

.collection__card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection__card img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 180px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 40px;
}

.collection__card h3 {
    color: #5D101E;
    text-align: center;
    font-family: "Beikho";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 120% */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.collection .thumbs__slider {
    height: 150px;
    margin-bottom: 50px;
    display: none;
}

.collection .thumbs__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.collection .thumbs__slide img {
    width: 100%;
    max-width: 60px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.collection .thumbs__slide h3 {
    color: #5D101E;
    text-align: center;
    font-family: "Beikho";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    /* 116.667% */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: auto;
}

.collection .collection__card p {
    font-size: 14px;
}

.collection .collection__slider {
    display: none;
}
.decor {
  display: none;
}
@media (max-width: 992px) {
    .collection__wrapper {
        display: none;
    }

    .collection .thumbs__slider {
        /* display: block; */
    }

    .collection .collection__slider {
        display: block;
        margin-top: 50px;
    }

    .collection h2 {
        font-size: 35px;
    }
}

@media (max-width: 540px) {
    .collection__wrapper {
        grid-template-columns: 1fr;
    }
}

.map {
    position: relative;
    overflow: hidden;
}

.map svg {
    width: 100%;
    height: 100%;
    /* cursor: url("../img/grab-cur.png") 8 8, grab; */
    /* margin-top: -200px; */
}

.map__list {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    background: #5D101E;
    z-index: 15;
    border-radius: 20px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.js-map-point > path:first-child,
.js-map-point > text {
  opacity: 0;
}

.js-map-point.active > path:first-child,
.js-map-point.active > text {
  opacity: 1;
}

.js-map-point.active > path:first-child {
  stroke: #5d101e;
}

text.js-map-point.active {
  fill: #fff;
}

.js-map-point.active .cls-2,
.js-map-point.active .cls-52,
.js-map-point.active .cls-75,
.js-map-point.active .cls-27,
.js-map-point.active .cls-28 {
  stroke: #5D101E;
  stroke-width: 2px;
}

@media (max-width:992px) {
    .map svg {
        /* margin-top: 0; */
    }
}
@media (max-width:768px) {
    .map__list {
        position: relative;
        bottom: auto;
        right: auto;
        top: auto;
        transform: unset;
        margin-top: -60px;
    }
    .map {
        height: unset;
        margin-bottom: 30px;
    }
    .map__list {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      grid-gap: 15px;
      margin-top: 0;
    }
    #svg-map {
      transform: scale(2) translateX(80px);
    }
}

.map__item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 30px;
}
.map .map__item.active svg path:first-child {
  fill: #D2A751;
}

.map .map__item.active svg path:not(:first-child) {
  stroke: #fff;
}

.map .map__item.active svg rect {
  fill: #fff;
}

.map .map__item svg {
    width: 40px;
    height: 40px;
    margin-top: 0;
}

.map__item p {
    color: #FFF;
    font-family: Commissioner;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 0.023px;
}

.choice__img {
    margin-top: 50px;
    position: relative;
    padding: 20%;
}

.layout {
    position: relative;
    color: #fff;
    height: 100vh;
    display: flex;
    max-height: 680px;
    /* margin-top: 30px; */
    /* Контейнер контента поверх фона */
}

.layout::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3803921569);
    z-index: 1;
}

.layout__slider {
    height: 100%;
}

.layout__slider .swiper-slide {
    height: 100%;
}

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

.layout__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding: 80px 20px;
    color: white;
}

.layout__text {
    max-width: 73%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.layout__text div {
    color: #FFF;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: -0.277px;
    margin-top: auto;
    text-align: justify;
}

.layout__thumbs {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
        display: flex;
    flex-direction: column;
    gap: 15px;
}


.layout__thumbs li {
    color: #FFF;
    text-align: right;
    font-family: "Beikho";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    /* 116.667% */
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.6;
}

.layout__thumbs li:hover {
    opacity: 1;
}

.gallery {
    /* Анимация */
}

.gallery__img {
    position: relative;
    padding: 20%;
}

.gallery .marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.gallery .marquee-track {
    /* display: inline-flex; */
    /* animation: marquee 20s linear infinite; */
    /* gap: 10px; */
}

.gallery .marquee-container.bottom .marquee-track {
    /* animation-direction: reverse; */
    margin-top: 10px;
}

.marquee-track .swiper-wrapper {
  transition-timing-function: linear !important;
}

.gallery .marquee-track a {
    width: 550px;
    height: 300px;
    cursor: zoom-in;
}

.gallery .marquee-track img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.progress__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.progress__card {
    position: relative;
    padding: 30%;
    border-radius: 10px;
    overflow: hidden;
}

.progress__card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3803921569);
}

.progress__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    padding: 30px;
}

.progress__content span {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: -0.215px;
}

.progress__content button {
    padding: 10px;
}

@media (max-width: 1040px) {
    .progress__content button {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .progress__wrapper {
        grid-template-columns: 1fr;
    }
}

.about {
    position: relative;
}

.about__wrapper {
    position: relative;
    z-index: 5;
    padding: 150px 20px;
}

.about__wrapper::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3803921569);
}

.about__close {
    position: absolute;
    top: 120px;
    right: 100px;
    z-index: 10;
    display: none;
}

.about__close.active {
    display: block;
}

.about__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__wrapper h2 {
    color: #fff;
}

.about__logo {
    display: block;
    width: 220px;
    height: 130px;
    margin-bottom: 90px;
}

.about__wrapper a {
    color: #FFF;
    font-family: Commissioner;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 122.222% */
    letter-spacing: -0.277px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-top: 30px;
}

.about__wrapper p {
    color: #FFF;
    text-align: center;
    font-family: Commissioner;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: -0.246px;
    max-width: 850px;
    margin: auto;
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

.about__wrapper p.active {
    opacity: 1;
    visibility: visible;
    max-height: fit-content;
}

.about__container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  position: relative;
}

.about__container.active {
  opacity: 1;
    margin-bottom: 100px;
}
@media (max-width:992px) {
.about__container.active {
        margin-bottom: 50px;
    }
}
.about__slider {
    margin-top: 50px;
    position: static;
}

.about__slider-img {
    position: relative;
    padding: 35%;
    border-radius: 10px;
    overflow: hidden;
}

.about__slide h3 {
    color: #5D101E;
    font-family: "Beikho";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 120% */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about__slide p {
    color: #353535;
    font-family: Commissioner;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: -0.246px;
    text-align: justify;
}

.about .swiper-button-prev {
    left: 30px;
    width: 45px;
    top: 40%;
}

.about .swiper-button-next {
    right: 30px;
    width: 45px;
    top: 40%;
}

@media (max-width: 768px) {
    .about__slider {
        padding-bottom: 60px;
    }

    .about .swiper-button-prev,
    .about .swiper-button-next {
        top: auto;
        bottom: 0;
    }

    .about .swiper-button-prev {
        left: 30%;
    }

    .about .swiper-button-next {
        right: 30%;
    }

    .about .swiper-button-prev svg path,
    .about .swiper-button-next svg path {
        stroke: #5D101E;
    }

    .about .swiper-button-prev svg rect,
    .about .swiper-button-next svg rect {
        stroke: #5D101E;
    }
}

.footer {
    background-color: #5D101E;
    /* margin-top: 100px; */
}

.footer__wrapper {
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer__item .footer__soc {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 30px;
    flex-direction: row;
}

.footer__item.last {
  text-align: left;
}

.footer__logo {
  display: flex;
  width: 175px;
  height: 90px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__soc a svg {
    transition: 0.3s;
}

.footer__soc a:hover svg {
    transform: scale(1.1);
}

.footer__agreement {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 114.286% */
    letter-spacing: 0.175px;
    opacity: 0.6;
    text-align: justify;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.footer__middle {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 30px;
  color: #fff;
  padding-bottom: 30px;
}

.footer__item h3 {
    color: #FFF;
    font-family: Commissioner;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: -0.246px;
    text-transform: uppercase;
}

.footer__item ul a {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: -0.215px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer__item ul p {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 114.286% */
    letter-spacing: -0.215px;
    opacity: 0.8;
}

.footer__item ul span {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 114.286% */
    letter-spacing: -0.215px;
    opacity: 0.8;
    margin-top: 36px;
}

.footer__item ul a:hover {
    opacity: 1;
}

.footer__item ul {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 15px;
}

.footer__bot {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #fff;
    opacity: 0.5;
}

/* .footer__bot a:nth-of-type(1) {
    display: none;
} */

.footer__bot span,
.footer__bot a {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.175px;
    opacity: 0.5;
}

@media (max-width: 992px) {
  .gallery .marquee-track a {
        width: 350px;
    height: 220px;
  }
    .footer__bot a:nth-of-type(1) {
        display: block;
    }
    .layout {
      display: none;
    }
    .decor {
      display: block;
    }
    .decor__item {
      position: relative;
      height: 600px;
      width: 100%;
      padding: 0 16px;
    }
    .decor__item-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .decor__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .decor__item-img::after {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.50);
    }
    .decor__item-top {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 50px;
      font-size: 24px;
      font-weight: 500;
      line-height: 125%;
      font-family: "Beikho";
      z-index: 2;
      text-align: center;
      color: #fff;
      width: 100%;
      padding: 0 16px;
    }
    .decor__item-bot {
      position: absolute;
      font-size: 30px;
      color: #fff;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      text-transform: uppercase;
      font-family: "Beikho";
      font-weight: 500;
      z-index: 2;
      line-height: 116%;
      width: 100%;
      padding: 0 16px;
    }
    .decor__nav {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      display: flex;
      align-items: center;
      gap: 40px;
      z-index: 2;
      justify-content: center;
    }
    .decor__pagination {
      width: auto!important;
    }
    .decor__pagination .swiper-pagination-bullet {
      background: #fff;
      transition: .2s ease-in-out;
      margin: 0 10px!important;
      opacity: 1;
    }
    .decor__pagination .swiper-pagination-bullet-active {
      background: #fff;
      width: 10px;
      height: 10px;
    }
}

@media (max-width: 768px) {
  .footer__middle {
    grid-template-columns: 1fr;
  }
  .footer__item ul p {
    text-align: center;
  }
    .footer__top {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__item ul {
        align-items: center;
    }

    .footer__item ul span {
        margin-top: 20px;
    }

    .footer__bot {
        flex-direction: column;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3803921569);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

.modal__wrapper {
    background-color: #5D101E;
    max-width: 680px;
    padding: 70px;
    margin: auto;
    border-radius: 20px;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal .form__right {
    width: 100%;
}

.modal .control {
    display: flex;
    align-items: center;
    gap: 17px;
}

.modal .control span {
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: -0.277px;
    opacity: 0.6;
}

.modal .control-mark {
    border-radius: 6px;
    border: 1px solid #EEB950;
    opacity: 0.8;
    background: #FFF;
    width: 100%;
    height: 24px;
    max-width: 24px;
    cursor: pointer;
    position: relative;
}

.modal .control-mark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: url("../img/mark.svg") center no-repeat;
    display: none;
}

.modal input[type=checkbox]:checked+.control-mark::after {
    display: block;
}

@media (max-width: 768px) {
    .modal__wrapper {
        padding: 70px 35px 35px;
    }
    .footer__item.last p {
      text-align: left;
      padding-left: 50px;
    }
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3803921569);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

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

.popup__wrapper {
    position: relative;
    padding: 15%;
    max-width: 800px;
    margin: auto;
}

.popup__close {
    position: absolute;
    top: 50px;
    right: 50px;
}

@media (max-width: 576px) {
  .header__req {
    display: none;
  }
  .hero__btn {
    flex-direction: column;
    align-items: flex-start;
  }
  .swiper-button-next {
    right: 16px;
  }
  .swiper-button-prev {
    right: 80px;
  }
}

@media (max-width: 480px) {
  .map__item p {
    font-size: 14px;
  }
  .map__item {
    padding: 5px 15px;
  }
  .map__list {
    grid-gap: 8px;
    margin: 0 16px;
  }
  .map .map__item svg {
    width: 30px;
    height: 30px;
  }
  #svg-map {
    transform: scale(2) translateX(100px);
  }
}