/*    Mission css   */

/*-- (1) Hero Logo --*/
/*-------------------*/
.mission-hero-logo {
    margin-top: 150px;
}
.mission-hero-logo .hero-image {
    text-align: center;
}
.mission-hero-logo .hero-image img {
    height: 100px;
    width: auto;
}

.mission-hero-logo .heading{
    display: block;
    text-align: center;
    font-size: 48px;
    margin-top: 3px;
    font-family: var(--fontfamily-secondary);
    line-height: 1;
    color: gray;
}

/*-- (2) Mission Statement --*/
/*---------------------------*/

.mission-statement {
    margin-top: 84px;
}
.mission-wrapper {
    
}
.mission-outer {
    display: flex;
    flex-wrap: wrap;
}
.mission-left {
    background-color: snow;
    flex: 0 0 50%;
    padding: 40px 60px 40px 40px;
    box-sizing: border-box;
    display: flex; 
    justify-content: center; 
    align-items: flex-start; 
    flex-direction: column;
}
.mission-left .headings {
    font-size: 21px;
    margin-bottom: 6px;
    border-left: 9px solid #FF0072;
    padding-left: 12px;
    line-height: 1.3;
    float: left;
    font-family: var(--fontfamily-tertiary);
    color: #FF0072;
}
.mission-left .subheadings {
    font-family: var(--fontfamily-tertiary);
    font-size: 24px;
    color: rgb(46,46,46);
    line-height: 1.4;
}

.mission-left .textbody {
    line-height: 1.5;
}
.mission-right {
    background-color: snow;
    position: relative;
    overflow: hidden;
    flex: 0 0 50%;
    padding: 20px;
    box-sizing: border-box;
}
.mission-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/*-- (3) Protecting the planet Section --*/
/*---------------------------------------*/

.protect-planet-msg {
    margin-top: 120px;
    margin-bottom: 12px;
}
.protect-msg-wrapper {
    padding: 60px 12px 96px 12px;
    margin-left: 9px;
    margin-right: 9px;
    background: snow;
}
.protect-msg-icon {
    width: 100px;
    height: 100px;
}

.protect-msg-icon img {
  width: 100%;
  height: 100%;
}
.protect-msg-heading {
    font-size: 36px;
    margin-top: 12px;
    margin-bottom: 36px;
    font-family: var(--fontfamily-tertiary);
    text-align: center;
}
.protect-msg-body {
    width: 80%;
    text-align: left;
    color: rgb(17, 17, 17);
    font-family: var(--fontfamily-lato);
    font-weight: 400;
    line-height: 1.5;
}
.protect-outer {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    margin-top: 36px;
}
.protect-box {
    flex: 0 0 33.33%;
    padding: 10px;
}
.protect-box div {
    background-color: #add8e6;
    padding: 40px 40px;
    text-align: center;
    border-radius: 8px;
    font-family: var(--fontfamily-caveat-brush);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    border: 1px solid rgba(48, 55, 61, 0.2);
}


@media (max-width: 768px) {

    /*-- (1) Hero Logo --*/
    /*-------------------*/
    .mission-hero-logo {
        margin-top: 136px;
    }
    .mission-hero-logo .hero-image img {
        height: 70px;
        width: auto;
    }

    .mission-hero-logo .heading{
        font-size: 30px;
        margin-top: 3px;
        line-height: 1;
    }

    /*-- (2) Mission Statement --*/
    /*---------------------------*/
    .mission-outer {
        flex-direction: column-reverse;
    }

    .mission-left {
        flex: 0 0 100%;
        padding: 36px 20px 48px 20px;
    }
    .mission-left .headings {
        font-size: 21px;
        margin-bottom: 6px;
    }
    .mission-left .subheadings {
        font-size: 21px;
        line-height: 1.5;
    }    
    .mission-left .textbody {
        line-height: 1.6;
    }
    .mission-right {
        flex: 0 0 100%;
        padding: 0px;
    }



    /*-- (3) Protecting the planet Section --*/
    /*---------------------------------------*/
    
    .protect-planet-msg {
        margin-top: 120px;
        margin-bottom: 12px;
        background: rgba(223, 226, 233, 0.3);
    }
    .protect-msg-wrapper {
        padding: 48px 12px 96px 12px;
        margin-left: -9px;
        margin-right: -9px;
        background: none;
    }
    .protect-msg-body {
        width: 96%;
        font-weight: 400;
        margin-top: 12px;
        line-height: 1.6;
        font-style: normal;
        text-decoration: none;
    }
    .protect-msg-icon {
        width: 80px;
        height: 80px;
    }
    .protect-outer {
        padding: 0;
        margin-top: 36px;
    }
    .protect-box {
        flex: 0 0 100%;
    }
    .protect-box div {
        padding: 40px 12px;
        border-radius: 8px;
        font-size: 30px;
        font-weight: 400;
        min-height: 10px;
    }   

}