/*  ===========================
======== site fonts ======== 
============================ */
@font-face {
    src: url('siteFonts/DINRoundPro.woff') format('woff'),
    url('siteFonts/DINRoundPro.woff') format('woff');
    font-family: 'DINRoundPro';
    font-style: normal;
    font-weight: 400;
}
@font-face {
    src: url('siteFonts/DINRoundPro-Medi.woff') format('woff'),
    url('siteFonts/DINRoundPro-Medi.woff') format('woff');
    font-family: 'DINRoundPro';
    font-weight: 500;
}
@font-face {
    src: url('siteFonts/DINRoundPro-Bold.woff') format('woff'),
    url('siteFonts/DINRoundPro-Bold.woff') format('woff');
    font-family: 'DINRoundPro';
    font-weight: 700;
}
@font-face {
    src: url('siteFonts/Fontspring-DEMO-oktah_round_regular-BF6407f0f67a04a.woff') format('woff'),
    url('siteFonts/Fontspring-DEMO-oktah_round_regular-BF6407f0f67a04a.woff') format('woff');
    font-family: 'Oktah Round';
    font-weight: 400;
}
@font-face {
    src: url('siteFonts/Fontspring-DEMO-oktah_round_medium-BF6407f0f67e293.woff') format('woff'),
    url('siteFonts/Fontspring-DEMO-oktah_round_medium-BF6407f0f67e293.woff') format('woff');
    font-family: 'Oktah Round';
    font-weight: 500;
}
@font-face {
    src: url('siteFonts/Fontspring-DEMO-oktah_round_bold-BF6407f0f645dd5.woff') format('woff'),
    url('siteFonts/Fontspring-DEMO-oktah_round_bold-BF6407f0f645dd5.woff') format('woff');
    font-family: 'Oktah Round';
    font-weight: 700;
}
/*  ===========================
======== Basic reset ======== 
============================ */
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
html{
	overflow-x: hidden;
    scroll-behavior: smooth
}
body{
    font-family: 'DINRoundPro';
	overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
p{
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin: 0;
    color: #fff;
    font-family: 'DINRoundPro';
    font-weight: 400;
}
a{
    text-decoration: none !important;
    color: var(--light-font-color);
    display:inline-block !important;
    transition: color .5s ease-in-out;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
img {
    max-width: 100%;
}
* {
	box-sizing: border-box;
}
.text-center {
    text-align: initial;
}
.img-full {
	max-width: 100%;
}

.overflow {
	overflow: hidden;
}
/*  ===========================
======== Header ======== 
============================ */
main.wrapper-container {
    position: relative;
}
/*header*/
header {
    padding: 12px 0px;
    background-color: #ffffff00;
    overflow: hidden;
    margin-bottom: 1rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}
a.logo img {
    width: 130px;
}
.nav{
display: flex;
align-items: center;
justify-content: space-between;
}
.hamburger-menu {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1500;
}
.hamburger-menu .fa-times{
display: none;
}
.nav-list {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 1400;
opacity: 0;
transform: scale(0);
transition: opacity .5s;
}
.menu-open.nav-list{
opacity: 1;
transform: scale(1);
}
.menu-open .fa-times {
display: block;
color: rgb(10 10 10 / 85%);
}
.menu-open .fa-bars{
display: none;
}
.nav-link {
    display: block;
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: initial;
    padding: 8px 0px 8px 0px;
    color: #181024;
    transition: all .3s;
    cursor: pointer;
    font-family: 'Oktah Round';
}
.nav-link:hover{
color: #dfdfdf;
}
.nav-link:focus, .nav-link:hover {
    color: #dfdfdf;
}
/*  ===========================
======== Header ======== 
============================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.534), rgba(0, 0, 0, 0.568)),
    url('img/hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.hero-left-text-box{
    width: 90%;
}

.brand-color{
    color: #8CC63F;
}
.title {
    font-size: 48px;
    line-height: 56px;
    color: #fff;
    font-weight: 700;
    font-family: 'DINRoundPro';
}
.hero-left-text-box p {
    width: 80%;
}
a.btn.btn-color {
    padding: 12px 25px;
    background: #8CC63F;
    color: #fff;
    font-size: 18px;
    font-family: 'DINRoundPro';
    font-weight: 500;
    margin-top: 17px;
}
a.btn.btn-color:hover{
    background: #7bb332;
}
.sub-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0px;
}
.invite-code-box {
    position: relative;
    width: 90%;
}
#input {
    padding: 18px 20px;
    background: #fff;
    width: 100%;
    font-size: 16px;
    border-radius: 15px;
    border: 1px solid #8CC63F;
    font-family: 'Oktah Round';
    font-weight: 400;
}
#input:focus {
    outline: none;
}
.submit {
    background: #8CC63F;
    padding: 10px 25px;
    color: #fff;
    border: 5px solid #fff;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    font-weight: 500;
    font-family: 'Oktah Round';
}
.content-margin{
    margin-top: 100px;
}
.padding-top{
    padding-top: 18px;
}
.padding-bottom{
    padding-bottom: 20px;
}

h3.heading {
    font-size: 28px;
    color: #fff;
    line-height: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.brand-logo img {
    max-width: 500px;
    width: 100%;
    display: block;
}

/*  ===========================
======== Footer ======== 
============================ */
footer {
    padding: 12px 0px;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-roo img {
    width: 100px;
}
.footer-copyright span{
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
}
.footer-link ul li {
    display: inline-block;
    margin-right: .5px;
}
.footer-link ul li {
    font-size: 16px;
    color: #fff;
}

/*  ===========================
======== Modal ======== 
============================ */
.modal-footer {
    justify-content: center;
    border: none;
    margin: 0px 14px;
}
h5#exampleModalLabel {
    font-size: 22px;
    line-height: 32px;
    font-family: 'DINRoundPro';
    font-weight: 600;
}
.modal-header .btn-close {
    position: absolute;
    top: 17px;
    right: 13px;
}
.modal-header {
    justify-content: center;
    position: relative;
}
button.btn.btn-modal {
    background: #8CC63F;
    color: #fff;
    width: 100%;
    border-radius: 8px;
    padding: 15px 0px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'DINRoundPro';
}
.modal-body {
    padding: 20px 30px 0px 30px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'DINRoundPro';
    background-color: #F6F6F6;
    border: none;
    border-radius: 8px;
}




/*  ===========================
======== all responsive ======== 
============================ */

   /* laptop Device :1200px.   */
   @media (min-width: 1200px)  and  (max-width: 1500px) {
    
   }
            
   /* LG Device or  desktop :992px.   */
   @media (min-width: 992px)  and (max-width: 1200px) {
   
      
   }
    /*tablet view*/
    @media (min-width: 768px)  and (max-width:  998px) {
  
    }

/*Mobile menu do here*/
@media(min-width: 992px){
    .header {
      padding: 13px 0px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
       .hamburger-menu{
           display: none;
       }
  
       .nav-list{
           position: inherit;
           width: inherit;
           height: inherit;
           background-color: transparent;
           flex-direction: row;
           justify-content: inherit;
           opacity: 1;
           transform: scale(1);
       }
       .nav-link{
        text-transform: capitalize;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        color: #fff;
        transition: all .3s;
       }
       .nav-link:hover{
        color: #dfdfdf;
        }
       .nav-link {
        padding: 10px 25px;
    }
  }


/*mobile view*/
@media only screen and (max-width:767px) {

    .hero {
        height: initial;
        background-position: center left;
    }
    .title {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }
    .hero-left-text-box p {
        width: 100%;
    }
    .btn-box {
        text-align: center;
    }
    .hero-left-text-box {
        width: 100%;
    }
    .hero-left-text-box {
        padding: 60px 0px 0px 0px;
        width: 100%;
    }
    .sub-title {
        font-size: 20px;
        line-height: 28px;
        /* text-align: center; */
        margin: 10px 0px;
    }
    p {
        font-size: 14px;
        line-height: 22px;
    }
    .invite-code-box {
        width: 100%;
    }
    #input {
        padding: 20px 15px;
        width: 100%;
        font-size: 10px;
    }
    .invite-code-box p {
        /* text-align: center; */
    }
    .submit {
        padding: 14px 20px;
        border:  5px solid #fff;
        font-size: 16px;
    }
    .hero-left-text-box p {
        text-align: center;
    }
    .padding-top {
        padding-top: 15px;
    }
    h3.heading {
        text-align: center;
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .hero-right-text-box {
        width: 100%;
    }
    .hero-right-text-box {
        width: 100%;
        padding-bottom: 150px;
        padding-top: 20px;
    }

    
    .mobile-view{
        display: block !important;
    }
    .desktop-view{
        display: none !important;
    }
    .footer-flex {
        flex-direction: column;
    }
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1370px;
}
p .brand-color {
    font-weight: 500;
}