@charset "UTF-8";

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

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

/* Base Styles
/* html is set to 62.5% so that all the REM measurements
are based on 10px sizing. So 1.5rem = 15px.*/

html {
    font-size: 62.5%;
}

/* Color Themes
   Light - #F1F2F4 #7C9781
   Dark - #E5DAD0 #425641
   Custom black.. color: #1A1A1A;
*/

@font-face {
    font-family: 'ABeeZee';
    font-style: italic;
    font-weight: 400;
    /* Tell the browser to render the page right away with fallback fonts
       and then redraw the page once the fonts have loaded */
    font-display: swap;
    src: url(ABeeZee-Italic.woff2) format('woff2');
}

@font-face {
    font-family: 'ABeeZee';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(ABeeZee-Regular.woff2) format('woff2');
}

body {
    width: 100%;
    min-height: 100vh;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    Background-color: #F1F2F4;
    color: #425641;
}

main {
    font-size: 1.6rem;
    line-height: 1.5;
}

header {
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 500;
    text-align: center;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

p {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    text-wrap: pretty;
    overflow-wrap: break-word;
    padding: min(1rem, 8%);
}

footer {
    Background-color: #E5DAD0;
    color: #425641;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: min(1rem, 6%);
}

img {
    max-width: 100%;
    width: 1000px;
    /* border-radius: 10px; */
}

hr {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border-width: 0;
    border-top: 0;
}

/* Grid */

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    gap: 2rem;
    margin: auto;
}

@media only screen and (max-width: 900px) {
    .grid-wrapper {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.grid-wrapper > div {
    place-content: center;
    Background-color: white;
    color: black;
    border-radius: 10px;
    /* rounded corners */
    border-style: none;
    border-width: 0;
    /* border-color: #425641; */
    overflow: hidden;
    padding-bottom: min(2rem, 8%);
    /* box-shadow: 3px 3px 3px #425641; */
}

.grid-wrapper-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    gap: 2rem;
    margin: auto;
    place-content: center;
    /* Background-color: white; */
    color: #425641;
    /* border-radius: 10px; */
    border-style: none;
    border-width: 0;
    overflow: hidden;
    padding-bottom: min(2rem, 8%);
}

.img-grid-wrapper-cover {
    display: grid;
    grid-template-columns: 1fr, min(42rem, 100%), 1fr;
    max-width: 100%;
    max-height: 100%;
    gap: 0;
    margin: 0;
    object-fit: cover;
    position: relative;
    text-align: center;
    color: white;
}

.img-grid-wrapper-cover > * {
    grid-column: 2;
}

/* Use for images which need to be full width of screen  */
.fullbleed {
    width: 100%;
    grid-column: 1 / -1;
    /* padding-left and right in main break this! */
}

.img-grid-wrapper {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 400px;
    height: 300px;
    clip-path: inset(0 round 0px);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 300;
    overflow-wrap: break-word;
    text-wrap: balance;
}

h1 {
    font-size: 4.0rem;
    line-height: 1.5;
    letter-spacing: -.1rem;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

h3 {
    font-size: 3.0rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.35;
    letter-spacing: -.08rem;
}

h5 {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.custom-beige {
    Background-color: #E5DAD0;
    color: #7C9781;
}

.custom-black {
    color: #1A1A1A;
}

.custom-white {
    color: #fff;
}

.custom-lightgreen {
    color: #7C9781;
}

.custom-darkgreen {
    color: #425641;
}

.custom-lightskyblue {
    color: lightskyblue;
}

.custom-darkblue {
    color: darkblue;
}

.custom-limegreen {
    color: limegreen;
}

.bottom-right {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

/* Larger than phablet */
@media (min-width: 550px) {
    h1 {
        font-size: 5.0rem;
    }

    h2 {
        font-size: 4.2rem;
    }

    h3 {
        font-size: 3.6rem;
    }

    h4 {
        font-size: 3.0rem;
    }

    h5 {
        font-size: 2.4rem;
    }

    h6 {
        font-size: 1.5rem;
    }
}

/* Links */
a {
    color: #425641;
}

a:hover {
    color: #F1F2F4;
    background-color: #425641;
}

.linkbutton {
    background-color: #647e74;
    color: white;
    border: 1px solid #647e74;
    border-radius: 5px;
    padding: 2px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.6rem;
    margin: 1px 5px;
    cursor: pointer;
    transition-duration: 0.4s;
}

a.linkbutton:hover {
    background-color: #3c6959;
    color: white;
}

/* Lists */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 1rem;
}

.float-end {
    float: right !important;
}

/* Button */

.button {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.6rem;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
}

.buttongreen {
    background-color: white;
    color: black;
    border: 2px solid #04AA6D;
    border-radius: 10px;
}

.button:hover {
    background-color: #04AA6D;
    color: white;
}

/* Card */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 8rem;
    width: 20rem;
    color: #425641;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: black solid black;
    border-radius: 1rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card > .list-group:first-child {
    border-top-width: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 0;
    color: #7C9781
}

.card-title {
    margin-bottom: 0;
    color: #425641;
}

.card-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    color: #7C9781;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: 1rem;
}

.card-header {
    padding: 0;
    margin-bottom: 0;
    color: #7C9781;
    background-color: #fff;
    border-bottom: black solid black;
}

.card-header:first-child {
    border-radius: 0 0 0;
}

.card-footer {
    padding: 0;
    color: rgb(3, 56, 7);
    background-color: #fff;
    border-top: black solid black;
}

.card-footer:last-child {
    border-radius: 0 0 0;
}

.card-header-tabs {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-bottom: 0;
}

.card-header-tabs .nav-link.active {
    background-color: rgb(3, 56, 7);
    border-bottom-color: pink;
}

.card-header-pills {
    margin-right: calc(-0.5 * -0.5);
    margin-left: calc(-0.5 * -0.5);
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: 1rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.card-group > .card {
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

    .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}

/* Media Queries */

/* Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, to change the styles for buttons on small
devices, paste the mobile query code up in the buttons section and style it there.*/

/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}



/* From Bootstrap template... 
@media (min-width: 576px) {
    .body {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .body {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .body {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .body {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .body {
        max-width: 1320px;
    }
}
*/