/* ------------------- Common -------------------- */
    body{
        font-family: "Rajdhani", sans-serif;
        font-weight: 500;
        font-size: 16px;
        color: #000;
    }
    a{
        color: #000;
        text-decoration: none;
    }
    a:hover{
        color: #000;
        text-decoration: none;
    }
    .mt30{
        margin-top: 30px;
    }
    .mb20{
        margin-bottom: 20px;
    }
    .section-title{
        margin-bottom: 3%;
    }
    .section-title h1{
        font-size: 34px;
        font-weight: 700;
        color: #14183B;
        margin-bottom: 2%;
        text-transform: capitalize;
    }
    .section-title h3{
        color: #da2828;
        font-size: 15px;
        text-transform: capitalize;
        font-weight: 700;
        font-style: italic;
    }
    
    .theme-btn{
        position: relative;
        display: inline-block;
        font-size: 18px;
        font-weight: 800;
        line-height: 24px;
        letter-spacing: 0px;
        text-transform: none;
        background: #0d1422;
        color: #ffffff;
        border-radius: 50px;
        padding: 12px 28px 12px 28px;
        border: 1px solid #0d1422 !important;
        z-index: 1;
        transition: all 0.3s ease-in-out;
        overflow: hidden;   
    }
    .theme-btn i{
        margin-left: 10px;
        font-size: 16px !important;
        transform: rotate(-45deg);
        top: 1px;
        position: relative;
        transition: all 0.3s ease-in-out;
    }
    .theme-btn:before {
        
    }
    .theme-btn:after{
        content: '';
        display: block;
        position: absolute;
        left: -15px;
        bottom: -2px;
        width: 0%;
        height: 106%;
        border-radius: 0px;
        transform: skew(30deg);
        background: #FF9D2F;
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }
    .theme-btn-title{
        
    }
    .theme-btn:hover {
        color: #0d1422;
        transition: all 0.3s ease-in-out;
        border: 1px solid #0d1422 !important;
        background-color: #0d1422 !important;
    }
    .theme-btn:hover::before, 
    .theme-btn:hover::after {
        width: 106%;
        transform: skew(0deg);
        left: -5px;
    }
    .theme-btn:hover .theme-btn-title {
        
    }
    .theme-btn:hover i{
        transform: rotate(0deg);
        transition: all 0.3s ease-in-out;
    }
    .theme-input{
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
        background: #fff;
        border: 1px solid #fff;
        font-size: 16px;
        color: #868686;
        font-weight: 600;
        text-align: center;
        padding: 10px 20px;
        margin-bottom: 10px;
        transition: all 500ms ease;
    }
    .theme-textarea{
        position: relative;
        display: block;
        width: 100%;
        height: 70px;
        background: #fff;
        border: 1px solid #fff;
        font-size: 16px;
        color: #868686;
        font-weight: 600;
        text-align: center;
        padding: 10px 20px;
        margin-bottom: 10px;
        transition: all 500ms ease;
    }
    .theme-input.form-control:focus,
    .theme-textarea.form-control:focus{
        box-shadow: none;
        border-color: #FF9D2F;
    }
    .scroll-to-top.show {
        
    }
    .scroll-to-top {
        display: flex;
        align-items: center;
        width: auto;
        height: 35px;
        background: transparent;
        position: fixed;
        bottom: 60px;
        right: -12px;
        z-index: 99;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transform: rotate(-90deg);
        cursor: pointer;
        transition: all 0.2s ease;
        color: #FF5956;
    }
    .scroll-to-top-text {
        display: inline;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        margin-right: 8px;
    }
    .scroll-to-top-wrapper {
        display: inline-block;
        width: 30px;
        height: 4px;
        background-color: #FF5956;
        position: relative;
        overflow: hidden;
        top: -1px;
    }
    .scroll-to-top-inner {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000000;
    }
    #preloader2 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: #ffffff82;
    }

    #preloader2:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #1977cc;
        border-top-color: #d1e6f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }
    @-webkit-keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes animate-preloader {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    .gal {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
    .gal img{ 
        width: 100%; 
        /*padding: 7px 0;*/
    }
    @media (max-width: 500px) {
        .gal {
            -webkit-column-count: 1; /* Chrome, Safari, Opera */
            -moz-column-count: 1; /* Firefox */
            column-count: 1;    
        }
    }
/* ------------------- Header -------------------- */
    header {
        position: relative;
        z-index: 2;
        width: 100%;
    }
    .top-header{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .top-left,
    .top-right{
        
    }
    .top-left{
        width: 30%;
        text-align: center;
    }
    .header-logo {
        
    }
    .header-logo:before {
        
    }
    .header-logo:after{
        
    }
    .header-logo img{
        width: 47%;
    }
    .header-logo-text {
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        color: #fff;
    }
    .top-right{
        width: 70%;
    }
    .header-contact-wrapper {
        padding-left: 10%;
    }
    .header-contact-wrapper ul {
        display: flex;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
    }
    .header-contact-wrapper ul li {
        padding: 0 10px;
        background: #FF9D2F; 
        margin-right: 10px; 
        height: 40px; 
        width: 40px; 
        line-height: 8px;
    }
    .header-contact-wrapper ul li a{
        color: #fff;
        line-height: 2.5;
    }
    .header-contact-wrapper ul li i{
        
    }
    .header-contact-icon {
        
    }
    .header-contact-icon i {
       
    }
    h3.header-contact-title {
        
    }
    .header-contact-info h5 {
        
    }
    .bottom-header {
        
    }
    .bottom-header-wrapper{
        
    }
    .bottom-right{
        
    }
    .navbar .navbar-nav>.active>a, 
    .navbar .navbar-nav>.active>a:focus, 
    .navbar .navbar-nav>.active>a:hover{
        
    }
    .navbar .navbar-nav>li>a{
        color: #fff;
        padding: 5px 0px;
        font-size: 20px;
        text-transform: uppercase;
        transition: 0.3s;
        display: block;
        font-weight: bold;
    }
    .navbar .navbar-nav>.active:before,
    .navbar .navbar-nav>.active:focus:before, 
    .navbar .navbar-nav>.active:hover:before {
        
    }
    .navbar-expand-lg .navbar-nav{
        
    }
    .navbar-nav.navbar-right li {
        padding: 0 10px;        
    }
    .navbar-nav .nav-link.active{
        color: #FF9D2F;
    }
    .navbar-nav .nav-link.active, 
    .navbar-nav .nav-link.show{
        color: #FF9D2F;
    }
    .navbar-nav .nav-link:hover{
        color: #FF9D2F;
    }
    .dropdown-menu{
        border-radius: 0;
        border-bottom: 3px solid #ff9d2f;
    }
    .dropdown-item{
        color: #000;
        font-weight: 700;
        font-size: 17px;
    }
    .dropdown-item.active, .dropdown-item:active{
        background: #FF9D2F;
    }
    #main_header.sticky{
        position: fixed;
        background: #000;
        z-index: 3;
    }
    #main_header.sticky .navbar .navbar-nav>li>a{
        
    }
    #main_header.sticky .top-header{
        
    }
    #main_header.sticky .bottom-header{
        
    }
    #main_header.sticky .header-logo-text{
        color: #fff;
    }
    #main_header.sticky .header-logo img {
        width: 30%;
    }
    #sticky-logo{
        display: none;
    }
    #main_header.sticky .header-logo #normal-logo{
        display: none;
    }
    #main_header.sticky .header-logo #sticky-logo{
        display: block;
    }
    .header-meta-wrapper {
        padding: 0;
        background-color: transparent;
        transform: rotate(0deg);
        width: 90%;
        overflow: hidden;
        display: flex;
        align-items: center;
        white-space: nowrap;
        position: absolute;
        z-index: 2;
        bottom: -30px;
        left: 10%;
    }
    .header-meta-content {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 25px;
        animation: scrollX 75s linear infinite;
    }
    .header-meta-content:first-child{
        margin-right: 20px;
    }
    .header-meta-title{

    }
    .header-meta-title span{
        color: #ff9d2f;
    }
    .header-meta-title:first-child span{
        color: #fff;
    }
    #main_header.sticky .header-meta-wrapper{
        bottom: -15px;
    }
    .mobile-nav-btn{
        width: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        cursor: pointer;
        z-index: 3;
    }
    .mobile-nav-btn span{
        width: 100%;
        height: 2px;
        background-color: #2D2330;
        transition: all 0.3s ease-in-out;
    }
    .mobile-nav-btn span:nth-child(2){
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .mobile-nav-wrapper{
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        transform: translateX(-100%);
        transform-origin: left center;
        transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
        visibility: hidden;
        position: fixed;
    }
    .mobile-nav-wrapper.collapsed {
        opacity: 1;
        transform: translateX(0%);
        visibility: visible;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    }
    .mobile-nav-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #2D2330;
        opacity: 0.7;
        cursor: url(../images/close.svg), auto;
    }
    .mobile-nav-content{
        width: 300px;
        background-color: #2D2330;
        z-index: 10;
        position: relative;
        height: 100%;
        overflow-y: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    }
    .mobile-nav-wrapper.collapsed .mobile-nav-content{
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    }
    .mobile-nav-close{
        position: absolute;
        top: 20px;
        right: 15px;
        font-size: 18px;
        color: #ffffff;
        cursor: pointer;
        transition: all 500ms ease;
    }
    .main-menu-list{
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    .mobile-nav-content .main-menu-list li:not(:last-child) {
        border-bottom: 1px solid RGBA(255,255,255, 0.1);
    }
    .main-menu-list li a{
        display: flex;
        justify-content: space-between;
        line-height: 30px;
        color: #ffffff;
        font-size: 16px;
        text-transform: capitalize;
        font-weight: 500;
        height: 46px;
        align-items: center;
        transition: 500ms;
    }
    .mobile-nav-contact {
        margin-bottom: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 0;
        list-style: none;
    }
    .mobile-nav-contact li {
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: flex;
        align-items: center;
    }
    .mobile-nav-contact li + li {
        margin-top: 15px;
    }
    .mobile-nav-contact li > i {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #FF9D2F;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 12px;
        margin-right: 10px;
        color: #ffffff;
    }
    .mobile-nav-contact li span,
    .mobile-nav-contact li a {
        color: inherit;
        transition: 500ms;
    }
    .mobile-nav-social{
        display: flex;
        align-items: center;
        list-style: none;
        padding-left: 0;
    }
    .mobile-nav-social a {
        font-size: 16px;
        color: #ffffff;
        transition: 500ms;
    }
    .mobile-nav-social li + li{
        margin-left: 20px;
    }
/* ------------------- Footer -------------------- */
    footer{
        position: relative;
        background: #1c1c1c;
    }
    footer:before{
        
    }
    footer:after{
       
    }
    
    .footer-wrapper{
        position: relative;
        padding: 50px 0px 0px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-wrapper:before{
        
    }
    .footer-pattern{
        position: absolute;
        left: 0px;
        top: 0px;
        height: 100%;
        width: 512px;
        background-repeat: no-repeat;
    }
    .footer-logo img{
        width: 50%;
    }
    .footer-about{
        position: relative;
        display: block;
        padding-bottom: 31px;
        margin-bottom: 34px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-about p{
        color: #fff;
    }
    .footer-social{
        
    }
    .footer-social-wrapper{
        
    }
    .footer-social-list{
        
    }
    .footer-social-list li{
        
    }
    .footer-social-list li a{
        
    }
    .footer-menu-wrap {
        
    }
    .footer-title {
        position: relative;
        display: block;
        margin-bottom: 23px;
    }
    .footer-title h2 {
        font-size: 22px;
        line-height: 30px;
        color: #FF9D2F;
        font-weight: 700;
    }
    .footer-title h2:before {
       
    }
    .footer-title h2:after {
        
    }
    .footer-contact-form .footer-title h2{
        color: #fff;
        text-transform: capitalize;
    }
    .footer-contact-meta{
        display: flex;
    }
    .footer-menu{
        padding-left: 0;
    }
    .footer-menu li{
        position: relative;
        display: block;
        margin-bottom: 6px;
    }
    .footer-menu li a{
        position: relative;
        display: inline-block;
        font-size: 16px;
        line-height: 26px;
        color: #fff;
        font-weight: 600;
        padding-left: 20px;
    }
    .footer-menu li a:before{
        position: absolute;
        content: "\f061";
        font-family: 'Font Awesome 7 Free';
        font-size: 12px;
        color: #7c7c7c;
        font-weight: 900;
        left: 0px;
        top: 0px;
        transition: all 500ms ease;   
    }
    .footer-contact-form{
        background: #e53622;
        position: relative;
        display: block;
        padding: 30px 30px 30px 30px;
        margin-top: -50px;
        overflow: hidden;
    }
    .footer-contact:before {
        
    }
    .footer-contact-title h2{
        
    }
    .footer-contact-icon{
        position: relative;
        display: block;
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
        color: #fff;
        padding-left: 30px;
        margin-bottom: 8px;
    }
    .footer-contact-icon i{
        position: absolute;
        left: 0px;
        top: 6px;
        font-size: 15px;
        color: #FF9D2F;
    }
    .footer-contact-info{
        color: #fff;
        display: inline-block;
        font-size: 20px;
    }
    .footer-contact-icon-box{
        position: absolute;
        top: -45px;
        right: 0px;
        font-size: 200px;
        line-height: 150px;
        color: rgba(28, 28, 28, 0.1);
        transform: rotate(25deg);
    }
    .footer-text{
        position: relative;
        margin-bottom: 30px;
    }
    .footer-text p{
        font-size: 16px;
        line-height: 32px;
        color: #fbbbb4;
    }
    .footer-meta-wrapper{
        padding: 0;
        background-color: transparent;
        transform: rotate(0deg);
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        white-space: nowrap;
        position: relative;
        z-index: 2;
    }
    .footer-meta-content{
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 25px;
        animation: scrollX 75s linear infinite;
    }
    @keyframes scrollX{
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    .footer-meta-title{
        margin-top: -35px;
    }
    .footer-meta-title span{
        font-size: 162px;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;
        mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.12) -9.11%, rgba(19, 61, 60, 0) 126.82%);
        -webkit-text-stroke: 1px #fff;
        box-shadow: 0px 2px 12px 0px #0635342E;
    }
    .copyright-wrapper{
        background: #FF9D2F;
        text-align: center;
        padding: 15px 0;
        font-weight: bold;
    }
    .copyright-text {
        
    }
    .copyright-text a{
        
    }
/*-------------------- Slider ----------------- */
    .slider-section{
        position: relative;
        z-index: 1;
    }
    .slider-section:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        right: 0;
        top: -161px;
        background-image: url(../images/hero-bg.png);
        background-size: cover;
    }
    .slider-side-border{
        position: absolute;
        left: 5%;
        width: 1px;
        background: #ff9d2f;
        content: "";
        height: 260px;
        top: 0;
    }
    .slider-side-border-text{

    }
    .slider-side-border-text ul{
        position: absolute;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        text-transform: uppercase;
        font-size: 14px;
        right: 90px;
        z-index: 99;
        left: auto;
        bottom: auto;
        top: 135px;
    }
    .slider-side-border-text p{
        color: #fff;
        font-weight: 500;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.9);
        padding: 5px 5px;
    }
    .slider-side-border-text:after{
        height: 470px;
        content: "";
        position: absolute;
        right: 238px;
        width: 1px;
        background: #ff9d2f;
        top: 265px;
    }
    #carouselExampleAutoplaying{
        padding: 0;
    }
    #carouselExampleAutoplaying:before{
        /*background: rgba(0, 0, 0, 0.5);
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        z-index: 1;
        left: 0;
        right: 0;*/
    }
    .carousel-caption{
        z-index: 1;
        
    }
    .carousel-caption h1{
        font-size: 4.5rem;
    }
    .carousel-control-next,
    .carousel-control-prev{
        opacity: 1;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon{
        background: #ff9d2f;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 10px 0;
    }
    .carousel-control-next-icon i, 
    .carousel-control-prev-icon i{
        font-size: 30px;
    }
/*-------------------- Banner ----------------- */
    .home-banner{
        background: url('../images/banner.jpg') no-repeat;
        transition: opacity .5s ease;
        /*height: 500px;*/
        background-position: center;
        padding-top: 50px;
        padding-bottom: 50px;
        position: relative;
        position: relative;
        width: 100%;
        background-size: cover;
    }  
    .home-banner:before
    {
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1;
    }
    .home-banner-block-bg{

    }
    .home-banner-block-bg {
        position: relative;
        z-index: 1;
    }
    .home-banner-block-inner{
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }
    .home-banner-block-wrapper{
        padding-top: 50px;
        padding-bottom: 50px;
        text-align: center;
    }
    .home-banner-block-block{
        text-align: center;
        padding-bottom: 50px;
    }
    .home-banner-block-box{
        max-width: 100%;
        background: url(../images/banner-box.png) no-repeat;
        background-size: contain;
        margin-left: auto;
        margin-right: auto;
        width: 250px;
        height: 110px;
    }
    .home-banner-block-box h2{
        font-size: 18px;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        padding-top: 40px;
    }
    .home-banner-block-box h1{
        font-size: 30px;
        color: #ff974f;
        font-weight: 900;
        text-transform: uppercase;
        padding-top: 0;
        margin-bottom: 0;
    }
    .home-banner-block-caret-down{
        color: #fff;
        font-size: 18px;
        padding-top: 6px;
    }
    .home-banner-block-caret-down i{
        color: #fff;
        padding-top: 6px;
    }
    .home-banner-wrapper-bg{
        text-align: center;
        margin-top: 5%;
    }
    .home-banner-block-bg{

    }
    .home-banner-block-bg h1{
        font-size: 30px;
        color: #ffffff;
        /*padding-bottom: 30px;*/
    }
    .home-banner-block-bg h2{
        font-size: 26px;
        color: #cccccc;
        padding-bottom: 10px;
    }
    .home-banner-block-description{
        color: #cccccc;
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 0;
        font-style: italic;
    }
    .page-banner{
        position: relative;
        /*height: 400px;*/
    }
    .page-banner:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        right: 0;
        top: -161px;
        background-image: url(../images/hero-bg.png);
        background-size: cover;
    }
    .team-banner{
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .contact-banner{
        position: relative;
    }
    .banner2-section{
        background: url('../images/banner.jpg')no-repeat;
        /*transition: opacity .5s ease;*/
        /*height: 500px;*/
        background-position: center;
        padding-top: 50px;
        padding-bottom: 50px; 
        position: relative;
        background-size: cover;
    }
    .banner2-section:before {
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1;
    }
    .banner2-heading-title{
        position: relative;
        z-index: 1;
    }
    .banner2-title{
        font-size: 40px;
        line-height: 65px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 14px;
        text-transform: uppercase;
    }
    .banner2-para{
        font-size: 22px;
        font-weight: 600;
        line-height: 44px;
        text-transform: capitalize;
        margin-bottom: 46px;
        padding-top: 30px;
        color: #fff;
    }
    .banner2-area{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .banner2-area-text{
        margin-right: 90px;
        position: relative;
    }
    .banner2-area-text:before{
        position: absolute;
        left: 110%;
        top: 37%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 1px;
        width: 30px;
        background: #ba1111;
        content: "";
    }
    .banner2-area-text h3{
        color: #ba1111;
        font-size: 24px;
        font-weight: 800;
    }
    .banner2-area-text h3 a{
        color: #fff;
    }
    .banner2-icon-box-wrapper{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .banner2-icon-box-icon{
        margin-right: 7px;
    }
    .banner2-icon-box-content{
        text-align: left;
    }
    .banner2-icon-box-content h3 span{
        font-size: 14px;
        font-weight: 700;
        color: #fff;
    }
    .banner2-icon-box-content p{
        color: #fff;
        font-size: 20px;
        font-weight: 700;
    }
/* ------------------- About -------------------- */
    .about-section{
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .about-wrapper-bg{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-image-wrapper{
        position: relative;
    }
    .about-experience{
        width: 270px;
        background-color: #14183B;
        border-radius: 20px;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    .about-experience-inner{

    }
    .about-experience-counter-title{

    }
    .about-experience-counter-title h2{

    }
    .about-experience-counter-title h2 span.about-experience-counter{
        font-size: 48px;
        line-height: 58px;
        font-weight: 800;
        color: #FF9D2F;
    }
    .about-experience-counter-title h2 span{
        font-size: 48px;
        line-height: 58px;
        font-weight: 800;
        color: #FF9D2F;
    }
    .about-experience-counter-content{
        text-align: center;
    }
    .about-experience-content{
        font-weight: 600;
        color: #14183B;
        font-size: 18px;
    }
    .about-image-one{

    }
    .about-image-one figure{
        position: relative;
        overflow: hidden;
    }
    .about-image-one figure:after{
        content: "";
        position: absolute;
        width: 200%;
        height: 0%;
        left: 50%;
        top: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        transform: translate(-50%, -50%) rotate(-45deg);
        z-index: 1;
    }
    .about-image-one figure img{
        width: 60%;
        border-radius: 20px;
    }
    .about-image-two{
        position: absolute;
        top: 0px;
        right: -30px;
        z-index: 2;
    }
    .about-image-two-inner{
        
    }
    .about-image-two-inner figure{
        position: relative;
        overflow: hidden;
    }
    .about-image-two-inner figure:after{
        content: "";
        position: absolute;
        width: 200%;
        height: 0%;
        left: 50%;
        top: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        transform: translate(-50%, -50%) rotate(-45deg);
        z-index: 1;
    }
    .about-image-two-inner figure img{
        border-radius: 20px;
    }
    .about-wrapper {
        margin-left: 10%;
    }
    .about-contact-wrapper{
        background: #FF9D2F;
        border-radius: 20px;
        padding: 16px 30px;
    }
    .about-description h2{
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .about-description h2 b{
        color: #FF9D2F;
        font-size: 30px;
        font-style: italic;
    }
    .about-image-two-inner figure:hover:after {
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }
    .about-image-one figure:hover:after {
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }
    .about-banner img{
        position: relative;
    }

    .about-banner{
        position: relative;
    }
    .about-banner:before
    {
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .page-meta-wrapper{
        position: absolute;
        bottom: 30%;
        left: 40%;
        z-index: 2;
    }
    .page-meta{
        position: relative;
        padding: 35px 30px 40px;
        display: inline-block;
        min-width: 250px;
        border: 5px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.05);
        text-align: center;
    }
    .page-meta h3{
        font-size: 40px;
        margin-bottom: 0px;
        text-transform: uppercase;
        font-weight: 700;
        color: #ffffff;
    }
    .page-meta-inner{
        position: relative;
        color: #ffffff;
        text-align: center;
        text-transform: capitalize;
    }
    .page-meta ul{
        list-style: none;
        padding: 0px;
        margin: 0px;
    }
    .page-meta ul li{
        display: inline-block;
        position: relative;
    }
    .page-meta ul li:last-child:before {
        content: '/';
        margin-right: 10px;
    }
    .page-meta ul li a{
        color: #fff;
        position: relative;
        font-size: 15px;
        text-transform: uppercase;
        color: #ffffff;
        margin: 0px 5px;
    }
    .about-page-section{
        padding-top: 50px;
    }
    .about-meta-wrapper{

    }
    .about-meta-inner{
        position: relative;
        padding-bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-meta-inner-box{
        position: relative;
        padding-left: 98px;
    }
    .about-meta-number-box{
        position: absolute;
        left: 0px;
        top: 0px;
        color: #ffffff;
        font-size: 50px;
        font-weight: 700;
        background-color: #ecebeb;
        padding: 10px;
    }
    .about-meta-inner-box h3{
        position: relative;
        line-height: 1em;
        top: -5px;
    }
    .about-meta-inner-box h3 a{
        position: relative;
        color: #da2828;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }
    .about-meta-text{
        font-size: 14px;
        color: #777777;
        margin-top: 8px;
    }
    .about-page-section .about-wrapper{
        padding-right: 20px;
    }
/* ------------------- Services -------------------- */
    .services-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .services-wrapper {
        position: relative;
    }
    .services-wrapper-bg{

    }
    .services-wrapper-bg {
        position: relative;
    }
    .service-image{
        position: relative;
    }
    .service-image:before{
        opacity: 1;
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#14183B));
        background-image: linear-gradient(rgba(0, 0, 0, 0), #14183B);
        -webkit-transition: 0.3s;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        z-index: 1;
        /*opacity: 0;*/
        -webkit-transform-origin: top;
        transform-origin: top;
    }
    .service-image img{
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .services-title {
        font-size: 22px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        position: absolute;
        left: 0px;
        bottom: 135px;
        opacity: 1;
        visibility: hidden;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        visibility: visible;
        z-index: 1;
    }
    .services-title a {
        text-decoration: none;
        outline: none;
        color: #fff;
    }
    
    .services-icon {
        position: absolute;
        bottom: 30px;
        right: 30px;
        opacity: 1;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        z-index: 1;
    }
    .services-icon i {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }
    .service-block-bg{

    }
    .service-block-bg-inner{

    }
    .service-block-one{
        /*position: relative;
        margin-bottom: 70px;*/
    }
    .service-inner-box{
        /*position: relative;
        padding-right: 90px;
        text-align: right;*/
    }
    .service-icon-box{
        /*position: absolute;
        right: 0px;
        top: 0px;
        width: 60px;
        height: 60px;
        font-size: 26px;
        line-height: 56px;
        text-align: center;
        border: 2px solid #ffd105;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;*/
    }
    .service-icon-box span{

    }
    .service-inner-box h3{
        /*position: relative;
        line-height: 1em;
        margin-bottom: 5px;*/
    }
    .service-inner-box h3 a{
        /*position: relative;
        top: -6px;
        color: #222222;
        font-size: 18px;
        font-weight: 700;
        -webkit-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;*/
    }
    .service-text{
        /*font-size: 14px;
        color: #777777;
        line-height: 1.8em;*/
    }
    .services-page-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .services-page-section .services-contennt{
        padding-top: 30px;
    }
    .services-page-section .services-title{
        position: relative;
        left: 0;
        bottom: 0;
        color: #000;
        transform: unset;
    }
    .services-page-section .services-title a{
        color: #000;
    }
/* ------------------- Testimonial -------------------- */
    .testimonial-section{
        background: url('../images/testimonial.png');
        transition: opacity .5s ease;
        /*height: 500px;*/
        background-position: center;
        padding-top: 85px;
        padding-bottom: 50px;
        position: relative;
    }

    .testimonial-section:before {
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .testimonial-section .section-title{
        background-image: url(../images/header-box.png);
        text-align: center;
        width: 360px;
        height: 84px;
        background-repeat: no-repeat;
        background-position: center center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        position: relative;
    }
    .testimonial-section .section-title h1{
        color: #fff;
    }
    .testimonial-page-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .testimonial-page-section .section-title{
        /*background-image: url(../images/header-box.png);
        text-align: center;
        width: 360px;
        height: 84px;
        background-repeat: no-repeat;
        background-position: center center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        position: relative;*/
    }
    .testimonial-page-section .section-title h1{
        /*color: #fff;*/
    }
    .testimonial-wrapper {
        text-align: center;
    }
    .testimonial-carousel{

    }
    .testimonal-content{
        padding-top: 10px;
    }
    .testimonial-page-section .testimonal-content{
        box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-bottom: 20px;
    }
    .testimonal-description{
        font-size:20px;
        line-height: 32px;
        color: #fff;
        /*font-style: italic;*/
        padding-bottom: 30px;
    }
    .testimonial-page-section .testimonal-description{
        color: #000;
    }
    .testimonal-name{
        font-size: 16px;
        color: #fff;
        text-transform: uppercase;
    }
    .testimonial-page-section .testimonal-name{
        color: #000;
    }
    .testimonal-designation{
        font-size: 12px;
        color: #fff;
        letter-spacing: 2px;
        text-transform: capitalize;
    }
    .testimonial-page-section .testimonal-designation{
        color: #000;
    }
    .testimonal-company{
        font-size: 12px;
        color: #fff;
        letter-spacing: 2px;
        text-transform: capitalize;
    }
    .testimonal-description p span {
        color: #fff !important;
        font-size: 18px !important;
    }
    .testimonial-page-section .testimonal-description p span {
        color: #000 !important;
        font-size: 18px !important;
    }
/* ------------------- Team -------------------- */
    .team-section{
        position: relative;
        background: #ecebeb;
        padding-top: 50px;
    }
    .team-text-wrapper{
        padding-top: 75px;
        padding-bottom: 75px;
        padding-left: 45px;
        padding-right: 45px;
        background-color: #fff;
        box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        margin-bottom: -70px !important;
        position: relative;
        z-index: 1;
    }
    .team-text-wrapper h2{
        font-size: 28px;
        color: #2c2e30;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 0;
    }
    .team-text-wrapper h1{
        font-size: 32px;
        color: #2c2e30;
        font-weight: 900;
        margin-top: 2px;
    }
    .team-text-description{

    }
    .team-text-line{
        position: relative;
        height: 6px;
        width: 72px;
        background: -moz-linear-gradient(left, rgba(255, 157, 47,1) 0%, rgba(255, 157, 47,1) 49%, rgba(255, 157, 47,0) 50%, rgba(125,185,232,0) 100%);
        background: -webkit-linear-gradient(left, rgba(255, 157, 47, 1) 0%, rgba(255, 157, 47, 1) 49%, rgba(255, 157, 47, 0) 50%, rgba(125, 185, 232, 0) 100%);
        background: linear-gradient(to right, rgba(255, 157, 47, 1) 0%, rgba(255, 157, 47, 1) 49%, rgba(255, 157,47, 0) 50%, rgba(125, 185, 232, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff974f', endColorstr='#007db9e8', GradientType=1 );
        padding: 2px;
        border: 1px solid #ff9d2f;
        margin-top: 30px;
    }
    .team-text-text{
        font-size: 15px;
        font-weight: 400;
        line-height: 26px;
        font-style: normal;
    }
    .team-text-list{
        margin: 0;
        padding: 0;
    }
    .team-text-list li{
        list-style: none;
        padding-bottom: 6px;
        position: relative;
        padding-left: 20px;
    }
    .team-text-list li i{
        position: absolute;
        left: 0;
        top: 5px;
    }
    .team-block-wrapper{
        
    }
    .team-block-inner{
        background-color: #fff;
        box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
    .team-image{
        background-color: #ff974f;
        -webkit-transition: all .3s ease-in-out 0s;
        -moz-transition: all .3s ease-in-out 0s;
        -ms-transition: all .3s ease-in-out 0s;
        -o-transition: all .3s ease-in-out 0s;
        transition: all .3s ease-in-out 0s;
    }
    .team-image img{
        transform-style: preserve-3d;
    }
    .team-description{
        -webkit-backface-visibility: hidden;
        display: block;
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        opacity: 0;
        text-align: left;
        -webkit-transition: all .3s ease-in-out 0s;
        -moz-transition: all .3s ease-in-out 0s;
        -ms-transition: all .3s ease-in-out 0s;
        -o-transition: all .3s ease-in-out 0s;
        transition: all .3s ease-in-out 0s;
    }
    .team-icons{
        display: table;
        width: 100%;
        height: 100%;
    }
    .team-description .team-icons>:first-child{
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }
    .team-description .team-icons>:first-child .team-icon{
        display: inline-block !important;
        color: #fff;
        margin-left: 6px;
        margin-right: 6px;
        text-align: center;
        -webkit-transition: all .1s ease-in-out 0s;
        -moz-transition: all .1s ease-in-out 0s;
        -ms-transition: all .1s ease-in-out 0s;
        -o-transition: all .1s ease-in-out 0s;
        transition: all .1s ease-in-out 0s;
        border: 0 solid #FFF;
    }
    .team-icon a{
        font-size: 18px;
        line-height: normal;
        color: #fff;
    }
    .team-icon a i{

    }
    .team-info{
        padding: 20px;
        background-color: #fff;
        text-align: center;
    }
    .team-name{
        font-size: 20px;
        color: #2c2e30;
        font-weight: 600;
        text-transform: capitalize;
    }
    .team-designation{
        font-size: 18px;
        color: #000;
        margin-bottom: 10px;
        font-style: italic;
    }
    .team-whatsapp{
        font-size: 18px;
        color: #000;
        font-style: italic;
    }
    .team-block-inner:hover .team-image{
        position: relative;
    }
    .team-block-inner:hover .team-image img{
        opacity: 0.1;
    }
    .team-block-inner:hover .team-description{
        opacity: 1;
    }
    .team-block-inner:hover .team-info{
        padding: 20px;
        background: #2c2e30;
        text-align: center;
    }
    .team-block-inner:hover .team-name{
        color: #fff;
    }
    .team-page-section{
        background: #fff;
    }
    .team-page-section .team-text-wrapper{
        background-color: #ecebeb;
        margin-bottom: 30px !important;
        padding-top: 30px;
        padding-bottom: 30px;
    }
/* ------------------- FAQs -------------------- */
    .faq-section{
        padding-top: 50px;
        padding-bottom: 50px;
        background: #ecebeb;
    }
    .faq-section .section-para{
        /*border-bottom: 1px dashed #CECECE;
        padding-bottom: 20px;*/
    }
    .faq-section .section-para p{
        /*color: #19232D;*/
    }
    .faq-accordion{
        -webkit-box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
        border: 0;
        margin-bottom: 25px;
        border-radius: 0;
        overflow: hidden;
    }
    
    .faq-accordion-header{
        border: 0;
        background: transparent;
        padding: 29px 65px 29px 30px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
    }
    .faq-accordion-header button{
        /*display: block;*/
        width: 100%;
        position: relative;
        
        background: #fff !important;
        padding: 0;
        box-shadow: none !important;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
    }
    .faq-accordion-header button span{
        font-weight: 700;
        color: #da2828;
        padding-right: 5px;
    }
    .faq-accordion-header .accordion-button{
        color: #da2828;
    }
    .faq-accordion-header .accordion-button.collapsed{
        color: #0D1422 !important;
    }
    .faq-accordion-header .accordion-button::after{
        color:#da2828;
    }
    .faq-accordion-header .accordion-button::after{
        background-image: url(../images/1.svg);
    }
    .faq-accordion-header .accordion-button:not(.collapsed)::after{
        background-image: url(../images/2.svg);
    }
    .faq-accordion-body{
        /*padding: 0 30px 27px 30px;*/
    }
/* ------------------- Events -------------------- */
    .events-page-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    /* CSS columns layout */
    .gallery {
      column-width: 250px;
      column-gap: 1rem;
    }

    .gallery img {
      width: 100%;
      height: auto;
      margin-bottom: 1rem;
      display: block;
      /* Prevent images from breaking across columns */
      break-inside: avoid;
    }
    .gallery-wrapper{
        position: relative;
    }
    .event-title{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #0e0e0e;
        padding: 10px 40px;
        color: #fff;
        text-align: center;
    }
    .event-title a{
        color: #fff;
    }
    .gallery-inner a{
        color: #fff;
        text-transform: capitalize;
    }
/* ------------------- Events -------------------- */
    .contact-page-section{
        background: #f6f6f6;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-details-wrapper{

    }
    .contact-details-inner{

    }
    .contact-details-inner ul{
        position: relative;
        display: block;
        margin-bottom: 20px;
        padding-left: 0;
        list-style: none;
    }
    .contact-details-inner ul li{
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 26px;
        font-weight: 700;
        color: #1c1c1c;
        padding-left: 28px;
        padding-bottom: 15px;
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 18px;
    }
    .contact-details-inner ul li a{
        display: inline-block;
        color: #1c1c1c;
    }
    .contact-details-inner ul li i{
        position: absolute;
        left: 0px;
        top: 4px;
        color: #FF9D2F;
    }
    .contact-page-section .section-title{
        margin-bottom: 35px;
    }
    .contact-page-section .section-title h1{
        font-size: 50px;
    }
    .contact-form-wrapper{
        position: relative;
        display: block;
        background: #fff;
        padding: 60px 60px;
        margin-left: 10px;
    }
    .contact-form-inner{

    }
    .contact-form-inner .theme-input{
        height: 70px;
        border-radius: 0;
        background: #f6f6f6;
    }
    .contact-form-inner .theme-textarea{
        border-radius: 0;
        background: #f6f6f6;
        height: 185px;
    }