*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden ;
}
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: rgb(23,45,157);
    background: linear-gradient(90deg, rgba(23,45,157,1) 0%, rgba(1,168,242,1) 100%);   
}
.main-wrapper{
    max-width: 100%;
    height: 100vh;
    padding: 70px;
}
.top-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
.bottom-container{
    display: flex;
    align-items:center;
    justify-content: center;
}
.illustraion-wrapper{
    flex: 1 0 0%;
}
.moobifun-info{
    flex: 1 0 0%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.text-center{
    text-align: center;
}
h1{
    font-size: 90px;
}
h2{
    font-size: 41px;
}
h1, h2{
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}
#stay-tuned{
    text-shadow: 0 8px 0 #0E005C;
    margin-bottom: 30px;
}
#logo{
    width: 208px;
    margin-bottom: 85px;
}
.col-6{
    /* flex: 0 0 auto;
    width: 50%; */
    flex: 1 0 0%;
}
.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}
.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.text-bold{
    font-weight: 700;
}
.mr-1{
    margin-right: 5px;
}
.text-blue{
    color: #01A8F2;
}
a:hover{
    text-decoration: none;
    color: #01A8F2;
}
.btn-link{
    color: #ffffff;
    font-weight: 700;
}
.contact-us{
    font-size: 15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 35px;
    padding: 15px 30px;
}
/** responsive **/
@media screen and (max-width: 1024px) {
    .main-wrapper{
        padding: 40px;
    }
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 30px;
    }
  }

  @media screen and (max-width: 800px) {
    .main-wrapper{
        height: auto;
        padding: 10px;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 18px;
    }
    #logo{
        margin-bottom: 45px;
    }
    .moobifun-info{
        margin-bottom: 50px;
    }
    .top-container {
        display: flex;
        flex-wrap: nowrap;
        align-items:normal;
        justify-content:flex-start;
        margin-bottom: 80px;
        flex-direction: column-reverse;
    }
    #stay-tuned {
        text-shadow: 0 5px 0 #0E005C;
    }
    .contact-us{
        display: block;
        text-align: center;
        font-size: 12px;
        padding: 5px 30px;
    }
    .contact-us span{
        display: block;
    }
  }