/* Video Popup */

.videos iframe{
    width: 100%;
    height: 75vh;
    max-width: 1280px;
    margin: auto;
}

.mfp-content {
    text-align: center;
   
}

.mfp-close-btn-in .mfp-close {
    color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 50%;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: #000;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}


.mfp-close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 3vw;
    top:-6vh;
    text-decoration: none;
    text-align: center;
    opacity:1;
    padding: 0 0 18px 0px;
    color: #FFF;
    border:1px solid #ccc;
    font-style: normal;
    font-size: 30px;
    font-family: Arial,Baskerville,monospace;
    letter-spacing: 0;
}


.box-text{
    background: transparent;

}

.box-text a{
    color: white;
    font-weight: bold;
    font-size:2rem;
    color:#FFF; 
    text-decoration: none;
    position: relative;
}

.box-text a:hover{
    color: rgb(207, 204, 204);
}

.box-text a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 30px;
    border-color: #FFF;
    border-width: 0 0 3px;
    border-style: solid;
    transform: scale(1);
    transition:all 0.4s linear;
}

.box-text a:hover::after{
    content: '';
    width:100%;
    transform: scale(0);
    margin: auto;
    position: absolute;
    left: 0;
    top: 30px;
    border-color: #FFF;
    border-width: 0 0 3px;
    border-style: solid;
}


@media (max-width: 600px){
    .videos iframe{
        width: 100%;
        height: 50vh;
        max-width: 1280px;
        margin: auto;
    }
    .box-text a{
        font-size:4vw;
        
    }

    .mfp-close {
        width: 30px;
        height: 30px;
        line-height: 24px;
        position: absolute;
        right: 0vw;
        top:-8vh;
        text-decoration: none;
        text-align: center;
        opacity:1;
        padding: 0 0 18px 10px;
        color: #FFF;
        font-style: normal;
        font-size: 24px;
        font-family: Arial,Baskerville,monospace;
    }
    
}