@media only screen and (max-width: 699px){
    .contactContents{
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
        padding: 30px 25px;
        align-items: center;
    }
    .ceoHolder{
        width: 330;
        height: 350px;
        position: relative;
        border-radius: 5px;
    }
    .ceoHolder img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }
    .ceoHolder .ceoName{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: rgba(0,0,0, 0.5);
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        padding: 10px;
    }
    .ceoName .name{
        font-weight: 600;
        font-size: 16px;
        color: #fff;
        text-align: center;
    }
    .ceoName .hint{
        color: #f2f2f2;
        font-size: 13px;
        text-align: center;
    }
    .textSec{
        width: -webkit-fill-available;
    }
    .textSec h3{
        color: teal;
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 5px;
    }
    .textSec p{
        font-size: 15px;
        width: 100%;
    }
}