@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif;
    height: 100%;
    margin: 0;
    background-color: #f5f5f5;
    scroll-behavior: smooth;
    color: #3b3b3b;
}


section.main-page {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(2, 0, 76, 0.84) 100%);

    .background-video {
        z-index: -1;
        background-position: center;
        background-repeat: no-repeat;
        object-fit: cover;
        width: 100vw;
        height: 100vh;
        position: absolute;
    }

    .main-title {
        font-size: 4rem;
        font-weight: 500;
        color: white;
        line-height: 60px;
        text-shadow: 0em 0.1em 0.6em rgba(0, 0, 0, 0.6) !important;

        span {
            font-weight: 200;
            color: #fff;
        }
    }

    .main-title-desc {
        font-size: 1.5rem;
        color: white;
        font-weight: 400;
    }

    .subtitle-desc {
        font-size: 1rem;
        color: white;
        font-weight: 400;
    }

    ul.facilities-list {
        color: white;
        margin: 20px 0;

        li {
            padding: 5px;
        }

        li::marker {
            color: #fff;
        }
    }

    .web-solution {
        opacity: 0.3;
        color: white;
        margin-top: 20px;

        a {
            color: #fff;
            text-decoration: none;

            &:hover {
                color: white;
                opacity: 1;
            }
        }
    }

    .main-text {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
}