  /*================ WHO WE ARE ===================*/

/*Hero*/

.hero-about {
    width: 100%;
    height: 350px;
    background-image: url("../img/hero-about.jpg"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}





/*Our Story*/

.our-story {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.our-story-content {
    position: relative;
    grid-column: col-start / span 7;
    z-index: 2;
}

.our-story-content a, .our-story-content a:active, .our-story-content a:visited {
    color: var(--blue-drk);
    text-decoration: none;
}

.our-story-content a:hover {
    color: var(--blue-md);
    text-decoration: none;
}

.our-story-img {
    width: 372px;
    height: 465px;
    grid-column: col-start 9 / span 4;
    background: url("../img/our-story.jpg");
    background-size: cover;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow);
}

.our-story .blue-bg {
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-md);
    z-index: -1;
}

.our-story h2 {
    margin-bottom: 15px;
}

.our-story p {
    margin-bottom: 50px;
}







/*Our Values*/

.our-values {
    width: 100%;
    padding: 100px;
    background: var(--gradient-drk);
}

.our-values .heading-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.our-values-body {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.our-values-body .value-container {
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our-values-body .value-container .value {
    width: 30%;
    padding: 5px;
    margin-bottom: 30px;
}

.our-values-body .value-container .value h3 {
    margin-bottom: 10px;
}






/*Our Leaders*/

.our-leaders {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px;
    background: var(--gradient-md);
}

.our-leaders-content {
    grid-column: col-start 7 / span 6;
    position: relative;
    padding: 80px 0;
}

.our-leaders-content h2{
    margin-bottom: 15px;
}

.our-leaders-content p {
    margin-bottom: 25px;
}

.our-leaders .white-bg {
    width: 35%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 1;
}
  
.our-leaders-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    grid-column: col-start / span 5;
    background: url("../img/our-leaders.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow);
    z-index: 3;
}







/*Media Queries*/


@media (max-width: 1100px){
    .our-leaders-img {
        width: 400px;
        height: 266px;
        grid-column: col-start / span 5;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .our-values-body .value-container .value {
        width: 50%;
        padding: 20px;
    }
    .our-leaders-content {
        grid-column: col-start 8 / span 5;
    }
  }




  @media (max-width: 992px){

    .hero-about {
        height: 200px;
        padding: 20px;
    }

    .our-story {
        padding: 75px 10% 90px 10%;
    } 



    .our-story-img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        grid-column: col-start / span 12;
        background: url("../img/our-story.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center 25%;
        position: relative;
        box-shadow: var(--shadow);
    }

    .our-story .blue-bg {
        display: none;
    }

    .our-story-content, .our-leaders-content {
        grid-column: col-start / span 12;
    }

    .our-values .heading-wrapper {
        margin-bottom: 50px;
    }

    .our-values .heading-wrapper h2 {
        text-align: center;
    }

    .our-values-body .value-container .value {
        width: 80%;
        padding: 20px;
    }

    .our-values-body .value-container {
        justify-content: center;
        text-align: center;
    }


    .our-leaders .white-bg {
        display: none;
    }

    .our-leaders-content {
        padding: 0;
    }

    .our-leaders-img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        grid-column: col-start / span 12;
        background: url("../img/our-leaders.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center 25%;
        position: relative;
        box-shadow: var(--shadow);
        margin-top: -30px;
        margin-bottom: 70px;
    }

    .our-values-body .value-container .value h3  {
        margin-bottom: 0;
    }
}







@media (max-width: 768px){
    .our-story{
        padding: 50px 10% 90px 10%;
    } 
    
    section.our-values {
        padding: 50px 5%;
    }

    

    .our-values-body .value-container .value {
        width: 100%;
        padding: 10px;
    }

    .our-values .heading-wrapper {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .our-leaders {
        padding: 80px 10%;
    }

    .our-leaders-img {
        margin-top: -25px;
        margin-bottom: 10px;
    }
}