/* ------------ Fonts ------------ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* ------------ Root ------------ */
:root {
    /*  bootstrap with smooth scroll hack  */
    scroll-behavior: auto !important;

    --fontMiller: "miller-display", serif;
    --fontAreaNormal: "area-normal", sans-serif;

    --color-white-rgb: 255, 255, 255;
    --color-white: #FFFFFF;
    --color-black-rgb: 0, 0, 0;
    --color-black: rgba(var(--color-black-rgb), 1);

    --color-primary: #d9bc6b;
    --color-dark: #181818;

    --color-border: rgba(var(--color-black-rgb), 0.2);
    --color-border-light: rgba(var(--color-white-rgb), 0.25);
    --color-text-light: rgba(var(--color-white-rgb), 0.7);
    --color-alert-error: #ff213e;
    --color-alert-success: var(--color-primary);

    --shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

    --animation-primary: 0.4s cubic-bezier(.75, 0, .25, 1);
    --animation-thumb: 0.4s cubic-bezier(0.5, 0, .25, 1);
    --animation-smooth: 0.7s cubic-bezier(0.5, 0.5, 0, 1);
    --animation-fast: 0.2s cubic-bezier(0.75, 0, 0.25, 1);

    --animation-navigation: 1.2s cubic-bezier(0.75, 0, 0.25, 1);
    --animation-navigation-forward: 1s cubic-bezier(0.8, 0, 0.1, 1);
    --animation-navigation-backward: 0.6s cubic-bezier(0.8, 0, 0.1, 1);

    --section-padding-big: min(10vw, 10em);
    --section-padding: min(8vw, 8em);
    --section-padding-medium: min(6vw, 6em);
    --section-padding-small: min(3.5vw, 3.5em);
    --section-padding-xsmall: min(1.5vw, 1.5em);
    --container-padding: min(8vw, 8em);
    --container-padding-medium: min(4vw, 4em);

    --gap-padding: min(4vw, 4em);
    /* --title-size: clamp(3rem, 0.188rem + 12.5vw, 8rem); */
    --title-size: clamp(5em, 7.5vw, 7.5em);
    --border-radius: 10px;
    --border-radius-all: 100px;
    --thumb-border-radius: calc(var(--border-radius)* 0.5);

    --vw: 1440;
    --multiplier: 100vw;

    @media (max-width: 767.98px) {
        :root {
            --vw: 375
        }
    }
}

@media screen and (min-width: 1440px) {}

@media screen and (max-width: 1024px) {

    :root {
        --section-padding-big: 15vw;
        --section-padding: 12vw;
        --section-padding-medium: 9vw;
        --section-padding-small: 6vh;
    }
}

@media screen and (max-width: 720px) {

    :root {
        --section-padding-big: 20vw;
        --section-padding: 16vw;
        --section-padding-medium: 12vw;
        --section-padding-small: 9vw;
    }
}

/* ------------ Body ------------ */
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
    margin: 0;
}

li,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

html,
body {
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body {
    font-family: var(--fontAreaNormal);
    line-height: 1.6;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-size: clamp(16px, 1.2vw, 19px);
    overflow-x: hidden;
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Removing background from autofill */
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:focus,
input[type=text]:-webkit-autofill,
input[type=text]:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important
}

blockquote {
    font-style: italic;
    font-family: var(--fontMiller);
}

blockquote p {
    font-style: italic;
}

/* Selection */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-black);
    text-shadow: none;
}

/* General */
img {
    display: block;
}

canvas,
img,
video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

svg {
    max-width: none;
    height: auto;
    box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

figure {
    margin: 0;
}

/* LC Row override */
.row {
    --bs-gutter-x: 3rem;
}

@media (min-width: 992px) {
    .row {
        --bs-gutter-x: 5rem;
    }

    .row-gap-5 {
        row-gap: 5rem !important;
    }
}

/* New gutter / gap */
.g-6,
.gy-6 {
    --bs-gutter-y: 2rem;
}

.g-6,
.gx-6 {
    --bs-gutter-x: 2rem;
}

/* ------------ Typography ------------ */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul,
ol,
span,
strong,
em {
    padding: 0;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    word-wrap: break-word;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
p:last-child,
p.big:last-child,
p.small:last-child,
a:last-child,
strong:last-child {
    margin-bottom: 0;
}

h1 {
    font-family: var(--fontMiller);
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--title-size) * 0.6);
    line-height: 1;
}

h1.big {
    font-size: calc(var(--title-size) * 0.95);
}

h1.medium {
    font-size: calc(var(--title-size) * 0.75);
}

h1.small {
    font-size: calc(var(--title-size) * 0.55);
    font-weight: 500;
}

@media screen and (max-width: 540px) {
    h1.medium {
        font-size: calc(var(--title-size) * 0.55);
    }
}

h2 {
    font-family: var(--fontMiller);
    font-weight: 400;
    font-style: normal;
    font-size: calc(var(--title-size) * 0.475);
    line-height: 1;
}

h2.big {
    font-size: calc(var(--title-size) * 1.1);
}

h2.medium {
    font-size: calc(var(--title-size) * 0.7);
}

h2.small {
    font-size: calc(var(--title-size) * 0.35);
}

@media screen and (max-width: 1024px) {
    h2 {
        font-size: calc(var(--title-size) * 0.45);
    }

    h2.medium {
        font-size: calc(var(--title-size) * 0.65);
    }

    h2.big {
        font-size: calc(var(--title-size) * 0.85);
    }

    h2.small {
        font-size: calc(var(--title-size) * 0.35);
    }
}

@media screen and (max-width: 540px) {
    h2 {
        font-size: 8vw;
    }

    h2.medium {
        font-size: 10vw;
    }

    h2.big {
        font-size: 12vw;
    }

    h2.small {
        font-size: 6vw;
    }
}

h3 {
    font-family: var(--fontMiller);
    font-weight: 500;
    font-style: normal;
    font-size: calc(var(--title-size) * 0.3);
    line-height: 1.3;
}

h3.big {
    font-size: calc(var(--title-size) * 0.45);
    line-height: 1.2;
}


@media screen and (max-width: 1024px) {
    h3 {
        font-size: calc(var(--title-size) * 0.45);
    }

    h3.big {
        font-size: calc(var(--title-size) * 0.6);
    }
}

@media screen and (max-width: 540px) {
    h3 {
        font-size: 6vw;
    }

    h3.big {
        font-size: 7vw;
    }
}

h4 {
    font-family: var(--fontMiller);
    font-weight: 500;
    font-style: normal;
    font-size: calc(var(--title-size) * 0.25);
    line-height: 1.2;
}

@media screen and (max-width: 1024px) {
    h4 {
        font-size: calc(var(--title-size) * 0.35);
    }
}

@media screen and (max-width: 540px) {
    h4 {
        font-size: 6vw;
        font-weight: 500;
    }
}

span.inactive {
    opacity: .5;
}

b,
strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--animation-primary);
}

a:focus,
a:hover {
    color: var(--color-primary);
}

p a {
    opacity: 1;
    text-decoration: none;
    transition: var(--animation-primary);
    position: relative;
    white-space: nowrap;
}

p a:hover {
    text-decoration: none;
    color: var(--color-white);
}

p span {
    font-weight: inherit;
}

li {
    font-size: 1em !important;
}

/* Styled Typography */
p {
    font-family: var(--fontAreaNormal);
    font-weight: 400;
    font-style: normal;
    /* font-size: 1em; */
    font-size: 1.125em;
    line-height: 1.66;
    margin: 0 0 .9375rem;
}

.styled p strong {
    font-weight: 700;
}

.is-italic {
    font-style: italic;
}

.is-color-primary {
    color: var(--color-primary);
}

.styled h2 {
    margin-bottom: 0.66em;
}

.styled p,
.styled h3 {
    margin-bottom: 1em;
}

.styled p:last-child,
.styled h2:last-child,
.styled h3:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .styled.large p {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}

.styled.big {
    font-size: 1.25rem;
}

.styled.small {
    font-size: 0.875rem;
}

.styled *+* {
    margin-top: 1.1em;
}

@media (min-width: 768px) {
    .styled *+* {
        margin-top: 1em;
    }
}

.styled h2,
.styled h3,
.styled h4,
.styled h5,
.styled h6 {
    line-height: 1.1;
    margin-bottom: unset;
}

.styled h2 :is(strong),
.styled h3 :is(strong),
.styled h4 :is(strong) {
    font-weight: 600;
}

.styled h3 {
    line-height: 1.3;
}

.styled h5 {
    font-weight: 600;
}

.styled ol,
.styled ul {
    padding: 0;
}

.styled li {
    font-size: 1em;
    line-height: 1.1;
    font-weight: 400;
    margin-left: 1.25rem;
    margin-top: .5em;
    max-width: 62ch;
    list-style: disc;
}

.uppercase {
    text-transform: uppercase;
}

/* ------------ Main Elements ------------ */
main {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: fit-content;
    min-height: 100vh;
    background-color: var(--color-offwhite);
    display: block;
    position: relative;
}

hr {
    border: 0;
    margin: 2rem 0;
    padding: 0;
    border-bottom: 1px solid rgba(var(--color-black-rgb), 0.6);
}

@media all and (max-width: 1100px) and (orientation:portrait) {
    hr {
        margin: 8vw 0
    }
}

.wrapper {
    display: block;
    width: fit-content;
}

/* Section */
.section {
    padding-top: var(--section-padding-medium);
    padding-bottom: var(--section-padding-medium);
    position: relative;
}

.section.is-small {
    padding-top: var(--section-padding-small);
    padding-bottom: var(--section-padding-small);
}

.section-title {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-midnight-blue);
    padding-bottom: 1rem;
}

.section.is-dark .section-title {
    border-bottom: 1px solid var(--color-white);
}

.section.full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section.no-padding {
    padding-top: unset;
    padding-bottom: unset;
}

/* Container */
.container-fluid,
section {
    position: relative;
}

.container-fluid.is-large {
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 100em;
    max-width: 100%;
}

.container-fluid.is-medium {
    margin: 0 auto;
    padding-left: var(--container-padding-medium);
    padding-right: var(--container-padding-medium);
    max-width: 100em;
    max-width: 100%;
}

/* @media (min-width: 992px) {
    .container-fluid.is-large {
        max-width: 1920px;
    }
} */

.container-fluid.is-large.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.space-between-rows {
    margin-bottom: 5rem;
}

.space-between-rows:last-of-type {
    margin-bottom: 0;
}

/* Image */
.image-fullwidth {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 992px) {
    .image-fullwidth {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

.featured-image {
    height: 80vh;
    min-height: 420px;
    max-height: 620px;
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

@media (max-width: 991.98px) {
    .featured-image {
        height: auto;
    }
}

.featured-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ------------ Helpers ------------ */
.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-black-rgb), 0.1);
}

.overlay.darker {
    background-color: rgba(var(--color-black-rgb), 0.7);
}

.overlay.medium {
    background-color: rgba(var(--color-black-rgb), 0.2);
}

.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.padding-top {
    padding-top: var(--section-padding);
}

.padding-top.big {
    padding-top: var(--section-padding-big);
}

.padding-top.medium {
    padding-top: var(--section-padding-medium);
}

.padding-top.small {
    padding-top: var(--section-padding-small);
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.padding-bottom {
    padding-bottom: var(--section-padding);
}

.padding-bottom.big {
    padding-bottom: var(--section-padding-big);
}

.padding-bottom.medium {
    padding-bottom: var(--section-padding-medium);
}

.padding-bottom.small {
    padding-bottom: var(--section-padding-small);
}

.padding-bottom.xsmall {
    padding-bottom: var(--section-padding-xsmall);
}

.padding-left {
    padding-left: var(--section-padding);
}

.padding-left.big {
    padding-left: var(--section-padding-big);
}

.padding-left.medium {
    padding-left: var(--section-padding-medium);
}

.padding-left.small {
    padding-left: var(--section-padding-small);
}

.padding-right {
    padding-right: var(--section-padding);
}

.padding-right.big {
    padding-right: var(--section-padding-big);
}

.padding-right.medium {
    padding-right: var(--section-padding-medium);
}

.padding-right.small {
    padding-right: var(--section-padding-small);
}

.margin-bottom {
    margin-bottom: var(--section-padding);
}

.no-margin {
    margin: 0 !important;
}

.no-border {
    border: 0 !important;
}

@media screen and (min-width: 993px) {
    .is-mobile {
        display: none;
    }

    .is-desktop {
        display: block;
    }
}

@media screen and (max-width: 992px) {
    .is-mobile {
        display: block;
    }

    .is-desktop {
        display: none;
    }
}

.eyebrow {
    font-size: 1.125rem;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: var(--fontAreaNormal);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* ------------ Buttons ------------ */
button:focus-visible,
button:active,
button:focus {
    border: none;
    background: transparent;
    outline: none;
}

.btn:focus-visible,
.btn:active,
.btn:focus {
    box-shadow: none !important;
}

.btn-row {
    width: 100%;
    position: relative;
    display: flex;
}

.btn {
    position: relative;
    border: 0;
    outline: 0;
    padding: 1rem 3rem;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    transition: var(--animation-smooth);
}

.btn input {
    cursor: pointer;
}

/* Button primary */
.btn-primary {
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-primary.small {
    font-size: 0.75rem;
    padding: 1rem 2.5rem;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

/* Button Secondary */
.btn-secondary {
    border-radius: 0;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-black);
    opacity: 0.7;
}

/* ------------ Header ------------ */
header {
    position: relative;
    width: 100%;
    padding: var(--section-padding-xsmall) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
}

header .logo {
    width: 150px;
    display: block;
}

@media (min-width: 992px) {
    header .logo {
        width: 188px;
    }
}

header .contact-info {
    display: flex;
    gap: 1rem;
    justify-content: end;
    align-items: center;
}

.contact-info .contact-tel {
    color: var(--color-white);
    font-size: 0.875rem;
}

/* ------------ Hero Section ------------ */
.hero-banner {
    background: url(../images/bg-hero.webp) center no-repeat;
    height: 100vh;
    background-size: cover;
    position: relative;
    min-height: 760px;
    padding-bottom: var(--section-padding-medium);
}

.hero-banner .hero-content {
    position: relative;
    color: var(--color-white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* padding-top: calc(var(--section-padding-big) + 100px); */
}

.hero-icon {
    width: 70%;
    position: absolute;
    top: calc(50% - (68px + var(--section-padding-medium)));
    right: -30%;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-icon {
        top: 160px;
    }
    .hero-banner .hero-content {
        justify-content: flex-end;
    }
}

.scroll-down {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 2.5rem;
}

.bounce-up-down {
    animation: bounce-up-down 2s ease infinite;
}

@keyframes bounce-up-down {
0%, 100% {
    transform: translateY(0); 
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-20px);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1); 
  }
}

/* ------------ Rounded Box ------------ */
.rounded-box {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.rounded-box > * {
    flex: 0 0 auto;
}

.rounded-box .content {
    width: 100%;
    padding: 3.5rem;
    /* height: fit-content; */
}

.rounded-box .content.small-padding {
    padding: 2.5rem;
}

.rounded-box .image {
    width: 100%;
    height: 100%;
    max-height: 520px;
}

.rounded-box .image img {
    width: 100%;
    height: 100%;
    max-height: inherit;
    object-fit: cover;
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.rounded-box.is-half {
    display: block;
}

.rounded-box.is-half .image img {
    border-top-right-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.image-wrap {
    position: relative;
    width: 100%;
    max-height: 100%;
}

@media (min-width: 992px) {
    .rounded-box {
        align-items: stretch;
    }
    .rounded-box .content {
        width: 70%;
        padding: 4rem;
    }

    .rounded-box .image {
        width: 30%;
        position: absolute;
        top: 0;
        z-index: 1;
        max-height: 100%;
    }

    .rounded-box .image.right {
        right: 0;
    }

    .rounded-box .image.right img {
        border-top-right-radius: var(--border-radius);
        border-bottom-right-radius: var(--border-radius);
        border-bottom-left-radius: 0;
    }

    /* image on the left */
    .image-wrap {
        width: 30%;
    }

    .rounded-box .image.left {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        max-height: 100%;
        width: 100%;
    }

    .rounded-box .image.left img {
        border-top-left-radius: var(--border-radius);
        border-bottom-left-radius: var(--border-radius);
        border-bottom-right-radius: 0;
    }

    .rounded-box .caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        z-index: 4;
        text-align: left;
    }

    /* 50% columns */
    .rounded-box.is-half {
        min-height: 100%;
        height: auto;
    }

    .rounded-box.is-half .content,
    .rounded-box.is-half .image {
        width: 100%;
    }

    .rounded-box.is-half .image {
        position: relative;
        max-height: 320px;
    }
    .rounded-box.is-half .image img {
        border-top-right-radius: var(--border-radius);
        border-top-left-radius: var(--border-radius);
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}

.rounded-box .number {
    font-family: var(--fontMiller);
    color: var(--color-primary);
    font-size: 3.5rem;
    display: block;
    font-weight: 700;
}

/* ------------ Gallery ------------ */
.gallery-photos {
    position: relative;
}
.gallery-photos .photo {
    width: 100%;
    height: 500px;
}

.gallery-photos .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-photos .caption {
    font-size: 0.875rem;
    text-align: center;
    color: var(--color-primary);
}

/* arrows */
.gallery-arrows {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
}

.gallery-arrows .slick-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -39px;
    left: 8px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #28282866;
}

.gallery-arrows .gallery-next {
    left: unset;
    right: 8px;
}

.gallery-arrows .slick-arrow i {
    font-size: 2rem;
    color: var(--color-primary);
}

/* counter */
.slider-counter {
    position: absolute;
    bottom: calc(39px + 48px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #28282866;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .slider-counter {
        bottom: 48px;
    }
}

.slider-counter span,
.slider-counter > * {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* col sided with gallery */
.col-side-gallery {
    height: calc(100% - 39px);
}

/* ------------ Footer ------------ */
footer {
    position: relative;
    padding-bottom: var(--section-padding-medium);
    min-height: 780px;
}

footer.secondary {
    padding-bottom: var(--section-padding-medium);
    padding-top: var(--section-padding-big);
    min-height: 100%;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg-footer.webp) center bottom no-repeat;
    background-size: 360%;
    opacity: 0.6;
    z-index: -1; 
}

footer.secondary::before {
    background-size: cover;
    background-position: top center;
    opacity: 0.6;
    z-index: -1; 
}

footer .container-fluid {
    position: relative;
    z-index: 4;
}

footer p {
    font-size: 1rem;
}

footer span {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer .social-media a {
    color: var(--color-white);
}

footer .logo-icon {
    position: relative;
    width: 320px;
    left: -20%;
}

@media (min-width: 768px) {
    footer::before {
        background-size: 190%;
    }
}

@media (min-width: 992px) {
    footer::before {
        background-size: contain;
    }
    footer .logo-icon {
        left: -50%;
    }
}

/* social media */
.fixed-social-media {
    position: fixed;
    right: 1rem;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 8;
}

.fixed-social-media a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    color: var(--color-dark);
}

.fixed-social-media {
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}

.fixed-social-media.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ------------ Ninja forms styling ------------ */
.nf-form-fields-required {
    display: none;
}

.nf-error-msg, 
.ninja-forms-req-symbol {
    color: var(--color-alert-error);
}

.nf-field-element input, 
.nf-field-element select, 
.nf-field-element textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid;
}

.nf-field-element input:focus-visible, 
.nf-field-element select:focus-visible, 
.nf-field-element textarea:focus-visible {
    outline: 0;
    border-color: var(--color-primary);
}

.nf-error.listimage-wrap .nf-field-element ul, 
.nf-error .ninja-forms-field {
    border: 0 !important;
    border-bottom: 1px solid var(--color-alert-error) !important;
}


.field-wrap button, 
.field-wrap input[type=button], 
.field-wrap input[type=submit] {
    width: auto;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 3rem;
    line-height: 1;
    transition: var(--animation-smooth);
}

.field-wrap button:hover, 
.field-wrap input[type=button]:hover, 
.field-wrap input[type=submit]:hover {
    opacity: 0.7;
}

.label-left .nf-field-description {
    font-size: 14px;
}

.label-left .nf-field-label {
    text-align: left;
}

.nf-next-item button
.nf-previous-item button, 
.nf-next-item [type=button],
.nf-previous-item [type=button], 
.nf-next-item [type=submit],
.nf-previous-item [type=submit] {
    border-radius: 0;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    position: relative;
    border: 0;
    outline: 0;
    padding: 1rem 3rem;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    transition: var(--animation-smooth);
}

.nf-next-item [type=button]:hover,
.nf-next-item [type=button]:focus,
.nf-next-item [type=button]:active,
.nf-previous-item [type=button]:hover,
.nf-previous-item [type=button]:focus,
.nf-previous-item [type=button]:active {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-black);
    opacity: 0.7;
}

/* ------------ Hero Section inner ------------ */
.hero-section {
    position: relative;
    background: url(../images/bg-hero.webp) center no-repeat;
    height: 100%;
    background-size: cover;
}

.hero-section .hero-content {
    position: relative;
    color: var(--color-white);
    z-index: 2;
    padding-top: calc(var(--section-padding-small) + 100px);
}

.hero-section .hero-content .content{
    padding-bottom: var(--section-padding-medium);
}

.hero-section .featured-image {
    position: relative;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: -80px; 
    width: calc(100% + 160px); 
}

@media (min-width: 992px) {
    .hero-section .featured-image {
        position: absolute;
        top: 0;
        width: calc(100% + 40px); 
        height: 100%;
    }
}

.hero-section .featured-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .btn {
    padding: 1rem 2rem;
}

/* ------------ Testimonials ------------ */
.testimonials h4 {
    font-family: var(--fontAreaNormal);
    color: var(--color-primary);
}

.testimonials .quote {
    color: var(--color-primary);
    font-size: 8rem;
    display: block;
    font-weight: 700;
    line-height: 1;
    height: 64px;
    margin-bottom: 3rem;
}

.testimonials .author {
    display: block;
    margin-top: 2rem;
    font-weight: 600;
}

.testimonials .author:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--color-primary);
    vertical-align: middle;
    margin-right: 1rem;
}

/* ------------ Accordion override ------------ */
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-item {
    color: var(--color-white);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-primary);
}

.accordion-header {
    font-family: var(--fontAreaNormal);
}

.accordion-button {
    background: transparent;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 500;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem 0;
}

.accordion-button::after {
    content: '\f078';
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 1.25rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}

/* ------------ Modal override ------------ */
.modal {
    --bs-modal-width: 720px; 
    --bs-modal-bg: var(--color-dark);
}

.modal-header,
.modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.modal-body {
    overflow-y: auto;
}

.modal-content {
    height: 90vh;
    min-height: 700px;
}

.btn-close:focus {
    box-shadow: none;
}

.btn-close {
    color: var(--color-white);
    background: transparent;
    font-size: 1.5rem;
    width: 2em;
    height: 2em;
    opacity: 1;
}

.btn-close:hover {
    color: var(--color-white);
    opacity: 1;
}