/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

table {
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

caption,
th {
    text-align: left;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

/* GENERAL CSS
 * --------------------------------------- */

:root {
    --icon-group-size: 10em;
    --site-width: 1300px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

/** animated **/

.animated {
    opacity: 0;
}

.animatedParent {
    overflow: hidden;
}

@media (max-width: 590px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        opacity: 1;
    }
}

/** no break **/

.nobr,
.nobr-small {
    white-space: nowrap;
}

/* general */

@font-face {
    font-family: 'Pier';
    src: url('../fonts/pier-regular.otf') format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pier';
    src: url('../fonts/pier-bold.otf') format("opentype");
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Pier', Arial, sans-serif;
    color: #1F685F;
    text-align: center;
    letter-spacing: 0em;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.font-title{
    font-family: 'argent-cf',serif;
}

h1,
h2 {
    font-weight: 700;
}

/* colors */

.text-green {
    color: #1F685F;
}
.text-turquoise {
    color: #62C4B7;
}

.bg-green {
    background-color: #1F685F;
}
.bg-turquoise{
    background-color: #C3E8E3;
}
/** header **/
header.container-fluid {
    padding: 0;
    transition: all 0.5s ease;
    z-index: 14;
}

header.fixed {
    background: #FFF;
    top: 0;
    position: fixed;
}

header .menu-container {
    min-height: 90px;
}

header.fixed .menu-container {
    min-height: 80px;
}

header .logo-container img {
    max-width: 300px;
    max-height: 100%;
}

header .logo-container img.small {
    max-width: 200px;
}

header .logo-container a {
    display: inline-block;
    padding: 1%;
    height: 100%;
}

header .nav {
    font-weight: 700;
    font-size: 1.5rem;
}

header .nav a:hover{
    color: #1F685F;
}

#header-content>div {
    max-height: 100%;
}

/** top nav **/
.top-navigation {
    z-index: 15;
    padding-bottom: 10px;
    min-height: 70px;
}

header.fixed .top-navigation {
    min-height: 60px;
}

.top-navigation .nav-pills .show>.nav-link {
    background-color: inherit;
}

/* site width */
.site-width {
    max-width: var(--site-width) !important;
    margin: 0 auto;
}



/**** banner ***/

.full-banner {
    /* firefox */
    background-color: #F0F8F7;
    z-index: 1;
    min-height: 600px;
    height: 60vh;
}

.full-banner > .container{
    background-image: url("../images/backgroundlogo.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}
.full-banner .header-row{
    position: relative;
    z-index: 1;
}
.full-banner .header-row h1{
    background-color: #1f6860c7;
    border-radius: 25px;
}
.full-banner .header-row::before{
    content: '';
    width: 50vw;
    height: 50vh;
    z-index: -1;
    position: absolute;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    background-image: url("../images/Raisingthestandardpicture.png");
}

h1 {
    font-size: 4rem;
    line-height: 4.1rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 2.5rem;
}
.satin-icon img{
    max-width: 100px;
}
/* buttons */
.btn {
    padding: 10px 30px;
    border-radius: 15px;
}

.btn-primary {
    background-color: #1F685F;
    border-color: #1F685F;
    color: white;
    border-radius: 10px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #62C4B7 !important;
    border-color: #62C4B7 !important;
}

/** forms ***/
.form-control {
    background-color: white;
    border: none;
    color: #1F685F;
    box-sizing: border-box;
    font-size: 1.1rem;
    height: 50px;
    padding: 10px 10px;
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.form-control:focus {
    outline: none;
    color: #1F685F;
}

.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #62C4B7;
}

.form-control:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: #62C4B7;
}

textarea.input {
    border: none;
    resize: none;
}

textarea.input:focus {
    color: #1F685F;
}

form .button-div {
    margin-top: 30px;
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    background: transparent;
    box-shadow: none;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #FFF;
    background-image: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    background: transparent;
    box-shadow: none;
    border-color: #FFF;
}

.input-wrapper {
    margin: 10px 0;
}

.text-underline {
    text-decoration: underline;
}

.copyright {
    font-size: 0.8rem;
}

#foundation{
    background-image: url("../images/foundationbackground.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

}
.border-green{
    border: 2px solid #62C4B7;
    border-radius: 25px;
}
#our-values{
    background-image: url("../images/pattern.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
#contact-us-section{
    position: relative;
}
footer{
    font-size: 1rem;
}
@media (max-width: 1200px) {

    .img-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    #about-us img{
        max-width: 300px;
    }
    .full-banner {
        height: 40vh;
        min-height: 400px;
    }
    #our-values h2{
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    #header-content>div {
        height: auto;
    }

    h1{        
        font-size: 2rem;
        line-height: 2.5rem;
    }
    h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .full-banner{
        height: 40vh;
        min-height: 300px;
    }
    .full-banner .header-row h1{
        background-color: transparent;
        color:#1F685F;
    }
    .full-banner .header-row::before{
        background-position: center;
        right: unset;
        top: 20px;
        top: 15px;
        width: 350px;
        height: 350px;
    }
    #our-values .icon-container + h3{
        max-width: 16rem;
        margin: auto;
    }
}

@media (max-width: 575px) {
    h1{        
        font-size: 1.9rem;
        line-height: 2.4rem;
    }

    h2 {
        font-size: 1.7rem;
        line-height: 2.2rem;
    }

    h3, .h3, h3.h2 {
        font-size: 1.3rem;
        line-height: 1.7rem;
    }
    h4, .h4 {
        font-size: 1.3rem;
        line-height: 1.7rem;
    }

    header .logo-container img.small {
        height: 40px;
        width: auto;
    }

    header .menu-container,
    header.fixed .menu-container {
        min-height: 60px;
    }

    #header-content>#top-navigation-right {
        min-height: auto !important;
    }

    body {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .nobr {
        white-space: normal;
    }

    footer img{
        max-height: 70px;
        width: auto;
    }
    .full-banner .header-row::before{
        width: 320px;
        height: 300px;
        top: 30px;
    }
    .full-banner .header-row h1{
        padding-top: 5% !important;
        font-weight: 700 !important;
    }
    #our-values h2{
        font-size: 2.5rem;
    }
}