*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    font-family: 'Roboto',sans-serif;
}

header{
    height: 100vh;
    position: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-box{
    height: 100vh;
    width:100vw;
    /* position: fixed; */
    z-index: 0;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.logo-box{
    width: 10%;
    height: 156px;
    margin-left: 275px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #fff;

}

.logo-box img{
    width: 100%;
    height: 100%;
    padding: 20%;
}

.hero-text{
 color: #fff;
 /* position: absolute;
 top: 25%;
 left: 50%;
 transform: translate(-50%,-50%) ;
 text-align: center;   */
}

.btn-primary{
    border: none;
    background-color: #dd0505!important;
    color: #fff;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover{
    box-shadow: none!important;
    border: none;
}



.btn-primary:hover{
    background-color: #be0505!important;
}

.statBox{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input{
    background-color: rgb(231, 231, 231)!important;
}

form input:focus{
    outline: none;
    border: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.statBox p{
    color: rgba(255,255,255,0.7);
}

h1{
    font-size: 55px;
    font-weight: 100;
}

h2{
    font-size: 40px;
    font-weight: 500;
}

.countdown-timer{
    color: #fff;
    display: flex;
    /* position: absolute; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
}

.days,.hour,.min,.sec{
    font-size: 89.4px;
    margin: 0 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
}

.days p,.hour p,.min p,.sec p{
    font-size: 27px;
    font-weight: 500;
}

.separator::after{
    content: ":";
    font-size: 89.4px;
    font-weight: 900;
    display: block;
    color: #fff;
}

.subscribe{
    position: absolute;
    top: 75%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 32%;
}

.subscribe input{
    height: 47px;
    width: 100%;
    border: none;
    padding: 10px;
}

.mail-box{
    position: relative;
    display: flex;
}

button[type="submit"]{
    background-color: #dd0505;
    color: #fff;
    padding: 3px 20px;
    border: 0;
    font-size: 17px;
    font-weight: 500;

}








/* lets do some repsonsiveness */

@media screen and (max-width:480px){
    .logo-box{width:80px;height:80px;margin-left: 10px;}
 
    h1{font-size: 32px;}
    h2{font-size: 28px;}
    .days,.hour,.min,.sec,.separator::after{font-size: 30px;margin: 0 5px;}
    .days p,.hour p,.min p,.sec p{font-size: 18px;font-weight: 100;}

}

@media screen and (max-width:768px) and (min-width:481px){
 
  
    h1{font-size: 42px;}
    h2{font-size: 34px;}
    .days,.hour,.min,.sec,.separator::after{font-size: 52px;margin: 0 5px;}
    .days p,.hour p,.min p,.sec p{font-size: 18px;font-weight: 100;}

  
}

@media screen and (max-width:1200px) and (min-width:769px){
    .logo-box{width:120px;height:120px;margin-left: 10px;}
 
    h1{font-size: 42px;}
    h2{font-size: 34px;}
    .days,.hour,.min,.sec,.separator::after{font-size: 52px;margin: 0 5px;}
    .days p,.hour p,.min p,.sec p{font-size: 18px;font-weight: 100;}

    button[type="submit"]{font-size: 12px}
    
  
}

@media screen and (max-width:1336px) and (min-width:1201px){
    .logo-box{width:120px;height:120px;margin-left: 100px;}
    .hero-text{width: 100vw;}
    h1{font-size: 58px;}
    h2{font-size: 44px;}
    .days,.hour,.min,.sec,.separator::after{font-size: 70px;margin: 0 12px;}
    .days p,.hour p,.min p,.sec p{font-size: 24px;font-weight: 300;}
   
    button[type="submit"]{font-size: 12px}
    
  
}