/* //////////////////////////////inport style sheet section//////////////////// */
@import "header.css";
@import "slider.css";
@import "body.css";
@import "footer.css";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ////////////////////////////////basic style////////////////////////////////// */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000;
    --blue: #25B3E8;
    --darkB: #0F8AEF;
    --white: #fbfbfb;
    --gray: #393b3e;
    --lightgray: #bcbcbc;
    --supergray: #ededed;
    --pop: 'Poppins', sans-serif;
    /*300,400, 500 700 */
    --rob: 'Roboto', sans-serif;
    /*300 400 500 700 */
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/* ////////////////////////////Font Style/////////////////////////////////// */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--pop);
    margin-bottom: 3%;
}

h1 {
    font-size: 2.7rem;
    line-height: 2.7rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: .9rem;
}

h2>span {
    font-weight: 700;
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite linear;
    animation: hue 10s infinite linear;
}

@-webkit-keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }

    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}

p {
    font-family: var(--pop);
    font-size: 1rem;
    text-align: justify;
    line-height: 2rem;
}

/* ////////////////////////////Common Style/////////////////////////////////// */
#loader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: #000;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wColor {
    color: var(--white);
}

.bColor {
    color: var(--black);
}

.gColor {
    color: var(--gray);
}

.lgColor {
    color: var(--lightgray);
}

.bg0 {
    background-image: url(../v-img/bg1.jpg);
    background-size: cover;
    position: relative;
}

.bg0::before {
    content: '';
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    position: absolute;
    left: 0;
    top: 0;
}

.bg1 {
    background-color: var(--supergray);
}

.b300 {
    font-weight: 300;
}

.b400 {
    font-weight: 400;
}

.b500 {
    font-weight: 500;
}

.b700 {
    font-weight: 700;
}

.centerT {
    text-align: center;
}

/* ////////////////////////////Container Style/////////////////////////////////// */
.container {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
}