.typewriter {
    font-size: 5.5rem;
    font-weight: 600;
    color: white;
    min-height: 40px;
}

.typewriter::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/*/ --- Size Logo --- /*/
.vlt-navbar .vlt-navbar-logo img {
    display: block;
    height: 2.4375rem !important;
}

/*/ --- Slider --- /*/
.swiper-container-autoheight {
    padding-bottom: 5px !important;
}

.slider-title {
    font-size: 2rem;
    font-weight: 800;
}

.slider-title span {
    background-color: #cf000f
}

.slider-text {
    width: 99%;
}

.u-dot {
    position: absolute;
    top: 30px;
    left: 34px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #cf000f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/*/ --- Audio --- /*/

#tracksGrid .track {
    display: flex;
    height: 80px;
    align-items: center;
    /* GPU acceleration для всех треков */
    opacity: 0;
    animation: fade-in-down 0.6s ease-out forwards;
    will-change: transform;
    backface-visibility: hidden;
}

/* 🔥 Автоматический stagger для каждых 8 треков */
#tracksGrid .track:nth-child(8n+1) {
    animation-delay: 0.04s;
}

#tracksGrid .track:nth-child(8n+2) {
    animation-delay: 0.08s;
}

#tracksGrid .track:nth-child(8n+3) {
    animation-delay: 0.16s;
}

#tracksGrid .track:nth-child(8n+4) {
    animation-delay: 0.24s;
}

#tracksGrid .track:nth-child(8n+5) {
    animation-delay: 0.32s;
}

#tracksGrid .track:nth-child(8n+6) {
    animation-delay: 0.4s;
}

#tracksGrid .track:nth-child(8n+7) {
    animation-delay: 0.48s;
}

#tracksGrid .track:nth-child(8n+8) {
    animation-delay: 0.56s;
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-18px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
        animation-timing-function: ease-out;
    }
}


#tracksGrid h3 {
    font-size: 1rem;
}

#tracksGrid .text-primary {
    color: #dd3c49 !important;
}

#tracksGrid .bg-primary {
    background-color: hsl(var(--primary)) !important;
}

#tracksGrid .play-btn:hover .play-icon {
    stroke: white !important;
}

#tracksGrid .equalizer {
    margin: 10px 10px 0 0;
}

.track-time {
    min-width: 40px;
}

/* Random Button */
.random-tracks {
    display: inline-flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    background-color: hsl(var(--card));
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.random-tracks:hover {
    background-color: transparent;
    color: #cf000f;
}

.random-tracks i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.random-tracks:hover i {
    transform: rotate(180deg);
}

/* Анимация при нажатии */
.random-tracks.shuffling i {
    animation: shuffle-spin 0.6s ease-in-out;
}

@keyframes shuffle-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.random-tracks span {
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.title-movie {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.title-movie > h5 {
    font-weight: 600;
    color: white !important;
    text-transform: uppercase;
}

.movie-desc {
    text-transform: uppercase;
    letter-spacing: 0 !important;
}

.team-title {
    margin-bottom: 40px;
    padding: 40px 90px;
    text-indent: 40px;
}

.theme-dark #content {
    background-color: #000 !important;
}

/* --- CONTACT FORM --- */


input[type=text].error {
    border-color: #cf000f !important;
}

/* Красная подсветка поля с ошибкой */
.vlt-form-group.has-error input,
.vlt-form-group.has-error textarea {
    border-bottom: 2px #cf000f !important;
}

/* Альтернатива - если у тебя другая структура */
input.error-field,
textarea.error-field {
    border-bottom: 2px #cf000f !important;
}

/* Опционально: анимация для плавности */
.vlt-form-group input,
.vlt-form-group textarea {
    transition: border-color 0.3s ease;
}

/* Убираем outline при фокусе, чтобы не было двойной подсветки */
.vlt-form-group.has-error input:focus,
.vlt-form-group.has-error textarea:focus {
    border-color: #cf000f;
    outline: none;
}

/*/ --- COOKIE BANNER--- /*/

.cookie-banner {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: #111;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: transform 2s cubic-bezier(.22, 1, .36, 1), opacity 0.4s ease;
    z-index: 9999;
    max-width: 700px;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cookie-inner {
    color: #a8a7a7;
    text-align: justify;
    font-size: 16px;
    gap: 20px;
    padding: 20px;
}

.cookie-inner span {
    color: #dadada;
    text-decoration: underline;
}

.cookie-inner span:hover {
    color: #cf000f;
}

.teams {
    row-gap: 30px;
}

.contact-mail p {
    font-size: 1.1rem;
}

.h1.vlt-large-heading, h1.vlt-large-heading {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.vlt-fixed-socials a + a {
    margin-top: 1.1875rem;
}


.vlt-social-icon.vlt-social-icon--style-1 {
    font-size: 1.775rem;
}

.quotes-testimonials {
    height: 75px;
}


/*/ --- 404 --- /*/

    .container-center-404 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .content-center-404 {
        text-align: center;
        margin-bottom: 45px; /* Заменяет vlt-gap-45 */
    }

    .content-center-404 .vlt-gap-30 {
        margin: 30px 0;
    }


    .image-404 img {
        max-width: 50%;
        height: auto;
        max-height: 60vh;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .container-center-404 {
            padding: 20px;
        }
        .image-404 img {
            max-height: 40vh;
        }
    }


/*/ --- Policy --- /*/

.main-list {
        counter-reset: main-section;
        list-style: none;
        padding-left: 0;
    }

    .main-list > li {
        counter-increment: main-section;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .main-list > li:before {
        content: counter(main-section) ". ";
        font-size: 1.4em;
        font-weight: bold;
        /*color: #2c3e50;*/
        /*background: #e8f4f8;*/
        padding: 3px 10px;
        border-radius: 5px;
        margin-right: 10px;
    }

    .section-title {
        font-size: 1.5em; /* Увеличиваем текст раздела */
    }

    .sub-list {
        counter-reset: sub-section;
        list-style: none;
        margin-top: 10px;
        margin-left: 30px;
        padding-left: 0;
    }

    .sub-list li {
        counter-increment: sub-section;
        margin-bottom: 8px;
        font-weight: normal;
    }

    .sub-list li:before {
        content: counter(main-section) "." counter(sub-section) " ";
        font-weight: normal;
        color: #d51515;
        margin-right: 10px;
    }

    .sub-section {
        font-weight: normal;
        margin-top: 10px;
        margin-left: 30px;
    }

    .marker-list {
        list-style: revert;
        font-weight: normal;
        margin-left: 80px;
    }

   .marker-list-item {
       list-style: disc;
       margin: 10px 0 10px 40px;
       font-weight: normal;
   }

   .video-mute::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* 0.5 = 50% затемнения */
    pointer-events: none; /* Чтобы затемнение не мешало кликам по видео */
    z-index: 1;
}

   .vlt-section__ken-burn-background video {
       width: 100%;
       height: 100%;
       /*object-fit: cover;*/
   }

   .policy-text-footer {
        color: #6c757d;
        font-size: 16px;
    }

   .text-about-slide {
       font-size: 1.2rem;
   }


/*/ --- Mobile --- /*/


@media only screen and (max-width: 480px) {
    .equalizer {
        display: none !important
    }


    .policy-text-footer {
        color: #6c757d;
        font-size: 16px;
    }


    .vlt-gap-50 {
        height: 2rem;
    }

    .vlt-gap-70 {
        height: 0;
    }

    .vlt-gap-75 {
        height: 1.6875rem;
    }

    .vlt-gap-70--lg {
        height: 0.5rem;
    }

    .vlt-gap-30--sm {
         height: 0.5rem;
    }


    .vlt-gap-100 {
        height: 0.25rem;
    }

    .vlt-gap-100--lg {
        height: 3.25rem;
    }

    .col-xl-6 {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .vlt-experience-block {
        max-width: 100%;
        padding: 1.375rem 1.6875rem 1.125rem 1.125rem;
        text-align: right;
    }

    .vlt-experience-block__title {
        font-size: 1.375rem;
        font-weight: 400;
        line-height: 1.5;
        position: relative;
        margin-top: 0;
    }

    .text-about-slide {
       font-size: 1rem;
   }

    .vlt-partners {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 1.375rem;
        grid-row-gap: 1.375rem !important;
        margin: 6px;
    }

    .team-title {
        margin-bottom: 20px;
        padding: 0;
    }

    h4 {
    font-size: 1.4rem;
    }

    .row-mobile {
        margin-left: -10px;
    }

    .h1.vlt-large-heading, h1.vlt-large-heading {
        font-size: 1.5rem;
    }

    .vlt-video-button a {
        width: 4.875rem;
        height: 4.875rem;
    }

    [data-anchor=Home] p {
        font-size: .7375rem;
    }

    .vlt-gap-70 {
        height: 0; !important;
    }

    .vlt-testimonial__text {
        font-size: .8375rem;
    }

    .vlt-video-button {
        padding-bottom: 10px;
    }

}

@media only screen and (max-width: 575px) {
    .typewriter {
        font-size: 3.5rem;
    }

    .text-contact-schedule p {
        visibility: hidden;
    }

    .vlt-offcanvas-menu__socials {
        display: flex;
    }

    .vlt-offcanvas-menu__socials {
        margin-bottom: 1.125rem;
    }

    .vlt-experience-block__number {
        font-size: 7.5rem;
    }

    .vlt-btn, .vlt-btn--md {
        height: 2rem;
    }

    [data-anchor=About] p {
        font-size: .8375rem;
    }

    .random-tracks span {
        font-size: 0.675rem;
    }

    .quotes-testimonials {
        height: 45px;
    }

    [data-anchor=Contact] .tel {
        font-size: 1.5rem;
    }

    .vlt-testimonial__meta {
        margin-top: 1.375rem;
    }

    .vlt-slider-controls--style-1 .vlt-swiper-button-next {
        height: 2.12rem;
    }

    .vlt-slider-controls--style-1 .vlt-swiper-button-prev {
        height: 2.12rem;
    }
}

/* СЛАЙДЕР О НАС */
@media (max-width: 768px) {
    /* .slider-about-us .vlt-content-slider {*/
    /*    !* Убираем ограничения высоты и overflow *!*/
    /*    overflow: visible !important;*/
    /*}*/

    /* .vlt-content-slider .swiper-container {*/
    /*    !*overflow: visible !important;*!*/
    /*    height: auto !important;*/
    /*}*/

    /*.slider-about-us .swiper-wrapper {*/
    /*    display: flex !important;*/
    /*    flex-direction: column !important;*/
    /*    gap: 40px;*/
    /*    height: auto !important;*/
    /*    transform: translate3d(0, 0, 0) !important; !* Сбрасываем сдвиг *!*/
    /*}*/

    .vlt-content-slider .swiper-slide {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-left: 0;
    }

   .slider-about-pg {
        font-size: 0;
        line-height: 1;
        visibility: hidden; !important;
    }

   .vlt-testimonial__text {
        padding: 6px;
    }
/* END СЛАЙДЕР О НАС  */

   .cookie-banner {
       width: 100%;
   }

   /*.vlt-footer--sticky {*/
   /*     position: fixed;*/
   /*     bottom: 0;*/
   /*     left: 0;*/
   /*     width: 100%;*/
   /*     height: auto;*/
   /*     background-color: hsl(0deg 0% 8.63%);;*/
   /*     }*/
}

@media only screen and (max-width: 960px) {
    .typewriter {
        font-size: 2.7rem;
    }

    .grid {
        display: flex !important;
        flex-direction: column !important;
    }

    #tracksGrid h3 {
        font-size: 0.8rem;
    }

    .vlt-gap-160 {
        height: 1rem;
    }

    .vlt-gap-70 {
        height: 1.375rem;
    }

    .vlt-content-slider .swiper-container {
        /*overflow: visible !important;*/
        height: auto !important;
    }

    .slider-about-us .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
        height: auto !important;
        transform: translate3d(0, 0, 0) !important; /* Сбрасываем сдвиг */
    }

    .vlt-content-slider .swiper-slide {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-left: 0;
    }

   .slider-about-pg {
        font-size: 0;
        line-height: 1;
        visibility: hidden; !important;
    }

   /*.col-xl-6 {*/
   /*     padding-left: 25px;*/
   /* }*/

    .col-md-8 {
        flex: 100%;
        max-width: 100%;
    }

    .vlt-offcanvas-menu__navigation .sf-menu > li > a {
        font-size: 1.625rem;
        font-weight: 500;
        line-height: 0.5;
        padding: .3125rem 0;
    }

    .swiper-container-autoheight .swiper-slide {
        height: stretch;
    }
}

@media only screen and (max-width: 1024px) {
    .grid {
        display: flex;
        flex-direction: column;
    }

    .cookie-inner {
        font-size: 10px;
    }
}

@media only screen and (max-width: 1199px) {
    .typewriter {
        font-size: 2.7rem;
    }

    .vlt-language-switcher {
        visibility: hidden;
    }

    .language-mobile {
        visibility: visible;
    }

    .vlt-footer-copyright {
        visibility: hidden;
    }

}


