/*======================================
	*      General Start   *
======================================*/
html {
    scroll-behavior: smooth;
}

.justify {
    text-align: justify;
}

.text-white {
    color: #fff !important;
}

h2.title-head span {
    font-weight: 600;
    color: var(--primary);
}

.section-sp2 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.section-sp5 {
    padding-top: 20px;
    padding-bottom: 50px;
}

.logoHighlight {
    color: currentColor;
    font-weight: 700;
    /*white-space: nowrap;*/
}

.pageBGContact {
    position: relative;
}

.pageBG:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Page-Bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.truncate {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.truncateLines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate2Lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.btn-gradient {
    background: linear-gradient(-45deg, var(--buttonHover) 0%, var(--button) 100%);
}

#contact_form_3 #success, #success, #contact_form_3 #error, #error, .LoaderImage, #LoaderImage {
    display: none;
}

.float-right {
    float: right;
}

.RMM-Btn-15 {
    position: relative;
    background: var(--button);
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0.7em 3em 0.7em 1.2em;
    border-radius: 0;
    border: 1px solid var(--button);
    margin: 0;
    cursor: pointer;
    transition: 0.5s all;
}

.RMM-Btn-15:after {
    content: "\f178";
    position: absolute;
    font-family: 'FontAwesome';
    padding-left: 10px;
    transition: 0.2s;
    transform-origin: 50% 60%;
}

.RMM-Btn-15:hover:after {
    -webkit-animation: bounceright 0.3s alternate ease infinite;
    animation: bounceright 0.3s alternate ease infinite;
}

.RMM-Btn-15:hover {
    border-radius: 4px;
    color: #fff;
    border: 1px solid var(--buttonHover);
    background: var(--buttonHover);
}

.RMM-Btn-15-reverse {
    position: relative;
    background: var(--buttonHover);
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0.7em 3em 0.7em 1.2em;
    border-radius: 0;
    border: 1px solid var(--buttonHover);
    margin: 0;
    cursor: pointer;
    transition: 0.5s all;
}

.RMM-Btn-15-reverse:after {
    content: "\f178";
    position: absolute;
    font-family: 'FontAwesome';
    padding-left: 10px;
    transition: 0.2s;
    transform-origin: 50% 60%;
}

.RMM-Btn-15-reverse:hover:after {
    -webkit-animation: bounceright 0.3s alternate ease infinite;
    animation: bounceright 0.3s alternate ease infinite;
}

.RMM-Btn-15-reverse:hover {
    border-radius: 4px;
    color: #fff;
    border: 1px solid var(--button);
    background: var(--button);
}

.ft-social-bx a {
    margin-right: 0;
    color: var(--primary);
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
    background: #fff;
}

.ft-social-bx a:hover {
    color: #fff;
}

@-webkit-keyframes bounceright {
    from {
        -webkit-transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(3px);
    }
}

@keyframes bounceright {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(3px);
    }
}
/*======================================
	*      General End   *
======================================*/



/*======================================
	*      Back to Top Start   *
======================================*/
.progress-wrap {
    position: fixed;
    right: -100px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #fff3f2;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    background-color: #fff;
}

.progress-wrap i {
    position: fixed;
    right: -100px;
    bottom: 50px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    font-size: 15px;
    color: var(--themeColor);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--themeColor);
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.progress-wrap.active-progress {
    opacity: 1;
    right: 5px;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 767.99px) {
    .progress-wrap.active-progress {
        right: 5px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767.99px) {
    .progress-wrap.active-progress {
        right: 5px;
    }
}
/*======================================
	*      Back to Top End   *
======================================*/



/*======================================
	*      Enquiry Popup Start   *
======================================*/
.enquiry {
    transform: rotate(-90deg) translate(-20%,0%);
    transform-origin: right;
    z-index: 999999;
    position: fixed;
    top: 180px;
    right: 20px;
    font-size: 12px;
}

.enquiry .apoint-btn-box {
    transform: none !important;
    padding: 10px;
    cursor: pointer;
    background: var(--sc-primary) !important;
    display: block;
    visibility: visible !important;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.enquiry .apoint-btn-box:before,
.enquiry .apoint-btn-box:after {
    content: "";
    background: var(--sc-primary);
    position: absolute;
    height: 100%;
    width: 40%;
    transform: skewX(40deg);
    -moz-transform: skewX(40deg);
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    -o-transform: skewX(40deg);
    top: 0;
    right: -30px;
    z-index: -1;
}

.enquiry .apoint-btn-box:before {
    right: auto;
    left: -30px;
    transform: skewX(-40deg);
    -moz-transform: skewX(-40deg);
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    -o-transform: skewX(-40deg);
}

.enquiry .apoint-btn-box.onFooter {
    background: #fff !important;
    color: #000 !important;
    font-weight: 800;
    border-top: solid 3px #000;
}

.enquiry .apoint-btn-box.onFooter:before,
.enquiry .apoint-btn-box.onFooter:after {
    background: #fff !important;
    top: -3px;
    border: solid 3px #000;
}

#rotate {
    vertical-align: top;
    margin-top: 23px;
    width: 80px;
    height: 30px;
}

.enquiry a {
    cursor: pointer;
    min-height: 30px;
    position: relative;
    border: 1px solid #cb4154;
    border-radius: 8px;
    padding: 4px 8px;
    margin-left: 20px;
    font-variant: small-caps;
    color: #fff !important;
    text-shadow: 0 0 0;
    outline: 0;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px #111;
    box-shadow: 0 1px 4px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2), inset 0 -1px 1px rgba(255,255,255,.1);
    background: #021f36;
}

.enquiry a:hover {
    box-shadow: 0px 0px 4px #fff;
    color: #fff !important;
}

.ShowcaseModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    height: 100%;
    overflow: auto;
    display: none;
}

.ShowcaseModal .logo {
    text-align: center;
}

.EnquiryBtn {
    background: #ffa800;
    color: #021f36;
    padding: 5px 10px 5px 10px;
    border: solid 1px #fff;
    font-weight: 700;
}

.ShowcaseModal input[type="text"], .ShowcaseModal input[type="email"], .ShowcaseModal input[type="tel"], .ShowcaseModal select, .ShowcaseModal textarea {
    background-color: #fff;
    border: 1px solid #333;
    width: 100%;
    border-radius: 5px;
    display: block !important;
    padding: 5px;
}

.ShowcaseModal .bootstrap-select {
    display: none;
}

.ShowcaseModal #LoaderImage {
    float: right;
    padding-left: 10px;
    padding-top: 0 !important;
}

.ShowcaseModal h2 {
    font-size: 35px;
}

.Formoutliner {
    background: #fff;
    /*border: solid 5px #fff;*/
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    border-radius: 5px;
    /*border: 4px solid var(--primary);*/
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg stroke='%23CCC' stroke-width='0' %3E%3Crect fill='%23F5F5F5' x='-60' y='-60' width='110' height='240'/%3E%3C/g%3E%3C/svg%3E");
}

#DownloadModel .Formoutliner{
    width: 50%;
}

.Formoutliner::before {
    position: absolute;
    content: "";
    opacity: 0.9;
    /*background-color: #ffffff;*/
    background-repeat: repeat-x;
    height: 100%;
    width: 100%;
}

.main-img img {
    width: 45%;
}

@media only screen and (max-width: 1200px) {
    .menu-logo h2 {
        font-size: 15px !important;
    }
}

@media only screen and (max-width: 992px) {
    #EnquiryContactSection {
        display: none;
    }

    .menu-logo h2 {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 500px) {
    .menu-logo h2 {
        font-size: 13px !important;
    }

    .menu-logo .tagLine {
        font-size: 13px;
        top: 0;
    }
}

@media only screen and (max-width: 420px) {
    .menu-logo h2 {
        font-size: 12px !important;
    }

    .menu-logo .tagLine {
        font-size: 13px;
        top: 0;
    }
}

@media only screen and (max-width: 400px) {
    .menu-logo h2 {
        font-size: 10px !important;
    }

    .menu-logo .tagLine {
        font-size: 10px;
        top: 0;
    }
}

@media only screen and (max-width: 350px) {
    .menu-logo h2 {
        font-size: 8px !important;
    }

    .menu-logo .tagLine {
        font-size: 9px;
        top: 0;
    }
}

#EnquiryForm, #DownloadForm {
    padding: 14px 20px;
}

.Formoutliner .main-heading {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin: 0 0 0px;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
    color: #fff !important;
}

.Formoutliner .main-heading::before {
    position: absolute;
    content: "";
    z-index: 0;
    bottom: 25px;
    right: auto;
    left: 4px;
    transform: none;
    width: 70px;
    height: 4px;
    background: #1bbde8 !important;
}

.Formoutliner input {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
}

.Formoutliner textarea {
    margin-bottom: 15px;
    min-height: 80px;
    font-size: 14px;
    padding: 5px 15px;
}

.Formoutliner select {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
    text-align: left;
    width: 100%;
    background: transparent;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
}

.Formoutliner .text-center {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.Formoutliner .contact-form #success {
    margin-top: 23%;
}

.cont-info {
    padding: 6px 30px 80px;
    background: var(--primary);
    border-radius: 50px 0 0 0;
    min-height: auto;
}

.cont-info h4 {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #fff;
}

.enquiry-info li a:hover, .enquiry-info li a, .enquiry-info li i {
    color: #f5f5f5;
    font-size: 17px;
}

.enquiry-info li {
    margin-bottom: 10px;
}

.color-1 {
    color: var(--primary);
    font-weight: 600 !important;
}

.color-2 {
    color: var(--button);
    font-weight: 600 !important;
}

.Formoutliner .ft-social-bx .btn:hover {
    background: var(--button2Hover);
}

@media only screen and (max-width:500px) {
    .enquiry {
        transform: rotate(-90deg) translate(-20%,0%);
        transform-origin: right;
        z-index: 999999;
        position: fixed;
        top: 175px !important;
        right: 20px;
        font-size: 12px;
    }
}
/*======================================
	*      Enquiry Popup End   *
======================================*/



/*======================================
	*      Whatsapp Start   *
======================================*/
.WPButton {
    position: fixed;
    right: 0;
    top: 450px;
    background: #17980E;
    color: #fff;
    font-size: 30px;
    border-radius: 5px 0 0 5px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: block;
    margin-top: 2px;
    line-height: 50px;
    z-index: 9;
}

.WPButton i {
    top: -3px;
    position: relative;
    color: #fff;
}

@media only screen and (max-width:500px) {
    .WPButton {
        position: fixed;
        right: 0;
        top: 410px !important;
        background: #17980E;
        color: #fff;
        font-size: 30px;
        border-radius: 5px 0 0 5px;
        width: 40px;
        height: 40px;
        text-align: center;
        display: block;
        margin-top: 2px;
        line-height: 50px;
        z-index: 9;
    }
}
/*======================================
	*      Whatsapp End   *
======================================*/



/*======================================
	*      Enroll Start   *
======================================*/
.icon-bar {
    position: fixed;
    top: 530px;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #eee;
    border-right-color: rgb(238, 238, 238);
    border-right-style: solid;
    border-right-width: 1px;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    -webkit-box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.icon-bar a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 50px;
    color: #222;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
}

.icon-bar a i {
    font-size: 25px;
    color: #000;
}

.icon-bar a:hover i {
    color: #ff7000;
}

.enroll i {
    color: #fff !important;
}

.enroll img {
    width: 27px;
    margin-top: 6px;
    float: left;
    margin-left: 10px;
}

.enroll #enroll {
    /*display: none;*/
    font-weight: 700;
    color: #fff;
    position: relative;
    top: -5px;
    position: absolute;
    width: 210px;
    font-size: 0;
}

.enroll, .enroll a {
    text-decoration: none !important;
    font-size: 13px !important;
    background: var(--themeColor) !important;
    border-radius: 5px 0 0 5px;
}

.enroll:hover {
    width: 180px !important;
    font-size: 15px !important;
    color: #fff;
}

.enroll:hover #enroll {
    display: block;
    font-size: 16px !important;
}

@media only screen and (max-width:500px) {
    .icon-bar {
        position: fixed;
        top: 485px !important;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border: 1px solid #eee;
        border-right-color: rgb(238, 238, 238);
        border-right-style: solid;
        border-right-width: 1px;
        border-right: 0;
        border-radius: 5px 0 0 5px;
        -webkit-box-shadow: -3px 0 10px -2px rgb(0 0 0 / 10%);
        box-shadow: -3px 0 10px -2px rgb(0 0 0 / 10%);
        z-index: 99;
    }
}
/*======================================
	*      Enroll End   *
======================================*/



/*======================================
	*      Header Start   *
======================================*/
.nav-menu .nav-t-holder .nav-t-footer {
    padding: 1em 0;
    top: 70px;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li.active {
    
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li {
    display: inline-block;
    padding: 0 0px;
    position: relative;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li > a {
    padding: 0 0 0 25px;
    display: block;
    color: #333;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 400;
    font-size: 18px;
    border-right: unset;
    text-align: left;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li > a > i {
    font-size: 15px;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li.active a {
    color: var(--sc-primary);
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li.active .submenu a {
    color: #333;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li:hover > a {
    font-weight: 400;
    color: var(--primary);
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li ul.submenu li:hover > a {
    color: #fff;
    background: var(--button);
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li:first-child > a {
    padding: 0 10px 0 10px;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li:last-child > a {
    border: none;
    padding-right: 0;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li ul.submenu {
    text-align: start;
}

.nav-menu .nav-t-holder .nav-t-footer ul.nav > li > ul.submenu {
    top: 35px;
    left: 0;
}

.pad-logo .top-two-right .top-panel {
    float: right;
    width: 65%;
}

.pad-logo {
    padding-top: 0.8em;
    padding-bottom: 0.83em;
    padding-left: 0;
}

.t-logo {
    text-align: left;
    padding-bottom: 0em;
    padding: 0;
}

.nav-menu .nav-t-holder .nav-t-header button {
    color: var(--primary);
}

.m-header {
    width: 75%;
    z-index: 1;
}

@media screen and (max-width:1100px) {
    .nav-menu .nav-t-holder .nav-t-footer ul.nav > li > a, .nav-menu .nav-t-holder .nav-t-footer ul.nav > li:first-child > a {
        padding: 15px 26px;
        border-right: unset;
    }

    .nav-menu .nav-t-holder > .nav-t-footer ul.nav > li:hover > a {
        background: var(--button);
        color: #fff !important;
    }

    .nav-menu .nav-t-holder .nav-t-footer ul.nav > li > a > i {
        display: none;
    }

    .nav-menu .nav-t-holder .nav-t-footer ul.nav > li > a {
        color: #fff;
    }

    .t-logo {
        text-align: center;
        padding: 11px 5px;
    }
}

@media screen and (min-width:1100px) and (max-width:1170px) {
    .nav-menu .nav-t-holder .nav-t-footer ul.nav > li > a {
        padding: 0 0 0 11px;
        font-size: 16px;
    }
}

@media screen and (min-width:768px) and (max-width:1200px) {
    .pad-logo .top-two-right .top-panel {
        width: 65%;
    }
}

@media screen and (max-width:768px) {
    .pad-logo .top-two-right .top-panel {
        width: 60%;
    }

    .wel-t-band .wel-band-bg {
        background-size: 100% 100%;
        text-align: center;
        display: block;
    }
}

@media screen and (max-width:340px) {
    .pad-logo .top-two-right .top-panel {
        width: 50%;
    }
}

@media screen and (max-width:400px) {
    .logo-wrapper img {
        width: 100%;
    }
}

/*======================================
	*      Header End   *
======================================*/



/*======================================
	*      Breadcrumb End   *
======================================*/
.breadcumb-wrapper ul.breadcumb li a {
    display: inline-block;
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 20px;
    display: block;
}

.inner-banner2.ovbl-dark h2 {
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 0;
    font-size: 50px;
}

.inner-banner2.ovbl-dark {
    padding-top: 150px;
    padding-bottom: 80px;
    display: table;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.inner-banner2.ovbl-dark.Contact {
    background-image: url(../images/Background/Contact-Page-Banner.png);
}

.inner-banner2.ovbl-dark.About {
    background-image: url(../images/Background/About-Page-Banner.jpg);
}

.inner-banner2.ovbl-dark.Services {
    background-image: url(../images/Background/Services-Page-Banner.jpg);
}

.inner-banner2.ovbl-dark.Industries {
    background-image: url(../images/Background/Industries-Page-Banner.png);
}

.inner-banner2.ovbl-dark.Gallery {
    background-image: url(../images/Background/Gallery-Page-Banner.png);
}

.inner-banner2.ovbl-dark.Products {
    background-image: url(../images/Background/Products-Page-Banner.jpg);
}

@media screen and (max-width:991px) {
    .inner-banner2.ovbl-dark h2 {
        background: rgba(255, 255, 255, 0.7);
    }
}
/*======================================
	*      Breadcrumb End   *
======================================*/




/*======================================
	*      Banner Start   *
======================================*/
#minimal-bootstrap-carousel .carousel-caption {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    text-align: right;
    text-shadow: none;
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

#minimal-bootstrap-carousel .carousel-caption .thm-container .box.valign-top {
    vertical-align: top;
    position: relative;
}

#minimal-bootstrap-carousel.ver_new_1_slider .carousel-caption .thm-container .box.valign-top .content {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 50%;
}

@media screen and (max-width:767px) {
    #minimal-bootstrap-carousel.ver_new_1_slider .carousel-control, #minimal-bootstrap-carousel.ver_new_2_slider .carousel-control, #minimal-bootstrap-carousel.ver_new_5_slider .carousel-control {
        top: 50%;
    }

    #minimal-bootstrap-carousel.ver_new_1_slider .carousel-caption .thm-container .box.valign-top .content {
        position: absolute;
        bottom: 10%;
        left: 0;
        width: 100%;
    }
}
/*======================================
	*      Banner End   *
======================================*/




/*======================================
	*      About Start   *
======================================*/
.we-offer-cont h2 {
    margin: 0;
    padding: 0 0.8em 0 0;
    text-align: right;
    font-weight: 600;
    color: #323232;
    text-transform: uppercase;
}

.we-offer-cont p {
    margin: 0;
    padding: 0 1.8em 0 0;
    text-align: right;
    color: #323232;
}

.diff-offer {
    position: relative;
    padding-top: 0;
    padding-bottom: 5.5em;
    overflow: hidden;
}

.service-info h4 {
    border-bottom: 2px solid var(--primary);
    color: #242424;
    font-weight: 500;
    line-height: 25px;
    padding: 0 0 0.5em;
    -webkit-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

.we-offer-cont2 {
    width: 68%;
    border-left: 3px solid var(--primary);
}

.we-offer-cont2 p {
    font-weight: 400;
    margin: 0;
    padding: 0 0 0 2em;
    font-style: italic;
    color: #323232;
}

.service-info p {
    color: #323232;
    font-weight: 400;
    margin: 0;
    padding: 1em 0 0.5em;
}

.inner {
    position: relative;
    padding: 15px 30px 20px 29px;
    color: #fff;
}

.vision-sec .inner {
    background-color: var(--primary);
}

.mission-sec .inner {
    background-color: var(--sc-primary);
}

.inner:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    background-position: center;
    background-repeat: no-repeat;
}

.vision-sec .inner:before {
    background: url(../images/Background/Vision-Bg.jpg);
}

.mission-sec .inner:before {
    background: url(../images/Background/Mission-Bg.jpg);
}

.certificate-section {
    padding: 4.5em 0;
    background: #f8f8ff;
}

.certificate-section .about-us .certificates img {
    width: 85%;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    padding: 10px;
}

.certificate-section .faq-left-box .single-faq-left .icon-box {
    font-size: 44px;
    width: 45px;
    color: var(--primary);
}

.certificate-section .faq-left-box .single-faq-left {
    margin-bottom: 42px;
    background: white;
    border: 1px solid #e5e1e1;
    padding: 20px;
}

.faq-left-box.one .single-faq-left {
    margin-bottom: 20px;
}

.faq-left-box.one .single-faq-left .icon-box {
    font-size: 44px;
    width: 45px;
    color: var(--primary);
}

.about-img {
    position: relative;
    top: 80px;
    text-align: center;
}

.about-img img {
    width: 100%;
}

.infra-section {
    background: #f8f8ff;
    padding: 4.5em 0;
}

.infra-section .faq-left-box .single-faq-left {
    margin-bottom: 20px;
}

.infra-section .faq-left-box .single-faq-left .icon-box {
    font-size: 30px;
    width: 45px;
    color: var(--primary);
}

.infra-img {
    text-align: center;
    animation: top 3s infinite;
    animation-direction: alternate;
}

.infra-img img {
    width: 100%;
}

@keyframes top {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translateY(20px);
    }
}

@media screen and (max-width:650px) {
    .we-offer-cont2 {
        display: block;
        width: 85%;
        border: unset;
    }

    .we-offer-cont p, .we-offer-cont h2 {
        text-align: center;
    }

    .we-offer-cont2 p {
        font: 400 1.2em/1.3em 'CerebriSans';
        margin: 2em 0 0 2em;
        padding: 0;
        font-style: italic;
        color: #333;
        text-align: justify;
    }

    .service-info h4 {
        height: unset;
    }
}

@media screen and (max-width:1170px) {
    .about-img {
        top: 0;
    }
}
/*======================================
	*      About End   *
======================================*/





/*======================================
	*      Footer Start   *
======================================*/
.footer-bg.footer-bg3 {
    background-color: #0a0b0c;
    position: relative;
    padding: 59px 0;
    min-height: unset;
}

.footer-bg.footer-bg3:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Footer-Bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.widget.about-us-widget ul li {
    display: inline-block;
    list-style: none;
    padding: 0px 9px 0 0;
}

.widget.about-us-widget ul li a {
    padding: 0;
    color: #333;
    margin-top: 0;
    background: #fff;
}

.widget.about-us-widget ul li a:hover {
    padding: 0;
    color: #fff;
    margin-top: 0;
    background: var(--button);
}

.widget .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-collapse: separate;
    min-width: unset !important;
    width: unset;
}

.rmmfooter .right {
    text-align: right;
}

@media screen and (max-width: 992px) {
    .rmmfooter .right {
        text-align: left;
    }
}
/*======================================
	*      Footer End   *
======================================*/




/*======================================
	*      Hooks End   *
======================================*/
.our-sol-wrapper {
    background: url(../images/Background/Hooks-Bg.jpg) no-repeat center top;
    position: relative;
    overflow: hidden;
    padding: 3em 0;
    background-size: cover;
    opacity: 0.75;
}

.indurial-solution-text2 h2 {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 10px 0 0 0;
}

.hooks-btn {
    text-align: right;
}

@media screen and (max-width: 992px) {
    .hooks-btn {
        text-align: left;
        margin-top: 20px;
    }
}
/*======================================
	*      Hooks End   *
======================================*/




/*======================================
	*      Counter Start   *
======================================*/
.counterBck {
    position: relative;
}

.p-100b {
    padding-bottom: 100px !important;
}

.counter-area {
    background-color: #1D5079;
    padding-bottom: 140px;
}

.pt-100 {
    padding-top: 100px;
}

.counterBck:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000000;
    opacity: .02;
    background-repeat: repeat;
    background-size: unset;
}

.counter-area .row {
    text-align: center;
    align-items: center;
}

.counter-item {
    margin-bottom: 30px;
    border-radius: 8px;
    border: 2px dotted #808080;
    text-align: center;
    padding: 25px 10px 22px;
    font-size: 20px;
    color: #fff;
}

.counter-item span {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
}

.counter-item p {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}
/*======================================
	*      Counter End   *
======================================*/




/*======================================
	*      Testimonials Start   *
======================================*/
.testimonial-wrapper3 {
    background: url(../images/Background/Testimonials-Bg.jpg) center bottom no-repeat fixed;
    background-size: cover;
}

.testimonial-sec .testimonial-slider p {
    font: 1.15em/2em 'CerebriSans';
    color: #fff;
    padding: 0;
    margin: 2em;
}

.testimonial-sec .testimonial-slider h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    font-style: italic;
    margin: 0;
}

.testimonial-sec .testimonial-slider h3 {
    font-size: 25px;
    color: #fff;
    padding: 0;
    margin: 0;
    font-style: italic;
}
/*======================================
	*      Testimonials End   *
======================================*/




/*======================================
	*      Services Start   *
======================================*/
.services-content {
    padding: 20px;
    margin-bottom: 30px;
    background: #f7f7f7;
    box-shadow: 0px 7px 12px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: 0.5s all;
}

.services-content:hover {
    background: #e5e5e5;
    box-shadow: unset;
}

.services-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.services-content p {
    font-size: 16px;
}
/*======================================
	*      Services End   *
======================================*/



/*======================================
	*      Indutries Start   *
======================================*/
.industries-inner {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 25px 30px;
    -webkit-box-shadow: 0px 3px 20px 13px #bbbbbb;
    box-shadow: 0px 3px 20px 13px #bbbbbb;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 90px;
    position: relative;
    border: 1px solid var(--primary);
    transition: 0.5s all;
}

.industries-inner:hover {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.industries-img img {
    /*-webkit-animation: border-transform-default 10s linear infinite alternate forwards;
    animation: border-transform-default 10s linear infinite alternate forwards;*/
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 30px;
    height: 80px;
}

.industries-title {
    background: var(--primary);
    padding: 8px 20px 8px 20px;
    text-align: center;
    position: relative;
    left: 0;
    top: -90px;
}

.industries-title:before {
    content: "";
    border-top: 15px solid;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -29px;
    left: 0;
    color: var(--primary);
}

.industries-title:after {
    content: "";
    border-top: 15px solid;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -30px;
    right: 0;
    color: var(--primary);
}

.industries-title h4 {
    font-size: 20px;
    color: #fff;
}


@keyframes border-transform-default {
    0%, to {
        border-radius: 65% 86% 80% 69%/59% 55% 95% 89%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}
/*======================================
	*      Indutries End   *
======================================*/




/*======================================
	*      Why Us Start   *
======================================*/
.sm-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sm-container .main-circle {
    height: 480px;
    width: 40%;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: stretch;
    flex-wrap: wrap;
    background-image: url(../images/Background/Why-Us-Bg.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sm-container .main-circle .inf {
    width: 500px;
    transform: translate(9.5%, -30%);
    z-index: 1;
}

.sm-container .main-circle .inf h3 {
    color: rgb(255, 255, 255, 0.9);
    font-size: 30px;
}

.sm-container .main-circle .inf p {
    max-width: 430px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.5;
}

.sm-container .info {
    background: rgba(255, 255, 255, 0.5);
}

.sm-container .icon {
    display: flex;
    align-items: center;
}

.sm-container .icon img {
    height: 145px;
    width: 27%;
    border-radius: 50%;
    padding: 0px;
    background-color: #242d3c;
    margin: 5px;
    border: 18px solid #fff;
}

.sm-container .icon .info h3 {
    font-weight: 500;
    color: #242d3c;
}

.sm-container .icon .info p {
    color: #333;
}

/* One */
.sm-container .one {
    position: absolute;
    top: -50px;
    left: 0;
    width: 45%;
}

.sm-container .one img {
    order: 2;
}

.sm-container .one .info {
    order: 1;
    text-align: end;
}

/* Two */
.sm-container .two {
    position: absolute;
    top: 130px;
    right: -70px;
    width: 45%;
}

/* Three */
.sm-container .three {
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 45%;
}

.sm-container .three img {
    order: 2;
}

.sm-container .three .info {
    order: 1;
    text-align: end;
}

.sm-container .icon:hover img {
    transform: rotate(359deg);
}

@media screen and (max-width: 1300px) {
    .sm-container .two {
        right: 0px;
    }
}

@media screen and (max-width: 992px) {
    .sm-container .one, .sm-container .two, .sm-container .three {
        width: 100%;
    }

    .sm-container .main-circle {
        background-image: unset;
    }
}

@media screen and (max-width: 590px) {
    .sm-container {
        position: unset;
        display: block;
        justify-content: unset;
        align-items: unset;
        flex-direction: unset;
        text-align: center;
    }

    .sm-container .main-circle {
        display: none;
    }

    .sm-container .icon {
        display: unset;
    }

    .sm-container .icon img {
        height: auto;
        width: 50%;
    }

    .sm-container .one .info, .sm-container .three .info {
        text-align: unset;
    }

    .sm-container .one, .sm-container .two, .sm-container .three {
        position: unset;
    }
}
/*======================================
	*      Why Us End   *
======================================*/



/*======================================
	*      Gallery Start   *
======================================*/
.about-tab-box .tab-title-box ul {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.about-tab-box .tab-title-box ul li.active:before, .about-tab-box .tab-title-box ul li:hover:before {
    background: var(--button);
}

.about-tab-box .tab-title-box ul li a {
    text-align: left;
    font-weight: 500;
    font-size: 17px;
    display: block;
    font-weight: bold;
    color: #242424;
    padding: 0.8em 1.5em;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.about-tab-box .tab-title-box {
    margin-bottom: 0;
}

.about-tab-box .tab-title-box ul li.active, .about-tab-box .tab-title-box ul li:hover {
    background: var(--primary);
    border: 2px solid transparent;
}

.gallery-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 5px 5px 20px 5px;
}

@media screen and (max-width:992px) {
    .about-tab-box .tab-title-box ul {
        display: inline-block;
        width: 100%;
    }

    .gallery-img img {
        width: 100%;
        height: auto;
    }
}
/*======================================
	*      Gallery End   *
======================================*/




/*======================================
	*      Customers Start   *
======================================*/
.clients-section .client-carousel .item img {
    opacity: 1 !important;
    border: 1px solid #F0F0F0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
/*======================================
	*      Customers End   *
======================================*/





/*======================================
	*      Products Start   *
======================================*/
.products-section-1 {
    position: relative;
    padding: 4.5em 0;
}

.products-section {
    position: relative;
    padding: 4.5em 0;
}

.products-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Products-Bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.product-box-style1 {
    position: relative;
    cursor: pointer;
    background: var(--primary);
    margin-bottom: 30px;
}

.product-media {
    min-height: 500px;
}

.product-box-style1 .product-content {
    bottom: 0px;
    position: absolute;
    width: 100%;
    z-index: 1;
    transition: all 0.8s linear;
}

.product-box-style1 .product-content .product-content-inner {
    padding: 20px;
    margin: 20px;
    transition: all 0.8s linear;
    background-color: rgba(11, 47, 68, 0.9);
    position: relative;
    display: table;
    height: 0%;
}

.product-box-style1 .product-content .product-content-inner .product-content-top {
    display: table-header-group;
}

.product-box-style1 .product-content .product-content-inner .product-content-top .product-title-large {
    text-align: start;
    min-height: 55px;
}

.product-box-style1 .product-content .product-content-inner .product-content-top .product-title-large a {
    color: #fff;
    transition: all 0.8s linear;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .product-box-style1 .product-content .product-content-inner .product-content-top .product-title-large a {
        font-size: 26px;
    }
}

.product-box-style1 .product-content .product-content-inner .product-content-bottom {
    display: table-cell;
    vertical-align: bottom;
}

.product-box-style1 .product-content .product-content-inner .product-content-bottom .product-title-large-number {
    font-size: 40px;
    color: #fff;
    transition: all 0.8s linear;
    font-weight: 600;
    opacity: 0.5;
    right: 10px;
    bottom: 0;
    position: absolute;
}

@media (max-width: 991px) {
    .product-box-style1 .product-content .product-content-inner .product-content-bottom .product-title-large-number {
        font-size: 30px;
    }
}

.product-box-style1 .product-content .product-content-inner .product-content-bottom p {
    color: #fff;
    transition: all 0.8s linear;
    margin-bottom: 20px;
    min-height: 70px;
}

.product-box-style1 .product-content .product-content-inner .product-content-bottom .site-button-2 {
    transition: all 0.8s linear;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    transition: 0.5s all ease;
    position: relative;
    overflow: hidden;
}

.product-box-style1:hover .product-content {
    bottom: 0;
}

.product-box-style1:hover .product-content .product-content-inner {
    height: 100%;
    background-color: var(--sc-primary);
}

.product-box-style1:hover .product-content .product-content-inner .product-content-top .product-title-large a {
    color: #fff;
}

.product-box-style1:hover .product-content .product-content-inner .product-content-bottom .product-title-large-number {
    color: #fff;
}

.product-box-style1:hover .product-content .product-content-inner .product-content-bottom p {
    color: #fff;
}

.product-box-style1:hover .product-content .product-content-inner .product-content-bottom .site-button-2 {
    color: #fff;
}

.product-box-style1 .product-media img {
    width: 100%;
}

.product-box {
    margin-bottom: 20px;
}

.product-box img {
    border: 1px solid #e5e5e5;
    height: 200px;
    width: 100%;
    object-fit: contain;
}

.products {
    border-bottom: 1px solid var(--sc-primary);
    margin-bottom: 60px;
}

.RMM-list-7 {
    font-size: 20px;
    margin-bottom: 20px;
}

.RMM-list-7 li {
    position: relative;
    padding-left: 30px;
}

.RMM-list-7 li:before {
    position: absolute;
    content: "\f013";
    font-family: fontawesome;
    color: var(--primary);
    left: 0;
    top: 0;
}
/*======================================
	*      Products End   *
======================================*/



.about-sec-content > .btn {
    margin: 10px;
}

.caption {
	color: gold !important;
	font-weight: 800;
	font-size: 20px;
}

.our-galler-htwo {
    background: url(../images/Background/Products-Bg.jpg) no-repeat center top;
    position: relative;    
}

.imgBg {
    position: relative;
    background: url(../images/Background/Products-Bg.jpg) no-repeat center top;
    background-repeat: no-repeat;
    background-size: cover;
}
    .imgBg:before {
        background-color: rgba(0,0,0,.7);
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: .7;
    }

.prdLi
{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
}
    ul.prdLi, .prdLi li {
        margin: 0;
        list-style-type: none;        
    }

    .prdLi li {
        width: auto;
        float: left;
        margin-right: 10px;
    }

    .prdLi span {
        background: #1D5079;
        color: #fff;
        padding: 5px;
        margin-bottom: 10px;
        border-radius: 10px;
        display: inline-block;
        white-space: nowrap;
        box-shadow: 4px 4px 9px 0px #888;
    }

        .prdLi span:hover {
            background: #C1231F;
            color: #fff;
            box-shadow: unset;
        }

.stickyTop {
    /*position: sticky;*/
    /*top: 50px;*/
    margin-top: 50px;
    border-top: solid 1px gray;
    padding-top: 25px;
}

 .pt16 {
     padding-top: 16px !important;
 }
 .w50 {
     width: 50%;
     display: inline; 
 }
.w50:nth-child(2n) {    
    padding-left: 20px;
}

.brands .icon-box{
    margin-bottom: 30px;
    min-height: 150px;
    text-align: center;
}
.brands .icon-box img {
    width: 150px;
}

@media screen and (max-width: 550px) {
    .prdLi span {
        font-size: 45% !important;
    }
}