@font-face {
    font-family: Merienda-Bold;
    src: url("../css/fonts/Merienda-Bold.ttf");
    font-display: swap;
}

@font-face {
    font-family: Merienda-Regular;
    src: url("../css/fonts/Merienda-Regular.ttf");
    font-display: swap;
}

body{
    margin: 0px;
    padding: 0px;
    color: #fff;
    background-color: #000;
    font-family: 'Merienda-Bold', cursive;
}

.loading-page{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    z-index: 50000;
    top: 0;
    left: 0;
    background-color: #000;
}

.loading-page img{
    height: 150px;
    margin-left: 50px;
}

@keyframes loading {
    0% {opacity: 0.1}
    50% {opacity: 1}
    100% {opacity: 0.1}
}

.loading-page .loading{
    text-align: center;
    color: #fff;
    font-size: 40px;
    cursor: default;
    animation-name: loading;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
}

.navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
}

.links{
    cursor: pointer;
}

.nav-links .links,
.footer-links .links{
    color: #fff;
    position: relative;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-links .links::after,
.footer-links .links::after{
    height: 1px;
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    background-color: #ffaf40;
    transition: all 0.3s;
}

.nav-links .links::before,
.footer-links .links::before{
    height: 8px;
    width: 8px;
    opacity: 0;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    z-index: 10;
    margin: auto;
    content: "";
    transform: rotateZ(45deg);
    border: 2px solid #000;
    background-color: #ffaf40;
    transition: all 0.3s;
}

.nav-links .links:hover::after,
.footer-links .links:hover::after{
    width: 100%;
}

.nav-links .links:hover::before,
.footer-links .links:hover::before{
    opacity: 1;
}

.nav-links .links.active::after,
.footer-links .links.active::after{
    width: 100%;
}

.nav-links .links.active::before,
.footer-links .links.active::before{
    opacity: 1;
}

.menu-btn{
    display: none;
}









.logo-container a{
    display: inline-block;
}

img.logo{
    width: 200px;
    display: block;
    margin: 20px 0;
}

img.titans{
    margin: auto;
    user-select: none;
}

.section{
    padding-top: 150px;
}

h1{
    position: relative;
    text-align: center;
    text-transform: capitalize;
    font-size: 35px;
    margin: 15px 0 35px;
    text-shadow: 0 0 15px #ffaf40;
}

h2{
    position: relative;
    text-align: center;
    text-transform: capitalize;
    font-size: 28px;
    margin-bottom: 15px;
}

h3{
    color: #ddd;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    margin: 20px 0 50px;
}

.headline::after{
    height: 1px;
    width: 150px;
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #ffaf40;
}

.headline::before{
    height: 8px;
    width: 8px;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    z-index: 10;
    margin: auto;
    content: "";
    transform: rotateZ(45deg);
    border: 2px solid #000;
    background-color: #ffaf40;
}

h1.headline{
    text-shadow: none;
}

h1.headline::after{
    bottom: -20px;
}

h1.headline::before{
    bottom: -23px;
}

p{
    color: #ccc;
    margin: 20px 0;
    text-align: justify;
    font-size: 20px;
    line-height: 30px;
}

.owl-carousel *{
    outline: none !important;
}

.owl-carousel .owl-item,
.slick-slide{
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}

.owl-carousel .owl-item.center,
.slick-slide.slick-center{
    opacity: 1;
    transition: all 0.4s;
}

.owl-carousel .owl-item img,
.slick-slide img{
    height: 220px;
    width: auto;
    max-width: 100%;
    margin: auto;
    transition: all 0.4s;
}

.owl-carousel .owl-item.center img,
.slick-slide.slick-center img{
    height: 300px;
}

.owl-carousel.owl-store .owl-item img{
    height: 80px;
    border-radius: 20px;
    border: 2px solid #222;
}

.owl-carousel.owl-store .owl-item.center img{
    height: 150px;
}

.owl-carousel p{
    font-size: 14px;
    line-height: 27px;
}

.owl-carousel .owl-item h2{
    margin: 30px 0 15px;
    text-shadow: 0 0 15px #ffaf40;
}

.owl-carousel .owl-item h2,
.owl-carousel .owl-item h3{
    opacity: 0;
    transition: all 0.4s;
}

.owl-carousel .owl-item h3{
    font-size: 16px;
}

.owl-carousel .owl-item.center p,
.owl-carousel .owl-item.center h2,
.owl-carousel .owl-item.center h3{
    opacity: 1;
    transition: all 0.4s;
}


.owl-carousel .owl-nav {
    width: 350px;
    font-size: 50px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #ffaf40;
}

.owl-carousel.owl-store .owl-nav {
    width: 500px;
    bottom: 90px;
}

.no-content{
    text-align: center;
    font-size: 22px;
    padding: 15px 0;
    color: #ccc;
}






















.signup-btn{
    width: 300px;
    display: block;
    margin: auto;
    outline: none;
    padding: 5px 10px;
    color: #fff;
    text-shadow: 0 0 0 #fff;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: inset 0 20px 10px #fa8231, 0 0 5px #fa8231;
    background-color: #ffaf40;
    transition: all 0.3s;
}

.signup-btn:hover{
    color: #fff;
    text-shadow: 0 0 10px #fff;
    box-shadow: inset 0 15px 20px #fa8231, 0 0 15px #fa8231;
}

.message-btn{
    width: 150px;
    padding: 3px 10px;
    font-size: 16px;
}


.support-form{
    margin-bottom: 100px;
}


footer .container{
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo{
    width: 200px;
    margin: 0 0 30px 0;
}

.social-links div,
.social-links a{
    margin: 0 10px;
}

.social-links div img,
.social-links a img{
    height: 30px;
    width: 30px;
}

.copyrights{
    width: 100%;
    font-size: 14px;
    padding: 12px 0;
    color: #ddd;
    /* background-color: #111111ad; */
    text-align: center;
    /* background-color: #222222ad; */
}


form textarea.form-control{
    height: 140px;
    resize: none;
}

form input.form-control,
form textarea.form-control{
    margin-bottom: 20px;
    outline: none;
    box-shadow: none;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s;
    color: #eee;
    background-color: #333;
}

form input.form-control:focus,
form textarea.form-control:focus{
    border-color: #fa8231;
    box-shadow: 0 0 20px #fa8231;
}

form button.signup-btn{
    margin-top: 15px;
}

form button.message-btn{
    margin-top: 35px;   
}

form .custom-radio label{
    font-size: 15px;
    cursor: pointer;
}

.custom-control-input:checked~.custom-control-label::before,
.custom-control-input:not(:disabled):active~.custom-control-label::before{
    border-color: #fa8231;
    background-color: #fa8231;
}

.login-form{
    margin: 100px 0;
}

.login-form .custom-checkbox label,
.login-form .custom-checkbox input{
    cursor: pointer;
}

.btn-link{
    margin: 15px 0;
    font-size: 16px;
    color: #fa8231;
    outline: none;
    transition: all 0.3s;
}

.btn-link:hover{
    color: #ffaf40;
}

.forget-password{
    font-size: 12px;
    margin-top: 0;
}

.input-log{
    color: #e00;
    font-size: 14px;
}

.input-log.sent{
    color: #0e0;
}

.form-note{
    display: block;
    color: #666;
    font-size: 12px;
    margin: 5px 0 15px 10px;
    text-align: left;
}

.terms-container{
    font-weight: 100;
}

.terms-subtitle{
    color: #ffaf40;
    text-align: center;
    margin-top: 50px;
    line-height: 35px;
    font-size: 18px;
    font-weight: 900;
}


.terms-container p{
    color: #d8d8d8;
    display: block;
    font-size: 18px;
    line-height: 32px;
    margin: 30px 0;
    text-align: justify;
}

.terms-container span{
    color: #ffaf40;
}




.reset-form{
    padding: 200px 0;
}
















@media (max-width: 993px) {
    .logo-container{
        text-align: center !important;
    }

    .container{
        max-width: 800px;
    }

    img.logo{
        margin: 20px auto 0;    
    }

    .titans{
        width: 100%;
    }

    .form-bg{
        position: absolute;
        left: 0;
        right: 0;
        z-index: -1;
        margin: auto;
        opacity: 0.35;
    }

    form.w-75{
        width: 60% !important;
    }

    form.float-right{
        margin: auto;
        float: none !important;
    }

    form.login-form{
        margin: 100px auto;
    }
}


@media (max-width: 700px) {
    footer ul li{
        display: block;
        margin: 10px 0;
    }
}


@media (max-width: 550px){
    .loading-page img{
        height: 100px;
    }
    
    .loading-page .loading{
        font-size: 30px;
    }

    .navbar{
        padding: 10px 15px;
    }

    img.logo{
        width: 120px;
        margin-top: 0;
    }

    .navbar .nav-links{
        height: 100%;
        width: 300px;
        padding-top: 30px;
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: -360px;
        z-index: 1500;
        background-color: rgba(34, 34, 34, 0.95);
        transition: all 0.5s;
    }

    .navbar .nav-links .links{
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .navbar .nav-links .links:hover{
        color: #ffaf40;
    }

    .navbar .nav-links .links.active::after,
    .navbar .nav-links .links.active::before,
    .navbar .nav-links .links:hover::after,
    .navbar .nav-links .links:hover::before{
        display: none;
    }

    .navbar .nav-links .links.active{
        color: #ffaf40;
    }

    .menu-btn{
        width: 30px;
        height: 30px;
        display: block;
        cursor: pointer;
    }

    .menu-btn span{
        height: 3px;
        width: 100%;
        display: block;
        margin: 10px 0;
        background-color: #eee;
        transition: all 0.3s;
    }
    
    .menu-btn span:last-child{
        width: 80%;
    }

    .menu-btn.opened span{
        width: 100%;
        transform: rotateZ(135deg);
    }
    .menu-btn.opened span:last-child{
        margin-top: -12px;
        transform: rotateZ(45deg);
    }
    
    img.titans{
        margin-top: 50px;
    }

    h1{
        font-size: 22px;
    }
    
    h2{
        font-size: 20px;
    }
    
    h3{
        font-size: 16px;
        line-height: 28px;
    }

    
    .owl-carousel.owl-store .owl-item h2{
        font-size: 14px;
    }

    .owl-carousel .owl-item h3{
        font-size: 12px;
        line-height: 20px;
    }

    p{
        font-size: 16px;
        line-height: 24px;
        margin: 15px 0;
    }

    .btn-link{
        font-size: 14px;
    }

    .section{
        padding-top: 80px;
    }
    
    .owl-carousel .owl-item{
        height: auto;
    }

    .owl-carousel .owl-item img{
        width: 100%;
        height: auto;
    }

    .owl-carousel .owl-item.center img{
        width: 100%;
        height: auto;
    }
   
    .owl-carousel.owl-store .owl-item img,
    .owl-carousel.owl-store .owl-item.center img{
        width: 100px;
        height: 100px;
    }
    
    .owl-carousel.owl-store .owl-nav{
        bottom: 90px;
    }
    
    .owl-carousel .owl-nav,
    .owl-carousel.owl-store .owl-nav{
        width: 100%;
    }

    .signup-btn {
        width: 250px;
        padding: 2px 10px;
        font-size: 18px;
    }

    form.w-75{
        width: 95% !important;
    }

    .reset-form{
        padding-top: 150px;
    }


    .login-form .signup-btn,
    #register .signup-btn,
    .reset-form .signup-btn{
        margin-top: 50px;
    }


    .login-form .custom-checkbox label,
    .login-form .custom-checkbox input {
        cursor: pointer;
        font-size: 14px;
        padding-top: 5px;
    }

    .social-links a{
        margin: 0 10px;
    }
    
    .social-links a img{
        height: 35px;
        width: 35px;
    }
}


@media(min-width: 1600px){
    .container-fluid{
        max-width: 1500px;
    }

    img.titans{
        margin-top: 150px;
    }
}