/* ── css-variables.css ─────────────────────── */
:root {
    --primary: #1c98e0;
    --secondary: #35415b;
    --tertiary: #ff4400;
    --primary-hover: #158fd3;
    --secondary-hover: rgba(53, 65, 91, 0.8);
    --tertiary-hover: #ef4b10;
    --anchor-color: #1c98e0;
    --anchor-hover-color: #1c98e0;
    --text-gradient: linear-gradient(to bottom, #1c98e0 25%, #ff4400 75%);
    --container-max-width: 1300px;
    --font-sans: sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
    --default-font: "DM Sans", var(--font-sans);
    --headings-font: "Playfair Display", var(--font-serif);
    --default-font-size: 16px;
    --default-line-height: 1.6;
    --body-text-color: #595960;
    --body-font-weight: 400;
    --headings-text-color: #000000;
    --p-margin: 0 0 20px;
    --headings-margin: 0 0 20px;
    --headings-font-weight: 600;
    --headings-line-height: 1.2;
    --headings-letter-spacing: normal;
    --h1-size: clamp(30px, 5vw, 56px);
    --h2-size: clamp(27px, 4vw, 40px);
    --h3-size: clamp(24px, 3vw, 27px);
    --h4-size: clamp(20px, 2vw, 21px);
    --h5-size: 14px;
    --h6-size: 12px;
    --section-padding:100px 0;
    --section-padding-mobile: 70px 0;
    --section-header-margin: 50px;
    --section-header-font-weight: 500;
    --grid-gap: 30px;
    --gray: #f4f4f4;
    --bg-gray: #f8f8f8;
    --bg-light-gray: #f5f9ff;
    --bg-dark-gray: #c1c1c1;
    --page-title: 50px;
    --section-title: 42px;
    --btn-default-background: #363636;
    --btn-radius: 4px;
    --btn-letter-spacing: 0.5px;
    --btn-font-weight: 600;
    --btn-text-transform: uppercase;
    --btn-text-size: 14px;
    --btn-small-text-size: 13px;
    --btn-medium-text-size: 14px;
    --btn-large-text-size: 18px;
    --btn-padding: 15px 30px;
    --btn-small-padding: 8px 10px;
    --btn-medium-padding: 12px 20px;
    --btn-large-padding: 18px 30px;
    --mark-color: yellow;
    --selection-color: rgba(0, 119, 255, 0.1);
    --bold-text-font-weight: 600;
    /*animations*/
    --ease-in: cubic-bezier(.4,0,1,1);
    --ease-out: cubic-bezier(0,0,.2,1);
    --ease-in-out: cubic-bezier(.4,0,.2,1);
    --animate-spin: spin 1s linear infinite;
    --animate-ping: ping 1s cubic-bezier(0,0,.2,1) infinite;
    --animate-pulse: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
    --animate-bounce: bounce 1s infinite;
}

/* ── awt-grid-framework.css ─────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

html,body {
    line-height: 1.15;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
    scroll-behavior: smooth;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    background-color: var(--body-bg-color);
    color: var(--body-text-color);
    font-family: var(--default-font);
    font-size: var(--default-font-size);
    line-height: var(--default-line-height);
    font-weight: var(--body-font-weight);
    font-optical-sizing: auto;
}

p {
    margin: var(--p-margin)
}
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
    font-family: var(--headings-font);
    margin: var(--headings-margin);
    line-height: var(--headings-line-height);
    font-weight: var(--headings-font-weight);
    color: var(--headings-text-color);
    letter-spacing: var(--headings-letter-spacing);
}

h1,.h1 {
    font-size: var(--h1-size);
}

h2,.h2 {
    font-size: var(--h2-size);
}

h3,.h3 {
    font-size: var(--h3-size);
}

h4,.h4 {
    font-size: var(--h4-size);
}

h5,.h5 {
    font-size: var(--h5-size);
}

h6,.h6 {
    font-size: var(--h6-size);
}
a {
    display: inline-block;;
    color: var(--anchor-color);
    text-decoration: inherit;
    transition: all 0.2s;
    outline: none;
}

a:hover,
a:focus,
a:active {
    color: var(--anchor-hover-color);
}
.hover-text-black:hover {
    color: #000;
}
.hover-text-white:hover {
    color: #fff;
}
.hover-underline:hover {
    text-decoration: underline !important;
}
.hover-text-secondary:hover {
    color: var(--secondary);
}
.hover-text-primary:hover {
    color: var(--primary);
}
.hover-text-tertiary:hover {
    color: var(--tertiary);
}

main {
    padding: var(--main-padding);
}

main>section {
    padding: var(--section-padding);
}
.section-header {
    margin-bottom: var(--section-header-margin);
    font-weight: var(--section-header-font-weight);
}
iframe, picture, video, canvas {
    display: block;
    max-width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding-inline: 15px;
    margin-inline: auto;
}
.container-full {
    padding-inline: 15px;
    margin-inline: auto;
}

.container-full,
.container-full .container {
    max-width: 100%;
}

.container-full .container {
    padding-inline: 0px;
}

.grid {
    display: grid;
    gap: var(--grid-gap);
}
.cols-1 {
    grid-template-columns: repeat(1, 1fr);
}
.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.cols-3-9 {
    grid-template-columns: 3fr 9fr;
}

.cols-4-8 {
    grid-template-columns: 4fr 8fr;
}

.cols-5-7 {
    grid-template-columns: 5fr 7fr;
}

.cols-7-5 {
    grid-template-columns: 7fr 5fr;
}

.cols-9-3 {
    grid-template-columns: 9fr 3fr;
}

.cols-8-4 {
    grid-template-columns: 8fr 4fr;
}

.col-span-full {grid-column: 1 / -1;}
.col-span-1 {grid-column: span 1 / span 1;}
.col-span-2 {grid-column: span 2 / span 2;}
.col-span-3 {grid-column: span 3 / span 3;}
.col-span-4 {grid-column: span 4 / span 4;}
.col-span-5 {grid-column: span 5 / span 5;}

.row-span-full {grid-column: 1 / -1;}
.row-span-1 {grid-row: span 1 / span 1;}
.row-span-2 {grid-row: span 2 / span 2;}
.row-span-3 {grid-row: span 3 / span 3;}
.row-span-4 {grid-row: span 4 / span 4;}
.row-span-5 {grid-row: span 5 / span 5;}

.grid-cols-subgrid {grid-template-columns: subgrid;}
.grid-flow-col {
    grid-auto-flow: column;
}
/* Responsive Columns */
@media (min-width: 768px) {
    .tb-cols-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .tb-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tb-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tb-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .tb-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .tb-cols-3-9 {
        grid-template-columns: 3fr 9fr;
    }

    .tb-cols-4-8 {
        grid-template-columns: 4fr 8fr;
    }

    .tb-cols-5-7 {
        grid-template-columns: 5fr 7fr;
    }

    .tb-cols-7-5 {
        grid-template-columns: 7fr 5fr;
    }

    .tb-cols-9-3 {
        grid-template-columns: 9fr 3fr;
    }

    .tb-cols-8-4 {
        grid-template-columns: 8fr 4fr;
    }
    .tb-col-span-1,
    .tb-col-span-full {grid-column: 1 / -1;}
    .tb-col-span-2 {grid-column: span 2 / span 2;}
    .tb-col-span-3 {grid-column: span 3 / span 32;}
    .tb-col-span-4 {grid-column: span 4 / span 4;}
    .tb-col-span-5 {grid-column: span 5 / span 5;}

    .tb-row-span-1,
    .tb-row-span-full {grid-column: 1 / -1;}
    .tb-row-span-2 {grid-row: span 2 / span 2;}
    .tb-row-span-3 {grid-row: span 3 / span 32;}
    .tb- {grid-row: span 4 / span 4;}
    .tb-row-span-5 {grid-row: span 5 / span 5;}
}

@media (min-width: 1024px) {
    .dt-cols-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .dt-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .dt-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .dt-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .dt-cols-3-9 {
        grid-template-columns: 3fr 9fr;
    }

    .dt-cols-4-8 {
        grid-template-columns: 4fr 8fr;
    }

    .dt-cols-5-7 {
        grid-template-columns: 5fr 7fr;
    }

    .dt-cols-7-5 {
        grid-template-columns: 7fr 5fr;
    }

    .dt-cols-9-3 {
        grid-template-columns: 9fr 3fr;
    }

    .dt-cols-8-4 {
        grid-template-columns: 8fr 4fr;
    }
    .dt-col-span-1,
    .dt-col-span-full {grid-column: 1 / -1;}
    .dt-col-span-2 {grid-column: span 2 / span 2;}
    .dt-col-span-3 {grid-column: span 3 / span 3;}
    .dt-col-span-4 {grid-column: span 4 / span 4;}
    .dt-col-span-5 {grid-column: span 5 / span 5;}

    .dt-row-span-1,
    .dt-row-span-full {grid-column: 1 / -1;}
    .dt-row-span-2 {grid-row: span 2 / span 2;}
    .dt-row-span-3 {grid-row: span 3 / span 3;}
    .dt-row-span-4 {grid-row: span 4 / span 4;}
    .dt-row-span-5 {grid-row: span 5 / span 5;}
}

@media (min-width: 1600px) {
    .lg-cols-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .lg-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .lg-cols-3-9 {
        grid-template-columns: 3fr 9fr;
    }

    .lg-cols-4-8 {
        grid-template-columns: 4fr 8fr;
    }

    .lg-cols-5-7 {
        grid-template-columns: 5fr 7fr;
    }

    .lg-cols-7-5 {
        grid-template-columns: 7fr 5fr;
    }

    .lg-cols-9-3 {
        grid-template-columns: 9fr 3fr;
    }

    .lg-cols-8-4 {
        grid-template-columns: 8fr 4fr;
    }

    .lg-col-span-1,
    .lg-col-span-full {grid-column: 1 / -1;}
    .lg-col-span-2 {grid-column: span 2 / span 2;}
    .lg-col-span-3 {grid-column: span 3 / span 32;}
    .lg-col-span-4 {grid-column: span 4 / span 4;}
    .lg-col-span-5 {grid-column: span 5 / span 5;}

    .lg-row-span-1,
    .lg-row-span-full {grid-column: 1 / -1;}
    .lg-row-span-2 {grid-row: span 2 / span 2;}
    .lg-row-span-3 {grid-row: span 3 / span 32;}
    .lg-row-span-4 {grid-row: span 4 / span 4;}
    .lg-row-span-5 {grid-row: span 5 / span 5;}
}

@media (max-width: 1023px){

}

@media (max-width: 767px){
    .mb-col-span-1,
    .mb-col-span-full {grid-column: 1 / -1;}
    .mb-col-span-2 {grid-column: span 2 / span 2;}
    .mb-col-span-3 {grid-column: span 3 / span 3;}
    .mb-col-span-4 {grid-column: span 4 / span 4;}
    .mb-col-span-5 {grid-column: span 5 / span 5;}

    .mb-row-span-1,
    .mb-row-span-full {grid-column: 1 / -1;}
    .mb-row-span-2 {grid-row: span 2 / span 2;}
    .mb-row-span-3 {grid-row: span 3 / span 3;}
    .mb-row-span-4 {grid-row: span 4 / span 4;}
    .mb-row-span-5 {grid-row: span 5 / span 5;}
}
/*place content*/
.place-content-center {place-content: center;}
.place-content-start {place-content: start;}
.place-content-end {place-content: end;}
.place-content-between {place-content: space-between;}
.place-content-around {place-content: space-around;}
.place-content-evenly {place-content: space-evenly;}
.place-content-baseline {place-content: baseline;}
.place-content-stretch {place-content: stretch;}
/*place items*/
.place-content-center {place-items: center;}
.place-items-start {place-items: start;}
.place-items-end {place-items: end;}
.place-items-baseline {place-items: baseline;}
.place-items-stretch {place-items: stretch;}

.order-first {order: calc(-infinity);}
.order-last {order: calc(infinity);}
.order-none {order: 0;}
iframe {
    border: 0;
    display: block;
    max-width: 100%;
}

/* Remove tap highlight on mobile */
button, a, input, textarea, select {
    -webkit-tap-highlight-color: transparent;
}

/* Disabled element styling */
[disabled] {
    cursor: not-allowed;
    opacity: 0.8;
}
/* Custom text selection */
::selection {
    background: var(--selection-color);
    color: inherit;
}
[hidden] {
    display: none;
}
/* Obsolete HTML elements */
center, font, strike {
    all: unset;
}
ul, ol {margin-left: 20px;}
main ol, main ul, main dl {
    margin-bottom: 15px;
}

main ol ol,
main ul ul,
main ol ul,
main ul ol {
    margin-bottom: 5px;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: var(--bold-text-font-weight);
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

mark,
.mark {
    padding: 0.2em;
    background-color: var(--mark-color);
}

pre {
    white-space: pre-line;
    word-wrap: break-word;
    margin-bottom: 15px;
    overflow: auto;
    display: block;
    font-size: 85%;
}
.gap-0{grid-gap: 0;}
.gap-5{grid-gap: 5px;}
.gap-10{grid-gap: 10px;}
.gap-15{grid-gap: 15px;}
.gap-20{grid-gap: 20px;}
.gap-25{grid-gap: 25px;}
.gap-30{grid-gap: 25px;}

@media (max-width: 1023px) {
    .tb-gap-0{grid-gap: 0;}
    .tb-gap-5{grid-gap: 5px;}
    .tb-gap-10{grid-gap: 10px;}
    .tb-gap-15{grid-gap: 15px;}
    .tb-gap-20{grid-gap: 20px;}
    .tb-gap-25{grid-gap: 25px;}
    .tb-gap-25{grid-gap: 30px;}
}

@media (max-width: 767px) {
    .mb-gap-0{grid-gap: 0;}
    .mb-gap-5{grid-gap: 5px;}
    .mb-gap-10{grid-gap: 10px;}
    .mb-gap-15{grid-gap: 15px;}
    .mb-gap-20{grid-gap: 20px;}
    .mb-gap-25{grid-gap: 25px;}
    .mb-gap-25{grid-gap: 30px;}
}

 /* margins */
    .m-0 {margin: 0;}
    /* margin inline */
    .mx-0 { margin-inline: 0; }
    .mx-5 { margin-inline: 5px; }
    .mx-10 { margin-inline: 10px; }
    .mx-15 { margin-inline: 15px; }
    .mx-20 { margin-inline: 20px; }
    .mx-25 { margin-inline: 25px; }
    .mx-30 { margin-inline: 30px; }
    .mx-35 { margin-inline: 35px; }
    .mx-40 { margin-inline: 40px; }
    .mx-45 { margin-inline: 45px; }
    .mx-50 { margin-inline: 50px; }

    /* margin block */
    .my-0 { margin-block: 0; }
    .my-5 { margin-block: 5px; }
    .my-10 { margin-block: 10px; }
    .my-15 { margin-block: 15px; }
    .my-20 { margin-block: 20px; }
    .my-25 { margin-block: 25px; }
    .my-30 { margin-block: 30px; }
    .my-35 { margin-block: 35px; }
    .my-40 { margin-block: 40px; }
    .my-45 { margin-block: 45px; }
    .my-50 { margin-block: 50px; }
    .my-55 { margin-block: 55px; }
    .my-60 { margin-block: 60px; }
    .my-65 { margin-block: 65px; }
    .my-70 { margin-block: 70px; }
    .my-75 { margin-block: 75px; }
    .my-80 { margin-block: 80px; }
    .my-85 { margin-block: 85px; }
    .my-90 { margin-block: 90px; }
    .my-95 { margin-block: 95px; }
    .my-100 { margin-block: 100px; }

    /* margin top */
    .mt-0 {margin-top: 0;}
    .mt-5 {margin-top: 5px;}
    .mt-10 {margin-top: 10px;}
    .mt-15 {margin-top: 15px;}
    .mt-20 {margin-top: 20px;}
    .mt-25 {margin-top: 25px;}
    .mt-30 {margin-top: 30px;}
    .mt-35 {margin-top: 35px;}
    .mt-40 {margin-top: 40px;}
    .mt-45 {margin-top: 45px;}
    .mt-50 {margin-top: 50px;}
    .mt-55 {margin-top: 55px;}
    .mt-60 {margin-top: 60px;}
    .mt-65 {margin-top: 65px;}
    .mt-70 {margin-top: 70px;}
    .mt-75 {margin-top: 75px;}
    .mt-80 {margin-top: 80px;}
    .mt-85 {margin-top: 85px;}
    .mt-90 {margin-top: 90px;}
    .mt-95 {margin-top: 95px;}
    .mt-100 {margin-top: 100px;}

    /* margin bottom */
    .mb-0 {margin-bottom: 0;}
    .mb-5 {margin-bottom: 5px;}
    .mb-10 {margin-bottom: 10px;}
    .mb-15 {margin-bottom: 15px;}
    .mb-20 {margin-bottom: 20px;}
    .mb-25 {margin-bottom: 25px;}
    .mb-30 {margin-bottom: 30px;}
    .mb-35 {margin-bottom: 35px;}
    .mb-40 {margin-bottom: 40px;}
    .mb-45 {margin-bottom: 45px;}
    .mb-50 {margin-bottom: 50px;}
    .mb-55 {margin-bottom: 55px;}
    .mb-60 {margin-bottom: 60px;}
    .mb-65 {margin-bottom: 65px;}
    .mb-70 {margin-bottom: 70px;}
    .mb-75 {margin-bottom: 75px;}
    .mb-80 {margin-bottom: 80px;}
    .mb-85 {margin-bottom: 85px;}
    .mb-90 {margin-bottom: 90px;}
    .mb-95 {margin-bottom: 95px;}
    .mb-100 {margin-bottom: 100px;} 

    /* margin left */
    .ml-0 {margin-left: 0;}
    .ml-5 {margin-left: 5px;}
    .ml-10 {margin-left: 10px;}
    .ml-15 {margin-left: 15px;}
    .ml-20 {margin-left: 20px;}
    .ml-25 {margin-left: 25px;}
    .ml-30 {margin-left: 30px;}
    .ml-35 {margin-left: 35px;}
    .ml-40 {margin-left: 40px;}
    .ml-45 {margin-left: 45px;}
    .ml-50 {margin-left: 50px;}

    /* margin right */
    .mr-0 {margin-right: 0;}
    .mr-5 {margin-right: 5px;}
    .mr-10 {margin-right: 10px;}
    .mr-15 {margin-right: 15px;}
    .mr-20 {margin-right: 20px;}
    .mr-25 {margin-right: 25px;}
    .mr-30 {margin-right: 30px;}
    .mr-35 {margin-right: 35px;}
    .mr-40 {margin-right: 40px;}
    .mr-45 {margin-right: 45px;}
    .mr-50 {margin-right: 50px;}

    /* paddings */
    .p-0 {padding: 0;}
    .p-5 {padding: 5px;}
    .p-10 {padding: 10px;}
    .p-15 {padding: 15px;}
    .p-20 { padding: 20px; }
    .p-25 { padding: 25px; }
    .p-30 { padding: 30px; }
    .p-35 { padding: 35px; }
    .p-40 { padding: 40px; }
    .p-45 { padding: 45px; }
    .p-50 { padding: 50px; }

    /* padding inline */
    .px-0 { padding-inline: 0; }
    .px-5 { padding-inline: 5px; }
    .px-10 { padding-inline: 10px; }
    .px-15 { padding-inline: 15px; }
    .px-20 { padding-inline: 20px; }
    .px-25 { padding-inline: 25px; }
    .px-30 { padding-inline: 30px; }
    .px-35 { padding-inline: 35px; }
    .px-40 { padding-inline: 40px; }
    .px-45 { padding-inline: 45px; }
    .px-50 { padding-inline: 50px; }
    .px-55 { padding-inline: 55px; }
    .px-60 { padding-inline: 60px; }
    .px-65 { padding-inline: 65px; }
    .px-70 { padding-inline: 70px; }
    .px-75 { padding-inline: 75px; }
    .px-80 { padding-inline: 80px; }
    .px-85 { padding-inline: 85px; }
    .px-90 { padding-inline: 90px; }
    .px-95 { padding-inline: 95px; }
    .px-100 { padding-inline: 100px; }

    /* padding block */
    .py-0 { padding-block: 0; }
    .py-5 { padding-block: 5px; }
    .py-10 { padding-block: 10px; }
    .py-15 { padding-block: 15px; }
    .py-20 { padding-block: 20px; }
    .py-25 { padding-block: 25px; }
    .py-30 { padding-block: 30px; }
    .py-35 { padding-block: 35px; }
    .py-40 { padding-block: 40px; }
    .py-45 { padding-block: 45px; }
    .py-50 { padding-block: 50px; }
    .py-55 { padding-block: 55px; }
    .py-60 { padding-block: 60px; }
    .py-65 { padding-block: 65px; }
    .py-70 { padding-block: 70px; }
    .py-75 { padding-block: 75px; }
    .py-80 { padding-block: 80px; }
    .py-85 { padding-block: 85px; }
    .py-90 { padding-block: 90px; }
    .py-95 { padding-block: 95px; }
    .py-100 { padding-block: 100px; }

    /* padding top */
    .pt-0 { padding-top: 0; }
    .pt-5 { padding-top: 5px; }
    .pt-10 { padding-top: 10px; }
    .pt-15 { padding-top: 15px; }
    .pt-20 { padding-top: 20px; }
    .pt-25 { padding-top: 25px; }
    .pt-30 { padding-top: 30px; }
    .pt-35 { padding-top: 35px; }
    .pt-40 { padding-top: 40px; }
    .pt-45 { padding-top: 45px; }
    .pt-50 { padding-top: 50px; }
    .pt-55 { padding-top: 55px; }
    .pt-60 { padding-top: 60px; }
    .pt-65 { padding-top: 65px; }
    .pt-70 { padding-top: 70px; }
    .pt-75 { padding-top: 75px; }
    .pt-80 { padding-top: 80px; }
    .pt-85 { padding-top: 85px; }
    .pt-90 { padding-top: 90px; }
    .pt-95 { padding-top: 95px; }
    .pt-100 { padding-top: 100px; }
    
    /* padding bottom */
    .pb-0 { padding-bottom: 0; }
    .pb-5 { padding-bottom: 5px; }
    .pb-10 { padding-bottom: 10px; }
    .pb-15 { padding-bottom: 15px; }
    .pb-20 { padding-bottom: 20px; }
    .pb-25 { padding-bottom: 25px; }
    .pb-30 { padding-bottom: 30px; }
    .pb-35 { padding-bottom: 35px; }
    .pb-40 { padding-bottom: 40px; }
    .pb-45 { padding-bottom: 45px; }
    .pb-50 { padding-bottom: 50px; }
    .pb-55 { padding-bottom: 55px; }
    .pb-60 { padding-bottom: 60px; }
    .pb-65 { padding-bottom: 65px; }
    .pb-70 { padding-bottom: 70px; }
    .pb-75 { padding-bottom: 75px; }
    .pb-80 { padding-bottom: 80px; }
    .pb-85 { padding-bottom: 85px; }
    .pb-90 { padding-bottom: 90px; }
    .pb-95 { padding-bottom: 95px; }
    .pb-100 { padding-bottom: 100px; }

    /* padding left */
    .pl-0 { padding-left: 0; }
    .pl-5 { padding-left: 5px; }
    .pl-10 { padding-left: 10px; }
    .pl-15 { padding-left: 15px; }
    .pl-20 { padding-left: 20px; }
    .pl-25 { padding-left: 25px; }
    .pl-30 { padding-left: 30px; }
    .pl-35 { padding-left: 35px; }
    .pl-40 { padding-left: 40px; }
    .pl-45 { padding-left: 45px; }
    .pl-50 { padding-left: 50px; }

    /* padding right */
    .pr-0 { padding-right: 0; }
    .pr-5 { padding-right: 5px; }
    .pr-10 { padding-right: 10px; }
    .pr-15 { padding-right: 15px; }
    .pr-20 { padding-right: 20px; }
    .pr-25 { padding-right: 25px; }
    .pr-30 { padding-right: 30px; }
    .pr-35 { padding-right: 35px; }
    .pr-40 { padding-right: 40px; }
    .pr-45 { padding-right: 45px; }
    .pr-50 { padding-right: 50px; }
    
    @media (max-width: 767px) {
         /* margins */
    .mb-m-0 {margin: 0;}
    /* margin inline */
    .mb-mx-0 { margin-inline: 0; }
    .mb-mx-5 { margin-inline: 5px; }
    .mb-mx-10 { margin-inline: 10px; }
    .mb-mx-15 { margin-inline: 15px; }
    .mb-mx-20 { margin-inline: 20px; }
    .mb-mx-25 { margin-inline: 25px; }
    .mb-mx-30 { margin-inline: 30px; }
    .mb-mx-35 { margin-inline: 35px; }
    .mb-mx-40 { margin-inline: 40px; }
    .mb-mx-45 { margin-inline: 45px; }
    .mb-mx-50 { margin-inline: 50px; }

    /* margin block */
    .mb-my-0 { margin-block: 0; }
    .mb-my-5 { margin-block: 5px; }
    .mb-my-10 { margin-block: 10px; }
    .mb-my-15 { margin-block: 15px; }
    .mb-my-20 { margin-block: 20px; }
    .mb-my-25 { margin-block: 25px; }
    .mb-my-30 { margin-block: 30px; }
    .mb-my-35 { margin-block: 35px; }
    .mb-my-40 { margin-block: 40px; }
    .mb-my-45 { margin-block: 45px; }
    .mb-my-50 { margin-block: 50px; }
    

    /* margin top */
    .mb-mt-0 {margin-top: 0;}
    .mb-mt-5 {margin-top: 5px;}
    .mb-mt-10 {margin-top: 10px;}
    .mb-mt-15 {margin-top: 15px;}
    .mb-mt-20 {margin-top: 20px;}
    .mb-mt-25 {margin-top: 25px;}
    .mb-mt-30 {margin-top: 30px;}
    .mb-mt-35 {margin-top: 35px;}
    .mb-mt-40 {margin-top: 40px;}
    .mb-mt-45 {margin-top: 45px;}
    .mb-mt-50 {margin-top: 50px;}


    /* margin bottom */
    .mb-mb-0 {margin-bottom: 0;}
    .mb-mb-5 {margin-bottom: 5px;}
    .mb-mb-10 {margin-bottom: 10px;}
    .mb-mb-15 {margin-bottom: 15px;}
    .mb-mb-20 {margin-bottom: 20px;}
    .mb-mb-25 {margin-bottom: 25px;}
    .mb-mb-30 {margin-bottom: 30px;}
    .mb-mb-35 {margin-bottom: 35px;}
    .mb-mb-40 {margin-bottom: 40px;}
    .mb-mb-45 {margin-bottom: 45px;}
    .mb-mb-50 {margin-bottom: 50px;}


    /* margin left */
    .mb-ml-0 {margin-left: 0;}
    .mb-ml-5 {margin-left: 5px;}
    .mb-ml-10 {margin-left: 10px;}
    .mb-ml-15 {margin-left: 15px;}
    .mb-ml-20 {margin-left: 20px;}
    .mb-ml-25 {margin-left: 25px;}
    .mb-ml-30 {margin-left: 30px;}
    .mb-ml-35 {margin-left: 35px;}
    .mb-ml-40 {margin-left: 40px;}
    .mb-ml-45 {margin-left: 45px;}
    .mb-ml-50 {margin-left: 50px;}

    /* margin right */
    .mb-mr-0 {margin-right: 0;}
    .mb-mr-5 {margin-right: 5px;}
    .mb-mr-10 {margin-right: 10px;}
    .mb-mr-15 {margin-right: 15px;}
    .mb-mr-20 {margin-right: 20px;}
    .mb-mr-25 {margin-right: 25px;}
    .mb-mr-30 {margin-right: 30px;}
    .mb-mr-35 {margin-right: 35px;}
    .mb-mr-40 {margin-right: 40px;}
    .mb-mr-45 {margin-right: 45px;}
    .mb-mr-50 {margin-right: 50px;}

    /* paddings */
    .mb-p-0 {padding: 0;}
    .mb-p-5 {padding: 5px;}
    .mb-p-10 {padding: 10px;}
    .mb-p-15 {padding: 15px;}
    .mb-p-20 { padding: 20px; }
    .mb-p-25 { padding: 25px; }
    .mb-p-30 { padding: 30px; }
    .mb-p-35 { padding: 35px; }
    .mb-p-40 { padding: 40px; }
    .mb-p-45 { padding: 45px; }
    .mb-p-50 { padding: 50px; }

    /* padding inline */
    .mb-px-0 { padding-inline: 0; }
    .mb-px-5 { padding-inline: 5px; }
    .mb-px-10 { padding-inline: 10px; }
    .mb-px-15 { padding-inline: 15px; }
    .mb-px-20 { padding-inline: 20px; }
    .mb-px-25 { padding-inline: 25px; }
    .mb-px-30 { padding-inline: 30px; }
    .mb-px-35 { padding-inline: 35px; }
    .mb-px-40 { padding-inline: 40px; }
    .mb-px-45 { padding-inline: 45px; }
    .mb-px-50 { padding-inline: 50px; }

    /* padding block */
    .mb-py-0 { padding-block: 0; }
    .mb-py-5 { padding-block: 5px; }
    .mb-py-10 { padding-block: 10px; }
    .mb-py-15 { padding-block: 15px; }
    .mb-py-20 { padding-block: 20px; }
    .mb-py-25 { padding-block: 25px; }
    .mb-py-30 { padding-block: 30px; }
    .mb-py-35 { padding-block: 35px; }
    .mb-py-40 { padding-block: 40px; }
    .mb-py-45 { padding-block: 45px; }
    .mb-py-50 { padding-block: 50px; }
    .mb-py-55 { padding-block: 55px; }
    .mb-py-60 { padding-block: 60px; }
    .mb-py-65 { padding-block: 65px; }
    .mb-py-70 { padding-block: 70px; }
    .mb-py-75 { padding-block: 75px; }
    .mb-py-80 { padding-block: 80px; }
    .mb-py-85 { padding-block: 85px; }
    .mb-py-90 { padding-block: 90px; }
    .mb-py-95 { padding-block: 95px; }
    .mb-py-100 { padding-block: 100px; }

    /* padding top */
    .mb-pt-0 { padding-top: 0; }
    .mb-pt-5 { padding-top: 5px; }
    .mb-pt-10 { padding-top: 10px; }
    .mb-pt-15 { padding-top: 15px; }
    .mb-pt-20 { padding-top: 20px; }
    .mb-pt-25 { padding-top: 25px; }
    .mb-pt-30 { padding-top: 30px; }
    .mb-pt-35 { padding-top: 35px; }
    .mb-pt-40 { padding-top: 40px; }
    .mb-pt-45 { padding-top: 45px; }
    .mb-pt-50 { padding-top: 50px; }
    .mb-pt-55 { padding-top: 55px; }
    .mb-pt-60 { padding-top: 60px; }
    .mb-pt-65 { padding-top: 65px; }
    .mb-pt-70 { padding-top: 70px; }
    .mb-pt-75 { padding-top: 75px; }
    .mb-pt-80 { padding-top: 80px; }
    .mb-pt-85 { padding-top: 85px; }
    .mb-pt-90 { padding-top: 90px; }
    .mb-pt-95 { padding-top: 95px; }
    .mb-pt-100 { padding-top: 100px; }
    
    /* padding bottom */
    .mb-pb-0 { padding-bottom: 0; }
    .mb-pb-5 { padding-bottom: 5px; }
    .mb-pb-10 { padding-bottom: 10px; }
    .mb-pb-15 { padding-bottom: 15px; }
    .mb-pb-20 { padding-bottom: 20px; }
    .mb-pb-25 { padding-bottom: 25px; }
    .mb-pb-30 { padding-bottom: 30px; }
    .mb-pb-35 { padding-bottom: 35px; }
    .mb-pb-40 { padding-bottom: 40px; }
    .mb-pb-45 { padding-bottom: 45px; }
    .mb-pb-50 { padding-bottom: 50px; }
    .mb-pb-55 { padding-bottom: 55px; }
    .mb-pb-60 { padding-bottom: 60px; }
    .mb-pb-65 { padding-bottom: 65px; }
    .mb-pb-70 { padding-bottom: 70px; }
    .mb-pb-75 { padding-bottom: 75px; }
    .mb-pb-80 { padding-bottom: 80px; }
    .mb-pb-85 { padding-bottom: 85px; }
    .mb-pb-90 { padding-bottom: 90px; }
    .mb-pb-95 { padding-bottom: 95px; }
    .mb-pb-100 { padding-bottom: 100px; }

    /* padding left */
    .mb-pl-0 { padding-left: 0; }
    .mb-pl-5 { padding-left: 5px; }
    .mb-pl-10 { padding-left: 10px; }
    .mb-pl-15 { padding-left: 15px; }
    .mb-pl-20 { padding-left: 20px; }
    .mb-pl-25 { padding-left: 25px; }
    .mb-pl-30 { padding-left: 30px; }
    .mb-pl-35 { padding-left: 35px; }
    .mb-pl-40 { padding-left: 40px; }
    .mb-pl-45 { padding-left: 45px; }
    .mb-pl-50 { padding-left: 50px; }

    /* padding right */
    .mb-pr-0 { padding-right: 0; }
    .mb-pr-5 { padding-right: 5px; }
    .mb-pr-10 { padding-right: 10px; }
    .mb-pr-15 { padding-right: 15px; }
    .mb-pr-20 { padding-right: 20px; }
    .mb-pr-25 { padding-right: 25px; }
    .mb-pr-30 { padding-right: 30px; }
    .mb-pr-35 { padding-right: 35px; }
    .mb-pr-40 { padding-right: 40px; }
    .mb-pr-45 { padding-right: 45px; }
    .mb-pr-50 { padding-right: 50px; }
    
    }

/*grid columns alignment*/
.v-align-top {
    align-items: start;
}

.v-align-center {
    align-items: center;
}

.v-align-bottom {
    align-items: end;
}

.v-align-stretch {
    align-items: stretch;
}
/*justify content*/
.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}
.justify-content-stretch {
    justify-content: stretch;
}
/*justify items*/
.justify-items-start {
    justify-items: start;
}
.justify-items-end {
    justify-items: end;
}
.justify-items-center {
    justify-items: center;
}
.justify-items-stretch {
    justify-items: stretch;
}
.justify-items-normal {
    justify-items: normal;
}
/*align items*/
.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-self-start {
    align-self: flex-start;
}
.align-self-center {
    align-self: center;
}
.align-self-end {
    align-self: flex-end;
}


.text-default {
    color: var(--body-text-color);
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}
.text-tertiary {
    color: var(--tertiary);
}

.text-black {
    color: #000;
}

.text-white {
    color: #fff;
}
.text-gradient {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 100%;
    background-color: rgb(66, 133, 244);
    background-image: var(--text-gradient);
}
.b-gradient {
    border-image: linear-gradient(45deg, var(--primary), var(--secondary)) 1;
}
.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}
.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #000;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-dark-gray {
    background-color: var(--bg-dark-gray);
}

.bg-light-gray {
    background-color: var(--bg-light-gray);
}

.bg-transparent {
    background-color: transparent;
}
.btn,
button,
input[type="button"],
input[type="submit"] {
    font-size: var(--btn-text-size);
    height: auto;
    line-height: 1;
    padding: var(--btn-padding);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    letter-spacing: var(--btn-letter-spacing);
    border: none;
    background-color: var(--btn-default-background);
    color: #fff;
    font-weight: var(--btn-font-weight);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border-radius: var(--btn-radius);
    text-transform: var(--btn-text-transform);
}

.btn:hover,
.btn:focus {
    background-color: #000;
    color: #fff;
}
.btn.btn-flat {border-radius: 0;}
.btn.btn-small {
    padding: var(--btn-small-padding);
    font-size: var(--btn-small-text-size);
}
.btn.btn-medium {
    padding: var(--btn-medium-padding);
    font-size: var(--btn-medium-text-size);
}

.btn.btn-large {
    font-size: var(--btn-large-text-size);
    padding: var(--btn-large-padding);
}

.btn.btn-rounded {
    border-radius: 50px;
}

.btn.btn-small-rounded {
    border-radius: 4px;
}

.btn.btn-black {
    background: #000;
    color: #fff;
}

.btn.btn-black:hover,
.btn.btn-black:focus {
    background-color: rgba(0, 0, 0, 0.87);
    color: #fff;
}

.btn.btn-white {
    background: #fff;
    color: #000;
}

.btn.btn-white:hover,
.btn.btn-white:focus {
    background-color: #f8f8f8;
    color: #000;
}

.btn.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: var(--primary-hover);
    color: #fff;
}

.btn.btn-secondary {
    background: var(--secondary);
    color: #fff;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: var(--secondary-hover);
    color: #fff;
}
.btn.btn-tertiary {
    background: var(--tertiary);
    color: #fff;
}

.btn.btn-tertiary:hover,
.btn.btn-tertiary:focus {
    background: var(--tertiary-hover);
    color: #fff;
}

.btn.btn-primary-bordered {
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn.btn-primary-bordered:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn.btn-secondary-bordered {
    background: none;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn.btn-secondary-bordered:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}
.btn.btn-tertiary-bordered {
    background: none;
    border: 2px solid var(--tertiary);
    color: var(--secondary);
}

.btn.btn-tertiary-bordered:hover {
    background: var(--tertiary);
    border-color: var(--tertiary);
    color: #fff;
}

.btn.btn-white-bordered {
    background: none;
    border: 2px solid CurrentColor;
    color: #fff;
}

.btn.btn-white-bordered:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
}

.btn.btn-black-bordered {
    background: none;
    border: 2px solid CurrentColor;
    color: #000;
}

.btn.btn-black-bordered:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}
svg {
    overflow: hidden;
    vertical-align: middle;
    fill: CurrentColor;
}

.fill-current {
    fill: currentColor;
}

.fill-white {
    fill: #fff;
}

.fill-black {
    fill: #000;
}

.fill-primary {
    fill: var(--primary);
}

.fill-secondary {
    fill: var(--secondary);
}

.fill-none {fill: none;}
.stroke-current {
    stroke: currentColor;
}

.stroke-white {
    stroke: #fff;
}

.stroke-black {
    stroke: #000;
}

.stroke-primary {
    stroke: var(--primary);
}

.stroke-secondary {
    stroke: var(--secondary);
}
.stroke-none {stroke: none;}

/*overflows*/
.overflow-hidden {
    overflow: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}
.no-display {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}
.inline-grid {display: inline-grid;}
.flex {display: flex;}
.inline-flex {display: inline-flex;;}

@media (min-width:768px) {
    .tb-flex {display: flex;}
}
@media (min-width:1024px) {
    .lg-grid {display: grid;}
    .dt-flex {display: flex;}
    .dt-hide {
        display: none;
    }
}

@media (min-width: 1600px) {
    .lg-grid {display: grid;}
    .lg-flex {display: flex;}
    .lg-hide {
        display: none;
    }
}
@media screen and (max-width:1023px) {
    .tb-block {
        display: block;
    }
    .tb-grid {display: grid;}
    .tb-inline-block {
        display: inline-block;
    }

    .tb-hide {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .mb-block {
        display: block;
    }
    .mb-grid {display: grid;}
    .mb-inline-block {
        display: inline-block;
    }

    .mb-hide {
        display: none;
    }
}
.fw-normal {
    font-weight: normal;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

/*text Cases*/
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

/*text-decoration*/
.no-underline {
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}
.overline {text-decoration: overline;}
.line-through {text-decoration: line-through;}
/* font sizes */
.fs-10 {font-size: 10px;}
.fs-11 {font-size: 11px;}
.fs-12 {font-size: 12px;}
.fs-13 {font-size: 13px;}
.fs-14 {font-size: 14px;}
.fs-15 {font-size: 15px;}
.fs-16 {font-size: 16px;}
.fs-17 {font-size: 17px;}
.fs-18 {font-size: 18px;}
.fs-19 {font-size: 19px;}
.fs-20 {font-size: 20px;}

/*text-wrap*/
.text-wrap {text-wrap: wrap;}
.text-balance {text-wrap: balance;}
.text-pretty {text-wrap: pretty;}

.text-clip {text-overflow: clip;}
.whitespace-normal {
    white-space: normal;
}
.whitespace-pre-line {
    white-space: pre-line;
}
.break-normal {
    overflow-wrap: normal;
    word-break: normal;
}
.break-words {
overflow-wrap: break-word;
}
.hyphens-auto {hyphens: auto;}
.cursor-pointer {
    cursor: pointer;
}

/*hide text*/
.hide {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

/*floats*/
.f-left {
    float: left;
}

.f-right {
    float: right;
}

.f-none {
    float: none;
}


@media (max-width:767px) {
    .mb-f-none {
        float: none;
        clear: both;
    }
}


/*Alignments*/
.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.justify {
    text-align: justify;
    text-justify: inter-word;
}

@media screen and (max-width:1023px) {
    .tb-align-center {
        text-align: center;
    }

    .tb-align-left {
        text-align: left;
    }

    .tb-align-right {
        text-align: right;
    }

    .tb-justify {
        text-align: justify;
        text-justify: inter-word;
    }
}

@media screen and (max-width:767px) {
    .mb-align-center {
        text-align: center;
    }

    .mb-align-left {
        text-align: left;
    }

    .mb-align-right {
        text-align: right;
    }

    .mb-justify {
        text-align: justify;
        text-justify: inter-word;
    }
}
[class*="max-w-"] {margin-inline: auto;width: 100%}
.m-auto {margin: auto;}
.mx-auto {margin-inline: auto;}
.clear-left {clear: left;}
.clear-right {clear: right;}
.clear {clear: both;}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
    clear: both;
}

@media screen and (max-width:1023px) {
    .tb-center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        float: none;
        clear: both;
    }
    .tb-clear {clear: both;}
    .tb-visible {visibility: visible;}
    .tb-invisible {visibility: hidden;}
}
@media screen and (max-width:767px) {
    .mb-center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        float: none;
        clear: both;
    }
    .mb-clear {clear: both;}
    .mb-visible {visibility: visible;}
    .mb-invisible {visibility: hidden;}
}
/*object fit*/
.object-contain {object-fit: contain;}
.object-cover{object-fit: cover;}
.object-fill{object-fit: fill;}
.object-none{object-fit: none;}
.object-scale-down{object-fit: cover;}

.circle,
.rounded {
    border-radius: 50%;
}
/*horizontal center*/
.h-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}

/*vertical center*/
.v-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 11;
}

/*Vertically and Horizontally center an element*/
.vh-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}

/*positions*/
.static {
    position: static;
}
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}
.sticky {
    position: sticky;
    top: 0;
}
.left-auto {
    left: auto;
}
.right-auto {
    right: auto;
}
.top-auto {
    top: auto;
}
.bottom-auto {
    bottom: auto;
}
@media (min-width: 1024px) {
    .dt-static {
        position: static;
        transform: translate(0%, 0%);
    }
    .dt-relative {
        position: relative;
        transform: translate(0%, 0%);
    }
    .dt-left-auto {
        left: auto;
    }
    .dt-right-auto {
        right: auto;
    }
}
@media (min-width: 1600px) {
    .lg-static {
        position: static;
        transform: translate(0%, 0%);
    }
    .lg-relative {
        position: relative;
        transform: translate(0%, 0%);
    }
    .lg-left-auto {
        left: auto;
    }
    .lg-right-auto {
        right: auto;
    }
}
@media (max-width: 1023px) {
    .tb-static {
        position: static;
        transform: translate(0%, 0%);
    }
    .tb-left-auto {
        left: auto;
    }
    .tb-right-auto {
        right: auto;
    }
}

@media (max-width:767px) {
    .mb-static {
        position: static;
        transform: translate(0%, 0%);
    }
    .mb-left-auto {
        left: auto !important;
    }
    .mb-right-auto {
        right: auto !important;
    }
}

.bg-image,
.bg-parallax {
    background-position: center center;
    background-size: cover;
    background-color: transparent;
    background-repeat: no-repeat;
    position: relative;
}

.bg-parallax {
    background-attachment: fixed;
}
.bg-scroll {
    background-attachment: scroll;
}
.bg-cover {background-size: cover;}
.bg-contain {background-size: contain;}
.bg-center-top{background-position: center top;}
.bg-center-bottom{background-position: center bottom;}
.bg-left-top {
    background-position: left top;
}

.bg-left-center {
    background-position: left center;
}

.bg-left-bottom {
    background-position: left bottom;
}

.bg-right-top {
    background-position: right top;
}

.bg-right-center {
    background-position: right center;
}

.bg-right-bottom {
    background-position: right bottom;
}

/*bg-clip*/
.bg-clip-text {background-clip: text;}
.bg-clip-content {background-clip: content-box;}


[class*="bg-overlay"] {
    position: relative;
    z-index: 0;
}

[class*="bg-overlay"] .container {
    z-index: 11;
    position: relative;
}
[class*="bg-overlay"]:before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-overlay-black:before {
    background-color: #000;
    opacity: 0.8;
}

.bg-overlay-white:before {
    background-color: #fff;
    opacity: 0.8;
}

.bg-overlay-primary:before {
    background-color: var(--primary);
    opacity: 0.8;
}

.bg-overlay-secondary:before {
    background-color: var(--secondary);
    opacity: 0.8;
}
.bg-overlay-tertiary:before {
    background-color: var(--tertiary);
    opacity: 0.8;
}

.border-current {
    border-color: currentColor;
}
.border-transparent {
    border-color: transparent;
}
.border-black {
    border-color: #000;
}
.border-white {
    border-color: #fff;
}
.border-primary {
    border-color: var(--primary);
}
.border-secondary {
    border-color: var(--secondary);
}
.border-tertiary {
    border-color: var(--tertiary);
}
.border-gray {
    border-color: var(--gray);
}

.border {border-width: 1px;}
.border-solid {border-style: solid;}
.border-dashed {border-style: dashed;}
.border-dotted {border-style: dotted;}
.border-double {border-style: double;}
.border-none {border-style: none;}
--border-style {
    syntax: "*";
    inherits: false;
    initial-value: solid;
}

[class*="b-t-"].b-t-solid {border-block-start-style: solid;}
[class*="b-r-"].b-r-solid {border-inline-end-style: solid;}
[class*="b-b-"].b-b-solid {border-block-end-style: solid;}
[class*="b-l-"].b-l-solid {border-inline-start-style: solid;}
[class*="b-t-"].b-t-dashed {border-block-start-style: dashed;}
[class*="b-r-"].b-r-dashed {border-inline-end-style: dashed;}
[class*="b-b-"].b-b-dashed {border-block-end-style: dashed;}
[class*="b-l-"].b-l-dashed {border-inline-start-style: dashed;}
[class*="b-t-"].b-t-dotted {border-block-start-style: dotted;}
[class*="b-r-"].b-r-dotted {border-inline-end-style: dotted;}
[class*="b-b-"].b-b-dotted {border-block-end-style: dotted;}
[class*="b-l-"].b-l-dotted {border-inline-start-style: dotted;}

.outline {outline-width: 1px;}
.outline-solid {outline-style: solid;}
.outline-dashed {outline-style: dashed;}
.outline-dotted {outline-style: dotted;}
.outline-double {outline-style: double;}
.outline-none {outline-style: none;}
.outline-hidden {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.outline-current {
    outline-color: currentColor;
}
.outline-transparent {
    outline-color: transparent;
}
.outline-black {
    outline-color: #000;
}
.outline-white {
    outline-color: #fff;
}
.outline-primary {
    outline-color: var(--primary);
}
.outline-secondary {
    outline-color: var(--secondary);
}

.grayscale {filter: grayscale(100%);}
table {border-color: inherit;border-collapse: collapse;}
.table-auto {table-layout: auto;}
.table-fixed {table-layout: fixed;}
.border-collapse {
    border-collapse: collapse;
}

.border-separate {
    border-collapse: separate;
}
.caption-top {
    caption-side: top;
}
.caption-bottom {
caption-side: bottom;
}
.transition-none {
    transition-property: none;
}
p:empty {
    display: none;
}
@media (max-width: 767px) {
    main > section {
        padding: var(--section-padding-mobile);
    }
}

/*animations*/
.fade-in, .fade-in-left, .fade-in-right, .fade-in-down, .fade-in-up, .zoom-in {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Define slide directions before animation */
.fade-in {transform: translateY(10px);}
.fade-in-left {transform: translateX(-50px);}
.fade-in-right {transform: translateX(50px);}
.fade-in-down {transform: translateY(-50px);}
.fade-in-up {transform: translateY(50px);}
.zoom-in {transform: scale(0.5);}

@media (max-width:1023px) {
    .tb-fade-in {
        transform: translateY(10px);
    }
    .tb-fade-in-down {
        transform: translateY(-50px);
    }
    .tb-fade-in-up {
        transform: translateY(50px);
    }
    .tb-zoom-in {
        transform: scale(0.5);
    }
}

@media (max-width:767px) {
    .mb-fade-in {
        transform: translateY(10px);
    }
    .mb-fade-in-down {
        transform: translateY(-50px);
    }
    .mb-fade-in-up {
        transform: translateY(50px);
    }
    .mb-zoom-in {
        transform: scale(0.5);
    }
}


/* Active state when in view */
.animated {
    opacity: 1; /* Fade in */
    visibility: visible;
    transform: translate(0, 0); /* Slide to original position */
}
.visible {visibility: visible;}
.invisible {visibility: hidden;}
.z-auto {z-index: auto;}

.animate-spin {
    animation: var(--animate-spin);
}
.animate-ping {
    animation: var(--animate-ping);
}
.animate-pulse {
    animation: var(--animate-pulse);
}
.animate-bounce {
    animation: var(--animate-bounce);
}
.animate-none {animation: none;}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
/*transitions*/
.ease-in{transition-timing-function:var(--ease-in)}
.ease-in-out{transition-timing-function:var(--ease-in-out)}
.ease-out{transition-timing-function:var(--ease-out)}
/*aspect ratio*/
.aspect-1\/1 {
    aspect-ratio: 1
}

.aspect-2\/1 {
    aspect-ratio: 2
}

.aspect-3\/2 {
    aspect-ratio: 3/2;
}

.aspect-3\/4 {
    aspect-ratio: 3/4
}

.aspect-6\/5 {
    aspect-ratio: 6/5
}

.aspect-16\/9 {
    aspect-ratio: 16/9
}

.aspect-\[7\/9\] {
    aspect-ratio: 7/9
}
.box-border {
    box-sizing: border-box;
}
.box-content {
    box-sizing: content-box;
}


.overflow-auto {overflow: auto;}
.overflow-hidden {overflow: hidden;}
.overflow-scroll {overflow: scroll;}
.overflow-visible {overflow: visible;}
.overflow-x-auto {overflow-x: auto;}
.overflow-x-hidden {overflow-x: hidden;}
.overflow-x-scroll {overflow-x: scroll;}
.overflow-x-visible {overflow-x: visible;}
.overflow-y-auto {overflow-y: auto;}
.overflow-y-hidden {overflow-y: hidden;}
.overflow-y-scroll {overflow-y: scroll;}
.overflow-y-visible {overflow-y: visible;}

/*user-select*/
.select-all{user-select:all}
.select-none{user-select:none}
.select-text{user-select:text}

/* Width & Height */
    .w-auto { width: auto; }
    .w-full { width: 100%; }
    .max-w-full { max-width: 100%; }
    .w-0 { width: 0; }
    .w-5 { width: 5px; }
    .w-10 { width: 10px; }
    .w-15 { width: 15px; }
    .w-20 { width: 20px; }
    .w-25 { width: 25px; }
    .w-30 { width: 30px; }
    .w-35 { width: 35px; }
    .w-40 { width: 40px; }
    .w-45 { width: 45px; }
    .w-50 { width: 50px; }
    .w-55 { width: 55px; }
    .w-60 { width: 60px; }
    .w-65 { width: 65px; }
    .w-70 { width: 70px; }
    .w-75 { width: 75px; }
    .w-80 { width: 80px; }
    .w-85 { width: 85px; }
    .w-90 { width: 90px; }
    .w-95 { width: 95px; }
    .w-100 { width: 100px; }
    .w-120 { width: 120px; }
    .w-150 { width: 150px; }
    .w-200 { width: 200px; }


    .h-auto { height: auto; }
    .h-full { height: 100%; }
    .max-h-full { max-height: 100%; }
    .h-0 { height: 0; }
    .h-5 { height: 5px; }
    .h-10 { height: 10px; }
    .h-15 { height: 15px; }
    .h-20 { height: 20px; }
    .h-25 { height: 25px; }
    .h-30 { height: 30px; }
    .h-35 { height: 35px; }
    .h-40 { height: 40px; }
    .h-45 { height: 45px; }
    .h-50 { height: 50px; }
    .h-55 { height: 55px; }
    .h-60 { height: 60px; }
    .h-65 { height: 65px; }
    .h-70 { height: 70px; }
    .h-75 { height: 75px; }
    .h-80 { height: 80px; }
    .h-85 { height: 85px; }
    .h-90 { height: 90px; }
    .h-95 { height: 95px; }
    .h-100 { height: 100px; }
    .h-120 { height: 120px; }
    .h-150 { height: 150px; }
    .h-170 { height: 170px; }
    .h-180 { height: 180px; }
    .h-200 { height: 200px; }

/*Menus*/
.nav ul,
nav ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.nav a,
nav a {
    text-decoration: none;
    display: block;
}

.h-nav li {
    display: block;
}

.v-nav li {
    display: block;
    float: none;
    margin: 0;
    padding: 0;
}

.inline-list li {
    float: none;
    display: inline-block;
    margin-right: 5px;
}
.no-list {list-style: none;}


/*alphabetical list*/
.styled-list {
    list-style: none;
    counter-reset: listStyle;
    margin-left: 10px;
}

.styled-list li {
    position: relative;
    counter-increment: listStyle;
    margin-bottom: 20px;
    padding-left: 20px;
}

.styled-list li:before {
    position: absolute;
    left: 0;
    color: var(--primary);
    display: inline-block;
}

.alpha-list li:before {
    content: counter(listStyle, lower-alpha) ".";
    top: 3px;
}

.number-list li:before {
    content: counter(listStyle, decimal) ".";
    top: 3px;
}

.bullet-list li:before {
    content: "";
    top: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #666;
    border: none;
}

/*circle list*/
.circle-list li:before {
    content: "";
    top: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #666;
    background-color: transparent;
}

/*fa list*/
.fa-icon-list li:before {
    top: 4px;
    font-family: 'FontAwesome';
    font-weight: normal;
    font-style: normal;
}

.accordion{
    display: grid;
    gap: 20px;
}
.accordion-item{
    border: 1px solid #dee3ed;
    border-radius: 8px;
}
.accordion-item .accordion-title{
background-color: var(--bg-gray);
    display: flex;
    align-items: center;
    padding: 15px 35px 15px 20px;
    font-size: 18px;
    margin: 0;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
.accordion-item.active .accordion-title{
color: var(--primary);
    border-radius: 8px 8px 0 0;
}
.accordion-item .accordion-title::before,
.accordion-item .accordion-title::after {
    content: "";
    position: absolute;
    background: black;
    transition: transform 0.3s ease-in-out;
}

/* Vertical Line (|) */
.accordion-item .accordion-title::before {
    width: 2px;
    height: 14px;
    top: 16px;
    right: 20px;
}

/* Horizontal Line (—) */
.accordion-item .accordion-title::after {
    width: 14px;
    height: 2px;
    top: 22px;
    right: 14px;
}

/* When Active (Minus Sign) */
.accordion-item .accordion-title.active::before {
    transform: rotate(90deg);
    opacity: 0;
}
.accordion-item .accordion-content {
    border-top: 1px solid #dee3ed;
    padding: 20px;
    display: none;
}
/*tabs*/
.tab-content:not(.active) {
    display: none;
}
/*dropdown*/
.dropdown {position: relative;display: inline-block;}
.dropdown .dropdown-trigger {position: relative;display: inline-flex;}
.dropdown .dropdown-trigger:after {
position: absolute;
   content: "";
    display: block;
    background: url('new/images/icons/caret-down-white.svg') no-repeat right center;
    background-size: 20px;
    width: 15px;
    height: 15px;
    right: 10px;
}
.dropdown.open .dropdown-trigger:after {
transform: rotate(180deg);
}
.dropdown-list {display: none;list-style: none;margin: 0;padding: 0px;background: #fff;
    border: 1px solid #ebeff2;position: absolute;z-index: 1;min-width: 240px;left: -50px;}
.dropdown-list.show {display: block;}
.dropdown-list li:nth-child(odd){background-color: #ebeff2;}
.dropdown-list a {display: block;padding: 5px 10px;font-size: 14px;}
.dropdown-list li a:hover {background-color: var(--primary);color: #fff;}

/* ── header.css ─────────────────────── */
#main-header {
    transition: all 0.3s ease-in-out;
}
#main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    /*box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-in;
}
#main-header.sticky .top-header {display: none;}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.top-header {font-size: 14px;font-weight: 500;}
.top-header .book-now-btn {
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
}
.social-icons a {color: #000;}
.social-icons a:hover {color: var(--primary);}
.social-icons svg {width: 14px;height: 14px;}
.language-selector {
    position: relative;
    display: inline-block;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: white;
    color: #000;
    font-size: 13px;
    padding: 4px;
    font-weight: 500;
    border: 1px solid #dee3ed;
}

.lang-dropdown button img {
    width: 20px;
    margin-right: 5px;
}

.lang-list {
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    top: 108%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    width: 105px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 11;
}

.lang-list.show {
    display: block;
}

.lang-list li {
    padding: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.lang-list li:hover {
    background: #f0f0f0;
}

.lang-list img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
}
.header-nav .nav > li > a {font-weight: 600;font-size: 15px;}
.header-nav li a {color: #000;}
.header-nav .nav > li {position: relative;}

.nav li.has-dropdown {position: relative;}
.nav li .arrow {
    display: block;
    width: 20px;
    height: 25px;
    background: url("new/images/icons/angle-down.svg") no-repeat center center;
    background-size: 25px auto;
    position: absolute;
    right: 0;
    top: 1px;
}
.mega-menu-img img {
    width: 100%;
    height: 80px;
    object-fit: fill;
}
.mega-menu .h4 {
    font-size: 18px;
    padding: 5px;
    text-align: center;
    background-color: #fff;
    color: #000;
}
.mega-menu ul li + li {margin-top: 5px;border-top: 1px solid rgba(238, 238, 238, 0.26);padding-top: 5px;}
.mega-menu ul li a {color: #fff;font-size: 14px;}
.mega-menu ul li a:hover {color: #dedede;}
.mega-menu .estates {
    border-top:3px solid #796946;

}
.mega-menu .estates .estates-link {
    padding: 20px;
    background: #222330;
    display: grid;
    color: #e3c685;
    gap: 15px;
}
.mega-menu .estates .estates-link:hover {
    color:#796946;
}
.sub-menu li a {
    padding: 8px 15px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.sub-menu li + li {border-top: 1px solid #eee;}
.sub-menu li a:hover,
.sub-menu li.active a {
    background-color: var(--primary);
    color: #fff;
}
@media (min-width:1024px) and (max-width:1400px) {
    .mega-menu .h4 {font-size: 15px;}
    .mega-menu .estates .estates-link {
        grid-template-columns: auto 250px 40px;
    }
}

@media (min-width:1024px) {
    .header-nav .nav > li > a {
        float: left;
        display: inline-block;
    }
    .nav li.has-mega-menu .arrow {
        position: relative;
        display: inline-block;
        margin-left: 5px;
    }
    .nav li.has-dropdown {padding-right: 25px}
    .header-nav .nav > li:after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: all 0.3s ease-in;
    }
    .header-nav .nav > li.active:after,
    .header-nav .nav > li:hover:after {
        width: 100%;
    }
    .nav li.has-dropdown.has-mega-menu {position: inherit;padding-right: 0;}

    .h-nav li > .sub-menu {
        position: absolute;
        left: 0;
        top: 130%;
        width: 217px;
        text-align: left;
        background: #fff;
        margin: 0;
        z-index: 1;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
        transition: 0.5s;
        visibility: hidden;
        /*border-top: 2px solid var(--primary);*/
        opacity: 0;
    }


    .mega-menu {
        position: absolute;
        right: 0px;
        z-index: 11;
        background: var(--primary);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
        transition: 0.5s;
        visibility: hidden;
        opacity: 0;
        width: 100%;
    }
    .h-nav li:hover > .sub-menu {
        visibility: visible;
        top: 100%;
        opacity: 1;
    }
    .h-nav li:hover > .mega-menu {
        visibility: visible;
        top: 69%;
        opacity: 1;
    }
}
@media (min-width:1401px) {
    .mega-menu .estates .estates-link {
        grid-template-columns: auto 290px 40px;
    }
}
@media (max-width: 1023px) {
    .navicon svg {
        height: 50px;
        width: 50px;
    }
    .menu-holder {
        background: #fff;
        display: block;
        position: fixed;
        left: -400px;
        padding: 90px 30px 30px;
        top: 0;
        bottom: 0;
        max-width: 300px;
        width: 100%;
        z-index: 1111;
        transition: all 0.4s ease-out;
        overflow-y: auto;
    }
    .menu-holder.open {
        left: 0;
    }
    .nav-wrapper .book-now-btn {padding: 10px 10px;}
    .header-nav .nav a {padding: 5px 10px;}
    .header-nav .nav > li > a {
        padding: 10px 15px 10px 0;
    }
    .header-nav .nav > li + li {border-top: 1px solid #9dacb0;}
    .header-nav .nav .sub-menu li + li {border-top: 1px solid #ddd;}
    .nav li .arrow {top: 9px;}
    .nav li .arrow.active {
        transform: rotate(180deg);
    }
    .h-nav li > .sub-menu {
        display: none;
        background-color: var(--gray);
    }
    .h-nav li > .mega-menu {display: none;}
    .h-nav li > .mega-menu {display: none;}
    .mega-menu .estates .estates-link {
        gap:10px;
    }
    .mega-menu-img img {height: 60px}
    .mega-menu .estates .estates-arrow {
        display: block;
        margin: auto;
        width: 25px;
    }
    .mega-menu .mega-menu-header {
        display: grid;
        gap: 0;
        grid-template-columns: 40% 60%;
        margin-bottom: 10px;
        background-color: #fff;
        align-items: center;
    }
    .mega-menu .mega-sub-menu {display: none;margin-bottom: 20px;}
    .mega-menu-img {
    }
    .mega-menu > .col {gap: 0;}
    .mega-menu .h4 {
        padding: 9px 10px 10px;
        margin-bottom: 0;
        font-size: 16px;
    }
}

/* ── theme.css ─────────────────────── */
.heading-font {
    font-family: var(--headings-font);
}

.color-heading {
    color: var(--headings-text-color);
}
.bg-overlay-black:before {
    background-color: #111319;
    opacity: 0.45;
}
/*#hero {min-height: 600px;}*/

/*#hero:before {
    background: linear-gradient(to bottom, rgb(0 0 0 / 35%), rgb(0 0 0 / 95%));
}*/
.mt-2 {margin-top: 2px;}
/*banner-form*/
.banner-form {
    background-color: rgba(255, 255, 255, 0.9);
max-width: 400px;
    border-radius: 4px;
    width: 100%;
}
.desktop-quote-form .form-grid {position: relative;}
@media (min-width: 768px) {
    .desktop-quote-form .form-grid {align-items: start;    grid-template-columns: auto 170px;position: relative;}
    .desktop-quote-form .form-grid.step-3 {
        grid-template-columns: auto 300px;
    }
    .home-banner .desktop-quote-form .form-grid {
        grid-template-columns: auto 250px;
    }
}

.step-3 div#submit_button {
    padding-top: 33px;
}
.step-3 .g-form-grid {
    grid-row-gap: 0;
}
.desktop-quote-form .arrow-back {
    position: absolute;
    top: -65px;
}
.g-form-row + .g-form-row,
.form-row + .form-row {margin-top: 12px;}
.banner-form .form-label {
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 5px;
    display: none;
}
.desktop-quote-form {background-color: transparent;max-width: 100%;}
#hero .desktop-quote-form .form-top {background: rgba(103, 110, 153, 0.6);
    background: rgb(23 23 26 / 60%);
    border: 3px solid #444;
}
.desktop-quote-form .form-label {display: block;color:#fff;text-align: left;line-height: 1.1;}
#explanation.h3 {background: rgba(48, 49, 55, 0.6);}
.banner-form input:not([type="checkbox"]),
.banner-form input:not([type="radio"]),
.banner-form select,
.banner-form textarea {
    width: 100%;
    display: block;
    height: 42px;
    border-radius: 4px;
    padding: 0 10px;
    background-color: #fff;
    font-size: 14px;
    display: block;
    border: 1px solid #ccc;
    color: #000;
    font-weight: 600;
    font-family: inherit;
}
.banner-form textarea {
    padding: 5px 10px;
    height: 80px;
}
.desktop-quote-form textarea {height: 100px;}
div#rrnxt_button {
    margin-top: 15px;
}
.desktop-quote-form div#rrnxt_button {margin: 0;padding-top: 23px;}
.banner-form .err-text {
text-align: left;
}
.banner-form .err-text span {
    font-size: 14px;
    display: block;
    margin-top: 5px;
    line-height: 1;
}
.banner-form span.succ_text {
    background-color: #03c803;
}
.banner-form span.err_text {
    background-color: red;
}
.desktop-quote-form .form-field {
    text-align: left;
    position: relative;
}
.desktop-quote-form .err-text {position: absolute;}
.banner-form span.err_text,
.banner-form span.succ_text {padding: 5px;color: #fff;font-size: 11px;}
.banner-form .btn {
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    text-transform: capitalize;
    padding: 0 10px;
}
.banner-form .btn .fa {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(new/images/icons/angle-right.svg) no-repeat center center;
    background-size: 30px auto;
}

.banner-form input#newsletter {
    width: 18px;
    height: 18px;
    display: inline-block;
}
.banner-form img.ui-datepicker-trigger {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 26px;
}
#submit_button {display: none;}
.resort-request-banner #submit_button {display: block;}

#submit_button.active {display: block;}
.selected-resort-grid {
padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
}

.steps-grid .step {
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    padding: 10px;
    background-color: #a8a8a8;
    text-align: center;
    font-family: var(--headings-font);
}

.steps-grid .step span {display: inline-block;margin-right: 10px;}
.steps-grid .step.active {
    background-color: #77ba36;
}

.steps-grid .step-1,
.steps-grid .step-2 {
}
.steps-grid .step-2 {
    border-inline: 1px solid #fff;
}
@media (max-width: 767px) {
    .steps-grid .step {
        font-size: 15px;
        padding: 8px 10px;
    }
    .steps-grid .step-2 {
        border-inline: 0;
        border-block: 1px solid #fff;
    }
}
.arrow-btn {position: relative;display: inline-flex;padding-right: 50px;}
.arrow-btn.btn-large {padding-right: 50px;}
.arrow-btn:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}
.arrow-white:after {
background-image: url("new/images/icons/arrow-top-right-white.svg");
}
.arrow-black:after {
background-image: url("new/images/icons/arrow-top-right-black.svg");
}

.arrow-btn:hover:after{
    right: 10px;
}
.video-play-btn {
    display: inline-block;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.video-play-btn:hover {
    background-color: rgba(355,255,255,0.9);
}
.video-play-btn .button-outer-circle {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.video-play-btn .button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}
.video-play-btn .button-icon .triangle {
    -webkit-animation: fadeIn 7s ease;
    animation: fadeIn 7s ease;
}
/*.video-play-btn .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    -webkit-animation: triangleStroke 3s;
    animation: triangleStroke 3s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}*/
.has-scale-animation {
    -webkit-animation: smallScale 3s infinite;
    animation: smallScale 3s infinite;
}
.has-delay-short {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

/**/
.vacation-carousel-image {position: relative;}
.vacation-carousel-image:before {
    content: " ";
    display: block;
    background: linear-gradient(to bottom, transparent, rgb(0 0 0 /65%));
    height: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
}
.vacation-carousel-item img {width: 100%;    height: 320px;
    object-fit: cover;}
.vacation-carousel-item h3 {
    color: #fff;
}
.vacation-carousel-caption {
    position: absolute;
    /*bottom: -65px;*/
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 15px 15px;
    transition: all 0.3s ease-in;
    z-index: 2;
    bottom: 0;
}
.vacation-carousel-item:hover .vacation-carousel-caption {
    bottom: 10px;
}
.vacation-carousel-caption .dropdown-list {bottom: 45px;font-weight: 500;}
.units-carousel-caption .dropdown-list {bottom: 45px;font-weight: 500;}

.amenities-list .amenity {
    padding: 30px 100px 30px 30px;
    border-radius: 8px;
    border: 1px solid #dee3ed;
}
/*units carousel*/
.units-carousel img {border-radius: 4px;}
.units-carousel-caption {
    text-align: center;
    padding-top: 15px;
}
.units-carousel-caption h3 {
margin-bottom: 10px;
}
.owl-carousel.units-carousel button.owl-dot {background-color: rgba(0,0,0,0.3);}
.owl-carousel.units-carousel button.owl-dot.active {background-color: rgba(0,0,0,0.9);}
/*blog posts*/
.blog-list .blog-post {
    border-radius: 4px;
}
.blog-list img {
    border-radius: 4px 4px 0 0;
}
.blog-list .blog-post-content {
    border: 1px solid #dee3ed;
    border-top: none;
    border-radius: 0 0 4px 4px;
}
/*owl carousel*/

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    	display: none;
    width: 100%;
    z-index: 1
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

/*.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}*/

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);

}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    color: inherit;
    border: none;
    padding: 0 !important;
    cursor: pointer;
    user-select: none
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.form-slogan {
    margin-bottom: 10px !important;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.owl-carousel button.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #9dacb0;
    outline: none;
    cursor: pointer;
    margin: 0 5px;
    padding: 0;
    border: none;
}

.owl-carousel button.owl-dot.active {
    background-color: var(--primary);
    border: none;
}

.testimonials__slider .slide {
    text-align: center;
    color: #fff;
}

.home-carousel-1.owl-carousel .owl-nav button {
    background: var(--secondary);
    color: #fff;
}

.home-carousel-1.owl-carousel .owl-nav button:hover {
    background: var(--primary);
    color: #fff;
}

.home-carousel-1.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
}

.home-carousel-1.owl-carousel .owl-nav button.owl-next {
    right: -10px;
}

.owl-carousel .owl-nav button {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-image: none;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    position: absolute;
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    border-radius: 50%;
}

.owl-carousel .owl-nav button:hover {
    color: var(--secondary);
}

.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 15px;
}


.fancybox-button,
.fancybox-navigation .fancybox-button--arrow_left,
.fancybox-navigation .fancybox-button--arrow_right {
    padding: 0 !important;
    background: var(--primary) !important;
}

.fancybox-navigation .fancybox-button--arrow_left:hover,
.fancybox-navigation .fancybox-button--arrow_right:hover {
    background: var(--anchor-hover) !important;
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    visibility: visible !important;
    opacity: 1 !important;
}

.fancybox-navigation .fancybox-button {
    height: 70px !important;
    width: 50px !important;
}
.small-title {
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}
/*faqs*/
.faqs-wrapper {margin-bottom: 50px;}
.faqs-wrapper:last-child {margin-bottom: 0px;}
.faqs .section-title{
    color: var(--primary);
    margin-bottom: 25px;
}
.faqs .faq-block{
    margin-bottom: 20px;
    border-radius: 20px;
    background:var(--bg-gray);
}
.faqs .faq-title {
    font-size: 27px;
    padding: 25px 70px 25px 40px;
    margin: 0;
    cursor: pointer;
    position: relative;
    background: var(--bg-gray);
    font-family: 'opensans-Bold', sans-serif;
    text-transform: none;
    border-radius: 20px;
    line-height: 1.4;
}
.faqs .faq-block .faq-title.active {
}
.faqs .faq-block .faq-title:after {
    content: "+";
    display: block;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background: var(--primary);
    color: #fff;
    width: 30px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    text-align: center;
}

.faqs .faq-block .faq-title.active:after {
    content: "-";
}
.faqs .faq-block .faq-content {
    display: none;
    padding: 0 80px 30px 40px;
    border-top: 0;
    font-size: 16px;
    color: #000;
    background: var(--bg-gray);
    border-radius: 0 0 20px 20px;
    margin-top: -10px;
    position: relative;
}
@media (min-width:768px){
    .amenities-list.grid,
    .blog-list.grid {display: grid !important;}
}
@media (max-width: 767px) {
    .faqs .faq-title {
        font-size: 18px;
        padding: 20px 60px 20px 25px;
        border-radius: 12px;
    }
    .faqs .faq-block {border-radius: 12px;}
    .faqs .faq-block .faq-title:after{right: 20px}
    .faqs .faq-block .faq-content {
        font-size: 15px;
        padding:0px 25px 30px 25px;
        border-radius: 12px;
    }
    .blog-list .blog-post {
        transform: none;
        transition-delay: 0s;
    }
}
/*end faqs*/
.testimonial-carousel .owl-nav button.owl-prev {
    left: 0;
}
.testimonial-carousel .owl-nav button.owl-next {
    right: 0;
}
.testimonial-author-rating {
    background: url("new/images/icons/five-star-rating.svg") no-repeat center center;
    height: 30px;
    background-size: 140px auto;
    margin-bottom: 10px;
}
.testimonials .icon {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 3px;
    display: inline-block;
}
.testimonials .author-icon {background-image: url("new/images/icons/user-icon.svg");background-size: 25px auto;height: 25px;width: 25px;transform: translateY(2px);}
.testimonials .location-icon {background-image: url("new/images/icons/location-pin-icon.svg");transform: translateY(8px);background-size: 16px auto;height: 18px;width: 18px;margin-bottom: 5px;}
.testimonials .time-icon {background-image: url("new/images/icons/time-icon.svg");transform: translateY(3px);background-size: 15px auto;height: 15px;width: 15px;}

/*newsletter*/
div#mc_embed_signup.form-wrapper {
    display: block !important;
}
#mc_embed_signup form {margin: 0 !important;}
.newsletter-form .input {
    height: 44px !important;
    padding: 0 10px !important;
    width: 100% !important;
    display: block !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    color: #000 !important;
    border: none !important;
}
.newsletter-form .input::placeholder {
    font-weight: 600;
    color: #666;
    letter-spacing: 0.3px;
}
#mc_embed_signup .mc-field-group {
    display: block !important;
    min-height: 20px;
    padding: 0 !important;
    width: auto !important;
    min-height: 0 !important;
}
#mc_embed_signup .mc-field-group.acceptance input {
    width: 16px;
    height: 16px;
    display: inline-block !important;;
    margin-right: 3px;
    transform: translatey(2px);
    text-indent: 0 !important;
    padding: 0 !important;
}
#mc_embed_signup .mc-field-group label {
    display: inline-block !important;
    margin-bottom: 0 !important;
}
#mc_embed_signup #mc-embedded-subscribe {
    margin: 0 !important;
    display: inline-block !important;
    background-color: #ffdd22;
    color: #000;
    border: none;
}
#mc_embed_signup #mc-embedded-subscribe:hover {
    background-color: #ffde27;
}
#mc_embed_signup #mce-success-response {
    background: #00c400;
    padding: 15px !important;
    text-align: center;
    color: #fff !important;
    width: 100% !important;
    float: none !important;
    margin: 0 0 15px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 500;
}
/* Popup container */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 320px;
    width: 100%;
}
#popupForm .desktop-quote-form .form-label {color: #000;}
#popupForm .desktop-quote-form div#rrnxt_button {padding-top: 0;}
/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Close button */
.close-btn {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
    position: absolute;
    right: 10px;
    top: 4px;
    line-height: 1;
    z-index: 2;
}

.close-btn:hover {
    color: #000;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    transition: all 0.2s ease-in;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

main.has-border-top {border-top: 1px solid #eee;}
.header-placeholder {
    display: none;
    height: 110px;
}


.header-placeholder.active {
    display: block;
}
.tab-list li {margin: 4px 1px;}
.tab-list li a {
    display: inline-block;
    padding: 10px;
    border: 1px solid #ccc;
    line-height: 1;
    font-size: 13px;
    border-radius: 30px;
}
.tab-list li a.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: bold;
}

/*body.sticky-header main {padding-top: 105px;}*/
.faq-block {position: relative;padding-top: 70px;}


.faq-block h2 {
    font-size: 30px;
    scroll-margin-top: 110px;
    position: relative;
    color: var(--primary);
}

@supports not (scroll-margin-top: 1px) {
    .faq-block h2::before {
        content: "";
        display: block;
        height: 110px;
        margin-top: -110px;
        visibility: hidden;
        pointer-events: none;
    }
}

@media (min-width: 768px) {
#hero.home-banner {paddint-top:150px;padding-bottom: 80px;}
}

@media (max-width: 767px) {
    #hero .desktop-quote-form .form-top {border: none;}
    #hero h1 {font-size: 30px;}
    .faq-block h2 {
        font-size: 24px;
    }
    .tab-list li a {font-size: 12px;}
    .resort-request-banner .hero-overlay {
        position: relative;
        transform: none;
    }
    .arrow-btn.btn-large {
        padding-left: 20px;
        font-size: 16px;
        padding-right: 40px;;
    }
    .arrow-btn.btn-large:after {
        right: 10px;
    }
}

.bg-overlay-black-gradient:before {
    /*background: linear-gradient(to bottom,rgba(0, 0, 0, 1) 0%, rgba(253, 187, 45, 0) 50%);*/
    background: linear-gradient(to bottom, rgb(0 0 0 / 15%), rgb(0 0 0 / 75%));
}

.rounded-list {
    counter-reset: li; /* Initiate a counter */
    *list-style: decimal; 
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    margin:0;
  }

  .rounded-list li{position: relative;padding-left: 35px;}

  .rounded-list li:before{
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: 0;
    top: -3px;
    background: #87ceeb;
    height: 30px;
    width: 30px;
    border: 3px solid #fff;
    text-align: center;
    border-radius: 2em;
    transition: all .3s ease-out;
    color: #000;
  }
.has-border {border: 1px solid #dee3ed; border-radius: 8px;}
  .booking-process {
   & .process-item {
        text-align: center;
    & .icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: inline-flex;
            align-items: center;
        & svg {
            display: block;
            width: 32px;
            height: 32px;
            fill: #ffffff;
            margin: auto;
        }
    }
    }
  }

    .contact-grid {
        
   & .contact-item {
        text-align: center;
    & .icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: inline-flex;
            align-items: center;
        & svg {
            display: block;
            width: 32px;
            height: 32px;
            fill: #ffffff;
            margin: auto;
        }
    }
    }
  }

/* ── location.css ─────────────────────── */
:root {
    --h1-size: clamp(30px, 5vw, 50px);
}
#main-header.sticky {
    position: relative;
}
.location-nav li a {
    color: #fff;
    padding: 10px 15px;
    font-weight: 500;
    min-width: 90px;
    text-align: center;
    font-size: 14px;
}
.location-nav li a:hover {
    background-color: var(--secondary);
}
@media (min-width:768px) {
.location-nav li + li {border-left: 1px solid rgb(238 238 238 / 31%);}
    .card-img-top{
        height: 250px;
        overflow: hidden;
    }
    .location-nav li.btn-wrapper {
        padding: 5px 15px;
    }
    .location-nav .btn {font-size: 14px;font-weight: 600;padding: 15px 20px;}
}
@media (min-width:1024px) {
    .location-nav li a {
        min-width: 100px;
        font-size: 15px;
        padding: 15px 15px;
    }
    .card-img-top{
        height: 150px;
    }

}
@media (min-width:1366px) {
    .location-nav li a {
        font-size: 16px;
    }
    .card-img-top {
        height: 200px;
    }
}
@media (max-width:1023px) {
    .location-nav li {border-top: 1px solid rgb(238 238 238 / 31%);}
    .location-highlights .grid {padding: 0 20px}
}
@media (max-width:767px) {
    .location-highlights .grid {padding: 0 20px}
}

.location-amenities-list li {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
    line-height: 1.3;
}
.location-amenities-list li + li {border-top: 1px solid #ccc;}

.card {
    background-color: #fff;
    color:var(--text-dark);
    text-align: center;
    font-size: 15px;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.card:hover {color: var(--body-text);}

.card-img-top img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.card:hover img {opacity: 0.9;}
.card-body {padding: 15px 20px 30px;}

.card-body .card-title {color:var(--primary);}
.card-body .card-title:hover {color:var(--secondary);}
.card-body .btn-wrapper {text-align: center;}
.card-body strong {margin-top: 10px;color: #000;}
/*.card-body strong:hover {color:var(--primary);}*/
.card-body strong:after {
    content:"";
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.2s ease;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: -5px;
}
.card-body strong:hover:after {width: 90%;}
.location-nav .location-menu-mobile .popup-btn {
    padding: 12px 15px;
}

/* ── footer.css ─────────────────────── */

#footer, #footer a {color: #fff;}
#footer a:hover {color: #dee3ed;}
.footer-title {position: relative;}
.footer-title:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--tertiary);
    background: var(--primary);
    margin-top: 10px;
}
#footer ul{ list-style: none;margin-left: 0px; }
#footer .social-icons { list-style: none; }
#footer .social-icons li {display: inline-block;margin-right: 10px;}
#footer .social-icons a {display: block;width:44px;height: 44px;border-radius: 50%;
background-color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 40px;
}
#footer .social-icons a:hover {background-color: var(--primary);}
#footer .social-icons img {
    width: 20px;
}
#footer .menu li + li {
    margin-top: 10px;
}

.footer-contact .contact-item {position: relative;display: grid;grid-gap:15px;grid-template-columns: 24px auto;}
@media (min-width: 768px) {
.footer-bottom {
    grid-template-columns: 212px auto;
}
}
/* Back to Top Button Styles */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #007cba; /* Match your site's color scheme */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 0;
}

#backToTop:hover {
    background-color: #005a87; /* Darker shade for hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
