﻿:root {
    /* *=================
       * Typography
       *================ */
    --body-font: "myriad pro", arial, sans-serif;
    --display-size: 64px;
    --title-size: 46px;
    --subtitle-size: 24px;
    --H3: 36px;
    --H4: 24px;
    --card-title-size: 26px;
    --p-size: 20px;
    --p-smaller: 18px;
    --text-small: 14px;
    --bold: 700;
    --regular: 300;
    /* *=================
       * Colors
       *================ */
    --dark-black: #03111D;
    --navyUltraDark: #0D1B27;
    --darkNavy: #172531;
    --navy: #2C4657;
    --navyLight: #4D6473;
    --navyUltraLight: #617887;
    --orangeMain: #F39423;
    --orangeDarker: #E09145;
    --orangeBrown: #BE884A;
    --orangeGold: #EBBF74;
    --goldHighlight: #FFD388;
    --white: #FFFFFF;
    --white-alt: #FAFAFA;
    --greysh: #E6E6E6;
    --textLight: #69696B;
    --textUltraLight: #919193;
    --textMedium: #4B4B4D;
    --textDark: #292C35;
    --main-gradient: linear-gradient(270deg, #EBBF74 0%, #F39423 100%);
    --error-color: #C46A6A;
    /* *=================
       * Shadows
       *================ */
    --drop-orange: 0 2px 4px rgba(61, 37, 1, 0.4);
    --card-shadow: 0px 6.6153px 35.8288px rgba(65, 134, 208, 0.0390953), 0px 2.95px 14.4909px rgba(65, 134, 208, 0.06), 0px 0.897878px 5.02044px rgba(40, 44, 38, 0.0809);
    --nav-shadow: 1px 4px 8px -4px rgba(23,37, 49, 0.42);
    --low-shadow: 0px 4px 16px -4px rgba(23, 24, 29, .42);
    --high-shadow: 0 12px 32px -2px rgba(23, 24, 29, .48);
    /* *=================
       * Measures
       *================ */
    --desktop: 1200px;
    --laptop: 992px;
    --tablet-pro: 768px;
    --mobile: 576px;
    --max-width: 65%;
    --nav-height: 108px;
    --picture-padding: 16px;
    /* *=================
       * Animations Variables
       *================ */
    --hasty: cubic-bezier(0, 0.37, 0.45, 1.01);
    --gentle: cubic-bezier(.08,1.23,.63,1.01);
    --quick: cubic-bezier(.01,.99,.53,.99);
}

@media screen and (max-width: 1640px) {
    :root {
        --max-width: 80%;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --max-width: 90%;
        --display-size: 52px;
        --title-size: 42px;
        --subtitle-size: 28px;
        --p-size: 18px;
    }
}

@media screen and (max-width: 540px) {
    :root {
        --max-width: 100%;
        --nav-height: 80px;
        --p-size: 16px;
        --p-smaller: 14px;
        --subtitle-size: 18px;
        --display-size: 32px;
        --H3: 28px;
        --H4: 20px;
    }
}

/* *=================
       * Animations
   *================ */
.entrance {
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border-top-color: var(--main-color);
    }

    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border-top-color: var(--main-light);
    }

    100% {
        -webkit-transform: rotate(710deg);
        transform: rotate(710deg);
        border-top-color: var(--main-color);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border-top-color: var(--main-color);
    }

    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border-top-color: var(--main-light);
    }

    100% {
        -webkit-transform: rotate(710deg);
        transform: rotate(710deg);
        border-top-color: var(--main-color);
    }
}

@-webkit-keyframes gentle {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes gentle {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


* {
    font-family: var(--body-font);
    font-weight: var(--regular);
    color: var(--white-alt);
    line-height: 1.5;
}

html {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: var(--body-font);
    font-weight: var(--regular);
    color: var(--medium-black);
    line-height: 1.5;
    height: 100vh;
}

.stretch-max {
    max-width: var(--max-width);
    margin: 0 auto;
}

.flex {
    display: flex;
    flex-direction: row;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex.center {
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.flex-column.center {
    align-items: center;
}

.gap-8 {
    gap: 8px;
}
.gap-16 {
    gap: 16px;
}
.gap-32 {
    gap: 32px;
}
.gap-64 {
    gap: 64px;
}

.w-100 {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .flex {
        flex-direction: column;
    }
}

/* *=================
    * Typography
*================ */

h1 {
    font-family: var(--title-font);
    font-size: var(--title-size);
    font-weight: var(--regular);
    color: var(--main-dark);
    margin-bottom: 16px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: var(--bold);
}

.display {
    font-size: var(--display-size);
}

h2 {
    font-size: var(--title-size);
    font-weight: var(--regular);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 + p {
    margin-top: 8px;
}

h3 {
    font-size: var(--H3);
    font-weight: var(--bold);
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

h4 {
    font-weight: var(--bold);
    font-size: var(--H4);
    color: var(--white-alt);
    margin: 8px 0;
    text-transform: uppercase;
}

h5 {
    font-weight: var(--bold);
    font-size: var(--p-size);
    color: var(--white-alt);
    margin: 8px 0 4px;
    text-transform: uppercase;
}

p {
    line-height: 1.5;
    font-size: var(--p-size);
}

    p.subtitle {
        font-size: var(--subtitle-size);
        margin-top: 4px;
    }

strong {
    font-weight: 600;
}

.bold {
    font-weight: var(--bold);
}

a {
    color: var(--orangeDarker);
    font-size: var(--p-size);
}

    a:hover,
    a:focus,
    a.paragraph-link:hover,
    a:hover sup {
        color: var(--orangeGold);
    }

    a.paragraph-link {
        color: unset;
        text-decoration: none;
    }

a sup {
    color: var(--orangeDarker);
}

    .highlight {
        color: var(--orangeDarker);
    }

@media screen and (max-width: 540px) {
    .display {
        margin-bottom: 4px;
    }
}

/* *=================
    * Footer
*================ */

footer a {
    color: var(--orangeGold);
    font-weight: var(--bold);
    text-decoration: none;
    list-style: none;
}

    footer a:hover {
        color: var(--orangeGold);
    }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 0;
}

footer .business-info {
    align-items: center;
}
footer .business-info p {
    margin: 0;
}

footer .copyright {
    color: var(--textUltraLight);
    font-size: var(--p-smaller);
}

@media screen and (max-width: 768px) {

    footer .flex-column.center {
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        justify-content: flex-start;
        gap: 16px;

    }

    .footer-logo {
        height: 42px;
    }

    div:has(.business-info) {
        gap: 16px;
        flex-direction: column;
    }
}

ul {
    list-style: none;
}

    ul li, ol li {
        line-height: 1.5;
        margin: 8px 0;
        font-size: var(--p-smaller);
    }



        ul li + p:first-of-type, ol p:first-of-type {
            margin-top: 0;
        }


    ul ul li::before {
        content: "\0020dd" !important;
        font-size: 16px !important;
    }

.small-text {
    font-size: var(--text-small);
}

.mt-100 {
    margin-top: 100px;
}

/* *=================
    * Navigation Bar
   *================ */

nav {
    position: sticky;
    top: 0;
    background-color: var(--navyUltraDark);
    z-index: 99;
    box-shadow: var(--nav-shadow);
    transition: all .4s var(--gentle);
}

    nav.collapse {
        opacity: 0;
    }

    nav.expand {
        opacity: 1;
    }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: var(--nav-height);
    transition: all .3s var(--gentle) .1s;
}

    .navbar.collapse {
        transform: translateY(-30%);
    }

#navbar.expand {
    transform: translateY(0);
}

#navbar .logo-container {
    width: 100%;
    width: -moz-available; 
    width: -webkit-fill-available;
    width: fill-available;
}

nav img {
    height: 56px;
    transition: all.2s var(--gentle);
}

.navbar-links {
    display: flex;
    align-items: stretch;
    justify-content: end;
    flex-grow: 1;
    height: 100%;
    margin: 0;
}

    .navbar-links li {
        display: flex;
        align-items: center;
        list-style: none;
        cursor: pointer;
        height: 100%;
        margin: 0 0 0 40px;
        transition: all 0.4s ease-in;
    }

        .navbar-links li a {
            position: relative;
            color: var(--white-alt);
            text-decoration: none;
            font-weight: var(--bold);
            font-size: var(--p-smaller);
            line-height: 1;
            padding: 8px 0;
            text-wrap: nowrap;
        }

        .navbar-links li:hover a,
        .navbar-links li a.active  {
            color: var(--orangeGold);
        }

            .navbar-links li a.btn-fill.active,
            .navbar-links li a.btn-fill.focus {
                color: var(--white);
            }

            .navbar-links a:after {
                position: absolute;
                content: '';
                left: 0;
                bottom: 0px;
                width: 0;
                height: 2px;
                background-color: var(--orangeGold);
                opacity: 0;
                transition: width .4s var(--quick), opacity .25s ease-in, background-color .3s var(--quick);
            }

    .navbar-links li:hover a:not(.active):after {
        position: absolute;
        content: '';
        width: 100%;
        opacity: 1;
        background-color: var(--goldHighlight);
    }

    .navbar-links li a.active {
        color: var(--goldHighlight);
    }

    .navbar-links button {
        margin-right: 0 !important;
    }

    .menu-wrap {
        position: relative;
        display: none;
        z-index: 1;
    }

    .menu-wrap .toggler {
        position: absolute;
        top: -15px;
        right: -10px;
        opacity: 0;
        height: 50px;
        width: 50px;
        cursor: pointer;
        z-index: 2;
    }

#hamb-menu {
    width: 36px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s var(--hasty);
    -o-transition: 0.5s var(--hasty);
    transition: 0.5s var(--hasty);
    z-index: 2;
    cursor: pointer;
}

    #hamb-menu span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--orangeGold);
        border-radius: 1px;
        opacity: 1;
        right: 0;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s var(--hasty);
        -o-transition: 0.25s var(--hasty);
        transition: 0.25s var(--hasty);
    }

        #hamb-menu span:nth-child(2) {
            top: 12px;
            left: 0;
        }

        #hamb-menu span:nth-child(3) {
            top: 24px;
        }

    #hamb-menu.open span {
        background: var(--orangeDarker);
    }

        #hamb-menu.open span:nth-child(1) {
            top: 12px;
            -webkit-transform: rotate(-135deg);
            -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
        }

        #hamb-menu.open span:nth-child(2) {
            opacity: 0;
            left: -40px;
        }

        #hamb-menu.open span:nth-child(3) {
            top: 12px;
            width: 100%;
            -webkit-transform: rotate(135deg);
            -ms-transform: rotate(135deg);
            transform: rotate(135deg);
        }

.menu {
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    background: rgba(87, 83, 68, .95);
    height: 100vh;
    width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all .3s var(--hasty);
}

    .menu.open {
        width: 400px;
    }

.side-menu-links {
    padding: 0;
}

    .side-menu-links li {
        padding: 16px 64px;
        list-style: none;
        cursor: pointer;
    }

        .side-menu-links li a {
            text-decoration: none;
            font-weight: 600;
            color: var(--white-alt);
            transition: all 0.05s ease-in;
        }

        .side-menu-links li:hover a {
            color: var(--orangeGold);
        }

@media screen and (max-width: 1200px) {
    .navbar-links {
        display: none;
    }

        .navbar-links li a {
            padding: 16px 8px;
        }

    .menu-wrap {
        display: block;
    }
    .menu {
        right: -56px;
    }
}

@media screen and (max-width: 768px) {

    .menu.open {
        width: 100%;
    }

    #navbar {
        padding: 0 24px;
    }
        #navbar img {
            height: 42px;
        }
        #nav .stretch-max {
            max-width: 100%;
        }
    .menu {
        right: 0;
    }
}

@media screen and (max-width: 540px) {
    #navbar img {
        height: 36px;
    }

}

/* *=================
    * Layout
*================ */

.relative {
    position: relative;
}

.w-100 {
    width: 100%;
}

section {
    position: relative;
    background-color: var(--darkNavy);
}


    section.alt {
        background-color: var(--navyUltraDark);
    }

.section-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 0;
    transition: all 0.2s ease-in;
}

@media screen and (max-width: 540px) {

    .section-wrapper {
        padding: 40px 24px;
    }
    .no-mobile {
        display: none;
    }
}

/* *=================
    * Buttons
*================ */
button.btn,
a.btn,
.navbar-links li a.btn-fill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: var(--p-size);
    font-family: var(--body-font);
    font-weight: var(--bold);
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    margin: 10px 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 32px;
    box-shadow: var(--drop-orange);
    transition: padding .2s ease-out, box-shadow .08s ease-in, background-color .1s ease-out;
}
    button.btn:hover,
    a.btn:hover {
        background-color: var(--orangeGold);
    }

.btn-fill {
    background: var(--orangeDarker);
    color: var(--white-alt);
    border: none;
}

    .btn-fill:hover,
    .btn-fill:focus {
        background-color: var(--orangeGold);
        color: var(--white);
    }

.btn-outline {
    background-color: transparent;
    color: var(--orangeDarker);
    border: 1px solid var(--orangeDarker);
}

    .btn-outline:hover {
        color: var(--orangeGold);
        border: 1px solid var(--orangeGold);
    }

/* *=============================================================
   * Forms / Inputs / Dropdowns / Checkboxes / Switch / Radio
   *============================================================ */

.form-container {
    display: flex;
    gap: 32px;
    flex-direction: column;
    margin-top: 32px;
}

.form-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 64px;
}

.input-container .error-msg {
    margin: 4px 2px;
    color: var(--error-color);
}

.help-text {
    font-family: var(--body-font);
    font-size: var(--text-small);
    color: var(--p-smaller);
    line-height: 1.2;
    margin-left: 4px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all .4s var(--gentle);
}
.help-text.hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
}

.input-container {
    overflow: visible;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .4s var(--gentle);
    -o-transition: all .4s var(--gentle);
    transition: all .4s var(--gentle);
}

    .input-container.xxs {
        min-width: 96px;
    }

    .input-container.xs {
        min-width: 108px;
    }

    .input-container.s {
        min-width: 168px;
    }

    .input-container.sm {
        min-width: 186px;
    }

    .input-container.md {
        min-width: 208px;
    }

    .input-container.lg {
        min-width: 232px;
    }

    .input-container.xl {
        min-width: 352px;
    }

    .input-container.full {
        width: 100%;
    }

    .input-container label {
        font-size: 20px;
        display: block;
        margin-bottom: 8px;
        margin-top: 0;
        font-weight: var(--bold);
        color: var(--white);
    }

        .input-container label span {
            font-weight: var(--regular);
            font-family: var(--body-font);
        }

    .input-container .big-label {
        margin-bottom: 8px;
    }

    .input-container input,
    .input-container textarea,
    .input-container .dropdown-toggle {
        background-color: transparent;
        color: var(--white-alt);
        border: 1px solid var(--goldHighlight);
        min-height: 40px;
        padding: 8px 8px 10px;
        outline: none;
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available;
        font-size: var(--p-smaller);
        font-family: var(--body-font);
        line-height: 1;
        border-radius: 4px;
    }

        .input-container select option {
            color: var(--white-alt);
            background-color: var(--navy);
            padding: 8px;
            font-size: 16px;
        }

        .input-container select option:hover {
            background-color: var(--orangeGold);
            color: var(--navy);
            padding: 8px;
            font-size: 16px;
        }

    .input-container input.input-error {
        border: 1px solid var(--error-color);
    }

        .input-container input.input-error:hover,
        .input-container input.input-error:focus,
        .input-container input.input-error:focus-visible {
            border: 1px solid var(--error-color);
        }

    .input-container input::-moz-selection {
        background: var(--orangeGold);
        text-shadow: none;
    }

        .input-container input::selection {
            background: var(--orangeGold);
            text-shadow: none;
        }

    .input-container input::-webkit-input-placeholder {
        color: var(--textUltraLight);
    }

    .input-container input::-moz-placeholder {
        color: var(--textUltraLight);
    }

    .input-container input:-ms-input-placeholder {
        color: var(--textUltraLight);
    }

    .input-container input::placeholder {
        color: var(--textUltraLight);
    }


    .input-container input:hover,
    .input-container input:focus,
    .input-container input:focus-visible,
    .input-container textarea:hover,
    .input-container textarea:focus,
    .input-container textarea:focus-visible {
        background-color: var(--navy);
        outline: none;
    }

    .input-container .input-helper-container {
        position: relative;
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available;
    }

@media screen and (max-width: 768px) {
    .input-container input,
    .input-container textarea {
        margin: 0;
        min-width: -webkit-fill-available;
        min-width: -moz-available;
        min-width: fill-available;
    }

    .input-container.xxs,
    .input-container.xs,
    .input-container.s,
    .input-container.sm, 
    .input-container.md,
    .input-container.lg, 
    .input-container.xl {
        min-width: auto;
        width: 100%;
    }

    .form-row {
        flex-wrap: wrap;
        gap: 32px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    padding: 10px 14px;
    background-color: transparent;
    border: 1px solid var(--goldHighlight);
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

    .dropdown-toggle::after {
        content: "▾";
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--darkNavy);
    border-radius: 4px;
    margin-top: 4px;
    list-style: none;
    padding: 0;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    z-index: 999;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 10px 14px;
    cursor: pointer;
}

    .dropdown-menu li:hover,
    .dropdown-menu li.active {
        background-color: var(--navy);
        color: var(--goldHighlight);
    }

/* *=================
    * Home Header
*================ */

.hero-container {
    height: calc(100vh - var(--nav-height));
    overflow: hidden;
}

.hero-container.half {
    height: calc(75vh - var(--nav-height));
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 1;
    transition: left .2s var(--hasty);
}

    .hero-banner.home {
        background-image: url("/assets/images/main-hero.jpg");
    }
    .hero-banner.contacts {
        background-image: url("/assets/images/contacts.png");
    }
    .hero-banner.makeClaim {
        background-image: url("/assets/images/claimsGirl.png");
    }

    .hero-banner::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--navyLight);
        mix-blend-mode: multiply;
    }

.hero-halfX,
.halfX {
    position: absolute;
    height: -moz-available;
    height: -webkit-fill-available;
    height: fill-available;
    opacity: .6;
    transition: all 1s var(--quick) .4s;
}

.hero-halfX.light {
    mix-blend-mode: plus-lighter;
}
.hero-halfX.dark {
    mix-blend-mode: normal;
}


    .hero-halfX.rightFirst,
    .halfX.rightFirst {
        right: 2500px;
    }
    .hero-halfX.rightSecond,
    .halfX.rightSecond {
        right: 2800px;
    }
    .hero-halfX.rightFirst.animated,
    .halfX.rightFirst.animated {
        right: -100px;
    }
    .hero-halfX.rightSecond.animated,
    .halfX.rightSecond.animated {
        right: 140px;
    }

    .hero-halfX.leftFirst,
    .halfX.leftFirst {
        left: 2500px;
        transform: scale(-1);
    }
    .hero-halfX.leftSecond,
    .halfX.leftSecond {
        left: 2800px;
        transform: scale(-1);
    }
    .hero-halfX.leftFirst.animated,
    .halfX.leftFirst.animated {
        left: -100px;
    }
    .hero-halfX.leftSecond.animated,
    .halfX.leftSecond.animated {
        left: 140px;
    }

.hero-cta {
    position: relative;
    height: inherit;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: all 1.6s var(--gentle);
}

.hero-cta h1,
.hero-cta .subtitle {
    max-width: 65%;
    margin-top: 0;
}

.hero-gallery {
    position: relative;
    margin-top: 80px;
    transition: all 1.6s var(--gentle);
}

.hero-gallery h3 {
    margin-top: 0;
}

.gallery {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    transition: all .2s var(--gentle);
}

    .gallery .thumb-container {
        background-color: var(--navy);
        cursor: pointer;
        overflow: hidden;
        transition: all .4s var(--quick);
    }

    .gallery .thumb-wrapper {
        overflow: hidden;
    }

        .gallery .thumb-container img {
            display: block;
            filter: saturate(0);
            width: 100%;
            transform: scale(1);
            transition: all .8s var(--quick);
        }
    .gallery .thumb-container a {
        position: relative;
        text-transform: uppercase;
        font-weight: var(--bold);
        text-decoration: none;
    }
        .gallery .thumb-container a:before {
            content: '❯';
            position: absolute;
            right: 4px;
            opacity: 0;
            transition: all .8s var(--gentle) .1s;
        }
        .gallery .thumb-container a:after {
            content: '❯';
            position: absolute;
            right: 8px;
            opacity: 0;
            transition: all .8s var(--gentle) ;
        }

    .gallery .thumb-container:hover {
        background-color: var(--orangeGold);
    }

    .gallery .thumb-container:hover h4 {
        color: var(--textDark);
    }
        .gallery .thumb-container:hover img {
            filter: saturate(1);
            transform: scale(1.1);
        }
        .gallery .thumb-container:hover a {
            color: var(--navy);
        }
            .gallery .thumb-container:hover a:before {
                right: -12px;
                opacity: 0.6;
            }
            .gallery .thumb-container:hover a:after {
                right: -20px;
                opacity: .8;
            }

.gallery .caption {
    padding: 16px;
}

@media screen and (max-width: 1200px) {
    .gallery {
        gap: 24px;
    }
    .hero-halfX,
    .hero-halfX-2 {
        display: none;
    }
    
}

@media screen and (max-width: 768px) {
    .hero-container {
        height: auto;
    }
    .hero-cta h1,
    .hero-cta .subtitle {
        max-width: 100%;
        margin-top: 0;
    }
    .gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

        
}
@media screen and (max-width: 540px) {
    
    .hero-container .section-wrapper {
        padding: 24px;
    }
    .hero-gallery {
        margin-top: 40px;
    }
    .hero-container.half {
        height: auto;
    }

}

.dots {
    position: absolute;
    transition: all .2s var(--gentle);
}

.dots-vertical {
    position: absolute;
    transform: rotate(90deg);
}

.dots.top-right {
    top: 80px;
    right: 0;
}

.dots-left {
    top: 108px; 
    left: -250px;
}

@media screen and (max-width: 768px) {
    .dots,
    .dots-vertical {
        display: none;
    }
    
}


/* *=================
    * Side Blurbs
*================ */

.side-blurb {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.side-blurb h3 {
    margin-top: 32px;
}

.img-wrapper {
    position: relative;
    flex: 1 1 50%;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-main-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--main-gradient);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.right-blurb {
    flex: 1 1 50%;
    padding: 0 340px 0 64px;
    box-sizing: border-box;
    align-self: flex-start;
    z-index: 1;
}
.left-blurb {
    flex: 1 1 50%;
    padding: 0 64px 0 340px;
    box-sizing: border-box;
    align-self: flex-start;
    z-index: 1;
}

@media screen and (max-width: 1800px) {
    .right-blurb {
        padding: 0 260px 0 64px;
    }
    .left-blurb {
        padding: 0 64px 0 260px;
    }
}
@media screen and (max-width: 1500px) {
    .right-blurb {
        padding: 0 160px 0 64px;
    }
    .left-blurb {
        padding: 0 160px 0 64px;
    }
}
@media screen and (max-width: 1280px) {
    .right-blurb, 
    .left-blurb{
        padding: 0 32px;
    }
}
@media screen and (max-width: 768px) {
    .side-blurb {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .side-blurb:has(.left-blurb) {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .right-blurb,
    .left-blurb{
        max-width: var(--max-width);
        padding: 0 24px 80px;
        margin: 0 auto;
    }
}

/* *=================
    * Testimonial Section
*================ */
/* OWL CAROUSEL OVERRIDING STYLES */
.owl-carousel .owl-item img:not(test-border) {
    width: inherit;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--greysh);
    width: 40px;
    height: 3px;
    opacity: 0.4;
    margin: 40px 20px 40px;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.owl-stage {
    margin-bottom: 10px;
}

.owl-theme .owl-dots .owl-dot.active span {
    opacity: 1;
    background-color: var(--orangeGold) !important;
}

.owl-carousel .owl-dots.disabled {
    display: block;
}

.testimonial {
    opacity: .45;
    padding: 16px 16px 24px;
    border-radius: 4px;
    background-color: var(--navy);
    box-shadow: var(--low-shadow);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.test-name-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.testimonial .award-rating {
    height: 20px;
    margin: 0;
}

.testimonial h4 {
    margin: 0;
    font-size: var(--H4);
    color: var(--orangeMain);
}

.testimonial .t-extra {
    margin: 4px 0 0;
    opacity: .7;
    font-size: var(--text-small);
}

.testimonial .t-body p {
    line-height: 1.5;
    font-size: var(--p-smaller);
}

.owl-item.center .testimonial {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: var(--high-shadow);
    box-shadow: var(--high-shadow);
}

/* *=================
    * FAQs
*================ */
.faq-container {
    border-radius: 4px;
    background-color: transparent;
    border: none;
}

    .faq-container .faq-title {
        background-color: var(--orangeBrown);
        padding: 16px;
        border-radius: 2px;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
    }
        .faq-container .faq-title.open {
            border-radius: 2px 2px 0 0;
            background-color: var(--orangeDarker);
        }

        .faq-container .faq-title:hover {
            background-color: var(--orangeDarker);
        }

        .faq-container .faq-title p {
            color: var(--white-alt);
            margin: 2px 16px 0 0;
            pointer-events: none;
        }

        .faq-container h5 {
            margin-top: 16px;
        }
    .faq-container h5:first-child {
        margin-top: 0;
    }

    .faq-container a {
        font-size: var(--p-smaller);
    }


        .faq-container .faq-title img {
            -webkit-transform: scaleY(1);
            -ms-transform: scaleY(1);
            transform: scaleY(1);
            -webkit-transition: all 0.2s var(--gentle);
            -o-transition: all 0.2s var(--gentle);
            transition: all 0.2s var(--gentle);
            pointer-events: none;
            margin-top: 2px;
        }

            .faq-container .faq-title img.open {
                -webkit-transform: scaleY(-1);
                -ms-transform: scaleY(-1);
                transform: scaleY(-1);
            }

    .faq-container .faq-content {
        margin-top: 0;
        margin-bottom: 16px;
        padding: 0 16px;
        border: 1px solid transparent;
        color: var(--medium-text);
        border-radius: 0 0 4px 4px;
        height: 0;
        -webkit-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        overflow: hidden;
    }

        .faq-container .faq-content.open {
            border: 1px solid var(--orangeDarker);
        }

    .faq-container .faq-content-wrapper.main {
        padding: 16px 16px 0;
    }

    .faq-container .faq-content-wrapper:not(.main) {
        padding: 16px 0;
    }

/* *=================
    * Services Cards
*================ */

.card {
    background-color: var(--navy);
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    padding: 24px;
}

/* *=================
    * Generic @Media
*================ */
    @media screen and (max-width: 1200px) {
        .components {
        width: 30%;
    }
}