.text_type1_title {
    padding-top: 60px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 47px;
    color: #191919;
}

.text_type1_subtitle {
    margin-bottom: 45px;
    text-align: center;
    font-size: 16px;
    color: #444;
}


.video_type1_section {
    padding: 60px 0;
}

.video_type1_container {
    position: relative;
    width: 100%;
    max-width: 1100px; /* Або будь-яка інша ширина */
    margin: 0 auto;
    aspect-ratio: 16 / 9; /* Сучасний спосіб тримати пропорції */
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video_type1_preview {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_type1_poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.video_type1_preview:hover .video_type1_poster {
    opacity: 0.8;
}

.video_type1_play_btn {
    position: absolute;
    width: 68px;
    height: 48px;
    z-index: 2;
}

.video_type1_play_shape {
    fill: #212121;
    fill-opacity: 0.8;
    transition: fill 0.3s;
}

.video_type1_preview:hover .video_type1_play_shape {
    fill: #ff0000;
    fill-opacity: 1;
}

.video_type1_iframe {
    width: 100%;
    height: 100%;
}

.video_type1_btn_box {
    margin-top: 50px;
    padding-bottom: 60px;
    text-align: center;
}