* {
    outline: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0;
}


:root {
    --os: 'Oswald', sans-serif;
    --hov: #e23e38;
    --op: 'Open Sans', sans-serif;
}

.main-overlay {
    position: relative;
    z-index: 1;
}

    .main-overlay:after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.trans {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}


.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: black;
    background-color: transparent;
}



/* =================common css======================= */




/* Next Part */




/* ============================================ 
              preloader part start
 ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

    #preloader:before,
    #preloader:after {
        content: "";
        position: absolute;
        border: 4px solid var(--hov);
        border-radius: 50%;
        -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

    #preloader:after {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}
/* ============================================ 
              preloader part end
 ============================================ */

/* ============================================ 
              manu part start
 ============================================ */
.main-manu {
    height: 51px;
    background: rgba(53, 53, 53, 0.25);
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    z-index: 999;
}

    .main-manu ul li a {
        color: #f1f1f1;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        font-family: var(--os);
        padding: 0 10px;
        line-height: 50px;
        position: relative;
    }

        .main-manu ul li a:after {
            position: absolute;
            content: '';
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background: var(--hov);
            transform: scaleX(0);
            -webkit-transform: scaleX(0);
            -moz-transform: scaleX(0);
            -ms-transform: scaleX(0);
            -o-transform: scaleX(0);
            transform-origin: 100% 0;
            transition: transform .3s;
            -webkit-transition: transform .3s;
            -moz-transition: transform .3s;
            -ms-transition: transform .3s;
            -o-transition: transform .3s;
        }

.m_active {
    background: #e23e38;
}

.main-manu ul li a:hover:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform-origin: 0 0;
}

.main-manu ul li a:hover {
    color: #222222;
    background: #f1f1f1;
}

.main-manu .navbar-brand {
    width: 245px;
    height: 70px;
    line-height: 70px;
    background: #000;
    text-align: center;
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    border-left: 5px solid #e23e38;
    border-right: 5px solid #e23e38;
}

    .main-manu .navbar-brand img {
        transform: skewX(30deg);
        -webkit-transform: skewX(30deg);
        -moz-transform: skewX(30deg);
        -ms-transform: skewX(30deg);
        -o-transform: skewX(30deg);
    }


/* Menu fix */


.menu-fix {
    position: fixed;
    left: 0;
    top: 15px;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

.btop {
    width: 60px;
    height: 60px;
    background: rgb(226, 62, 56);
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: none;
}

    .btop i {
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

/* ============================================ 
              manu part end
 ============================================ */


/* Next Part */


/* ============================================ 
              banner part start
 ============================================ */
.banner-iteam {
    padding: 254px 0 117px;
}

.banner-text h2 {
    color: #ffffff;
    font-size: 30px;
    font-family: var(--os);
    font-weight: 600;
}

.banner-text h1 {
    margin-top: 8px;
    font-size: 60px;
    color: #e23e38;
    font-family: var(--os);
    font-weight: 600;
}

.banner-text p {
    margin-top: 28px;
    font-size: 13px;
    color: #fff;
    line-height: 18px;
}


.banner-text a {
    margin-top: 19px;
    padding: 8px 29px;
    color: #fff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    margin-left: 17px;
    margin-right: 9px;
    text-transform: uppercase;
    font-family: var(--os);
    font-size: 16px;
    border-left: 3px solid #e23e38;
    border-right: 3px solid #e23e38;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    background: #e23e3873;
}

    .banner-text a:first-child {
        margin-left: 0;
    }

    .banner-text a:hover {
        background: #e23e38;
    }

.banner-text h2 {
    position: relative;
}

    .banner-text h2:after {
        position: absolute;
        content: '';
        right: -29px;
        top: 23px;
        width: 109px;
        height: 3px;
        background: var(--hov);
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    }

    .banner-text h2:before {
        position: absolute;
        content: '';
        left: -29px;
        top: 23px;
        width: 164px;
        height: 3px;
        background: var(--hov);
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    }

.banner-text h1 {
    position: relative;
}

    .banner-text h1:after {
        position: absolute;
        content: '';
        left: -30px;
        top: -31%;
        width: 3px;
        height: 199px;
        background: var(--hov);
    }

    .banner-text h1:before {
        position: absolute;
        content: '';
        right: -30px;
        top: -31%;
        width: 3px;
        height: 199px;
        background: var(--hov);
    }



.banner-text p {
    position: relative;
}

    .banner-text p:after {
        position: absolute;
        content: '';
        right: -30px;
        bottom: -41px;
        width: 46px;
        height: 3px;
        background: var(--hov);
    }

    .banner-text p:before {
        position: absolute;
        content: '';
        left: -30px;
        bottom: -41px;
        width: 74px;
        height: 3px;
        background: var(--hov);
    }

#banner .slick-dots {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

    #banner .slick-dots li button {
        font-size: 0;
        width: 16px;
        height: 16px;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin: 0 10px;
    }

    #banner .slick-dots li.slick-active button {
        width: 20px;
        height: 20px;
        background: var(--hov);
        border-color: var(--hov);
    }

/* ============================================ 
              banner part end
 ============================================ */


/* Next Part */


/* ============================================ 
              about part start
 ============================================ */
#about {
    padding: 80px 0;
}

.about-video {
    position: relative;
}

    .about-video .overly {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.17);
    }

        .about-video .overly a {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: #000;
            color: var(--hov);
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            text-align: center;
            line-height: 80px;
            font-size: 40px;
            border: 2px solid #e23e38;
        }

.about-text h2 {
    font-family: var(--os);
    font-weight: 400;
    font-size: 22px;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text img {
    margin-bottom: 24px;
}

.about-text p {
    font-family: var(--op);
    font-size: 14px;
    color: #444444;
    line-height: 24px;
}

    .about-text p span {
        display: block;
        margin-top: 13px;
    }

.about-video .overly a:hover {
    color: #fff;
    background: #e23e38;
    border: 2px solid #fff;
}

/* ============================================ 
              about part end
 ============================================ */


/* Next Part */


/* ============================================ 
              gallery part start
 ============================================ */
.gel-banner {
    padding: 30px 0;
}


    .gel-banner::after {
        background: rgba(0, 0, 0, 0.18);
    }


.gal-img {
    position: relative;
}


    .gal-img .overly {
        position: absolute;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
        background: rgba(233, 154, 148, 0.5);
        border: 5px ridge rgba(255, 0, 0, 0.53);
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }


        .gal-img .overly a {
            position: absolute;
            top: 50%;
            left: 50%;
            color: #fff;
            font-size: 28px;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
        }

    .gal-img:first-child {
        margin-bottom: 24px;
    }


    .gal-img:hover .overly {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }


.common-head h2 {
    font-family: var(--os);
    font-weight: 400;
    font-size: 22px;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 7px;
}


.common-head img {
    margin-bottom: 24px;
}

.venobox i {
    font-size: 50px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.gal-img .venobox i:hover {
    color: #e23e38;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

/* ============================================ 
              gallery part end
 ============================================ */


/* Next Part */


/* ============================================ 
              team part start
 ============================================ */
#team {
    padding: 80px 0;
}


.team-img {
    position: relative;
}


    .team-img .overly {
        position: absolute;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
        background: rgba(233, 154, 148, 0.5);
        border: 5px ridge rgba(255, 0, 0, 0.53);
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }

.team-main:hover .overly {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.team-img .overly ul {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

    .team-img .overly ul li a {
        width: 30px;
        height: 30px;
        color: #e23e38;
        border: 1px solid #e23e38;
        line-height: 29px;
        margin-bottom: 10px;
        transition: all linear .3s;
        background: #fff;
    }

        .team-img .overly ul li a:hover {
            background: #e23e38;
            color: #fff;
            border-color: #e23e38;
        }

.team-main {
    padding-top: 72px;
}

    .team-main:hover {
        transform: translateY(-42px);
        -webkit-transform: translateY(-42px);
        -moz-transform: translateY(-42px);
        -ms-transform: translateY(-42px);
        -o-transform: translateY(-42px);
    }

.team-txt p {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.team-txt {
    border: 2px solid transparent;
    background: #dddddd;
}

    .team-txt h4,
    .team-txt h6 {
        font-family: var(--os);
        font-weight: 400;
        /*! color: #222222; */
        font-size: 14px;
    }

    .team-txt h4 {
        padding-top: 15px;
        color: var(--hov);
    }

    .team-txt h6 {
        padding-top: 6px;
        color: #000;
    }

    .team-txt p {
        font-family: var(--op);
        color: #444444;
        font-size: 13px;
        padding: 22px;
    }

.team-main:hover .team-txt p {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}


.team-main:hover .team-txt {
    border-color: #e23e38;
}


.team-slider .slick-slide {
    padding: 0 12px;
}

/* ============================================ 
              team part end
 ============================================ */


/* Next Part */


/* ============================================ 
              Testimonial part start
 ============================================ */
.txt-slide img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.text-bg {
    padding: 133px 0;
}

    .text-bg:after {
        background: rgba(0, 0, 0, 0.18);
    }

#Testimonial .slick-slider {
    margin: 0 12px;
}

#Testimonial .slick-dots {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: -86px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: auto;
}

    #Testimonial .slick-dots li button {
        font-size: 0;
        width: 16px;
        height: 16px;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin: 0 10px;
    }

    #Testimonial .slick-dots li.slick-active button {
        width: 20px;
        height: 20px;
        background: var(--hov);
        border-color: var(--hov);
    }

.tst-name h4,
h6 {
    font-family: var(--os);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.tst-p p {
    font-family: var(--op);
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    margin-right: 36px;
}

.tst-name i {
    color: var(--hov);
}

/* ============================================ 
              Testimonial part end
 ============================================ */


/* Next Part */


/* ============================================ 
              Membership part start
 ============================================ */
#membership {
    padding: 80px 0;
}

.member-inner h3 {
    padding: 20px 0;
    background: #dddddd;
    text-transform: uppercase;
    font-size: 16px;
}

.member-inner h2 {
    padding: 32px;
    background: url(../images/member.jpg);
    color: #fff;
    font-weight: 500;
    font-size: 50px;
}

    .member-inner h2 span {
        font-size: 29px;
    }

    .member-inner h2:after {
        background: rgba(0, 0, 0, 0.23);
    }

.member-inner ul {
    background: #dddddd;
    padding: 20px 0;
}

    .member-inner ul li {
        padding: 15px 0;
    }

.member-inner a {
    padding: 10px 0;
    display: block;
    color: #222222;
    font-family: var(--os);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    background: #e23e383d;
}

.member-inner .one {
    background: url(../images/member1.jpg);
}

.member-inner .two {
    background: url(../images/member2.jpg);
}

.member-inner:hover h3 {
    background: var(--hov);
    color: #fff;
}

.member-inner:hover a {
    background: var(--hov);
    color: #fff;
}

/* ============================================ 
              Membership part end
 ============================================ */


/* Next Part */


/* ============================================ 
              counter part start
 ============================================ */
#counter {
    padding: 32px 0;
}

    #counter:after {
        background: rgba(0, 0, 0, 0.18);
    }

    #counter .counter-txt {
        color: #fff;
        font-family: var(--os);
    }

        #counter .counter-txt h3 {
            font-weight: 600;
            font-size: 40px;
        }

        #counter .counter-txt p {
            font-weight: 400;
            font-size: 16px;
        }

/* ============================================ 
              counter part end
 ============================================ */


/* Next Part */


/* ============================================ 
              classes part start
 ============================================ */
.class-menu li {
    width: 16.66666%;
    height: 50px;
    background: #dddddd;
}

#classes {
    padding: 80px 0;
}

.class-menu li button {
    width: 100%;
    height: 50px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    color: var(--hov);
    font-family: var(--os);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

    .class-menu li button:hover {
        color: #222222;
    }

.class-menu .nav-link.active,
.class-menu .show > .nav-link {
    color: #fff;
    background-color: var(--hov);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.logo-fix ul li p {
    font-size: 16px;
}

    .logo-fix ul li p:last-child {
        font-size: 14px;
    }

.class-body ul li {
    width: 19.64%;
    margin-right: 5px;
    background: #dddddd;
    margin-bottom: 5px;
    text-align: center;
    padding: 50px 0;
}

    .class-body ul li:nth-child(5),
    .class-body ul li:nth-child(10) {
        margin-right: 0;
    }

.logo-fix ul li i {
    font-size: 50px;
}

.logo-fix ul li {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .logo-fix ul li:hover {
        background: var(--hov);
    }

        .logo-fix ul li:hover i {
            color: #fff;
        }

        .logo-fix ul li:hover p {
            color: #fff;
        }

.class-menu li button:hover {
    color: var(--hov);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

/* ============================================ 
              classes part end
 ============================================ */


/* Next Part */


/* ============================================ 
              logo part start
 ============================================ */
#logo {
    padding-bottom: 80px;
}

.prv,
.nxt {
    width: 39px;
    height: 40px;
    color: #000;
    font-size: 25px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 2;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .prv:hover,
    .nxt:hover {
        color: var(--hov);
    }

.prv {
    left: -46px;
    border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
}

.nxt {
    right: -46px;
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0;
}

.logo-slide .slick-slide {
    padding: 0 12px;
}

.logo-slide .slick-center a {
    box-shadow: 0 0 10px 0 #e23e38;
    display: block;
}

.logo-slide .draggable {
    padding: 10px 0 !important;
}

/* ============================================ 
              logo part end
 ============================================ */


/* Next Part */


/* ============================================ 
              footer part start
 ============================================ */
.footer-logo {
    padding: 30px 0;
    border-bottom: 1px solid #dddddd;
}

#footer::after {
    background: rgba(0, 0, 0, 0.18);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #dddddd;
}

.footer-mid {
    padding: 30px 0;
    color: #dddddd;
}

.footer-left2 p {
    padding-left: 28px;
    position: relative;
}

    .footer-left2 p i {
        position: absolute;
        left: 0;
        top: 0;
    }

.foot-img ul li {
    width: 22%;
    margin-right: 10px;
    margin-bottom: 10px;
}

    .foot-img ul li img {
        width: 100%;
        max-width: 100%;
    }

    .foot-img ul li a {
        display: block;
    }

    .foot-img ul li:nth-child(4),
    .foot-img ul li:nth-child(8),
    .foot-img ul li:nth-child(12) {
        margin-right: 0;
    }

.foot-last {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .foot-last ul li a i {
        color: #fff;
        font-size: 16px;
        width: 30px;
        height: 30px;
        border: 1px solid #fff;
        text-align: center;
        line-height: 30px;
        margin-right: 10px;
        transition: all linear .3s;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -ms-transition: all linear .3s;
        -o-transition: all linear .3s;
    }

        .foot-last ul li a I:hover {
            background: var(--hov);
        }

    .footer-left h4,
    .footer-left2 h4,
    .foot-img h4,
    .foot-last h4 {
        font-family: var(--os);
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

.footer-left ul li {
    font-family: var(--op);
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    line-height: 18px;
}

.footer-left2 p {
    font-family: var(--op);
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    line-height: 18px;
    margin-bottom: 30px;
}

    .footer-left2 p i {
        color: #1da1f2;
        font-size: 20px;
    }

.foot-last p {
    font-family: var(--op);
    font-size: 13px;
    font-weight: 400;
    color: #dddddd;
    margin-bottom: 17px;
}

.foot-last a {
    font-family: var(--op);
    font-size: 13px;
    font-weight: 400;
    color: #dddddd;
    margin-bottom: 17px;
}

.foot-last p i {
    color: var(--hov);
}

.foot-last a i {
    color: var(--hov);
}

.footer-bottom {
    font-family: var(--op);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

    .footer-bottom p a {
        color: var(--hov);
    }

/* ============================================ 
              footer part end
 ============================================ */
/* ============================================ 
              Modal1 part start
 ============================================ */


.wrap-modal1 {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9000;
    overflow: auto;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

.overlay-modal1 {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.9;
}

.show-modal1 {
    visibility: visible;
    opacity: 1;
}

.how-pos3-parent {
    position: relative;
}

.how-pos3 {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    background: transparent;
    border: transparent;
    font-size: 44px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

    .how-pos3:hover {
        color: var(--hov);
    }

.p-t-60 {
    padding-top: 60px;
}

.p-b-30 {
    padding-bottom: 30px;
}

.form-label {
    color: #fff;
    font-family: var(--op);
    font-weight: 800;
    text-transform: uppercase;
}

.form-check-label {
    color: #ffff;
}

.form_icons a {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 5px;
    margin-top: 20px;
}

.form_icons .icon_tit {
    color: #fff;
    padding-top: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--os);
}

.modal_btn {
    background: #e23e38;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-family: var(--op);
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

    .modal_btn:hover {
        background: #fff;
        color: #e23e38;
    }

.form-control {
    font-weight: 800;
    color: #ffffff;
    background-color: #f7bcbaa8;
    border: #fff;
}

.form-check-input:checked {
    background-color: #e23e38;
    border-color: #e23e38;
}

.tit_form h3 {
    color: #e23e38;
    text-align: center;
    padding: 30px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    font-family: var(--os);
    margin-right: 10px;
}

.form_text {
    color: #fff;
}

.red-text {
    color: red;
}

.contact_form_active {
    margin-left: 10px;
}

    .contact_form_active button {
        background: var(--hov);
        border: 2px solid #fff;
        padding: 15px 44px !important;
        /*! border: rebeccapurple; */
        border-radius: 30px;
        margin: 0 auto;
        color: #f1f1f1;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        font-family: var(--os);
        line-height: unset !important;
    }

    .contact_form_active a {
        background: #e23e38;
        color: #fff !important;
        border: 2px solid #fff;
    }

        .contact_form_active a:hover {
            background: #fff;
            color: #e23e38 !important;
            border: 2px solid #e23e38;
        }

.fac a {
    color: #385898;
    border: 1px solid #385898;
    background: #fff;
}

    .fac a:hover {
        color: #fff;
        border: 1px solid #fff;
        background: #385898;
    }

.twi a {
    color: #1d9bf0;
    border: 1px solid #1d9bf0;
    background: #fff;
}

    .twi a:hover {
        color: #fff;
        border: 1px solid #fff;
        background: #1d9bf0;
    }

.ins a {
    color: #bb2fa0;
    border: 1px solid #bb2fa0;
    background: #fff;
}

    .ins a:hover {
        color: #fff;
        border: 1px solid #fff;
        background: #bb2fa0;
    }

.pat a {
    color: #ff5900;
    border: 1px solid #ff5900;
    background: #fff;
}

    .pat a:hover {
        color: #fff;
        border: 1px solid #fff;
        background: #ff5900;
    }

.goo a {
    color: #4285f4;
    border: 1px solid #4285f4;
    background: #fff;
}

    .goo a:hover {
        color: #fff;
        border: 1px solid #fff;
        background: #4285f4;
    }

/* ============================================ 
              Modal1 part end
 ============================================ */
