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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Helvetica'; */
    background: #fff;
    overflow-x: hidden;
}


/* @font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.eot');
    src: url('../fonts/Helvetica.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Helvetica.woff2') format('woff2'),
    url('../fonts/Helvetica.woff') format('woff'),
    url('../fonts/Helvetica.ttf') format('truetype'),
    url('../fonts/Helvetica.svg#Helvetica') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica';
    src: url('Helvetica-Light.eot');
    src: url('Helvetica-Light.eot?#iefix') format('embedded-opentype'),
    url('Helvetica-Light.woff2') format('woff2'),
    url('Helvetica-Light.woff') format('woff'),
    url('Helvetica-Light.ttf') format('truetype'),
    url('Helvetica-Light.svg#Helvetica-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica';
    src: url('Helvetica-LightOblique.eot');
    src: url('Helvetica-LightOblique.eot?#iefix') format('embedded-opentype'),
    url('Helvetica-LightOblique.woff2') format('woff2'),
    url('Helvetica-LightOblique.woff') format('woff'),
    url('Helvetica-LightOblique.ttf') format('truetype'),
    url('Helvetica-LightOblique.svg#Helvetica-LightOblique') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
} */


/* @font-face {
    font-family: 'Helvetica S';
    src: url('../fonts/HelveticaS-Regular.eot');
    src: url('../fonts/HelveticaS-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaS-Regular.woff2') format('woff2'),
        url('../fonts/HelveticaS-Regular.woff') format('woff'),
        url('../fonts/HelveticaS-Regular.ttf') format('truetype'),
        url('../fonts/HelveticaS-Regular.svg#HelveticaS-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */
@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/NeutraText-Bold.eot');
    src: url('../fonts/NeutraText-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NeutraText-Bold.woff2') format('woff2'),
    url('../fonts/NeutraText-Bold.woff') format('woff'),
    url('../fonts/NeutraText-Bold.ttf') format('truetype'),
    url('../fonts/NeutraText-Bold.svg#NeutraText-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/NeutraText-Book.eot');
    src: url('../fonts/NeutraText-Book.eot?#iefix') format('embedded-opentype'),
    url('../fonts/NeutraText-Book.woff2') format('woff2'),
    url('../fonts/NeutraText-Book.woff') format('woff'),
    url('../fonts/NeutraText-Book.ttf') format('truetype'),
    url('../fonts/NeutraText-Book.svg#NeutraText-Book') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #262262;
    --primary-color: #009BDB;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2;
    color: var(--black);
    font-family:
            'Poppins', sans-serif;
}

h1,
h2,
h3,
h4 {
    color: #000;
    font-family: 'Neutra Text';
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: #f2fafd;
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
    background: var(--primary-color);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    padding: 0.73em 1.87em;
    border-radius: 50px;
    line-height: normal;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.themeBtn i {
    position: absolute;
    right: -1.2rem;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s ease;
    background: var(--primary-color);
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}
.themeBtn:hover {
    background: #009bdb;
    color: #fff;
}

.themeBtn:hover i{
    background: #141c4f;
}
/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */

/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    top: 0;
    padding:2rem 0;
}


.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .dropdown li {
    min-width: 180px;
    position: relative;
    list-style: none;
}

.navbar .dropdown ul li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown > a:after {
    content: '\f0d7';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    padding-left: 8px;
    color: var(--primary-color);
}

/* navigation css */

/* slider css */

.mainSlider {
    background: url(../images/slidebg.png) no-repeat top center/ cover;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.homeSlider .slide-inner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
}
.homeSlider.swiper-container .swiper-slide {
    /* overflow: hidden; */
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideContent {
    text-align: left;
}



.mainSlider h2 {
    margin: 0 0 1rem;
    font-size: 4.625rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 0 6px #00000057;
}



.headingOne {
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    margin: 0 0 1rem;
}

.headingTwo {
    font-size: 7.5rem;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}

.headingThre {
    font-size: 2.8125rem;
    font-weight: 500;
    color: var(--white);
}

.topLogo {
    padding: 10px 0;
}

.topLogo .clrBtn {
    background: var(--primary-color);
}

.topLogo .d-flex {
    justify-content: flex-end;
    gap: 1rem;
}

.sliderSocial {
    position: absolute;
    left: 4rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    flex-direction: column;
    gap: 2rem;
}

.sliderSocial li a {
    font-size: 1.2rem;
    color: var(--white);
}

.slideImg {
    position: relative;
    z-index: 1;
}

.slideImg .vector {
    /* position: absolute; */
    /* z-index: -1; */
    /* top: -113px; */
    /* left: -5rem; */
}

.slideContent h5 {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin: 0 0 10px;
    color: var(--white);
}

.mainSlider h2 span {
    font-weight: bold;
}

.mainSlider p {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.4;
    padding-right: 3rem;
    margin: 0 0 1.8rem;
}

.mainSlider h4 {
    font-size: 1.375rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    margin: 0 0 1.5rem;
}

.mainSlider .d-flex {
    gap: 1.5rem;
    align-items: center;
}

.mainSlider .d-flex span {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Neutra Text';
    gap: 0.9rem;
}

.mainSlider .d-flex span a {
    height: 65px;
    width: 65px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    background: var(--theme-color);
    border-radius: 100%;
    margin-right: 0;
    position: relative;
    z-index: 1;
    border: 4px solid rgb(38 34 98 / 50%);
}
.mainSlider .d-flex span a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: var(--theme-color);
    animation: anscale 1s infinite linear;
    z-index: -1;
}
@keyframes anscale {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}
/* slider css */

/*.aboutCompany {*/
/*    padding-top: 0;*/
/*}*/
.aboutCompany .heading {
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}
.aboutCompany .title {
    border-right: 1px solid rgb(112 112 112 / 50%);
}
.aboutCompTitle p {
    color: var(--black);
    font-size: 1.25rem;
    margin: 0 0 1.8rem;
}
.aboutCompTitle {
    padding-left: 1rem;
}
.serviceSec {
    /* padding-top: 0;
    padding-bottom: 0; */
    background: url(../images/slidebg.webp) no-repeat bottom center/ cover;
    background-position: center bottom;
    padding-bottom: 18rem;
}

.subHeading {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    border-bottom: transparent;
    margin: 0 0 1rem;
    font-family: 'Neutra Text';
}
.heading {
    margin: 0 0 1.5rem;
    font-size: 3.875rem;
    line-height: 1;
    text-transform: uppercase;
}
.heading span {
    font-weight: bold;
}
.serviceBox {
    padding: 2rem 1.5rem;
    background: #fff;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 10px;
    text-align: center;
    box-shadow: -0.42px 3.98px 68px rgb(200 200 200 / 35%);
}
.serviceBox h2 {
    font-size: 2rem;
    margin: 1.2rem 0 0.8rem;
    color: #03213B;
}
.serviceBox h2 span {
    font-weight: bold;
}
.serviceBox p {
    font-size: 1rem;
    line-height: 1.9;
    color: #6E727D;
    margin: 0 0 2.5rem;
}
.serviceBox .themeBtn {
    position: absolute;
    bottom: -1.7rem;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
}
.serviceSlider .swiper-slide-next .serviceBox {
    box-shadow: 0 3px 20px rgb(0 0 0 / 8%);
}
.serviceSlider .swiper-slide-next .serviceBox a {
    opacity: 1;
}
.serviceSlider .swiper-slide.swiper-slide-next .serviceBox {

    transform: translateY(-40px);
}
.serviceSlider .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    background: transparent;
    opacity: 1;
    position: relative;
    text-align: center;
    border: 1px solid transparent;
}

.serviceSlider .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 16px;
    height: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    background: var(--primary-color);
}

.serviceSlider .swiper-pagination-bullet-active {
    border-color: var(--theme-color);
}

.serviceSlider .swiper-pagination-bullet-active:before {
    background: var(--theme-color);
}
.serviceSlider {
    padding: 4rem 0 6rem;
}
.industryImg {
    text-align: right;
}

.industryImg .slideImg img+img {
    position: absolute;
    right: -5rem;
}

.slideImg:before {
    content: '';
    position: absolute;
    left: -15px;
    width: 90%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    z-index: -1;
}
.industryContent .subHeading {
    margin: 0 0 0.5rem;
}

.industryContent .heading {
    margin: 0 0 1.2rem;
    line-height: 1.1;
}

.industryContent p {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--black);
    font-weight: 400;
    padding-right: 0;
    margin: 0 0 1.5rem;
}

.industryContent div {
    display: flex;
    gap: 3rem;
    margin-left: 23px;
}
.industryContent ul li {
    list-style: disc;
    font-size: 1.375rem;
    color: var(--primary-color);
}
.industryContent ul li a {
    font-size: 1.375rem;
    color: var(--primary-color);
    font-family: 'Neutra Text';
    font-weight: 500;
}

.industryContent ul li + li {
    margin: 9px 0 0;
}

.industryContent .d-flex {
    align-items: center;
    gap: 4rem;
    margin-top: 1.7rem;
    margin-left: 0;
}

.number {
    font-size: 40px;
    color: var(--black);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.number i {
    color: var(--primary-color);
}

.aboutimg figure {
    position: relative;
    overflow: hidden;
    margin: 0 -8px;
}

.aboutimg figure:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/abtimgvector.webp) no-repeat;
    width: 558px;
    height: 545px;
}

.playIcon {
    width: 144px;
    height: 144px;
    border: 1px solid #141C4F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: 2.5rem;
    right: 0;
    background: var(--theme-color);
    color: var(--white);
    font-size: 1.3rem;
}

.playIcon:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 20px solid #fff;
    border-radius: 50%;
}

.aboutSec {
    position: relative;
    padding-top: 3rem;
}

.aboutSec .industryContent p {
    padding-right: 0;
    font-size: 1.125rem;
    color: #828282;
    line-height: 2;
    margin: 0 0 2rem;
}

.circleLeftImg {
    position: absolute;
    top: -54%;
    left: -40%;
}

.testimonialSec {
    background: url(../images/slidebg.webp) no-repeat bottom center/ cover;
    background-position: center bottom;
    padding-bottom: 18rem;
}
.testimonialSec .title p {
    font-size: 1rem;
    margin: 0 0 1.7rem;
}
.reviewBox {
    background: #fff;
    box-shadow: 0 3px 35px rgb(0 0 0 / 5%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    transition: all 0.4s ease;
}
.reviewBox p {
    font-size: 1.125rem;
    color: #686566;
    font-weight: 400;
    margin: 1.5rem 0 3rem;
}

.reviewSlider {
    margin-right: -18rem;
    padding: 3rem 0;
}

.reviewBox i {
    color: var(--primary-color);
    font-size: 3.5rem;
    transition: all 0.4s ease;
}

.user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user figure {
    position: relative;
    z-index: 1;
}

.user figure:before {
    content: '';
    position: absolute;
    left: 3px;
    right: 0;
    bottom: -3px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
}

.user span {
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    width: 50px;
}
.partnerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F9F9;
    border-radius: 25px;
    padding: 3.6rem 0;
    margin-bottom: 2rem;
    height: 236px;
}
.partnerSec {
    padding-top: 0;
}



.careerSec {
    background-image: url("../images/careerBg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10rem 0 7rem;
}

.careerSec h2 {
    font-size: 3.6rem;
    color: #fff;
    text-transform: capitalize;
}

.careerSec h2 span {
    font-weight: bold;
}

.careerSec p {
    color: #fff;
}

.careerContnt {
    margin-left: 6rem;
}

/*Footer CSS Start*/
.quickList h2 {
    font-size: 1.375rem;
    text-transform: capitalize;
    color: #34384B;
    margin: 0 0 1.5rem;
}

.quickList h2 span {
    font-weight: bold;
}

.linksSec {
    display: flex;
    gap: 4rem;
}

.quickList ul li a {
    font-size: 1.125rem;
    line-height: 2.3;
    color: #828282;
    font-weight: 400;
}

.quickList ul li a:hover {
    color: #009bdb;
}

.calFoter ul li span {
    font-size: 1.125rem;
    color: #555555;
}

.calFoter ul li i {
    font-size: 2rem;
    color: #009bdb;
}

.calFoter ul li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.calFoter ul li a {
    font-size: 1.625rem;
    color: var(--theme-color);
    font-weight: bold;
}

.callInfo {
    font-size: 1.125rem !important;
    color: #555555 !important;
    font-weight: 500 !important;
}

.copyRight p {
    text-align: center;
    font-size: 15px;
    margin: 0;
    color: #828282;
}

.copyRight {
    border-top: 1px solid #7070703b;
    /* padding-top: 1rem; */
    margin-top: 4rem;
    padding: 2rem 0;
}

footer {
    padding-top: 6rem;
    background: #f2fafd;
}
.socailIcon {
    display: flex;
    gap: 3.5rem;
    margin-top: 2rem;
}

.socailIcon  li a{
    background-color: transparent;
    /* width: 50px; */
    /* height: 50px; */
    color: #707070;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}
.socailIcon  li a i {
}
.socailIcon  li a:hover{
    background-color: #009bdb;
    color: var(--white);
    border-color: #009bdb;
}
.serviceSlider .swiper-slide.swiper-slide-next .serviceBox .themeBtn {
    background: var(--theme-color);
}
.drkClr {
    background: var(--theme-color);
}
.helpImg {
    text-align: center;
}
.helpImg h2 {
    font-size: 1.875rem;
    color: #34384B;
    font-weight: bold;
    margin: 1.2rem 0 0.7rem;
}
.helpImg p {
    font-size: 15px;
    color: #828282;
    font-weight: 500;
    margin: 0 1rem 1rem;
    line-height: 1.6;
}
.helpImg .themeBtn {
    font-size: 1rem;
    font-weight: 500;
}
.quickList {
    display: table;
    margin: auto;
}
footer .col-md-3 {
    border-right: 1px solid #CACACA;
}
footer .col-md-3:last-child {
    border: 0;
}
.copyRight .col-md-3 {
    border: 0;
}
.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.copyRight ul li a {
    font-size: 15px;
    color: #828282;
    border-right: 1px solid;
    display: inline-block;
    padding: 0 0.9rem;
}
.foterContent p {
    font-size: 1rem;
    color: #828282;
    margin: 2rem 0 0;
}
.copyRight ul li:last-child a {
    border: 0;
    padding-right: 0;
}
/*Footer CSS End*/


/* inner pages css start */

.inerBanner {
    background: url(../images/inerbaner.png) no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 834px;
    display: flex;
    align-items: center;
}
.inerHeading {
    font-size: 5.625rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
}
.abtPage .row+.row {
    margin-top: 1rem;
}
.missionSec {
    background: url(../images/slidebg.webp) no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding: 6rem 0 20rem;
}
.misionContent p {
    line-height: 2;
}
.misionImg {
    border: 5px solid var(--primary-color);
    border-radius: 50%;
}
.misionImg img {
    width: 100%;
}
.misionImg.shadow.whitborder {
    border-color: #FFFFFF;
}
.industryContent.srvcpgContent p {
    line-height: 2;
}
.industryContent.srvcpgContent p+p {
    margin: 0;
}
.industryContent.misionContent .heading {
    line-height: 1.1;
}
.inerSercice {
    background: url(../images/doubleshape.png) no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    padding: 13rem 0 10rem;
}
.servicePage {
    padding-bottom: 0;
}
.testimonialPage .reviewBox {
    border: 1px solid #E5E5E5;
    box-shadow: none;
    margin-bottom: 2rem;
}
.testimonialPage .reviewBox:hover {
    box-shadow: 0 8px 6px rgb(154 154 154 / 16%);
}
.testimonialPage .reviewBox:hover i {
    color: var(--theme-color);
}


.contact-section {
    padding: 7.5rem 0 2rem;
}
.contact-form textarea,
.contact-form input {
    width: 100%;
    background-color: #F8F8F8;
    height: 64px;
    border-radius: 50px;
    border: 1px solid rgb(225, 225, 225);
    padding-left: 25px;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
}

.contact-form textarea {
    height: 212px;
    padding-top: 20px;
    resize: none;
    margin-bottom: 1rem;
}



.contact-info-sec {
    padding-top: 50px;
}

.contact-form input[type="submit"] {
    background-color: var(--theme-color);
    color: var(--white);
    line-height: 1;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    width: fit-content;
    max-width: 225px;
    font-weight: 600;
    padding: 1em 1.5em;
}

.contact-form input[type="submit"]:hover {
    color: var(--white);
    background-color: var(--theme-blue);
}

.contact-section .sec-heading {
    color: var(--black);
    text-align: left;
}
.input-field {
    position: relative;
}
.input-field span {
    position: absolute;
    color: #a9a9a9;
    font-size: 24px;
    left: 40px;
    top: 15px;
}
.contact-section p {
    color: var(--text-color);
    text-align: left;
}
.info-sec {
    display: flex;
    align-items: center;
}
.info-io {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #27AAE1;
    color: var(--white);
    margin-right: 1.5rem;
    box-shadow: 0 0 0px 6px rgb(39 170 225 / 56%);
    flex-shrink: 0;
}
.info-sec h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    margin: 0 0 5px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
.info-sec p {
    margin-bottom: 0;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 26px;
}
.contact-section .sec-heading {
    color: #000;
    text-align: left;
    font-size: 3.4375rem;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 2.5rem;
}
.info-sec p a {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 500;
}
.cntctHeading .info-sec + .info-sec {
    margin-top:4.5rem;
}
.cntctForm .sec-heading {
    margin: 0 0 0.5rem;
}
.cntctForm p {
    font-size: 1rem;
    color: #828282;
    margin: 0 0 2.1rem;
}
.cntctForm .themeBtn1 {
    border: 0;
}
.contact-map {
    margin-bottom: -15px;
}
.contact-form #other {
    padding-left: 25px;
}
.contact-form .themeBtn {
    border: 0;
}
.mapSec {
    /* margin-bottom: -9rem; */
    position: relative;
    z-index: -1;
}
.mapSec iframe {
    filter: grayscale(100%);
}
.chkBox input {
    margin: 0;
    width: 20px;
    height: 20px;
}
.chkBox label {
    margin: 0;
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 600;
    width: 80%;
}
.chkBox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.5rem;
}
.contact-form select {
    width: 100%;
    background-color: #F8F8F8;
    height: 64px;
    border-radius: 50px;
    border: 1px solid rgb(225, 225, 225);
    padding-left: 25px;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    color: rgb(0 0 0 / 47%);
}
.opturntyPage {
    background: url(../images/slidebg.webp) no-repeat center bottom;
    padding-top: 0;
    padding-bottom: 14rem;
}
.opturntyPgcontent {
    padding-top: 4rem;
}

.opturntyPgcontent p {
    margin: 0 0 2rem;
}
.insightMain {
    position: relative;
    z-index: 1;
}
.insightMain:before {
    content: '';
    position: absolute;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 155 219 / 5%);
    z-index: -1;
}
.insightPage {
    background: url(../images/slidebg.webp) no-repeat center bottom;
    padding-bottom: 17rem;
}
.insightPgtwo {
    padding-top: 2rem;
    padding-bottom: 7rem;
}
.insightPgtwo .slideImg:before {
    display: none;
}
.industryLAst {
    padding-bottom: 5rem;
}
.themeBtn:hover {
    background: var(--black);
    color: var(--white);
}
.aboutCompTitle h4 {
    font-size: 2.2rem;
    font-weight: 600;
}
/* inner pages css end */