@charset "UTF-8";



:root {
    /* Define font stack if needed, assuming Gotham or a fallback */
    font-family: "Gotham SSm A, Gotham SSm B", Verdana, sans-serif;
}



/*
   =========================================================================
   CUSTOM STYLES ONLY
   Removed all Bootstrap variables and framework-related defaults.
   =========================================================================
*/

/* --- Custom Fonts & Typography --- */

/* Custom font for headings and main text based on the HTML structure */
.own-font {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

/* Custom font for paragraph-like text (Corrected: assuming intent was font-size) */
.own-font-p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
}

/* --- Form and Button Base Styles (Cleaned up redundant 'appearance' declarations) --- */
button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
    appearance: button;
}

/* --- Background Video Styles --- */
.background-video-container {
    position: fixed;
    /* Stay in place relative to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Hide any video overflow */
    z-index: -1;
    /* Place behind other content */
}

.background-video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Use object-fit cover to ensure video covers the container */
    object-fit: cover;
}


/* --- BACKGROUND IMAGE HOVER STYLES (Kept commented out) --- */
/*
.image-container-1 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container-1 .image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
}

.image-container-1 .image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.image-container-1:hover .image-1 {
    opacity: 0;
}

.image-container-1:hover .image-2 {
    opacity: 1;
}

.image-container .image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s;
}

.image-container .image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.image-container:hover .image-1 {
    opacity: 0;
}

.image-container:hover .image-2 {
    opacity: 1;
}
*/


.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.own-font {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.own-font-p {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.20rem;
    /* Changed from font-optical-sizing to font-size */
    font-weight: 300;
}



body,
html {
    height: 100%;
    scroll-snap-type: y mandatory;
}

.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
}

.bg-featured-blog {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 15rem;
}

.image-container {
    position: relative;
    width: 600px;
    /* adjust to your image size */
    height: 400px;
    /* adjust to your image size */
}

.background-video-container {
    position: fixed;
    /* Stay in place relative to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Hide any video overflow */
    z-index: -1;
    /* Place behind other content */
}

.background-video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center the video */
    object-fit: cover;
    /* Ensure the video covers the entire container */
}

/* Optional: Add a subtle overlay for better text readability */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust opacity as needed */
    z-index: 0;
    /* Place above the video but below the main content */
}


.header-hero {
    /* 1. Ensure a decent minimum height for the banner area */
    min-height: 20rem;

    /* 2. Set up the background image and dark overlay */
    background-image:
        /* Dark transparent overlay (linear-gradient) for text visibility */
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        /* The path to your image (Adjust this path if necessary!) */
        url('../assets/1.jpg');

    /* 3. Ensure the image is fully responsive and covers the element */
    background-size: cover;
    background-position: center;
    /* Centers the image within the container */
    background-repeat: no-repeat;

    /* Optional: Fix the background image so it stays in place while the page scrolls */
    background-attachment: fixed;
}

.header-hero-2 {
    /* 1. Ensure a decent minimum height for the banner area */
    min-height: 20rem;

    /* 2. Set up the background image and dark overlay */
    background-image:
        /* Dark transparent overlay (linear-gradient) for text visibility */
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        /* The path to your image (Adjust this path if necessary!) */
        url('../assets/1.png');

    /* 3. Ensure the image is fully responsive and covers the element */
    background-size: cover;
    background-position: center;
    /* Centers the image within the container */
    background-repeat: no-repeat;

    /* Optional: Fix the background image so it stays in place while the page scrolls */
    background-attachment: fixed;
}

.fade-up-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-up-section.visible {
    opacity: 1;
    transform: translateY(0);
}




.hover-now a:link {
    cursor: pointer;
    color: black;
}

.hover-now a:hover {
    cursor: pointer;
    color: red;
}


.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: red;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
}

.hover-underline-animation.center::after {
    transform-origin: bottom center;
}

.hover-underline-animation.center:hover::after {
    transform-origin: bottom center;
}

.image-wrapper {
    transition: 0.35s ease-in-out;
}

.image-wrapper:hover {
    transform: scale(1.1);
}

.loading {
    --speed-of-animation: 0.9s;
    --gap: 6px;
    --first-color: #4c86f9;
    --second-color: #49a84c;
    --third-color: #f6bb02;
    --fourth-color: #f6bb02;
    --fifth-color: #2196f3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    gap: 6px;
    height: 100px;
}

.loading span {
    width: 4px;
    height: 50px;
    background: var(--first-color);
    animation: scale var(--speed-of-animation) ease-in-out infinite;
}

.loading span:nth-child(2) {
    background: var(--second-color);
    animation-delay: -0.8s;
}

.loading span:nth-child(3) {
    background: var(--third-color);
    animation-delay: -0.7s;
}

.loading span:nth-child(4) {
    background: var(--fourth-color);
    animation-delay: -0.6s;
}

.loading span:nth-child(5) {
    background: var(--fifth-color);
    animation-delay: -0.5s;
}

@keyframes scale {

    0%,
    40%,
    100% {
        transform: scaleY(0.05);
    }

    20% {
        transform: scaleY(1);
    }
}