* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #000f2b;
}

footer {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    padding: 20px;

    & .footer_elem {
        display: inline;
        font-size: 12px;
        margin-right: 20px;
    }


    & .footer_right {
        display: grid;
        justify-content: center;
        grid-auto-flow: column;
        align-items: center;
    }

    & .footer_left {
        display: flex;
       flex-direction: column;
       justify-content: center;
    }


    & img {
        height: 50px;
        width: auto;
    }
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #ffffff !important; /* color base */
}

.fp-watermark {
    display: none;
}

#fullscreen-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.info-container {
    display: flex;
    flex-direction: column;
}

#intro {
    background-color: #000000;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
    position: absolute;
    top: 0;
    left: 0;

    #intro-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        position: relative;
    }

    & img {
        height: 100px!important;
        width: auto;

        /* &#hexagon {
            transform: translateX(var(--start-offset, 0));
            animation: moveHexagon .5s ease-out forwards;
        }        */
    }
}

#logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;

    & img {
        height: 45px;
        width: auto;
    }
}

.section-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 640px;
    display: flex;
    flex-direction: column;

    & h4 {
        font-size: 10px;
    }

    & img {
        width: 50%;
        height: auto;
        margin-bottom: 20px;
    }

    & .info-box {
        margin-top: 30px;
        width: 40%;
    }

    & p {
        font-size: 18px;
    }
}



#videoContainer{
    opacity: 1;
    transition: 0.5s;
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 4, 17, 0.50); /* Adjust the opacity as needed */
    }

    & video {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
    }
}

@media (max-width: 800px) {

    .info-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .section-box {

        & .info-box {
            width: 90%;
        }
    }

    .section-box {
        width: 80%;
    }
}

@media (max-width: 500px) {
    .info-container {
        display: flex;
        flex-direction: column;
    }

    .section-box {
        width: 90%;

        & p {
            font-size: 14px;
        }
    }   
}

