/* =========================================
   BUTTONS
========================================= */

.about-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    align-items:center;
    margin-top:10px;
}

.about-btn{
    display:inline-block;
    background:#ffb400;
    color:#002147;
    padding:15px 35px;
    font-weight:700;
    border-radius:8px;
    transition:.3s;
    min-width:180px;
    text-align:center;
}

.about-btn:hover{
    transform:translateY(-3px);
}

.about-btn-outline{
    display:inline-block;
    padding:15px 35px;
    margin-left:15px;
    border:2px solid #002147;
    color:#002147;
    font-weight:700;
    border-radius:8px;
    transition:.3s;
    min-width:180px;
    text-align:center;
}

.about-btn-outline:hover{
    background:#002147;
    color:#ffffff;
}

/* =========================================
   IMAGE
========================================= */

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}