.content-top{
    background-image: url(../about-us/image-top.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 185px 90px;
}

.content-top div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
    width: 34vw;
}

.content-top p{
    text-align: justify;
    line-height: 1.6;
}

.content-mid{
    padding: 10vw 90px;
    display: flex;
    gap: 10vw;
    align-items: center;
}

.content-mid img{
    height: 25vw;
    min-height: 200px;
    width: 40vw;
    min-width: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #cfcfcf;;
}

.content-mid div{
    display: flex;
    flex-direction: column;
    width: 34vw;
    gap: 20px;
}

.content-mid p{
    line-height: 1.6;
}

.content-btm{
    background-image: linear-gradient(to right, #FFA322, #FFD322);
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.content-btm img{
    height: 25vw;
    min-height: 280px;
    align-self: flex-end;
}

.content-btm div{
    width: 40vw;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 50px;
    align-self: center;
}

.content-btm p{
    line-height: 1.6;
}

.content-btm a{
    text-decoration: none;
    padding: 15px 20px;
    background-color: #bE1414;
    color: white;
    align-self: flex-start;
    font-weight: bold;
    border-radius: 10px;
}

.content-btm a:hover{
    background-color: #961010;
}

@media(max-width:800px){
    .content-mid{
        flex-direction: column;
    }
    .content-mid div{
        width: 70vw;
    }
    .content-mid p{
        text-align: center;
    }
    .content-mid h1{
        text-align: center;
    }
    .content-top div{
        justify-self: center;
        width: 70vw;
    }
    .content-top p{
        text-align: center;
    }
    .content-top h1{
        text-align: center;
    }
    .content-btm{
        flex-direction: column;
    }
    .content-btm img{
        align-self: center;
    }
    .content-btm div{
        width: 80vw;
    }
    .content-btm p{
        text-align: center;
    }
    .content-btm h2{
        text-align: center;
    }
    .content-btm a{
        align-self: center;
    }

}