:root {
    --navbar-height: 100px;
    --purplegrey-overlay: rgba(241,235,247, 0.5);
    --purplegrey: #f1ebf7;
    --purple-overlay: rgba(89,42,94, 0.75);
    --purple: #592a5e;
    --yellow: #d3af37;
    --plum: #745274;
}

/*Hero*/
#about-hero {
    height: 600px;
    background: linear-gradient(180deg, rgba(241,235,247, 0.5)), linear-gradient(180deg, rgba(0,0,0,0) 75%, #f1ebf7 100%), url("../images/about/hero-img.jpeg");
    background-color: none;
    background-blend-mode: normal;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: var(--navbar-height);
    padding-bottom: 3rem;
}

@media(max-width: 768px)
{
    #about-hero {
        height: 450px;
    }
}


/*Company Profile*/
#company-profile{
    height: 400px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-wrap: wrap;
}

@media(max-width: 768px){
    #company-profile {
        min-height: 400px!important;
        height: auto;
    }
}

#company-profile div{
    height: 100%;
}

#company-profile div:first-child{
    width:60%;
}

    #company-profile div:last-child {
        width: 40%;
    }

#mission-vision-statement {
    background: linear-gradient(180deg, var(--purple-overlay)), url("../images/about/mission-and-vision.jpg");
    background-color: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media(max-width: 768px){
    #company-profile div {
        width: 100%!important;
    }
}

/*Core Values*/
#core-values {
    display: flex; 
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
}

#core-values > div{
    padding: 2rem;
    width: 30%;
    min-height: 200px;
    margin: 0px auto;
}

@media(max-width: 768px){
    #core-values > div {
        width: 48%;
    }
}

@media(max-width: 576px){
    #core-values > div {
        width: 80%;
    }
}

.value-number {
    border: solid 2px var(--purple);
    padding: 15px;
    border-radius: 100%;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 25px;
}

@media(max-width: 768px) {
    .value-number {
        height: 50px;
        width: 50px;
    }
}

#core-values div:nth-child(odd){
    border: solid 2px var(--plum);
}

#core-values div:nth-child(even){
    border: solid 2px var(--yellow);
}

/*Audience*/
#audience-section {
    background: linear-gradient(180deg, var(--purple-overlay)), url("../images/about/audience-bg.jpg");
    background-color: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 350px;
}

#audience-content{
    display: flex;
    justify-content: space-between;
    row-gap: 50px;
}

@media (max-width: 768px) {
    #audience-content{
        justify-content: center;
        flex-wrap: wrap;
    }
}

#audience-content div {
    width: 48%;
}

@media (max-width: 768px){
    #audience-content div {
        width: 80%;
    }
}

@media (max-width: 576x){
    #audience-content div {
        width: 100%;
    }
}