@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
    --primaryColor: #202277;
    --secondaryColor: #922626;
    --lightBlueColor: #a4d8ff;
    --menuActiveHoverColor: #a4d8ff;
    --bodyFontFamily: 'League Spartan', sans-serif;
    --secondaryFontFamily: 'EB Garamond', serif;
    ;
}

body {
    font-family: var(--bodyFontFamily);
    font-weight: 400;
    font-size: 16px;
    color: #000;
    overflow-x: hidden;
}

a,
a:hover {
    text-decoration: none;
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 2rem;
}

h5 {
    font-size: 1.6rem;
}

button {
    font-family: 'League Spartan', sans-serif !important;
    font-weight: 500 !important;
    min-width: 160px;
    height: 50px;
    margin-top: 10px;
    margin-right: 15px;
    transition: all linear .2s !important;
}

button:hover {
    box-shadow: 2px 5px 15px -3px rgb(0 0 0 / 60%);
}

.btn-gradient-1 {
    background: linear-gradient(156deg, rgba(146, 38, 38, 1) 50%, rgba(220, 117, 117, 1) 100%);
    color: #fff;
    outline: none;
    border: 0;
}

.btn-gradient-1:hover {
    background: linear-gradient(156deg, rgba(32, 34, 119, 1) 50%, rgba(104, 106, 198, 1) 100%);
    color: #fff;
}

.btn-gradient-2 {
    background: linear-gradient(156deg, rgba(32, 34, 119, 1) 50%, rgba(104, 106, 198, 1) 100%);
    color: #fff;
    outline: none;
    border: 0;
}

.btn-gradient-2:hover {
    background: linear-gradient(156deg, rgba(146, 38, 38, 1) 50%, rgba(220, 117, 117, 1) 100%);
    color: #fff;
}

.btn-outline-secondary {
    border-color: var(--secondaryColor);
    color: var(--secondaryColor);
}

.btn-outline-secondary:hover {
    background: var(--secondaryColor);
    color: #fff;
}

.primaryColor {
    color: var(--primaryColor);
}

.secondaryColor {
    color: var(--secondaryColor);
}

.title-1 {
    color: var(--primaryColor);
    font-weight: 400;
}

.title-2 {
    color: var(--secondaryColor);
    font-weight: 600;
    display: block;
}

strong,
.font-w-600 {
    font-weight: 600;
}

.font-w-300 {
    font-weight: 300;
}

.pd-left-xsm {
    padding-left: 30px;
}
.pd-right-xsm {
    padding-right: 30px;
}
.pd-top-sm {
    padding-top: 60px;
}

.pd-bottom-sm {
    padding-bottom: 60px;
}

.pd-top-md {
    padding-top: 100px;
}
.pd-bottom-md {
    padding-bottom: 100px;
}

.font-h2-x {
    font-size: 3.5rem;
}

.md-font {
    font-size: 2rem;
}

.rg-font {
    font-size: 1.6rem;
}

.bg-gradient-1 {
    background: linear-gradient(162deg, rgba(227, 227, 227, 1) 31%, rgba(255, 255, 255, 1) 65%);
}

.lSSlideOuter .lSPager.lSpg {
    transform: translateY(20px);
    height: 40px;
}

.lSSlideOuter .lSPager.lSpg>li a {
    width: 15px;
    height: 15px;
    background: var(--primaryColor);
}

.lSSlideOuter .lSPager.lSpg>li.active a,
.lSSlideOuter .lSPager.lSpg>li:hover a {
    background-color: var(--primaryColor);
}

.lSSlideOuter .lSPager.lSpg>li.active a {
    width: 30px;
}


/*Page Titlebar*/
.page-titlebar {
    min-height: 250px;
    background-color: #000000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/inner-banner.jpg);
    background-position: center;
    background-size: cover;
}

.page-titlebar h1 {
    color: #fff;
    font-family: var(--secondaryFontFamily);
    font-size: 3.5rem;
    position: relative;
}


/*Flyout Menu - Custom Scrollbar*/
#flyout_menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#flyout_menu::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

#flyout_menu::-webkit-scrollbar-thumb {
    background-color: var(--lightBlueColor);
}


/*HEADER*/
header {
    padding: 10px 20px;
    background: #fff;
    transition: all ease .4s;
}

header .logo-left img,
header .logo-right img {
    transition: height ease .4s;
}

.logo-left {
    flex-basis: 60%;
}

.menu-logo-wrapper {
    flex-basis: 40%;
    gap: 50px;
}

.hamburger-menu-btn {
    cursor: pointer;
}

.menu-label {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    margin-top: 4px;
}

#flyout_menu {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 30px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    overflow-y: auto;
    display: none;
}

#flyout_menu ul.main-menu {
    list-style: none;
    position: relative;
}

#flyout_menu ul.main-menu li {
    padding-bottom: 20px;
}

#flyout_menu ul.main-menu li ul.sub-menu li {
    padding-bottom: 0;
    padding-top: 10px;
}

#flyout_menu ul.main-menu li a {
    text-decoration: none;
    font-family: var(--secondaryFontFamily);
    font-size: 2rem;
    color: #fff;
    text-transform: capitalize;
}

#flyout_menu ul.main-menu a.has-submenu .fa-angle-down {
    margin-left: 30px;
    font-size: 1.8rem;
    transition: all linear .3s;
}

a.has-submenu .fa-angle-down.active {
    transform: rotate(-180deg);
}

#flyout_menu ul.main-menu ul.sub-menu {
    display: none;
}

#flyout_menu ul.main-menu ul.sub-menu li a {
    font-size: 1.6rem !important;
    font-family: var(--bodyFontFamily);
    position: relative;
    padding-left: 45px;
    transition: all linear .2s;
}

#flyout_menu ul.main-menu ul.sub-menu li a:after {
    content: "";
    width: 30px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all linear .2s;
}

#flyout_menu ul.main-menu li a:hover,
#flyout_menu ul.main-menu li a.active {
    color: #a4d8ff;
}

#flyout_menu ul.main-menu ul.sub-menu li a:hover {
    padding-left: 55px;
}

#flyout_menu ul.main-menu ul.sub-menu li a:hover:after {
    width: 40px;
    background: var(--menuActiveHoverColor);
}

.menu-close-btn {
    cursor: pointer;
}

.menu-close-btn img {
    filter: invert(1);
}



/**********************
 HOME PAGE
 **********************/
/*home slider*/
/*.home-slider-wrapper {
    background: url('../images/slider_bg.jpg') no-repeat;
    background-size: cover;
}
#home_slider .slider-content-wrapper {
    height: 100%;
}
#home_slider .slider-content-wrapper .left-content {
    padding: 8%;
    flex-basis: 54%;
}
#home_slider .slider-content-wrapper .right-content {
    flex-basis: 46%;
    justify-content: flex-end;
}
#home_slider li h1 {
    font-family: var(--secondaryFontFamily);
    font-size: 8rem;
    color: #fff;
}
#home_slider li h5 {
    font-family: var(--bodyFontFamily);
    font-weight: 400;
    color: #fff;
}
#home_slider li p {
    font-family: var(--bodyFontFamily);
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
}
.play-icon {
    background: #fff;
    border-radius: 50%;
    box-shadow: 2px 1px 3px -1px #084491;
    padding: 9px;
    margin-right: 10px;
}
#home_slider li .btn-light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.home-slider-wrapper .lSSlideOuter .lSPager.lSpg {
    transform: translateY(-50px);
}
.home-slider-wrapper .lSSlideOuter .lSPager.lSpg>li a {
    width: 15px;
    height: 15px;
    background: #fff;
}
.home-slider-wrapper .lSSlideOuter .lSPager.lSpg>li.active a,
.home-slider-wrapper .lSSlideOuter .lSPager.lSpg>li:hover a {
    background-color: #fff;
}
.home-slider-wrapper .lSSlideOuter .lSPager.lSpg>li.active a {
    width: 30px;
}*/



/*home slider - Bootstrap*/
.carousel-inner {
    background: url('../images/slider_bg.jpg') bottom no-repeat;
    background-size: cover;
}

#heroSlider .slider-content-wrapper {
    height: 100%;
}

#heroSlider .slider-content-wrapper .left-content {
    padding: 8%;
    flex-basis: 54%;
}

#heroSlider .slider-content-wrapper .right-content {
    flex-basis: 46%;
    justify-content: flex-end;
}

#heroSlider .slider-content-wrapper h1 {
    font-size: 3.5rem;
    color: #fff;
}

#heroSlider .slider-content-wrapper h5 {
    font-family: var(--bodyFontFamily);
    font-weight: 400;
    color: #fff;
}

#heroSlider .slider-content-wrapper p {
    font-family: var(--bodyFontFamily);
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
}

.play-icon {
    background: #fff;
    border-radius: 50%;
    box-shadow: 2px 1px 3px -1px #084491;
    padding: 9px;
    margin-right: 10px;
}

#heroSlider .slider-content-wrapper .btn-light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

#heroSlider .carousel-indicators {
    bottom: 20px;
}

#heroSlider .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 30px;
    background: #fff;
    opacity: 1;
    margin-left: 7px;
    margin-right: 7px;
}

#heroSlider .carousel-indicators [data-bs-target]:hover {
    box-shadow: none;
}

#heroSlider .carousel-indicators .active,
#heroSlider .carousel-indicators:hover [data-bs-target] {
    background-color: #fff;
}

#heroSlider .carousel-indicators .active {
    width: 30px !important;
}




/*Calibration Slider*/
.calibration-slider-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#calibration_slider h2 {
    font-weight: 600;
}

.list-icon-style-1 {
    margin-top: 30px;
    margin-bottom: 40px;
}

.list-icon-style-1 p {
    display: flex;
}

.list-icon-style-1 p:before {
    content: "\f054";
    font-family: 'Font Awesome 6 free';
    font-weight: 900;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    display: inline-block;
    background: var(--primaryColor);
    border-radius: 50%;
    margin-right: 15px;
    width: 25px;
    height: 25px;
    color: #fff;
}

.know-more-link a {
    color: var(--secondaryColor);
    font-weight: 500;
}

#calibration_slider li {
    position: relative;
}

#calibration_slider .calibration-text {
    padding: 50px;
}

#calibration_slider .box-style {
    padding: 50px;
    border-top: 8px solid var(--primaryColor);
    transition: all ease .5s;
}

#calibration_slider .box-style h2 {
    color: var(--primaryColor);
}

#calibration_slider .box-style .know-more-link {
    margin-left: 40px;
}

#calibration_slider li:not(.calibration-text):hover {
    background: #060619;
    background: linear-gradient(to top, #060619 0%, rgb(31 30 120 / 91%) 100%);
    color: #fff;
}

#calibration_slider .box-style:hover a,
#calibration_slider .box-style:hover h2 {
    color: #fff;
}

#calibration_slider .box-style:hover .list-icon-style-1 p:before {
    background: #fff;
    color: var(--primaryColor);
}

#calibration_slider .bg-gradient-common {
    background: rgba(28, 27, 106, 0.01);
    background: linear-gradient(150deg, rgba(28, 27, 106, 0.01) 30%, rgba(165, 216, 255, 0.7) 100%);
}

#calibration_slider .mechanical-bg .box-style {
    background: url(../images/services/Mechanical.png) no-repeat;
}

#calibration_slider .dimension-bg .box-style {
    background: url(../images/services/Dimension.png) no-repeat;
}

#calibration_slider .pressure-bg .box-style {
    background: url(../images/services/PRESSURE.png) no-repeat;
}

#calibration_slider .e-t-bg .box-style {
    background: url(../images/services/ELECTRO-TECHNICAL.png) no-repeat;
}

#calibration_slider .thermal-bg .box-style {
    background: url(../images/services/THERMAL.png) no-repeat;
}

#calibration_slider .f-f-bg .box-style {
    background: url(../images/services/FLUID-FLOW.png) no-repeat;
}

#calibration_slider .optical-bg .box-style {
    background: url(../images/services/OPTICAL.png) no-repeat;
}

#calibration_slider .gas-detector-bg .box-style {
    background: url(../images/services/GAS-DETECTOR.png) no-repeat;
}

#calibration_slider .m-d-bg .box-style {
    background: url(../images/services/MEDICAL-DEVICES.png) no-repeat;
}

#calibration_slider .bg-gradient-common .box-style {
    background-size: cover;
    background-position: left bottom;
}




/* calibration GSAP */
.calibration-gsap-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#calibration_gsap {
    display: flex;
    flex-wrap: nowrap;
    width: 350%;
    gap: 30px;
    overflow-x: hidden;
}

.c-g-grid {
    width: 50%;
}

#calibration_gsap h2 {
    font-weight: 600;
}

.list-icon-style-1 {
    margin-top: 30px;
    margin-bottom: 40px;
}

.list-icon-style-1 p {
    display: flex;
}

.list-icon-style-1 p:before {
    content: "\f054";
    font-family: 'Font Awesome 6 free';
    font-weight: 900;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    display: inline-block;
    background: var(--primaryColor);
    border-radius: 50%;
    margin-right: 15px;
    width: 25px;
    height: 25px;
    color: #fff;
}

.know-more-link a {
    color: var(--secondaryColor);
    font-weight: 500;
}

#calibration_gsap .calibration-text {
    padding: 50px;
}

#calibration_gsap .box-style {
    padding: 50px;
    border-top: 8px solid var(--primaryColor);
    transition: all ease .5s;
}

#calibration_gsap .box-style h2 {
    color: var(--primaryColor);
}

#calibration_gsap .box-style .know-more-link {
    margin-left: 40px;
}

#calibration_gsap .c-g-grid:not(.calibration-text):hover {
    background: #060619;
    background: linear-gradient(to top, #060619 0%, rgb(31 30 120 / 91%) 100%);
    color: #fff;
}

#calibration_gsap .c-g-grid:not(.calibration-text):hover a,
#calibration_gsap .c-g-grid:hover a,
#calibration_gsap .c-g-grid:hover h2 {
    color: #fff;
}

#calibration_gsap .c-g-grid:not(.calibration-text):hover .list-icon-style-1 p:before {
    background: #fff;
    color: var(--primaryColor);
}

#calibration_gsap .bg-gradient-common {
    background: rgba(28, 27, 106, 0.01);
    background: linear-gradient(150deg, rgba(28, 27, 106, 0.01) 30%, rgba(165, 216, 255, 0.7) 100%);
}

#calibration_gsap .mechanical-bg .box-style {
    background: url(../images/services/Mechanical.png) no-repeat;
}

#calibration_gsap .dimension-bg .box-style {
    background: url(../images/services/Dimension.png) no-repeat;
}

#calibration_gsap .pressure-bg .box-style {
    background: url(../images/services/PRESSURE.png) no-repeat;
}

#calibration_gsap .e-t-bg .box-style {
    background: url(../images/services/ELECTRO-TECHNICAL.png) no-repeat;
}

#calibration_gsap .thermal-bg .box-style {
    background: url(../images/services/THERMAL.png) no-repeat;
}

#calibration_gsap .f-f-bg .box-style {
    background: url(../images/services/FLUID-FLOW.png) no-repeat;
}

#calibration_gsap .optical-bg .box-style {
    background: url(../images/services/OPTICAL.png) no-repeat;
}

#calibration_gsap .gas-detector-bg .box-style {
    background: url(../images/services/GAS-DETECTOR.png) no-repeat;
}

#calibration_gsap .m-d-bg .box-style {
    background: url(../images/services/MEDICAL-DEVICES.png) no-repeat;
}

#calibration_gsap .bg-gradient-common .box-style {
    background-size: cover;
    background-position: left bottom;
}





/*Infinite Scrolling Text*/
.m-scroll {
    display: flex;
    position: relative;
    height: 4rem;
    margin: auto;
    overflow: hidden;
    z-index: 1;
}

.m-scroll__title:hover div {
    animation-play-state: paused;
}

.m-scroll__title {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    /*  transform: scale(2);*/
    transition: all 1s ease;
}

.m-scroll__title>div {
    display: flex;
    animation: scrollText 40s infinite linear;
}

.m-scroll__title h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primaryColor);
    opacity: .2;
    transition: all 2s ease;
    margin-right: 4rem;
}

@keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}


/*About AGG*/
.agglab-content-wrapper {
    padding-top: 4rem;
}

.about-agg-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120%;
}

.about-agg-wrapper {
    background: url('../images/about_bg.png') no-repeat;
    background-size: cover;
    background-position: right bottom;
    padding: 100px 150px 100px 200px;
}

.about-agg-wrapper .icon-list-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-agg-wrapper .icon-list-content div {
    flex-basis: 48%;
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: center;
}

.about-agg-wrapper .icon-list-content .list-icon {
    width: 54px;
    height: 54px;
    background: var(--primaryColor);
    display: inline-block;
    color: #fff;
    text-align: center;
    transition: background ease .4s;
}

.about-agg-wrapper .icon-list-content div:hover .list-icon {
    background: var(--secondaryColor);
}

.about-agg-wrapper .icon-list-content .list-icon i {
    font-size: 30px;
    line-height: 54px;
}


/*Solutions - Counter Number*/
.solutions-bg {
    background: url('../images/Solutions_bg.png') no-repeat;
    background-size: 25% 55%;
    background-position: 65% 70%;
    padding: 100px;
}

@keyframes coverBackground {
    from {
        background-size: 25% 55%;
        background-position: 65% 70%;
    }

    to {
        background-size: 100% 100%;
        background-position: 0% 0%;
    }
}

.solutions-title {
    flex-basis: 46%;
}

.solutions-content {
    flex-basis: 45%;
}

.counter {
    margin-top: 30px;
    flex-basis: 20%;
}

.counter sup {
    font-size: 7rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
}

.counter,
.count-title,
.count-description,
.count {
    color: #fff;
}

.count {
    font-size: 10rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
}


/*Case Studies*/
.case-study-wrapper {
    padding: 100px 100px 5rem 100px;
}

.casestudy-slider-wrapper {
    padding-top: 2.5rem;
}

#casestudy_slider .box-style {
    text-align: center;
    overflow: hidden;
}

.case-study-img img {
    width: 100%;
    transition: all ease .5s;
}

#casestudy_slider .box-style .case-study-content {
    position: relative;
    padding: 0px 20px 20px 20px;
    background: linear-gradient(180deg, rgba(32, 34, 119, 0) 35%, rgba(0, 0, 0, 0) 80%);
    transition: all linear .5s;
}

#casestudy_slider .case-study-content a {
    position: absolute;
    left: 50%;
    top: -10%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all linear .3s;
}

#casestudy_slider .case-study-content a i {
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: var(--primaryColor);
    font-size: 14px;
    line-height: 32px;
}

#casestudy_slider .box-style:hover .case-study-content a {
    opacity: 1;
    pointer-events: auto;
}

#casestudy_slider .box-style:hover .case-study-content h5,
#casestudy_slider .box-style:hover .case-study-content p {
    color: #fff;
}

#casestudy_slider .box-style:hover .case-study-content {
    background: linear-gradient(180deg, rgba(32, 34, 119, 1) 35%, rgba(0, 0, 0, 1) 80%);
}

#casestudy_slider .box-style:hover .case-study-img img {
    transform: scale(1.2);
}


/*Testimonial & clients*/
.testimonial-section {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 50%;
    z-index: 9;
}

.testimonial-wrapper {
    background: url(../images/quote_bg.png) no-repeat #a4d8ff;
    background-size: auto;
    background-position: right bottom;
    padding: 100px 100px 100px 40px;
}

.testimonial-wrapper .quote-icon img {
    width: 100px;
}

.testimonial-slider-wrapper {
    padding-left: 19%;
    padding-top: 1rem;
}

.testimonial-desc {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--primaryColor);
    padding-bottom: 2rem;
}

.testimonial-name {
    font-weight: 800;
    color: var(--primaryColor);
}

.testimonial-designation {
    color: var(--secondaryColor);
    font-style: italic;
}

.testimonial-main .testimonial-desc {
    color: #000;
}


/*Presision Matters & Client Slider*/
.precision-wrapper {
    padding: 80px 60px 80px 25%;
    background: url('../images/trusttheexperts.png') no-repeat;
    background-size: cover;
}

.clients-slider-wrapper .lSSlideOuter .lSPager.lSpg {
    transform: translateY(0);
    margin-top: 20px !important;
}

.clients-slider-wrapper .lSSlideOuter .lSPager.lSpg>li {
    padding: 0;
}

.clients-slider-wrapper .lSSlideOuter .lSPager.lSpg>li a {
    width: 30px;
    height: 2px;
    background: #000;
}

.clients-slider-wrapper .lSSlideOuter .lSPager.lSpg>li.active a {
    width: 60px;
    height: 6px;
    background: #3161a3;
}

.clients-wrapper {
    width: 76%;
    margin-left: auto;
}

#clients_slider li img {
    border: 1px solid #cecece;
}

.map-content-wrapper {
    padding-top: 2rem;
    background: url(../images/map_bg.jpg) no-repeat;
    background-size: cover;
    background-position: right bottom;
}


/******************
 * ABOUT PAGE
 ******************/
.about-pattern {
    background: url('../images/AGG-pattern-1.png') no-repeat;
    background-size: 30%;
    background-position: 0% 15%;
}

[data-aos=title-outline] {
    background-size: 0px 28%;
    background-image: linear-gradient(to right, #ba1c29 0, rgba(186, 28, 41, 0.01) 100%);
    background-repeat: no-repeat;
    transition: background-size 0.9s cubic-bezier(0.15, 0.75, 0.4, 1) 0s, opacity 0.25s ease 0s;
    background-position: left 90%;
}

[data-aos=title-outline].aos-animate {
    background-image: linear-gradient(to right, #ba1c29 0, rgba(186, 28, 41, 0.01) 100%);
    background-size: 100% 28%;
    display: inline;
}

.quality-policy-bg {
    padding: 120px 30px;
    background: url('../images/trusttheexperts.png') no-repeat;
    background-size: cover;
}

.quality-policy-box {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 100%, rgba(232, 232, 255, 0) 50%, rgba(195, 196, 234, 0) 100%);
    padding: 7%;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 15px;
    transition: all linear .3s;
}

.box1 .quality-policy-box{
    padding:12%!important;
}

.quality-policy-box .box-icon {
    margin-bottom: 30px;
}

.quality-policy-box .box-icon i {
    font-size: 5.5rem;
    color: var(--primaryColor);
    transition: all ease .5s;
}

.quality-policy-box .box-content {
    font-size: 1.2rem;
    line-height: 1.4;
}

.quality-policy-box:hover {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 255, 1) 50%, rgba(195, 196, 234, 1) 100%);
    transform: translateY(-10px);
}

.quality-policy-box:hover .box-icon i {
    font-size: 5.2rem;
}

.vision-mission-style,
.service-box-style {
    border-top: 8px solid var(--secondaryColor);
    background: #f7f7f7;
    padding: 50px;
}

.vision-wrapper,
.service-box-right-wrapper {
    transform: translateX(-15%);
}

.mission-wrapper,
.service-box-left-wrapper {
    transform: translateX(15%);
}


/************************
 MECHANICAL SERVICE PAGE
*************************/
.mechanical-bg-1 {
    background: url('../images/trusttheexperts.png') no-repeat;
    background-size: cover;
}

.service-bg-style {
    padding: 120px 30px;
}

.box-img-radius img {
    border: 15px solid #fff;
    border-radius: 30px;
}

ul.dash-style li {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    position: relative;
    margin-right: 2rem;
    display: flex;
}

ul.dash-style li:before {
    content: "\f068";
    font-family: 'FontAwesome';
    margin-right: 2rem;
    color: #a4d8ff;
}

ul.dash-style.dash-secondary li:before {
    color: var(--secondaryColor);
}

.service-grid-list-wrapper {
    padding: 0 30px;
    gap: 3%;
}

.service-grid-list-wrapper .grid-list {
    flex-basis: 31.33%;
    box-shadow: 0 0 10px #d5d5d5;
    margin-bottom: 3%;
}

.service-grid-list-wrapper .grid-list-content {
    padding: 20px;
    text-align: center;
}

.service-grid-list-wrapper .grid-list-content p {
    font-size: 1.4rem;
    line-height: 1.8rem;
}


/******************
 CONTACT US
 ******************/
.contact-detail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-detail-wrapper .box-icon {
    font-size: 5rem;
    color: var(--primaryColor);
}

.contact-detail-wrapper .box-content {
    text-align: center;
}

.contact-detail-wrapper .box-content a {
    color: #000;
}

.contact-detail-wrapper .box-content a:hover {
    color: var(--primaryColor);
}

.border-rb {
    border-right: 1px solid #000;
}

.social-wrapper {
    background: var(--primaryColor);
}

.social-wrapper .box-icon a {
    font-size: 3rem;
    color: #fff;
    transition: all ease .4s;
}

.social-wrapper .box-icon a:hover {
    opacity: .8;
}


/******************
 CAREERS
 ******************/
.career-form-wrapper {
    background: var(--lightBlueColor);
    padding: 60px;
}
.form-control:not(textarea) {
    height: 40px;
}
.form-control {
    font-size: 1.1rem;
}


/******************
 FOOTER
 ******************/
footer {
    background: linear-gradient(288deg, rgba(39, 41, 143, 1) 0%, rgba(1, 2, 48, 1) 65%);
    padding-top: 60px;
}

.footer-widget-wrapper {
    padding-bottom: 20px;
}

.footer-widget-wrapper .widget {
    flex-basis: 33.33%;
}

.footer-widget-wrapper h5,
.footer-widget-wrapper a,
footer hr {
    color: #fff;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-icon img{
    width:100%;
}

.certificate_img {
    width:180px;
}
.grid-list-img {
    border-top: 8px solid var(--secondaryColor);
}

.studies{padding:30px;background:linear-gradient(150deg, rgba(28, 27, 106, 0.01) 30%, rgba(165, 216, 255, 0.7) 100%)}

.bg-2{background:linear-gradient(210deg, rgba(28, 27, 106, 0.01) 30%, rgba(165, 216, 255, 0.7) 100%)}

#nav li{list-style:none;display:inline-block;}

#nav{display:flex;justify-content:space-around;}

#nav li a{color:#fff;padding: 20px 40px;background:linear-gradient(156deg, rgba(146, 38, 38, 1) 50%, rgba(220, 117, 117, 1) 100%);border-radius:5px;}

#nav li a:hover{background:linear-gradient(156deg, rgba(32, 34, 119, 1) 50%, rgba(104, 106, 198, 1) 100%);}