:root {
    --text-color: #FFE296;
    --heading-color: #DF962C;
    --bg-color: #1E3D66B2;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Lato", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    max-height: 100vh;
    overflow: hidden;
    flex-direction: column;
    width: 100vw;
}

.bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-size: cover;
    max-width: 100%;
    max-height: 100%;
}

.bg-video {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    aspect-ratio: 1;
}

.bg-video.active {
    opacity: 1;
}

.container {
    width: 100%;
    background: var(--bg-color);
    padding: 28px 0 18px;
    overflow: hidden;
    max-width: 500px;
}

.content-wrapper {
    padding-inline: 24px;
}

header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.header__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header__content h1 {
    font-weight: 900;
    background: linear-gradient(90deg, #CA9233 0%, #EAD88E 52.01%, #BF7A12 95.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header__content p {
    font-weight: 700;
}

.header__content h1, .header__content p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
}

header svg {
    width: 4.25rem;
    height: auto;
    margin-left: auto;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3.25rem;
}

.contact-details h2 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 400;
    color: var(--heading-color);
}

.contact-details a {
    color: var(--text-color);
}

.contact-details ul {
    list-style-position: inside;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper, .swiper * {
    pointer-events: none;
}

.swiper-free-mode {
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 10.1%, #FFFFFF 89.9%, rgba(255, 255, 255, 0) 100%);
}

.swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.swiper-slide::before {
    content: '•';
    display: inline-block;
}

@media screen and (min-width: 425px) {
    .header__content h1 {
        font-size: 1.25rem;
    }

    header {
        gap: 45px;
    }

    header svg {
        margin-left: unset;
        width: 5.125rem;
    }
}

@media screen and (min-width: 768px) {
    .container {
        padding: 42px 0 19px;
    }

    .header__content h1 {
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    header {
        gap: unset;
        justify-content: space-between;
    }

    .content-wrapper {
        padding-inline: 32px;
    }

    .contact-details {
        margin-bottom: 2.875rem;
    }

    .video-contain {
        object-fit: contain;
        background: black;
    }
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.fadeOut {
    animation: fadeOut 1s ease-in-out;
}

.invisible {
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}