.about{
    width:100%;
    padding:60px 8%;
    background:#faf8f3;
}

.about-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-image{
    flex:0 0 48%;
}

.about-image img{
    width: 100%;
    height: 45vw;
    max-height: 550px;
    min-height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.about-content{
    flex:0 0 46%;
}

.about-subtitle{
    display:inline-block;
    color:#3154ff;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:64px;
    font-weight:700;
    color:#0a1d7d;
    margin-bottom:30px;
    line-height:1;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
    text-align:justify;
}

.about .btn{
    margin-top:20px;
}

@media(max-width:992px){

    .about-container{
        gap:40px;
    }

    .about-content h2{
        font-size:48px;
    }

    .about-content p{
        text-align:left;
        text-align: justify;
    }

}

@media(max-width:768px){

    .about{
        padding:70px 25px;
    }

    .about-container{
        flex-direction:column;
    }

    .about-image{
        display:none;
    }

    .about-content{
        width:100%;
        flex:unset;
        text-align:center;
    }

    .about-content h2{
        font-size:42px;
    }

    .about-content p{
        text-align:left;
        text-align: justify;
    }

}