/* ==========================================
   WELCOME POPUP
========================================== */

.welcome-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.welcome-box{

    width:500px;
    max-width:95%;
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:35px;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.welcome-logo{

    width:90px;
    margin-bottom:15px;

}

.welcome-box h2{

    font-size:30px;
    margin-bottom:15px;
    color:#222;

}

.welcome-box p{

    color:#666;
    line-height:1.8;
    margin-bottom:30px;

}

.play-btn{

    background:#c89b3c;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:14px 30px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;

}

.play-btn:hover{

    background:#a97d24;

}

.close-popup{

    position:absolute;
    right:18px;
    top:15px;
    font-size:30px;
    cursor:pointer;
    color:#999;

}

.close-popup:hover{

    color:#000;

}

/* ==========================================
   CEO CARD
========================================== */

.ceo-card{

    position:fixed;
    right:35px;
    bottom:35px;

    width:360px;

    background:#fff;

    border-radius:15px;

    padding:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    display:none;

    z-index:99999;

}

.ceo-image{

    width:120px;
    height:120px;

    border-radius:50%;

    object-fit:cover;

    display:block;

    margin:0 auto 20px;

}

.ceo-card h3{

    text-align:center;

    margin-bottom:15px;

    color:#222;

}

.ceo-card p{

    margin-bottom:10px;

    color:#555;

    line-height:1.7;

}

.close-card{

    position:absolute;

    top:12px;

    right:15px;

    font-size:26px;

    cursor:pointer;

    color:#999;

}

.close-card:hover{

    color:#000;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.welcome-box{

    padding:25px;

}

.welcome-box h2{

    font-size:24px;

}

.ceo-card{

    width:92%;

    right:4%;

    left:4%;

    bottom:20px;

}

}
.welcome-logo{
    text-align:center;
    margin-bottom:20px;
}

.welcome-logo .custom-logo-link{
    display:inline-block;
}

.welcome-logo .custom-logo{
    max-width:180px;
    max-height:180px;
    width:auto;
    height:auto;
    display:block;
}

.welcome-logo img{
    max-width:180px;
    max-height:180px;
    width:auto;
    height:auto;
    display:block;
    margin:0 auto;
}