@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body, button, input, select, textarea, p {
    color: #637381;
    font-family: "Poppins", serif;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

/* ==========================================================================
   Links
   ========================================================================== */
a {
    color: #000000;
    text-decoration: none;
}

    a:focus {
        outline: none;
    }

    a:hover, a:focus {
        color: #000
    }

    a:active, a:hover {
        outline: 0;
        text-decoration: none;
    }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    color: #000000;
    font-weight: 400;
}

h1, .h1 {
    font-size: 45px;
}

h2, .h2 {
    font-size: 32px;
}

h3, .h3 {
    font-size: 28px;
}

h4, .h4 {
    font-size: 22px;
}

h5, .h5 {
    font-size: 16px;
}

/* ==========================================================================
   Global
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1160px;
}

.text-blue{
    color: #012178;
}

.page {
    padding: 3.5rem 0;
}

.bg-gray {
    background: #eeeff1;
}

.btn-outline-primary {
    border: solid 1px #61c3ca;
    color: #61c3ca;
    padding: 0.5rem 0.8rem;
}

.btn-outline-primary:hover {
    background: #343a41;
    border: solid 1px #343a41;
}

.btn-primary {
    border: solid 1px #f77319;
    color: #FFF;
    background: #f77319;
    padding: 0.6rem 1.4rem;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
}
.btn-primary .bi{
    font-size: 14px;
}

.btn-primary:hover {
    background: #FFC944;
    border:solid 1px #FFC944;
    color: #000;
}

.btn-outline-secondary {
    border: solid 1px #cdcdcd;
    color: #000000;
    padding: 0.5rem 0.8rem;
}

.btn-outline-secondary:hover {
    background: #dcdcdc;
    color: #000000;
    border: solid 1px #dcdcdc;
}

.btn-secondary {
    border: solid 1px #cdcdcd;
    color: #000000;
    background: #cdcdcd;
    padding: 0.5rem 0.4rem;
}

.btn-secondary:hover {
    background: #cdcdcd;
    border: solid 1px #cdcdcd;
}

.btn-custom {
    padding: 0.5rem 0.8rem;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: none !important;
}

.form-control:focus {
    box-shadow: none !important;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    box-shadow: none !important;
}

.btn-yellow {
    background: #fcb401;
    border: solid 1px #fcb401;
    /*padding: 1rem;*/
}

.btn-yellow:hover {
    background: #eda901;
    border: solid 1px #eda901;
}

.fw-500{
    font-weight: 500;
}

/* ==========================================================================
   Header Css
   ========================================================================== */
 
   header{
    padding: 1.6rem 0;
   }
   header .btn-primary{
    background: #0966b8;
    border: solid 1px #0966b8;
    color: #FFF;
   }
   header .btn-secondary{
    background: #f77319;
    border: solid 1px #f77319;
    color: #FFF;

    padding: 0.6rem 1.4rem;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
   }


   .launcing {
    margin-top: 3rem;
   }
   .launcing h1{
        font-size: 95px;
        font-weight: 800;
        color: #0966b8;
   }
   .launcing p{
    font-size: 25px;
    color: #000;
    margin-top: 1.6rem;
   }
   .launcing p span{
    font-weight: 700;
   }

   .timer{
    margin-top: 2rem;
    text-align: center;
   }
   .timer h2{
        font-size: 45px;
        font-weight: 600;
        margin-bottom: 0px;
        line-height: 0;
   }
   .timer p{
    color: #808080;
    font-size: 18px;
    text-transform: uppercase;
   }

   .logo img{
    max-width: 200px;
   }

   @media(max-width:767px){
    .launcing h1 {
        font-size: 35px;
    }
    .launcing p {
        font-size: 17px;
    }
    .timer h2 {
        font-size: 30px;
    }
    .logo{
        text-align: center;
        margin-bottom: 0.6rem;
    }
    .btn-center{
     text-align: center;
     display: none;
    }
    .launcing {
        margin-top: 1rem;
    }
   }