@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --primary-color: #0066b0;
    --secondary-color: #e5ecf1;
    --third-color: #0066b0;
    --gray: #444;
    --black: #141b2c;
}


* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Outfit", sans-serif;
}

a {
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
    color: var(--primary-color);
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

p {
    color: var(--gray);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 15px;
}

.sec-title {
    text-align: center;
    margin-bottom: 30px;
}
.sec-title.left {
    text-align: left;
}

.sec-title h2 {
    font-size: 44px;
    color: var(--black);
    font-weight: 600;
}
.sec-title .sub-title {
    font-size: 16px;
    color: var(--third-color);
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 2px;
    background: rgba(24, 78, 119, .1);
    padding: 10px;
    margin-bottom: 24px;
    display: inline-block;
}

.sec-title p {
    font-size: 18px;
    color: #363636;
    font-weight: 400;
}

/* 
.header {
    position: absolute;
    width: 100%;
    z-index: 9;
} */


/* -----------------
Navbar
--------------------*/

  
.navbar {
    padding: 0px 30px;
    background-color: #fff;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.5s;
    box-shadow: 0 -2px 18px 0 #0000001c;
}


.fixed-header {
    background-color: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


/* .navbar {
  padding: 0;
  background-color: #fff !important;
  border-bottom: 1px solid #e7e7e7;
} */

.navbar-brand {
    width: 300px;
}
.navbar-brand img {
    width: 100%;
}

/* Menu Lines */
.navbar .navbar-toggler {
    -webkit-box-shadow: none;
            box-shadow: none;
}
.navbar .navbar-toggler-icon {
    width: 24px;
    height: 0px;
    position: relative;
    padding: 0;
    float: left;
    margin: 14px 0;
    border-top: 2px solid var(--primary-color);
}
.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    display: block;
    border-top-width: 2px;
    border-top-style: solid;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: 300ms ease all;
    -o-transition: 300ms ease all;
    transition: 300ms ease all;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: -0.75px 1px;
    -ms-transform-origin: -.75px 1px;
    transform-origin: -0.75px 1px;
    border-top-color: var(--primary-color);
}
.navbar .navbar-toggler-icon::before {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
.navbar .navbar-toggler-icon::after {
    -webkit-transform: translateY(7px);
    -ms-transform: translateY(7px);
    transform: translateY(7px);
}


.navbar .navbar-collapse {
    position: relative !important;
}

.menu-opened {
    background-color: #fff !important;
    padding-bottom: 40px;
}

.menu-opened .navbar-toggler-icon,
.menu-opened .navbar-toggler-icon::before,
.menu-opened .navbar-toggler-icon::after,
.fixed-header .navbar-toggler-icon,
.fixed-header .navbar-toggler-icon::before,
.fixed-header .navbar-toggler-icon::after {
    border-color: #000;
}


.navbar .dropdown {
    position: relative;
}

.navbar-nav>li {
    padding: 0 40px 0 0;
}
.navbar-nav>li:last-child {
    padding-right: 0;
}

/* .navbar-nav>li:last-child {
    margin-right: 0;
} */

.navbar-nav li .nav-link {
    padding: 46px 0px !important;
    color: #000 !important;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    position: relative;
}
.fixed-header .navbar-nav li .nav-link {
    color: #000 !important;
}

.navbar-nav li .nav-link.active,
.navbar-nav li:hover .nav-link {
    color: var(--primary-color) !important;
}


.navbar .dropdown.active > a {
    color: var(--primary-color) !important;
}

.dropdown-menu li a:active,
.dropdown-menu li a {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    color: #000 !important;
    text-transform: capitalize;
    background: transparent !important;
    position: relative;
}

.dropdown-menu li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateX(60deg);
    border-radius: 4px;
    z-index: -1;
}

.dropdown-menu li a:after, 
.dropdown-menu li a:hover {
    color: #fff;
    transition: all .4s;
}

.dropdown-menu li a:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.dropdown-menu li a:hover:after {
    background: var(--primary-color);
}
.dropdown-menu li a:hover:after {
    transform: rotateX(0deg);
    background-color: var(--primary-color);
    border-radius: 4px;
}


.dropdown .dropdown-toggle::after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: -15px;
    border: none;
}


@media only screen and (min-width: 992px) {
    .dropdown .dropdown-menu {
        display: block;
    }

    .sub-dropdown:hover .sub-dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        position: absolute;
        left: 0;
        top: 50px;
        background: #fff;
        width: 250px;
        border-radius: 4px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
        padding: 10px;
        opacity: 0;
        visibility: hidden;
        top: 60px;
        transition: all .3s;
        transform: rotateX(60deg);
        background: #fff;
        box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
    }
    
    .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 80px;
        transition: all .3s;
        z-index: 99;
        transform: rotateX(0deg);
    }
}


.navbar-contact {
    margin-left: 30px;
}
.navbar-contact .social-icons {
    margin-top: 0;
}
.navbar-contact .social-icons li a {
    width: 30px;
    height: 30px;
    display: block;
    color: var(--primary-color);
    background-color: #e8e8f5;
    border-radius: 50px;
    text-align: center;
    line-height: 30px;
    -webkit-transition: 600ms ease all;
    -o-transition: 600ms ease all;
    transition: 600ms ease all;
}
.navbar-contact .social-icons li a:hover {
    background-color: var(--primary-color);
}
.navbar-contact .social-icons li a i {
    color: var(--primary-color);
    font-size: 14px;
}
.navbar-contact .social-icons li a:hover i {
    color: #fff;
}

.navbar-contact .all-btn.theme-btn1 {
    display: flex;
    align-items: center;
}

.navbar-contact .theme-btn-2 {
    display: flex;
    gap: 10px;
}
.navbar-contact .theme-btn-2 img {
    width: 32px;
}
.navbar-contact .theme-btn-2 a {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

.navbar-contact .theme-btn4 {
    margin-left: 16px;
}

.theme-button {
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 20px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    display: inline-block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--primary-color);
}

.theme-button span {
    display: inline-block;
    width: 12px;
    height: 20px;
    margin: 0 0 0 8px;
}

.theme-button:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background: #fff;
    top: 0;
    left: 0;
    z-index: -2;
    transition: all .4s ease-in-out;
    color: #000;
    border-radius: 4px;
}

.theme-button:hover:after {
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .4S ease-in-out;
    box-shadow: 0 2px 48px 0 rgba(35, 34, 34, .09);
    color: #000;
}

.theme-button:hover {
    color: var(--primary-color);
}



/* home-video */
.home-video {
    overflow: hidden;
}
.home-video #main-video {
    width: 100%;
    transform: scale(1.01);
}

/* -----------------
Banner Area
--------------------*/
.banner-slider {
    position: relative;
    z-index: 1;
}
.banner-slider .slide-item {
    position: relative;
    z-index: 1;
    /* padding-top: 165px; */
    /* padding-bottom: 65px; */
    /* height: 100vh; */
    overflow: hidden;
}
/* .banner-slider .slide-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #00213a;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    z-index: 1;
} */
.banner-slider .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    /* -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); */
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}
.banner-carousel .active .slide-item .image-layer {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}
.banner-carousel .content-box {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 35%;
    z-index: 5;
    padding: 0 0px;
    z-index: 999;
    width: 500px;
    height: 500px;
    background-color: #ffffffb7;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px;
    -webkit-animation: slider_ripple 3s linear infinite;
    animation: slider_ripple 3s linear infinite;
}

@keyframes slider_ripple {
    0% {
        box-shadow: 0 0 0 0 #ffffff4d, 0 0 0 20px #ffffff4d, 0 0 0 60px #ffffff4d, 0 0 0 120px #ffffff4d;
    }

    100% {
        box-shadow: 0 0 0 20px #ffffff4d, 0 0 0 60px #ffffff4d, 0 0 0 120px #ffffff4d, 0 0 0 180px #ffffff00;
    }
}
.banner-carousel .content-box .sub-title {
    position: relative;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-align: left;
    display: inline-block;
    border-radius: 24px;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .content-box .sub-title i {
    font-size: 5px;
    vertical-align: middle;
    margin-right: 3px;
    color: #fff;
}
.banner-carousel .active .content-box .sub-title {
    opacity: 1;
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box h2 {
    position: relative;
    display: block;
    font-size: 2.5vw;
    line-height: 2.5vw;
    font-weight: 700;
    padding:0px 0px 0px;
    text-align:left;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box h2 span {
    position: relative;
    display: block;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 1);
}
.banner-carousel .content-box .lower-box {
    position: relative;
    display: block;
    /* width: 650px; */
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .active .content-box .lower-box {
    opacity: 1;
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box .lower-box .text {
    position: relative;
    display: block;
    font-size: 1vw;
    line-height: 1.2vw;
    color: var(--black);
    margin-bottom: 31px;
    /* max-width: 360px; */
}
.banner-carousel .content-box .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.banner-carousel .content-box .wrapper .video-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
}
.banner-carousel .content-box .wrapper .video-box a {
    color: #fff;
}
.banner-carousel .content-box .wrapper .video-box .video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 15px;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.banner-carousel .content-box .wrapper .video-box .video-icon:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid #ffffff33;
    border-radius: 50%;
}
.banner-carousel .content-box .wrapper .video-box .video-icon .ripple, 
.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:before, 
.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 #ffffff99;
    -o-box-shadow: 0 0 0 0 #ffffff99;
    -webkit-box-shadow: 0 0 0 0 #ffffff99;
    box-shadow: 0 0 0 0 #ffffff99;
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}
.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}
.banner-carousel .content-box .wrapper .video-box .video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}
@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}
.banner-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 77px;
    height: 315px;
    margin-top: -150px;
}
.banner-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    padding: 16px 0;
    margin: 0 auto !important;
    height: 0;
    line-height: 0;
    border-radius: 16px;
}
.banner-slider .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.banner-slider .owl-dots .owl-dot:hover span, 
.banner-slider .owl-dots .owl-dot.active span {
    background-color: #fff;
}

.aniamtion-key-1 {
    animation-name: animation-1;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.aniamtion-key-2 {
    animation-name: animation-2;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.aniamtion-key-1, 
.aniamtion-key-2 {
    position: relative;
    animation-duration: 2s;
}

@keyframes animation-1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes animation-2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}



/* about-section */
.about-section {
    padding: 100px 0;
    background-image: url(../images/casestudy-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
}
.about-images .about-img {
    margin-bottom: 30px;
}
.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.about-textarea {
    padding: 0 0 0 70px;
}
.about-section .para-bg {
    position: relative;
    z-index: 2;
    border-radius: 1px;
    background: #e9edf4;
    padding: 16px 24px;
    margin-bottom: 20px;
}
.about-section .para-bg p {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}
.about-section .para-bg:after {
    position: absolute;
    content: "";
    background: var(--primary-color);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    width: 8px;
    transition: all .4s ease-in-out;
}
.about-section .para-bg:hover:after {
    width: 100%;
    z-index: -1;
}
.about-section .para-bg:hover p {
    color: #fff;
    opacity: .7;
    transition: all .5s ease-in-out;
}
.about-section .about-btn {
    margin-top: 45px;
}







/* .industries-section */
.industries-section {
    background-image: url("../images/service2-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}
img.elementoe5 {
    position: absolute;
    top: 0;
    right: 0;
}
img.elementor-7 {
    position: absolute;
    left: -100px;
    bottom: -18px;
}
.industries-section .sec-title h2 {
    padding: 0 320px;
}

.industries-section .item {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    transition: all .4s ease-in-out;
    background-color: #fff;
}
.industries-section .item .img-box {
    overflow: hidden;
}
.industries-section .item .img-box img {
    transition: all .4s ease-in-out;
}
.industries-section .item:hover .img-box img {
    transform: scale(1.1);
}
.industries-section .content {
    position: relative;
    z-index: 2;
}
.industries-section .content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    color: var(--black);
}

.industries-section .content p {
    font-size: 16px;
    font-weight: 400;
}
.industries-section .content .learn-more {
    text-transform: uppercase;
    margin-top: 32px;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    display: inline-block;
}




/* .industries-page-section */
.industries-page-section {
    background-image: url("../images/service2-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}
img.elementoe5 {
    position: absolute;
    top: 0;
    right: 0;
}
img.elementor-7 {
    position: absolute;
    left: -100px;
    bottom: -18px;
}
.industries-page-section .sec-title h2 {
    padding: 0 320px;
}

.industries-page-section .box {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    transition: all .4s ease-in-out;
    background-color: #fff;
}
.industries-page-section .box .img-box {
    overflow: hidden;
}
.industries-page-section .box .img-box img {
    transition: all .4s ease-in-out;
}
.industries-page-section .box:hover .img-box img {
    transform: scale(1.1);
}
.industries-page-section .content {
    position: relative;
    z-index: 2;
}
.industries-page-section .content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
    color: var(--black);
}

.industries-page-section .content p {
    font-size: 16px;
    font-weight: 400;
}
.industries-page-section .content .learn-more {
    text-transform: uppercase;
    margin-top: 32px;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    display: inline-block;
}




/* progress-section */
.progress-section {
    padding: 100px 0;
}
.progress-section .sec-title h2 {
    font-size: 40px;
}
.progress-section img {
    width: 100%;
    border-radius: 5px;
}
.progress-section .sec-title {
    margin-bottom: 20px;
}
.progress-section .inner {
    padding-right: 100px;
}
.progress-section .inner p {
    opacity: .8;
}
.progress-section .skills-set {
    margin-top: 30px;
}
.progress-section .skills-set .skillbar-title {
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
}

.progress-section .skills-set .skillbar .skill-bar-percent {
    color: var(--black);
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: -35px;
    font-size: 16px;
    font-weight: 600;
}

.progress-section .skillbar {
	position:relative;
	display:inline-block;
	margin:10px 0;
	width:100%;
	background:#ddd;
	height:10px;
	border-radius:20px;
	width:100%;
}

.progress-section .skillbar-bar {
	height:10px;
	width:0px;
    opacity: 1 !important;
    background-color: var(--primary-color);
	border-radius:20px;
	display:inline-block;
}
.progress-section .bottom-btn {
    margin-top: 20px;
}






/* counter-section */
.counter-section {
    background: var(--secondary-color);
    padding: 70px 0;
    position: relative;
    margin-bottom: 80px;
}
img.elementor-10 {
    position: absolute;
    top: 0;
    left: 0;
}
img.elementor-3 {
    position: absolute;
    right: 0px;
    bottom: -3px;
}
.counter-section .item {
    padding: 30px 15px;
    position: relative;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    transition: all .4s ease-in-out;
}
.counter-section .item:hover {
    background-color: var(--primary-color);
}
.counter-section .item .inner .number {
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-section .item .inner .number h3,
.counter-section .item .inner .number span {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 0.01em;
    line-height: normal;
}
.counter-section .item .inner h4 {
    color: #676a72;
    text-transform: capitalize;
    font-weight: 400;
    margin-top: 2px;
    font-size: 18px;
    line-height: normal;
}

.counter-section .item:hover .inner .number h3,
.counter-section .item:hover .inner .number span,
.counter-section .item:hover .inner h4 {
    color: #fff;
}





/* process-section */
.process-section {
    padding: 100px 0;
}
.process-section .sec-title {
    margin-bottom: 30px;
}
.process-section .item {
    position: relative;
    transition: all .4s ease-in-out;
    border-radius: 2px;
    background: #e9edf4;
    padding: 28px 20px;
    margin-bottom: 30px;
}
.process-section .item:hover {
    border-radius: 2px;
    background: #1a237e;
    transition: all .4s ease-in-out;
    transform: translateY(-10px);
}
.process-section .item .icon {
    background: #dce4ea;
    height: 64px;
    width: 64px;
    line-height: 64px;
    display: flex;
    text-align: center;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    position: absolute;
    justify-content: center;
    align-items: center;
}
.process-section .item:hover .icon {
    background: #fff;
    transition: all .4s ease-in-out;
}
.process-section .item .text {
    position: relative;
    transition: all .4s ease-in-out;
    padding-left: 100px;
    top: 0;
}
.process-section .item .text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    transition: all .4s ease-in-out;
}
.process-section .item:hover .text h3,
.process-section .item:hover .text p {
    color: #fff;
    transition: all .4s ease-in-out;
}
.process-section .inner {
    padding: 0 0 0 70px;
}

.process-section .inner .bottom-btn {
    margin-top: 40px;
}




/* case-study-section */
.case-study-section {
    position: relative;
    padding: 100px 0;
}
img.elementor-5 {
    position: absolute;
    top: -39px;
    left: -100px;
}
img.elementor-11 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.case-study-section .item {
    overflow-y: hidden;
    margin-bottom: 30px;
    position: relative;
    transition: all .4s ease-in-out;
}
.case-study-section .img-box {
    position: relative;
}
.case-study-section .img-box img {
    width: 100%;
}
.case-study-section .img-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    transition: .3s ease-in-out;
    border-radius: 2px;
    opacity: 0;
    background: #0c161d;
}
.case-study-section .item:hover .img-box:before {
    visibility: visible;
    opacity: .8;
    transition: all .4s ease-in-out;
}
.case-study-section .item .text {
    padding: 15px 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    bottom: 20px;
    border-radius: 5px;
    position: absolute;
    background: #fff;
    transition: all .4s ease-in-out;
    box-shadow: 0 9px 14px 0 #00000040;
}
.case-study-section .item .text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-bottom: 0px;
    transition: all .4s ease-in-out;
}
.case-study-section .item .text a {
    color: var(--primary-color);
    margin-top: 10px;
    font-weight: 700;
    transition: all .4s ease-in-out;
    text-transform: uppercase;
    text-align: center;
    display: block;
}
.case-study-section .item .text a span {
    transition: all .4s ease-in-out;
}
.case-study-section .item .text a:hover span {
    padding-left: 5px;
}
.case-study-section .item .text .inner {
    opacity: 0;
    height: 0;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: -4;
    overflow: hidden;
}
.case-study-section .item:hover .text .inner {
    height: 50px;
    transition: all .4s ease-in-out;
    z-index: 1;
    opacity: 1;
    position: relative;
    margin-top: 10px;
}




/* testimonials-section */
.testimonials-section {
    /* background-image: url("../images/casestudy-bg.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0 70px;
}
.testimonials-section .sec-title {
    margin-bottom: 20px;
}
.testimonials-section .item {
    border-radius: 4px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,.09);
    margin: 20px 20px;
}
.testimonials-section .item .stars {
    margin-bottom: 20px;
}
.testimonials-section .item .stars ul li {
    display: inline-block;
    color: #ff9c00;
}
.testimonials-section .item .stars ul li:last-child {
    color: #d8dae1;
}
.testimonials-section .item p {
    font-size: 18px;
}
.testimonials-section .item .info {
    margin-top: 25px;
    padding-top: 20px;
    display: flex;
    gap: 20px;
    border-top: 1px solid #00000024;
}
.testimonials-section .item .info .name h3 {
    font-size: 16px;
    font-weight: 600;
}
.testimonials-section .item .info .name h4 {
    font-size: 14px;
    font-weight: 400;
}




/* blog-section */
.blog-section {
    padding-bottom: 100px;
}
.blog-section .image {
    position: relative;
    overflow: hidden;
}
.blog-section .image img {
    width: 100%;
    transition: all .4s ease-in-out;
    border-radius: 5px;
}
.blog-section .inner {
    border-radius: 4px;
    background: #1a237e;
    padding: 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: calc(100% - 60px);
    transform: translateX(-50%);
    transition: all .4s ease-in-out;
}
.blog-section .inner:hover {
    bottom: 50px;
}
.blog-section .image:hover .img-box img {
    transform: scale(1.1);
}
.blog-section .inner .date-list {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.blog-section .inner .date-list img {
    object-fit: contain;
}
.blog-section .inner .date-list a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.blog-section .inner .date-list img {
    width: auto;
}
.blog-section .inner h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.blog-section .inner p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    opacity: .8;
}
.blog-section .inner .more-btn {
    color: #fff;
    margin-top: 35px;
    display: inline-block;
    font-weight: 700;
    transition: all .4s ease-in-out;
    text-transform: uppercase;
}
.blog-section .inner .more-btn span {
    transition: all .4s ease-in-out;
}
.blog-section .inner .more-btn:hover span {
    padding-left: 5px;
}
.blog-section .inner2 {
    background: #e9edf4;
    position: relative;
    bottom: 0;
    margin-bottom: 40px;
}
.blog-section .inner2:after {
    position: absolute;
    content: "";
    border-radius: 4px;
    background: #1a237e;
    width: 0;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    transition: all .4s ease-in-out;
}
.blog-section .inner2:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .4s ease-in-out;
}
.blog-section .inner2:hover {
    bottom: 10px;
}
.blog-section .inner2 .date-list a,
.blog-section .inner2 h2,
.blog-section .inner2 p,
.blog-section .inner2 .more-btn {
    color: var(--black);
}
.blog-section .inner2:hover .date-list a,
.blog-section .inner2:hover h2,
.blog-section .inner2:hover p,
.blog-section .inner2:hover .more-btn {
    color: #fff;
}
.blog-section .inner2:hover img {
    filter: brightness(40);
    transition: all .4s ease-in-out;
}


.readon2 {
    outline: none;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    letter-spacing: 1px;
}





.inner-banner {
    position: relative;
    z-index: 2;
}
.inner-banner .container {
    max-width: 1300px;
}
.inner-banner img {
    /* height: 500px; */
}
.inner-banner .inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.inner-banner .content-box {
    position: absolute;
    left: 0;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}
.inner-banner .content-box .caption-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2.5vw;
}
.inner-banner .content-box h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5vw;
}

/* cp-section */
.cp-section {
    padding: 100px 0;
    position: relative;
    z-index: 9;
}
.cp-section .images .img {
    margin-bottom: 30px;
}
.cp-section .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.cp-section .para-bg {
    position: relative;
    z-index: 2;
    border-radius: 1px;
    background: #e9edf4;
    padding: 16px 24px;
    margin-bottom: 20px;
}
.cp-section .para-bg p {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}
.cp-section .para-bg:after {
    position: absolute;
    content: "";
    background: var(--primary-color);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    width: 8px;
    transition: all .4s ease-in-out;
}
.cp-section .para-bg:hover:after {
    width: 100%;
    z-index: -1;
}
.cp-section .para-bg:hover p {
    color: #fff;
    opacity: .7;
    transition: all .5s ease-in-out;
}
.cp-section .about-btn {
    margin-top: 45px;
}





/* team-section */
.team-section {
    padding: 100px 0;
}
.team-section .item .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 100%;
}
.team-section .item .img-box .social-icons {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: 100%;
    height: calc(100% + 2px);
    padding: 30px;
    text-align: center;
    background-color: #f0f3f7;
    border-radius: 100%;
    outline: 1px solid #becadf;
    outline-offset: -20px;
    transform: scale(0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.team-section .item:hover .img-box .social-icons {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.team-section .item .info {
    padding-top: 15px;
}
.team-section .item .info h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.team-section .item .info p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}




/* certificates-section */
.certificates-section {
    padding: 100px 0;
    background-image: url(../images/casestudy-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
}
.certificates-section .item {
    overflow: hidden;
    border-radius: 0px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-bottom: 30px;
}
.certificates-section .item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #070725e8;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.certificates-section .item a:hover::before {
    opacity: 1;
    visibility: visible;
}
.certificates-section .item a::after {
    content: "\2b";
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.certificates-section .item a:hover::after{
    opacity: 1;
    visibility: visible;
}
.certificates-section .item img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.certificates-section .item:hover img {
    transform: scale(1.1);
}




/* certified-section */
.certified-section {
    padding: 100px 0;
    background-image: url(../images/certified-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
}
.certified-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #000000a1;
}
.certified-section .sec-title h2 {
    color: #fdc556;
}
.certified-section .content p {
    color: #fff;
}
.certified-section .row-2 {
    margin-top: 30px;
}
.certified-section .item .img-box {
    overflow: hidden;
}
.certified-section .item .img-box img {
    transition: 0.6s;
}
.certified-section .item:hover .img-box img {
    transform: scale(1.2);
}
.certified-section .item .text {
    margin-top: 20px;
}
.certified-section .item .text h3 {
    color: #fff;
}
.certified-section .item .text p {
    color: #ffffffbb;
    font-weight: 300;
}











/* events-section */
.events-section {
    padding: 100px 0;
    background-image: url(../images/casestudy-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
}
.events-section .row-2 {
    margin-top: 60px;
}
.events-section .sec-title p {
    text-align: center;
}
.events-section .item {
    overflow: hidden;
    border-radius: 0px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-bottom: 30px;
}
.events-section .item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #070725e8;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.events-section .item a:hover::before {
    opacity: 1;
    visibility: visible;
}
.events-section .item a::after {
    content: "\2b";
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.events-section .item a:hover::after{
    opacity: 1;
    visibility: visible;
}
.events-section .item img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.events-section .item:hover img {
    transform: scale(1.1);
}




/* careers-bottom */
.careers-bottom {
    padding: 100px 0;
}
.careers-bottom .content {
    padding-right: 30px;
}
.careers-bottom .content .sec-title {
    margin-bottom: 10px;
}
.careers-bottom .content .sec-title h2 {
    font-size: 32px;
}
.careers-bottom .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.careers-bottom .contact-info {
    display: flex;
    gap: 15px;
    position: relative;
    border-radius: 4px;
    background: #fff;
    padding: 24px 22px;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .09);
    transition: all .4s ease-in-out;
    margin-bottom: 20px;
}
.careers-bottom .contact-info .icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    flex: 0 0 auto;
}
.careers-bottom .contact-bg {
    background: #1a237e;
}
.careers-bottom .contact-info .text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}
.careers-bottom .contact-info .text p,
.careers-bottom .contact-info .text p a {
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    color: var(--black);
}




/* product-page-section */
.product-page-section {
    padding: 100px 0;
}
.cs-section .sec-title p {
    text-align: center;
}
.product-page-section .row-2 {
    margin-top: 60px;
}
.product-page-section .content h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 20px;
}
.product-page-section .content h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 15px;
}
.product-page-section .content .points {
    margin-bottom: 15px;
}
.product-page-section .content .points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--gray);
}
.product-page-section .content .points li::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 12px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 0;
}

.product-page-section .row-2 {
    margin-top: 60px;
}




/* .mass-bottom-section */
.mass-bottom-section {
    /* background-image: url("../images/service2-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
}
.mass-bottom-section .title h2 {
    color: var(--black);
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 30px;
    margin-top: 15px;
    text-align: center;
}

.mass-bottom-section .item {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    transition: all .4s ease-in-out;
    background-color: #e9edf4;
    min-height: 200px;
}
.mass-bottom-section .item:hover {
    background-color: var(--primary-color);
}
.mass-bottom-section .icon {
    position: relative;
    z-index: 3;
    background: #fff;
    height: 70px;
    width: 70px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    
}
.mass-bottom-section .icon img {
    filter: invert(23%) sepia(68%) saturate(4273%) hue-rotate(190deg) brightness(86%) contrast(105%);
}
.mass-bottom-section .content {
    position: relative;
    z-index: 2;
}
.mass-bottom-section .content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary-color);
}

.mass-bottom-section .content p {
    font-size: 16px;
    font-weight: 400;
}
.mass-bottom-section .content .learn-more {
    text-transform: uppercase;
    margin-top: 32px;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    display: inline-block;
}
.mass-bottom-section .item:hover h2,
.mass-bottom-section .item:hover p,
.mass-bottom-section .item:hover .learn-more {
    color: #fff;
}





.mass-section-two {
    padding: 100px 0;
    background-image: url("../images/service2-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.mass-section-two .content h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 15px;
}
.mass-section-two .content .points {
    margin-bottom: 15px;
}
.mass-section-two .content .points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--gray);
}
.mass-section-two .content .points li::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 12px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    background: #cfd0e7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 0;
}







.quality-section {
    padding: 100px 0;
}
.quality-section .img-box {
    position: sticky;
    top: 140px;
}
.quality-section .content h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 20px;
}
.quality-section .content h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 15px;
}
.quality-section .content .points {
    margin-bottom: 15px;
}
.quality-section .content .points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--gray);
}
.quality-section .content .points li::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 12px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    background: #cfd0e7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 0;
}









/* ----------------------
Contact Section
------------------------*/
.contact-section .wrap {
    padding: 60px 60px 60px 60px;
    background: #ffffff;
}
.contact-section {
    background: #f9f9f9;
    padding: 100px 0;
}

.contact-section .contact-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-section .contact-form {
    padding: 40px;
    border-radius: 30px;
}
.contact-section .first-input label {
    font-size: 18px;
    font-weight: 600;
}
.contact-section .first-input {
    margin-bottom: 24px;
}
.contact-section .first-input input,
.contact-section .first-input textarea,
.contact-section .first-input select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 16px;
    outline: none;
}
.textarea textarea {
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    background: #fff;
    outline: none;
    width: 100%;
    padding: 16px;
    margin-top: 0px;
    height: 120px;
}




.contact-form fieldset {
    margin-bottom: 2em;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
}

.contact-form button {
    margin-top: 0px;
    font-size: 16px;
    color: #fff;
    background-color: #070F3A;
    padding: 17px 30px 17px 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    display: block;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form button:hover {
    background-color: var(--primary-color);
}

.contact-form textarea {
    padding: 20px;
    height: 120px;
}

.contact-form::-webkit-input-placeholder {
    /* Edge */
    color: #cacaca;
}

.contact-form:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #cacaca;
}

.contact-form::-moz-placeholder {
    color: #cacaca;
}

.contact-form::-ms-input-placeholder {
    color: #cacaca;
}

.contact-form::placeholder {
    color: #cacaca;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}

.contact-section {
    background-image: url("../images/service2-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact-section .contact-wrap {
    border-radius: 4px;
    background: #fff;
    padding: 48px 32px;
    margin-bottom: 50px;
}
.contact-section .contact-wrap h2 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
}

.contact-section .contact-wrap .nav-tabs .nav-link {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 30px;
}
.contact-section .contact-wrap .nav-tabs .nav-link.active {
    color: var(--primary-color);
}
.contact-section .contact-wrap .tab-content {
    padding-top: 30px;
}

.contact-section .contact-box {
    /* background-color: #fff; */
    height: 100%;
}

.contact-section .contact-box .sec-title > * {
    color: #fff;
}

.contact-section .contact-box .address-box {
    display: flex;
    margin-bottom: 35px;
}

.contact-section .contact-box .address-box .icon {
    margin-right: 25px;
    width: 40px;
    height: 40px;
}

.contact-section .contact-box .address-box .text span {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}
.contact-section .contact-box .address-box .text p {
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
.contact-section .contact-box .address-box .text a {
    color: #ffffff;
}

.contact-section .social-wrap {
    margin-top: 30px;
}
.contact-section .social-wrap .social-icons {
    margin-top: 10px;
}

.contact-section .contact-info {
    display: flex;
    gap: 20px;
    position: relative;
    border-radius: 4px;
    background: #fff;
    padding: 24px 22px;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .09);
    transition: all .4s ease-in-out;
    margin-bottom: 20px;
}
.contact-section .contact-info .icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    margin-bottom: 10px;
}
.contact-section .contact-bg {
    background: #1a237e;
}
.contact-section .contact-info .text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}
.contact-section .contact-info .text p,
.contact-section .contact-info .text p a {
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    color: var(--black);
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
}
.contact-section .contact-bg .text h3,
.contact-section .contact-bg .text p,
.contact-section .contact-bg .text a {
    color: #fff !important;
}

img.elementor13 {
    position: absolute;
    bottom: 0;
    left: 0;
}
img.elementor14 {
    position: absolute;
    top: -65px;
    right: 0px;
}






/* call-to-action */
.call-to-action {
    padding: 40px 0;
    background-color: var(--primary-color);
}
.call-to-action .sec-title {
    margin-bottom: 0;
}
.call-to-action .sec-title h2 {
    color: #fff;
    margin-bottom: 10px;
}
.call-to-action .sec-title p {
    color: #fff;
    opacity: 0.8;
    text-align: left;
    font-size: 18px;
}
.call-to-action .button-holder {
    float: right;
}
.call-to-action .theme-button {
    background: #ffffff;
    color: #000000;
    border: 1px solid #fff;
}
.call-to-action .theme-button:after {
    background: var(--primary-color);
}
.call-to-action .theme-button:hover {
    color: #fff;
}





/* -----------------
Footer Section
--------------------*/
footer {
    background-color: #003f6c;
}


footer .footer-content {
    padding: 70px 0;
}

footer .widget h2 {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
    margin-right: 15px;
    padding-bottom: 0px;
    position: relative;
}

footer .widget p {
    color: #e3e3e3;
    margin: 0;
}
footer .widget-about {
    padding-right: 20px;
}
footer .widget-about .logo-box {
    margin-bottom: 20px;
    width: 100%;
}
footer .widget-about h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
footer .widget-about p {
    text-align: justify;
    font-weight: 400;
}

footer .widget-about .social-icons li a:hover {
    transform: translateY(-5px);
}

footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    margin-bottom: 0;
}

footer .widget-links .nav-links ul li a {
    color: #e3e3e3;
    font-size: 16px;
    padding: 7px 0;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

/* footer .widget-links .nav-links ul li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    padding-right: 10px;
    color: #7ed200;
    font-size: 12px;
} */

footer .widget-links .nav-links ul li a:hover {
    opacity: 0.8;
    padding-left: 10px;
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    color: #fff;
    padding-bottom: 30px;
    padding-left: 30px;
}
footer .widget-contact .contact-info ul li:first-child {
    align-items: flex-start;
}

footer .widget-contact .contact-info ul li i {
    position: absolute;
    left: 0;
    width: 20px;
    height: 40px;
    color: #fff;
    font-size: 18px;
    margin-right: 0px;
    text-align: center;
    border-radius: 60px;
    line-height: 37px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
footer .widget-contact .contact-info ul li:hover i {
    transform: scale(1.3);
    color: #8082e9;
}

footer .widget-contact .contact-info ul li p {
    display: -ms-grid;
    display: grid;
    text-align: left;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a {
    color: #e3e3e3;
    font-size: 18px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

/* footer .widget-contact .contact-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
} */

/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    padding: 36px 0;
    border-top: 1px solid #ffffff24;
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #fff;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}

.social-icons {
    margin-top: 30px;
    margin-bottom: 0px;
}

.social-icons li {
    display: inline-block;
    margin: 0 5px;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    display: block;
    background-color: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: 600ms ease all;
    -o-transition: 600ms ease all;
    transition: 600ms ease all;
}
.social-icons li a:hover {
    background-color: #fff;
}
.social-icons li a:hover i {
    color: var(--primary-color);
}

.social-icons li a i {
    color: #fff;
    font-size: 16px;
}

/* ----------------------
Go To Top
------------------------*/

/* ----------------------
Go To Top
------------------------*/
.scroll-top {
    width: 45px;
    height: 45px;
    line-height: 40px;
    border: none;
    position: fixed;
    bottom: 10px;
    right: 0;
    font-size: 22px;
    border-radius: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background-size: auto 200%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.scroll-top .fa {
    color: #fff;
}

.scroll-top:hover {
    background: var(--secondary-color);
}


.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top span {
    color: #fff;
}

.scroll-top:hover span {
    color: var(--primary-color);
}


.whatsapp-chat-icon {
    border: none;
    position: fixed;
    bottom: 105px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.whatsapp-chat-icon.show {
    opacity: 1;
    visibility: visible;
}





.captcha-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00;
    font-size: 16px !important;
    font-weight: 500 !important;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}



@media only screen and (max-width: 1366px) {
    .banner-carousel .content-box {
        width: 400px;
        height: 400px;
    }
    .sec-title h2 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 1199px) {
    .navbar-contact {
        margin-left: 0;
    }
    .navbar-contact .all-btn.theme-btn1 {
        display: none;
    }
    .navbar-contact .social-icons {
        display: none;
    }
    .about-textarea {
        padding: 0 0 0 0px;
        margin-top: 50px;
    }
    .progress-section .inner {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .quality-section .content {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-collapse {
        height: 70vh;
        overflow-y: scroll;
    }
    .navbar-nav {
        padding-top: 50px;
    }
    .dropdown .dropdown-toggle::after {
        position: relative;
        right: -10px;
        top: 5px;
    }
    .navbar-nav>li {
        padding: 0 0px 0 0;
    }
    .navbar-nav li .nav-link {
        padding: 15px 0px !important;
    }
    .navbar-contact {
        margin-left: 0;
        margin-top: 20px;
    }
    .welcome-area {
        padding: 160px 0 120px;
        overflow: hidden;
    }
    .welcome-text {
        margin-bottom: 50px;
    }
    img.ecommer {
        left: 0;
        position: relative;
        top: 0;
        width: 100%;
        height: 100%;
        margin-top: 30px;
        object-fit: cover;
    }
    .about-images img {
        margin-bottom: 30px;
    }
    .about-textarea {
        padding: 0 0 0 0px;
    }
    .industries-section .sec-title h2 {
        padding: 0 0px;
    }
    .progress-section .inner {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .counter-section .item {
        margin-bottom: 30px;
    }
    .process-section .inner {
        padding: 0 0 0 0px;
    }
    .team-section .item {
        margin-bottom: 30px;
    }
    .certificates-section .item {
        margin-bottom: 30px;
    }
    .product-page-section .content {
        margin-top: 30px;
    }
    .contact-section .contact-box {
        margin-bottom: 50px;
    }
    .call-to-action .button-holder {
        float: none;
        margin-top: 20px;
    }
    footer .widget {
        margin-bottom: 40px;
    }
    .footer-bottom .copyrights,
    .footer-bottom .design {
        float: none;
    }
    .footer-bottom .copyrights p,
    .footer-bottom .design p {
        text-align: center;
    }
}



@media only screen and (max-width: 767px) {
    .navbar-brand {
        width: 200px;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-textarea {
        margin-top: 10px;
    }
    .welcome-area .sec-title h2 {
        font-size: 45px;
        line-height: 54px;
    }
    .sec-title h2 {
        font-size: 34px;
        line-height: 42px;
    }
    .banner-carousel .content-box {
        width: 340px;
        height: 170px;
        padding: 20px;
    }
    .banner-carousel .content-box h2 {
        margin-bottom: 10px;
    }
    .banner-carousel .content-box .lower-box .text {
        font-size: 1.5vw;
        line-height: 1.5vw;
    }
    .certified-section::before {
        background-color: #000000e0;
    }
    .certified-section .item {
        margin-bottom: 30px;
    }

    .contact-section .contact-info {
        flex-direction: column;
    }
    .contact-section .contact-info .icon {
        width: 40px;
        height: 40px;
    }
    footer .widget-about .logo-box {
        width: 100%;
    }

}
