* {
    margin: 0px;
    box-sizing: border-box;
}
@font-face {
    font-family: 'neutraface_textbold';
    src: url('../css/fontawesome-free-6.4.2-web/css/neutraface-text-bold-italic.otf') format('woff2');
    font-weight: 700;
    font-style: normal;
}

body {

    font-family: 'Rubik', sans-serif;
    color: #303030;
    font-size: 16px;

}

p {
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    line-height: 24px;
    color: #303030;
}

a {
    font-size: 16px;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'poppins', sans-serif;
    line-height: 24px;
    color: #303030;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    font-size: 17px;
    font-family: 'Rubik', sans-serif;
    line-height: 24px;
    color: #303030;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', serif;
    margin: 0px;
    color: #0a0909;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pb-100 {
    padding-bottom: 100px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width:1417px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 15px;
    }
}


.defaultBtn.centered {
    text-align: center;
}

.defaultBtn a,
.defaultBtn button {
    padding: 8px 19px;
    border-radius: 30px;
    background: linear-gradient(180deg, #290090, #2d07ba);
    color: #fff;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 42px;
}

.defaultBtn a i,
.defaultBtn button i {
    margin-left: 5px;
}

.defaultBtn a::after,
.defaultBtn button::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #00b7a8;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.defaultBtn a span,
.defaultBtn button span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.defaultBtn a:hover span,
.defaultBtn button:hover span {
    color: #ffffff;
}

.defaultBtn a:hover:after,
.defaultBtn button:hover:after {
    width: 120%;
}

.defaultBtn.light2 a {
    background: #bb6910;
    color: #ffffff;
}

.defaultBtn.light2 a {
    background: #bb6910;
    color: #ffffff;
}

.homeAboutPara .defaultBtn {
    margin-top: 30px;
}


.headerSection {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    background-color: white;
    z-index: 5;
    padding: 0px 0px;
    transition: 0.5s ease-in-out;
}

.headerSection.scroll-down {
    top: -130px;
    position: fixed;
}

.headerSection.scroll-up {
    position: fixed;
    top: 0px;
    width: 100%;
    background: #ffffffdb;
    backdrop-filter: blur(5px);
}

.headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoSection {
    width: 250px;
}

.logoSection img {
    width: 100%;
}

.headerNav {
    display: flex;

}

.headerMenu {
    display: flex;
}

.headerMenu>li {
    padding: 22px 20px;
}

.headerMenu>li>a {
    padding: 26px 0px;
    position: relative;
}

.headerMenu>li>a::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: 20px;
    background: #290090;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.headerMenu>li a:hover:after,
.headerMenu>li a.active:after {
    left: 0;
    right: auto;
    width: 100%;
}

.headerMenu>li a:hover,
.headerMenu>li a.active {
    color: #2b06b6;
}

.headerMenu>li.hasSub {
    position: relative;
}

.headerSubNav {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;

}

.headerMenu>li.hasSub:hover .headerSubNav {
    visibility: visible;
    opacity: 1;
    top: 77%;
    margin-top: 0px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 6px 15px #7373732e;
}

.headerSubMenu {
    display: flex;
    flex-direction: column;
}

.headerSubMenu>li a {
    padding: 8px 12px; font-size: 14px;
    display: inline-block;
    width: 240px;
    border-bottom: 1px solid #dddddd57;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.headerSubMenu>li:hover a {
    padding-left: 20px;
}

.headerRightMenu {
    display: flex;
}

.headerRightMenu li {
    margin: 0px 0px 0px 10px;
}


.bannerSection {
    background: #ffffff;
    padding-top: 85px;
}

.bannerRightContent img{
    height: 100vh !important;
}
.bannerContent {
    display: flex;
    align-items: center;
    height: auto;
    /* padding: 79px 0px; */
}

.bannerLeftContent {
    width: 50%;
    position: relative;
    z-index: 5;
}

.bannerSliderContent {
    position: relative;
    padding: 130px 30px;
}

.bannerRightContent {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
}

/* .bannerRightContent::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0c0c0ce8, transparent);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
} */

.videocont {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    /* z-index: 4; */
}

.hero-subheader__video {
    width: 100%;
    /* height: 550px; */
    /* overflow: hidden; */
}

.hero-subheader__video video {
    width: 100%;
}

.bannerPngImg {
    height: 100%;

}

.bannerPngImg::after {
    content: '';
    position: absolute;
}

/* .owl-carousel.bannerCarousel .owl-item .bannerPngImg img {
    width: auto;
    float: right;
} */

.bannerPngImg img {
    /* height: 100%; */
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;

}

@keyframes upandDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bannerCarousel {
    height: auto;
    position: relative;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 5px;
    top: 45%;
    width: 30px;
    height: 30px;
    background: #ede8f7;
    font-size: 20px;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 5px;
    top: 45%;
    width: 30px;
    height: 30px;
    background: #ede8f7;
    font-size: 20px;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-next:hover {
    background: #2b0093;
    color: #fff;
}

.bannerCarousel.owl-carousel .owl-nav button.owl-prev:hover {
    background: #2b0093;
    color: #fff;
}

.bannerLeftContent h5 {
    font-size: 28px;
    color: #ffffff;
    line-height: 52px;
}

.bannerLeftContent h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: #ffffff;
    margin: 10px 0px;
}

.bannerLeftContent h2 span {
    color: rgb(0 183 168);
}

.bannerLeftContent p {
    color: #dddddd;
    margin-top: 10px;
    margin-bottom: 14px;
}

.bannerLeftContent a {
    background: linear-gradient(180deg, #bb691094, #bb6910);
    padding: 8px 20px;
    display: inline-block;
    color: #fff;
    border-radius: 8px;
}

.bannerLeftContent a:hover {
    background: linear-gradient(180deg, #bb6910, #bb691094,);
}

.bannerLeftContent a i {
    font-size: 13px;
}

/* 
.twm-img-bg-circle1 {
    left: 0px;
    bottom: 0px;
    position: absolute;
    z-index: 3;
    right: 0px;
    top: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    z-index: 3;
}

.twm-img-bg-circle1 span {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background-color: #b4cded;
    display: block;
    position: relative;
}

.twm-img-bg-circle1 span:after {
    width: 17px;
    height: 17px;
    background-color: #290090;
    border-radius: 50%;
    content: '';
    position: absolute;
    right: 35px;
    top: 100px;
    z-index: 9;
}


.twm-img-bg-circle1 span:before {
    width: 17px;
    height: 17px;
    background-color: #290090;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 3px;
    top: 170px;
    z-index: 9;
}


.twm-img-bg-circle2 {
    left: 0px;
    bottom: 0px;
    position: absolute;
    z-index: 2;
    top: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    z-index: 2;
}


.twm-img-bg-circle2 span {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background-color: #dbe6f4;
    display: block;
}

.twm-img-bg-circle2 span:after {
    width: 17px;
    height: 17px;
    background-color: #2d07ba;
    border-radius: 50%;
    content: '';
    position: absolute;
    right: 75px;
    bottom: 100px;
    z-index: 9;
}


.twm-img-bg-circle3 {
    left: 0px;
    bottom: 0px;
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    z-index: 1;
}


.twm-img-bg-circle3 span {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: #ecf1f7;
    display: block;
}

.twm-bnr-right-content {
    width: 600px;
}

.rotate-center {
    -webkit-animation: rotate-center 15s linear infinite;
    animation: rotate-center 15s linear infinite;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotate-center-reverse {
	animation: rotate-center 30s linear infinite reverse both;
}

@keyframes rotate-center-reverse {
	0% {
	  transform: rotate(0);
	}
	100% {
	  transform: rotate(360deg);
	}
}
.twm-small-ring-2{
    width: 50px;
    height: 50px;
    border: 5px solid #1967d2;
    border-radius: 50%;
    opacity: 0.4;
    position: absolute;
    top: 30%;
    right: 9%;
    z-index: 5;

}
.slide-top-animation {
	animation: slide-top-animation 3s ease-in-out infinite alternate-reverse both;
}

@keyframes slide-top-animation {
	0% {
	  transform: translateY(0);
	}
	100% {
	  transform: translateY(-100px);
	}
}

.twm-small-ring-l {
    width: 50px;
    height: 50px;
    border: 5px solid #1967d2;
    border-radius: 50%;
    opacity: 0.4;
    position: absolute;
    bottom: 30%;
    left: 11%;
    z-index: 5;
} */


.aboutSideImg {
    position: relative;
}

.aboutImgWrap {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 0px auto;
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;

}

.aboutImgWrap img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.aboutImgContainer {
    background-color: #fff;
    box-shadow: 0px 0px 40px rgb(43 5 178 / 16%);
    border-radius: 10px;
    position: relative;
    margin-top: 0px;
    margin-left: 0px;
    z-index: 1;
    overflow: hidden;
}

.aboutImg {
    width: 100%;
}

.aboutImg img {
    width: 100%;
}

/*  */

.aboutMainImg {
    position: relative;
    display: block;
 
}

.aboutMainImg::after {
    position: absolute;
    content: '';
    z-index: 3;
    width: 80%;
    height: 80%;
    /* background: #0f003380; */
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    filter: blur(52px);
    border-radius: 100%;
}

.aboutMainImg img {
    position: relative;
    z-index: 2;
}


.aboutImg .aboutImgAnimation img {
    width: fit-content;
    left: 0px;
    top: 0px;
    height: fit-content;
    bottom: 0px;
    right: 0px;
    margin: auto;
}

.aboutImgAnimation {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    z-index: 5;
}

.aiaWrap {
    position: relative;
    position: relative;
    width: 66%;
    height: 66%;
    margin: auto;
}

.abimgzero {
    position: absolute;
    width: 20% !important;
}

.abimg1 {
    position: absolute;
    width: 33% !important;

}

.abimg2 {
    position: absolute;
    width: 42% !important;
    animation: three60Move 5s linear infinite;
}

.abimg3 {
    position: absolute;
    width: 58% !important;
    animation: three60Move2 30s linear infinite;
}

.abimg4 {
    position: absolute;
    width: 71% !important;
    position: absolute;
    animation: three60Move 40s linear infinite;
}

.abimg5 {
    position: absolute;
    animation: breathing 30s ease-out infinite normal;
}

.aboutImg .aboutImgAnimation img.abimg5 {
    width: 100%;
}

@keyframes three60Move {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes three60Move2 {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*  */



.aboutSideContentsWrapper {
    margin-left: 30px;
}

.aboutRectance1 {
    border-radius: 40px;
    background-color: #3810be;
    width: 370px;
    height: 370px;
    opacity: 0.3;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
}

.aboutRectance2 {
    border-radius: 40px;
    background-color: #fff;
    width: 370px;
    height: 370px;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;

}

.aboutSideWrapper {
    position: relative;
}

.aboutSideWrapper::after {
    content: "";
    right: -20px;
    top: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    border-right: 40px solid #f0f6fe;
    border-bottom: 40px solid #f0f6fe;
    border-radius: 10px;
    z-index: -1;
    animation: upandDown 3s ease-in-out infinite alternate-reverse both;
}

.aboutSideWrapperContainer {
    background-color: #fff;
    box-shadow: 0px 0px 40px rgb(43 5 178 / 16%);
    border-radius: 10px;
    padding: 55px 60px;
    position: relative;
    margin-top: 0px;
    margin-left: 0px;
    z-index: 1;
}

.aboutSide h5 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
}
.bg-colors {
    border: 1px solid #bb6910;
    background: linear-gradient(180deg, #bb691094, #00b7a8bf);
    display: inline-block;
    border-radius: 8px;
    padding: 6px 30px;
}

.aboutSide h2 {
    font-weight: 700;
    margin-bottom: 10px;
    /* font-size: 38px; */
    font-size: 40px;
}

.aboutSide h4 {
    /* font-size: 22px; */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #252525;
}

.aboutSide h2 span {
    color: #c37c2f;
}

.aboutSide p {
    margin-bottom: 10px;
    text-align: justify;
    line-height: 32px;
    font-size: 19px;
    margin-top: 30px;
}

.normalList li {
    background-image: url(../img/icons/right-arrow.png);
    background-size: 14px;
    background-position: left top 5px;
    padding-left: 21px;
    background-repeat: no-repeat;
    text-align: justify;
    width: fit-content;
}

.normalList.homeaboutul {
    width: fit-content;
    margin: auto;
}

.normalList.homeaboutul li {
    padding: 10px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    /* background-image: none; */
    background-position: left 13px center;
    padding-left: 40px;
    background-color: #fff;
}

.titleSection h2 {
    font-size: 38px;
    font-weight: 700;
    color: #c37c2f;
    height: 46px;
}

.titleSection h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.titleSection {
    position: relative;
    padding-bottom: 12px;
}

.titleSection::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 4px;
    background-color: #00b7a8;
    top: 100%;
    left: 0px;
    right: 0;
    margin: auto;
}

.sectionscroll {
    position: relative;
}

.scrolling-text {
    position: absolute;
    bottom: 0px;
    right: -10%;
    white-space: nowrap;
    transition: all 0.6s ease-in-out;
    font-size: 110px;
    font-weight: 800;
    /* color: #ede8f7b7; */
    color: #ede8f757;
    line-height: 85px;
    bottom: 20px;
}

.scrolling-text.active {
    right: 4%;
}

.scrolling-text.rightactive {
    right: auto;
    left: -10%;
}

.scrolling-text.rightactive.active {
    left: 4%;
    right: auto;
}


.serviceContainer {
       /* overflow: hidden; */
    position: relative;
    padding: 30px 0px 0px;
    min-height: 490px;
}

.serviceContainer .slider {
    margin: 0 auto 0 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.serviceContainer .slider__list {
    width: fit-content;
    cursor: grab;
}


.serviceContainer .scroll {
    position: relative;
    left: 0;
    margin-top: calc(40em/16);
    width: 100%;
    overflow: hidden;
}

.serviceContainer .scroll::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    margin: auto 0;
    width: 100%;
    height: 100%;
    background-color: #dad4cd;
}

.serviceContainer .scroll .swiper-scrollbar-drag {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    background-color: #937152;
    border-radius: 0;
    transform-origin: right center;
    will-change: transform;
    cursor: grab;
}

.serviceContainer .scroll__growbar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 100%;
    background: #937152;
}

.container-inner {
    padding-top: calc(20em/16);
    margin: 0 auto;
    width: calc(348/375*100%);
    overflow: visible;
}

.serviceContainer .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 0px;
    right: 0px;
    width: 93.3%;
    left: auto;
    z-index: -1;
}



.serviceBoxCard {
    border: 0px solid #ddd;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    position: relative;
}

.serviceBoxCard::after {
    width: 100%;
    height: 73%;
    position: absolute;
    content: '';
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    visibility: hidden;
    opacity: 0;
    background: #ba660c;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
}

.serviceBox:hover .serviceBoxCard:after {
    height: 100%;
    visibility: visible;
    opacity: 1;
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.serviceboxContent {
    padding: 24px;
    position: relative;
    z-index: 2;
    min-height: 280px;
}

.serviceboxContent h2 {
    font-size: 18px;
    font-weight: 600;
    color: #c37c2f;
    margin-bottom: 15px;
    transition: all 0.5s ease-in-out;
    line-height: normal;
}

.serviceBox:hover .serviceboxContent h2 {
    color: #fff;
}

.serviceboxContent p {
    /* text-align: justify; */
    color: #252525;
    transition: all 0.5s ease-in-out;
}

.serviceBox:hover .serviceboxContent p {
    color: #fff;
}

.serviceboxContent a {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    color: #2806a9;
    transition: all 0.5s ease-in-out;
    position: absolute;
    bottom: 23px;
}

.serviceBox:hover .serviceboxContent a {
    color: #fff;
}


.serviceBox {
    position: relative;
    min-height: 299px;
}

.serviceBoxImg {
    position: absolute;
    top: 70%;
    left: 0px;
    right: 0px;
    z-index: 2;
    transform: scaleY(0.8);
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    margin-top: 0px;
    bottom: 0;
    opacity: 0;


}

.serviceBox:hover .serviceBoxImg {
    visibility: visible;
    top: 100%;
    transform: scaleY(1);
    opacity: 1;
}

.serviceImg {
    width: 100%;
    background: radial-gradient(#ffffff, #d5d0ec);
    padding: 17px 61px;
    height: 233px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.serviceImg img {
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.serviceBoxCard.ii::after {
    background: rgb(0 183 168);;
}

.serviceBoxCard.iii::after {
    background: #f83b77;
}

.serviceBoxCard.iv::after {
    background: #002963;
}

/* .scrolling-text.fulltext {
    line-height: 135px;
    font-size: 200px;
} */

.swiper-button-prev.servicePrev.swiper-button-disabled {
    display: none;
}

.swiper-button-next.serviceNext.swiper-button-disabled {
    display: none;
}

.swiper-button-next.serbtnstyle {
    width: auto;
}

.swiper-button-next.serbtnstyle:after {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    background: #ddd;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #290090, #2d07ba);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-align: center;
    line-height: 39px;
    border-radius: 8px;
}

.swiper-button-prev.serbtnstyle {
    width: auto;
}

.swiper-button-prev.serbtnstyle:after {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    background: #ddd;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #290090, #2d07ba);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-align: center;
    line-height: 39px;
    border-radius: 8px;
}



.industry-box-container {
    margin-top: 40px;

}

.industruAfBfr {
    position: relative;
}

.industruAfBfr::after {
    position: absolute;
    width: 20%;
    left: 0px;
    top: 0px;
    height: 100%;
    content: '';
    background: linear-gradient(88deg, #f8f9fa, transparent);
    z-index: 2;
}

.industruAfBfr::before {
    position: absolute;
    width: 20%;
    right: 0px;
    top: 0px;
    height: 100%;
    content: '';
    background: linear-gradient(270deg, #f8f9fa, transparent);
    z-index: 2;
}

.box-item {
    position: relative;
    -webkit-backface-visibility: hidden;
    width: 100%;
    /* margin-bottom: 35px; */
    max-width: 100%;
}

.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.flip-box-front {
    background:     linear-gradient(90deg, #ff7186, #b7ecff);

}

.flip-box-back {
    background:    linear-gradient(90deg, #ff7186, #b7ecff);
    text-align: center;
}

.flip-box-front,
.flip-box-back {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 146px;
    -ms-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;

    transform: translateY(-50%) translateZ(60px) scale(.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
    top: 50%;
    height: 100%;
}

.flip-box-header {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.flip-box p {
    font-size: 15px;
    color: #fff;
}

.flip-box p i {
    font-size: 14px;
}

.flip-box-img {
    margin-top: 6px;
    width: 16px;
}

.flip-box-button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    padding: 15px 20px;
    text-transform: uppercase;
}


.indusryImgWrap {
    width: 40%;
    position: absolute;
    bottom: 25px;
    right: 0px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.indusryImgWrap img {
    width: 100%;
}

.industryflex {
    display: flex;
    position: relative;
    align-items: center;
}

.indsutryContent {
    width: 63%;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.flip-box-back .inner.back {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.flip-box-back .inner.back a {
    display: block;
}

.swiper-button-next2.serbtnstyle2 {
    width: auto;
}

.swiper-button-next2.serbtnstyle2:after {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    background: #ddd;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #290090, #2d07ba);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-align: center;
    line-height: 39px;
    border-radius: 8px;
}

.swiper-button-prev2.serbtnstyle2 {
    width: auto;
}

.swiper-button-prev2.serbtnstyle2:after {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    background: #ddd;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #290090, #2d07ba);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-align: center;
    line-height: 39px;
    border-radius: 8px;
}


.industrySlider.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.industrySlider.owl-theme .owl-dots .owl-dot.active span,
.industrySlider.owl-theme .owl-dots .owl-dot:hover span {
    background: #2a04b0;
}

.clientsCards {
        padding: 0px 8px;
        height: 95px;
}

.owl-carousel .owl-item .clientsCards img {
    width: auto;
    height: 100%;
}


.blogSwiperCard.videoContainer {
    text-align: center;
    min-height: 384px;
}

.blogSwiperCard {
    background: linear-gradient(268deg, white, #f1f1f1), url(../img/texture/texture1.jpg);
    border-radius: 8px;
    /* overflow: hidden; */
    padding: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: 0.4s ease-in-out;
    position: relative;
    z-index: 2;
    margin: 15px 0px;
}

.blogSwiperCard::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    z-index: 1;
    transition: 0.4s ease-in-out;
    border-radius: 8px;
}

.blogSwiperCard:hover:before {
    height: 105%;
    width: 100.5%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
}

.blogHeader {
    position: relative;
    z-index: 2;
}

.blogSwiperCard.videoContainer .blogHeader h4 {
    font-size: 16px;
}

.blogHeader h4 {
    font-size: 15px;
    color: #0c0c0c;
    margin-bottom: 12px;
    margin-top: 6px;
    line-height: 22px;
    font-weight: 600;
}

.blogCardImg.videoWrap {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.blogCardImg {
    width: 100%;
    position: relative;
    z-index: 2;
}

.blogSwiperCard:hover .blogCardImg:before {
    -webkit-animation: zoom-hover 0.75s;
    animation: zoom-hover 0.75s;
}

.blogCardImg:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

.videoPlayThumb {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0px;
    background: #fff;
    border: 1px solid #ddddddd9;
}

.videoPlayThumb img {
    width: 100%;
}

.blogCardImg img {
    width: 100%;
    border-radius: 6px;
}

.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    columns: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
}

.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

.blogCardWrapper {
    padding: 20px;
}

.col-reverse {
    flex-direction: row-reverse;
}

.faqsCards .accordion-item {
    background-color: #ffffff8f;
    margin: 10px 0px;
    border-radius: 10px;
    overflow: hidden;
}

.faqsCards .accordion-button {
    background-color: #ffffffe5;
    font-size: 16px;
    padding: 12px 16px;
    font-weight: 600;
}

.faqsCards .accordion-button:hover {
    background: linear-gradient(180deg, #c37c2fa8, #c37c2f);
    color: #fff;
}

.faqsCards .accordion-button:hover:after {
    filter: brightness(3)invert(1);
}

.faqsCards .accordion-header {
    margin-bottom: 0;
    font-family: 'Poppins';
    font-size: 14px;
}

/* FAQS */
.faqsTitle h4 {
    color: #080b55;
    font-weight: 600;
}

.faqsTitle h2 {
    color: #0240a8;
    margin-bottom: 16px;
    font-weight: 700;
}

.faqsTitle.inner {
    text-align: center;
    margin-bottom: 40px;
}

.faqsSection {
    background-blend-mode: normal;
    background: linear-gradient(180deg, #ffffffc7, #fff0), url(../img/bg/bg-5.jpg);
    background-size: 100%;
    margin-top: 40px;
}

.faqsSection .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.faqsSection .accordion-button:not(.collapsed) {
    background: linear-gradient(180deg, #c37c2fa8, #c37c2f);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.faqsSection .accordion-button::after {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg>');
    filter: contrast(0.5);
    background-size: 15px;
    right: -3px;
    position: relative;

}

.faqsSection .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg>');
    filter: grayscale(1) invert(1);
    right: -3px;
    position: relative;
}
.owl-nav{
    display: none !important;
}
.bg6 {
    background: linear-gradient(transparent, transparent), url(../img/bg/bg6.jpg);
    background-size: 100% 100%;
}

.bg7 {
    background: linear-gradient(180deg, #f9f9f9f2, #f9f9f9c7), url(../img/bg/bg7.jpg);
    background-size: 100% 100%;
}

.bg8 {
    background: linear-gradient(180deg, #ffffff, #f9f9f900), url(../img/bg/bg8.jpg);
    background-size: 100% 100%;
}

.bg9 {
    background: linear-gradient(180deg, #ffffff, #f9f9f900), url(../img/bg/bg9.jpg);
    background-size: 100% 100%;
}

.bg10 {
    background: linear-gradient(180deg, #ffffffed, #ffffffed), url(../img/bg/bg10.jpg);
    background-size: 100% 100%;
}

.industryWeServe {
    background-image: linear-gradient(#ffffff80, #ffffffad), url(../img/bg/mg-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-wrp-main {
    background: linear-gradient(90deg, #89e2db, #88e1da), url(../img/texture/texture1.jpg);
    background-size: cover;

    position: relative;
}

.footerMain {
    position: relative;
    padding: 70px 0px 0px;
}

#tsparticles {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 1;
}

#tsparticles canvas {
    position: unset !important;
}

.ftr-link-bx a {
    display: block;
    color: #000000;
    margin: 5px 0px;
}

ul.address-sec li i {
    color: #c37c2f;
    font-size: 17px;
    margin-right: 8px;
}

ul.address-sec li a {
    display: flex;
    align-items: baseline;
}

.ftr-link-bx a.title-16 {
    font-size: 22px;
    font-weight: 500;
    color: #c37c2f;
    margin-top: 27px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 9px;
}

.ftr-link-bx a.title-16::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 2px;
    background: #c37c2f;
    bottom: 0px;
    left: 0px;
}

.footerContents {
    margin-top: 20px;
}

.footerContents p {
    margin-right: 5px;
    color: #000000;
    line-height: 28px;
}

.footer-links-wrp {
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-btm-wrp {
    background: #111;
    padding: 5px 0px;
}

.footer-btm-wrp p {
    color: #ffff;
    margin-bottom: 0px;
}

.footerContents ul {
    display: flex;
    align-items: center;
}

.footerContents ul {
    color: #000000;
}

.footerContents ul li {
    color: #000000;
}

.footerContents ul li:first-child {
    margin-right: 5px;
}

.footerContents ul li:nth-child(2) {
    margin-left: 5px;
}

.footerContents ul li a {
    display: inline-block;
    border: 1px solid #cc8a41;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 100%;
    margin: 0px 8px 0px 0px;
    color: #a72409;
}

ul.footerSocial {
    margin-top: 20px;
}

ul.footerSocial i {
    line-height: 27px;
    color:#b17432;
    font-size: 12px;
}
.footer-address-link a
{
    position: relative;
}

.footer-address-link .man
{
    position: relative;
}
.footer-address-link i{
    position: absolute;
    top: 10px;
    left: 0px;
}
.footer-address-link .con{
    padding-left: 24px;
}
.footer-address-link {
    position: relative;
}
.ftr-link-bx-after a{
    position: relative;
}
.ftr-link-bx-after .man{
    padding-left: 30px;
}
.ftr-link-bx-after .man:hover{
    color:#ac6b25 ;
}
.ftr-link-bx-after a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    margin-left: 8px;
    left: 0px;
    top: 0px;
}
.bannerPngImg video{
    aut
}

.ftr-link-bx-after a:first-child:before{
    display: none;
}


/* Go to Top */

#button {
    display: inline-block;
    background: linear-gradient(2deg, #080b55, #0240a8);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    font-size: 10px;
    animation: breathing 2s ease-out infinite normal;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #151e25;
}

#button:active {
    background-color: #151e25;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}





.hamburger .line {
    width: 32px;
    height: 3px;
    background-color: #000000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger {
    display: none;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

#hamburger-11.is-active .line {
    width: 32px;
}

@keyframes smallbig {

    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2),
#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.footer-logo-wrp img {
    border-radius: 10px;
}



/* inner */
.innerBanner {
    padding-top: 0px;
    padding-bottom: 0px;
    background:  url("../img/bg/contact-us.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 85px;
}

.innerBannercareer {
    padding-top: 0px;
    padding-bottom: 0px;
    background:  url("../img/bg/career.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 85px;
}

.innerBannerContent {
    display: flex;
    align-items: center;
    height: 390px;
    padding-left: 0px;
    padding-top: 0px;
    
}
.ul-abnner{
    color: white;
}

.inrbnrMain {
    height: fit-content;
}

.inrbnrMain h2 {
    font-size: 54px;
    font-weight: 600;
}

.inrbrnNav {
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.inrbrnNav li a {
    color: #4a4a4a;


}

.inrbrnNav li a i {
    font-size: 13px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.inrbrnNav li {
    position: relative;
    border-right: 1px solid #4c4c4c;
    padding: 0px 10px;
}

.inrbrnNav li:last-child {
    border: none;
}

.inrbrnNav li:last-child a {
    color: #5913c7;
    font-weight: 600;
}

.innerbnrextImg {
    width: 35%;
    position: absolute;
    right: 10%;
    bottom: 0px;
    top: 0px;
    height: fit-content;
    margin: auto;
}

.innerbnrextImg img {
    width: 100%;
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
}


.aboutSideContents.fullContent {
    margin-top: 36px;
    margin-bottom: 30px;
}

.ourLeadersCard {
    position: relative;
}

.olImg {
    width: 100%;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 8px;
}

.olImg img {
    width: 100%;
}

.ourLeadersSlider.owl-carousel .owl-item .olImg img {
    border-radius: 8px;
    transition: 0.4s ease-in-out;
}

.ourLeadersSlider.owl-carousel .owl-item .olImg:hover img {
    transform: scale(1.05);
}

.olContent {
    text-align: center;
    margin-top: -35px;
    padding: 10px;
    border-radius: 10px;
    border-bottom: 4px solid #002963;
    background: #fff;
    position: relative;
    z-index: 1;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.olContent h4 {
    font-size: 18px;
    font-weight: bold;
}

.olContent p {
    color: #4b4b4b;
    font-size: 14px;
}

.tabContentSection .nav-tabs .nav-link {
    position: relative;
    color: #0a0909;

}

.tabContentSection .nav-tabs .nav-link:focus,
.tabContentSection .nav-tabs .nav-link:hover {
    color: #0a0909;
    background: transparent;
    border: none;
}

.tabContentSection .nav-tabs .nav-link:focus:after,
.tabContentSection .nav-tabs .nav-link:hover:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #4c00c2;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
}

.tabContentSection .nav-tabs .nav-link:focus:before,
.tabContentSection .nav-tabs .nav-link:hover:before {
    position: absolute;
    content: '';
    width: 13px;
    height: 17px;
    background-image: url(../img/icons/arrow-down.png);
    left: 0px;
    right: 0px;
    bottom: auto;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    top: 83%;
    background-color: #fff;
    z-index: 1;
}

.tabContentSection .nav-tabs .nav-item.show .nav-link,
.tabContentSection .nav-tabs .nav-link.active {
    border: none;
}

.tabContentSection .nav-tabs .nav-item.show .nav-link::after,
.tabContentSection .nav-tabs .nav-link.active::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #4c00c2;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
}

.tabContentSection .nav-tabs .nav-item.show .nav-link::before,
.tabContentSection .nav-tabs .nav-link.active::before {
    position: absolute;
    content: '';
    width: 13px;
    height: 17px;
    background-image: url(../img/icons/arrow-down.png);
    left: 0px;
    right: 0px;
    bottom: auto;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    top: 83%;
    background-color: #fff;
    z-index: 1;


}

.aboutMainImg3 {
    border: 5px solid #fff;
    border-radius: 11px;
}

.aboutMainImg3 img {
    border-radius: 11px;
}

.aboutMainImg3.color1 {
    background: radial-gradient(#ffffff, #d5d0ec);
}

.aboutMainImg3.color2 {
    background: radial-gradient(#ffffff, #d6f9fa);
}

.aboutMainImg3.color3 {
    background: radial-gradient(#ffffff, #fad7ed);
}

.aboutMainImg3.color4 {
    background: radial-gradient(#ffffff, #d8eff9);
}

.serviceMainContainer {
    padding-top: 50px;
}

.servicePage .serviceMainContainer:last-child {
    padding-bottom: 50px;
}


.ourClients .clientsCards {
    height: auto;
}

.ourClients .clientsCards img {
    width: 100%;
}

.ourClients {
    margin-top: 40px;
}

/* .positionsticky {
    position: sticky;
    top: 100px;
}

.positionsticky .aboutImgContainer {
    overflow: unset!important;
} */
/* contact */

.contactUsCard {
    padding: 17px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 36px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 12px;
    border: 1px solid #dddddd4a;
    min-height: 159px;
}

.contactUsCard::after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0px 14px 210px;
    border-color: transparent transparent #b78a5a99 transparent;
    transform: rotate(0deg);
    right: 0px;
    bottom: 0px;
}

.contactCHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contactIco {
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #290090, #2d07ba);
    color: #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 42px;
    font-size: 18px;
}

.contactTitle {
    width: 86%;

}

.contactTitle h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;

}

.contactTitle p {
    font-size: 16px;
    line-height: 22px;
    margin-left: 40px;
    font-weight: 600;
}

.contactMain {
    margin-top: 10px;
}

.contactMain a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: black;
    /* display: block; */
}

.contactWrapper {
    margin-top: 50px;
}

.contactInfoWrap .row .col-md-12:last-child .contactUsCard {
    margin-bottom: 0px;
}

.enquireNowForm.contactPage .right-sidebar-box {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-left: 20px;
}

.enquireNowForm.contactPage .right-sidebar-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: #462673;

}

.enquireNowForm.contactPage .right-sidebar-box .custom-form .custom-input textarea {
    height: 104px;
}

.right-sidebar-box {
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 894px;
    margin: 0px auto;
    background: #cea07042;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: relative;
    left: -2px;
}

.right-sidebar-box .custom-form label {
    color: #565656;
    display: block;
    font-size: 16px;
    margin-bottom: calc(2px + 0.3125vw);
    font-weight: 600;
}

.right-sidebar-box .custom-form .custom-input {
    position: relative;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: none;
    padding: calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(38.8px + 0.6875vw);
}

.right-sidebar-box .custom-form .custom-input i {
    align-items: center;
    color: #4a5568;
    display: flex;
    font-size: 15px;
    left: 0;
    line-height: 1;
    padding: 15px;
    position: absolute;
    top: 0px;

}

.form-control {
    background-color: #fff;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + var(--bs-border-width)*2);
}

.right-sidebar-box .custom-form .custom-input textarea {
    height: 180px;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: 1px solid #dddddd80 !important;
    padding: 10px 40px;
    border-radius: 6px;
}

.right-sidebar-box .custom-form .custom-input .form-control::placeholder {
    font-size: 14px;
}

.right-sidebar-box .custom-form .custom-input .form-control:focus {
    box-shadow: none;
}

.mapSection {
    width: 100%;
}

.h2font1.aboutSide h2 {
    font-size: 34px;
}

.h2font1.aboutSide h4 {
    margin-bottom: 30px;
    line-height: 32px;
    margin-top: 20px;
    font-size: 24px;
}

.parastyle1.aboutSide p {
    line-height: 28px;
}

.aboutImg2 {
    width: 100%;
}

.aboutImg2 img {
    width: 100%;
}

.bg1 {
    background-image: linear-gradient(45deg, #ffffff45, #ffffff87), url(../img/bg/bg2.jpg);
    background-size: cover;
}

.aboutImg2 img.animation1 {
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
}

.homeaboutPadding {
    padding: 70px 0px;
}

.aboutOtherCard {
    padding: 20px;
    border-radius: 10px;
    background: #ddd;
    position: relative;
}

.cardnewStyle .aboutOtherCard {
    min-height: 320px;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.abothercIcon {
    width: 100px;
    position: absolute;
    left: -10%;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.cardnewStyle .aboutOtherCard .abothercIcon {
    position: unset;
}

.abothercIcon img {
    width: 100%;
}

.aboutotherContents {
    width: 83%;
    margin: auto;
    margin-right: 0px;
}

.cardnewStyle .aboutotherContents {
    width: 100%;
    text-align: center;
}

.aboutotherContents h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0px;
    margin-top: 0px;
}


.aboutOtherCard.color1 {
    background: #c37c2fab;
    width: 90%;
    margin: auto;
    margin-top: 0px;
    margin-right: 0px;
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
    animation-delay: 0.4s;

}

.aboutOtherCard:hover .abothercIcon img {
    -webkit-animation: jello 1s infinite;
    -moz-animation: jello 1s infinite;
    -o-animation: jello 1s infinite;
    animation: jello 1s infinite;
}

.aboutOtherCard.color2 {
    background: #ffcdba;
    width: 90%;
    margin: auto;
    margin-top: 44px;
    margin-right: 0px;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
}

.aboutOtherCard.color3 {
    background: #00b7a89c;
    width: 90%;
    margin: auto;
    margin-top: 0px;
    margin-right: 0px;
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
    animation-delay: 0.7s;
}

.aboutOtherCard.color4 {
    background: #ffe5ab;
    width: 90%;
    margin: auto;
    margin-top: 44px;
    margin-right: 0px;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.8s;
}

.bg2 {
    background-image: linear-gradient(45deg, #ffffff45, #ffffff87), url(../img/bg/bg3.jpg);
    background-size: cover;
}

.bg4 {
    background-image: linear-gradient(180deg, #ffffffbf, #ffffff87), url(../img/bg/bg4.jpg);
    background-size: 100% 100%;
}

.bg5 {
    background-image: linear-gradient(180deg, #ffffffbf, #ffffff87), url(../img/bg/bg5.jpg);
    background-size: 100% 100%;
}

.aboutImg3 {
    width: 43%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
}

.aboutImg3 .imgbox {
    position: relative;
}

.aboutImg3 .imgbox::after {
    content: '';
    position: absolute;
}

.aboutImg3 img {
    width: 100%;
}


.counter-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.counter-wrapper .common-box {
    text-align: center;
}

.counter-wrapper .common-box .timer {
    font-size: 50px;
}

.counter-wrapper .common-box span {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #4c00c2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.counter-wrapper .common-box:hover span {
    color: #4c00c2;
}

.counter-wrapper .common-box .counter-text {
    color: #343434;
    font-weight: 500;
    font-size: 20px;
}

.counterIco {
    width: 70px;
    margin-left: auto;
    margin-right: auto;
}

.counterIco img {
    width: 100%;
}

.countersSec {
    background-image: linear-gradient(#ffffff80, #ffffffad), url(../img/bg/mg-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.popupswipBtn a {
    transition: 0.4s ease-in-out;
    width: 190px;
    height: 50px;
    position: relative;
    display: inline-block;
}

.popupswipBtn.exolore a {
    width: 213px;
}
.maxwid-abou{
    max-width: 90%;
    position: relative;
}
.side-img img{
    max-width: 130px;
    border-radius: 15px;
    border: 5px solid #c37c2f;
    position: absolute;
    bottom: 70px;
    left: -60px;
    z-index: 100;
    animation: slideFromTop 6s cubic-bezier(.4,0,.2,1) infinite;
   
}

@keyframes slideFromTop {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-20px); }
  50%  { transform: translateY(-40px); }
  75%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}


.popupswipBtn a i {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 50px;
    height: 50px;
    text-align: center;
    background: radial-gradient(circle, #c37c2fdb, #c37c2f);
    color: #fff;
    border-radius: 100%;
    line-height: 48px;
    font-size: 19px;
    transition: 0.4s ease-in-out;
}

.popupswipBtn a p {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    line-height: normal;
    background: radial-gradient(circle, #c37c2fdb, #c37c2f);
    color: #fff;
    height: 50px;
    padding: 14px 20px;
    border-radius: 30px;
    right: 0px;
    transition: 0.4s ease-in-out;
}

.popupswipBtn:hover a i {
    right: 0px;
}

.popupswipBtn:hover a p {
    left: 0px;
    width: fit-content;
    margin-left: 0px;
}

/* Text Animation */
h2.animate-text {
    margin: 0;
    overflow: hidden;
}

h2.animate-text span {
    display: none;
}

h2.animate-text span.text-in {
    display: block;
    animation: textIn .5s ease;
}

h2.animate-text span.text-out {
    animation: textOut .5s ease;
}

@keyframes textIn {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes textOut {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);

    }
}

.cardleftAnimation {
    -webkit-animation-name: rollIn2;
    animation-name: rollIn2;
    transform: rotate(340deg) translateX(-30px);
}

@keyframes rollIn2 {
    0% {
        transform: rotate(360deg) translateX(270px);
    }

    100% {
        transform: rotate(340deg) translateX(-30px);
    }
}

.cardrightAnimation {
    -webkit-animation-name: rollIn3;
    animation-name: rollIn3;
    transform: rotate(21deg) translateX(-10px)
}

@keyframes rollIn3 {
    0% {
        transform: rotate(0deg) translateX(-270px);
    }

    100% {
        transform: rotate(21deg) translateX(-10px)
    }
}



/* Loaders */
.loaderWrapper {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: relative;
    z-index: 66;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
}

.loader {
    width: 200px;
    height:150;
    position: relative;
}

.loader-text {
    position: absolute;
    top: 0;
    left: 0px;
    padding: 0;
    margin: 0;
    color: #C8B6FF;
    animation: text_713 2s ease both infinite;
    font-size: .8rem;
    letter-spacing: 1px;
}
.loader-text img{
    max-width:100%;
}


/* .load {
    background-color: #9A79FF;
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 16px;
    bottom: 0;
    position: absolute;
    transform: translateX(64px);
    animation: loading_713 3.5s ease both infinite;
} */

/* .load::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #D1C2FF;
    border-radius: inherit;
    animation: loading2_713 3.5s ease both infinite;
} */


@keyframes text_713 {
    0% {
        transform: ScaleX(1);
    }

    50% {
       transform: ScaleX(1.1);
    }

 

    100% {
        transform: ScaleX(1);
    }
}

/* 
@keyframes loading_713 {
    0% {
        width: 16px;
        transform: translateX(0px);
    }

    40% {
        width: 100%;
        transform: translateX(0px);
    }

    80% {
        width: 16px;
        transform: translateX(64px);
    }

    90% {
        width: 100%;
        transform: translateX(0px);
    }

    100% {
        width: 16px;
        transform: translateX(0px);
    }
}

@keyframes loading2_713 {
    0% {
        transform: translateX(0px);
        width: 16px;
    }

    40% {
        transform: translateX(0%);
        width: 80%;
    }

    80% {
        width: 100%;
        transform: translateX(0px);
    }

    90% {
        width: 80%;
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
        width: 16px;
    }
}
 */



/* Loaders */



/* Text Animation */
.aboutinnerbnrSec {
    padding-top: 130px;
    padding-bottom: 60px;
    background: linear-gradient(#ffffffe8, #ffffffe8), url(../img/bg/about-bnr.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.aboutbnrTitleSec {
    text-align: center;
}

.abnrqs h4 {
    font-size: 64px;
    font-weight: 500;
}

.abwordAnimated {
    font-size: 60px;
    color: #280170;
    position: relative;
}

.textanimateUnderline {
    position: absolute;
    top: 70%;
    width: 47%;
    height: 26px;
    right: 0px;
    z-index: 4;
}

svg.textanimateUnderline path {
    fill: none;
    stroke: #4805c4;
    stroke-width: 4px;
    stroke-dasharray: 4691;
    stroke-dashoffset: 4691;
    /* -webkit-animation: dash 1.5s linear forwards;
    animation: dash 1.5s linear forwards; */
    animation-duration: 1.5s;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@-webkit-keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.abtile{
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    box-shadow: 3px 16px 10px #15141404;
    position: relative;
    overflow: hidden;
}
.abtile h1, .abtile h2, .abtile h3, .abtile h4, .abtile h5, .abtile h6 {
    position: relative;
    color: #131313;
    z-index: 2;
    font-size: 30px;
    line-height: 40px;
}
.tile1 {
    background-color: #e7d9ff;
}
.tilebgimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    
}
.tilebgimg img{
    width: 100%;
    opacity: 0.6;;
}
.abshape{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.abshape img{
    width: 100%;
}
.abshape.shape1 {
    width: 134px;
    
} 

.tile2 {
    background-color: #f5cb96;
    padding: 60px 60px;
}
.tile2 h4 span{
    color: #ff7a56;
    font-weight: 600;
}

.abshape.shape2 {
    width: 113px;
    /* margin-left: 0px; */
    margin-top: -68px;
}

.abtile.tile3{
    background-color: #2e3192;
    background-image: url(../img/shapes/tilebg3.jpg);
    background-blend-mode: color-burn;
    background-size: cover;
    background-position: center;
    margin-top: -75px;
}
.abtile.tile3 h4 {
    color: #fff;
}
.abtile.tile3 h4 span{
    color: #00fcff;
}
.abtile.tile4 {
    background-color: #cffdd0;
    background-image: url(../img/shapes/tilebg4.jpg);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    margin-top: 28px;
    padding: 68px 62px;
}

.abtile.tile4 h4 span{
    color: #1a6802;
    font-weight: 600;
}
.abtile.tile5 {
    background-color: #ffe7f3;
    background-image: url(../img/shapes/tilebg5.jpg);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    margin-top: -191px;
    padding: 34px;
}
.abtile.tile5 span{
    color: #9e03a4;
    font-weight: 600;
}
.abshape.shape3 {
    width: 80px;
    /* margin-left: 0px; */
    margin-top: -170px;
}
.scale1 {
    animation: scalling 5s ease-in-out infinite alternate-reverse both;
}
.shape3 img{
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
}
@keyframes scalling {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(-1);
    }
    100% {
        transform: scaleX(1);
    }
}

.aboutparatileWrap {
    padding: 150px 70px;
    background: #002157;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.aboutparaimg {
    width: 308px;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    transform: translateX(-50%);
    height: fit-content;
}
.aboutparaimg img{
    width: 100%;
}
.aboutparaText {
    margin-left: 150px;
}
.aboutparaText p{
    color: #fff;
    font-size: 20px;
    line-height: 35px;
}
.aboutparaText p:first-child {
    margin-bottom: 20px;
}


.abgetstartedbtn .defaultBtn a, .abgetstartedbtn .defaultBtn button {
    padding: 13px 40px;
    height: 49px;
    font-size: 19px;
}

.journeycontent {
    margin-right: 50px;
}
.journeycontent p{
    text-align: left;
    font-size: 18px;
}
.journeytiles {
    padding: 30px 30px;
    border-radius: 8px;
    border: 1px solid #efe9f1;
    margin-bottom: 22px;
}
.journeytileWrap h3{
    font-size: 22px;
    font-weight: 700;
}
.journeytileWrap p{
    font-size: 20px;
    line-height: 30px;
    margin-top: 13px;
}
.jourtile1 {
    background-color: #d8f7f3;
}
.jourtile2 {
    background-color: #ffe5ab;
}
.bgjourney {
    background-color: #fcf6ff;
}
.jourupdownani1 {
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2;
}
.jourupdownani2 {
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
    animation-delay: 0.4;
}
.ourvalue-subtitle-padding {
    padding: 0px 14%;
}


.ourValuesWrap{
    margin-top: 50px;
}
.ourvaluestile {
    padding: 30px;
    border-radius: 10px;
    min-height: 280px;
    margin-bottom: 22px;
    background-image: url(../img/shapes/our-value-tile-bg.jpg);
    background-size: 100% 100%;
    background-blend-mode: lighten;
}
.ourvaluestile.tile1 {
    background-color: #effbff;
    border: 1px solid #d6e9f5;
}
.ourvaluestile.tile2 {
    background-color: #fff0f0;
    border: 1px solid #f5d6d6;
}
.ourvaluestile.tile3 {
    background-color: #eff2ff;
    border: 1px solid #d6d8f5
}
.ourvaluestile.tile4 {
    background-color: #fffbdb;
    border: 1px solid #fffdb9;
}
.ourvaluestile.tile5 {
    background-color: #e7e5ff;
    border: 1px solid #dcd6f5;
}
.ourvaluestile.tile6 {
    background-color: #d2ffc4;
    border: 1px solid #d6f5d7;
}
.ourvaluesIcon {
    width:100px;
    margin-left: auto;
    margin-right: auto;
}
.ourvaluesIcon img{
    width: 100%;
}
.ourvalueContent {
    margin-top: 10px;
    text-align: center;
}
.ourvalueContent h4{
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0px;
    margin-top: 0px;
}


.ourcultureDiv{
    padding: 70px 70px;
    background: #002157;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.ourcultureTitle h4 {
    margin-bottom: 12px;
    color: #00fdff;
    font-size: 20px;
}
.ourcultureTitle h2{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    /* font-size: 38px; */
    font-size: 42px;
}
.ourcultureTitle .typed{
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    font-family: 'Poppins';
}
.ourcultureTitle .typed .color1{
    color: #907eff;
}
.ourcultureTitle .typed .color2{
    color: #907eff;
}
.ourcultureTitle .typed .color3{
    color: #fe5621;
}
.ourcultureTitle .typed .color4{
    color: #bff130;
}
.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
    font-size: 24px;
    color: #ddd;
}
.ourcultureMainContent {
    margin-top: 30px;
}
.ourcultureMainContent p{
    color: #fff;
}
.titlePara{
    margin: 10px 0px;
}

.whyChooseus {
    background: radial-gradient(#ffffffd9, #ffffffd9), url(../img/bg/why-sec-bg.jpg);
    background-size: 100% 100%;
}
.whychoosWrap {
    margin-top: 50px;
}
.topleftcorImg {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
    width: 170px;
}

.whyChooseTile {
    position: relative;
    min-height: 330px;
    min-height: auto;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}
.whyChooseTile::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transition: 0.4s ease-in-out;
    border-radius: 10px;
}
.whyChooseTile.tile1::after {
    background: radial-gradient(#fff, #e6f7ff);
}
.whyChooseTile.tile2::after {
    background: radial-gradient(#fff, #ffe6fa);
}
.whyChooseTile.tile3::after {
    background: radial-gradient(#fff, #dbffbb);
}
.whyChooseTile.tile4::after {
    background: radial-gradient(#fff, #ffe6e6);
}
.whyChooseTile.tile5::after {
    background:radial-gradient(#fff, #f7ffce);
}
.whyChooseTile:hover:after {
    height: 100%;
} 
.whyChooseTileIcon {
    width: 90px;
    margin: auto;
    padding: 19px;
    height: 90px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.4s ease-in;
    margin-top: 19px;
    z-index: 2;
}
.whyChooseTile:hover .whyChooseTileIcon {
    background: #fff;
}
.whyChooseTileIcon img{
    width: 100%;
}
.whyChooseTileContent {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 5px;
}
.whyChooseTileContent h4{
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px;
    margin-top: 10px;
}

.whyChooseTileContent p{
    position: relative;
    margin-top: -100px;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
}
.whyChooseTile:hover .whyChooseTileContent p{
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}


.servicesWrapper {
    margin-top: 50px;
}
.serviceCard {
    background-image: url(../img/bg/servicetilebg.jpg);
    padding: 20px;
    border-radius: 8px;
    min-height: 200px;
    display: flex;
    align-items: center;
    background-blend-mode: color-burn;
    background-size: cover;
    background-position: center center;
}
.serviceCard.color1{
    background-color: #d8f7f3d4;
}
.serviceCard.color2 {
    background-color: #b7ffb5d4;
} 
.serviceCard.color3 {
    background-color: #ffd4f6d4;
} 
.serviceCard.color4 {
    background-color: #fff5d4d4;
} 
.serviceCard.color5 {
    background-color: #d4f6ffd4;
} 
.serviceccTitle {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0px;
    margin-top: 0px;
}
.serItile1 {
    margin-top: 290px;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
}
.serItile2 {
    margin-top: 0px;
    animation: upandDown 5.5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.5s;
}
.serItile3 {
    margin-top: 290px;
    animation: upandDown 4.5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.9s;
}
.serItile4 {
    margin-top: 40px;
    animation: upandDown 5.9s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
    animation: upandDown 5.9s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
}

.serIItile1 {
    margin-top: 0px;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
}
.serIItile2 {
    margin-top: 0px;
    animation: upandDown 5.5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.5s;
}
.serIItile3 {
    margin-top: 0px;
    animation: upandDown 4.5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.9s;
}
.serIItile4 {
    margin-top: 20px;
    animation: upandDown 5.9s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
}
.serIItile5 {
    /* margin-top: 20px; */
    animation: upandDown 5.9s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.2s;
}
.whyChooseus.serbg2 {
    background: radial-gradient(#fdfdfd9c, #f2eaff6b), url(../img/bg/serbg2.jpg);
} 
.someotherTitle h3{
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}
.someotherTitle h3 span{
    color: #280170;
}
.someotherTitle h4{
    font-weight: 600;
}

.serviceGraphicImg.sectI {
    width: 23%; 
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
    height: fit-content;
}
.serviceGraphicImg.sectIII {
    width: 21%;
    position: absolute;
    left: 0px;
    top: 90px;
    right: 0px;
    margin: auto;
    bottom: 0px;
    height: fit-content;
}

.serviceGraphicImg img{
    width: 100%;
}
.serviceGraphicImg.sectII {
    width: 80%;
    margin: auto;
}
.serviceGraphicImg.sectII img{
    animation: upandDown 4s ease-in-out infinite alternate-reverse both;
    animation-delay: 1s;
}
.serviceGraphicImg.sectIV {
    width: 60%;
    margin: auto;
}
.serIItile3.serTile4Last {
    margin-top: 50px;
}
.contactUsCard.contactbg1 {
    background: radial-gradient(#2dc3b852, #1e9c92), url(../img/bg/contact-tile-bg.jpg);
    background-size: cover;
    background-position: center center;
    animation: upandDown 4s ease-in-out infinite alternate-reverse both;
    animation-delay: 1s;
    min-height: 220px;
}
.contactUsCard.contactbg2 {
    background: radial-gradient(#af5f0b75, #af5f0b9c), url(../img/bg/contact-tile-bg.jpg);
    background-size: cover;
    background-position: center center;
    animation: upandDown 4.5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.3s;
    min-height: 220px;
}
.contactUsCard.contactbg3 {
    background: radial-gradient(#2dc3b852, #1e9c92), url(../img/bg/contact-tile-bg.jpg);
    background-size: cover;
    background-position: center center;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
    animation-delay: 1.8s;
    min-height: 220px;
}


.industriesWeServe{
    margin-top: 50px;
}
.industriesTile {
    padding: 0px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 9px;
}
.industriesTile::after{
    position: absolute;
    z-index: 1;
    content: '';
    /* width: 86%; */
    width: 100%;
    /* height: 106%; */
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 127px;
    animation-name: fadeIn;
    animation-delay: 1s;
}
.industriesTile.industile1::after{
    background: radial-gradient(#fff, #e6f7ff);
}
.industriesTile.industile2::after{
    background: radial-gradient(#fff, #ffe6e6);
}
.industriesTile.industile3::after{
    background: radial-gradient(#fff, #dbffbb);
}
.industriesTile.industile4::after{
    background: radial-gradient(#fff, #ffe6fa);
}
.industriesTile.industile5::after{
    background: radial-gradient(#fff, #f7ffce);
}
.innerBanner.industriesbg {
    background-image: url(../img/bg/industries-bg.jpg);
}
.industriesIco {
    height: 120px;
    width:120px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.4s ease-in;
    margin-top: 19px;
    z-index: 2;
    border-radius: 100%;
    /* top: -89px; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    overflow: hidden;
}

.industriesIco img{
    margin: auto;
    padding: 25px;
    height: 120px;
    width:120px;
    background: #fff;
    -ms-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    
}
.industriesTile:hover  .industriesIco img {
    /* animation: rotateIflipCon 0.5s linear ; */
    -ms-transform: ScaleX(-1) translateY(-4px);
    -webkit-transform: ScaleX(-1)translateY(-4px);
    transform: ScaleX(-1)translateY(-4px);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
/* .industriesTileContent {
    text-align: center;
    padding: 30px 10px;
    border: 1px solid #dddddd47;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    border-radius: 0px;
    position: relative;
    z-index: 2;
    top: -63px;
    min-height: 241px;
} */
.industriesTileContent {
    text-align: center;
    padding: 10px 18px 30px;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0px;
    position: relative;
    z-index: 2;
    top: 0px;
    min-height: auto;
    width: 90%;
    text-align: center;
    margin: auto;
    background:#ffffff82;
    min-height: 116px;
    border-bottom-left-radius: 147px;
    border-bottom-right-radius: 147px;
    margin-top: 25px;
    margin-bottom: 2px;
}
.industriesTileContent h3{
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0px;
    margin-top: 0px;
    color: #2b05b1;
    line-height: 25px;
    position: relative;
    top: 17px;
}
.industriesTile.industile2 .industriesTileContent h3 {
    color: #e95151;
}
.industriesTile.industile3 .industriesTileContent h3 {
    color: #5ba73d;
}
.industriesTile.industile4 .industriesTileContent h3 {
    color: #eb3dbd;
}
.industriesTile.industile5 .industriesTileContent h3 {
    color: #edbe0a;
}
.industriesTileContent p{
    margin-top: 10px;
}
/* .industriesTile.industile1 .industriesIco img {
   
}
.industriesTile.industile2 .industriesIco img {
    animation: rotateIflipCon 0.3s linear infinite;
}
.industriesTile.industile3 .industriesIco img {
    animation: rotateIflipCon 0.3s linear infinite;
}
.industriesTile.industile4 .industriesIco img {
    animation: rotateIflipCon 0.3s linear infinite;
}
.industriesTile.industile5 .industriesIco img {
    animation: rotateIflipCon 0.3s linear infinite;
} */


.industriesAccordWrap .accordion{
    border: none;
}
.industriesAccordWrap .accordion-item{
    border: none;
}
.industriesAccordWrap .induscont1 {
    background: linear-gradient(270deg, #fff, #f7fdff);
    border-radius: 10px;
    overflow: hidden;
    text-align: justify;
}
.industriesAccordWrap .induscont2 {
    background: linear-gradient(270deg, #fff, #eeffe7);
    border-radius: 10px;
    overflow: hidden;
    text-align: justify;
}
.industriesAccordWrap .induscont3 {
    background: linear-gradient(270deg, #fff, #fff3fc);
    border-radius: 10px;
    overflow: hidden;
    text-align: justify;
}
.industriesAccordWrap .induscont4 {
    background: linear-gradient(270deg, #fff, #f9ffdf);
    border-radius: 10px;
    overflow: hidden;
    text-align: justify;
}
.industriesAccordWrap .induscont5 {
    background:linear-gradient(270deg, #fff, #fff4f4);
    border-radius: 10px;
    overflow: hidden;
    text-align: justify;
}
.industriesAccordWrap .accordion-item .accordion-button {
    font-size: 20px;
    font-weight: 600;
    padding: 28px 20px 16px;
}
.industriesAccordWrap .accordion-item .accordion-button h5{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 7px;
    margin-top: 12px;
}
.industriesAccordWrap .accordion-item .accordion-button h5::after{
    position: absolute;
    content: '';
    width: 26px;
    height: 4px;
    left: 0px;
    top: 97%;
    background: #2a04b0;
    visibility: hidden;
}
.industriesAccordWrap .accordion-item .accordion-button h5::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0px;
    top: 100%;
    border: 1px solid #ddd;
    bottom: 0px;
    visibility: hidden;
}
.industriesAccordWrap .accordion-item .accordion-button:not(.collapsed) h5::before{
    visibility: visible;

}
.industriesAccordWrap .accordion-item .accordion-button:not(.collapsed) h5::after{
    visibility: visible;

}
.industriesAccordWrap .accordion-item .accordion-button::after {
    background-size: 15px;
}

.industriesAccordWrap .induscont1 .accordion-button {
    position: relative;
    margin-bottom: 0px;
}
.industriesAccordWrap .accordion-item .accordion-button:not(.collapsed) {
    background: transparent;
    border: none;
    border-radius: 10px;
    margin-bottom: 0px;
    box-shadow: none;
}
.industriesAccordWrap .accordion-item .accordion-button::before {
    position: absolute;
    content: '';
    top: 100%;
    width: 100%;
    height: 1px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    border: 1px dashed #38383814;
}
.industriesAccordWrap .accordion-item .accordion-button:not(.collapsed)::before {
    top: 100%;
    width: 2px;
    height: 100%;
    left: 0px;
    top: 0px;
    bottom: 0px;
}
.industriesAccordWrap .induscont1 .accordion-button:not(.collapsed)::before {
    background: #3c2f8a;
}
.industriesAccordWrap .induscont2 .accordion-button:not(.collapsed)::before {
    background: #3c2f8a;
}
.industriesAccordWrap .induscont3 .accordion-button:not(.collapsed)::before {
    background: #3c2f8a;
}
.industriesAccordWrap .induscont4 .accordion-button:not(.collapsed)::before {
    background: #3c2f8a;
}
.industriesAccordWrap .induscont5 .accordion-button:not(.collapsed)::before {
    background: #3c2f8a;
}
.industriesAccordWrap .accordion-item .accordion-button img {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    margin-right: 10px;
}
.industriesAccordWrap .accordion-item .accordion-collapse{
    position: relative;
}
.industriesAccordWrap .accordion-item .accordion-collapse::after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    top:0px;
    width: 1px;
    height: 100%;
}
.industriesAccordWrap .accordion-item .accordion-collapse.show::after {
    border: 1px dashed #ddd;
}
.industriesAccordWrap .accordion-item .accordion-collapse.show {
    border: none;
    box-shadow: none;
}
.industriesAccordWrap .accordion-item .accordion-collapse:not(.show) {
    background: transparent;
    border: none;
    border-radius: 10px;
    box-shadow: none;
}
.indusAccordioChange {
    height: 100%;
}
.indusimgs {
    width: 100%;
    padding: 10px;
    height: 100%;
}
.indusimgs img{
    width: 100%;
    animation: upandDown 4.5s ease-in-out infinite alternate-reverse both;
}

.indusimgs .accordion-img {
    display: none;
}
.indusimgs .accordion-img.indusimg1 {
    display: block;
}
.industMainBG {
    background: radial-gradient(#fffffff2, #f4f5ffe0), url(../img/bg/industries-main-bg.jpg);
    background-size: 100%;
    background-position: center;
    padding: 60px 0px;
}
.testimonialbg {
    background-image: url(../img/bg/testimonials-bg.jpg);
}


.ourCultureGallery {
    margin-top: 30px;
}
.galleryImgWrap.row {
    gap: 24px 0px;
} 
.galleryImg img{
    width: 100%;
    border-radius: 5px;
    border: 4px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.galleryImg a{
    display: block;
    position: relative;
}
.galleryImg {
    text-align: center;
    overflow: hidden;
    border-radius: 8px;

}
.galViewer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000021;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}
.galleryImg a:hover .galViewer{
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.galViewer i{
    font-size: 24px;
    color: #fff;
}


.langDropdown .btn{
    background: none;
    border: none;
    color: #000;
    font-size: 14px;
    padding: 12px 0px;
}
.headerRightMenu .langDropdown li{
    margin: 0px;
}
.langDropdown .dropdown-menu {
    padding: 0px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0px 6px 15px #7373732e;
    border: none;
}
.langDropdown .dropdown-item {
    padding: 4px 9px;
    width: auto;
    border-radius: 8px;
    background: none;
    border-bottom: 1px solid #dddddd4d;
    color: #0c0c0c;
    font-size: 14px;
}
.langDropdown .dropdown-item.active, .langDropdown .dropdown-item:active {
    /* background: linear-gradient(180deg, #290090, #2d07ba); */
    background: none;
    color: #0240a8;
    padding-left: 20px;
}
.langDropdown .dropdown-item:hover {
    color: #0240a8;
    padding-left: 20px;
}


.copyright-section {
    width: 100%;
    background: #1d1d1d;
    padding: 12px 0px;
}

.copyright-section p {
    margin: 0px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.footPrivacyPolicy ul {
    display: flex;
    align-items: center;
    color: #fff;
}
.footPrivacyPolicy ul li {
    color: #fff;
    margin: 0px 8px 0px 9px
}
.footPrivacyPolicy ul li a{
    color: #fff;
    font-size: 14px;
}
.footPrivacyPolicy ul li a:hover {
    text-decoration: underline;
}
    .video-wrapers {
        position: relative;
        height: 500px;
        background: url(../img/bg/video-images.png) center / cover no-repeat;
    }

@media screen and (max-width:1240px) and (min-width:1000px) {
    .bannerLeftContent h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .headerMenu>li {
        padding: 22px 15px;
    }

    .bannerLeftContent h4 {
        font-size: 17px;
    }

    /* .bannerContent {
        height: 410px;
    } */
/* 
    .bannerCarousel {
        height: 410px;
    } */
}

@media screen and (max-width:999px) and (min-width:800px) {
    .serviceboxContent h2 {
        font-size: 15px;
    }

    .headerMenu>li>a {
        font-size: 12px;
    }

    .headerMenu>li {
        padding: 22px 8px;
    }

    .headerSubMenu>li a {
        font-size: 12px;
        padding: 5px 12px;
    }

    .defaultBtn a span,
    .defaultBtn button span {
        font-size: 12px;
    }

    .logoSection {
        width: 130px;
    }

    .bannerLeftContent h5 {
        font-size: 16px;
        line-height: 35px;
    }

    .bannerLeftContent h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .bannerLeftContent {
        width: 60%;
    }

    .bannerContent {
        height: auto;
    }

    .bannerCarousel {
        height: auto;
    }

    .serviceImg img {
        width: fit-content;
        height: 100%;
        width: auto;
    }

    .testimonials .row {
        flex-direction: column-reverse;
    }

    .testimonials .aboutSideContents {
        text-align: center;
    }

    .testimonials {
        padding-bottom: 70px !important;
    }

    .testimonials .defaultBtn {
        position: absolute;
        bottom: 44px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 3;
    }

    .footer-btm-wrp .row {
        justify-content: space-between;
    }
}


@media only screen and (max-width:768px) {
    .cardleftAnimation {
       transform: rotate(0deg) translateX(0px)!important;
        /* animation: zoomIn!important; */
    }
    .cardrightAnimation {
        transform: rotate(0deg) translateX(0px)!important;
        /* animation: zoomIn!important; */
    }
    .aboutOtherCard.color1 {
        width: 100%;
    }
    .aboutOtherCard.color2{
        width: 100%;
    }
    .aboutOtherCard.color3{
        width: 100%;
    }
    .aboutOtherCard.color4{
        width: 100%;
    }
    .headerMenu>li>a::after {
        bottom: -1px;
        background: #ffffff;
    }
    .abshape.shape1{
        display: none;
    }
    .abshape.shape2 {
        display: none;
    }
    .abtile.tile3{
        margin-top: 20px;
    }
    .tile2{
        margin-top: 20px;
    }
    .abtile.tile5{
        margin-top: 20px;
    }
    .abshape.shape3{
        display: none;
    }
    .aboutparatileWrap{
        padding: 60px 40px;
    }
    .journeycontent{
        margin-right: 0px;
    }
    .journeytiles{
        margin-top: 30px;
    }
    .hamburger {
        display: block;
    }

    .headerNav {
        position: fixed;
        display: none;
        background: linear-gradient(48deg, #5ed2c8, #2daaa0);
        top: 85px;
        width: 100%;
        height: 100vh;
        left: 0px;
    }

    .headerMenu {
        flex-direction: column;
    }

    .headerSubNav {
        display: none;
        width: 100%;
        position: relative;

    }

    .headerSubNav {
        visibility: visible;
        opacity: 1;
    }

    .headerMenu>li.hasSub:hover .headerSubNav {
        visibility: unset;
        opacity: unset;
        top: unset;
        margin-top: unset;
        transition: unset;
        border-radius: 8px;
        overflow: unset;
        background: #160a3e;
    }

    .headerMenu>li.hasSub i {
        position: absolute;
        right: 0px;
        top: 0px;
        color: #fff;
        width: 34px;
        height: 38px;
        text-align: center;
        line-height: 34px;
    }

    .headerMenu>li {
        width: 95%;
        margin: 0px auto;
        padding: 0px 8px;
        border-bottom: 1px solid #dddddd57;
    }

    .headerMenu>li.hasSub {
        position: relative;
    }

    .headerMenu>li>a {
        padding: 7px 0px;
        position: relative;
        display: block;
        color: #fff;
    }

    .headerMenu>li a:hover:after {
        left: unset;
        right: unset;
        width: unset;
    }

    .headerSubMenu>li a {
        padding: 8px 12px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #dddddd57;
        transition: all 0.3s ease-in-out;
        background: #c37c2f;
        color: #fff;
    }

    .headerSubMenu>li:last-child a {
        border-bottom: none;
    }

    .headerMenu>li a:hover {
        color: #00b1ff;
        ;
    }

    .hasSub.active>a {
        color: #ffffff;
    }
    .serItile1 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .serviceGraphicImg.sectI {
        width: 80%;
        position: relative;
    }
    .serItile3 {
        margin-top: 30px;
    }
    .serIItile2{
        margin-bottom: 30px;
    }
    .serIItile3{
        margin-bottom: 30px;
    }
    .titleSection h2 {
        font-size: 32px;
    }
    .serviceGraphicImg.sectIII{
        width: 80%;
        position: relative;
        top: 0px;
    }
    .servicesWrapper{
        margin-top: 10px;
    }
    .whychoosWrap .row .col {
        width: 50%;
        flex: unset;
    }
    .whychoosWrap .row {
        flex-wrap: wrap;
    }
    .whyChooseTile::after {
        height: 100%;
    }
    .whyChooseTile  .whyChooseTileContent p {
        margin-top: 0px;
        visibility: visible;
        opacity: 1;
    }
    .whyChooseTileContent p {
        position: relative;
        margin-top: 0px;
        visibility: visible;
        opacity: 0;
        transition: 0.4s ease-in-out;
    }
    .whyChooseTile {
        margin-bottom: 20px;
    }
    .industriesWeServe .row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .industriesWeServe .row .col {
        width: 33%;
        flex: unset;
    }
    .industriesTileContent h3 {
        font-size: 15px;
    }
    .enquireNowForm.contactPage .right-sidebar-box {
        margin-top: 30px;
        margin-left: 0px;
    }
    .titleSection::after {
        top: auto;
        bottom: 0px;
    }
}


@media screen and (max-width:799px) and (min-width:599px) {
    a {
        font-size: 13px;
    }

    .serviceboxContent h2 {
        font-size: 15px;
    }

    .headerMenu>li>a {
        font-size: 12px;
    }

    .headerMenu>li {
        padding: 22px 8px;
    }

    .headerSubMenu>li a {
        font-size: 12px;
        padding: 5px 12px;
    }

    .defaultBtn a span,
    .defaultBtn button span {
        font-size: 12px;
    }

    .logoSection {
        width: 130px;
    }

    .bannerLeftContent h5 {
        font-size: 13px;
        line-height: 35px;
    }

    .bannerLeftContent h2 {
        font-size: 30px;
        line-height: 34px;
    }

    .bannerLeftContent p {
        color: #dddddd;
        margin-top: 5px;
        margin-bottom: 10px;
        line-height: 16px;
        font-size: 11px;
    }

    .bannerLeftContent {
        width: 75%;
     }

    /* .bannerContent {
        height: 236px;
    }  */
/* 
    .bannerCarousel {
        height: 332px;
    } */

    .forresponsive.aboutSideWrapper {
        width: 50%;
        margin: 0px auto;
        margin-bottom: 40px;
    }

    .aboutSideContentsWrapper {
        margin-left: 0px;
    }

    .aboutSide h5 {
        text-align: center;
    }

    .aboutSide h2 {
        text-align: center;
    }

    .aboutSide h4 {
        text-align: center;
    }

    .serviceImg {
        text-align: center;
    }

    .serviceImg img {
        width: fit-content;
        height: 100%;
        width: auto;
    }

    .flip-box-front,
    .flip-box-back {
        min-height: 236px;
    }

    .testimonials .row {
        flex-direction: column-reverse;
    }

    .testimonials .aboutSideContents {
        text-align: center;
    }

    .testimonials {
        padding-bottom: 70px !important;
    }

    .testimonials .defaultBtn {
        position: absolute;
        bottom: 44px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 3;
    }

    .footer-btm-wrp .row {
        justify-content: space-between;
    }

    .scrolling-text {
        font-size: 33px;
    }

    .scrolling-text.fulltext {
        line-height: 75px;
        font-size: 101px;
    }
}

@media screen and (max-width:598px) and (min-width:400px) {
    .aboutinnerbnrSec{
        padding-bottom: 0px;
    }
    .abnrqs h4 {
        font-size: 30px;
    }
    .abwordAnimated {
        font-size: 30px;
    }
    .serviceboxContent h2 {
        font-size: 15px;
    }

    .headerMenu>li>a {
        font-size: 12px;
    }

    .headerMenu>li {
        padding: 8px 8px;
    }

    .headerSubMenu>li a {
        font-size: 12px;
        padding: 5px 12px;
    }

    .defaultBtn a span,
    .defaultBtn button span {
        font-size: 12px;
    }

    .logoSection {
        width: 130px;
    }

    .bannerLeftContent h5 {
        font-size: 10px;
        line-height: 20px;
    }

    .bannerLeftContent h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .bannerLeftContent p {
        color: #dddddd;
        margin-top: 5px;
        margin-bottom: 10px;
        line-height: 12px;
        font-size: 9px;
    }

    .bannerLeftContent a {
        background: linear-gradient(180deg, #290090, #2d07ba);
        padding: 2px 10px;
        display: inline-block;
        color: #fff;
        border-radius: 8px;
        font-size: 10px;
    }

    .bannerLeftContent {
        width: 60%;
    }

    /* .bannerContent {
        height: 200px;
    } */

    /* .bannerCarousel {
        height: 200px;
    } */

    .bannerCarousel.owl-theme .owl-nav {
        visibility: hidden;
        opacity: 0.2;
    }

    .bannerCarousel.owl-theme:hover .owl-nav {
        visibility: visible;
        opacity: 1;
    }

    .forresponsive.aboutSideWrapper {
        width: 90%;
        margin: 0px auto;
        margin-bottom: 40px;
    }

    .aboutSideContentsWrapper {
        margin-left: 0px;
    }

    .aboutSide h5 {
        text-align: center;
    }

    .aboutSide h2 {
        text-align: center;
        font-size: 24px;
    }

    .aboutSide h4 {
        text-align: center;
        font-size: 15px;
    }

    .serviceImg {
        text-align: center;
    }

    .serviceImg img {
        width: fit-content;
        height: 100%;
        width: auto;
    }

    .flip-box-front,
    .flip-box-back {
        min-height: 156px;
    }

    .titleSection h2 {
        font-size: 24px;
    }

    .testimonials .row {
        flex-direction: column-reverse;
    }

    .testimonials .aboutSideContents {
        text-align: center;
    }

    .testimonials {
        padding-bottom: 70px !important;
    }

    .testimonials .defaultBtn {
        position: absolute;
        bottom: 44px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 3;
    }

    .footer-btm-wrp .row {
        justify-content: space-between;
    }

    .scrolling-text {
        font-size: 33px;
    }

    .scrolling-text.fulltext {
        line-height: 75px;
        font-size: 101px;
    }
}

@media screen and (max-width:480px) and (min-width:299px) {
    .industriesTile {
        margin-bottom: 20px;
    }
    .industriesWeServe .row .col {
        width: 50%!important;
    }
    .whychoosWrap .row .col {
        width: 100%!important;
    }
    .innerBannerContent {
        height: 131px;
    }
    .inrbnrMain h2 {
        font-size: 30px;
        font-weight: 600;
    }
    .someotherTitle h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .someotherTitle h4 {
        font-weight: 600;
        font-size: 15px;
    }
    .ourcultureDiv {padding: 20px;}
    .h2font1.aboutSide h2 {
        font-size: 25px;
    }
    .ourvalue-subtitle-padding {
        padding: 0px;
    }

    .h2font1.aboutSide h4 {
        margin-bottom: 30px;
        line-height: 18px;
        margin-top: 11px;
        font-size: 13px;
    }
    .titleSection h2 {
        font-size: 20px!important;
    }
    .aboutparatileWrap {
        padding: 20px!important;
    }
    .titleSection h4 {
        font-size: 15px;
        font-weight: 600;
        color: #000000;
    }
    .aboutSide p {
        line-height: 28px;
        font-size: 16px;
    }
    .aboutinnerbnrSec{
        padding-bottom: 0px;
    }
    .abnrqs h4 {
        font-size: 20px;
    }
    .abwordAnimated {
        font-size: 20px;
    }
    .abtile h1, .abtile h2, .abtile h3, .abtile h4, .abtile h5, .abtile h6 {
        font-size: 20px;
        line-height: 27px;
    }
    .tile2 {
        padding: 30px 30px;
    }
    .abtile.tile4{
        padding: 30px;
    }
    .aboutparaimg{
        display: none;
    }
    .aboutparaText {
        margin-left: 0px;
    }
    .aboutparaText p {
        color: #fff;
        font-size: 16px;
        line-height: 28px;
    }
    .aboutparatileWrap {
        padding: 22px 22px;
    }
    .serviceboxContent h2 {
        font-size: 15px;
    }
    .serviceboxContent h2 {
        font-size: 22px;
    }

    .headerMenu>li>a {
        font-size: 18px;
    }
    .headerMenu>li a:hover, .headerMenu>li a.active {
        color: #6cfff3;
    }
    .headerMenu>li a:hover:after, .headerMenu>li a.active:after { display: none; }
    .headerMenu>li {
        padding: 8px 8px;
    }
    .headerMenu>li.hasSub i {
        top: 12px;
    }



    /* .headerMenu>li {
        padding: 22px 8px;
    } */

    .headerSubMenu>li a {
        font-size: 12px;
        padding: 5px 12px;
    }

    .defaultBtn a span,
    .defaultBtn button span {
        font-size: 12px;
    }

    .logoSection {
        width: 110px;
    }

    .bannerLeftContent h5 {
        font-size: 14px;
        line-height: 1;
    }

    .bannerLeftContent h2 {
        font-size: 18px;
        line-height: 1.2;
    }

    .bannerLeftContent p {
        color: #dddddd;
        margin-top: 5px;
        margin-bottom: 10px;
        line-height: 1.3;
        font-size: 12px;
    }

    .bannerLeftContent a {
        background: linear-gradient(180deg, #290090, #2d07ba);
        padding: 2px 10px;
        display: inline-block;
        color: #fff;
        border-radius: 8px;
        font-size: 10px;
    }

    .bannerLeftContent {
        width: 100%;
    }
/* 
    .bannerContent {
        height: 170px;
    }

    .bannerCarousel {
        height: 170px;
    } */

    .bannerCarousel.owl-theme .owl-nav {
        visibility: hidden;
        opacity: 0.2;
    }

    .bannerCarousel.owl-theme:hover .owl-nav {
        visibility: visible;
        opacity: 1;
    }

    .forresponsive.aboutSideWrapper {
        width: 90%;
        margin: 0px auto;
        margin-bottom: 40px;
    }

    .aboutSideContentsWrapper {
        margin-left: 0px;
    }

    .aboutSide h5 {
        text-align: center;
    }

    .aboutSide h2 {
        text-align: center;
        font-size: 24px;
    }

    .aboutSide h4 {
        text-align: center;
        font-size: 15px;
    }

    .serviceImg {
        text-align: center;
    }

    .serviceImg img {
        width: fit-content;
        height: 100%;
        width: auto;
    }

    .flip-box-front,
    .flip-box-back {
        min-height: 156px;
    }

    .titleSection h2 {
        font-size: 24px;
    }

    .testimonials .row {
        flex-direction: column-reverse;
    }

    .testimonials .aboutSideContents {
        text-align: center;
    }

    .testimonials {
        padding-bottom: 70px !important;
    }

    .testimonials .defaultBtn {
        position: absolute;
        bottom: 44px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: 3;
    }

    .footer-btm-wrp .row {
        justify-content: space-between;
    }

    .scrolling-text {
        font-size: 33px;
    }

    .scrolling-text.fulltext {
        line-height: 75px;
        font-size: 101px;
    }

    .footer-links-wrp .col {
        width: 100%;
        flex: 1 0 100%;
    }
}

#lg-download{ 
    display: none;
}



.find-a-location-continent {
    font-size: 2.25rem;
    color: #4c4c4c;
    font-weight: 800;
    border-bottom: 1px solid #4c4c4c;
    padding-bottom: 20px;
}

.find-a-location-continent h3 {
    font-weight: 800;
    font-size: 36px !important;
}

.office-loaction-block .address-block {
    background: #ebebeb;
    padding: 20px;
    display: table-cell;
    height: 100%;
    float: none;
    vertical-align: top;
}


.office-loaction-block {
    display: table;
    width: 100%;
    margin-bottom: 30px;
}


.office-loaction-block .map-block {
    display: table-cell;
    height: 100%;
    float: none;
    vertical-align: top;
    padding: 0;
}

.map-block iframe {
    width: 100%;
    float: left;
}


@media(max-width: 767px){
    .office-loaction-block .address-block {
        display: block;
        width: 100%;
        float: left;
    }


.office-loaction-block .map-block {
    display: block;
    width: 100%;
    float: left;
}
}

.right-sidebar-box2{
    max-width: 100% !important;
    margin-left: 0px !important;
}



.our-testi-carousel img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
  }
  .carousel-inner {
    padding: 1em;
  }
  
  @media screen and (min-width: 576px) {
    .carousel-inner {
      display: flex;
      width: 90%;
      margin-inline: auto;
      padding: 1em 0;
      overflow: hidden;
    }
    .carousel-testi-item {
      display: block;
      margin-right: 0;
      flex: 0 0 calc(100% / 2);
    }
  }
  @media screen and (min-width: 768px) {
    .carousel-testi-item {
      display: block;
      margin-right: 0;
      flex: 0 0 calc(100% / 3);
    }
  }
  /* .our-testi-carousel .card {
    margin: 0 0.5em;
    border: 0;
  } */
  

.testicard{
    border-radius: 10px;
    min-height: 150px !important;
    border: 0px solid #ddd;
    background-color: #f2f2f2;
    /* box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.12), 0 8px 8px rgba(0,0,0,0.12), 0 16px 16px rgba(0,0,0,0.12); */
  }

  .testi-box{
    min-height: 180px !important;
  }





  .markqu-s{
    font-family: 'neutraface_textbold';
    font-size: 30px;


      animation: marques 6s ease-in-out infinite alternate-reverse both;

}

@keyframes marques {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(400px);
    }

    100% {
        transform: translateX(0px);
    }
}

.markqu-s span{
    color: rgba(241, 42, 35, 0.9);
    font-size: 50px;
}


  /* about us css start */


  .contents h2{
    font-size: 50px;
    color: #af5f0b;
    font-family: 'Poppins', serif;
    font-weight: 600;
  }

  .ul-abnner  li  a{
            color: #009d92;
            font-size: 18px;
            font-weight: 500;
            font-family: 'Poppins', serif;
  }

  .ul-abnner  li:last-child{
            color: #cf7413;
            font-size: 18px;
            font-weight: 500;
            font-family: 'Poppins', serif;
  }

  .bg-about-us-banner{
    background-image: url("../img/bg/about-ban.jpg");background-size:cover;background-repeat: no-repeat; margin-top: 100px;padding: 15px 0px;
  }


.content-missionheadings h2{
    font-size: 40px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', serif;
}
.content-missionheadings h2 span{
            color: #bf6300;
}
.bg-images-missions{
    background-image:linear-gradient(90deg, #59bab2c9, #bb6910ad), url(../img/bg/bg7.jpg);
    background-size:100%;
    background-repeat: no-repeat;
}
.bg-colors-exposers{
    background: linear-gradient(34deg, rgb(186 104 15 / 13%) 17%, rgb(0 183 168 / 37%) 82%);
    padding: 50px  0px;
}
.bg-colors-exposers h2{
    color: #bf6300;
    font-size: 40px;
    font-weight: 700;
}

.mancals-ul ul li{
            margin: 5px 0px;
            font-weight: 400;
            color: black;
}

.mancals-ul ul li::before{
        content: "\f058";
        font-family:"Font Awesome 5 Free" ;
        display: inline;
        color: green;
        margin-right: 10px;
}

.mancals-ul ul li ol li::before{
       display: none;
}

.bg-ul-img img{
    max-width: 100%;
    border-radius: 10px;
}

.bg-maninfobar{
    background-image: url("../img/bg/information-bar.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.con-images{
    padding: 100px 0px;
}
.con-images h2{
    font-size: 40px;
    color: white;
    font-weight: 600;
}

.con-images p{
        color: #1d1d1d;
        font-size: 16px;
        margin: 10px 0px;
}

.con-images a{
    background: linear-gradient(rgb(195, 124, 47), rgb(187, 105, 16));
    padding: 6px 20px;
    margin: 0px 0px;
    color: white;
    font-weight: 600;
    display: inline-block;
    border-radius: 8px;
}

.img-ab img{
    max-width: 100%;
}

.contents{
    margin-left: 155px;
}

.b-color-misiion{
    padding: 21px;
    border-radius: 12px;
}
.color-vision{
    background: linear-gradient(rgb(255 207 154 / 80%), rgb(255 166 69 / 61%));
    border: 1px solid #b56d1d;
}
.color-mission{
    background: linear-gradient(rgb(59 161 152 / 53%), rgb(73 173 165 / 57%));
    border: 1px solid #297f77;
}

.bg-contants-mission h3{
    color: #04ad9f;
    font-size: 24px;
    font-weight: 700;
}

.bg-contants-mission p{
            color: #080808;
}
.img-visson img{
    max-width: 100%;
}

.content-values h2{
    color: #c37c2f;
    font-size: 40px;
    font-weight: 700;
}

.content-values{
    background-image: url("../img/bg/industries-bg.jpg");
    padding: 30px 40px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.content-values  p{
    margin: 5px 0px;
}

  /* about us End */


  .contactMain a{
    position: relative;
    padding-left: 40px;
    display: block !important;
    
  }

  .contactMain i{
    position: absolute;
    top: -3px;
    left: 0px;
    font-size: 15px;
    color:#ffffff;
    background-color:#9b5913 ;
    padding: 6px 6px;
    border-radius: 50%;
  }

.mt-sections {
    position: relative;
    padding-top: 70px;
    padding-bottom: 60px;
}

.text-muted {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}

label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.man-inn-form-carr form input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #0000004a;
    color: black;
    padding: 10px;
    transform: translate3d(0px, 0px, 0px);
}

.man-inn-form-carr form textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #0000004a;
    color: black;
    padding: 10px;
    transform: translate3d(0px, 0px, 0px);
}

.man-inn-form-carr form input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #0000004a;
    color: black;
    padding: 10px;
    transform: translate3d(0px, 0px, 0px);
}
.bgIJpe {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}
.jNGJET {
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
    transition: background-color 0.3s;
    border-radius: 4px;
    background-color: rgba(128, 128, 128, 0.156);
    border: 1px dashed rgba(17, 17, 17, 0.2);
    text-align: center !important;
}

.ibxAon span {
    display: inline-block;
    color: #359d94;
    font-size: 16px;
    font-weight: 500;
}

.butt-carrer button {
    font-size: 18px;
    font-weight: 600;
    border-radius: 7px;
}

.btn-primary{
    background-color: rgb(187, 105, 16);
    border-color:rgb(187, 105, 16); ;
}

.btn-primary:hover{
    background-color: rgb(187, 105, 16);
}

.carrer-img-bg img{
    max-width: 100%;
}

/* .input-style{
    width:100%;
    padding:10px 12px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
} */


.man-inn-form-carr .form-control
 {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #0000004a;
    color: black;
    padding: 10px;
    transform: translate3d(0px, 0px, 0px);
}

.man-inn-form-carr .form-control {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #0000004a;
    color: black;
    padding: 10px;
    transform: translate3d(0px, 0px, 0px);
}
.content-values p{
    position: relative;
    padding-left: 30px;
    display: block;

}
.content-values p:before{
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 10px;
    color: rgb(183, 101, 13);
}


.mancals-ul{
    display: flex;
    justify-content: space-between;
}


.headings-clients-page{
    color: black;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.headings-clients-page span{
    color:rgb(171, 92, 8) ;
}

.bg-color-clients {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    text-align: center;
    padding: 10px 0px;
    margin: 12px 0px;
}


.bg-color-clients img{
    max-width: 100%;
    padding: 0px 10px;
}


.bg-clients-us-banner {
    background-image: url(../img/bg/clients-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
    padding: 15px 0px;
}
.innerBannerservice{
    background-image: url(../img/bg/services-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
    padding: 15px 0px;
}

.innerBannerindutries{
    background-image: url(../img/bg/industries-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
    padding: 15px 0px;
}

.padding-top-bootoms{
    padding: 90px 0px;
}
.bg-images-industries{
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bg-color-service{
    background: linear-gradient(180deg, #ffffffc7, rgba(236, 135, 27, 0.305)), url(../img/bg/bg7.jpg);
    border: 1px solid rgba(236, 135, 27, 0.592);
    border-radius: 10px;
    padding: 30px;
}
.content-servise-inn{
    padding-right: 20px;
}
.content-servise-inn h3{
                font-size: 35px;
                font-weight: 700;
                font-family: 'Poppins', serif;
                margin-bottom:5px;
                color: rgb(183, 101, 13);
}

.content-servise-inn p{
    margin: 5px 0px;
    font-weight: 400;
    font-size: 16px;
}


.img-ser img{
    max-width: 100%;
    border-radius: 10px;
    
}



.serviceboxContent {
    padding: 24px;
    position: relative;
    z-index: 2;
    min-height: 430px;
}





  @media(max-width:1666px){

    .serviceboxContent {
        padding: 24px;
        position: relative;
        z-index: 2;
        min-height: 320px;
    }
  }

  
  @media(max-width:1366px){
    .testi-box{
        min-height: 220px !important;
      }

      .serviceboxContent {
    padding: 24px;
    position: relative;
    z-index: 2;
    min-height: 310px;
}

   
  }

   @media(max-width:1025px){

      .headerMenu>li {
        padding: 22px 10px !important;
    }
    .logoSection {
        width: 225px;
    }

    .bannerSliderContent{
        padding: 120px 30px;
    }

  }

      

  @media(max-width:991px){
    .testi-box{
        min-height: 250px !important;
      }
  }



  @media(max-width:769px){
    .logoSection {
        width: 170px;
    }
        .headerMenu>li {
        padding: 22px 7px !important;
    }
    .contents {
    margin-left: 85px;
    }
    .bannerRightContent img {
    height: 55vh !important;
}
  .site-width {
    max-width: 721px;
    margin: 0px auto;
}

.bannerSliderContent{
        padding: 85px 30px;
}

.video-wrapers{
  position: relative;
  height: 350px;
  background: url('../img/bg/video-images.png') center/cover no-repeat;
}
  }



   @media(max-width:500px){
  .bannerSliderContent{
    padding: 0px;
  }

  .video-wrapers {
    position: relative;
    height: 180px;
    background: url(../img/bg/video-images.png) center / cover no-repeat;
}

.bannerRightContent img {
    height: 31vh !important;
}
.bannerContent{
    padding: 25px !important;
}
.d-sm-none{
    display:none;
}
.serviceboxContent {
    min-height: 360px;
}
.pb-100 {
    padding-bottom: 30px;
}

  .markqu-s{
    font-family: 'neutraface_textbold';
    font-size: 20px;
    line-height: 35px;
    animation: marques 6s ease-in-out infinite alternate-reverse both;

}

@keyframes marques {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

.mancals-ul { display: block;}
 .bg-maninfobar {
    background-size: cover;
}
.con-images {
    padding: 50px 0px;
}
.con-images h2 {
    font-size: 28px;
    color: white;
    font-weight: 600;
}

.color-vision {
    margin-bottom: 20px;
}

.butt-carrer{
    margin-bottom: 20px;
}
.innerBannercareer {
    padding-top: 0px;
    padding-bottom: 0px;
    background: url(../img/bg/career.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 40px;
}
.innerBanner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 53px;
}

.headings-clients-page {
    color: black;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.padding-top-bootoms {
    padding: 0px 0px;
}


  }

  @media (max-width: 400px) {
    .serviceboxContent {
        min-height: 390px;
    }
     .bg-maninfobar {
    background-size: cover;
}
.bg-about-us-banner {
    margin-top: 50px;
}
.contents {
    margin-left: 20px;
}
.contents h2 {
    font-size: 35px;
}
.color-vision {
    margin-bottom: 20px;
}


}


  @media (max-width: 370px) {
    .serviceboxContent {
        min-height:400px;
    }
    .bg-maninfobar {
    background-size: cover;
}
}

@media (max-width: 360px) {
    .serviceboxContent {
        min-height: 420px;
    }
}


