.page-section.has-background {
    /* общие параметры для фона в блоке секции */
}

.bg-position-center-center {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-position-top-left {
    background-position: top left;
    background-size: auto;
    /* или используйте contain вместо auto, если хотите, чтобы изображение полностью вписывалось в контейнер, сохраняя свои пропорции */
    background-repeat: no-repeat;
}

.bg-position-top-right {
    background-position: top right;
    background-size: auto;
    background-repeat: no-repeat;
}

.bg-position-center-left {
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-position-center-right {
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-position-bottom-left {
    background-position: bottom left;
    background-size: auto;
    background-repeat: no-repeat;
}

.bg-position-bottom-right {
    background-position: bottom right;
    background-size: auto;
    background-repeat: no-repeat;
}

.full-screen {
    height: 100dvh;

}

/* Пример адаптивности */
@media (max-width: 768px) {
    .page-section.has-background {
        background-size: auto;
        /* Пример изменения для мобильных */
    }
}

/* ВИДЕО В ЛОНГРИДАХ ВИДЕО В ЛОНГРИДАХ ВИДЕО В ЛОНГРИДАХ ВИДЕО В ЛОНГРИДАХ ВИДЕО В ЛОНГРИДАХ ВИДЕО В ЛОНГРИДАХ  */

/* Блок интро во всю высоту экрана */
.intro {
    max-height: 100vh;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-color: var(--accent-color-average);
}

/* Блок интро с автоматическим размером высоты */
.intro-q {
    height: auto;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-color: var(--accent-color-average);
}

/* Легкое затемнение за текстом */
.intro:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blackout-color-light);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Основные свойства блока */
.intro__content {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

/* Свойства стиля в тексте на видео накладке */
.intro__title-big {
    margin: 50px 50px;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    text-shadow: 7px 7px 15px rgba(0, 0, 0, 0.72);
}

.intro__title {
    margin: 25px 25px;
    font-size: 32px;
    color: var(--white-color);
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.72);
}

.intro__title-small {
    margin: 25px 25px;
    font-size: 24px;
    color: var(--white-color);
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.72);
}

.intro__title-x-small {
    margin: 25px 25px;
    font-size: 14px;
    color: var(--white-color);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.72);
}


/* */
@media only screen and (max-width: 1000px) {
    .intro__title-big {
        margin: 10px;
        font-size: 22px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--white-color);
        text-shadow: 7px 7px 15px rgba(0, 0, 0, 0.72);
    }

    .intro__title {
        margin: 10px;
        font-size: 20px;
        color: var(--white-color);
        text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.72);
    }

    .intro__title-small {
        margin: 10px;
        font-size: 16px;
        color: var(--white-color);
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.72);
    }

    .intro__title-x-small {
        margin: 10px;
        font-size: 14px;
        color: var(--white-color);
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.72);
    }
}

.container-full {
    width: 100%;
    padding: 25px;
    margin: 0 auto;
}

.container-f3 {
    width: 1124px;
}

.container-f3-75 {
    max-width: 75%;
}

.container-f3-50 {
    max-width: 50%;
}

.container-f3-25 {
    max-width: 25%;
}

.container-full-right {
    display: flex;
    flex-direction: row-reverse;
}

.video {
    position: relative;
    z-index: 1;
    padding-bottom: 56.25%;
}

.video-mobile {
    position: relative;
    height: 88vh;
    z-index: 1;
    padding-bottom: 56.25%;
}


.video-mobile-q {
    position: relative;
    height: auto;
    z-index: 1;
    padding-bottom: 56.25%;
}

.video__media {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 1000px) {
    .container-f3 {
        width: 100%;
    }

    .container-f3-75 {
        max-width: 80%;
    }

    .container-f3-50 {
        max-width: 70%;
    }

    .container-f3-25 {
        max-width: 60%;
    }
}

.container__end_right {
    display: flex;
    align-items: end;
    justify-content: right;
    text-align: right;
}

.container__top_right {
    display: flex;
    align-items: flex-start;
    justify-content: right;
    text-align: right;
}

.container__center_right {
    display: flex;
    align-items: center;
    justify-content: right;
    text-align: right;
}

.container__center_center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container__end_center {
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
}

.container__top_center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.container__top_left {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    text-align: left;
}

.container__center_left {
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
}

.container__end_left {
    display: flex;
    align-items: end;
    justify-content: left;
    text-align: left;
}

.d-mobile {
    display: block;

}

.d-desktop {
    display: none;

}

@media only screen and (min-width: 768px) {
    .d-mobile {
        display: none;
    }

    .d-desktop {
        display: block;

    }
}

.header-intro {
    margin: 0;
    font-size: 28px;
    color: var(--white-color);
}

.header-intro-label {
    margin: 0;
    font-size: 16px;
    color: var(--white-color);
}

@media only screen and (min-width: 768px) {
    .header-intro {
        font-size: 60px;
    }

    .header-intro-label {
        font-size: 26px;
    }

}

/* ------- */

.video-container {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-container-player {
    line-height: 0;
    /* fix me */
}

.video-player {
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-container-image {
    min-height: 220px;
    background-color: var(--blackout-color);
}

.video-container-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-area-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container-text {
    padding: 10px;
}

@media only screen and (min-width: 768px) {
    .video-container-image {
        min-height: 440px;
    }
}

.video-container-image-full-height {
    min-height: 100vh;
}

@media only screen and (min-width: 768px) {
    .video-container-image-full-height {
        min-height: 100vh;
    }
}


/* Мои 2ДВЕ колонки в посте */
#container__post {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 768px) {
    #container__post {
        grid-template-columns: 1fr;
    }
}

#post_left {
    padding: 0 10px 0 0;
}

#post_right {
    padding: 0 10px 0 10px;
}

@media only screen and (max-width: 768px) {
    #post_left {
        padding: 0;
    }

    #post_right {
        padding: 0;
    }
}

/* Высота блока и выравнивание контента по середине для видео фона и картинки */

.landing-page__cover--full-height {
    height: 100vh;
    /* Задаёт высоту блока равной высоте вьюпорта */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Центрирование содержимого блока по вертикали */
}

/* Стили для формы contact form 7 */

.custom-contact-form {
    max-width: 600px;
    margin: 25px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-big);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-contact-form label {
    display: block;
    margin-bottom: 10px;
}

.custom-contact-form input,
.custom-contact-form textarea,
.custom-contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--five-color);
    border-radius: var(--border-radius-small);
    box-sizing: border-box;
    /* Для корректного отображения ширины */
}

.custom-contact-form input[type="submit"] {
    background-color: var(--accent-color-average);
    color: var(--white-color);
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 20px 0;
}

.custom-contact-form input[type="submit"]:hover,
.custom-contact-form input[type="submit"]:focus {
    background-color: var(--accent-color);
}

/* Стилизуем placeholder для всех полей */
::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.custom-contact-form h2 {
    font-family: var(--font-family-H2) !important;
    text-align: center;
    color: var(--white-color) !important;
    text-transform: inherit !important;
    letter-spacing: 0.15em !important;
    font-weight: 700 !important;
}

/* Видео на фоне блок */

.video-background {
    position: relative;
    width: 100%;
    min-height: 72vh;
    /* height: 100vh; - 100% от высоты видимой части экрана */
    overflow: hidden;
}

.video-background video,
.video-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-background img {
    z-index: -1;
    /* Помещаем изображение под видео */
}

.video-background .container {
    position: relative;
    z-index: 2;
    /* Другие стили вашего контента */
}

.page-section_video {
    margin: -50px -5px 0 -5px;
}

.wpcf7-not-valid-tip {
    color: var(--error-color);
}


.page-header__row img {
    padding: 5px;
}



.div_text_center {
    text-align: center;
}

.div_air {
    height: 32px;
}