/* TYPOGRAPHY */
.bold {
    font-weight: bold;
}

.italics {
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6,
.headline,
a {
    font-family: "Montserrat", sans-serif;
}

p,
li {
    font-family: "Lato", sans-serif;
}

/* GENERAL */
.center {
    text-align: center;
}

.div-center {
    margin: 0 auto;
    width: fit-content;
}

/* LOADING PAGE CSS */
/* CSS to style the loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Flash Error Messages */
.outer-flash {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.776);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.inner-flash {
    position: relative;
    padding: 30px;
    background-color: white;
    z-index: 1000;
    margin: auto;
    top: 7.5%;
    width: fit-content;
    height: fit-content;
    max-width: 45vw;
    overflow-y: auto;
    text-align: center;
}

.flash-title {
    font-size: 26px;
}

.flash-message {
    font-size: 19px;
}

.flash-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.flash-error-symbol {
    color: #DE1813;
    font-size: 34px !important;
}

.flash-success-symbol {
    color: rgb(8, 160, 8);
    font-size: 34px !important;
}

/* COMMON BUTTONS */
button {
    font-family: "Lato", sans-serif;
}

.cancel-button {
    background-color: #DE1813;
    color: white;
    padding: 7px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.submit-button {
    background-color: #3164F5;
    color: white;
    padding: 7px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.edit-button {
    background-color: #f0ab21;
    color: white;
    padding: 7px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.submit-button:hover,
.cancel-button:hover,
.edit-button:hover {
    opacity: .8;
}

.green-action-button {
    margin-top: 15px;
    padding: 7px;
    font-size: 18px;
    color: white;
    background-color: #3fc835;
    border: none;
    border-radius: 10px;
}

.green-action-button:hover {
    opacity: .8;
    cursor: pointer;
}

/* IMAGES */

img {
    display: block;
    width: 100%;
}

/* google translate */
#google_translate_element{
    /* margin-bottom: 9vh; */
    width: fit-content;
    margin: 0 10px 9vh auto;
}
.goog-te-gadget{
    color: white !important;
}
.goog-te-gadget a{
    color: white !important;
}
.goog-te-gadget img {
    display: unset !important;
    width: auto !important;
}

/* google maps */
/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
gmp-map {
    /* height: 100%; */
    height: 35vh;
    margin-top: 30px;
}

/* FORM ELEMENTS */
[type="checkbox"] {
    transform: scale(1.15);
    margin-bottom: 10px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 18.3px;
    cursor: pointer;
}

.checkbox-label:hover {
    opacity: .65;
}

[type="text"],
[type="password"],
[type="tel"],
[type="email"],
[type="url"] {
    font-size: 17px;
    font-family: "Lato", sans-serif;
}

[type="submit"] {
    font-family: "Lato", sans-serif;
}

label {
    font-size: 17px;
    line-height: 25px;
    font-family: "Lato", sans-serif;
}

input{
    font-family: "Lato", sans-serif;
    border-radius: 8px;
    padding: 3px;
}

/* NAV */
.cdl {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #221F20;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-logo {
    width: 200px;
}

.social-logo {
    height: 30px;
    width: 30px;
    margin-left: 20px;
}

.nav-spacing {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    color: azure;
    padding: 0px 11px;
}

.nav-link-ul {
    font-size: 18px;
    color: azure;
    padding: 0px 11px;
}

.nav-link:hover {
    text-decoration: underline;
}

.dropdown-list,
.dropdown-list-r {
    margin-top: 5px;
    position: absolute;
    z-index: 100;
    background: rgba(84, 83, 83, 0.95);
    line-height: 28px;
    transition: .2s;
}

.nav-li {
    list-style-type: none;
    padding: 4px;
}

.nav-li:hover {
    background: #221f20a9;
}

.helper-links {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 5px;
}

.fusion-logo {
    border-radius: 50%;
    height: 25px;
}

.fusion-tag {
    position: absolute;
    color: white;
    bottom: 0;
    right: 7.4vw;
    transition: .2s;
}

.email-us {
    position: relative;
}

.email-us-tag {
    position: absolute;
    color: white;
    bottom: 0;
    right: 6.1vw;
    transition: .2s;
}

.directons {
    position: relative;
}

.directions-tag {
    position: absolute;
    color: white;
    bottom: 0;
    right: 2vw;
    transition: .2s;
}

.mblD {
    display: none;
    visibility: hidden;
}

@media only screen and (max-width: 1200px) {
    .hidden-nav-spacer {
        display: block !important;
    }

    .mblD {
        display: block;
        visibility: visible;
        position: absolute;
        right: 25%;
    }

    .cdl {
        display: none;
        visibility: hidden;
    }

    .mbl a {
        position: relative;
        margin-left: 25%;
    }

    /* .mbl {
        visibility: visible;
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #221F20;
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 900;

        .hover {
            position: relative;
            right: 5vw;
        }

        .hover:hover {
            .hmicon {
                background-color: white;
            }
        }

        .hmicon {
            background-color: rgb(158, 158, 158);
            width: 35px;
            height: 5px;
            margin: 6px 0;
        }

    } */

    /* Un-nested version of .mbl and its children */
    .mbl {
        visibility: visible;
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #221F20;
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 900;
    }

    .mbl .hover {
        position: relative;
        right: 5vw;
    }

    .mbl .hover:hover .hmicon {
        background-color: white;
    }

    .mbl .hmicon {
        background-color: rgb(158, 158, 158);
        width: 35px;
        height: 5px;
        margin: 6px 0;
    }
}

/* .mbnav {
    .mbmenu {
        width: 100vw;
        height: 100vh;
        background-color: #221f20;
        color: white;
        position: absolute;
        z-index: 400;

        .mbsort {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            top: 20%;
            vertical-align: middle;
            margin-left: auto;
            margin-right: auto;

            a {
                font-size: 19.5px;
                margin-bottom: 5vh;
            }
        }
    }
} */

/* Un-nested version of .mbnav and its children */
.mbnav .mbmenu {
    width: 100vw;
    height: 100vh;
    background-color: #221f20;
    color: white;
    position: absolute;
    z-index: 400;
}

.mbnav .mbmenu .mbsort {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 20%;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
}

.mbnav .mbmenu .mbsort a {
    font-size: 19.5px;
    margin-bottom: 5vh;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* BODY */
.container {
    margin: 0 auto;
    width: 85%;
}

/* FOOTER */
footer {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: end;

    background-color: #221F20;
    color: white !important;
    padding: 10px;
    line-height: 12px;
}

.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-us {
    font-weight: 800;
}

.copyright {
    font-size: 13px;
    font-style: italic;
}

.back-to-top {
    color: white;
    position: absolute;
    top: 14px;
    left: 50%;
    border: solid 2px white;
    padding: 2px;
}

/* LISTS */
ul {
    padding: 0px;
}

/* LINKS */
a {
    text-decoration: none;
    color: black;
}

.email-link {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #00B1E4;
}

.email-link:hover {
    color: #0083a8;
    text-decoration: underline;
}

/* UNDERLINE CONVENTION */
.blue {
    border-bottom: 2px solid #1976d2;
}

.green {
    padding-bottom: 5px;
    border-bottom: 2px solid rgb(76, 175, 80);
}

.orange {
    border-bottom: 2px solid #F36C22;
}

.black {
    border-bottom: 2px solid black;
}

.vibrant-red {
    border-bottom: 2px solid rgb(210, 11, 11);
}

.vibrant-green {
    border-bottom: 2px solid rgb(30, 205, 7);
}

/* Title Styles */

/* Base underline style */
.base-title {
    border-bottom: 2px solid rgb(76, 175, 80);
    /* green underline */
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.2;
}

/* Main Title (default) */
.main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    /* scales between 2rem and 3rem */
    font-weight: 800;
    color: #000;
    /* black */
}

/* Main Title (alternative: bold green background with white text) */
.main-title.green-bg {
    background-color: rgb(76, 175, 80);
    color: #fff;
    padding: 10px 0px 10px 15px;
    /* padding for better visibility */
    border: none;
    /* remove underline */
    border-radius: 5px;
    display: inline-block;
    width: calc(100% - 15px);
}

.subtitle-blue-top-divider {
    font-size: clamp(1.85rem, 3vw, 2.0rem);
    font-weight: 700;
    color: #1976d2;
    border-top: 4px solid #1976d2;
    padding-top: 8px;
    margin-top: 15px;
}

.subtitle-blue-sidebar {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1976d2;
    border-left: 6px solid #1976d2;
    padding-left: 10px;
}

.subtitle-green-sidebar {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    font-weight: 700;
    color: rgb(76, 175, 80);
    border-left: 6px solid rgb(76, 175, 80);
    padding-left: 10px;
}

.subtitle-green-thick-half-box {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    font-weight: 700;
    color: rgb(76, 175, 80);
    border-left: 6px solid rgb(76, 175, 80);
    border-bottom: 6px solid rgb(76, 175, 80);
    padding-left: 10px;
    width: 93%;
    margin: 25px auto 10px auto;
}

.subtitle-green-medium-bottombar {
    font-size: clamp(1.15rem, 3vw, 1.8rem);
    font-weight: 700;
    color: rgb(76, 175, 80);
    border-bottom: 4px solid rgb(76, 175, 80);
    padding-left: 10px;
    width: 93%;
    margin: 25px auto 10px auto;
}

.subtitle-green-top-thin-half-box {
    font-size: clamp(1.10rem, 3vw, 1.5rem);
    font-weight: 500;
    border-left: 2px solid rgb(76, 175, 80);
    border-top: 2px solid rgb(76, 175, 80);
    padding: 10px;
    width: 100%;
    margin: 25px auto 10px auto;
}

/* Subtitle */
.subtitle {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #222;
}

/* Section Title (blue) */
.section-title-blue {
    font-size: clamp(1.55rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #1976d2;
}

/* Subsection Title (orange) */
.subsection-title {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #e65100;
}

/* Subtitle - Purple with left accent bar */
.subtitle-purple {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #673ab7;
    border-left: 6px solid #673ab7;
    padding-left: 10px;
}

/* Subtitle - Teal with soft underline */
.subtitle-teal {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #009688;
    border-bottom: 2px dashed #009688;
    /* dashed underline for a softer feel */
    padding-bottom: 5px;
}

/* Subtitle - Crimson with top bar */
.subtitle-crimson {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #e53935;
    border-top: 4px solid #e53935;
    padding-top: 8px;
}

/* Subtitle - Amber with background highlight */
.subtitle-amber {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #333;
    background-color: #ffc107;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.subscribe-newsletter-title{
    font-size: 38px;
    font-weight: 700;
    color: black;
    margin: 0;
    background: rgb(76, 175, 80);
    color: white !important;
    width: fit-content;
    padding: 8px;
    display: inline-block;
}

.subscribe-newsletter-title-wrapper{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8vh 0px;
}


/* GOOGLE ICON */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}

.unfilled-star {
    color: rgb(220, 187, 0);
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}

.filled-star {
    color: rgb(220, 187, 0);
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}

.uncompleted-checkbox {
    color: rgb(210, 11, 11);
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}

.completed-checkbox {
    color: rgb(30, 205, 7);
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}

.white-icon {
    color: white !important;
    display: inline-block;
    font-size: 55px !important;
    margin-bottom: 0 !important;
    background: rgb(76, 175, 80);
    padding: 3px;
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}
.white-icon:hover {
    color: rgba(255, 255, 255, 0.596) !important;
}

.newsletter-arrow{
    color: white !important;
    display: inline-block;
    font-size: 36px !important;
    margin-bottom: 0 !important;
    background: rgb(76, 175, 80);
    font-variation-settings:
        'FILL' 0,
        'wght' 800,
        'GRAD' 0,
        'opsz' 24
}


.symbol-arrow {
    font-size: 16px;
}


/* EMPLOYEE BASE */
.employee-welcome {
    color: white;
    font-size: 20px;
}

@media (max-width: 850px) {
    footer {
        flex-flow: column nowrap;
        align-items: start;
    }

    .footer-spacing {
        height: 6vh;
    }

    .copyright {
        line-height: 22px;
    }

    #google_translate_element{
        margin-top: 3vh;
        margin-bottom: 3vh;
        margin: 3vh 8px 3vh 8px;
    }
    
}

@media (max-width: 760px) {
.subscribe-newsletter-title{
    font-size: 2em;
    width: fit-content;
    padding: 6px;
}

.white-icon {
    font-size: 3.28em !important;
    padding: 2px;
}
}

@media (max-width: 650px) {
.subscribe-newsletter-title{
    font-size: 1.7em;
    width: fit-content;
    padding: 6px;
}

.white-icon {
    font-size: 3.13em !important;
    padding: 2px;
}
}

@media (max-width: 567px) {
.subscribe-newsletter-title{
    font-size: 1.7em;
    width: fit-content;
    padding: 6px;
}

.white-icon {
    font-size: 3.15em !important;
    padding: .35em 2px;
}
}

/* CONFIRMATION POPUP */
.confirmation-outer-modal {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.776);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.confirmation-inner-modal {
    position: relative;
    text-align: center;
    padding: 30px;
    background-color: white;
    z-index: 1000;
    margin: auto;
    top: 37.5%;
    width: 450px;
    height: 175px;
    overflow-y: auto;
}

.confirmation-buttons {
    margin-top: 35px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 10px;
}

/* Form Modal Style */
.form-outer-modal {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.776);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.form-inner-modal {
    position: relative;
    padding: 30px;
    background-color: white;
    z-index: 1000;
    margin: auto;
    top: 7.5%;
    width: fit-content;
    height: fit-content;
    max-height: 80%;
    overflow-y: auto;
}

.view-form-modal {
    color: #31c526;
    font-size: 30px;
}

.view-form-modal:hover {
    cursor: pointer;
    opacity: .60;
}

/* Newsletter Form */
.newsletter-form{
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    /* margin-top: 15px; */
}

.add-newsletter-email {
    display: flex;
    flex-flow: row nowrap;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

/* CYCLE PHOTOS */

#slideshow-body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow-medium {
    position: relative;
    width: 40vw;
    height: 60vh;
    overflow: hidden;
}

#slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

#slideshow img.active {
    transform: translateX(0);
    z-index: 1;
}

#slideshow img.prev {
    transform: translateX(0);
    z-index: 0;
}

#slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 1.5s ease;
    z-index: 0;
    opacity: 0;
}

#slideshow img.active {
    z-index: 2;
    opacity: 1;
}

#slideshow img.prev {
    z-index: 1;
    opacity: 1;
}

.sticky-slideshow {
    margin-top: 8vh !important;
    position: sticky;
    top: 28vh;
    z-index: 10;
}

.slideshow-center {
    margin: auto;
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
}


/* Generic Spacings */
.mt-none {
    margin-top: 0 !important;
}

.mt-5vh {
    margin-top: 5vh !important;
}

.mt-8vh {
    margin-top: 8vh !important;
}

.mt-10vh {
    margin-top: 10vh !important;
}

.mt-15vh {
    margin-top: 15vh !important;
}

.mt-20vh {
    margin-top: 20vh !important;
}

.mb-none {
    margin-bottom: 0 !important;
}

.mb-5vh {
    margin-bottom: 5vh !important;
}

.mb-10vh {
    margin-bottom: 10vh !important;
}

.mb-15vh {
    margin-bottom: 15vh !important;
}

.mb-20vh {
    margin-bottom: 20vh !important;
}