
/*---------------------
-----------------------*/

/*the about page*/

.abMain{
    background: linear-gradient(#c3dbe7, #c3dbe7 15%,#d1a497, #d1a497 70%, #54231e59 98%);
}

.aboutHeroContent{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid green;
}

.aboutHeroContent .abT{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
}

.abT h1{
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.abT p{
    width: 30ch;
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.4rem);
    letter-spacing: .12rem;
    color: #343434;
}

.aboutHeroContent img{
    width: 60%;
    height: auto;
}

.aboutIntro{
    width: 100%;
}

@media only screen and (max-width: 800px) {
    .aboutHeroContent{
        align-items: center;
        flex-direction: column-reverse;
    }
}

.abRecipe,
.abCommunity,
.abPrioritize {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
}


.abRecipe img{
    padding-top: 3rem;
   width: 50%;
   height: auto;
}

.abCommunity img{
   width: 50%;
   height: auto;
}

.abPrioritize img{
   width: 50%;
   height: auto;
}

.abRecipe div,
.abCommunity div,
.abPrioritize div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.abRecipe div{
    padding-top: 3rem;
    border-left: 1px solid green;
}

.abCommunity div{
    border-right: 1px solid green;
}

.abCommunity div a{
    align-self: flex-end;
    margin-right: 5rem;
}

.abRecipe h2,
.abCommunity h2,
.abPrioritize h2{
    font-size: clamp(1.8rem, 2vw, 1.4rem);
    margin-bottom: .5rem;
    max-width: 40ch;
}

.abRecipe p,
.abCommunity p,
.abPrioritize p {
    font-size: clamp(.9rem, 1.2vw + 0.5rem, 1.2rem);
    max-width: 30ch;
    letter-spacing: .12rem;
}

.abCommunity p{
    padding-bottom: 3rem;
}

.abCommunity{
    flex-direction: row-reverse;
}

@media only screen and (max-width: 940px) {
    .abRecipe,
    .abCommunity,
    .abPrioritize {
        flex-direction: column;
        align-items: center;
    }

    .abRecipe div,
    .abCommunity div,
    .abPrioritize div {
        width: 80%;
    }

    .abRecipe{
        border-left: 1px solid green;
    }
    .abRecipe div{
        border-left: none;
    }
    .abCommunity{
        border-top: 1px solid green;
        border-right: 1px solid green;
    }
    .abCommunity div{
        border-right: none;
    }
    .abPrioritize{
        border-top: 1px solid green;
        border-left: 1px solid green;
        border-bottom: 1px solid green;
    }

}

.callOutArea{
    max-width: 100%;
    padding-bottom: 3rem;
}

.callOuts{
    padding-top: 3rem;
    display: flex;
    justify-content: space-evenly;
    position: relative;
}

.callOuts::after{
    content: "";
    width: 2px;
    height: 43%;
    background-color: green;
    position: absolute;
    top: 0;
    right: 0;
}


.designEl{
    width: 35px;
    height: 2px;
    background-color: green;
    position: absolute;
    right: 0;
    bottom: 57%;
}

.callOuts li{
    list-style-type: none;
    padding: 1rem 0;
}

.callOutArea .check,
.callOutArea .ex{
    width: 300px;
    height: 350px;
    padding: 1rem .75rem;
    border-radius: 5%;
}

.check {
    color: white;
    background-color: #0c431b;
    padding-bottom: 2rem;
}

.ex {
    color: white;
    background-color: #343434;
    padding-bottom: 2rem;
}

.team{
    width: 40%;
    height: 350px;
}

.team h2{
    font-size: clamp(2rem, 1.5vw, 1.5rem);
    margin-bottom: .5rem;
    max-width: 40ch;
}

.team p{
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 50ch;
    letter-spacing: .12rem;
}

@media only screen and (max-width: 1000px) {
    .callOuts{
        flex-wrap: wrap;
    }
    .team{
    width: 70%;
    }
}