@charset "UTF-8";
/**********************************
* Author: Eric and Molly Shewchuk *
* Copyright: Banyan Media, 2024   *
***********************************/

:root {
    --primary: #045255;
    --primary-lt: #08717a;
    --lt-gray: #f1f1f1;
    --white: #fdfcfc;
    --brown: #362516;
    --copper: #a7551a;
    
    --green: rgb(10, 105, 68);
    --error: rgb(155, 0, 26);

    --max-width: 90vw;
}
@font-face {
    font-family: "cursive";
    src: url(/assets/fonts/Satisfy.ttf);
    font-display: swap;
}
@font-face {
    font-family: "paragraph";
    src: url(/assets/fonts/Karla.ttf);
    font-display: swap;
}
body::-webkit-scrollbar {
    width: 1rem;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--brown);
    border-radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.8rem;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "paragraph", sans-serif;
    background-color: var(--lt-gray);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "cursive", sans-serif;
    line-height: normal;
}
h1 {
    font-weight: 300;
}
h2 {
    font-weight: 300;
}
h3 {
    font-size: 1.6rem;
}
h4 {
    font-size: 1.4rem;
}
h5 {
    font-size: 1.2rem;
    font-family: 'paragraph', sans-serif;
}

a {
    color: inherit;
}
p {
    max-width: 900px;
}
ul {
    margin-left: 10%;
}
.success_msg {
    color: var(--green) !important;
}
.error_msg {
    color: var(--error) !important;
}

.row_force {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.col {
    display: flex;
    flex-flow: column nowrap;
}
.dk_bg {
    background-color: var(--primary) !important;
    background-image: none !important;
}
.primary_txt {
    color: var(--primary) !important;
}


.btn {
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    padding: 1em 2em;
    font-weight: bold;
    display: block;
    margin: 1em 0;
    width: fit-content;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
}
.btn_icon {
    background-color: transparent;
    color: var(--primary);
    font-size: 1.4rem;
    padding: 1em;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn_white {
    background-color: var(--white);
    color: var(--primary);
}
.btn_white:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-lt);
}
.btn_primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn_primary:hover {
    background-color: var(--primary-lt);
}
.btn_copper {
    background-color: var(--copper);
    color: var(--white);
}
.btn_copper:hover {
    background-color: #bf682b;
}
.btn_text {
    color: var(--copper);
    text-decoration: underline;
}
.btn_text:hover {
    color: #c2743b;
}


.cards {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
    margin: 1em 0;
}
.card {
    width: 20em;
    height: 28em;
    border-radius: 30px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    align-items: stretch;
    background-color: var(--white);
    position: relative;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}
.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px;
    border-bottom-right-radius: 0;
}
.card .content {
    padding: 1em;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
.card .name {
    font-weight: 600;
    font-size: 1.2rem;
}
.card .learn_more {
    color: var(--primary);
    text-decoration: underline;
}
.card .btn {
    align-self: flex-end;
    position: absolute;
    bottom: 0;
    right: 0.5em;
}
.card:hover {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
    transform: scale(101%);
}

.horizontal_card {
    max-width: 1000px;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-items: stretch;
    background-color: var(--white);
    position: relative;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease-in-out;
}
.horizontal_card img {
    width: 20%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.horizontal_card .content {
    padding: 2em;
}

.main_form {
    display: flex;
    flex-flow: column nowrap;
    gap: 1em;
}
.form_label {
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
}
.form_label label {
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    align-items: stretch;
}
.form_label label input, .form_label input, .form_label textarea {
    font-family: 'paragraph', sans-serif;
    padding: 0.6em;
    font-size: 20px;
}
.controls {
    margin-top: 2em;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.full_width {
    width: 100%;
    max-width: 900px;
}

@media only screen and (max-width: 1100px) {
    .horizontal_card {
        flex-flow: column nowrap;
        justify-content: stretch;
        align-items: stretch;
    }

    .horizontal_card img {
        width: 100%;
        border-top-left-radius: 30px;
        border-bottom-left-radius: unset;
        border-top-right-radius: 30px;
    }
}