*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --primary-color: navajowhite;
    --light-color: rgb(11, 41, 70);
    --dark-color:rgb(12, 11, 10);
    --off-dark-color:rgb(11, 17, 68);
}

body{
    font-family: 'crossorigin', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: rgb(12, 12, 27);
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: whitesmoke;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
    user-select: none;
}

/* Disclaimer */

.disclaimer{
    margin: 10px 10px;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

/* Utility Classes */
.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-sm{
    max-width: 800px;
    margin: 0 auto;
    padding: 5px 15px;
    background-size: contain;
    background-position: center bottom;
    border-radius: 15px;
    padding-bottom: 20px;
}
/*Buttons*/
.btn{
    display: inline-block;
    border-radius: 20px;
    padding: 13px 20px;
    background: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.btn:hover{
    opacity: 0.8;
}

.btn-primary{
    background-color: var(--primary-color);
}

.btn-dark{
    background-color: var(--off-dark-color);
}

.btn-block{
    display: block;
    width: 100%;
}
/* Text Classes */
.text-xxl{
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
}
.text-xl{
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px;
}

.text-lg{
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 20px;
}

.text-md{
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px;
}
.text-sm{
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
}
.text-center{
    text-align: center;
}
/* Background Classes */

.bg-light{
    background: var(--light-color);
    color:whitesmoke;
}

.bg-off-dark{
    background: var(--off-dark-color);
    color: whitesmoke;
}
/* Card */
.card{
    background: var(--light-color);
    border-radius: 10px;
    padding: 20px;
}
/* Media Queries */
@media (max-width: 960px) {
    .text-xxl{
        font-size: 2.5rem;
    }
}

@media (max-width: 670px) {
    .navbar .main-menu{
        display: none;
    }
    .navbar .hamburger-button{
        display: block;
    }

    .text-xl{
        font-size: 1.9rem;
    }
    .text-lg{
        font-size: 1.5rem;
    }
    .text-md{
        font-size: 1.1rem;
    }

    .testimonials .testimonials-heading{
        max-width: 100%;
        text-align: center;
    }

    .testimonials .testimonials-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
}