:root {

    --plyr-color-main: #B28046;

}


/* ----- header styles ----- */

.header {
    padding: 10px 0;
}

.header-city {
    gap: 10px;
    padding: 4px 8px;
    border-radius: 11px;
    background-color: #FAFAFA;
    border: 1px solid transparent;
    font-size: 11px;
}

.header-top,
.header-bottom {
    gap: 30px;
}

.header-top {
    margin-bottom: 20px;
}

.header-top-menu {
    gap: 25px;
}

.header-top-menu__item {
    font-weight: 400;
    font-size: 12px;
    color: #757575;
    position: relative;
}

.header-top-menu__item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #757575;
    top: 0;
    right: -12px;
}

.header-bottom-menu {
    gap: 10px;
}

.header-bottom-menu__item {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4E4E4E;
    position: relative;
}

.header-bottom-menu__item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #4E4E4E;
    top: 0;
    right: -5px;
}

.header-bottom-menu__item:last-child::after,
.header-top-menu__item:last-child::after {
    display: none;
}


/* ----- hero styles ----- */

.hero {
    padding: 60px 0 120px 0;
}

.hero__title {
    font-weight: bold;
    font-size: 24px;
    color: #B28046;
    line-height: 120%;
    margin-bottom: 5px;
}

.hero__subtitle {
    font-weight: bold;
    font-size: 28px;
    color: #000;
    line-height: 120%;
}

.hero__button {
    height: 36px;
    width: 100%;
    max-width: 355px;
    border-radius: 8px;
    background-color: #2c2c2c;
    margin-top: 25px;
    font-size: 16px;
    text-transform: uppercase;
    color: #f5f5f5;
    font-weight: bold;
}

.plyr--video {
    border-radius: 15px;
}

.plyr__control--overlaid svg {
    display: none !important;
}

.plyr__control--overlaid::after {
    content: "";
    display: inline-block;
    width: 95px;
    height: 95px;
    background-image: url('../video/play-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
    display: block;
    padding: 0 !important;
    background: transparent !important;
}

.plyr:not(.plyr--playing) .plyr__controls {
    display: none !important;
}

.plyr__control--overlaid {
    display: block !important;
}

.plyr--playing .plyr__controls {
    display: flex !important;
}

/* ----- advantages styles ----- */

.advantages {
    padding-bottom: 80px;
}

.advantages-item {
    margin-bottom: 90px;
}

.advantages-item__title {
    color: #CC9453;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 3px;
    font-weight: bold;
}

.advantages-item__description {
    font-size: 16px;
    line-height: 150%;
    color: #4B4F58;
}

.advantages-footer-info__title {
    font-size: 36px;
    color: #000;
    margin-bottom: 5px;
}

.advantages-footer-info-description {
    gap: 15px;
}

.advantages-footer-info-description__value {
    font-size: 110px;
    color: #CC9453;
    font-weight: bold;
    flex-shrink: 0;
}

.advantages-footer-info-description__title {
    font-weight: bold;
    font-size: 29px;
    line-height: 120%;
    margin-bottom: 6px;
}

.advantages-footer__button {
    text-transform: uppercase;
    border-radius: 8px;
    background-color: #2c2c2c;
    font-size: 18px;
    text-transform: uppercase;
    color: #f5f5f5;
    width: 100%;
    height: 123px;
    font-weight: bold;
}

/* ----- programm styles ----- */

.programm {
    background-color: #CC9453;
    color: #fff;
    padding: 70px 0 130px 0;
}

.programm__title {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 100px;
    line-height: 130%;
}

.programm-items {
    counter-reset: my-counter;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.programm-item {
    counter-increment: my-counter;
    position: relative;
    padding-left: 70px;
    font-size: 16px;
    line-height: 140%;
}

.programm-item::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 20px;
    font-weight: bold;
    font-size: 96px;
    color: #fff;
    width: 55px;
}

.programm__button {
    width: 100%;
    height: 78px;
    border-radius: 8px;
    background-color: #fff;
    color: #CC9453;
    text-transform: uppercase;
    border: 1px solid #fff;
    margin-top: 80px;
    font-weight: bold;
    font-size: 21px;
}

/* ----- about styles ----- */

.about {
    padding: 100px 0 50px 0;
}

.about__title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.about__description {
    color: #4B4F58;
    font-size: 16px;
    line-height: 140%;
}

.about__description p {
    margin-bottom: 20px;
}

.about__description p:last-child {
    margin: 0;
}

.about__description ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-info-years {
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.about-info-years__value {
    font-size: 200px;
    color: #CC9453;
    font-weight: 800;
}

.about-info-years__title {
    font-weight: bold;
    font-size: 36px;
    line-height: 140%;
}

.about-info-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-info-form__field {
    border-radius: 8px;
    border: 1px solid #d9d9d9;
    color: #000;
    font-size: 16px;
    height: 40px;
    padding: 0 16px;
    width: 100%;
    max-width: 230px;
}

.about-info-form__submit {
    border-radius: 8px;
    background-color: #2c2c2c;
    font-size: 14px;
    text-transform: uppercase;
    color: #f5f5f5;
    height: 40px;
    border: 1px solid #2c2c2c;
    font-size: 16px;
    padding: 0 12px;
    transform: translateX(-10px);
    font-weight: bold;
}

/* ----- projects styles ----- */

.projects {
    padding-bottom: 120px;
}

.projects__title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.projects__all {
    font-size: 13px;
    line-height: 120%;
    color: #BE9462;
    text-transform: uppercase;
}

.projects .swiper {
    width: 100%;
    height: 300px;
}

.projects .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects .mySwiper-pagination {
    bottom: -50px;
}

.projects .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    position: relative;
    margin: 13px 0 !important;
}

.projects .swiper-pagination-bullet-active::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.mySwiper-pagination .swiper-pagination-bullet {
    background-color: #CC9453;
    margin: 0 5px !important;

}

.mySwiper-pagination .swiper-pagination-bullet-active::before {
    border: 1px solid #CC9453;
}

.swiper-slide__name {
    position: absolute;
    left: 16px;
    bottom: 13px;
    color: #fff;
    font-size: 16px;
    z-index: 9;
}

.mySwiper2-pagination {
    top: 20px !important;
    right: 20px !important;
    transform: translateY(0) !important;
}

/* ----- footer styles ----- */

.footer {
    background-color: #F6F6F9;
}

.footer-top {
    padding: 48px 0 41px;
    border-bottom: 1px solid #C4C4C4;
}

.footer-bottom {
    padding: 32px 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-items {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-info__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-info__item img {
    max-width: 13px;
}

.footer-info-items--phones .footer-info__item {
    gap: 8px;
}

.footer-info-items--phones .footer-info__item img {
    max-width: 18px;
}

.footer-info__description {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
}

.footer-copy {
    font-size: 11px;
    color: #4F4F4F;
    line-height: 130%;
}

.footer-copy p {
    margin-bottom: 12px;
}

.footer-copy p:last-child {
    margin: 0;
}

@media screen and (max-width: 991px) {

    .hero {
        padding: 60px 0;
    }

    .hero-video {
        margin-top: 30px;
    }

    .advantages-footer__button {
        margin-top: 30px;
    }

    .programm {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .projects {
        padding-bottom: 60px;
    }

}

@media screen and (max-width: 767px) {

    .advantages-item {
        margin-bottom: 30px;
    }

    .programm-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 60px;
    }

    .programm__title {
        margin-bottom: 60px;
    }

}

@media screen and (max-width: 575px) {
    .header-bottom-menu {
        flex-direction: column;
        align-items: flex-end !important;
    }

    .header-bottom-menu__item:last-child::after,
    .header-top-menu__item:last-child::after {
        display: block;
    }

    .hero {
        padding: 20px 0;
    }

    .about-info-years__value,
    .advantages-footer-info-description__value {
        font-size: 100px;
    }

    .about-info-years__title,
    .hero__title {
        font-size: 20px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .programm-item::before {
        font-size: 60px;
        width: 40px;
    }

    .programm-item {
        padding-left: 50px;
    }

    .programm-items {
        gap: 30px;
    }

    .about-info-form {
        flex-direction: column;
    }

    .about-info-form__field {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .about-info-form__submit {
        width: 100%;
        max-width: 100%;
        transform: translate(0);
    }

}


/* ----- header styles ----- */

.header {
    padding: 10px 0;
}

.header-city {
    gap: 10px;
    padding: 4px 8px;
    border-radius: 11px;
    background-color: #FAFAFA;
    border: 1px solid transparent;
    font-size: 11px;
}

.header-top,
.header-bottom {
    gap: 30px;
}

.header-top {
    margin-bottom: 20px;
}

.header-top-menu {
    gap: 25px;
}

.header-top-menu__item {
    font-weight: 400;
    font-size: 12px;
    color: #757575;
    position: relative;
    padding: 0 12px;
}

.header-top-menu__item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60%;
    background-color: #757575;
    top: 20%;
    right: 0;
}

.header-top-menu__item:last-child::after {
    display: none;
}

.header-bottom-menu {
    gap: 0;
}

.header-bottom-menu__item {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4E4E4E;
    position: relative;
    padding: 10px 5px;
    transition: color 0.3s ease;
}

.header-bottom-menu__item:hover {
    color: #B28046;
}

.header-bottom-menu__item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60%;
    background-color: #4E4E4E;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%);
}

.header-bottom-menu__item:last-child::after {
    display: none;
}

/* Убираем разделитель у последнего элемента */
.header-bottom-menu__item:last-child::after,
.header-top-menu__item:last-child::after {
    display: none;
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 991px) {
    .header-bottom-menu {
        gap: 10px;
    }

    .header-bottom-menu__item {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .header-bottom-menu {
        gap: 5px;
    }

    .header-bottom-menu__item {
        padding: 6px 8px;
        font-size: 12px;
    }

    .header-bottom-menu__item::after {
        height: 50%;
        top: 25%;
    }
}

@media screen and (max-width: 575px) {
    .header-bottom-menu {
        flex-direction: column;
        align-items: flex-end !important;
        gap: 8px;
    }

    .header-bottom-menu__item {
        padding: 5px 0;
        font-size: 13px;
    }

    .header-bottom-menu__item::after {
        display: none;
    }

    .header-top-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-top-menu__item::after {
        display: none;
    }
}

.header-bottom-menu__item {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4E4E4E;
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.header-bottom-menu__item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 20px;
    /* Фиксированная высота */
    background-color: #4E4E4E;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* Центрирование по вертикали */
    opacity: 0.6;
    /* Единая прозрачность */
}

.header-top-menu__item {
    font-weight: 400;
    font-size: 12px;
    color: #757575;
    position: relative;
    padding: 0 15px;
}

.header-top-menu__item::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    /* Фиксированная высота */
    background-color: #757575;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* Центрирование по вертикали */
    opacity: 0.6;
    /* Единая прозрачность */
}

/* Убираем разделитель у последнего элемента */
.header-bottom-menu__item:last-child::after,
.header-top-menu__item:last-child::after {
    display: none;
}

/* Адаптивность */
@media (max-width: 1080px) {
    .header-bottom-menu__item {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 991px) {
    .header-bottom-menu__item {
        font-size: 12px;
    }

    .header-bottom-menu__item.desktop {
        display: none;
    }

    .header-bottom-menu__item::after {
        height: 14px;
    }

    .header-top-menu__item {
        padding: 0 12px;
        font-size: 11px;
    }

    .header-top-menu__item::after {
        height: 10px;
    }
}

@media screen and (max-width: 767px) {
    .header-bottom-menu__item {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header-bottom-menu__item::after {
        height: 12px;
    }
}

@media screen and (max-width: 660px) {
    .header-bottom-menu {
        flex-direction: column;
        align-items: flex-end !important;
        gap: 8px;
    }

    .header-bottom-menu__item {
        padding: 5px 0;
        font-size: 13px;
    }

    .header-bottom-menu__item::after {
        display: none;
    }

    .header-top-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-top-menu__item::after {
        display: none;
    }
}