/*********************
START: ABOUT US
*********************/
.aboutUs--content {
    display: grid;
    column-gap: 6rem;
    row-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

/*********************
END: ABOUT US
*********************/

/*********************
START: WHO WE ARE
*********************/
.whoWeAre {
    padding-block-start: 5rem;
}

.whoWeAre--content {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
}

.whoWeAre--img {
    width: 35%;
    position: relative;
}

.whoWeAre--img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: var(--border-radius10);
    background-color: rgba(187, 187, 185, 0.2);
}

.whoWeAre--img img {
    width: 100%;
    border-radius: var(--border-radius10);
}

.whoWeAre--text {
    width: 60%;
    position: relative;
}

.whoWeAre--text p {
    width: 80%;
    margin-block-start: 2rem;
    margin-inline-end: auto;
}

.whoWeAre--text img {
    position: absolute;
    top: -320px;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 4/4;
    border-radius: var(--border-radius10);

}

/*********************
END: WHO WE ARE
*********************/

/*********************
START: MISSION
*********************/
.mission ul {
    display: grid;
    row-gap: 1.5rem;
    column-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.mission ul li {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 4rem;
    padding-block: 5rem;
    position: relative;
    row-gap: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--border-radius10);
}

.mission ul li:nth-child(odd) {
    background-image: url(../img/bg-mission-1.png);
}

.mission ul li:nth-child(even) {
    background-image: url(../img/bg-mission-2.png);
}

/*********************
END: MISSION
*********************/


/*********************
START: PRINCIPLES
*********************/
.principles {
    height: 100%;
    padding-block: 7.5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/bg-principles.png");
}

.principles--title p {
    margin-block: 1.5rem 3.75rem;
}

.principles ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
    column-gap: 4rem;
}

.principles ul li {
    display: flex;
    column-gap: 1.5rem;
    align-items: center;
}

.principles ul li p {
    margin-block-start: 1rem;
}

.principles ul li img {
    width: 100px;
    height: 100px;
}

/*********************
END: PRINCIPLES
*********************/

/*********************
START: CHOOSE
*********************/
.choose--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.choose--img,
.choose--text {
    width: 48%;
}

.choose--img img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius10);
}

.choose--text > p {
    margin-block: 1rem 2.5rem;
}

.choose--text ul {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.choose--text ul li {
    padding: 1rem 1.5rem;
    color: var(--primary-color);
    border-radius: var(--border-radius10);
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 68, 149, 0.5);
}

/*********************
END: CHOOSE
*********************/



/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {}

@media screen and (min-width: 1320px) and (max-width:1439px) {

    .principles ul li img {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 1319px) {
    .aboutUs--content {
        column-gap: 5rem;
    }

    .whoWeAre--text img {
        aspect-ratio: 4/3;
        max-width: 270px;
        top: -200px;
    }


    .principles ul li img {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .aboutUs--content {
        column-gap: 4rem;
    }

    .mission ul {
        column-gap: 1.5rem;
    }

    .mission ul li {
        padding-inline: 3rem;
        padding-block: 4rem;
    }
}

@media screen and (max-width: 992px) {
    .aboutUs--content {
        column-gap: 2rem;
    }

    .whoWeAre {
        padding-block-start: 0;
    }

    .whoWeAre--content {
        row-gap: 2rem;
        flex-direction: column;
    }

    .whoWeAre--text {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .whoWeAre--text img {
        position: relative;
        top: unset;
        left: unset;
        margin-inline: auto;
        margin-block-start: 1.5rem;
    }

    .whoWeAre--text p {
        width: 100%;
        margin-block-start: 1rem;
    }

    .whoWeAre--img {
        width: 60%;
        margin-inline: auto;
    }

    .mission ul {
        column-gap: 1rem;
    }

    .mission ul li {
        padding-inline: 2rem;
        padding-block: 3rem;
    }

    .principles ul {
        row-gap: 3rem;
        grid-template-columns: repeat(1, 1fr);
    }

    .choose--content {
        flex-direction: column-reverse;
        row-gap: 2rem;
    }

    .choose--img {
        width: 70%;
        margin-inline: auto;
    }

    .choose--text {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .aboutUs--content {
        grid-template-columns: repeat(1, 1fr);
    }

    .whoWeAre--img {
        width: 70%;
    }

    .principles ul li img {
        width: 70px;
        height: 70px;
    }

    .choose--img {
        width: 80%;
    }
}

@media screen and (max-width: 576px) {
    .whoWeAre--img {
        width: 85%;
    }

    .mission ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .mission ul li {
        row-gap: 1rem;
        min-height: 300px;
    }

    .principles ul li {
        column-gap: 1rem;
    }

    .principles ul li img {
        width: 60px;
        height: 60px;
    }

    .choose--img {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .whoWeAre--img {
        width: 100%;
    }

    .principles ul li img {
        width: 50px;
        height: 50px;
    }
}

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

/*********************
END: MEDIA
*********************/