@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0px 0px;
    padding: 0px 0px;
    list-style: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(0 86 183) !important;
}

/*** 

====================================================================
Main Header
====================================================================

***/
/* Base styling for main navigation */
/* Base styling for main navigation */


a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none !important;
    cursor: pointer;
    color: #1c73ea;
    font-family: 'Montserrat', sans-serif;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #292929;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu .navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .navigation>li {
    position: relative;
    padding: 0 15px;
}

/* Sub-menu initially hidden */
.main-menu .navigation>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

/* Show sub-menu on hover */
.main-menu .navigation>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
    /* Visibility activates immediately */
}

/* Sub-menu items styling */
.main-menu .navigation>li>ul>li {
    list-style: none;
    position: relative;
}

/* Styling for all sub-menu links */
.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a {
    position: relative;
    padding: 10px 13px;
    line-height: 29px;
    font-weight: 500;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
    background-color: #d92d2f;
    /* Ensure a consistent background */
    display: block;
    border-bottom: 1px solid #e5e5e5b3 !important;
    transition: color 200ms ease, background-color 200ms ease;
    /* Apply specific transition */
    border-right: 1px solid #ffffff75;
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a:hover {
    color: #020202;
    background-color: #fcd619;
    /* Slight change for hover background */
}

/* Nested sub-menu transitions */
.main-menu .navigation>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 20%;
    width: 270px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

.main-menu .navigation>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transition for deeper nested menus */
.main-menu .navigation>li>ul>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 20%;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    transition: 500ms ease;
    width: 270px;
    border-right: 1px solid #fff;
}

.main-menu .navigation>li>ul>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.main-header .logo {
    position: relative;
}

.main-header .logo img {
    width: 100%;
}

.main-header .logo {
    width: 180px;
}

.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-menu {
    position: relative;
    float: left;
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 30px 0px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    font-weight: 400;
    color: #c40404;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 20px;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.main-menu .navigation>li>a:before {
    position: absolute;
    left: 50%;
    bottom: -4px;
    height: 2px;
    width: 0%;
    background: #000066;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
    left: 0;
    width: 75%;
}


.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}



.dropdown ul li:last-child a {
    /* border-bottom: none !important; */
}


.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    /* transform: rotate(180deg); */
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    /* transform: rotate(180deg); */
}

.dropdown2a>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    transform: rotate(180deg);
}

.dropdown a i {
    font-size: 13px;
}

.dropdown2a li {
    bottom: 2px solid #bebdbd !important;
}

.dropdown2a:hover ul {
    display: block;
}

.is-sticky {
    position: fixed !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    backdrop-filter: blur(7px);
    animation: slideDown 0.45s ease-out;
    background-color: #fff !important;
    width: 100%;
    top: 0;
    border-radius: 0px;
    z-index: 1000;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    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-left: 40px;
}

.main-header .outer-box .theme-btn {
    display: block;
    min-width: 160px;
}

.dropdown_t ul {
    position: absolute;
    top: 0;
    right: -270px;
    width: 300px;
    background-color: #f48023;
}

.dropdown_t:hover ul {
    display: block;
}


/*** 

====================================================================
Mobile Menu
====================================================================

***/

.mobile-nav-toggler {
    position: relative;
    font-size: 24px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-right: 15px;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100vh;
    overflow-y: scroll;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    text-align: left;
    width: 100px;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: relative;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 25px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    background-color: #1c73ea;
    cursor: pointer;
    z-index: 10;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    padding: 0 20px;
}

.mobile-menu .navigation>li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.mobile-menu .navigation>li>a {
    font-weight: 500;
    border: 1px solid #eeeeee;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #1c73ea;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    border: 1px solid #fafafa;
    color: #222222;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 300msease;
    -o-transition: all 300ms ease;
    transition: all 300msease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active .fa:before {
    display: inline-block;
    position: relative;
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
    margin-left: 10px;
}


.mobile-nav-toggler span {
    color: #000;
}

.header-style {
    background-color: #ffffff;

}

.header-style .main-menu .navigation>li>a {
    color: #302f2f;
    font-weight: 600;
}

.header-style .main-menu .navigation>li>a:before {
    bottom: -4px;
}

.header-style .main-menu .navigation>li>a:hover:before,
.header-style .main-menu .navigation>li.current>a:before {
    width: 25px;
}

.header-style .menu-outer {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 0px 0px;
}

.header-style .outer-box .theme-btn {
    min-width: 160px;
}

.header-style .logo {
    padding: 0px 0;
}

.header-style-three {
    top: 0;
}

.header-style-three .menu-outer {
    position: relative;
    padding: 40px 0 !important;
}

.header-style-three .theme-btn {
    min-width: 160px;
}

@media only screen and (max-width: 1920px) {

    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 33px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 25px;
        margin-right: 12px;
    }


}


@media only screen and (max-width: 1240px) {
    .dropdown {
        padding-right: 39px;
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        background-color: #003667;
        height: 100vh;
        overflow-y: scroll;

    }

    .mobile-menu .navigation {
        margin-top: 40px;
    }

    .mobile-menu .navigation li:hover>a,
    .mobile-menu .navigation li.current>a {
        color: #ffffff;
    }

    .mobile-menu .navigation li>a {
        color: #fff;
    }

    .dropdown-btn span {
        color: #fff;
    }

    .mobile-nav-toggler {
        display: block;
    }

    .main-header {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    .main-header .outer-box,
    .main-header .nav-outer .main-menu {
        display: none;
    }

    .header-style-three .logo,
    .header-style-two .logo,
    .main-header .logo-outer .logo {
        padding: 15px 0;
    }

    .main-header .logo-outer .logo img {
        height: 40px;
    }

    .header-style-two .mobile-nav-toggler {
        color: #303030;
    }

    .header-style-two,
    .header-style-three {
        border-bottom: 0;
    }

    .header-span {
        height: 70px;
    }

    .banner-slider .slick-prev {
        z-index: 1;
    }

    .banner-slider .slick-next {
        z-index: 1;
    }

    .dropdown a i {
        display: none;
    }

    .mobile-menu .nav-logo img {
        width: 100%;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 20px 20px;
        text-align: left;
        width: 81%;
    }

    .mobile-menu .nav-logo img {
        height: auto;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul {
        padding-left: 0px !important;
        margin-left: 0px !important;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul li a {
        border: 1px solid #fff;
    }

    .Application-slider .slick-next {
        display: none !important;
    }

    .Application-slider .slick-prev {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) {

    .main-menu .navigation>li>ul,
    .main-menu .navigation>li>ul>li>ul {
        visibility: hidden;
        opacity: 0;
    }

}


@media only screen and (max-width: 1023px) {
    .mobile-nav-toggler {
        display: block;
    }

    .main-header {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    .main-header .outer-box,
    .main-header .nav-outer .main-menu {
        display: none;
    }

    .header-style-three .logo,
    .header-style-two .logo,
    .main-header .logo-outer .logo {
        padding: 15px 0;
    }

    .main-header .logo-outer .logo img {
        height: 40px;
    }

    .header-style-two .mobile-nav-toggler {
        color: #303030;
    }

    .header-style-two,
    .header-style-three {
        border-bottom: 0;
    }

    .header-span {
        height: 70px;
    }

}

@media (max-width:1280px) {
    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 30px 0px;
        margin-right: 15px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }
}

/* ...............header-end.................. */
@media (max-width:1600px) {
    .ace-responsive-menu>li>a {
        padding: 20px 13px;
    }

}

@media (max-width:1440px) {
    #header-main {
        padding: 0px 90px;
    }

    .main-menu .navigation>li>a {
        font-size: 14px;
    }
}

@media (max-width:1366px) {
    .slider-style-seven.home-8 .owl-dots{
        top: 97% !important;
    }
    .header-top:before {
        width: 69px !important;
        left: 34% !important;
    }
    .header-top:after{
        width: 33%;
    }
    .header-top .container{
        max-width: 1269px;
    }
    .main-menu .navigation>li>a {
        font-size: 14px;
    }

    .main-header .logo img {
        width: 64%;
    }

    .ace-responsive-menu>li>a {
        font-size: 16px;
    }

    .main-menu .navigation>li {
        padding-right: 12px;
        margin-right: 21px;
    }

    body {
        padding-right: 0px !important;
        overflow-x: hidden !important;
    }
}



@media screen and (max-width:1024px) {
    .ace-responsive-menu>li>a {
        padding: 10px 23px;
    }

    .about-one__right {
        margin-left: 0px;
        margin-top: 16px;
    }

    .menu-toggle {
        padding: 10px 40px;
    }

    #header-main {
        padding: 0px 0;
    }

    .how-it-work__single {
        margin-bottom: 30px;
    }

    .how-it-work__icon {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }

    .how-it-work__single-2 .how-it-work__icon {
        left: 0;
    }

    .how-it-work__single-2 {
        padding-left: 0;
    }

    .how-it-work__text br {
        display: none;
    }

    .menu-toggle {
        display: flex;
        justify-content: space-between;
    }

    .menu-toggle {
        background-color: transparent;
    }

    .mobile-logo {
        display: block !important;
    }

    .desktop-logo {
        display: none;
    }


    .demo {
        width: 96%;
        padding: 2%;
    }

    ul[data-menu-style="vertical"],
    ul[data-menu-style="accordion"],
    ul[data-menu-style="vertical"] li ul.sub-menu {
        width: 100% !important;
    }

    .ace-responsive-menu {
        float: left;
        width: 100%;
        text-align: left;
    }

    .ace-responsive-menu>li {
        border-bottom: 1px solid #242424;
        float: none;
        display: block;
    }

    .ace-responsive-menu li a:hover {
        background: #70090c !important;
        color: #fff;
    }

    .ace-responsive-menu>li:first-child {
        border-top: 2px solid #abc68b;
    }

    .ace-responsive-menu>li>a i {
        padding-right: 10px;
        color: #FF5737;
    }

    .ace-responsive-menu>li>a>.arrow:before {
        float: right;
        content: "\f105";
        font-size: 16px;
        font-family: FontAwesome;
        text-shadow: none;
        width: 10px;
        display: inline-block;
    }

    li.menu-active>a>.arrow:before {
        content: "\f107" !important;
    }

    .ace-responsive-menu li ul.sub-menu>li {
        width: 100%;
    }

    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 30px;
    }

    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 50px;
    }

    .ace-responsive-menu>li>ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu>li>ul.sub-menu>li ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu>li>ul.sub-menu>li ul.sub-menu>li ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu li ul.sub-menu li.menu-active>a>.arrow:before {
        content: "\f107" !important;
    }

    .ace-responsive-menu>li>a:after {
        left: 4.8%;
    }
}

@media screen and (max-width:1154px) {
    .inner-apges-image {
        width: 100%;
        float: right;
        margin-left: 0;
        /* padding: 40px; */
        overflow: hidden;
        box-shadow: rgb(0 0 0 / 20%) 0px 25px 50px -12px;
        margin-bottom: 30px;
    }

    .contactt_address ul li {
        display: inline-block;
        vertical-align: top;
        width: 100% !important;
        min-height: auto;
    }

    .contactt_address ul {
        padding-left: 0px !important;
    }

  

    .mb-row .col-lg-4 {
        margin-bottom: 20px !important;
    }

    .ace-responsive-menu>li>a {
        padding: 7px 23px;
    }

    .what-make-diffrent .container .row .col-md-12 .row .col-md-3 {
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width:1058px) {
    .ace-responsive-menu>li>a {
        padding: 7px 23px;
    }
}


@media (max-width:767px) {
    .contact-form ul li:last-child {
        border: 1px solid #c4c4c4;
        flex: 0 0 89% !important;
        float: left;
        width: 100%;
        border-left: 0;
    }
    .about-shape-5{
        display: none !important;
    }
    .enquiry-bg h4{
        text-align: center;
    }
    .style-three{
        margin-top: 15px;
    }
    .infoSection .content{
        padding: 20px 0px !important;
    }
    .infoSection .content .boxCon {
        width: 100% !important;
    }
    .main-header .logo img {
        width: 94%;
        padding: 7px 0px;
    }
    .bannerInner {
        flex-wrap: wrap;
    }

    .bannerItem .bannerContent {
        width: 100% !important;
    }

    .bannerBottom {
        display: none;
    }

    .bannerItem .bannerPImg {
        width: 80% !important;
    }

    .bannerItem {
        padding-top: 5px;
    }

    .bannerItem .bannerContent h1 {
        font-size: 35px !important;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 46px !important;
    }
    .bannerContent{
        margin-bottom: 20px;
    }
    #serviceSection .bodySection .nav-pills .nav-item {
        margin: 12px 5px !important;
    }
    .title-bx {
        margin: 0 auto 10px !important;
    }
    /* .text .exp .exp_num {
        font-size: 75px;
    } */
    .counter-one__single{
        margin-bottom: 25px !important;
    }
    .about-shape-4{
        width: 90% !important;
    }
    .slider-style-seven.home-8 .owl-dots{
        max-width:max-content !important;
    }
    .header-top:before{
        display: none !important;
    }
    .top-left{
        display: none   ;
    }
    .top-info li{
        display: none !important;
    }
    .top-info li:last-child{
        display: block !important;
    }
    .slider-style-seven .content-box h1, .slider-style-seven .content-box h3{
        font-size: 44px !important;
        line-height: 47px !important;
    }
    .slider-style-seven .content-box .text {
        font-size: 20px !important;
        line-height: 27px !important;
    }
    .title_2{
        font-size: 30px !important;
        line-height: 38px !important;
    }
    #serviceSection .bodySection .tab-content .tab-pane p{
        padding: 0px 10px !important; 
    }
}

/*----- Header Top -----*/
/*----- Header Top -----*/

.header-top {
    position: relative;
    overflow: hidden;
    padding: 5px 0px;
    background: #d92920;
    z-index: 100;
}

.header-top:before {
    content: "";
    background: #c32720;
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    height: 100%;
    width: 79px;
    left: 37%;
    top: 0;
    position: absolute;
}

.header-top:after {
    background: #c32720;
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 100%;
    content: '';
    z-index: -1;
}

.header-top .top-left h6 {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: #ffffff;
    margin-top: 5px;
    z-index: 99;
}

.header-top .top-right {
    float: right;
}

.header-top .top-right .top-info li {
    position: relative;
    display: inline-block;
    padding: 0px 15px;
    border-right: 1px solid #c6ccda;
}



.header-top .top-right .top-info li:last-child {
    border-right: none;
}

.header-top .top-right .top-info li:first-child a {
    color: #fff;
    font-size: 14px;
}

.header-top .top-right .top-info li:nth-child(2) a {
    color: #fff;
    font-size: 14px;
}

.header-top .top-right .top-info li:nth-child(3) a {
    color: #fff;
    font-size: 14px;
}

.header-top .top-right .top-info li a i {
    margin-right: 5px;
}


/*--banner start--*/
.bannerWrap {
    width: 100%;
    height: 80vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

@keyframes create-rainbow-gradient-shift {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 100% 100%
    }
}

.bubbleAnimate {
    width: 800px;
    position: absolute;
    right: 7%;
    top: 150px;
}

/* .bannerWrap::after{
    width:100%;
    height: 100%;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    z-index: 0;
    background-image:linear-gradient(to Right, transparent 0 30%, #FFF 70% 100%);
  } */
.bannerSlider {
    height: 100%;
}

.bannerItem {
    height: 100%;
    display: flex;
    align-items: center;
}

.bannerInner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: space-between;
}

.bannerItem .bannerContent {
    width: 44%;
    text-align: left;
}



.bannerItem .bannerPImg {
    width: 46%;
    padding-top: 20px;
}

.bannerItem .bannerPImg img {
    width: 90%;
}

.bannerItem .bannerContent h1 {
    font-size: 51px;
    line-height: 62px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #ffffff;
}

.bannerItem .bannerContent p {
    font-size: 20px;
}

.bannerWrap .swiper-pagination {
    bottom: 3%;
}

.bannerWrap .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: #ff7400;
    opacity: 1;
    position: relative;
}

.bannerWrap .swiper-pagination-bullet::before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    border: 1px solid #fff;
    content: "";
    transform: translate(-50%, -50%);
    top: 50%;
}

.bannerWrap .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    background-color: #3f86ed;
}


.swiper-pagination-bullets-dynamic {
    overflow: visible;
}

.frmWrap select.inputTxt {
    background: url(../img/home/down-arrow.png) 98% center no-repeat #f1f1f1;
    -webkit-appearance: none;
}

.btnH {
    width: auto;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #042b67, #135d9f, #0e69ae, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
    display: inline-flex;
    padding: 0 40px;
    line-height: 50px;
    background-position: 100% 0;
}

.btnH:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #fff;
}

.bannerBtn {
    margin-top: 20px;
}

.bigBubble {
    width: 400px;
    height: 400px;
    background-color: #125a9b26;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: -160px;
    box-shadow: inset 0px 0px 100px 0px #fbfbfb;
    animation: rotate 10s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
}

.bannerBottom {
    width: 100%;
    bottom: 0px;
    position: absolute;
    left: 0;
    z-index: 1;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.gradient {
    width: 500px;
    height: 500px;
    filter: blur(50px);
    background-image: linear-gradient(#ffbb98, #c8e0e9, #99b5ca);
    animation: rotate 10s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: absolute;
    top: 5%;
    left: 45%;
    transform: translateX(-50%);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bannerWrap .swiper-slide {
    transition-duration: 800ms !important;
    position: relative;
}

.bannerWrap .swiper-slide-active {
    opacity: 1;
    transform: none;
}

/* .bannerWrap .swiper-slide-active .title {
    transition-delay: 0.6s;
  }
  
  .bannerWrap .swiper-slide-active .songs {
    transition-delay: 1s;
  }
  
  .bannerWrap .swiper-slide-active .overview {
    transition-delay: 1.4s;
  } */

/* [data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
  }
  
  [data-animate="bottom"] {
    transform: translate3d(0, 15px, 0);
  } */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bannerWrap .swiper-slide .bannerContent h1,
.bannerWrap .swiper-slide .bannerContent p,
.bannerWrap .swiper-slide .bannerBtn {
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.bannerWrap .swiper-slide .bannerContent p {
    color: #fdca5d;
    font-size: 22px;
    font-weight: 800;
    margin-top: 7px;
}
.bannerWrap .swiper-slide.swiper-slide-active .bannerContent h1,
.bannerWrap .swiper-slide.swiper-slide-active .bannerContent p,
.bannerWrap .swiper-slide.swiper-slide-active .bannerBtn {
    opacity: 1;
    transform: translateY(0px);
}

.bannerWrap .swiper-slide .bannerPImg {
    transform: translateX(100%);
    transition: 2s;
    opacity: 0;
}

.bannerWrap .swiper-slide.swiper-slide-active .bannerPImg {
    transform: translateX(0);
    opacity: 1;
}


/*--banner end--*/













.intro-style-three .content-box .text {
    position: relative;
    display: block;
    color: #686868;
    margin-bottom: 16px
}

.intro-style-three .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #0c0d24;
    border: 1px solid #e9e9e9;
    text-align: center;
    padding: 13.5px 31px
}

.intro-style-three .btn-box a:hover {
    color: #fff;
    background: var(--light);
    border-color: var(--light)
}

.intro-style-three .inner-box {
    position: relative;
    margin-top: -60px
}

.intro-style-three .inner-box .single-item {
    position: relative;
    display: block;
    background: #fff;
    padding: 43px 35px 49px 35px;
    box-shadow: 0 0 20px rgb(0 0 0 / .1);
    text-align: center;
    border-radius: 10px
}

.intro-style-three .inner-box .single-item:before {
    width: 100%;
    height: 5px;
    position: absolute;
    content: "";
    background: #fff0;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: .5s ease
}

.intro-style-three .inner-box .single-item:hover:before {
    transform: scaleX(1);
    background: var(--light)
}

.intro-style-three .inner-box .single-item .icon-box {
    position: relative;
    display: inline-block;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 22px;
    color: #fff0;
    background: -webkit-linear-gradient(0deg, #fc9636, #fd4471 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.intro-style-three .inner-box .single-item h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #0c0d24;
    margin-bottom: 10px
}

.intro-style-three .inner-box .single-item h3 a {
    position: relative;
    display: inline-block;
    color: #0c0d24
}

.intro-style-three .inner-box .single-item h3 a:hover {
    color: var(--light)
}

.intro-style-three .inner-box .single-item .text {
    position: relative;
    display: block;
    font-size: 16px;
    margin-bottom: 23px
}

.intro-style-three .inner-box .single-item .btn-box a {
    padding: 6px 34.5px
}

.intro-style-three .content-box {
    position: relative;
    background: #fff;
    padding: 52px 15px 30px 0
}

.intro-style-three .content-box:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 130px;
    height: 100%;
    left: -130px;
    top: 0
}

.intro-style-three .content-box:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 50px;
    height: 100%;
    right: -50px;
    top: 0
}

.intro-style-three .inner-container {
    position: relative;
    background: #fff0;
    margin-top: -55px;
    z-index: 1
}

.fabrics-section {
    position: relative;
    display: block;
    padding: 70px 0 0
}

.fabrics-section .single-item-carousel .owl-dots {
    display: none
}

.products-carousel .owl-dots {
    display: none
}

.fabrics-section .single-item-carousel .owl-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 32px 40px 12px 40px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.products-carousel .owl-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 32px 40px 12px 40px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.fabrics-section .single-item-carousel .owl-nav .owl-prev,
.fabrics-section .single-item-carousel .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    margin: 0 10px;
    color: #d0d0d7;
    cursor: pointer;
    transition: all 500ms ease
}

.products-carousel .owl-nav .owl-prev,
.products-carousel .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    margin: 0 10px;
    color: #d0d0d7;
    cursor: pointer;
    transition: all 500ms ease
}

.fabrics-section .single-item-carousel .slide-item img {
    width: 100%
}

.products-carousel .slide-item img {
    width: 100%
}

.slider-style-seven.home-8 .owl-dots {
    position: absolute;
    display: block;
    left: 80%;
    top: 100%;
    transform: translateY(-50px);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto
}

.slider-style-seven.home-8 .owl-theme .owl-dots .owl-dot span {
    position: relative;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 500ms ease
}

.slider-style-seven.home-8 .owl-theme .owl-dots .owl-dot.active span {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff0;
    top: 3px
}

.owl-dots button span {
    background-color: #ffffff !important;
    border: 1px solid #0c0d24 !important
}

.owl-dots .owl-dot.active span {
    background: #0c0d24 !important
}

.slider-style-seven.home-8 .content-box h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 8px;
    text-transform: uppercase;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear
}
@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}






 
/* about section second section */
.wps_home_about {
    width: 100%;
    margin: 0;
    padding: 35px 0 0;
    position: relative;
    z-index: 99;
} 

.h1_title {
    color: #333;
    font-size: 35px;
    line-height: 40px;
    text-transform: capitalize;
    /* letter-spacing: 2px; */
    font-weight: 500;
    position: relative;
    z-index: 111;
}

.text {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.text p {
    font-size: 16px;
    color: #121212;
    line-height: 25px;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.wps_home_about .h1_title {
    margin: 20px 0;
    align-items: center;
    display: flex;
    font-weight: 800;
}




.text .exp {
    display: flex;
    margin-top: 5px;
}

.text .exp .exp_num {
    font-size: 75px;
    font-weight: 700;
    background: url(../images/rocks.jpg);
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.text .exp .valign {
    font-weight: 700;
    padding-left: 20px;
    color: #ca2212;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
}

.hr_padding {
    margin-top: 20px;
    background: #535353;
    margin-bottom: 0;
}

.home_about_2 {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    z-index: 100;
}


.h2_title {
    font-size: 36px;
    color: #ca2212;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}

.home_about_2 .h2_title {
    font-size: 41px;
    color: #ca2212;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 8px;
    font-weight: 700;
}


.home_about_2 h2,
.home_about_2 h3 {
    color: #b13029;
    font-size: 41px;
    margin-bottom: 5px;
    font-weight: 700;
}

.about_img {
    float: right;
    max-width: 540px;
    width: 100%;
    position: relative;
    margin: 0 0 20px 30px;
}

.about_img .img {
    position: relative;
}



.about_img .img img {
    position: relative;
    z-index: 2;
    background: #272727;
    width: 100%;
}

.about_img .about_img {
    width: 60% !important;
    position: absolute;
    bottom: 0px;
    right: 35px;
    z-index: 3;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: normal;
    text-align: center;
    background: var(--liner);
    background-color: #ca2212;
}

.home_about_2 p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #1a1919;
    margin-bottom: 10px;
    text-align: center;

}

.about-shape-4 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 483px;
    opacity: 0.04;
}
.about-shape-4 img{
    width: 100%;
}
 .about-shape-5 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 893px;
    opacity: 0.1;
    
}
.about-shape-5 img {
    width: 41%;
    margin-left: 50%;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes float-bob-y {

    0%,
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes float-bob-x {

    0%,
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.som_home_product {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: url("../images/bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.som_home_product::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    opacity: 0;
}

.som_home_product .item .item_info {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    margin-top: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 4px 0px;
    background: #fff;
}

.som_home_product .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.som_home_product .item:hover .con {
    bottom: 0;
}

.som_home_product .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.som_home_product .item .con {
    padding: 30px 15px 0;
    position: absolute;
    bottom: -37px;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    z-index: 20;
    height: auto;
    box-sizing: border-box;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
}

.som_home_product .item .con .pr-ti,
.som_home_product .item .con .pr-ti a {
    position: relative;
    color: #fff;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 5px;
    /* letter-spacing: 1px; */
    text-transform: capitalize;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .6);
    font-weight: 700;
    padding: 0;
}

.som_home_product .item .con p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.som_home_product .item .con a {
    padding: 10px 0;
}

.som_home_product .item .con svg {
    color: #fff;
    width: 35px;
    height: 35px;
}

.som_home_product .item:hover .con .pr-ti a {
    color: #ff3623;
}

.som_home_product .item:hover .con svg {
    color:#ca2212;
}

.som_home_product .item .con .butn-light {
    margin-left: 0;
    border-radius: 30px;
    border-color: #999;
    padding: 11px 30px;
}

.som_home_product .item .con .butn-light:hover {
    border-color:#ca2212;
}

.som_home_product .owl-carousel .owl-dots .owl-dot.active span,
.som_home_product .owl-theme .owl-dots .owl-dot:hover span {
    background:#ca2212;
}

/* line animation */
.som_home_product .item .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 0 auto 0px;
}

.som_home_product .item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

.som_product {
    padding: 50px 0;
    width: 100%;
    width: 100%;
    background-color: #f7f7f7;
}

.item_box {
    overflow: hidden;
    text-align: center;
    color: #fff !important;
    box-shadow: #fff 0 0 0 0;
    background: rgba(255, 255, 255, 1);
    border: #eaeaea 1px solid;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto
    
}

.item_box .image {
    position: relative;
    overflow: hidden;
}

.item_box .con {
    background-color: #eee;
    /* padding-left: 10px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item_box .con .tt {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    width: calc(100% - 42px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.item_box .con .read-more {
    height: 42px;
    width: 42px;
    min-width: 42px;
    display: block;
    text-align: center;
    align-content: center;
    color: white;
    background-color:#ca2212;
}

.item_box .con .read-more svg {
    width: 18px;
    height: 18px;
}

.item_box .overlay-bx {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    padding: 30px;
    padding-left: 50px;
    z-index: 1;
    transition: all 600ms ease;
}

.item_box:hover .overlay-bx {
    top: 0;
}

.item_box .overlay-bx::before {
    position: absolute;
    left: 25px;
    bottom: 0;
    height: 90%;
    width: 1px;
    background-color: #ffffff;
    content: "";
    opacity: .70;
}

.item_box .overlay-bx::after {
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    width: 90%;
    background-color: #ffffff;
    opacity: .70;
    content: "";
}

.item_box .overlay-bx p {
    color: white;
    font-size: 16px;
}

.item_box .overlay-bx a {
    color:#ca2212;
}

.item_box .overlay-bx a:hover {
    color: #fff;
}

.item_box .image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.services_feature {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.h2_title_1 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    color:#ca2212;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.h2_title_1:after {
    background:#ca2212 none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 1px;
    left: 50%;
    margin-left: -50px;
    position: absolute;
    width: 100px;
}

.services_feature .item-bx {
    padding: 25px;
    /* height: 100%; */
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7;
    border-right: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.services_feature .item-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: 0.3s linear;
}

.services_feature .item-bx:hover:before {
    width: 100%;
}

.services_feature .item-bx:last-of-type {
    border-right: 1px solid #e7e7e7;
}

.services_feature .item-bx .titleH4 {
    color: var(--sec);
    font-weight: 600;
    /* letter-spacing: 1px; */
    padding: 0;
    margin: 0 0 4px;
    text-align: left;
    font-size: 17px;
    transition: 0.3s linear;
}

.services_feature .item-bx:hover .titleH4 {
    color: white;
}

.services_feature .item-bx .count {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 70px;
    font-weight: 800;
    transition: 0.8s;
    color: rgba(255, 255, 255, 0.15);
}

.services_feature .item-bx p {
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    transition: 0.4s;
}

.services_feature .item-bx:hover p {
    color: white;
}

.services_feature .item-bx .numb {
    font-size: 60px;
    margin-bottom: 10px;
    color: transparent;
    -webkit-text-stroke: 1px #c5a47e;
}

.services_feature .item-bx img {
    margin-bottom: 20px;
    max-width: 70px;
}

.home_blog_1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    background: #272727;
}

.img-wrap {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 25px;
    height: 365px;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.service_content {
    position: relative;
    height: 365px;
    color: #9f9f9f;
    font-size: 16px;
    line-height: 24px;
    background: #333;
    margin-bottom: 25px;
    border-radius: 0px 0px 0px 50px;
}

.home_bgrid_1:nth-child(2) .service_content {
    border-radius: 0px 50px 0px 0px;
}

.service_content .center_box {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: 100%;
    padding: 0 60px;
}

.service_content .center_box .sTitle_h4 {
    font-size: 25px;
    text-transform: uppercase;
    color:#ca2212;
    font-weight: 400;
    margin-bottom: 15px;
}

.service_content .center_box .sTitle_h4 a {
    color:#ca2212;
}

.service_content .center_box p {
    margin-bottom: 20px;
    color: #9f9f9f;
}

.testimonials {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background-image: url(../images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #ffffffa1;
    opacity: 0.8;
    z-index: -1;
}


.testimonial-inner-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, .07);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .07);
    min-height: 250px
}

.quote-rating-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15px
}

.how-it-work,
.how-it-work__count,
.how-it-work__count:before {
    position: relative;
    display: block
}

.quote-rating-box .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 65px;
    height: 45px;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px
}

.quote-rating-box .ratings-box h6 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px
}

.quote-rating-box .ratings-box ul.ratings {
    line-height: 20px;
    padding-left: 0;
    display: flex;
}

.quote-rating-box .ratings-box ul.ratings li {
    font-size: 14px;
    margin: 2px;
    letter-spacing: -.02em;
}

ul.ratings li {
    display: inline-block
}

ul.ratings li i {
    color: #f90
}

.single-testimonial-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px
}

.testimonial-inner-content p,
.thankyou-wrapper {
    text-align: center;
    font-weight: 500;
}

.main-testmonial {
    padding: 50px 0;
    background-color: #fcfaf736
}

.testimonials .owl-next,
.owl-prev {
    background: #d61313 !important;
    width: 40px;
    height: 40px
}

.testimonials .downloads-section::after,
.how-it-work {
    background-repeat: no-repeat;
    background-size: cover
}
.testimonials .owl-nav span {
    color: #fff !important
}

.testimonials .owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.testimonials .owl-theme .owl-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
}

.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.testimonials .owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.testimonials .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    width: 40px;
    overflow: hidden;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}


.video_area .titleH5 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.play_button {
    position: relative;
    width: 85px;
    height: 85px;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-left: 15px;
}

.play_button svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle-fill circle {
    opacity: 1;
    fill: rgba(197, 164, 126, 0.5);
}

.polygon {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 80px;
    z-index: 2;
    padding-left: 5px;
}

.play_button svg.circle-fill {
    z-index: 1;
    stroke-dasharray: 322;
    stroke-dashoffset: 322;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.play_button:hover svg.circle-fill {
    stroke-dashoffset: 38.5;
}

.play_button svg.circle-track {
    z-index: 0;
}

.play_button.color {
    color:#ca2212;
}

.play_button.color .circle-fill circle {
    fill:#ca2212;
}

.polygon svg {
    width: 50px;
    height: 50px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.video_icon {
    margin-bottom: 30px;
}


.clientSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background-color: #323232;
}

.clientSection .clients {
    opacity: 1;
    padding: 15px 20px;
    line-height: 0;
    position: relative;
    height: 75px;
    overflow: hidden;
}

.clients img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    width: auto !important;
    height: auto;
    -webkit-filter: none;
    filter: none;
    padding: 10px;
}

.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.clientSection .clients:hover {
    opacity: 1;
}

.title-bx {
    max-width: 1000px;
    margin: 0 auto 10px;
    text-align: center;
}

.title-bx p {
    text-align: center;
    color: #555;
    font-weight: 500;
}
.title_1 {
    float: left;
    width: 100%;
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.title_1 span {
    color: #ca2212;
}

.title_1:before {
    content: '';
    background: #ca2212;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 50px;
    height: 5px;
    margin: 0 auto;
}

.title_2 {
    color: #333;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 900;
    display: block;
    padding-bottom: 3px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.title_2 span {
    color: #333;
}

.title_2:before {
    content: '';
    background: #ca2212;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 65px;
    height: 5px;
    margin: 0 auto;
}

.title_3 {
    float: left;
    width: 100%;
    color: #ca2212;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.title_3:after {
    content: '';
    background: #ca2212;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    margin: 0;
}


/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 20px 0 11px;
    overflow: hidden;
    z-index: 1;
}

.counter-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .90;
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: darken;
    z-index: -1;
    opacity: 0.50;
}

.counter-one__shape-1 {
    position: absolute;
    left: 0;
    top: 30px;
    opacity: .89;
    z-index: -1;
}

.counter-one__shape-1 img {
    width: auto;
}

.counter-one__shape-2 {
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
}

.counter-one__shape-2 img {
    width: auto;
}

.counter-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    flex-direction: column;
    justify-content: center;
}

.counter-one__single::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -35px;
    width: 1px;
    height: 100%;
    background-color: rgb(0 0 0 / 8%);
    transform: translateY(-50%);
}

.counter-one ul li:first-child .counter-one__single::before {
    display: none;
}

.counter-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #cb2528;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__icon {
    background-color: #FFD25D;
}

.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #ffffff;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(0.9);
}

.counter-one__content {
    position: relative;
    display: block;
    flex: 1;
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-one__count-box p {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px !important;
    letter-spacing: -0.02em;
    color: #000000;
}

.counter-one__count-box span {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px !important;
    letter-spacing: -0.02em;
    color: #000000;
    text-transform: uppercase;
}

.counter-one__count-text {
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    color: #000000;
    margin-top: 8px;
}

footer {
    float: left;
    width: 100%;
    position: relative;
    display: block;
    background: #0f0f0f;
    background-size: cover;
    background-position: center;
    padding: 70px 0 15px;
    background-image: url(../images/bg2.webp);
}

footer .widget_logo {
    margin-bottom: 15px;
    position: relative;
}

footer .widget_logo img {
    max-width: 200px;
    padding: 10px;
    background-color: #fff;
    border-radius: 3px;
}

footer p {
    color: #d7d7d7;
    text-align: justify;
}

footer .widget_desc {
    font-size: 16px;
    line-height: 1.71;
    color: #d7d7d7;
    margin-bottom: 25px;
    font-weight: 400;
}

footer .widget_info {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #d7d7d7;
    padding-left: 28px;
    margin-bottom: 5px;
}

footer .widget_info p {
    color: #d7d7d7;
    font-size: 14px;
    text-align: left;
}

footer .widget_info svg {
    margin-right: 20px;
    position: absolute;
    left: -10px;
    top: 8px;
    font-style: normal;
    display: inline;
    line-height: unset;
    vertical-align: middle;
    color: #ca2212;
    width: 24px;
    height: 24px;
}

footer .widget_info a {
    font-size: 15px;
    line-height: 1.86;
    color: #ddd;
    font-weight: 600;
}

footer .widget_info a:hover {
    color: #ca2212;
    text-decoration: none;
}

footer .widget-title {
    margin: 0 0 15px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    list-style: none;
    margin-bottom: 7px;
    line-height: 24px;
    position: relative;
    padding-left: 20px;
    font-family: var(--font);
}

.widget ul li:before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #ca2212;
    /* border-radius: 5px; */
}

.widget ul li a {
    font-weight: 500;
    font-size: 14px;
    color: #d7d7d7;
}

.widget ul li a:hover {
    color: #ca2212;
}

.gallery {
    display: grid;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    grid-template-columns: auto auto auto;
    /* grid-gap: 10px; */
    margin: 0;
}

.gallery .gallery-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.sub_footer {
    float: left;
    width: 100%;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer_line {
    padding: 15px 15px 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer_line:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer p {
    font-size: 14px;
    color: #d7d7d7;
    line-height: 1.6;
    margin-bottom: 0;
}

.sub_footer p a:hover {
    color: #ca2212;
}

.sub_footer p.right {
    text-align: right;
}

ul.social {
    float: left;
    margin: 0;
    list-style: none;
    padding: 0px;
    width: 100%;
}

.sub_footer ul.social {
    text-align: center;
}

ul.social li {
    margin: 0px 0 0 3px;
    display: inline-block;
}

ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #231573;
}

ul.social li a svg {
    color: #fff;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}

ul.social li.facebook a {
    background: #3C5B9B;
}

ul.social li.twitter a {
    background: var(--liner);
    background-color: #000;
}

ul.social li.linkedin a {
    background: #027ba5;
}

ul.social li.youtube a {
    background: #f70000;
}

ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.countries_link {
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
    color: #999;
    display: inline-block;
}

.countries_link p {
    border: 1px solid #ca2212;
    color: #ca2212;
    padding: 7px 16px;
    line-height: normal;
    border-radius: 0;
    margin: 0;
}

.countries_link p:hover,
.countries_link p:focus {
    color: #fff;
    background: #ca2212;
    border-color: #ca2212;
}

.market {
    text-align: right;
    color: #d7d7d7;
    font-family: var(--font);
    font-size: 14px;
}

.som_bottom {
    float: left;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    text-align: center;
    color: #d7d7d7;
    background: #252424;
    font-weight: 500;
    font-family: var(--font);
    font-size: 14px;
}

.som_bottom a {
    font-size: 14px;
    display: inline-block;
    color: #dddddd;
}
.copyright-p {
    font-size: 14px;
    color: #dddddd;
}

.som_bottom a:hover {
    color: #ca2212;
}

#serviceSection {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 40px;
    padding-bottom: 80px;

}

#serviceSection .bodySection .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#serviceSection .bodySection .nav-pills object {
    width: 50px;
    filter: brightness(0) invert(1);
    pointer-events: none;
    vertical-align: middle;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#serviceSection .bodySection .nav-pills .nav-item {
    margin: 0 30px;
}

#serviceSection .bodySection .nav-pills .nav-link {
    background: transparent;
    border: 2px solid #eb3238;
    border-radius: 50%;
    height: 180px;
    width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px;
}

#serviceSection .bodySection .nav-pills .nav-link p {
    margin-bottom: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

#serviceSection .bodySection .nav-pills .nav-link i {
    color: #e92c32;
    font-size: 40px;
}

#serviceSection .bodySection .nav-pills .nav-link:hover,
#serviceSection .bodySection .nav-pills .nav-link:focus,
#serviceSection .bodySection .nav-pills .nav-link.active {
    background-color: #eb3238;
    border: 2px solid #ed3138;
}

#serviceSection .bodySection .tab-content .tab-pane {
    min-height: 250px;
}

#serviceSection .bodySection .tab-content {
    margin-top: 50px;
}

#serviceSection .bodySection .tab-content .tab-pane h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #eb3238;
}

#serviceSection .bodySection .tab-content .tab-pane hr {
    border: 1px solid #eb3238;
    opacity: 1;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 25px;
}

#serviceSection .bodySection .tab-content .tab-pane p {
    font-size: 18px;
    padding: 0 40px;
    color: #000;
    font-weight: 500;
}
#serviceSection .bodySection .tab-content .tab-pane .btn-showAll {
    color: #000;
    background-color: transparent;
    border: 3px solid #35a937;
    margin-top: 20px;
}

#serviceSection .bodySection .tab-content .tab-pane .btn-showAll:hover,
#serviceSection .bodySection .tab-content .tab-pane .btn-showAll:focus {
    color: #ffffff;
    background-color: #35a937;
}
#serviceSection .bodySection .nav-pills .nav-link:hover p,
#serviceSection .bodySection .nav-pills .nav-link:focus p,
#serviceSection .bodySection .nav-pills .nav-link.active p{
    color: #fff;
}
#serviceSection .bodySection .nav-pills .nav-link:hover i,
#serviceSection .bodySection .nav-pills .nav-link:focus i,
#serviceSection .bodySection .nav-pills .nav-link.active i {
    color: #fff;
}


/*====solution section end=======*/
/*====gallery section start=====*/
.gallerySec {
    padding-bottom: 160px;

    .gallerySlider {

        .galleryTitle {
            padding: 15px 20px;
        }
        .slick-dots {
            display: flex;
            gap: 6px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -60px;
            align-items: center;

            li {
                button {
                    font-size: 0px;
                    width: 15px;
                    height: 15px;
                    border-radius: 50%;
                    border: 1px solid #3043AB;
                    background-color: transparent;
                    transition: 0.5s;
                }

                &.slick-active {
                    button {
                        width: 80px;
                        border-radius: 10px;
                        height: 10px;
                        background-color: #FFC700;
                        border: 1px solid #FFC700;
                    }
                }
            }
        }
    }
}
.galleryItem{
    margin: 0px 20px !important;
}
.testimonial2{
    background: #f3f2f2c7 !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    visibility: hidden;
}




.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    height: 30px;
    font-weight: 600;
    border: 1px solid #dbdbdb !important;
    color: #000 !important;
    padding: 0 10px 0 10px !important;
    border-radius: 10px
}

.goog-te-gadget {
    font-family: arial;
    font-size: 0 !important;
    color: #666;
    white-space: nowrap
}

.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    display: flex
}

.goog-te-gadget img {
    vertical-align: middle;
    border: 0;
    padding-top: 14px;
    display: none
}

.goog-logo-link,
.goog-logo-link:link,
.goog-logo-link:visited,
.goog-logo-link:hover,
.goog-logo-link:active {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-decoration: none;
    display: none
}

.g-trans {
    float: right !important;
    margin-right: 15px
}

.goog-te-gadget-simple {
    margin: 4px 0;
    height: 30px;
    font-weight: 600;
    border: 1px solid #dbdbdb !important;
    color: #000 !important;
    padding: 0 10px 0 10px !important;
    border-radius: 10px
}

.goog-te-gadget-simple li a {
    color: #000 !important;
} 
.hmallproduct {
    padding: 70px 0;
    background: #f0f8ff40;
}

.solidtitle {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-size: 45px;
    text-align: center;
    font-weight: 600;
    line-height: 1.1em;
    font-family: 'Montserrat', sans-serif;
    background: -webkit-linear-gradient(45deg, #a00000, #da0808 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo_items img {
    height: 108px;
    margin: 0 10px;
    padding: 4px 10px;
    object-fit: contain;
    width: 198px;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    max-width: inherit;
}
.logos {
    overflow: hidden;
  padding-bottom: 30px;
    white-space: nowrap;
    position: relative;
}

.slides1 {
    animation: 25s slides infinite linear;
}

.logo_items {
    display: inline-block;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.tag a {
    color: #fff;
    position: relative;
}

.tag a::before {
    content: '\f121';
    font-family: 'FontAwesome';
    margin-right: 13px;
    font-size: 15px;
    margin-top: -3px;
    color: #d41c22;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: rgb(233 37 43);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000000099;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1000;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: rgb(153, 0, 0);
}

.scroll-to-top:hover i {
    color: #fff;
}
#action-tabs-wrap {
    z-index: 9999;
}

#action-tabs {
    position: fixed;
    left: 100%;
    top: 58%;
    z-index: 1000;
}

#action-tabs a {
    height: 50px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
    color: white;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50px);
    position: relative;
    transition: transform ease-in-out 500ms;
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

#action-tabs .newcall {
    background-image: url('../images/phone-call.png');
    background-color: #007BFF;
        /* Blue for call */

}

#action-tabs .whatsp {
    background-image: url('../images/wtsp2.png');
    background-color: #25D366;
        /* WhatsApp green */
}

#action-tabs .deal-wrp {
    background-image: url('../images/locationside.png');
    background-color: #FF9800;
        /* Orange for location */
}

#action-tabs .mail-wrp {
    background-image: url('../images/mail.png');
    background-color: #cb2528;
}



#action-tabs a:hover {
    transform: translateX(-100%);
    text-decoration: none;
}

#action-tabs a span {
    display: block;
    background: #011944;
    height: 50px;
    margin-left: 50px;
    padding: 0px 20px 0 15px;
    line-height: 50px;
    width: 190px;
}
.why-span{
    color: #eb3238 !important;
    font-size: 34px;
}

.why-title_2{
    line-height: 45px;
}

.award-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    color: #b8860b;
    /* Golden color for premium look */
    animation: shimmerText 3s ease-in-out infinite;
    position: relative;
}

.award-heading .fade-in {
    display: inline-block;
    animation: fadeInLeft 2s ease-out;
}

@keyframes shimmerText {
    0% {
        text-shadow: 0 0 5px #fff7cc, 0 0 10px #ffe680;
    }

    50% {
        text-shadow: 0 0 20px #ffdf00, 0 0 30px #ffd700;
    }

    100% {
        text-shadow: 0 0 5px #fff7cc, 0 0 10px #ffe680;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ......services.... */

.services-section-two {
    position: relative;
    padding: 50px 0px 50px;
    background-position: center;
    background-repeat: repeat;
    /* background-size: cover; */
    background-image: url(../images/product-bg.jpg);
    z-index: 1;
    overflow-x: hidden;
}

.services-section-two::after {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background: #ffffff6e;
}


.box-hover-effect {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 30px;
    width: 100%;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: 10px;
    overflow: hidden !important;
}

.box-hover-effect .effect-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    border-radius: 8px;
}

.box-hover-effect .effect-wrapper .thumb {
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.box-hover-effect .effect-wrapper .thumb img {
    height: auto
}

.box-hover-effect.effect-siberia .info-box .info-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 54px 11px 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.box-hover-effect.effect-siberia .info-box .info-title h3 {
    margin: 0;
    font-size: 17px;
    color: #fff;
}


.box-hover-effect.effect-siberia .info-box .info-title:before {
    color: #fff;
    content: "\f054";
    font-family: "fontAwesome";
    position: absolute;
    text-align: center;
    line-height: 50px;
    bottom: 5px;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #850002;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}

.box-hover-effect.effect-siberia .info-box .info-content {
    color: #ffffff;
    background-color: #bcc0c1;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 30px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    position: absolute;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.box-hover-effect.effect-siberia .info-box .info-content h3 {
    color: #0c0c0c;
}

.box-hover-effect.effect-siberia .info-box .info-content p {
    color: #0c0c0c;
}
.info-box .info-content p {
    font-size: 15px;
    line-height: 22px;
}

.box-hover-effect.effect-siberia .info-box .info-content .read_more_btn {
    padding: 8px 25px;
}

.box-hover-effect.effect-siberia .info-box .info-content .read_more_btn:hover {
    background: #364c70;
}

.box-hover-effect.effect-siberia:hover .info-box .info-title {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.box-hover-effect.effect-siberia:hover .info-box .info-content {
    background-color: #ffffffd6;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

.bg_transparent {
    background-color: #df0303db !important;
}

.read_more_btn {
    background: #121d2f;
    position: relative;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 15px 36px;
    border-radius: 4px;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 0;
    font-size: 16px;
}

.read_more_btn:after {
    content: "";
    height: 10px;
    width: 10px;
    background: #364c70;
    right: 10px;
    bottom: 8px;
    position: absolute;
    border-radius: 50%;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.read_more_btn:hover,
.read_more_btn:focus {
    background: #df0303;
    color: #fff;
}

.read_more_1 {
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 14px;
    padding: 10px 30px 10px 30px;
    transition: .8s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.read_more_1:hover {
    border: solid 1px #FFFFFF;
}

.read_more_1 span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #df0303;
    transform: translateY(150%);
    border-radius: 50%;
    transition: 0.5s;
    z-index: -1;
}



.as_featured {
    background-color: #f7f7f7;
    width: 100%;
    clear: both;
    overflow: hidden;
    padding: 15px 0;
}

.as_featured .h2_title {
    color: #282c4b;
    font-size: 22px;
}

.marquee2 {
    overflow: hidden;
    text-indent: 0;
    /*Ã°Å¸â€˜â€°animation: marquees 10s linear infinite;
    white-space: nowrap;
    will-change: transform;Ã°Å¸â€˜Ë†*/
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    height: 70px;
    text-align: center;
}

.marquee2 li {
    max-width: 150px;
    width: 100%;
    display: inline-block;
    list-style: none;
    border: 1px solid #eee;
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 70px;
}

.marquee2 li img {
    width: 100%;
    height: auto
}

.marquee2 li a {
    position: relative;
    height: 70px;
    width: 100%;
    background: #fff;
}

.marquee2 li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
    height: auto;
    padding: 10px;
}

.read_more_product.btn-style {
    padding: 7px 10px;
    display: inline-flex;
    margin: 10px 0;
}

.read_more_product.btn-style span {
    margin: 0 !important;
}

.btn-style {
    background: #df0303;
    border-radius: 3px;
    color: #fff;
    padding: 10px 15px;
    position: relative;
    border: none;
    overflow: hidden;
    margin-top: 15px
}

.btn-style span {
    color: #fff;
    position: relative;
    z-index: 1;
}

.btn-style:hover:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #010c3a;
    border-radius: 0%;
    transition: 0.5s ease;
}


.info-content span {
    color: #000;
    font-weight: 600;
}

.readbtn {
    color: #fff !important;
}

.info-title span {
    color: #fff;
}

.site-heading {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.site-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 45px;
    color: #111111;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-align: center;
}

.site-title span {
    color: #EF1D26;
}

.heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid #EF1D26;
    width: 90px;
    height: 4px
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 6px;
    width: 15px;
    border-radius: 0;
    background-color: #fff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }

    50% {
        transform: translateX(75px)
    }

    100% {
        transform: translateX(-1px)
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }

    50% {
        transform: translateX(75px)
    }

    100% {
        transform: translateX(-1px)
    }
}

.tp-service-shape-2 {
    position: absolute;
    right: 0;
    top: 38px;
    animation: jumpTwo 3s infinite linear;
    opacity: 0.07;
    z-index: 1;
}

@keyframes jumpTwo {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 40px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.product-box {
    padding: 10px;
}

.owl-stage-outer {
    padding: 0px;
}

.our_service_home .owl-dots {
    display: none;
}


.our_service_home .owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.our_service_home .owl-theme .owl-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.our_service_home .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d61313 !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
}

.our_service_home .owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.our_service_home .owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.our_service_home .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.our_service_home .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.our_service_home .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    width: 40px;
    overflow: hidden;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our_service_home .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}


.single-categories-box {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.single-categories-box img {
    transition: 0.5s;
    border-radius: 5px;
    width: 100%;
}
.single-categories-box .content {
    position: absolute;
    right: 0;
    bottom: 25px;
    padding: 25px 25px 0;
    text-align: right;
}
.single-categories-box .link-btn {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    position: absolute;
}.single-categories-box:hover img {
    transform: scale(1.07);
}
.single-categories-box .content.text-white h3 {
    color: #ffffff;
}
.single-categories-box .content h3 {
    margin-bottom: 0;
    transition: 0.5s;
    transform: translateY(12px);
    font-size: 18px;
    font-weight: 600;
}
.single-categories-box:hover .content h3 {
    transform: translateY(-30px);
}

.commonSec {
    padding: 40px 0;
}
.infoSection .headPart {
    display: flex;
    flex-direction: column;
    /* gap: 24px; */
    text-align: center;
    padding: 0 15%;
}

.infoSection .secH2 {
    font-weight: 700;
    font-family: "Isidora Sans";
}

.infoSection .secH2,
.infoSection .headPart p {
    color: #000000;
}

.infoSection .content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 14px;
    position: relative;
    background-color: #fdf6f673;
    border-radius: 25px;
    padding: 20px 90px;
}

.infoSection .content .boxCon {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    position: relative;
    z-index: 10;
}
.boxConHead{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.infoSection .content .boxCon p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.infoSection .content .boxCon::before {
    position: absolute;
    content: "";
    height: 105%;
    width: 104%;
    top: -2%;
    left: -2%;
    bottom: 0;
    right: 0;
    border-radius: 25px;
    background: #FFF3D6;
    box-shadow: 12px 19px 42px 11px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.infoSection .content .boxCon:hover:before {
    opacity: 1;
}

.infoSection .content .boxCon:not(:nth-child(3n)) {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.infoSection .content .boxCon:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.infoSection .content .boxCon:nth-last-child(2),
.infoSection .content .boxCon:nth-last-child(3) {
    border-bottom: none;
}

.infoSection .boxCon .title {
    color: #D71921;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.infoSection .boxCon .icon {
    height: 60px;
    width: 60px;
}

.infoSection .boxCon .icon svg {
    height: 100%;
    width: 100%;
    object-fit: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}


.other-product .owl-nav {
    display: none !important;
}

.other-product .owl-dots {
    text-align: center;
    padding-top: 20px;
}

.other-product .owl-dot {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.other-product .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc !important;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.other-product .owl-dot:hover span {
    background: #666;
    transform: scale(1.2);
}

.other-product .owl-dot.active span {
    background: #ea313a !important;
    /* Accent color for active dot */
    transform: scale(1.5);
}
.enquiry-bg {
    padding: 25px 0;
    background: #da251e;
}

.enquiry-bg h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff
}

.enquiry-bg p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.enquiry-bg .bt {
    font-size: 20px
}

.enquiry-bg .wc-btn-primary {
    background-color: #000
}

.enquiry-bg .wc-btn-primary:hover {
    background-color: #FFF;
    color: #000
}

.enquiry-bgpage {
    background-color: #000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 82%)
}

.enquiry-bgpage .wc-btn-primary {
    background: linear-gradient(90deg, rgba(0, 141, 210, 1) 25%, rgba(38, 71, 150, 1) 82%)
}

.enquiry-bgpage .wc-btn-primary:hover {
    color: #FFF
}

.theme-btn.style-three {
    background: #0f0f0f;
}

.theme-btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    padding: 15px 35px 15px 20px;
    font-weight: 600;
    overflow: hidden;
    text-transform: capitalize;
    vertical-align: middle;
    text-align: center;
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.theme-btn i {
    margin-right: 5px;
}


/*** 

====================================================================
        About Section
====================================================================

***/
.about-section-eight {
    position: relative;
   padding: 80px 0px;
   background-image: url(../images/about-section-eight.jpg);
   background-repeat: no-repeat;
   background-position: center;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .about-section-eight {
        padding: 0 0 50px;
    }
}

@media (max-width: 991.98px) {
    .about-section-eight.style-two {
        padding: 70px 0 84px;
    }
}

.about-section-eight.style-two .content-column {
    margin-bottom: 0;
}

.about-section-eight.style-two .image-column {
    margin-bottom: 0;
}

.about-section-eight .content-column {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.about-section-eight .content-column .inner-column {
    position: relative;
    padding-left: 40px;
}

@media (max-width: 991.98px) {
    .about-section-eight .content-column .inner-column {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .about-section-eight .content-column .inner-column {
        margin-top: 0px;
    }
}

.about-section-eight .content-column .sec-title {
    margin-bottom: 15px;
    margin-right: -50px;
}

@media (max-width: 1399.98px) {
    .about-section-eight .content-column .sec-title {
        margin-right: 0;
    }
}

.about-section-eight .content-column .sec-title .text {
    margin-right: 5px;
}

@media (max-width: 1399.98px) {
    .about-section-eight .content-column .sec-title .text {
        margin-right: 0;
    }
}

.about-section-eight .content-column .list-style-two {
    margin-bottom: 40px;
}

@media (max-width: 575.98px) {
    .about-section-eight .content-column .list-style-two {
        margin-bottom: 30px;
    }
}

.about-section-eight .content-column .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 575.98px) {
    .about-section-eight .content-column .btn-box {
        display: block;
    }
}

.about-section-eight .content-column .info-btn {
    position: relative;
    display: block;
    font-size: 22px;
    padding: 8px 0;
    padding-left: 90px;
    color: #181818;
    text-align: left;
    font-weight: 800;
    white-space: nowrap;
    line-height: 20px;
    margin-right: 30px;
}

.about-section-eight .content-column .info-btn small {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #6a6a6a;
    margin-bottom: 10px;
}

.about-section-eight .content-column .info-btn i {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -34px;
    line-height: 68px;
    height: 68px;
    width: 68px;
    text-align: center;
    border-radius: 50%;
    color: var(--bg-theme-color2);
    background-color: #edf0f5;
    font-size: 24px;
}

.about-section-eight .content-column .info-btn:hover {
    color: var(--bg-theme-color2);
}

.about-section-eight .content-column .founder-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 80px;
    min-height: 65px;
}

@media (max-width: 575.98px) {
    .about-section-eight .content-column .founder-info {
        margin-bottom: 30px;
    }
}

.about-section-eight .content-column .founder-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.about-section-eight .content-column .founder-info .thumb img {
    border-radius: 50%;
}

.about-section-eight .content-column .founder-info .name {
    line-height: 24px;
    margin-bottom: 0;
}

.about-section-eight .content-column .founder-info .designation {
    margin-top: 1px;
}

.about-section-eight .image-column {
    position: relative;
    margin-bottom: 121px;
}

@media (max-width: 575.98px) {
    .about-section-eight .image-column .inner-column {
        position: relative;
        padding-right: 0px !important;
    }
    .image-2{
        display: none;
    }
    .about-section-eight.style-two .image-column {
        margin-bottom: 0;
        padding-bottom: 50px;
    }
    .about-section-eight .experience {
        bottom: -32px !important;
        left: 10px !important;
    }
}

.about-section-eight .image-column .inner-column {
    position: relative;
    padding-right: 110px;
}

.about-section-eight .image-column .inner-column:before {
    position: absolute;
    right: 65px;
    bottom: 46px;
    height: 246px;
    width: 119px;
    background-image: url(../images/pattern-6.png);
    content: "";
}

.about-section-eight .image-column .image-1 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0px;
}

.about-section-eight .image-column .image-1 img {
    width: 100%;
}

.about-section-eight .image-column .image-2 {
    position: absolute;
    right: 0;
    top: 60px;
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #ffffff;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

.about-section-eight .image-column .image-2 img {
    width: 100%;
}

.about-section-eight .experience {
    background: #C90F16;
    border-radius: 10px;
    -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
    box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
    bottom: 60px;
    left: -110px;
    min-width: 220px;
    padding: 20px 30px;
    position: absolute;
}

@media (max-width: 1399.98px) {
    .about-section-eight .experience {
        bottom: 10px;
        left: 10px;
    }
}

.about-section-eight .experience .inner {
    padding-left: 75px;
    position: relative;
}

.about-section-eight .experience .icon {
    color: #ffffff;
    /* margin-top: 20px !important; */
    font-size: 53px;
    left: 0px;
    position: absolute;
    top: 17px;
}

.about-section-eight .experience .text {
    color: #ffffff;
    line-height: 20px;
    position: relative;
}

.about-section-eight .experience strong {
    color: #ffffff;
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 7px;
    position: relative;
}
@-webkit-keyframes bounce-y {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-30px);
              transform: translateY(-30px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes bounce-y {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(-30px);
              transform: translateY(-30px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @-webkit-keyframes bounce-x {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    50% {
      -webkit-transform: translateX(30px);
              transform: translateX(30px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes bounce-x {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    50% {
      -webkit-transform: translateX(30px);
              transform: translateX(30px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  .bounce-y {
      -webkit-animation: bounce-y 10s infinite linear;
      animation: bounce-y 10s infinite linear; }
/*** 

/*------------------- 3.3. Titles -------------------*/
.title-area {
    margin-bottom: 10px;
    line-height: 100%;
}

.title-area .sec-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    line-height: 100%;
    display: inline-block;
    position: relative;
    margin: 0 50px 10px;
}

.title-area .sec-subtitle::before {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background-color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
}

.title-area .sec-subtitle::after {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background-color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

.title-area .sec-subtitle.right-shape {
    margin-left: 0;
}

.title-area .sec-subtitle.right-shape::before {
    display: none;
}

.title-area .sec-subtitle.left-shape {
    margin-right: 0;
}

.title-area .sec-subtitle.left-shape::after {
    display: none;
}

.title-area .sec-title {
    font-size: 46px;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 99%;
    color: #cb2528;
    font-weight: 800;
}

.title-area .sec-title .title-highlight {
    display: inline-block;
    color: #cb2528;
}

.tab-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

/* Small devices */
@media (max-width: 767px) {
    .title-arraw {
        display: none;
    }
    .about-content{
        padding-left: 0px !important;
    }
}
.about-content{
    padding-left: 20px;
}

/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
    display: inline-block;
    border: none;
    text-align: center;
    text-transform: capitalize;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 600;
    background-color: #109C3D;
    color: #fff;
    line-height: 1;
    padding: 18px 30px;
    border-radius: 9999px;
    transition: all 0.5s ease;
}

.vs-btn:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.vs-btn2 {
    display: inline-block;
    border: none;
    text-align: center;
    text-transform: capitalize;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 600;
    background: #cb2528;
    color: #fff;
    line-height: 1;
    padding: 5px 7px 5px 28px;
    border-radius: 9999px;
    transition: all 0.5s ease;
}

.vs-btn2 i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000;
    border-radius: 50px;
    margin-left: 20px;
    transition: all 0.5s ease;
}

.vs-btn2:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.vs-btn2:hover i {
    background-color: #c90f16;
}
.about-text{
    text-align: justify;
    color: #424242;
    font-weight: 500;
    margin-bottom: 10px !important;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    border: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px, rgba(60, 64, 67, 0.15) 0px 2px 6px;
}

.image-section img {
    width: 100%;
    padding: 25px;
    object-fit: contain;
}

.bottom-div {
    background: #e3ecdea8;
    padding: 10px;
    text-align: center;
}

.bottom-div h3 {
    font-weight: 700;
    margin: 0;
    font-size: 24px;
}

.card-size {
    background: #e3ecdea8;
    padding: 8px 15px;
    text-align: center;
    font-size: 18px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    overflow-wrap: break-word;
    word-break: break-word;
    text-transform: uppercase;
}

.whatsapp-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 0 20px;
    background: #e3ecdea8;
}

.whatsapp-order img {
    height: 24px;
    width: 24px;
    margin-right: 6px;
}

.wa-label {
    background: linear-gradient(270deg, #25D366, #128C7E, #25D366);
    background-size: 600% 600%;
    color: white;
    padding: 16px 16px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
    white-space: nowrap;
    animation: gradientAnimation 4s ease infinite, bounce 1s infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.whatsapp-order a {
    text-decoration: none !important;
    color: #fff;
}

.wa-label:hover {
    background-color: #1ebe5d;
}

.product-sec {
    padding: 80px 0;
}

.our-recent-project{
	padding: 90px;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 90px 0px 90px 0px;
	background-color: #f9f9fb;
	position: relative;
}
.our-recent-work h3{
	color: #000 !important;
	margin-top: 10px;
}
.project-box img{
	width: 100%;
}
.project-box{
	position: relative;
}
.project-absoloute-text{
	position: absolute;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: block;
    width: 90%;
    padding: 33px;
    opacity: 1;
    transition: 1s;

}
.project-absoloute-text h4{
    font-size: 22px;
    margin-bottom: 7px;
	font-weight: 600;
}
.project-absoloute-text p{
	color: #f60;
	margin-bottom: 0px !important;
}
.our-project-slider .our-project-col{
	padding: 0px 10px;
}
.our-project-slider{
	position: relative;
}
.our-project-slider .slick-prev{
	height: 54px !important;
    width: 54px !important;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: rgb(13 110 253 / 1%);
    transition: 0.3s;
    font-size: 0px !important;
    background-image: url(../images/slider-arrow.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    padding: 15px;
    position: absolute;
    top: -98px;
    right: 30px;
    z-index: 1;
}
.our-project-slider .slick-next{
	height: 54px !important;
    width: 54px !important;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: rgb(13 110 253 / 1%);
    transition: 0.3s;
    font-size: 0px !important;
    background-image: url(../images/slider-arrow.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    padding: 15px;
    position: absolute;
    top: -98px;
    right: 100px;
    z-index: 1;
	transform: rotate(180deg);
}
@media (max-width: 575px){
    .m_p{
		padding: 60px 20px;
	}
}
.m_p{
    padding: 40px 20px;
}

@media (max-width:360px) {
	.our-project-text a {
        color: #fff;
        font-size: 17px;
        font-weight: 500;
    }
	.our-project-slider .slick-next {
		height: 40px !important;
		width: 40px !important;
		top: -80px !important;
		right: 70px !important;
	}
	.our-project-slider .slick-prev{
		height: 40px !important;
		width: 40px !important;
		top: -80px !important;
		right: 20px !important;
	}
}
.main-our-project-section{
	background-color: #F6F6F6;
	padding: 70px 0px;
}
.our-project-heading .absoloute-text p{
	z-index: 10 !important;
	left: 50%;
	transform: translateX(-50%);
}
.our-project-heading{
	text-align: center;
}
.our-project-heading h3{
	color: #0c0a0a;
	font-size: 39px;
	font-weight: 600;
}
.our-project-image img{
	width: 100%;
	height: auto !important;
}

.our-project-icon img{
	width: 50px;
}
.our-project-icon-text{
	padding: 20px;
    background-color: #000;
    width: 100%;
	display: flex;
    /* justify-content: space-between; */
    align-items: center;
}
.our-project-text{
	padding-left: 25px;
}
.our-project-text a{
	color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.our-project-box:hover .our-project-image img{
	transform: scale(1.1);
}
.our-project-box{
	/* overflow: hidden; */
	position: relative;
	margin-bottom: 22px;
}
.our-project-image img{
	transition: 0.3s;
}
.our-project-image{
	overflow: hidden;
}
.our-project-number{
	padding-left: 20px;
	font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    color: transparent;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: #3e3e3e;
}
.project-box{
	overflow: hidden;
}
.our-project .project-box{
	margin-bottom: 25px;
}
.our-project{
    padding:70px 0px 70px 0px !important;
}
.gallery{
	overflow: hidden;
}
.gallery img{
	transition: 1.3s;
	height: 400px;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.gallery:hover img{
	transform: scale(1.5);
	
}
.inner-banner {
    position: relative;
    background: url("/images/rocks.jpg") ;
    padding: 90px 0px;
  }
  
  .inner-banner .cm-title {
    color: rgb(255, 255, 255);
  }
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 0rem;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: 0.25rem;
  }
  
  .breadcrumb a {
    color: rgb(255, 255, 255);
  }
  
  .breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
  }
  
  .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: rgb(255, 255, 255);
    content: "/";
  }
  
  .breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline;
  }
  
  .breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none;
  }
  
  .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.67);
  }
  @media (max-width: 767px) {
    .cm-title {
        font-size: 30px !important;
      }
    }
    
.cm-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 53px;
  line-height: 110%;
  margin: 0px;
  padding: 0px;
  color: rgb(0, 0, 0);
}    

.product-content{
    justify-content: center;
    text-align: justify;
    padding-bottom: 70px;
}
.social-icon img {
    width: 31px;
    padding: 7px;
    filter: grayscale(100%);

}
.social-icon{
    background-color: #fff;
    border-radius: 5px;
    padding: 0px !important;
    margin-left: 10px;
}   

.contact-mail h4 {
    color: var(--themeColor);
    font-size: 25px;
    font-weight: 600;
    font-family: var(--headingFont);
}

.contact-mail a {
    color: #b5b5b5;
    letter-spacing: 4px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 9px;
    float: left;
    width: 100%;
}

.contact-form ul {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

.contact-form ul li:first-child {
    background: #da251e;
    flex: 0 0 35%;
    padding: 40px;
    float: left;
    width: 100%;
}

.contact-form ul li:first-child h4 {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--headingFont);
    margin-bottom: 50px;
}

.contact-form ul li:last-child {
    border: 1px solid #c4c4c4;
    flex: 0 0 65%;
    float: left;
    width: 100%;
    border-left: 0;
}
.all-cont-info a {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: start;
}

.all-cont-info a img {
    margin-right: 20px;
    width: 35px;
}
.p-90 {
    padding: 55px 0;
}
.ft-section-title-2 {
    margin: 0 auto;
    max-width: 580px;
}

.ft-section-title-2 .sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #da251e;
}


.ft-section-title-2 h2 {
    color: #003440;
    font-size: 36px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 25px;
}

.ft-contact-cta-items {
    padding: 30px;
    margin-bottom: 20px;
    background-color: #f4f4f4;
    transition: 0.3s;
}

.ft-contact-cta-items .ft-contact-cta-icon {
    width: 70px;
    height: 70px;
    margin-right: 30px;
    border-radius: 8px;
    background-color: #da251e;
}

.ft-contact-cta-items .ft-contact-cta-icon i {
    font-size: 45px;
    color: #ffffff;
}

.ft-contact-cta-items .ft-contact-cta-text {
    max-width: 275px;
}

.ft-contact-cta-items .ft-contact-cta-text h3 {
    color: #002a34;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 8px;
}

.ft-contact-cta-items:hover {
    border-top: 1px solid #da251e;
    transition: 0.3s;
}

.ft-contact-page-form-wrapper {
    padding: 30px;
    background-color: #da251e;
}

.ft-contact-page-form-wrapper h3 {
    color: #da251e;
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 30px;
}

.ft-contact-page-form-wrapper input,
.ft-contact-page-form-wrapper textarea {
    width: 100%;
    height: 50px;
    border: none;
    padding-left: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
}

.ft-contact-page-form-wrapper textarea {
    height: 210px;
    padding-top: 15px;
}

.submit-btn input {
    color: #ffffff;
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 6px;
    font-family: "Poppins";
    background-color: #ff0000;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

.submit-btn input:hover {
    background-color: #000000;
}

.export-logos img {
    width: 100%;
}
.ft-contact-cta-text p{
    margin-bottom: 3px;
}
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
    outline: none !important;
    border: none !important;
}
.about-content p strong {
    text-align: justify;
    font-weight: 600;
    color: #f17e1c;
}



/* .........model-css........ */
.form-group input {
    /* border-left: 5px solid #da251e; */
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

.modal-header {
    padding: 10px 15px 0 15px !important;
    background-color: #da251e;
}

.modal-title {
    font-size: 23px;
    color: #fff;
    text-align: left;
    padding-bottom: 9px;
    font-weight: 400;
}



.close {
    position: absolute;
    right: 16px;
    top: 15px;
    font-size: 28px;
    color: #fff !important;
}

.form-group {
    margin: 15px 0 !important;
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

.form-group input {
    /* border-left: 5px solid #22b354; */
}

.Submit-box:hover {
    background-color: #22b354;
    border: 1px solid #2cacef;
}

.Submit-box {
    padding: 10px 30px;
    background: #da251e;
    color: #fff;
    border: none !important;
    border-radius: 5px;
}

.pop-img {
    margin-top: 10%;
    margin-bottom: 20px;
    width: 300px;
    height: auto;
}

@media (max-width:767px) {
    .pop-img {
        margin-top: 2%;
        margin-bottom: 13px;
        width: 200px;
        height: auto;
    }

    .pop-img {
        margin-top: 2%;
        margin-bottom: 13px;
        width: 191px;
        height: auto;
        display: none !important;
    }

    .modal-title {
        font-size: 18px;
        color: #fff;
        text-align: left;
        padding-bottom: 10px;
        font-weight: 400;
    }

    .close {
        position: absolute;
        right: 16px;
        top: 19px;
        font-size: 21px;
        color: #fff !important;
    }
}


.cs_gap_y_13 {
    gap: 13px 0;
}

.last-margine-none {
    margin: 0px !important;
}

button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    background-color: #ffffff !important;
    padding: 6px 15px;
    /* margin-top: -14px !important; */
    position: absolute;
    opacity: 1;
    font-size: 25px;
    color: #000000 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inq-btn-home {
    position: fixed;
    top: 45%;
    left: 0;
    width: 45px;
    height: 50px;
    z-index: 999999;
    transform: translateY(-50%);
}

.inq-btn-home {
    cursor: pointer;
}
.email {
    background: url(../images/mail.png) no-repeat top left;
    background-size: 30px;
    filter: brightness(0%) invert(0%);
}

.contact {
    background: url(../images/call-2.png) no-repeat top left;
    background-size: 30px;
    filter: brightness(0%) invert(0%);
}
.email, .contact {
    background-repeat: no-repeat;
    background-position: top left;
    filter: brightness(0%) invert(0%);
}
.cbox h3 {
    float: left;
    text-align: left;
    font-size: 22px;
    color: #000000;
    font-weight: 600;
    padding: 0px 0 4px 0;
    margin: 0;
    width: 100%;
}

.cbox p {
    line-height: 1.4;
    font-size: 17px;
}

.cbox a {
    color: #092139;
    overflow-wrap: break-word;
}

.cbox {
    float: left;
    width: 100%;
    padding: 0px 0 0 55px;
    text-align: left;
    margin: 15px 0 0 0px;
}

.modal-lg,
.modal-xl {
    max-width: 909px !important;
}

.form-control {
    border-left: 5px solid #da251e !important;
}
.modal-body input:focus-visible{
    border-left: 5px solid #da251e !important;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #da251e !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.about-section .about-shape-5 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes float-bob-y {

    0%,
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}



.innerpage-main {
    position: relative !important;
    padding: 70px 0 !important;
    background-image: url(/images/about-section-eight.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  
  .innerpage-main .product-image {
    float: right !important;
    margin-left: 30px !important;
    max-width: 600px !important;
  }
  
  .innerpage-main a{
    text-transform: capitalize;
  }
  
  .innerpage-main p {
    text-align: justify !important;
    font-weight: 500 !important;
    position: relative !important;
    margin-bottom: 12px !important;
  }
  .innerpage-main h2 {
    font-weight: 600 !important;
  }
  .innerpage-main p  strong{
    color: rgb(228 0 0);
    text-transform: capitalize;
  }
  
  .innerpage-main .sm-title {
    font-size: 1.5rem;
  }
  @media (max-width: 768px) {
    .innerpage-main {
      padding: 50px 15px !important;
    }
  
    .innerpage-main .product-image {
      float: none !important;
      margin: 0 auto 20px auto !important;
      text-align: center !important;
      max-width: 100% !important;
    }
  
    .innerpage-main img {
      width: 100% !important;
      height: auto !important;
    }
  
    .innerpage-main .sm-title {
      font-size: 1.25rem !important;
      text-align: center !important;
    }
  
    .innerpage-main p {
      font-size: 0.95rem !important;
    }
  }
  
  @media (max-width: 480px) {
    .innerpage-main .sm-title {
      font-size: 1.1rem !important;
    }
  
    .innerpage-main p {
      font-size: 0.9rem !important;
    }
  }
  .col-lg-4, .col-md-4, .col-sm-12, .col-12 {
    /* display: flex; */
    margin-bottom: 30px; /* Adjust the value as needed */
}
  .blog-wrap {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-wrap p {
    color: #1f1f1f;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 18px;
    transform: scale(1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    text-transform: capitalize;
}

.blog-section,
.blog-detail-page {
    padding: 60px 0 0
}

.blog-title:hover {
    color: #efb443
}

.blog-wrap:hover img {
    transform: scale(1.05)
}

.blog-featured img {
    transition: .3s;
    height: 100%;
    object-fit: cover
}

.blog-featured {
    overflow: hidden;
    width: 100%;
}
.blog-wrap a {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-date {
    padding: 8px 15px;
    color: #fff;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-date h5 {
    color: #000000;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
}
.blog-date-wrap {
    font-weight: 500;
    text-align: center;
    position: relative;
    margin-bottom: 10px
}

.blog-date-wrap span {
    background: #fff;
    padding: 0 10px
}

.blog-date-wrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    background: #ef4343;
    z-index: -1;
    transform: translateY(-50%)
}

.page-padding {
    padding: 100px 0px;
}
.inquirey-page .form-control {

    height: 45px;
  
  }
  
  
  
  .inquirey-page .form-control:focus {
  
    box-shadow: 0 0 0 0.1rem #06405d;
  
    border-color: #06405d;
  
  }
  
  
  
  .inquirey-page textarea.form-control {
  
    height: 150px;
  
  }
  
  
  
  .inquirey-page.sticky {
  
    position: sticky;
  
    top: 0;
  
  }
  
  
  
  .inquirey-page .cm-btn:hover {
  
background-color: #22b354;
  
color: #fff;
  }
  .cm-btn {

    position: relative;
  
    background: #0490e0;
  
    color: #fff;
  
    padding: 18px 25px;
  
    text-align: center;
  
    margin: 0;
  
    border: 0 solid transparent;
  
    cursor: pointer;
  
    display: inline-block;
  
    white-space: nowrap;
  
    min-width: 150px;
  
    height: auto;
  
    font-size: 16px;
  
    font-weight: 500;
  
    line-height: 100%;
  
    text-transform: inherit;
  
    letter-spacing: 0;
  
    -webkit-border-radius: 0px;
  
    border-radius: 10px;
  
    -webkit-box-shadow: none;
  
    box-shadow: none;
  
    text-transform: uppercase;
  
    transition: all 0.5s ease-in-out;
  
    -webkit-transition: all 0.5s ease-in-out;
  
    overflow: hidden;
  
    z-index: 1;
  
  }
  
  
  
  .cm-btn:before {
  
    background-color: transparent;
  
    display: block;
  
    position: absolute;
  
    left: 0;
  
    top: 0;
  
    height: 100%;
  
    width: 0;
  
    z-index: -1;
  
    content: "";
  
    -webkit-transition: all 0.5s ease-in-out;
  
    transition: all 0.5s ease-in-out;
  
  }
  
  
  
  .cm-btn:hover:before {
  
    background-color: #596c92 !important;
  
    color: #fff;
  
    bottom: 0;
  
    top: auto;
  
    width: 100%;
  
    opacity: 1;
  
  }
  
  
  
  .cm-btn:hover {
  
    color: #ffffff;
  
  }
  
  .error-page .cm-title {

    margin: 20px 0 15px 0;
  
  }
  
  
  
  .error-page .back-btn {
  
    margin-top: 30px;
  
  }
  
  
  
  .thankyou-page .cm-icon {
  
    margin: 0 auto 15px;
  
    display: flex;
  
    justify-content: center;
  
    align-items: center;
  
  }
  
  
  
  .thankyou-page .cm-icon svg {
  
    width: 80px;
  
    height: 80px;
  
  }
  
  
  
  .thankyou-page .sm-title {
  
    margin: 10px 0 0 0;
  
  }
  
  
  
  .thankyou-page .back-btn {
  
    margin-top: 20px;
  
  }
  