@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
@font-face {font-family: 'DMSans';src: url('/font/DMSans-VariableFont_opsz,wght.ttf') format('truetype');}
@font-face {font-family: 'LatoRegular';src: url('/font/Lato-Regular.ttf') format('truetype');}

*{margin:0;padding:0;box-sizing: border-box;font-family: 'Epilogue', sans-serif;letter-spacing: 2.5px;}
.no-scroll {overflow: hidden;}




h1,h2,h3,h4,h5,h6{margin: 0;}

/* Scrollbar Css */
body::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);border-radius: 10px;background-color: #0E0D13;}
body::-webkit-scrollbar {width: 6px;background-color: #0E0D13;}
body::-webkit-scrollbar-thumb {border-radius: 10px;-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);background-color: var(--lightgreen);}

body{min-height: 100vh;background: var();background: rgb(187,0,0);background: linear-gradient(60deg, rgba(187,0,0,1) 24%, rgba(116,0,0,1) 60%, rgba(0,0,0,1) 100%);font-family: 'LatoRegular';}

.section {
    background-image: url('/image/background/bg_asset.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}

.section {width: 100vw;height: 100vh;}  

.section .sub-title{
    font-family: 'LatoRegular';
    padding-top: 3%;
    font-size: 1.5rem;
    margin-bottom: -3%;
}

.section .title{
    font-family: 'DMSans';
    font-size: 10.5rem;
}

.section .sub-desp{
    font-family: 'LatoRegular';
    font-size: 1.25rem;
    padding:0 10%;
}

.signup{
    padding-top: 3%;
}

.signup-container {
    background-color: white;
    border-radius: 30px;
    padding: 7px;
    max-width: 50%;
    display: flex;
    border-radius: 30px;
}

input.form-control {
    font-family: 'LatoRegular';
    border: none;
    box-shadow: none;
    font-size: 1.25rem;
    width: 100%;
}

input.form-control:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

button.btn {
    font-family: 'LatoRegular';
    background-color: #940000;
    border-radius:30px;
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
}

/* Tablet \ */
@media screen and (max-width: 1024px) {
    .section .title{
        font-size: 6.5rem;
    }

    .signup-container {
        max-width: 70%;
    }

    .section .sub-title{
        padding-top: 7%;
        margin-bottom: -1%;
    }

    .section .sub-desp{
        padding: 0 7%;
        padding-top: 2%;
    }

    .signup{
        padding-top: 5%;
    }
}

@media screen and (max-width: 1224px) and (orientation: landscape) {
    .section .title {
        font-size: 7.5rem;
    }
    
}

/* Mobile */
@media screen and (max-width: 500px) {
    .logo{
        width: 35%;
    }
    .section{
        background-image: url('/image/background/bg_asset_mobile.png');
    }
    .section .sub-title{
        padding-top: 7%;
        font-size: 0.85rem;
        margin-bottom: -1%;
    }

    .section .sub-desp{
        font-size: 0.7rem;
        padding: 0 7%;
        padding-top: 2%;

    }

    .signup{
        padding-top: 5%;
    }
    .section .title{
        font-size: 3.3rem;
    }

    input.form-control {
        font-size: 0.6rem;
    }

    button.btn {
        font-size: 0.6rem;
    }

    .signup-container {
        border-radius: 30px;
        padding: 5px;
        max-width: 80%;
    }

    #comingSoonDiv{
        padding-bottom: 20%;
    }
}