/* Education */

.home-education-main {
    padding-top: 120px;
    padding-bottom: 120px;
    background: url('/wp-content/uploads/2026/01/education-background.png') center / cover no-repeat;
}

.home-education-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.home-education-1 {
    width: 40%;
}

.home-education-pre-title {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border: 1px solid #FFFFFF80;
    color: #FFFFFFB2;
    font-family: var(--global-font-family-2);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    border-radius: 50px;
    margin-bottom: 22px;
    text-align: center;
}

.home-education-pre-title svg {
    flex-shrink: 0;
}

.home-education-title {
    font-family: var(--global-font-family-1);
    font-weight: 400;
    font-size: 100px;
    line-height: 120%;
    text-transform: uppercase;
    margin: 0;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.home-education-description {
    font-family: var(--global-font-family-2);
    font-weight: 400;
    font-size: 19px;
    line-height: 150%;
    margin: 0;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.home-education-play {
    display: block;
    width: 200px;
    height: 200px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 1024px) {

    .home-education-1 {
        width: 50%;
    }

    .home-education-title {
        font-size: 80px;
    }

    .home-education-play {
        width: 150px;
        height: 150px;
    }
    
}

@media (max-width: 767px) {

    .home-education-main {
        padding-top: 64px;
        padding-bottom: 48px;
        background: url('/wp-content/uploads/2026/01/education-background.png') center right / cover no-repeat;
    }

    .home-education-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 64px;
    }

    .home-education-1 {
        width: 100%;
    }

    .home-education-pre-title {
        padding: 6px 12px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .home-education-title {
        font-size: 48px;
    }

    .home-education-play {
        width: 120px;
        height: 120px;
    }
    
}



/* Education - Video popup */
.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}
  
.yt-modal.is-open { 
    display: block; 
}
  
.yt-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
  
.yt-modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1000px, calc(100vw - 32px));
}
  
.yt-modal__frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
  
.yt-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
  
.yt-modal__close {
    position: absolute;
    right: 6px;
    top: -46px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 40px;
    padding: 0;
}