.salvadoreanTalent {
    padding: 50px 10%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.salvadoreanTalent-left {
    flex: 1;
}

.salvadoreanTalent-left h2 {
    color: #0055B8;
    font-size: 2em;
    font-weight: 300;
}

.salvadoreanTalent-left h2 strong {
    font-weight: 900;
    font-size: 1.5em;
}

.salvadoreanTalent-left p {
    color: #282828;
}

.salvadoreanTalent-right {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.salvadoreanTalent-right img {
    height: 100%;
    width: auto;
    max-width: none;
}

.shareKnowledge {
    padding: 0 10%;
    justify-content: center;
    display: flex;
}

.shareKnowledge h2 {
    color: #004A98;
    font-weight: 300;
    font-size: 2em;
    text-align: center;
}

.shareKnowledge h2 strong {
    font-weight: 900;
    font-size: 1.5em;
}

.collaborationsContainer {
    padding: 30px 10%;
    gap: 5rem;
    justify-content: center;
    display: flex;
}

.collaborationItem {
    width: 400px;
    -webkit-box-shadow: 18px 7px 16px -19px rgba(0,0,0,0.57);
    -moz-box-shadow: 18px 7px 16px -19px rgba(0,0,0,0.57);
    box-shadow: 18px 7px 16px -19px rgba(0,0,0,0.57);
    border: 2px solid rgba(0,0,0,0.2);
    padding: 50px;
    border-radius: 10px;
    display: grid;
    gap: 1rem;
}

.itemCollaImg {
    height: 75px;
    width: fit-content;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.itemCollaImg img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}

.collaborationItem p {
    color: #282828;
    text-align: center;
    font-size: 0.9em;
}

.collaborationButton {
    color: #002F86;
    justify-self: center;
    align-self: end;
    padding: 10px;
    border: 3px solid #002F86;
    width: 100%;
    text-align: center;
    border-radius: 7px;
}

.actionsContainer {
    padding: 30px 10% 75px;
}

.actionsContainer h2 {
    color: #0055B8;
    font-size: 3.5em;
    font-weight: 300;
    margin: 0 auto 50px;
    text-align: center;
}

.actionsContainer h2 strong {
    font-weight: 900;
}

.educationalAlliances {
    display: flex;
    align-items: center;
    background: #9FD6EF;
}

.educationAlliancesLeft {
    width: 50%;
    overflow: hidden;
}

.educationAlliancesRight {
    width: 50%;
    padding: 0 10%;
}

.educationAlliancesRight h3 {
    color: #0055B8;
    font-size: 3em;
    font-weight: 300;
}

.educationAlliancesRight h3 strong {
    font-weight: 900;
}

.educationAlliancesRight p {
    color: #253440;
}

.committedMembers {
    display: flex;
    align-items: center;
}

.committedMembersLeft {
    width: 50%;
    padding: 0 10%;
}

.committedMembersLeft h3 {
    font-size: 3em;
    color: #0055B8;
    font-weight: 300;
}

.committedMembersLeft h3 strong {
    font-weight: 900;
}

.committedMembersLeft p {
    color: #253440;
}

.committedMembersRight {
    width: 50%;
    overflow: hidden;
}

@media screen and (max-width: 900px) {
    .salvadoreanTalent {
        text-align: center;
        flex-direction: column;
    }

    .salvadoreanTalent-left h2 {
        font-size: 1.5em;
    }

    .salvadoreanTalent-right {
        width: 100%;
        max-height: 300px;
    }

    .salvadoreanTalent-right img {
        width: 100%;
        max-width: none;
    }

    .shareKnowledge h2 {
        font-size: 1.5em;
    }

    .collaborationsContainer {
        flex-direction: column;
        gap: 2rem;
    }

    .collaborationItem {
        width: 80%;
        margin: 0 auto;
    }

    .actionsContainer {
        padding: 30px 10%;
    }

    .actionsContainer h2 {
        font-size: 1.8em;
    }

    .educationalAlliances {
        flex-direction: column-reverse;
    }

    .educationAlliancesLeft {
        flex: 1;
        width: auto;
    }

    .educationAlliancesRight {
        flex: 1;
        padding: 30px 10%;
        text-align: center;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .educationAlliancesRight h3 {
        font-size: 2em;
        margin: 0 auto;
    }

    .committedMembers {
        flex-direction: column;
    }

    .committedMembersLeft {
        flex: 1;
        padding: 50px 10%;
        text-align: center;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .committedMembersLeft h3 {
        font-size: 2em;
        margin: 0 auto;
    }

    .committedMembersRight {
        flex: 1;
        width: auto;
    }
}