/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: >0.3%,last 6 version,not dead
*/

/* ##################### Global Variables ##################### */
:root {
    /* Colors */
    --primary: #00A376;
    --secondary: #006A8E;
    --accent: #F6EB61;
    --accent-opaque: rgba(246, 236, 97, 0.75);
    --accent-lite: #EEF386;
    --accent-lite-opaque: rgba(238, 243, 134, 0.75);
    --light: #FFFFEF;
    --light-opaque: rgba(255, 255, 239, 0.75);
    --black: #141414;
    --dark-gray: #5C5C5C;
    --medium-gray: #C2C2C2;
    --light-gray: #F5F5F5;

    /* CTA BG Colors */
    --cta-primary: rgba(0, 163, 117, 0.85);
    --cta-secondary: rgba(0, 107, 142, 0.75);

    /* Margins - Paddings */
    --spacing: 1.5rem;
    --spacing-sm: 0.75rem;

    /* Button Colors */
    --primary-btn: #00a375;
    --primary-btn-lgt: rgb(0, 163, 118, 0.9);
    --primary-btn-out: rgb(0, 163, 118, 0.23);
    --secondary-btn: #006A8E;
    --secondary-btn-lgt: rgb(0, 106, 142, 0.9);
    --secondary-btn-out: rgb(0, 106, 142, 0.23);
}

@media (max-width: 768px) {
    :root {
        /* Margins - Paddings */
        --spacing: 1.375rem;
        --spacing-sm: 0.69rem;
    }
}


/* ##################### CSS RESET ##################### */
*, *::before, *::after {
    box-sizing: border-box;
}

html, .root {
    font-size: calc(15.4285px + 0.1786vw);
    line-height: 1.5;
    font-family: "Onest", sans-serif; /* add correct font family */
    color: var(--black);
}

@media (min-width: 1920px) {
    html, .root {
        font-size: 19px;
    }
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary); /* add correct color */
    border-radius: 0.16rem;
}

/* ##################### Typography Defaults ##################### */
/* Mobile - Scale Factor 1.25 */
h1, .h1 {
    font-size: 1.9375rem;
    line-height: 1.5;
    margin: 1.375rem 0 2.75rem 0;
}
h2, .h2 {
    font-size: 1.5625rem;
    line-height: 1.5;
    margin: 1.375rem 0 1.375rem 0;
}
h3, .h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 1.375rem 0 0 0;
}
h4, .h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1.375rem 0 0 0;
}
h5, .h5 {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 600;
    margin: 1.375rem 0 0 0;
}
p {
    font-size: 1rem;
    line-height: 1.5;
}
p, pre, table, blockquote {
    margin: 0 0 1.375rem 0;
}
ul, ol {
    margin: 0.916rem 0 1.375rem 0;
}
ul ul, ol ol, ul ol, ol ul {
    margin: 0;
}

/* Desktop - Scale Factor 1.414 */
@media (min-width: 768px) {
    h1, .h1 {
        font-size: 2.8333333rem;
        line-height: 1.5;
        margin: 1.5rem 0 3rem 0;
    }
    h2, .h2 {
        font-size: 2rem;
        line-height: 1.5;
        margin: 1.5rem 0 1.5rem 0;
    }
    h3, .h3 {
        font-size: 1.3888889rem;
        line-height: 1.5;
        margin: 1.5rem 0 0 0;
    }
    h4, .h4 {
        font-size: 1rem;
        line-height: 1.5;
        margin: 1.5rem 0 0 0;
    }
    h5, .h5 {
        font-size: 1rem;
        line-height: 1.5;
        font-style: italic;
        font-weight: 600;
        margin: 1.5rem 0 0 0;
    }
    p {
        font-size: 1rem;
        line-height: 1.5;
    }
    p, pre, table, blockquote {
        margin: 0 0 1.5rem 0;
    }
    ul, ol {
        margin: 1rem 0 1.5rem 0;
    }
    ul ul, ol ol, ul ol, ol ul {
        margin: 0;
    }
}

hr, .hr {
    border: 1px solid;
    border-color: var(--medium-gray);
    width: 100%;
    margin: 0;
}
  
a, b, i, strong, em, small, code {
    line-height: inherit;
}
  
sub, sup {
    line-height: inherit;
    position: relative;
    vertical-align: baseline;
}
  
sup {
    top: -0.5em;
}
  
sub {
    bottom: -0.25em;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, p {
    overflow-wrap: normal;
    word-wrap: normal;
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    font-weight: 700;
}

p, ul li, ol li, .txt {
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
    white-space: normal;
}

/* ##################### Main Form Inputs ##################### */

form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: var(--spacing);
}

@media (min-width: 1860px) {
    .inputs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 425px) {
    .inputs-grid {
        grid-template-columns: 1fr;
    }
}

input, button, textarea, select {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem 0.26rem;
    font: inherit;
    border: 1px solid var(--primary);
    border-radius: 0.16rem;
}

textarea {
    display: block;
    resize: vertical;
    margin: 0;
}

input:focus, textarea:focus, select:focus {
    border: 1px solid var(--secondary);
    outline: none;
}

button:focus {
    outline: none;
}

input::-webkit-input-placeholder, button::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
    color: var(--dark-gray);
    font-size: 0.9rem;
    opacity: 0.9;
}

input::-moz-placeholder, button::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
    color: var(--dark-gray);
    font-size: 0.9rem;
    opacity: 0.9;
}

input::placeholder, button::placeholder, textarea::placeholder, select::placeholder {
    color: var(--dark-gray);
    font-size: 0.9rem;
    opacity: 0.9;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    background: url('/assets/img/icons/xmark.svg') no-repeat center center;
}

input[type="checkbox"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    margin: -0.105rem 0 0 2px;
    width: 1.1rem;
    height: 1.1rem;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 0.16rem;
    display: grid;
    place-content: center; 
    cursor: pointer;
    flex-shrink: 0;
}

input[type="checkbox"]:checked {
    background-color: #fff;
}

input[type="checkbox"]:checked::after {
    content: '\2714';
    color: #00a376;
    font-size: 0.9rem;
    line-height: 1;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
}

.check-row {
    display: flex;
    gap: 0.5rem;
    align-items: start;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 300;
}

.check-row a {
    display: inline;
    color: #fff;
    margin: 0;
}

.check-row a:hover {
    text-decoration: underline;
}

.uploadfile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uploadfile input[type="file"] {
    display: none;
}

.uploadfile label {
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.36rem 0.45rem;
    margin: 0 0 0 1px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 0.16rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.uploadfile label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.uploadfile .file-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1;
}
.main-error {
    color: var(--accent);
    font-style: italic;
    font-size: 0.7rem;
    line-height: 1;
    margin: 0.25rem 0 -0.45rem;
}

/* ##################### Main Buttons ##################### */
@-webkit-keyframes bubble {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.013);
                transform: scale(1.013);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@keyframes bubble {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.013);
                transform: scale(1.013);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

/* Primary Button */
.btn-primary {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.2rem 0.56rem;
    background-color: var(--primary-btn);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.16rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s linear;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px; /* Expands evenly on all sides */
    border: 2px solid var(--primary-btn-out);
    border-radius: 0.27rem;
    pointer-events: none;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.075s linear, -webkit-transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear, -webkit-transform 0.15s linear;
}

.btn-primary:hover {
    background-color: var(--primary-btn-lgt);
    -webkit-animation: bubble 0.075s ease-in-out;
            animation: bubble 0.075s ease-in-out; /* Apply the bubble animation */
}

.btn-primary:hover::before {
    opacity: 1; /* Show on hover */
    -webkit-transform: scale(1.035, 1.1);
            transform: scale(1.035, 1.1);
}

/* Secondary Button secondary */
.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.2rem 0.56rem;
    background-color: var(--secondary-btn);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.16rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s linear;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -2px; /* Expands evenly on all sides */
    border: 2px solid var(--secondary-btn-out);
    border-radius: 0.27rem;
    pointer-events: none;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.075s linear, -webkit-transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear, -webkit-transform 0.15s linear;
}

.btn-secondary:hover {
    background-color: var(--secondary-btn-lgt);
    -webkit-animation: bubble 0.075s ease-in-out;
            animation: bubble 0.075s ease-in-out; /* Apply the bubble animation */
}

.btn-secondary:hover::before {
    opacity: 1; /* Show on hover */
    -webkit-transform: scale(1.035, 1.1);
            transform: scale(1.035, 1.1);
}

/* Tertiary Button */
.btn-tertiary {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.2rem 0.56rem;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-weight: 600;
    border: none;
    border-radius: 0.16rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s linear;
}

.btn-tertiary::before {
    content: '';
    position: absolute;
    inset: -2px; /* Expands evenly on all sides */
    border: 2px solid var(--light-gray);
    border-radius: 0.27rem;
    pointer-events: none;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.075s linear, -webkit-transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear, -webkit-transform 0.15s linear;
}

.btn-tertiary:hover {
    -webkit-animation: bubble 0.075s ease-in-out;
            animation: bubble 0.075s ease-in-out; /* Apply the bubble animation */
}

.btn-tertiary:hover::before {
    opacity: 1; /* Show on hover */
    -webkit-transform: scale(1.035, 1.1);
            transform: scale(1.035, 1.1);
}

/* Outline Button */
.btn-outline {
    position: relative;
    display: inline-block;
    padding: calc(0.6rem - 2px) calc(1.2rem - 2px) calc(0.56rem - 2px);
    background-color: transparent;
    color: var(--primary-btn);
    font-weight: 600;
    border: 2px solid var(--primary-btn);
    border-radius: 0.16rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s linear;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: -4px -3px;
    border: 2px solid var(--primary-btn-out);
    border-radius: 0.27rem;
    pointer-events: none;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.075s linear, -webkit-transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear, -webkit-transform 0.15s linear;
}

.btn-outline:hover {
    -webkit-animation: bubble 0.075s ease-in-out;
            animation: bubble 0.075s ease-in-out;
}

.btn-outline:hover::before {
    opacity: 1; /* Show on hover */
    -webkit-transform: scale(1.05, 1.1);
            transform: scale(1.05, 1.1);
}

/* Outline White Button */
.btn-outline-wht {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    display: inline-block;
    padding: calc(0.6rem - 2px) calc(1.2rem - 2px) calc(0.56rem - 2px);;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 0.16rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s linear;
}

.btn-outline-wht::before {
    content: '';
    position: absolute;
    inset: -4px -3px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    border-radius: 0.27rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.075s linear, -webkit-transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear;
    transition: opacity 0.075s linear, transform 0.15s linear, -webkit-transform 0.15s linear;
}

.btn-outline-wht:hover {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-animation: bubble 0.075s ease-in-out;
            animation: bubble 0.075s ease-in-out;
}

.btn-outline-wht:hover::before {
    opacity: 1; /* Show on hover */
    -webkit-transform: scale(1.05, 1.1);
            transform: scale(1.05, 1.1);
}

/* ##################### Header Menu's ##################### */
/* --- Desktop Menu --- */
.hd-cont {
    position: fixed;
    width: 100%;
    top: 0.375rem;
    z-index: 99999;
}

.hd-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1824px;
    width: 95%;
    margin: 0 auto;
    padding: 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(2.7px);
	-webkit-backdrop-filter: blur(2.7px);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    transition: 
        background 0.3s ease, 
        box-shadow 0.3s ease, 
        -webkit-backdrop-filter 0.3s ease;
    transition: 
        background 0.3s ease, 
        box-shadow 0.3s ease, 
        backdrop-filter 0.3s ease
    ;
    transition: 
        background 0.3s ease, 
        box-shadow 0.3s ease, 
        backdrop-filter 0.3s ease, 
        -webkit-backdrop-filter 0.3s ease;
}

.hd-main .logo-lnk {
    display: inline-block;
    height: 1.9rem;
    width: auto;
}

.hd-main .logo-lnk svg #Mammoth,
.hd-main .logo-lnk svg #Wordmark {
    fill: var(--black);
}

.hd-main .logo-lnk svg #Saddle {
    fill: var(--primary);
}

.hd-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.hd-main li {
    position: relative;
    display: inline;
}

.hd-main .lnk {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    color: var(--black);
    font-weight: 600;
    transition: all 0.2s ease;
}

.hd-main .lnk svg {
    height: 1.2rem;
    width: auto;
    margin-top: -1.2px;
    margin-right: -0.25rem;
    transition: all 0.21s ease;
}

.hd-main.drk-glass {
    background: rgb(20, 20, 20, 0.19);
	backdrop-filter: blur(2.7px);
	-webkit-backdrop-filter: blur(2.7px);
}

.hd-main.drk-glass .logo-lnk svg #Mammoth,
.hd-main.drk-glass .logo-lnk svg #Wordmark {
    fill: #fff;
}

.hd-main.drk-glass .logo-lnk svg #Saddle {
    fill: var(--primary);
}

.hd-main.drk-glass .lnk {
    color: #fff;
}

.hd-main.drk-glass .lnk svg {
    fill: #fff;
}

.hd-main .lnk:hover {
    color: var(--primary);
}

.hd-main .lnk:hover svg {
    fill: var(--primary);
}
.hm-dropdown {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: start;
    top: 4.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: var(--spacing);
    background: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0.9rem;
    transition: opacity 0.2s ease;
}

.serv-cat-container {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-right: var(--spacing);
    padding-right: var(--spacing);
    border-right: 1px solid var(--medium-gray);
}

.serv-cat {
    width: 265px;
}
.serv-cat:hover {
    cursor: pointer;
}

.serv-cat-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
    transition: color 0.2s ease;
}

.serv-cat-title svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: var(--primary);
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    transition:
        opacity 0.3s ease,
        -webkit-transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
}

.serv-cat-title:hover {
    color: var(--primary);
}

.serv-cat-desc {
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: 0.2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        -webkit-transform 0.3s ease;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
}

.serv-cat.active .serv-cat-title {
  color: var(--primary);
}

.serv-cat.active .serv-cat-title svg {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.serv-cat.active .serv-cat-desc {
  max-height: 60px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hm-dd-grid {
    display: none;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: var(--spacing-sm);
}

.hm-dd-grid .item {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
    background-color: var(--light-gray);
    border: 1px solid var(--light-gray);
    padding: 0.5rem;
    border-radius: 0.16rem;
    transition: all 0.2s ease;
}

.hm-dd-grid .item:hover {
    background-color: var(--primary-btn-lgt);
    border: 1px solid var(--primary);
    color: #fff;
}



@media (max-width: 995px) {
    .hd-cont {
        display: none;
    }
    .hd-main {
        display: none;
    }
}

/* --- Mobile Menu --- */
.hd-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    padding: 0.58rem   1rem;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 99999;
}

.hd-mobile .logo-lnk svg {
    display: block;
    height: 27px;
    width: auto;
}

.hd-mobile .logo-lnk svg #Wordmark ,
.hd-mobile .logo-lnk svg #Mammoth {
    fill: var(--black);
}

.hd-mobile .logo-lnk svg #Saddle {
    fill: var(--primary);
}

.hd-mobile a {
    display: inline-block;
}

.hd-mobile svg {
    max-height: 32px;
    height: auto;
    width: auto;
}

.mobile-menu {
    position: fixed;
    display: block;
    width: 290px;
    top: 3.21rem;
    right: 1rem;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 0.9rem 0.9rem;
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s ease;
}

.mobile-menu.active {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
}

#hd-mm-open {
    display: block;
}

#hd-mm-close {
    display: none;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-menu nav a {
    width: auto !important;
    color: var(--black);
    font-weight: 600;
}

.mobile-menu nav a:hover {
    color: var(--primary);
}

.mobile-menu nav button {
    width: 100%;
}

.mm-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}

.mm-dropdown-item svg {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: -1px;
    flex-shrink: 0;
    transition: -webkit-transform 0.21s ease;
    transition: transform 0.21s ease;
    transition: transform 0.21s ease, -webkit-transform 0.21s ease;
}

.mm-dropdown-item.active svg {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    fill: var(--primary);
}

.mm-dropdown-menu {
    display: none;
    list-style: none;
    color: #363636;
    font-size: 0.9rem;
    padding-left: 1.05rem;
    margin: -8px 0 0 0;
}

.mm-dropdown-menu.active {
    display: block;
}

.mm-dropdown-menu li:not(:last-child) {
    margin-bottom: 0.325rem;
}

@media (min-width: 996px) {
    .hd-mobile {
        display: none;
    }
}
/* ##################### Main Blocks / Containers ##################### */
.page {
    display: block;
    background-color: #fff;
    z-index: 0;
}

.relative {
    position: relative;
}

.container {
    display: block;
    max-width: 1740px;
    width: 90.625%;
    margin: 0 auto;
    padding: calc(25px + 3.9vw) 0;
}

.container > h2:first-child {
    margin-top: -1.2rem;
}

.container > p:last-child {
    margin-bottom: -0.5rem;
}

@media (min-width: 1920px) {
    .container {
        margin: 0 auto;
        padding: 100px 0;
    }
}

/* ##################### Main Layouts ##################### */
/* Flex */
.row {
    display: flex;
    align-items: center;
    gap: var(--spacing);
}

/* Grids - Plain */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing);
}

.grid-2-1{
    display: grid;
    grid-template-columns: 2fr 0.972fr;
    gap: var(--spacing);
}

.grid-1-3 {
    display: grid;
    grid-template-columns: 0.951fr 3fr;
    gap: var(--spacing);
}

@media (max-width: 1227px) {
    .grid-1-3 {
        grid-template-columns: 0.972fr 2fr;
    }
}

@media (max-width: 916px) {
    .grid-2-1 {
        grid-template-columns: 1fr;
    }
    .grid-1-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 598px) {
    .grid-1-3 {
        grid-template-columns: 1fr;
    }
}

/* Grids - Responsive */
.grid-res {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing);
}

.grid-res-w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing);
}

@media (min-width: 599px) {
    .col-2 {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (min-width: 913px) {
    .col-3 {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }
}

@media (min-width: 1228px) {
    .col-4 {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
    }
}

@media (min-width: 1545px) {
    .col-5 {
        grid-template-columns: repeat(5, minmax(240px, 1fr));
    }
}

.span-2 {
    grid-column: span 2;
    align-self: center;
    justify-self: center;
}

@media (max-width: 609px) {
    .span-2 {
        grid-column: span 1;
    }
}

@media (min-width: 599px) {
    .sp-4-2 {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (min-width: 1228px) {
    .sp-4-2 {
        grid-template-columns: repeat(4, minmax(240px, 1fr));
    }
}

/* ##################### Breadcrumbs / CTA's ##################### */
/* Breadcrumbs Section */
.title-breabcrumb {
    background: url('/assets/img/bg/breadcrumb-bg.png'), rgba(0, 0, 0, 0.1);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center center;
    padding: 6.2rem 0 0;
}

@media (max-width: 995px) {
    .title-breabcrumb {
        padding: 4rem 0 0;
    }
}
.title-cntr {
    text-align: center;
}
.title-breabcrumb a {
    color: #fff;
    font-weight: 400;
    transition: all 0.2s ease;
}

.title-breabcrumb a:hover {
    color: var(--primary);
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0 auto -0.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 0.8;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li:not(:last-child)::after {
    content: "\00a0\00a0\00a0›\00a0\00a0\00a0";
    color: #fff;
}

.breadcrumb [aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 585px) {
    .breadcrumb {
        display: none;
    }
    .title-breabcrumb h1 {
        margin-bottom: 1.7rem;
    }
}

/* Call to Actions */
/* Main CTA */
.cta-sect-wrap {
    background: url(../img/bg/office-window.jpg), rgba(0, 0, 0, 0.75);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center center;
    border-radius: 1rem;
    padding: var(--spacing);
    gap: 2.5rem;
}

@media (max-width: 913px) {
    .cta-response {
        grid-template-columns: 1fr;
        gap: var(--spacing);
    }
}

.cta {
    background: linear-gradient(135deg, var(--cta-primary) 30%, var(--cta-secondary));
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    padding: var(--spacing);
}

.cta h3 {
    line-height: 1;
}

.check-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: var(--spacing);
}

.checkboxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

.cta-btn-align {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
}

/* Small CTA */
.cta-bar-wrap {
    position: relative;
    height: 0;
    max-width: 1740px;
    width: 90.625%;
    margin: 0 auto;
}

.cta-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing);
    position: absolute;
    top: -50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
    background-image:
        linear-gradient(150deg, var(--cta-primary) 45%, var(--cta-secondary)),
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('/assets/img/bg/office-window.jpg');
    background-size: cover;
    background-position: center center;
    border-radius: 1rem;
    padding: var(--spacing);
}

@media (max-width: 1104px) {
    .cta-bar {
        justify-content: center;
    }
    .cta-bar h2 {
        text-align: center;
    }
}

/* ##################### Main Cards / Wrappers ##################### */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-outlined {
    display: block;
    border: 2px solid var(--black);
    border-radius: 1rem;
    padding: 0 var(--spacing);
}

.card-filled {
    display: block;
    background-color: var(--primary-btn-out);
    border: none;
    border-radius: 1rem;
    padding: 0 var(--spacing);
}

.card-sp {
    display: block;
    background: linear-gradient(135deg, var(--cta-primary) 30%, var(--cta-secondary));
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: 0 var(--spacing);
}

.wrapper {
    padding: var(--spacing);
    border: 2px solid var(--dark-gray);
    border-radius: 1rem;
}

.fw-wrapper {
    padding: var(--spacing);
    border: 2px solid var(--primary);
    border-radius: 1rem;
}

.fw-wrap-gradient {
    padding: var(--spacing);
    background: linear-gradient(145deg, var(--cta-primary) 50%, var(--cta-secondary));
    border-radius: 1rem;
}

/* ##################### Footer ##################### */
footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: -1;
    color: var(--dark-gray);
    background-color: var(--black);

}

@media (max-width: 575px) {
    footer {
        position: static;
        width: 100%;
        bottom: auto;
        z-index: 0;
    }
    .page {
        margin-bottom: 0 !important; 
    }
}

.ftr-pad {
    max-width: 1740px;
    padding: calc(9px + 3vw) 4px 0;
}

.ftr-main {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem calc(4rem + (6 * ((100vw - 1200px) / 720)));
    padding-bottom: var(--spacing);
}

@media (max-width: 575px) {
    .ftr-main {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

footer .logo-txt {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06rem;
    margin-right: auto;
}

footer .logo-txt svg {
    display: block;
    max-height: 43px;
    height: auto;
    width: auto;
    margin-bottom: 0.4rem;
}

footer .logo-txt svg #Mammoth,
footer .logo-txt svg #Wordmark {
    fill: var(--light);
}

footer .logo-txt svg #Saddle {
    fill: var(--primary);
}

footer .social-lnks {
    display: flex;
    align-items: center;
    justify-items: flex-start;
    gap: 1rem;
    margin: var(--spacing) 0;
}

footer .social-lnks svg {
    height: 1.5rem;
    width: 1.5rem;
    border: 2px solid var(--dark-gray);
    border-radius: 0.16rem;
    fill: var(--light);
    transition: all 0.2s ease;
}

footer .social-lnks svg:hover {
    border-color: var(--primary);
}

footer .social-lnks img {
    display: block;
    height: 1.5rem;
    width: auto;
}

.loc-item {
    display: flex;
    align-items: start;
    gap: 0.2rem;
    margin-left: -4px;
    margin-bottom: 1rem;
}

.loc-item svg {
    height: 1.5rem;
    width: auto;
    fill: var(--light);
    margin-top: 1.5px;
    transition: all 0.2s ease;
}

.loc-item:hover svg {
    fill: var(--primary);
}

.con-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.con-item svg {
    height: 1.5rem;
    width: auto;
    fill: var(--light);
    transition: all 0.2s ease;
}

.con-item:hover svg {
    fill: var(--primary);
}

.ftr-badge {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    min-width: 100px;
    overflow: hidden;
    white-space: nowrap;
}

.ftr-badge img {
    height: auto;
    width: 100%;
    max-height: 140px; 
    max-width: 110px;
    -o-object-fit: contain;
       object-fit: contain;
}

@media (max-width: 873px) {
    .ftr-badge {
        margin-left: auto;
    }
}

@media (max-width: 575px) {
    .ftr-badge {
        margin-top: 0.6rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.lnks-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem 2rem;
    font-size: 0.8rem;
    width: 100%;
    font-weight: 600;
    border-top: 1px solid var(--dark-gray);
    padding: var(--spacing) 0 var(--spacing);
}

@media (max-width: 577px) {
    .lnks-copyright {
        flex-direction: column;
        justify-content: center;
    }
}

.sm-ftr-lnks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem 2rem;
}

.sm-ftr-lnks a {
    display: inline-block;
    color: var(--dark-gray);
}

.sm-ftr-lnks a:hover {
    text-decoration: underline;
}

/* ##################### Short Modifiers ##################### */
/* spacing Options */
.mar-top {
    margin-top: var(--spacing);
}

.mar-btm {
    margin-bottom: var(--spacing);
}

.no-mar-top {
    margin-top: 0;
}

.no-mar-btm {
    margin-bottom: 0;
}

.sm-mar-top {
    margin-top: var(--spacing-sm);
}

.sm-mar-btm {
    margin-bottom: var(--spacing-sm);
}

.wide-gap {
    gap: 2.5rem;
}

@media (max-width: 600px) {
    .wide-gap {
        gap: var(--spacing);
    }
}

/* Background Colors */
.bg-white {
    background-color: #fff;
}

.bg-lite {
    background-color: var(--light);
}

.bg-lite-gray {
    background-color: var(--light-gray);
}

.bg-accent-lite {
    background-color: rgba(238, 243, 134, 0.6);
}

.bg-primary-opaque {
    background-color: rgba(0, 163, 117, 0.6);
}

.bg-black-opaque {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Border Colors */
.no-brd {
    border: none;
}

.brd-primary {
    border-color: var(--primary);
}

.brd-secondary {
    border-color: var(--secondary);
}

.brd-black {
    border-color: var(--black);
}

.brd-drk-gray {
    border-color: var(--dark-gray);
}

.brd-gray {
    border-color: var(--medium-gray);
}

.brd-primary-opaque {
    border-color: var(--primary-btn-out);
}

.brd-lite {
    border-color: var(--light);
}

/* Border Radius Options */
.radius-sm {
    border-radius: 0.16rem;
}

.radius-m {
    border-radius: 0.5rem;
}

.radius-l {
    border-radius: 1rem;
}

/* Text Colors */
.color-prim {
    color: var(--primary);
}

.color-accent {
    color: var(--accent);
}

.color-sec {
    color: var(--secondary);
}

.color-black {
    color: var(--black);
}

.color-wht {
    color: #fff;
}

.color-lite {
    color: var(--light);
}

.color-gray {
    color: var(--dark-gray);
}

/* Text Positioning */
.txt-cntr {
    text-align: center;
}

.txt-max-wd {
    max-width: 910px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 554px) {
    .txt-cntr {
        text-align: left;
    }
    .txt-max-wd {
        width: 100%;
    }
}

.sticky-txt {
    position: -webkit-sticky;
    position: sticky;
    top: 175px;
}

@media (max-width: 995px) {
    .sticky-txt {
        top: 100px;
    }
}

/* Grid - Flex Alignment */
.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

.align-self-cntr {
    align-self: center;
    justify-self: center
}

/* More Common Bits */
.drk-bg {
    background: url('/assets/img/bg/evergreen.jpg'), rgba(0, 0, 0, 0.72);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center center;
}

.lgt-bg {
    background: url('/assets/img/bg/marble.jpg'), rgba(255, 255, 255, 0.83);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center center;
}

.gray-bg {
    background-color: var(--light-gray);
}

.img-holder {
    position: relative; 
    height: 100%; 
    min-height: 275px;
}

.img-holder-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-50 {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 1rem;
}

.shw-img {
    display: none;
}

@media (min-width: 555px) and (max-width: 850px) {
    .shw-img {
        display: block;
    }
}

.hh-spacer {
    display: none;
    height: var(--spacing);
    margin: 0 0 -0.9rem;
}

@media (max-width: 913px) {
    .half-n-half {
        grid-template-columns: 1fr;
        gap: var(--spacing);
    }
    .half-n-half h2:first-child {
        margin-top: -1.2rem;
    }
    .half-n-half h3:first-child {
        margin-top: 0;
    }
    .half-n-half p:first-child {
        margin-top: 0;
    }
    .half-n-half p:last-child {
        margin-bottom: 0;
    }
    .re-order > div:first-child {
        order: 2;
    }
    .hh-spacer {
        display: block;
    }
}

/* --------- START Cookies Consent Popup --------- */
@-webkit-keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.consent-modal {
    opacity: 0;
    -webkit-animation: fadeIn 1s 2s forwards;
            animation: fadeIn 1s 2s forwards;
    position: fixed;
    bottom: 75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    max-height: 95vh;
    padding: var(--spacing);
    background-color: #fff;
    border: 2px solid var(--medium-gray);
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 95000 !important;
}

.consent-modal h3, .consent-modal h4 {
    font-size: 1rem;
    line-height: 1;
    margin: 0;
}

.consent-modal p {
    font-size: 0.8rem;
    line-height: 1.35;
    margin: -0.2rem 0 0;
}

.consent-modal p.top-spacer {
    padding: 0.8rem 0 0;
}

.consent-modal form {
    display: block;
}

.cookie-categories-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    max-height: 400px;
    overflow-y: auto;
    margin: 1.1rem 0 1.3rem;
}

.cookie-category-wrapper {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: var(--light-gray);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cookie-category-header .title-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 425px) {
    .consent-modal {
        bottom: 19px;
    }
    .cookie-categories-list {
        max-height: 315px;
    }
    .cookie-category-header {
        flex-direction: column;
        align-items: start;
    }
    .cookie-category-header .title-group {
        width: 100%;
        justify-content: space-between;
    }
}

.cookie-category-icon {
    width: 1.1rem;
    height: 1.1rem;
    fill: var(--primary);
    cursor: pointer;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.cookie-category-icon.rotated {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.cookie-category-header .radio-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cookie-category-header .radio-group > div {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.cookie-radio {
    display: none;
}

.cookie-radio-accept {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    background-color: transparent;
    border-radius: 0.16rem;
    border: 1px solid var(--primary);
    padding: 3px 6px 2px;
    margin: 0;
    cursor: pointer;
}

.cookie-radio-decline {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
    background-color: transparent;
    border-radius: 0.16rem;
    border: 1px solid var(--medium-gray);
    padding: 3px 6px 2px;
    margin: 0;
    cursor: pointer;
}

.cookie-radio:checked + .cookie-radio-accept {
    background-color: var(--primary);
    color: #fff;
}

.cookie-radio:checked + .cookie-radio-decline {
    background-color: var(--medium-gray);
    color: #fff;
}

.cookie-radio-accept:hover {
    background-color: var(--primary);
    color: #fff;
}

.cookie-radio-decline:hover {
    background-color: var(--medium-gray);
    color: #fff;
}

.consent-modal .buttons-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.consent-modal .buttons-row .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.consent-modal .buttons-row button {
    font-size: 0.9rem;
    padding: 0.4rem 1rem 0.36rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

@media (max-width: 542px) {
    .consent-modal .buttons-row button {
        width: 100%;
    }

    .consent-modal .buttons-row .btn-group {
        display: grid;
        width: 100%;
        gap: 0.8rem;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

}

/* --------- END Cookies Consent Popup --------- */