.about {
    color: var(--Primary-800, #14489C);
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.content-about {
    color: var(--Neutral-900, #121A15);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: justify
}
@media(max-width:768px){
    .content-about-head{
        text-align:center;
         margin-top:20px;
    }
}
/* Global Style For Main Pages */
/* Base styles */
.overlay-container {
    position: relative;
    color: white;
    display: flex;
    height: 340px;
}

.main-About {
    background-image: url("/assets/Images/AboutMain.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14489C;
    opacity: 0.7;
}

.overlay-text {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}
@media(min-width:320px) and (max-width:768px){
    .overlay-container {
        height: 198px;
    }
}

