.backgroundimg-about {
    position: relative;
}

.about-img {
    width: 100%;
    height: 55%; /* show 60% of container height */
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.about-blue {
    background-color: #034d7b71;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

.background-about-content {
    position: absolute;
    bottom: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
}

.background-about-left {
    margin-left: 60px;
    width: 50%;
}

.bg-about-title {
    font-family: Palladio;
    font-size: 55px;
    color: #FEB912;
    font-weight: 700;
    margin: 0;
}

.bg-about-text {
    font-family: Palladio;
    font-size: 20px;
    color: #FAFAFA;
    width: 65%;

    border-left: 1px solid #FAFAFA;
    padding-left: 10px;
}

.background-about-right {
    margin-right: 130px;
    width: auto;
    text-align: right;
}

.background-about-right p {
    font-family: Palladio;
    font-size: 55px;
    color: #FAFAFA;
    border-bottom: 1px solid #FAFAFA;
}

.about-content {
    overflow: hidden;
    background-color: #FAFAFA;
}

/* SECTION 1 */

.section1-about-main {
    background-image: url("../assets/services/bg.webp");
    background-size: cover;        
    background-repeat: no-repeat; 
    background-position: center; 
}

.section1-about {
    margin: 40px 60px;
    display: flex;
    justify-content: space-around;
}

.section1-about-left, 
.section1-about-right{
    width: 35%;
}


.section1-about-vision {
    background-color: #034E7B;
    width: 100%;
    height: 300px;
    padding: 15px 20px 20px 20px;
    
    border-radius: 10px;
    box-shadow: 0px 4px 4px grey;

    display: flex;
    flex-direction: column;
}


.vision-title {
    font-family: Palladio;
    font-weight: 700;
    color: #FEB912;
    font-size: 45px;

    text-align: center; 
    width: 100%;
    border-bottom: 1px solid #FEB912;
    margin: 0;
    justify-self: flex-start;
}

.section1-about-vision div {
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-text {
    font-family: sans-serif;
    font-family: Palladio;
    font-weight: 700;
    color: #FAFAFA;
    font-size: 23px;

    width: 80%;

    text-align: center;
}


/* SECTION 2 */

.section2-about-main {
    background-color: #F0F0F0;
    
    padding: 0px 0px 20px 0px;
}

.section2-about {
    margin: 40px 60px;
}

.section2-about-title {
    width: 100%;
    text-align: center;
}

.section2-about-title p {
    font-size: 55px;
    font-family: Palladio;
    color: #034E7B;
    padding-top: 30px;
}

.main-section2-about {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.section2-about-left {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.section2-about-left img {
    width: 80%;
}

.section2-about-right {
    display: block;
    width: 40%;
    min-height: 100%;
    background-color: #034E7B;
    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 10px;

    padding: 40px 70px;
}

.section2-ceo-name {
    font-family: Palladio;
    color: #FEB912;
    font-weight: 700;
    font-size: 45px;
    margin: 0;

    border-bottom: 1px solid #FAFAFA;
}

.section2-ceo-title {
    font-family: Palladio-Normal;
    color: #FAFAFA;
    font-weight: 600;
    font-size: 19px;
    margin: 0;
}

.section2-ceo-content {
    font-family: Palladio-Normal;
    color: #FAFAFA;
    text-align: justify;
    font-size: 20px;
}

.section2-ceo-button {
    font-family: sans-serif;
    color: #FAFAFA;
    width: 100%;
    margin-top: 40px;
    font-weight: 700;
    font-size: 20px;
    text-align: right;
}

/* SECTION 3 */

.section3-about-main {
    background-color: #FAFAFA;
    background-image: url("../assets/services/bg.webp");
    background-size: cover;        
    background-repeat: repeat; 
}

.section3-about {
    display: flex;
    justify-content: space-evenly;
}

.section3-title-main {
    width: 500px;
    border-bottom: 1px solid #212121;
    margin: 0px auto;
}

.section3-title {
    font-family: Palladio;
    font-weight: 700;
    font-size: 45px;
    color: #034E7B;
    text-align: center;
    margin: 20px 0px;
}

.section3-text {
    font-family: Palladio-Normal;
    font-weight: 500;
    font-size: 20px;
    color: #212121;
    width: 50%;
    margin: 20px auto;
}

.section3-text-2 {
    font-family: Palladio-Normal;
    font-weight: 500;
    font-size: 20px;
    color: #212121;
    width: 40%;
    margin: 20px auto;
}

@media screen and (max-width: 1460px) {

    .background-about-left {
        margin-left: 20px;
    }

    .bg-about-title {
        font-size: 50px;
    }

    .bg-about-text {
        font-size: 23px;
        width: 90%;
    }

    .background-about-right {
        margin-right: 70px;
    }

    .background-about-right p {
        font-size: 57px;
    }

    /* SECTION 1 */

    .section1-about {
        margin: 40px 30px;
        gap: 20px;
    }

    .section1-about-left, 
    .section1-about-right{
        width: 45%;
    }


    .section1-about-vision {
        height: 330px;
    }


    .vision-title {
        font-size: 30px;
    }

    .vision-text {
        font-size: 16px;

    }

    /* SECTION 2 */


    .section2-about {
        margin: 10px 30px;
    }

    .section2-about-title p {
        font-size: 43x;
    }

    .section2-about-left img {
        width: 80%;
    }

    .section2-ceo-name {
        font-size: 36px;
    }

    .section2-ceo-title {
        font-size: 18px;
    }

    .section2-ceo-content {
        font-size: 19px;
    }

    /* SECTION 3 */

    .section3-about {
        margin: 10px 30px;
    }

    .section3-title-main {
        width: 350px;
    }

    .section3-title {
        font-weight: 700;
        font-size: 20px;
    }

    .section3-text {
        font-size: 15px;
        width: 70%;
    }

    .section3-text-2 {
        font-size: 15px;
        width: 50%;
    }

}

@media screen and (max-width: 769px) {

    .about-img {
        height: 43%;
    }

    .background-about-left {
        margin-left: 20px;
    }

    .bg-about-title {
        font-size: 22px;
    }

    .bg-about-text {
        font-size: 8px;
        width: 90%;
    }

    .background-about-right {
        margin-right: 20px;
    }

    .background-about-right p {
        font-size: 22px;
    }

    /* SECTION 1 */

    .section1-about {
        margin: 40px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .section1-about-left, 
    .section1-about-right{
        width: 100%;
    }


    .section1-about-vision {
        height: 230px;
    }


    .vision-title {
        font-size: 27px;
    }

    .vision-text {
        font-size: 13px;

    }

    /* SECTION 2 */

    .section2-about {
        margin: 10px 30px;
    }

    .section2-about-title p {
        font-size: 35px;
    }

    .main-section2-about {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .section2-about-left {
        width: 40%;
    }

    .section2-about-left img {
        width: 110%;
        text-align: center;
    }

    .section2-about-right {
        width: 100%;
        padding: 20px 30px;
    }

    .section2-ceo-name {
        font-size: 19px;
    }

    .section2-ceo-title {
        font-size: 12px;
    }

    .section2-ceo-content {
        font-size: 13px;
    }

    /* SECTION 3 */

    .section3-about {
        margin: 10px 30px;
    }

    .section3-title-main {
        width: 270px;
        margin-bottom: 10px;
    }

    .section3-title {
        font-weight: 700;
        font-size: 16px;
    }

    .section3-text {
        font-size: 13px;
        width: 70%;
    }

    .section3-text-2 {
        font-size: 13px;
        width: 50%;
    }


}

@media screen and (max-width: 600px) {
    /* SECTION 3 */

    .section3-about {
        margin: 10px 20px;
    }

    .section3-title-main {
        width: 150px;
        margin-bottom: 10px;
    }

    .section3-title {
        font-weight: 700;
        font-size: 10px;
    }

    .section3-text {
        font-size: 9px;
        width: 80%;
    }

    .section3-text-2 {
        font-size: 9px;
        width: 70%;
    }
}

