body {
    background: #0C0B17;
    background: linear-gradient(180deg, #000822 0.04%, #000822 99.96%);
    font-size: 18px;
}
/* Navigation */
.navbar-collapse{
    flex-grow: unset;
}
.navbar-collapse .nav-link{
    font-size: 15px;
    font-weight: 500;
}
.navbar-logo{
    height: 30px;
    width: auto;
}
.img-nav-btn{
    padding: 0px 2rem;
    
    border-radius: 5px;
    background: #FFB059;
    /* box-shadow: 0 9px 15px 0 rgba(0, 0, 0, 0.39); */
    box-shadow: 0 3px 0px 0px #E74723;
    text-align: center;
    text-decoration: none;
    color: #1B4A1C;
    text-align: center;
    font-family: Teko;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding: 7px 30px;
}
.img-title{
    width: 40%;
    z-index: 2;
    margin-bottom: 2rem;
}
/* Template */
.no-margin{
    margin: 0;
}
.full-width{
    width: 100%;
}
.full-height{
    height: 100%;
}
section{
    padding: 5rem 6rem;
}
.position-relative {
    position: relative;
}
/* Footer */
footer{
    background: black;
    color: white;
    padding: 3rem 0 0 0;
}
footer a{
    color: inherit;
    text-decoration: none;
}
.list-group-custom{
    list-style: none;
    padding: 0;
}
/* Scrolled */
.scrolled {
    background: rgba(89, 89, 89, .4)!important;
    padding-top: 1rem !important;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
}
.scrolled .nav-link {
    color: white !important;
}
.scrolled .show .nav-link {
    color: black !important;
}
.scrolled .nav-link:hover {
    color: #FDCC00 !important;
}
/* Text */
h1{
    font-weight: 700;
}
p{
    font-size: 18px;
}
.text-color{
    color: rgba(69, 215, 217, 1);
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
/* Padding */
.px-5rem{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.px-4rem{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}
.px-3rem{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}
.no-padding{
    padding: 0 !important;
}
/* Margin */
.my-5rem{
    margin-top: 5rem;
    margin-bottom: 5rem;
}
/* Top Banner */
.banner_top{
    height: 140vh;
    position: relative;
    padding-top: 6rem;
    
}
.to-front-text{
    z-index: 3;
    position: relative;
    bottom: -5rem;
}
.banner-overlay{
    content: url('../img/group_pic_trim.png');
    object-fit: contain;
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 58%;
}
.banner-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    background: url('../img/top.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Content */
.content-bg{
    position: relative;
}
/* Exta */
#rewards{
    /* background: linear-gradient(180deg, #002264 0%, #060038 100%); */
    /* box-shadow: 0 9px 15px 0 rgba(0, 0, 0, 0.39); */
    padding: 0rem 5rem;
}
.rewards-overlay{
    top: -30rem;
    position: absolute;
    content: url('../img/christmas-lights.png');
    width: 100%;
    height: auto;

}
.rewards-bg{
    padding: 2rem 0;
}
.rewards-item{
    width: 33.33%;
    padding:1rem;
}
/* how_to_join */
#how_to_join{
    background-image: url('../img/how_to_join/how_to_join-bg.png');
}
.mechanics{
    background: rgba(56, 55, 55, 0.35);
    padding: 20px 30px;
}
.step-bg{
    background: linear-gradient(180deg, #880B0E 0%, #350304 100%);
    margin: 10px 0;
}
.red-ribbon{
    padding: 10px 20px;
    color: white;
    border: 30px solid transparent;
    border-image: url('../img/border-full.png') 30 round;
}
.line-divider{
    border: 1px solid white;
    height: 2px;
    width: 100%;
}
#games{
    background: linear-gradient(178deg, rgba(23, 25, 186, 0.00) 2.11%, rgba(4, 135, 156, 0.50) 35.77%, rgba(46, 47, 94, 0.90) 56.22%, rgba(25, 91, 125, 0.70) 81.18%, rgba(23, 25, 186, 0.00) 98.28%);
}
#cta{
    background-image: url('../img/cta.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0;
}
/*  */
#btn-to-top {
    display: inline-block;
    background-color: #FFB059;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#btn-to-top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #1B4A1C;
}
#btn-to-top:hover {
    cursor: pointer;
    background-color: #E74723;
}
#btn-to-top:active {
    background-color: #E74723;
}
#btn-to-top.show {
    opacity: 1;
    visibility: visible;
}
.btn-custom{
    background: #FFB059;
    font-family: Teko;
    font-weight: 500;
    font-size: 30px;
    padding: 10px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 0px 0px #E74723;
    width: fit-content;
    color: #1B4A1C;
    text-decoration: none;
}
.btn-custom:hover, .btn-custom:active{
    background: #c78743;
    color: white;
}
.btn-custom-sub {
    background: #FFB059;
    font-family: Teko;
    font-weight: 500;
    font-size: 30px;
    padding: 10px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 0px 0px #E74723;
    width: 100%;
    color: #1B4A1C;
    text-decoration: none;
}
.btn-custom-sub:hover, .btn-custom-sub:active{
    background: #c78743;
    color: white;
}
.img-nav-btn:hover, .img-nav-btn:active{
    background: #c78743;
    color: white;
}
/* Games */
.games-container{
    display: flex;
}
.game-items{
    width: 33.33%;
    padding: 5px 15px;
}
.card{position:ralative; height:100%;}
.card-overlay{
    padding:20px; 
    position:absolute; 
    background:rgba(0,0,0,.5);
    left:0;  
    width:100%; 
    height:100%;
    z-index: 1;
    transition: all 350ms cubic-bezier(0, 0, 0.2, 1);
    display:flex;
    align-items:center;
    background:rgba(16, 1, 37, 0.85);
    opacity: 0;
} 

.card:hover .card-overlay {
  opacity: 1;
}

.card-top{
    z-index: 3;
    position: absolute;
    top: 20px;
    left: -15px;
    /* padding: 8px 20px; */
    font-size: 2rem;
    font-family: Teko;
    color: black;
    width: 80%;
    /* background: orange; */
    
}
.accordion-item:first-of-type{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}