@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font-family: 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'big_noodle_titling';
    src: url(../fonts/big_noodle_titling.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #ffffff!important;
    background-image: linear-gradient(to bottom right, #001d71, #00d7ff);
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 10;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    font-family: 'big_noodle_titling';
}

.btn10:hover {
    border: 1px solid #00d7ff!important;
    color: #00d7ff;
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #ffffff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #00d7ff !important;
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #cab2e0;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #00d7ff !important;
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h2 {
    font-size: 80px;
    line-height: 80px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'big_noodle_titling';
}

h3 {
    font-size: 50px;
    line-height: 50px;
    color: #FBC74D;
    font-weight: 500;
    font-family: 'big_noodle_titling';
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* soon sec css */

#particles-js {
    position: absolute;
    height: 100%;
    width: 100%;
    background: transparent;
    opacity: 0.3;
    z-index: 1;
    top: 0;
}

.soon-sc {
    /*background-image: url(../images/banner.jpg);*/
    width: 100%;
    height: 100vh;
    background-position: center top;
    background-size: cover;
    padding: 0px 0 40px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgb(4 51 131) 18%, rgb(15 92 179) 52%, rgb(13 107 188) 63%);
}


/*.soon-sc .container{
    position: relative;
    z-index: 1;
}*/

.soon-txt img {
    width: 300px;
    display: block;
    margin: auto;
    z-index: 0;
    position: relative;
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.soon_text {
    position: relative;
    z-index: 9;
}

.soon-txt {
    text-align: center;
    position: relative;
    /* z-index: 9; */
    margin-top: 10%;
}

.soon-txt h3 {
    margin-top: 0px;
    /*position: relative;z-index: 999;*/
}

.soon-txt div#countdown ul {
    display: flex;
    align-items: center;
    width: 60%;
    margin: 10px auto 20px;
    justify-content: space-between;
    position: relative;
    z-index: 999999;
}

.soon-txt div#countdown ul li span {
    display: block;
    font-size: 70px;
    font-weight: 500;
    color: #fff;
    text-decoration: none !important;
    font-family: 'big_noodle_titling';
}

.soon-txt div#countdown ul li p {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: underline;
    text-align: center;
}

.soon-txt input[type="text"] {
    width: 100%;
    background: transparent;
    border: 1px solid #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
}

.soon-txt form {
    width: 60%;
    margin: auto;
}

.soon-txt i {
    position: absolute;
    right: 17px;
    color: #fff;
    font-size: 22px;
    top: 16px;
}

.soon-txt input[type="text"]::placeholder {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 500;
}

.soon_text h3 {
    color: #fff;
}


/* media query */

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .soon-txt h3 {
        font-size: 30px;
        line-height: 35px;
    }
    .soon-txt h2 {
        font-size: 35px;
        line-height: 40px;
    }
    .soon-txt div#countdown ul li span {
        font-size: 35px;
        line-height: 40px;
    }
    .soon-txt div#countdown ul {
        width: 100%;
    }
    .soon-txt div#countdown ul li p {
        font-size: 13px;
        letter-spacing: 0;
    }
    .soon-txt form {
        width: 100%;
    }
    .soon-sc {
        height: auto;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .soon-txt h3 {
        font-size: 50px;
        line-height: 45px;
    }
    .soon-txt h2 {
        font-size: 65px;
        line-height: 80px;
    }
    .soon-txt div#countdown ul li span {
        font-size: 50px;
        line-height: 40px;
    }
    .soon-txt div#countdown ul {
        width: 100%;
        margin-bottom: 0;
    }
    .soon-txt div#countdown ul li p {
        font-size: 19px;
        letter-spacing: 0;
    }
    .soon-txt form {
        width: 100%;
    }
    .soon-sc {
        height: auto;
        padding-bottom: 30px;
    }
    .soon-txt input[type="text"] {
        padding: 13px 20px;
    }
    .soon-txt img {
        width: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .soon-txt h3 {
        font-size: 50px;
        line-height: 45px;
    }
    .soon-txt h2 {
        font-size: 75px;
        line-height: 80px;
    }
    .soon-txt div#countdown ul li span {
        font-size: 50px;
        line-height: 40px;
    }
    .soon-txt div#countdown ul {
        width: 100%;
        margin-bottom: 0;
    }
    .soon-txt div#countdown ul li p {
        font-size: 19px;
        letter-spacing: 0;
    }
    .soon-txt form {
        width: 100%;
    }
    .soon-sc {
        height: auto;
        padding-bottom: 30px;
    }
    .soon-txt input[type="text"] {
        padding: 13px 20px;
    }
    .soon-txt img {
        width: 400px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .soon-txt h3 {
        font-size: 50px;
        line-height: 45px;
    }
    .soon-txt h2 {
        font-size: 90px;
        line-height: 80px;
        margin-bottom: 20px;
    }
    .soon-txt div#countdown ul li span {
        font-size: 50px;
        line-height: 40px;
    }
    .soon-txt div#countdown ul {
        width: 70%;
        margin-bottom: 0;
    }
    .soon-txt div#countdown ul li p {
        font-size: 19px;
        letter-spacing: 0;
    }
    .soon-txt form {
        width: 70%;
    }
    .soon-sc {
        height: auto;
        padding-bottom: 30px;
    }
    .soon-txt input[type="text"] {
        padding: 13px 20px;
    }
    .soon-txt img {
        width: 400px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .soon-sc {
        height: 125vh;
    }
    .soon-txt h2 {
        font-size: 100px;
        margin-bottom: 0;
    }
    .soon-txt div#countdown ul li span {
        line-height: 60px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1500px) {
    .soon-sc {
        height: 100vh;
    }
    .soon-txt h3 {
        margin-top: 30px;
    }
}


/* @media only screen and (min-width: 1600px) and (max-width: 1600px) {
    .soon-txt div#countdown ul li span {
        line-height: 60px;
    }
    .soon-txt h2 {
        margin-bottom: 0;
    }
    .soon-txt input[type="text"] {
        padding: 12px 20px;
    }
    .soon-txt i {
        font-size: 18px;
    }
    .soon-txt h3 {
        margin-bottom: 0;
    }
} */

.soon_text p {
    font-size: 25px;
    color: #fff;
    margin: 10px 0;
    font-weight: 500;
    font-family: 'Montserrat';
}
