#about>header {
    padding: 12em 0 10em 0;
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/about_us-banner.webp");
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/about_us-banner.webp");
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/about_us-banner.webp");
    background-image: linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/about_us-banner.webp");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

#about>header h2 {
    font-size: 1.75em;
    /* padding-bottom: 5em; */
    font-family: "Venera900";
    /* margin: 0 0 0.5em 0; */
}

#about>header p {
    color: inherit;
    letter-spacing: 0.225em;
    text-transform: uppercase;
    top: 0;
}

#about>header p a {
    color: inherit;
}

@media screen and (max-width: 1680px) {

    /* #about>header { */
    /* padding: 10em 0 8em 0; */
    /* } */
.value{
    width: 32%;
}
}

@media screen and (max-width: 1280px) {

    /* #about>header { */
    /* padding: 8em 3em 6em 3em; */
    /* } */

}

@media screen and (max-width: 980px) {

    #about>header {
        padding: 10em 3em 8em 3em;
    }

}

@media screen and (max-width: 768px) {

    #about>header {
        padding: 5em 3em 3em 3em;
    }

    #about>header h2 {
        font-size: 1.25em;
        margin: 0 0 1em 0;
    }

    #mission-vision img {
        display: none;
    }

    .values {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .value{
        width: 100%;
        margin-bottom: 10px;
    }
}

body.is-mobile #about>header {
    background-attachment: scroll;
}

#mission-vision {
    img {
        width: 40%;
        height: 40%;
        border-radius: 20px;
        margin-right: 40px;
    }

    display: flex;
    align-items: center;
}

.small-lable {
    border-radius: 25px;
    padding: 5px 15px;
    background: #3d4955;
}

.title {
    padding-top: 15px;
    margin-bottom: 0px;
}

#values-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#values-header {
    text-align: center;
}

.values {
    display: flex;
    justify-content: space-between;

}

.value {
    /* border: solid; */
    border-radius: 25px;
    width: 32%;
    padding: 20px;
    background: #2e3842;

}

.value:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.value p {
    padding-top: 10px;
}

.value .icon {
    color: rgb(0, 255, 136);
    font-size: larger;
}

.members-container {
    text-align: center;
}

.main-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;

}

.main-member {
    width: calc(33% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border: 5px solid #2E3842;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main-member h3,
.main-member p {
    margin-bottom: 5px;
}


.main-member img {
    width: 200px;
    padding-bottom: 10px;
}

.advisors {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advisor {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border: 5px solid #2E3842;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.advisor:nth-child(even) {
    flex-direction: row-reverse;
}

.advisor h3,
.advisor p {
    margin-bottom: 5px;
}

.advisor img {
    width: 200px;
}

.advisor-info {
    flex: 1;
}

/* Tablet size */
@media (max-width: 768px) {
    .main-member {
        width: calc(50% - 20px);
    }

    .main-member img {
        width: 175px;
    }
    .value {
        width: 100%;
    }

}

/* mobile size */
@media (max-width: 430px) {
    .main-members {
        flex-direction: column;
        align-items: center;
    }

    .main-member {
        width: 100%;
    }

    .main-member img {
        width: 150px;
        height: 150px;
    }

    .advisor {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .advisor:nth-child(even) {
        flex-direction: column;
    }

    .advisor img {
        width: 150px;
    }
    .value {
        width: 100%;
    }

}