/* font families */

@font-face {
    font-family: Gellix-Regular;
    src: url(../font-families/Gellix-Regular.ttf);
}

@font-face {
    font-family: Gellix-SemiBold;
    src: url(../font-families/Gellix-SemiBold.ttf);
}

:root {
    --white: #fff;
    --black: #000;
    --red: #d92928;
}

/* general css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--white);
    font-family: Gellix-Regular;
}

a:hover {
    text-decoration: none;
}

body {
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a,
p {
    font-size: 18px;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

img {
    width: 100%;
}


/* sider scrollbar */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

.banner_comingsoon {
    min-height: 100vh;
    background-image: url(../images/tanker_parnter_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    background-position: 0% 64%;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    width: 100%;
}

.banner_comingsoon {
    padding: 100px 0px;
}

/* coming soon styling  */

.v-center,
.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.v-center {
    align-items: center;
}

.middle_text {
    text-align: center;
}

.arrow_top,
.arrow_bottom {
    width: 470px;
    position: absolute;
}

.arrow_top {
    top: 0px;
    left: 0px;
}

.arrow_bottom {
    bottom: 0px;
    right: 0px;
}

.middle_text h1 {
    font-size: 88px;
}

.middle_text p {
    font-size: 18px;
    margin: 40px 0px 60px 0px;
}

.form_box .input-group {
    position: relative;
    background: #fff;
    border-radius: 50px;
}

.form_box input {
    background: #fff !important;
    border-radius: 50px !important;
    padding: 5px 100px 8px 20px;
    width: 100%;
    border: none;
    font-size: 16px;
    color: rgb(87, 87, 87);
    text-align: center;
}

.form_box input::placeholder {
    color: rgb(87, 87, 87);
    font-size: 16px;
}

.form_box input:focus,
.form_box input:active:focus,
.form_box .btn-submit:focus,
.form_box .btn-submit:active:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

.form_box {
    max-width: 460px;
    margin: 0 auto;
    padding: 7px 7px;
    border-radius: 50px;
    background: #fff !important;
    padding: 5px 5px;
}

.form_box .btn-submit {
    background-color: var(--red);
    padding: 4px 20px 8px 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    height: 100%;
    transition: all 0.2s linear;
}

.form_box .btn-submit:hover {
    background-color: #a60e0e;
}














/* ============= Responsive ================ */

@media only screen and (min-width: 1600px) {

    .arrow_top,
    .arrow_bottom {
        width: 618px;
    }
}

@media only screen and (max-width: 1365px) {
    .arrow_top, .arrow_bottom {
        width: 390px;
    }
}

@media only screen and (max-width: 1199px) {
    .container {
        max-width: 90%;
    }
}

@media only screen and (max-width: 991px) { 

    .arrow_top, .arrow_bottom {
        width: 300px;
    }
    .banner_comingsoon {
        padding: 150px 0px;
    }
}

@media only screen and (max-width: 767px) { 

    .arrow_top, .arrow_bottom {
        width: 250px;
    }
    .banner_comingsoon {
        padding: 150px 0px;
    }
    .middle_text h1 {
        font-size: 60px;
    }
    .middle_text p {
        margin: 30px 0px 40px 0px;
    }
}

@media only screen and (max-width: 575px) { 

    .arrow_top, .arrow_bottom {
        width: 200px;
    }

    .middle_text h1 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 424px) {
    .middle_text h1 {
        font-size: 45px;
    }
}