.header{
    width: 100%;
    height: 445px;    
    background-image: url('../images/IMG_8288.jpg');
    display: grid;
    place-items: center;
    position: relative;
}
.background{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; 
    background-color: rgba(255, 255, 255, 0.405);
}

.header h1{font-size: 5rem;color: white;}
.mission-section {
    padding: 3% 0;
}

.mission-section .flex {
    display: flex;
    gap: 5%;
    flex-wrap: wrap;
    padding: 4% 0;
}

.mission-section .flex .box {
    flex: 1;
} 


.mission-section .flex:nth-child(1) .img {
    width: 100%;
    min-height: 310px; 
}

.mission-section .flex:nth-child(1) .img img{
    width: 100%;
    height: 100%;
}

.mission-section h2 {
    font-size: 3rem; 
    color: #895D2C;
    line-height: 45px;
    margin:1%  0; 
}
 
 

.mission-section .flex  p {
    font-size: 1.1rem;
    line-height: 30px;
}

.mission-section button {
    padding: 3.5% 5%;
    border: 0;
    font-size: 1rem;
    border-radius: 100px;
    background-color: #C9AF5A;
    color: white; 
    display: block;
    margin: 7% auto;
    cursor: pointer;
}  


.below-cta{
    padding: 3% 0;
    background-color: #EFE9D3;
}

.below-cta .flex{
    width: 100%;
    display: flex;
    gap: 4.75%;
    flex-wrap: wrap;
    margin: 4% 0;
}

.below-cta .flex .box{
    flex: 1;
    min-height:400px;
    padding: 4%;
    background-color: white;
    border-radius: 20px;
    text-align: center;
}

.below-cta .flex .box:first-child{
    display: grid;
    align-items: center;
}

.below-cta .flex .box h2{
    margin: 0;
    font-size: 2rem;
    color: #895D2C;
}

.below-cta .flex .box p{
    font-size: 1.2rem;
    line-height: 30px;
}

.below-cta .flex .box .img{
    width: 100%;
    height: 300px; 
    border-radius: 10px;
    overflow: hidden;
} 

.below-cta .flex .box .img img{
    width: 100%;
    height: 100%;
}

.below-cta .flex .box button {
    padding: 3.5% 5%;
    border: 0;
    font-size: 1rem;
    border-radius: 100px;
    background-color: #C9AF5A;
    color: white; 
    display: block;
    margin: 4% auto 3% auto;
    cursor: pointer;
}

.initiatives {
    padding: 4% 3% 5% 3%;
    background-color: #FFF3E3;
    text-align: center;
}

.initiatives h2 {
    font-size: 3.25rem;
    margin: 0 0 2% 0;
    color: #895D2C;
}

.initiatives p {
    width: 78.5%;
    line-height: 30px;
    margin: auto;
    font-size: 1.1rem;
}

.section-below-header {
    height: auto;
    padding: 18px 0 25px 0;
    background-color: #FFF3E3;
}

.section-below-header>.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.section-below-header .container .items {  
    font-weight: 700;
    font-size: 20px;
}

.section-below-header .container .items .img {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    display: grid;
    place-items: center;
    margin: auto; 
    background-color: #895D2C;
}

.section-below-header .container .items .img img{
    width: 70%;
    height: 70%;
}

@media (max-width:600px) {

    .mission-section .flex .box {
        flex: 100%;
        margin: 2% 0;
    } 

    .below-cta .flex .box{
        flex: 100%;
        margin: 2% 0;
    }


}

