﻿:root {
    --font-base: 'Cormorant Upright', serif;
    --font-alt: 'Open Sans', sans-serif;
    --color-white: #FFFFFF;
    --color-gray: #595959;
    --color-orange: #C45911;
    --color-brown: #833C0B;
    --color-dark-green: #0B6F0D;
    --color-light-green: #1D9C1A;
    --color-yellow: #F9BB0B;
    --color-off-white: #FDFCF5;
}


* {
    /*font-family: 'Lato', Roboto, sans-serif;*/
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

a {
    color: unset;
    text-decoration: none;
}

.section__padding {
    padding: 4rem 6rem;
}

.flex__center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app__bg {
    /*background: ;*/
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin: 0 0 20px;
}



.preview-blogitem {
    transition: ease .5s;
}

    .preview-blogitem h5 {
        font-weight: 700;
    }

    .preview-blogitem .preview-blogitem-img {
        width: 100%;
        height: 200px;
        background-position: center;
        background-size: cover;
        border-radius: 3px 3px 0 0;
        transition: ease .5s;
    }

.preview-blogitem-info {
    height: 100%;
    background: #833C0B;
    color: #fff;
    padding: 0.5rem;
}

    .preview-blogitem-info h6 {
        font-weight: 300;
    }

.preview-blogitem-learnmore {
    font-weight: 300;
    color: #F9BB0B;
    text-align: right;
}



.app__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app__footer-links {
    display: flex;
    justify-content: space-between
}

.app__footer-logo {
    margin-bottom: 4rem;
}

    .app__footer-logo img {
        height: 5rem;
    }

.app__footer-links_col {
    margin-bottom: 5rem;
}

    .app__footer-links_col h5 {
        margin-bottom: 50px;
    }

.app__footer-copy {
    text-align: center;
}


/*  navbar  */
.app__navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 6rem;
    background: var(--color-dark-green);
    color: #fff;
    border: 0;
    margin: 0;
}

.app__navbar-links {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.app__navbar-links_logo {
    margin-right: 2rem;
}

    .app__navbar-links_logo img {
        width: 60px;
    }

.app__navbar-links_container {
    display: flex;
    flex-direction: row;
}

    .app__navbar-links_container p {
        color: #fff;
        /*font-family: var(--font-family);*/
        font-weight: 500;
        font-size: 18px;
        line-height: 25px;
        text-transform: capitalize;
        margin: 0 1rem;
        cursor: pointer;
    }

        .app__navbar-links_container p a {
            color: #fff;
            text-decoration: none;
        }

.app__navbar-involved button {
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: var(--color-yellow);
    font-size: 18px;
    /*font-family: var(--font-family);*/
    line-height: 25px;
    font-weight: 500;
    border-radius: 5px;
    border: 0;
    outline: none;
    cursor: pointer;
}

.app__hero {
    background: var(--color-dark-green);
    color: #fff;
    border: 0;
    margin: 0;
}

.app__hero-grid {
    width: 90%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.app__hero-grid_image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.app__hero-grid_info h1 {
    /* font-family: Inter; */
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
    background: linear-gradient(90deg, #C45911 0%, #F9BB0B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app__hero-grid_info button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: var(--color-yellow);
    font-size: 18px;
    /*font-family: var(--font-family);*/
    line-height: 25px;
    font-weight: 500;
    border-radius: 5px;
    border: 0;
    outline: none;
    cursor: pointer;
}

.app__hero-grid_info-cta {
    display: flex;
    margin-top: 2.5rem;
    align-items: center;
}

    .app__hero-grid_info-cta img {
        width: 45px;
    }

.app__improve {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.app__improve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.app__improve-grid_title h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
    background: linear-gradient(90deg, #C45911 0%, #F9BB0B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.app__improve-grid_title a {
    color: #F9BB0B;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.app__improve-gradient {
    width: 67px;
    height: 6px;
    background: linear-gradient(90deg, #833C0B 0%, #F9BB0B 100%);
    margin-bottom: .75rem;
}

.app__improve-grid_infoitem {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.app__improve-grid_infoitem-head h3 {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.app__improve-grid_infoitem-body p {
    color: #595959;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.app__cta {
    border-radius: 15px;
    background: linear-gradient(90deg, #0B6F0D 0%, #1D9C1A 51%, #F9BB0B 100%);
    color: white;
    padding: 3rem;
}

.app__cta-grid {
    display: grid;
    grid-template-columns: 8fr 2fr;
}

.app__cta-btn {
    border: none;
    border-radius: 50px;
    background: #000;
    color: white;
    padding: 0.75rem 3rem;
}

.app__upcoming-events {
    width: 100%;
}

.app__upcoming-events_title {
    background: linear-gradient(90deg, #C45911 0%, #F9BB0B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    line-height: 110%;
    padding-bottom: 3rem;
}

.grid__two-column-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}




@media screen and (max-width: 1050px) {
    .app__hero-grid {
        grid-template-columns: 1fr;
    }

    .app__hero-grid_image img {
        height: 200px;
    }
}

@media screen and (max-width: 700px) {
    .app__navbar {
        padding: 2rem 4rem;
    }

    .app__improve-grid_infoitem {
        grid-template-columns: 1fr;
    }

    .app__hero-grid_info h1 {
        font-size: 48px;
    }

    .app__improve-grid_title h2 {
        font-size: 36px;
    }

    .app__cta-grid {
        grid-template-columns: 1fr;
    }

    .app__footer {
        justify-content: center;
        text-align: center;
    }

    .app__footer-links {
        flex-direction: column;
    }
}

@media screen and (max-width: 550px) {
    .app__navbar {
        padding: 2rem;
    }

    .app__improve-grid {
        grid-template-columns: 1fr;
    }

    .app__hero-grid {
        width: 100%;
    }

    .app__hero-grid_image img {
        width: 225px;
    }
}