/* :root {
    --font-myriad: "myriad-pro", sans-serif;
    --text-body: #485560;
    --primary-blue: #243746;
    --beige: #DECAA4;
    --beige-light: #F7F3EB;
    --green: #D3E6CB;
    --green-light: #F0F5EF;
    --blue: #CADBEB;
    --blue-light: rgba(202, 219, 235, 0.35);
    --border-color: rgba(222, 202, 164, 0.75);
    --border-radius: 12px;
    --grey: #DDE2E2;
    --grey-rgb: 221, 226, 226;
    --bg-page: #F7F8F8;
    --white: #fff;
    --error-text: #fb0000;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --green-gradient: linear-gradient(180deg, #DDE8D9 0%, #FDFDFD 100%);
    --blue-gradient: linear-gradient(180deg, var(--blue-light) 0%, #FDFDFD 100%);
} */

/* Full-Width Video Section */
.full_width_video_section{
    margin-bottom: 125px;
}
.full_width_video_section .heading_main_content{
    text-align: center;
    max-width: 820px;
    margin: 0 auto 45px;
}
.full_width_video_section .heading_main_content p {
    font-size: 18px;
    line-height: 26px; /* 144.444% */
}
.full_width_video_section .heading_main_content h2{
    margin-bottom: 30px;
}

.fullwidth_video_wrap{
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    max-height: 720px;
}
.fullwidth_video_wrap img{
    height: 100%;
    object-fit: cover;
}
.fullwidth_video_wrap .play_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 3px;
    background: #FDFDFD;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fullwidth_video_wrap .play_btn:hover{
    background: var(--blue);
}
.fullwidth_video_wrap .play_btn img,
.fullwidth_video_wrap .play_btn svg{
    width: 36px;
    height: 36px;
}

.custom-video-wrapper video{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.custom-video-wrapper > video,
.custom-video-wrapper > iframe {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Full-Width Video Section */
