/* Site settings */


/* font-family: 'Montserrat', sans-serif;
font-family: 'Ubuntu', sans-serif; */

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    width: 100%;
    margin: 0;
    border: rgb(14, 0, 0) 1px solid;
}

.font-col-yell-100 {
    color: #faf5d1;
}

.font-col-yell-300 {
    color: #F5E259;
}

.font-col-yell-500 {
    color: #f7e13c;
}

.font-col-yell-700 {
    color: #f7df2e;
}

.font-col-yell-900 {
    color: #fde006;
}

.font-col-blue-100 {
    color: #e0f1fa;
}

.font-col-blue-300 {
    color: #2497d1;
}

.font-col-blue-500 {
    color: #047fbd;
}

.font-col-blue-700 {
    color: #327796;
}

.font-col-blue-900 {
    color: #01496d;
}

.font-col-grey-100 {
    color: #e2e4e5;
}

.font-col-grey-300 {
    color: #b3b4b4;
}

.font-col-grey-500 {
    color: #6c7980;
}

.font-col-grey-700 {
    color: #383e41;
}

.font-col-grey-900 {
    color: #191b1b;
}

.back-col-yell-100 {
    background-color: #faf5d1;
}

.back-col-yell-300 {
    background-color: #F5E259;
}

.back-col-yell-500 {
    background-color: #f7e13c;
}

.back-col-yell-700 {
    background-color: #f7df2e;
}

.back-col-yell-900 {
    background-color: #fde006;
}

.back-col-blue-100 {
    background-color: #e0f1fa;
}

.back-col-blue-300 {
    background-color: #2497d1;
}

.back-col-blue-500 {
    background-color: #047fbd;
}

.back-col-blue-700 {
    background-color: #327796;
}

.back-col-blue-900 {
    background-color: #01496d;
}

.back-col-grey-100 {
    background-color: #e2e4e5;
}

.back-col-grey-300 {
    background-color: #b3b4b4;
}

.back-col-grey-500 {
    background-color: #6c7980;
}

.back-col-grey-700 {
    background-color: #383e41;
}

.back-col-grey-900 {
    background-color: #191b1b;
}

.start {
    background-color: rgb(27, 80, 133);
    background-image: url(./assets/images/Hall-no-tree.JPEG);
    background-position: center;
    margin: 0 auto 4rem auto;
    width: 100%;
    max-width: 1100px;
    background-size: cover;
    min-height: 55vh;
}

h1,
h3,
h5 {
    font-family: 'Ubuntu', sans-serif;
    line-height: 3rem;
}

h2,
h4,
h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 2rem;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px #3B4050;
    text-align: center;
    padding-top: 5rem;
    color: #ffffff;
    margin-top: 0;
}

h2 {
    font-size: 1.4rem;
    text-shadow: 2px 2px #3B4050;
    text-align: center;
    color: #ffffff;
}

h3 {
    font-size: 1.6rem;
    text-align: center;
    line-height: .8;
}

h4 {
    font-size: 1.2rem;
    text-align: center;
}

h5 {
    font-size: 1.4rem;
    text-align: center;
    justify-self: center;
}

h6 {
    font-size: 1.1rem;
    text-align: center;
    line-height: .8;
    justify-self: center;
}

.line-ht-1 {
    line-height: 1rem;
    margin: 1rem;
}

.line-ht-2 {
    line-height: 2rem;
    margin: 1rem;
}

.line-ht-3 {
    line-height: 3rem;
    margin: 1rem;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0;
}

.row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav {
    display: none;
    height: 0;
    position: absolute;
}

.nav--visible {
    padding-top: 4rem;
    display: block;
    height: auto;
    position: relative;
}

.nav-list {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 2rem;
}

.nav-toggle {
    border: 0;
    width: 3rem;
    height: 3rem;
    padding: 0rem;
    border-radius: 50%;
    background: #3B4050;
    color: white;
    transition: opacity 250ms ease;
    position: absolute;
    left: 0;
    top: 1.2vw;
    z-index: 10re;
}

.nav-toggle:focus,
.nav-toggle:hover {
    opacity: .75;
}

.hamburg-cont {
    height: auto;
}

.hamburger {
    width: 50%;
    top: 1vw;
    z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    margin: 0 auto;
    height: 3px;
    background: white;
    z-index: 10;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 100%;
}

.hamburger::before {
    transform: translateY(-6px);
}

.hamburger::after {
    transform: translateY(3px);
}

.nav-item:hover,
.nav-item:focus,
.nav-link:hover,
.nav-link:focus,
.foot-img:hover,
.foot-img:focus {
    opacity: .7;
    color: #b2c4d4;
}

.welcome {
    background-color: #e0f1fa;
}

.welcome-col-1 {
    padding: 0 1rem;
    max-width: 800px;
    align-self: center;
    justify-self: center;
}

.video {
    display: flex;
    flex-direction: column;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.iframe {
    width: 320px;
    height: 180px;
    align-self: center;
    margin: 2rem auto;
}

.giving {
    padding: 4rem auto;
    margin: 4rem auto;
    color: #fff;
    line-height: 1.5rem;
}

.centring {
    justify-self: center;
    align-items: center;
    justify-items: center;
    justify-content: space-around;
    padding: 0;
}

.centring--text {
    justify-self: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    justify-content: space-around;
    padding: 0;
}

.btn-funds-0 {
    text-decoration: none;
    align-self: center;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem;
    max-width: 300px;
}

.btn-funds-1 {
    text-decoration: none;
    align-self: center;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem;
    background-color: #b2c4d4;
    border: 1px solid black;
    ;
    border-radius: 30px;
    max-width: 300px;
}


/*!Colors */


/* ?colors */


/* todo colors */


/*  */


/* ^colors */

.btn-funds-2 {
    text-decoration: none;
    align-self: center;
    padding: 1rem;
    font-size: 1.3rem;
    text-align: center;
    margin: 2rem;
    background-color: #fff;
    border: 1px solid black;
    ;
    border-radius: 30px;
    max-width: 300px;
}

.btn-funds-3 {
    text-decoration: none;
    align-self: center;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    margin: 1rem;
    background-color: #e0f1fa;
    border: 1px solid black;
    ;
    border-radius: 30px;
    flex-grow: 0;
    /* min-width: 20vw; */
    max-width: 300px;
}

.spacing--up-down {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about {
    line-height: 1.5rem;
}

.about-col {
    max-width: 900px;
}

.btn-about-0 {
    text-decoration: none;
    align-self: center;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    margin: 1rem;
    background-color: #fff;
    border-radius: 15rem;
    max-width: 40%;
}

.btn-about-1 {
    text-decoration: none;
    align-self: center;
    font-size: 1rem;
    text-align: center;
    margin: 1rem;
    background-color: #fff;
    border-radius: 15rem;
    max-width: 60%;
}

.story {
    background-color: #fff;
    color: #01496d;
    padding: 1rem 1rem;
    line-height: 1.5rem;
}

.story-col-1 {
    margin: .5rem 0;
    background-color: #327796;
    color: #fff;
    padding: 1rem 1rem;
    line-height: 1.5rem;
    max-width: 500px;
}

.marg-none {
    margin-left: 0;
    padding-left: 0;
}

.facts {
    padding: 2rem 0;
}

.facts-col-1 {
    margin: 1rem;
    padding: 1rem;
    line-height: 1.5rem;
    max-width: 400px;
    align-self: flex-start;
}

.farr {
    background-color: #01496d;
    color: #fff;
    padding: 2rem 0;
}

.quote {
    background-color: #383e41;
    background-image: url(./assets/images/launch2.jpg);
    background-position: center;
    background-size: cover;
    filter: grayscale(100%);
    padding: 3rem;
    padding-bottom: 1rem;
}


/* .quote-img {} */

.quote-col {
    font-weight: 900;
    line-height: 3rem;
    color: #fff;
    padding: 4rem 2rem;
}

footer {
    background-color: #327796;
    color: #fff;
    max-width: 100%;
    align-items: flex-start;
}

.nav--footer {
    visibility: visible;
    height: auto;
    position: relative;
}

.foot-col-1 {
    margin: 2rem;
    padding: 1rem;
    max-width: 60%;
    min-width: 40%;
}

.foot-col-2 {
    margin: 2rem;
    padding: 1rem;
    max-width: 60%;
    min-width: 30%;
}

.foot-title-1 {
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 2 4 2rem;
}

.foot-head {
    list-style: none;
    padding: 0;
    text-decoration: none;
}

.foot-head-2 {
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: -0.5rem;
}

.foot-img {
    padding: 1rem;
    max-width: 5rem;
}

.nav-link-low {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 2rem;
}

.nav-list-low {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.iframe-foot {
    width: 320px;
    height: 180px;
    align-self: center;
    justify-self: center;
}


/* Media Queries Start Here */

@media (min-width: 400px) {
    .start {
        margin: 0 auto 4rem auto;
        min-height: 45vh;
    }
    body {
        font-size: 15px;
    }
}

@media (min-width: 600px) {
    body {
        font-size: 16px;
    }
    .row {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .start {
        margin: 0 auto 4rem auto;
        min-height: 35vh;
    }
    .welcome-col-1 {
        align-self: flex-start;
    }
    .video {
        display: flex;
        flex-direction: column;
    }
    .funding-boxes {
        flex-shrink: 1;
        min-width: 20%;
        max-width: 240px;
        
    }
    .btn-funds-3 {
        font-size: 16px;
        max-width: 240px;
    }
    .iframe {
        width: 560px;
        height: 315px;
    }
    .foot-col-1 {
        margin: 2rem;
        padding: 1rem;
        max-width: 40%;
        min-width: 40%;
        align-self: flex-start;
    }
    .foot-col-2 {
        margin: 0 0rem 2rem 0rem;
        padding: 2rem 6rem 2rem 8rem;
        max-width: 40%;
        min-width: 40%;
        align-self: flex-start;
    }
}

@media screen and ( min-width: 900px) {
    html {
        font-size: 19px;
    }
    body {
        font-size: 19px;
    }
    .flex-col {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .start {
        margin: 0 auto 2rem auto;
        min-height: 90vh;
    }
    .container {
        width: 90%;
    }
    .nav-toggle {
        display: none;
    }
    .nav {
        display: flex;
        height: auto;
        position: relative;
        font-size: 21px;
        margin-top: 1rem;
        align-self: center;
    }
    .nav-list {
        gap: 2rem;
        flex-direction: row;
        align-self: center;
        margin: 10rem 0 0rem 0;
    }
    .welcome {
        margin-top: 0;
        padding-top: 0;
    }
    .iframe {
        width: 896px;
        height: 504px;
    }
    /* .about-cols {} */
    .story-col-1 {
        padding: 1rem;
        line-height: 1.5rem;
        max-width: 400px;
        font-size: 16px;
        margin: 1rem;
    }
    .foot-col-1 {
        margin: 2rem;
        padding: 1rem;
      width: 30%;
        align-self: flex-start;
    }
    .foot-col-2 {
        margin: 0 0rem 2rem 4rem;
        padding: 2rem 0rem 2rem 5rem;
       width: 25%;
        align-self: flex-end;
    }
}