.contactContents{
    display: flex;
    gap: 40px;
    padding: 50px 150px;
}
.ceoHolder{
    width: 300px;
    height: 320px;
    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: 18px;
    color: #fff;
    text-align: center;
}
.ceoName .hint{
    color: #f2f2f2;
    font-size: 15px;
    text-align: center;
}
.textSec{
    width: 80%;
}
.textSec h3{
    color: teal;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}
.textSec p{
    font-size: 15px;
    width: 80%;
}