*{
    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;
}
/* Nav Bar */
.navbar {
    /*background-color: rgb(4, 4, 31);*/
    padding: 20px;
    user-select: none;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.navbar .main-menu ul{
    display: flex;
    gap: 10px;
}

.navbar ul li a{
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
}
.navbar ul li a i{
    margin-right: 10px;
}
.navbar ul li a:hover{
    color: var(--primary-color);
}

.navbar ul li:last-child a{
    margin-left: 0px;
}


/* Ticker */
.tickers{
    padding: 20px 0;
}

.tickers .container{
    background-color: var(--off-dark-color);
    color: whitesmoke;
    background-size: contain;
    background-position: center bottom;
    border-radius: 15px;
    padding-bottom: 20px;
    padding-top: 20px;
    max-width: fit-content;
    width: fit-content;
}

.tickers .tickers-heading{
 width: auto;
 margin: 40px;
}

.tickers .ticker-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: space-between;
    gap: 30px
}

.tickers .card{
    opacity: 0.6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    font-weight: 600;
    text-decoration: none;
    color: whitesmoke;
    font-size: 1.1rem;
}

.tickers .card p{
    margin-top: 5px;
    font-size: 1.2rem;
    padding-left: 5px;
}

.tickers .card.active{
    opacity: 1;
}
.tickers .card:hover{
    opacity: 0.8;
    cursor: pointer;
}

.tickers .card .stock-ticker-color.gray{
    color: gray;
}
.tickers .card .stock-ticker-color.lightgreen{
    color: rgb(172, 238, 172);
}
.tickers .card .stock-ticker-color.green{
    color: rgb(5, 252, 5);
}
.tickers .card .stock-ticker-color.lightred{
    color: lightcoral;
}
.tickers .card .stock-ticker-color.red{
    color: red;
}


/* Home */
.home{
    display: none;
}

.home.active{
    display: block;
}

/* Info */
.info{
    margin-bottom: 50px;
}

.info .container{
    /* background: url('../images/pfp.png') no-repeat; */
    background-color: var(--off-dark-color);
    background-size: contain;
    background-position: center bottom;
    border-radius: 15px;
}

.info .container .info-content{
    color:whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Testimonials */
.testimonials{
    padding: 20px 0;
}

.testimonials .container{
    background-color: var(--off-dark-color);
    color: whitesmoke;
    background-size: contain;
    background-position: center bottom;
    border-radius: 15px;
    padding-bottom: 20px;
    padding-top: 5px;
}

.testimonials .testimonials-heading{
 width: 700px;
 margin: 40px;
}

.testimonials-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px
}

.testimonials .card p:nth-child(2){
    margin-top: 30px;
    font-weight: bold;
}

/* FAQ */

.faq{
    padding:20px 0;
}

.faq .faq-group{
    display: none;
}
.faq .faq-group.displayed{
    display: block;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.faq .faq-group .faq-group-header{
padding: 20px 0;
margin-bottom: 15px;
position: relative;
user-select: none;
}

.faq .faq-group .faq-group-header h4{
    font-weight: 600;
    width: 95%;
}

.faq .faq-group .faq-group-header i{
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 1.3rem;
    cursor: pointer;
}

.faq .faq-group .faq-group-body{
    display: none;
}
.faq .faq-group .faq-group-body.open{
    display: block;
}

.faq ul.faq-menu{
    max-width: 400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.faq ul.faq-menu li{
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    user-select: none;
}

.faq ul.faq-menu li.active{
    background: var(--dark-color);
}

/* 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;
}

/* Hamburger Button */
.hamburger-button{
    position: fixed;
    top: 15px;
    right: 15px;
    display: none;
    background:none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    background: var(--dark-color);
    border-radius: 15px;
}

.hamburger-button .hamburger-line{
    width: 30px;
    height:3px;
    background: whitesmoke;
    margin:6px 0;
}

/* Mobile Menu */
.mobile-menu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    z-index: 999;
    background: var(--off-dark-color);
    box-shadow: 0px 0px 10px rgba(0,0,0,2);
    transition: right 0.3s ease-in-out;
}

.mobile-menu.active{
    right: 0;
}

.mobile-menu ul{
    margin-top: 100px;
    padding-right: 10px;
}

.mobile-menu ul li{
    margin: 10px 0;
}

.mobile-menu ul li a{
    font-size: 20px;
    transition: 0.3s;
}

/* Media Queries */
@media (max-width: 960px) {
    .text-xxl{
        font-size: 2.5rem;
    }

     .tickers .ticker-grid{
        grid-template-columns: 1fr;
    }
}

@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;
    }

    .tickers .ticker-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
     .tickers .ticker-grid{
        grid-template-columns: 1fr;
    }
}