*{
	box-sizing: border-box;
}
:root{
	--body-text-color: #000;
	--text-color-yellow: #fec60f;
	--text-color-white:#fff;
	--text-color-lightblue:#555975;
	--text-color-verylightblue:#b7b9ca;
	--text-color-darkblue:#212529;
	--bg-color-lightblue:#f3f6fd;
    --bg-color-yellow:#fec60f;
}

.color-yellow{
    color: var(--text-color-yellow);
}

/*---- font family ----*/
@font-face {
	font-family: 'DM Sans Regular';
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/DMSans-Regular.woff') format('woff');
}
@font-face {
    font-family: 'DM Sans Medium';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/DMSans-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Yantramanav Bold';
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/Yantramanav-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Yantramanav';
    src: url('../fonts/Yantramanav-Medium.woff2') format('woff2');
        url('../fonts/Yantramanav-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
.font-medium{
	font-family: 'DM Sans Medium';
}


body{
	margin: 0;
	padding: 0;
	background: #fff;
	font-size: 18px;
	line-height: 32px;
	font-family: 'DM Sans Regular';
	letter-spacing: 0.1px;
}
h1,h2, h3, h4, h5, h6{	
	padding: 0;
	color: #000;
 	letter-spacing: 0;
 	font-family: 'Yantramanav Bold';
 	font-weight: bold;
    margin: 0 0 15px;
}
h1{
	font-size: 70px;
	line-height: 70px;	
	margin: 0 0 38px;
}
h2{
	font-size: 44px;
	line-height: 52px;
	font-weight: bold;
    margin: 0 0 20px;
}
h3 {
    font-size: 32px;
    line-height: 1.3;
}
h4{
	font-size: 24px;
	line-height: 28px;
	font-weight: bold;
}
h5{
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
}
h6{
	font-size: 18px;
	font-family: 'DM Sans Regular';
}
p{
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 28px;
}
p:last-of-type{
	margin: 0;
}
ul {
    margin: 0;
    padding: 0;
}
li{
	list-style: none;
}
.font-20 {
    font-size: 20px;
    line-height: 30px;
}
.font-18 {
    font-size: 18px;
    line-height: 26px;
}


/*---- anchor ----*/
a{
	text-decoration: none;
}

/*---- Layout ----*/
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
.box-shadow-block{
	box-shadow: 5px 0 15px rgba(0, 0, 0, 10%);
	border-radius: 20px;
}

/*---- positions ----*/
.position-absolute{
	position: absolute;
}
.position-relative{
	position: relative;
}
.top-0{
	top:0;
}
.bottom-0{
	bottom: 0;
}
.right-0{
	right: 0;
}
.overflow-hidden{
	overflow: hidden;
}
.overflowx-hidden{
	overflow-x: hidden;
}
.overflowy-hidden{
    overflow-y: hidden;
}
/*---- Background ----*/
.bg-gray{
	background-color: #ddd;
}
.bg-dark{
	background: #55586e;
}
.bg-light{
    background: var(--bg-color-lightblue);
}
.bg-white{
	background: #ffffff;
}

/*---- Text colors ----*/
.text-white,
.text-white a,
.text-white h2{
	color: var(--text-color-white);
}
.text-lightblue{
	color: var(--text-color-lightblue);
}
.text-verylightblue{
	color: var(--text-color-verylightblue);
}
.text-darkblue{
	color: var(--text-color-darkblue);
}


/*---- Grid ----*/
.d-grid{
	display: grid;
}
.grid-col-2{
    grid-template-columns: repeat(2, 1fr);
}
.gap-20{
    gap: 20px;
}

/*---- Flexbox ----*/
.d-flex{
	display: flex;
	flex-wrap: wrap;
}
.nowrap{
	flex-wrap: nowrap;
}
.flex-column{
	flex-direction: column;
}
.flex-row-reverse{
    flex-flow: row-reverse;
}
.justify-content-center{
	justify-content: center;
}
.justify-content-between{
	justify-content: space-between;
}
.justify-content-around{
	justify-content: space-around;
}
.align-items-center{
	align-items: center;
}
.align-items-start{
	align-items: flex-start;
}
.align-items-end{
	align-items: flex-end;
}
.row-reverse {
    flex-flow: row-reverse;
}
.gap-col-45{
	column-gap: 45px;
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}
.text-center{
	text-align: center;
}
.text-uppercase{
	text-transform: uppercase;
}
.fw-normal{
    font-weight: normal;
}


/*---- Padding ----*/
.px-120{
	padding-left: 120px;
	padding-right: 120px;
}
.px-35{
	padding-left: 35px;
	padding-right: 35px;
}
.py-140{
	padding-top: 140px;
	padding-bottom: 140px;
}
.py-90{
	padding-top: 90px;
	padding-bottom: 90px;
}
.py-20{
	padding-top: 20px;
	padding-bottom: 20px;
}
.py-30{
	padding-top: 30px;
	padding-bottom: 30px;
}
.py-45{
	padding-top: 45px;
	padding-bottom: 45px;
}
.pt-60{
	padding-top: 60px;
}
.pt-90{
    padding-top: 90px;
}
.pt-110{
	padding-top: 110px;
}
.pb-60{
	padding-bottom: 60px;
}
.pb-90{
	padding-bottom: 90px;
}
.pb-140{
    padding-bottom: 140px;
}
.pr-60{
	padding-right: 60px;
}
.p-40{
    padding: 40px;
}

/*---- margin ----*/
.mt-auto{
	margin-top: auto;
}
.mt-30{
	margin-top: 30px;
}
.mt-40{
	margin-top: 40px;
}
.mt-80{
	margin-top: 80px;
}
.mb-90{
	margin-bottom: 90px;
}
.mb-70{
    margin-bottom: 70px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-30{
    margin-bottom: 30px;
}


/*---- button ----*/
.button{
	padding: 12px 35px;
	border-radius: 30px;
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	color: #000;
	font-family: 'DM Sans Medium';	
	cursor: pointer;
	display: inline-block;
	text-transform: capitalize;
}
.button:focus{
	outline: none;
	box-shadow: none;
}
.button-primary{
	background: #fec60f;	
}
.button-secondary{
	background: #fff;
}

/*---- Input ----*/
input,
select,
textarea{
	height: 50px;
	padding: 0 15px;
	border: 1px solid #000;
	border-radius: 4px;
	color: #000;
}
textarea{
	height: 140px;
	padding: 15px;
}
input:focus,
select:focus,
textarea:focus{
	outline: none;
	box-shadow: none;
}

img{
	display: block;
	max-width: 100%;
}
:focus-visible {
    outline: none;
}

/* ---- Common Css ---- */
h6.topsubheading {
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: 'DM Sans Medium';
    margin-bottom: 14px;
}
.commonimgabslt{
	position: relative;
}
.commonimgabslt img{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.radius-20{
    border-radius: 20px;
}
.customrow3col{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.customrow2col{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.h-100{
    height: 100%;
}
.w-100{
    width:100%;
}

/* ---- keyframes ---- */

@-webkit-keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


/*---- Header ----*/
.site-header{border-bottom: 1px solid rgba(255, 255, 255, .1);z-index: 1;}
.header-wrapper {
    grid-template-columns: auto auto auto;
}
.header-wrapper .logo-block,
.header-wrapper .quote-block {
    padding: 20px 0;
}
.logo-block img{display: block;}
.menu-block > ul{list-style: none;padding: 0;margin: 0;}
.menu-block > ul > li{
    display: inline-flex;
    align-items: center;
}
.menu-block > ul > li > a {
    color: var(--text-color-white);
    padding: 37px 0;
}
span.dropdown-menu-item-icon svg {
    width: 9px;
    height: 5px;
    margin-left: 10px;
}
span.dropdown-menu-item-icon svg path{
    fill: #fff;
}
.dropdown-menu {
    display: block;
    width: 240px;
    padding: 10px 20px;
    box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.05);
    margin: 0;
    top: 120%;
    transition: .3s;
    position: absolute;
    background: #fff;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
}
.dropdown-menu-wrap .menu li:not(:last-child) {
    border-bottom: 1px solid #d5d9e1;
    padding-bottom: 6px;
    margin-bottom: 6px;
}
.menu-block > ul > li:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.dropdown-menu-wrap .menu li a{
    color: #212529; 
}
.quote-block a {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
header .quote-block a::after {
    content: '';
    top: 0;
    transform: translateX(100%);
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    animation: slideanim 2s infinite;   
    background: -webkit-linear-gradient(left, rgba(64, 235, 241, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(64, 235, 241, 0) 99%, rgba(64, 235, 241, 0) 100%);
    background: linear-gradient(to right, rgba(64, 235, 241, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(64, 235, 241, 0) 99%, rgba(64, 235, 241, 0) 100%);
    z-index: -1;
    border: 0;
}
@keyframes slideanim {
    from {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(100%);
    }
}



.banner-block, .inner-banner-block {
    background: linear-gradient(to bottom,  #686c87 0%,#686c87 22%,#656983 29%,#585b72 47%,#393b4a 83%,#30313e 100%);
    z-index: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.banner-block .wrapper-block {
    grid-template-columns: 50% auto;
    height: 100%;
}
.banner-block:before,
.inner-banner-block:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/banner-bg.png)no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.banner-block .image-block img{margin: -10px 0 0;}
.banner-block .image-block .vector-block img {
    margin: -20px 0 0;
}
.banner-block .image-block .vector-block:last-child {
    bottom: 60px;
    left: -30px;
}
.banner-block .wrapper-block p{font-size: 20px;max-width: 600px;margin: 0 0 38px;}
.banner-block a.button {
    padding: 12px 35px;
}
.services-block .section-header {
    grid-template-columns: 32% auto;
    grid-column-gap: 275px;
}
.services-block .text-block p{font-size: 16px;line-height: 28px;margin: 0;}
.services-block .wrapper-block {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
}
.services-block .image-block{margin: 0 0 20px;}
.services-block:after {
    content: '';
    position: absolute;
    right: 0;
    top: 150px;
    background: url(../images/service-right-bg.png)no-repeat;
    padding: 42px 26px;
}
.technology-block.py-140 {
    padding-bottom: 192px;
}
.technology-block .wrapper-block {
    grid-template-columns: 58% 42%;
}
.technology-block .wrapper-block .summary-block h2 {
    max-width: 400px;
}
.summary-block a.button.button-primary {
    margin-top: 35px;
}
.image-animation-rotate{
	animation-duration: 100s;
	animation: rotate-center 100s linear infinite both;
    left: 90px;
    top: 20px;
    width: 46%;
    max-width: 46%;
}
.image-animation-slide-up-down {
    -webkit-animation: slide_up_down 2s ease-in-out infinite alternate both;
    animation: slide_up_down 2s ease-in-out infinite alternate both;
    animation-duration: 2s;
    left: 117px;
    bottom: 75px;
    width: 48%;
    max-width: 48%;
}
.image-animation-slide-up-down-delay{
    animation-delay: 1s;
    top: 150px;
    left: 0;
    width: 50%;
    max-width: 50%;
}

/*---- Technology Block New ----*/
.common-technology-row {
    display: flex;
    justify-content: space-around;
}
.common-technology-row.center_tech-row.d-flex {
    padding: 0 140px;
}

.commom-tech-box {
    height: 120px;
    width: 120px;
    background: #fff;
    border-radius: 20px 0 0 0px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 11px 2px 10px rgba(0,0,0,0.1);
}
.commom-tech-box img {
    max-width: 60px;
    transform: rotate(-45deg);
    max-height: 60px;
}

/*---- Process Section ----*/
.process-block .processbgimg {
    bottom: 0;
    left: 0;
    max-width: 490px;
}
.process-card-icon {
    height: 68px;
    width: 68px;
    background: #eaeef8;
    border-radius: 6px;
    margin-right: 19px;
}
.process-card-block {
    min-width: 255px;
    border-radius: 10px;
    padding: 15px 32px 15px 15px;
    z-index: 1;
}
.process-left-block {
    flex: 0 0 355px;
    max-width: 355px;
    padding-right: 110px;
}
.process-right-block {
    flex: 0 0 calc(100% - 365px);
}
/*.process-right-block:before,
.process-right-block:after {
    position: absolute;
    content: "";
    height: 177px;
    border-style: dashed;
    border-radius: 30px;
    border-color: #c8c9d7;
}
.process-right-block:before{
    width: 820px;
    border-width: 1px 1px 1px 0;
    right: 0;
    top: 50px;
}*/
/*.process-right-block:after{
    width: 350px;
    border-width: 1px 0px 1px 1px;
    left: 100px;
    bottom: 47px;
}*/
.process-right-boxes-row {
    gap: 100px;
}
.process-right-block .process-right-boxes-row:nth-child(2) {
    margin: 80px 0;
}
.process-card-circle {
    height: 20px;
    width: 20px;
    background: #fec60f;
    position: absolute;
    border-radius: 50%;
    left: -10px;
    z-index: -1;
}
.process-card-circle::after {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}
.process-right-block .process-right-boxes-row:nth-child(2) .process-card-circle {
    left: auto;
    right: -10px;
}
.process-right-boxes-row:first-child .process-card-block:first-child .process-card-circle {
    display: none;
}

.process-card-block .process-card-dottedline {
    position: absolute;
    background-image: url(../images/linenew.png);
    background-repeat: no-repeat;
    height: 1px;
    width: 268px;
    background-size: cover;
    z-index: -1;
    right: -100px;
    top: 50%;
}
.process-right-boxes-row:first-child .process-card-block:last-child .process-card-dottedline {
    height: 181px;
    background-image: url(../images/linenew2.png);
    background-repeat: round;
}
.process-right-boxes-row:nth-child(2) .process-card-block:first-child .process-card-dottedline {
    right: auto;
    left: -84px;
    background-image: url(../images/linenew3.png);
    background-repeat: round;
    height: 181px;
}
.process-right-boxes-row:nth-child(2) .process-card-block + .process-card-block .process-card-dottedline {
    right: auto;
    left: -100px;
}
.process-right-boxes-row:last-child .process-card-block .process-card-dottedline {
    display: none;
}




/* Animation base style */
.process-card-block {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-in-out;
}

/* When in view */
.process-card-block.animate {
  opacity: 1;
  transform: translateY(0);
}

.process-card-block:nth-child(1) { transition-delay: 0.1s; }
.process-card-block:nth-child(2) { transition-delay: 0.3s; }
.process-card-block:nth-child(3) { transition-delay: 0.5s; }
.process-right-boxes-row:nth-child(2) .process-card-block:nth-child(1) { transition-delay: 0.9s; }
.process-right-boxes-row:nth-child(2) .process-card-block:nth-child(2) { transition-delay: 0.7s; }
.process-right-boxes-row:nth-child(3) .process-card-block { transition-delay: 1.1s; }





/*Why Secure Web*/
.inner-whywe-block {
    border-radius: 30px;
    overflow: hidden;
    margin: auto;
    max-width: 1290px;
    padding-right: 90px;
}
.inner-whywe-block .whywe-left-block {
    width: 415px;
    flex: 0 0 415px;
}
.inner-whywe-block .whywe-right-block {
    flex: 0 0 calc(100% - 415px);
    width: calc(100% - 415px);
    padding: 80px 0px 80px 88px;
    background: var(--bg-color-lightblue);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.whywe-right-content {
    max-width: 640px;
    padding-right: 70px;
}
.whywe-info {
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    margin-right: -80px;
    margin-top: 60px;
}
.whywe-right-content h2 {
    margin-bottom: 21px;
}
.common-whywe-info {
    box-shadow: 3px 0 10px rgba(0,0,0,0.1);
    background: #fff;
    padding: 30px;
}
.common-whywe-info:nth-child(2) {
    background: #e5bb51;
}
.common-whywe-info h2 {
    margin-bottom: 0px;
}
.whywe-block img.circlelines {
    top: 150px;
    left: -30px;
}


/*Best pathway*/
.best-pathway-block img.sectionbg,
.get-intouch-block > img.sectionbg {
    bottom: 0;
    right: 0;
}
.best-pathway-left {
    width: 385px;
    flex: 0 0 385px;
}
.best-pathway-right {
    flex: 0 0 calc(100% - 385px);
    width: calc(100% - 385px);
    padding-left: 190px;
}
.best-pathway-left ul.ticklist {
    margin-top: 15px;
}
.ticklist li{
	font-size: 17px;
}
.ticklist li svg {
    height: 22px;
    width: 22px;
    margin-right: 12px;
}
.pathway-right-box {
    width: 100%;
    max-width: 332px;
    background: var(--bg-color-lightblue);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    transition: .3s;
}
.timeline-heading {
  background: #03a7a7 ;
  color: #ffffff;
  padding: 15px 0 8px;
  text-align: center;
}
.pathway-right-box h5 {
    margin-bottom: 14px;
}
.pathway-right-box > p {
  font-size: 16px;
  line-height: 24px;
}
.common-pathway-right-box {
  margin-bottom: 30px;
  position: relative;
}
.common-pathway-right-box:nth-child(odd) {
    display: flex;
    justify-content: flex-end;
}
.pathway-right .common-pathway-right-box:last-child {
  margin-bottom: 0;
}
.commentIcon {
    background: #686c87;
    border-radius: 50%;
    color: #ffffff;
    width: 48px;
    height: 48px;
    line-height: 48px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 9;
    font-size: 18px;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
}
.pathway-right::after {
    content: "";
    height: calc(100% - 220px);
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 110px;
    width: 1px;
    border-right: 1px dashed #686c87;
    opacity: 0.4;
}
.best-pathway-block .circlelines,
.get-intouch-block .circlelines {
    right: -30px;
    top: 50%;
}
.get-intouch-block .circlelines {
    top: 0px;
    right: 0;
}

/* Testimonial Section */
.testimonial-block {
    background-image: url(../images/testimonial-bg.png);
    background-size: 90%;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.testimonial-block h2 {
    margin: 0;
}
.testimonial-slider.swiper {
    background: #dddee2;
    padding: 80px;
    border-radius: 30px;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
}
.testimonial-slider h3 {
    font-size: 36px;
    line-height: 46px;
}
.testimonial-swiper-slide p {
    font-size: 20px;
    line-height: 40px;
    margin: 0 0 20px;
}
.testimonial-client-info .info-img {
    background: #4a4c5c;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.testimonial-client-info {
    gap: 28px;
}
.testimonial-client-info h5 {
    font-family: 'DM Sans Regular';
    margin: 0;
}
.testimonial-slider.swiper .swiper-button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1;
}
.testimonial-slider.swiper .swiper-button-prev {
    background: #dddee2 url(../images/left-arrow.png)no-repeat center;
    left: -144px;  
}
.testimonial-slider.swiper .swiper-button-next {
    background: #dddee2 url(../images/left-arrow.png)no-repeat center;
    right: -144px;
    transform: rotate(180deg);
}

/* Connect Section */
.inner-connect-block > div {
    flex: 0 0 50%;
    max-width: 50%;
}
.inner-connect-block > div.connect-right-block {
    padding-left: 18.4%;
}
.connect-middle-logo {
    height: 380px;
    width: 380px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    padding: 75px;
    margin: -87px auto -87px;
    z-index: 1;
}
.connect-middle-logo::after {
    position: absolute;
    content: "";
    height: 306px;
    width: 306px;
    border: 2px solid #fec60f;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.connect-middle-logo-img {
    background: #30313e;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.connect-left-top,
.connect-left-bottom {
    max-width: 536px;
    margin: auto;
}
.connect-left-top > ul::after,
.connect-left-bottom > ul::before {
    height: 1px;
    width: calc(100% - 36px);
    position: absolute;
    content: "";
    border-bottom: 1px dashed #686c87;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 8px;
    opacity: 0.6;
}
.connect-left-bottom > ul::before {
    border-bottom: none;
    border-top: 1px dashed #686c87;
    bottom: auto;
    top: 0;
}
.connect-left-top li span,
.connect-left-bottom li span {
    display: inline-block;
    position: relative;
}
.connect-left-top li span::after,
.connect-left-bottom li span::before {
    content: "";
    height: 113px;
    width: 0px;
    border-right: 1px dashed #686c87;
    display: block;
    opacity: 60%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}
.connect-left-top li:nth-child(2) span::after,
.connect-left-bottom li:nth-child(2) span::before {
    height: 186px;
}
.connect-left-top span.connect_icon img,
.connect-left-bottom span.connect_icon img,
.connect-left-middle span.connect_icon img {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
}
.connect-left-bottom span.connect_icon img{
	margin: 10px 0 0;
}
.connect-left-middle {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}
.connect-left-middle::after {
    position: absolute;
    content: "";
    width: calc(100% - 100px);
    left: 50px;
    height: 1px;
    border-top: 1px dashed #686c87;
    top: 50%;
    transform: translateY(-50%);
}

/*Get In Touch Css*/
.get-intouch-left {
    flex: 0 0 380px;
    width: 380px;
}
.get-intouch-right {
    flex: 0 0 calc(100% - 380px);
    width: calc(100% - 380px);
    padding-left: 15%;
}
.largephonetext{
	font-size: 50px;    
	font-weight: 900;
    line-height: 1;
	color: var(--text-color-yellow);
	display: inline-block;
	font-family: 'DM Sans Medium';
}

.form-control {
    border: 1px solid #cfcfcf;    
    padding: 0;
    width: 100%;
    padding: 0 30px;
    color: #808080;
    font-size: 16px;
    font-family: 'DM Sans Regular';
}
input.form-control {
    height: 60px;
    border-radius: 50px;
}
textarea.form-control {
    height: 105px;
    padding: 24px 30px;
    border-radius: 15px;
    display: block;
    color: #808080;
    font-size: 16px;
}
input.button.button-primary {
    border: none;
    min-width: 166px;
    padding: 12px 35px;
    height: auto;
}
.get-intouch-form,
.get-quote-form {
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.common-form-field.field-full {
    grid-column: 1/3;
}

/* footer */
footer.site-footer{
    background: linear-gradient(to bottom, #686c87 0%, #686c87 22%, #656983 29%, #585b72 47%, #393b4a 83%, #30313e 100%);
}
.site-footer img.sectionbg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}
.footer-top{
    margin: 0 -15px;
}
.footer-top .column-block {
    padding: 0 15px;
}
.footer-top .column-block.first-column {
    flex: 0 0 26%;
    max-width: 26%;
}
.footer-top .column-block.second-column{
    flex: 0 0 26%;
    max-width: 26%;
}
.footer-top .column-block.third-column {
    flex: 0 0 25%;
    max-width: 25%;
}
.footer-top .column-block.fourth-column {
    flex: 0 0 23%;
    max-width: 23%;
}
.footer-top .column-block.second-column {
    padding-left: 5.2%;
}
.footer-top .logo-block img {
    max-width: 244px;
}
.footer-social-icon {
    gap: 6px;
}
.footer-social-icon a.social-btn svg {
    height: 20px;
    width: 20px;
}
.footer-social-icon a.social-btn {
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-top .first-column {
    gap: 32px;
    display: flex;
    flex-direction: column;
}
.footer-top .menu-block ul {
    flex-direction: column;
}
.site-footer .column-block h6 {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Yantramanav';
    margin-bottom: 10px;
}
footer .menu-block > ul > li {
    margin-bottom: 12px;
}
footer .menu-block > ul > li > a {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
}
.site-footer .column-block.first-column p {
    font-size: 16px;
    line-height: 26px;
}
.column-block.fourth-column li:not(:last-child) {
    margin-bottom: 5px;
}
span.footer-info-icon svg {
    fill: #fff;
    height: 26px;
    width: 22px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}
.footer-copyright {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,15%);
}
/* footer end */

/* About Page */
.common-slider-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 1;
    border: 1px solid #e4e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.common-slider-button svg{
    width: 22px;
    height: 22px;
}
.inner-banner-block .summary-block {
    max-width: 1040px;
    margin: auto;
    text-align: center;
    width: 100%;
}

.inner-mission-block .mission-text{
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 150px;
}
.inner-mission-block .mission-image{
    flex: 0 0 50%;
    max-width: 50%;
}
.mission-image1{
    width: 70%;
    margin-left: auto;
}
.mission-image2{
    width: 50%;
    margin: -40% 0 0 0%;
}
.common-slider-button:first-child {
    margin-right: 10px;
}
.common-about-service {
    border-bottom: 2px solid rgba(18,24,32,.1);
    padding: 50px 0;
}
.common-about-service:last-child {
    border-bottom: none;
    padding: 50px 0 0;
}
.common-about-service > div{
    padding: 0 15px;
}
.common-about-service .about-service-icon-col {
    flex: 0 0 19%;
    width: 19%;
    padding-left: 0;
}
.about-service-icon {
    position: relative;
    z-index: 1;
    padding: 5px 0 0 5px;
    display: inline-block;
}
.about-service-icon::after {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    background: #fec60f;
    border-radius: 50%;
    top: 0;
    right: 0;
    z-index: -1;
}
.common-about-service .about-service-icon-col .about-service-icon svg {
    width: 50px;
    height: 50px;
}
.common-about-service .about-service-title-col {
    flex: 0 0 33%;
    width: 33%;
}
.common-about-service .about-service-title-col h4 {
    margin: 0;
}
.common-about-service .about-service-desc-col {
    flex: 0 0 48%;
    width: 48%;
    padding-right: 0;
}
.image-with-text_inner{
    margin: 0 -15px;
}
.image-with-text_inner .image-column,
.image-with-text_inner .text-column{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}
.image-column-inner, figure {
    position: relative;
    overflow: hidden;
}
.image-column-inner::after,figure::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-column-inner:hover::after,figure:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.method-icon-box:not(:last-child) {
    margin-bottom: 25px;
}
.method-icon-box .method-icon {
    flex: 0 0 70px;
    max-width: 70px;
    height: 70px;
    background: #f3f6fd;
    padding: 16px;
    position: relative;
    top: 7px;
    border-radius: 6px;
}
.method-icon-box .method-text {
    flex: 0 0 calc(100% - 70px);
    max-width: calc(100% - 70px);
    padding-left: 20px;
}
.methodlogy-image-text .text-column-inner {
    padding-right: 70px;
}
.method-icon-box .method-text h6 {
    margin-bottom: 5px;
}

/*Services Page*/
.our-service-block-inner .our-service-block-left {
    flex: 0 0 30%;
    max-width: 30%;
    padding-right: 50px;
}
.our-service-block-inner .our-service-block-right {
    flex: 0 0 70%;
    max-width: 70%;
}
.our-service-block-left ul {
    position: relative;
}
.our-service-block-left ul::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(18, 24, 32, .1);
}
.service-tab-content:not(:first-child) {
    display: none;
}
.our-service-block-left li:not(:last-child) {
    margin-bottom: 40px;
}
.our-service-block-left ul li a {
    padding-left: 45px;
    position: relative;
    color: #adadad;
}
.our-service-block-left ul li.active a {
    color: #000;
    font-weight: 600;
}
.our-service-block-left ul li a:before {
    content: "";
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: solid 2px rgba(18,24,32,.1);
    margin-right: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.our-service-block-left ul li.active a:before {
    border-color: #fec60f;
}
.service-tab-content-inr .service-tab-content-img {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 30px;
}
.service-tab-content-inr .service-tab-content-text {
    flex: 0 0 60%;
    max-width: 60%;
}
.why-choose-column {
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.04);
}
.why-choose-column h3 {
    font-size: 26px;
}
.why-choose-column svg {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}
.our-remote_inner .our-remote-left {
    flex: 0 0 40%;
    max-width: 40%;
}
.our-remote-left-inner{
    position: sticky;
    top: 100px;
}
.our-remote-left p{
    font-size: 32px;
    line-height: 40px;
}
.our-remote_inner .our-remote-right {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 50px;
}
.common-remote-box {
    border-bottom: 1px solid rgba(18, 24, 32, 0.15);
}
.common-remote-box summary {
    list-style: none;
    padding: 40px 40px 40px 0;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
}
.common-remote-box:first-child summary{
    margin-top: -40px;
}
.common-remote-box summary img{
    top: calc(50% - 9px);
    right: 2px;
    display: block;
    width: 18px;
    height: 18px;
    background-color: var(--gray-dark);
    transform: rotate(90deg);    
    transition: all ease 0.3s;
}
.common-remote-box .common-remote-label[open]>summary img {
    transform: rotate(0);
}
.common-remote-box .common-remote-label+.common-remote-text {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all ease 0.3s;
}
.common-remote-box .common-remote-label[open]+.common-remote-text {
    height: auto;
    padding: 0px 0 40px;
    opacity: 1;
}

/* Contact Page Css */
.contact-form-wrap{
    max-width: 1200px;
    margin: auto;
}
.common-contact-form {    
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 50px;
    background: #fff;
}
.common-contact-form .common-contact-form-left {
    width: 45%;
}
.common-contact-form  .common-contact-form-right {
    padding-left: 50px;
    width: 55%;
}
.contact-info-icon span {
    background-color: #686c87;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin: 0px 20px 0px 0px;
    position: relative;
    top: 10px;
}
.contact-info-icon span svg {
    height: 21px;
    width: 18px;
    filter: invert(1);
}
.contact-info-dec span {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
}
.contact-info-dec p {
    font-size: 18px;
    margin: 0;
}
.common-contact-left-inner::before, 
.common-contact-left-inner::after {
    position: absolute;
    content: "";
    z-index: -1;
}
.common-contact-left-inner::before {
    background: #323340;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.6;
}
.common-contact-info:not(:last-of-type){
    margin-bottom: 20px;
}
.common-contact-left-inner h3 {
    line-height: 1.2;
}
.common-contact-form-right textarea.form-control {
    height: 170px;
}
.common-contact-form.row-reverse .common-contact-form-right {
    padding-left: 0;
    padding-right: 50px;
}
hr.contact-divider {
    margin: 70px auto;
    max-width: 200px;
    background: #e3e3e3;
    border: none;
    height: 2px;
}
.location-labl {
    display: inline-block;
    background: var(--bg-color-yellow);
    padding: 10px 90px 10px 40px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
    font-family: 'DM Sans Medium';
    font-size: 20px;
}

/* CSR Page */
.csr-top a {
    color: #ffab20;
    text-decoration: underline;
}
.csr-content .container {
    max-width: 1240px;
}
.csr-content-row > div {
    flex: 0 0 50%;
    max-width: 50%;
}
.csr-content-row:nth-child(even){
    flex-flow: row-reverse;
}
.csr-content-row:nth-child(odd) .csr-content-text {
    padding-left: 40px;
}
.csr-content-row:nth-child(even) .csr-content-text {
    padding-right: 40px;
}
.csr-bottom .csr-bottom-inner {
    max-width: 800px;
    margin: auto;
}

/*Ui/Ux Css*/
.how-start-inner {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    justify-content: center;
    grid-template-columns: 2fr 1fr 1fr;
}
.inner-common_start_col {
    /* background: #f3f6fd; */
    border-radius: 15px;
    position: relative;
    padding: 30px 40px 50px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.common_start_col:nth-child(4) {
    grid-row: 2 / 4;
    grid-column: 1 / 2;
}
.how-start-inner .common_start_col:last-child {
    grid-column: 2/4;
}
.inner-common_start_col span.start-number {
    margin-bottom: auto;
    font-size: 20px;
}
.inner-common_start_col h4 {
    margin-top: 20px;
}
.common_start_col:first-child .inner-common_start_col {
    height: calc(100% - 72px);
}
.common_start_col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.service-section1-content {
    flex: 0 0 45%;
    max-width: 45%;
    padding-right: 50px;
}
.service-section1-img {
    flex: 0 0 55%;
    max-width: 55%;
    justify-content: flex-end;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    text-align: right;
    padding-left: 30px;
}
.service-section1-img img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    max-height: 640px;
    width: 100%;
}
.service-section1-img.service-single-img {
    display: block;
}
section.cta-block {
    background-size: cover;
    background-position: top;
}
.cta-block .cta-circle-block {
    position: relative;
    max-width: 540px;
    width: 100%;
    height: 540px;
    border-radius: 50%;
    margin-bottom: -110px;
    background-color: #fec60f;
    padding: 130px 100px;
}
ul.weblist {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin: 30px 0 0;
    font-size: 16px;
    padding-left: 15px;
}
ul.weblist li {
    list-style: disc;
}

/* Get a Quote */
.get-quote-form-outer {
    margin-top: -280px;
}
.inner-banner-block.get-quote-banner {
    padding-bottom: 280px;
}
.get-quote-form-outer .container {
    max-width: 1170px;
}
.get-quote-form {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
}
.get-quote-form h4 {
    font-size: 20px;
    color: #121820;
}
.file-drop-area {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 25px;
    border: 1px solid #cfcfcf;
    border-radius: 15px;
    transition: 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.file-drop-area.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}
.file-drop-area svg {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}
.file-msg {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.file-input:focus {
  outline: none;
}
.get-quote-form .grid-col-2 {
    margin-bottom: 30px;
}
.get-quote-form .grid-col-2:last-of-type {
    margin-bottom: 0px;
}
.get-quote-form input.button.button-primary {
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
}



