/* older */
@font-face {
    font-family: "HighVoltageRough";
    src: url("../fonts/HighVoltageRough.ttf") format("truetype");
}

@font-face {
    font-family: "WorkSans";
    src: url("../fonts/Work_Sans/WorkSans-VariableFont_wght.ttf")
        format("truetype");
}

@font-face {
    font-family: "WorkSansItalic";
    src: url("../fonts/Work_Sans/WorkSans-Italic-VariableFont_wght.ttf")
        format("truetype");
} 

body {
    font-family: "HighVoltageRough", sans-serif;
    background-color: #bfb5a0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "HighVoltageRough", sans-serif;
    /* Apply the custom font to all headings */
}

p {
    font-family: "WorkSans", sans-serif;
    /* Apply the custom font to all headings */
}

.fullscreen-menu {
    font-family: "WorkSans", sans-serif;
    /* Apply the font to everything inside */
}

body {
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-align: center;
    background-color: #bfb5a0;
}

.main-color {
    color: #bfb5a0;
}

.main-text-color {
    color: #424242;
}

.secondary-text-color {
    color: #ffffff;
}

.alt-text-color {
    color: #672415;
}

.main-title-color {
    color: #5a3a1b;
}

.secondary-title-color {
    color: white;
}

.button-rg-bg-1 {
    background-color: #672415;
}
.button-rg-bg-1:hover {
    background-color: #672500;
    color:white;
}

.button-rg-bg-2 {
    background-color: #21522e;
}

.button-rg-bg-2:hover {
    background-color: #215400;
    color:white;
}

/* Default (≥ 1200px - xl and up) */
.main-title {
    text-align: left;
    font-size: 45px;
}

.main-title-image {
    font-size: 50px;
}

.fs-22 {
    font-size: 16px;
}

.section-text {
    font-weight: bold;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 30px;
}
/* md to lg (≥ 768px and < 992px) */
@media (mix-width: 991.99px) and (max-width: 1199.98px) {
    .main-title {
        font-size: 40px;
    }

    .main-title-image {
        font-size: 45px;
    }   

    .fs-22 {
        font-size: 18px;
    }

    .section-text {
        font-size: 20px;
    }
}

/* md to lg (≥ 768px and < 992px) */
@media (max-width: 991.98px) {
    .main-title {
        font-size: 30px;
    }

    .main-title-image {
        font-size: 30px;
    }   

    .fs-22 {
        font-size: 16px;
    }

    .section-text {
        font-size: 18px;
    }
}

/* sm to md (≥ 576px and < 768px) */
@media (max-width: 767.98px) {
    .main-title {
        font-size: 30px;
    }

    .main-title-image {
        font-size: 30px;
    }   

    .fs-22 {
        font-size: 15px;
    }

    .section-text {
        font-size: 17px;
    }
}

/* xs to sm (< 576px) */
@media (max-width: 575.98px) {
    .main-title {
        font-size: 30px;
    }

    .main-title-image {
        font-size: 30px;
    }   

    .fs-22 {
        font-size: 14px;
    }

    .section-text {
        font-size: 16px;
    }
}

.main-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.main-banner img:not(.play-button):not(.mute-button):not(.full-screen-button):not(.volume-button),
.main-banner video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 575.98px) {
    .main-banner:not(:has(button)) img:not(.play-button):not(.mute-button):not(.full-screen-button):not(.volume-button) {
        width: auto;
    }
}


.video-fade-bottom {
    mask-image: linear-gradient(to top, transparent 0%, black 30%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%, black 100%);
}

.gradient-square {
    width: 100%;
    height: 65%;
    position: absolute;
    pointer-events: none;
    background: linear-gradient(
            to top left,
            #bfb5a0 0%,
            #bfb5a0 5%,
            transparent 60%
        ),
        linear-gradient(to right top, #bfb5a0 0%, #bfb5a0 5%, transparent 60%);
    background-size: 100%;
    z-index: 1;
    bottom: 0;
}
/* 
.gradient-square {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    background: radial-gradient(
        ellipse at bottom center,
        #bfb5a0 0%,
        transparent 70%
    );
    z-index: 1;
} */

.background-opacity-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: top;
    opacity: 0.3;
    z-index: -1;
    top: 0;
}

@media (max-width: 576px) {
    .main-banner-img-responsive {
        width: 100%;
        height: 35vh !important;
        display: block;
        object-fit: cover !important;
    }
}

.play-button {
    max-width: 120px;
    position: absolute;
    /*bottom: 20px;*/
    right: 170px;
}

.volume-button,
.mute-button {
    max-width: 35px;
    position: absolute;
    bottom: 20px;
    right: 80px;
}

.full-screen-button {
    max-width: 35px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.restart-button {
    max-width: 35px;
    position: absolute;
    bottom: 20px;
    right: 140px;
}

/* For md and below (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .play-button {
        max-width: 90px;
        right: 110px;
    }
    .restart-button {
        max-width: 30px;
        right: 95px;
    }
    .volume-button,
    .mute-button {
        max-width: 30px;
        right: 55px;
    }
    .full-screen-button {
        max-width: 30px;
        right: 15px;
    }

}

/* For sm and below (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .play-button {
        max-width: 70px;
        right: 80px;
    }
    .restart-button {
        max-width: 25px;
        right: 75px;
    }
    .volume-button,
    .mute-button {
        max-width: 25px;
        right: 40px;
    }
    .full-screen-button {
        max-width: 25px;
        right: 5px;
    }
   
}


.banner-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/* Partner Logos Container */
.partner-logos {
    display: flex;
    justify-content: center; /* Center images */
    flex-wrap: wrap; /* Wrap images to a new row if needed */
    gap: 15px; /* Space between images */
    margin-top: 20px;
}

/* Individual Image Styles */
.partner-logos img {
    width: 100%; /* Up to 4 images per row */
    max-width: 150px; /* Prevents too large images */
    height: auto;
}

.border-radius-30 {
    border-radius: 30px;
}

.mb-70 {
    margin-bottom: 70px;
}

.button-rg {
    width: 83%;
    display: inline-block;
    color: white; /* White text */
    font-weight: bold; /* Bold text */
    text-align: center;
    padding: 15px 40px; /* Adjust padding */
    font-size: 18px;
    border-radius: 15px; /* Rounded corners */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-rg-alt {
    width: 65%;
    display: inline-block;
    color: white; /* White text */
    font-weight: bold; /* Bold text */
    text-align: center;
    padding: 12px 40px; /* Adjust padding */
    font-size: 14px;
    border-radius: 15px; /* Rounded corners */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

.button-rg:hover {
    filter: brightness(90%);
}

.middle-button {
    min-width: 35%;
    position: absolute;
    display: inline-block;
    color: white; /* White text */
    font-weight: bold; /* Bold text */
    text-align: center;
    padding: 12px 30px; /* Adjust padding */
    font-size: 14px;
    border-radius: 15px; /* Rounded corners */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    bottom: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
    .middle-button {
        width: auto; /* Makes it adjust to content */
    }
}

@media (max-width: 900px) {
    .middle-button {
        width: auto; /* Makes it adjust to content */
        bottom: 20%;
        padding: 12px 5px; /* Adjust padding */
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .middle-button {
        width: auto; /* Makes it adjust to content */
        padding: 12px 5px; /* Adjust padding */
        font-size: 10px;
        bottom: 10%;
        min-width: 50%;
    }

    .button-rg {
        width: 56%;
        padding: 12px 5px; 
        font-size: 10px;
        min-width: 50%;
    }
}

/* Centering the button */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px 0;
}

.container-94 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 10.5vw;
    padding-right: 10.5vw;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.container-94-alt {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 10.5vw;
    padding-right: 5.25vw;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Extra small devices (<576px) */
@media (max-width: 575.98px) {
    .container-94 {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .container-94-alt {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

/* Small devices (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container-94 {
        padding-left: 7vw;
        padding-right: 7vw;
    }
    .container-94-alt {
        padding-left: 7vw;
        padding-right: 7vw;
    }
}

/* Medium devices (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container-94 {
        padding-left: 8vw;
        padding-right: 8vw;
    }
    .container-94-alt {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}

/* Large devices (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container-94 {
        padding-left: 10vw;
        padding-right: 10vw;
    }
    .container-94-alt {
        padding-left: 10vw;
        padding-right: 10vw;
    }
}

/* Extra large devices (≥1200px and <1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container-94 {
        padding-left: 13vw;
        padding-right: 13vw;
    }
}

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
    .container-94 {
        padding-left: 15vw;
        padding-right: 15vw;
    }
}

.alt-container {
    padding-top: 7vh;
    padding-bottom: 3rem;
    padding-left: 11vw;
    padding-right: 11vw;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    /* Small - SM */
    .alt-container {
        padding-top: 7vh;
    }
}

@media (min-width: 768px) {
    /* Medium - MD */
    .alt-container {
        padding-top: 15vh;
    }
}

@media (min-width: 992px) {
    /* Large - LG */
    .alt-container {
        padding-top: 15vh;
    }
}

@media (min-width: 1200px) {
    /* Extra Large - XL */
    .alt-container {
        padding-top: 20vh;
    }
}

@media (min-width: 1400px) {
    /* Extra Extra Large - XXL */
    .alt-container {
        padding-top: 20vh;
    }
}

.album-item {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-right: 3rem;
}

@media (max-width: 1250px) {
    .album-item {
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 1000px) {
    .album-item {
        width: 45%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 745px) {
    .album-item {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 450px) {
    .album-item {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
}

.album-image {
    width: 300px;
    height: 450px;
    /*max-height: 40vh;*/
    object-fit: cover;
    object-position: bottom;
}

.album-button {
    width: 83%; /* Matches the width from .button-rg */
    max-width: 345px;
    position: absolute;
    bottom: 10px; /* Keeps button at the bottom inside the image */
    left: 50%;
    transform: translateX(-50%); /* Centers the button */
    display: inline-block;
    color: white; /* White text */
    font-weight: bold; /* Bold text */
    text-align: center;
    padding: 13px; /* Adjust padding */
    font-size: 14px;
    border-radius: 15px; /* Rounded corners */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, filter 0.3s ease;
}

@media (max-width: 576px) {
    .album-button {
        padding: 15px; /* Adjust padding */
        font-size: 14px;
        border-radius: 15px; /* Rounded corners */
    }
}

.album-button:hover {
    filter: brightness(90%);
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .album-image {
        height: 420px;
        max-width: 350px;
    }
    .album-button {
        width: 285px;
    }
}

/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .album-image {
        height: 420px;
        max-width: 350px;
    }
    .album-button {
        width: 285px;
    }
}

/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .album-image {
        height: 420px;
        max-width: 350px;
    }
    .album-button {
        width: 285px;
    }
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .album-image {
        height: 420px;
        max-width: 350px;
    }
    .album-button {
        width: 285px;
    }
}

/* Extra large devices (large desktops, ≥1200px and <1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .album-image {
        height: 420px;
        max-width: 350px;
    }
    .album-button {
        width: 285px;
    }
}

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
    .album-image {
        height: 420px;
        max-width: 350px;
    }
    .album-button {
        width: 285px;
    }
}

.middle-title {
    position: absolute;
    display: inline-block;
    font-weight: bold; /* Bold text */
    text-align: center;
    top: 25%;
}

.full-width-section {
    background-color: #005f30;
    width: 100%;
    padding: 40px 0;
}

/* Text Styling */

.custom-btn {
    border: none;
    padding: 20px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
    width: 60%;
}

.custom-btn:hover {
    background-color: #b5a07e;
}

.floating-icon {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    /* width: 100%; */
}
.floating-icon {
    bottom: 75px;
    max-width: 65px;
} /* Default (Extra Small - XS) */
@media (min-width: 576px) {
    .floating-icon {
        bottom: 90px;
        max-width: 90px;
    }
} /* Small - SM */
@media (min-width: 768px) {
    .floating-icon {
        bottom: 100px;
        max-width: 165px;
    }
} /* Medium - MD */
@media (min-width: 992px) {
    .floating-icon {
        bottom: 115px;
        max-width: 165px;
    }
} /* Large - LG */
@media (min-width: 1200px) {
    .floating-icon {
        bottom: 120px;
        max-width: 165px;
    }
} /* Extra Large - XL */
@media (min-width: 1400px) {
    .floating-icon {
        bottom: 120px;
        max-width: 165px;
    }
} /* Extra Extra Large - XXL */

@media (max-width: 1000px) {
    /* Applies to XS & SM (below MD) */
    .mt-80 {
        margin-top: 80px;
    }
}

.margin-left-10 {
    margin-left: 10%;
}

/* Apply margin auto for smaller screens */
@media (max-width: 1000px) {
    .margin-left-10 {
        margin-left: auto;
        margin-right: auto;
    }
}

.form-input-styles {
    padding: 15px;
    border-radius: 15px;
}

.everything-0 {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.weird-thing-img {
    position: static; /* Default behavior for smaller screens */
}

/* Apply absolute positioning only when screen width is lg (992px) or larger */
@media (min-width: 992px) {
    .weird-thing-img {
        position: absolute;
    }
}

.weird-thing {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
    margin-left: 10.5vw;
    margin-right: 5.25vw;
}

.footer-banner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer-banner img.background {
    width: 100%;
    height: auto;
    display: block;
}

.footer-banner img.logo {
    position: absolute;
    max-width: 350px; /* adjust size as needed */
    height: auto;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 576px) {
    .footer-banner img.background {
        width: 100%;
        height: 40vh !important;
        display: block;
        object-fit: cover !important;
    }
    .footer-banner img.logo {
        max-width: 250px; /* adjust size as needed */
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.main-banner-with-logo {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-banner-with-logo img.background {
    width: 100%;
    height: auto;
    display: block;
}

.main-banner-with-logo img.logo {
    position: absolute;
    max-width: 300px; /* adjust size as needed */
    height: auto;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 576px) {
    .main-banner-with-logo img.background {
        width: 100%;
        height: 40vh !important;
        display: block;
        object-fit: cover !important;
    }
}
