/*======================================
    CEO WELCOME SECTION
======================================*/

.ceo-section{

    display:none;

    padding:80px 0;

    background:#f8f8f8;

}

.ceo-section .container{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

/*======================================
    LEFT
======================================*/

.ceo-left{

    flex:1;

    text-align:center;

}

.ceo-photo{

    width:420px;

    max-width:100%;

    border-radius:20px;

    object-fit:cover;

    box-shadow:0 15px 45px rgba(0,0,0,.15);

}

/*======================================
    RIGHT
======================================*/

.ceo-right{

    flex:1;

}

.ceo-right h2{

    font-size:42px;

    color:#222;

    margin-bottom:20px;

    line-height:1.3;

}

.ceo-message{

    font-size:18px;

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.ceo-right h4{

    font-size:28px;

    color:#222;

    margin-bottom:8px;

}

.ceo-position{

    display:block;

    color:#b88a28;

    font-weight:600;

    margin-bottom:35px;

    font-size:18px;

}

/*======================================
    CONTACT
======================================*/

.ceo-contact{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.ceo-contact p{

    margin:0;

    font-size:17px;

    color:#555;

    display:flex;

    align-items:center;

    gap:15px;

}

.ceo-contact i{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#b88a28;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

/*======================================
    TABLET
======================================*/

@media(max-width:992px){

.ceo-section{

    padding:70px 0;

}

.ceo-section .container{

    flex-direction:column;

    text-align:center;

    gap:40px;

}

.ceo-right h2{

    font-size:34px;

}

.ceo-right h4{

    font-size:24px;

}

.ceo-contact{

    align-items:center;

}

.ceo-contact p{

    justify-content:center;

}

.ceo-photo{

    width:340px;

}

}

/*======================================
    MOBILE
======================================*/

@media(max-width:768px){

.ceo-section{

    padding:50px 20px;

}

.ceo-right h2{

    font-size:28px;

}

.ceo-message{

    font-size:16px;

}

.ceo-right h4{

    font-size:22px;

}

.ceo-position{

    font-size:16px;

}

.ceo-contact p{

    font-size:15px;

}

.ceo-photo{

    width:260px;

}

}

/*======================================
    SMALL MOBILE
======================================*/

@media(max-width:480px){

.ceo-right h2{

    font-size:24px;

}

.ceo-message{

    font-size:15px;

    line-height:1.7;

}

.ceo-photo{

    width:220px;

}

.ceo-contact i{

    width:40px;

    height:40px;

    font-size:16px;

}

}
.ceo-section.show{

    display:block;

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}