﻿html, body {
    overflow-x: hidden;
    width: 100%;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    font-family: "Inter", sans-serif;
}

.hd-black {
    color: #000;
}

.hd-white {
    color: #fff;
}

.hd-yellow {
    color: #F7F554;
}

.hd-gray {
    color: #777;
}

#siteLogo {
    max-width: 200px;
}

.modal-title {
    color: #F7F554;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

.hero {
    position: relative;
    min-height: 90vh;
}

.arrow-down::after {
    cursor: pointer;
    content: "\f063";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 2rem;
    position: absolute;
    z-index: 10;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
}

.navbar.hipka-navbar.fixed-top {
    background: transparent;
    border: none;
    box-shadow: none;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
    pointer-events: none;
}

.hipka-nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 14px 28px;
    width: 100%;
    border-radius: 0;
    background-color: #ffffff;
    box-shadow: none;
    transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1), border-radius 0.35s cubic-bezier(0.19, 1, 0.22, 1), margin-top 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s cubic-bezier(0.19, 1, 0.22, 1), background 0.2s ease;
}

    .hipka-nav .nav-left {
        padding-left: 100px;
    }

    .hipka-nav .nav-right {
        flex: 0 0 auto;
        padding-right: 100px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hipka-nav .nav-center {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .hipka-nav.nav-compact {
        width: min(1100px, 92%);
        margin-top: 16px;
        border-radius: 999px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.18);
        background-color: rgba(255,255,255,0.96);
    }

.hipka-navbar .navbar-brand {
    margin: 0;
}

.hipka-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

    .hipka-nav-link:hover {
        color: #FFEB00;
    }

.hipka-nav-icon {
    height: 24px;
    width: auto;
}

.hipka-nav-text {
    font-size: 0.8rem;
    white-space: nowrap;
}


.hipka-container {
    background-color: #fff;
}

.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #73C0FC;
    transition: .4s;
    border-radius: 30px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 30px;
        width: 30px;
        border-radius: 20px;
        left: 2px;
        bottom: 2px;
        z-index: 2;
        background-color: #e8e8e8;
        transition: .4s;
    }

.sun svg {
    position: absolute;
    top: 6px;
    left: 36px;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.moon svg {
    fill: #73C0FC;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.sun svg {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.moon svg {
    animation: tilt 5s linear infinite;
}

@keyframes tilt {

    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.input:checked + .slider {
    background-color: #183153;
}

.input:focus + .slider {
    box-shadow: 0 0 1px #183153;
}

.input:checked + .slider:before {
    transform: translateX(30px);
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 1.2rem;
}

a {
    color: #000;
}

    a:hover {
        color: #777;
    }


blockquote {
    font-size: 120px;
    font-family: "Playfair", Arial;
    font-weight: bold;
    line-height: 0.8;
    color: #000;
}

.container-fluid.custom-wide {
    max-width: 1600px;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #FFEB00;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.header-image {
    margin-top: 80px;
    margin-bottom: 40PX;
    background-size: cover;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

.header-video {
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

    .header-video video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-wrapper {
    margin:40px 0 0 0;
    height: 100vh;
    width: 100%;
}

.video {
    width: 100%;
    height: 100%;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    object-fit: cover;
}


.text-fw-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

    .text-fw-wrapper.align-right {
        justify-content: flex-end;
    }

    .text-fw-wrapper.align-left {
        justify-content: flex-start;
    }

    .text-fw-wrapper.align-top {
        align-items: flex-start;
    }

    .text-fw-wrapper.align-bottom {
        align-items: flex-end;
    }

.text-fw-content {
    width: fit-content;
    max-width: 100%;
}

.text-fw-wrapper.align-right .text-fw-content {
    text-align: right;
}

.swiper {
    width: 100%;
    overflow: visible;
    margin-bottom: 10px;
}

.swiper-slide {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slide-media {
    position: relative;
    display: inline-block;
}

    .slide-media img {
        display: block;
        max-width: 100%;
        height: auto;
    }

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(0,0,0,.85);
    color: #fff;
}

.slide-nav-prev {
    left: 12px;
}

.slide-nav-next {
    right: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

footer {
    background-color: #F8F552 !important;
    padding: 50px;
}

    footer h2 {
        font-size: 60px;
    }

.footer-image-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .footer-image-right img {
        margin-right: 2rem;
        margin-bottom: 4rem;
        width: 80%;
        height: 80%;
    }

.footer-text-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
