@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

@font-face {
    font-family: 'GeomanistRegular';
    src: url('../fonts/GeomanistRegular.eot');
    src: url('../fonts/GeomanistRegular.eot') format('embedded-opentype'),
         url('../fonts/GeomanistRegular.woff2') format('woff2'),
         url('../fonts/GeomanistRegular.woff') format('woff'),
         url('../fonts/GeomanistRegular.ttf') format('truetype'),
         url('../fonts/GeomanistRegular.svg#GeomanistRegular') format('svg');
}
@font-face {
    font-family: 'GeomanistLight';
    src: url('../fonts/GeomanistLight.eot');
    src: url('../fonts/GeomanistLight.eot') format('embedded-opentype'),
         url('../fonts/GeomanistLight.woff2') format('woff2'),
         url('../fonts/GeomanistLight.woff') format('woff'),
         url('../fonts/GeomanistLight.ttf') format('truetype'),
         url('../fonts/GeomanistLight.svg#GeomanistLight') format('svg');
}


@font-face {
    font-family: 'GeomanistMedium';
    src: url('../fonts/GeomanistMedium.eot');
    src: url('../fonts/GeomanistMedium.eot') format('embedded-opentype'),
         url('../fonts/GeomanistMedium.woff2') format('woff2'),
         url('../fonts/GeomanistMedium.woff') format('woff'),
         url('../fonts/GeomanistMedium.ttf') format('truetype'),
         url('../fonts/GeomanistMedium.svg#GeomanistMedium') format('svg');
}

@font-face {
    font-family: 'GeomanistBold';
    src: url('../fonts/GeomanistBold.eot');
    src: url('../fonts/GeomanistBold.eot') format('embedded-opentype'),
         url('../fonts/GeomanistBold.woff2') format('woff2'),
         url('../fonts/GeomanistBold.woff') format('woff'),
         url('../fonts/GeomanistBold.ttf') format('truetype'),
         url('../fonts/GeomanistBold.svg#GeomanistBold') format('svg');
}

 
/*font-family: "Archivo", sans-serif;
font-family: "Lexend", sans-serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: 'GeomanistRegular';
	--body-color: #000;
	--primary-color: #9288C1;
	--secondary-color: #16668F;
	--tertiary-color: #331C9F;
	--quaternary-color: #F1F0F6;	
	--black: #000;
	--white: #fff;
	--grey: #F0F3F6;
	--cyan: #00ffff;
	--grey-medium: #D6D6D6;	 
	--grey-dark: #5D5D5D;	
	--heading-font-light:'GeomanistLight'; 
	--heading-font-medium:'GeomanistMedium';
	--heading-font-bold:'GeomanistBold';
 
 
 

}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	font-weight: var(--font-weight-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);

}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
 
::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);

	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--secondary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
 
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
	line-height:normal;
}



/*****heading settings*******/

.heading16{
	font-size:16px;
}

.heading18{
	font-size:18px;
}

.heading20{
	font-size:20px;
	line-height:normal;
}
.heading24{
	font-size:24px;
	line-height:normal;
}
.heading30{
	font-size:30px;
	line-height:normal;
}
.heading40{
	font-size:40px;
	line-height:normal;
}
.heading45{
	font-size:45px;
	line-height:normal;
}
.heading50{
	font-size:55px;
	line-height:normal;
}
.heading60{
	font-size:60px;
}
.heading140{
	font-size:140px;
	line-height:normal;
}
.bold,  strong{
	font-family:var(--heading-font-medium) 
	 
	}
.medium{
	font-family:var(--heading-font-medium)
	}
.light{
	font-family:var(--heading-font-light)
	}
/*****heading settings*******/










.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	max-width: 100%;
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-purple {
	color: var(--primary-color) !important;
}

.text-blue {
	color: var(--secondary-color) !important;
}
 .text-grey{
 	color: #282828;
 }
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 

/*-----------map style------------*/
 
.map-bg{
	background: var(--primary-color);
	padding:250px 0 0 0; 
}
.map-sec-content{
	width:100%;
	position:absolute;
	left:0;
	top:0;
	z-index:5;
	padding:100px 0 0 0;
 	
}
.link-white{}
 .link-white .link a{
	color:#fff;	 
}
 .link-white .link a:before{
	background-image: url(../images/icons/arrow-right-white.svg);	
} 
 .link-white .link a:hover{
	 border:1px solid var(--white);
}



/*-----------background styles------------*/


.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
	color:#fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
	color:#fff;
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}

.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 80px;
	height:  80px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/meridian-logo-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100%;
	margin: -40px 0 0 -40px;
}

 

/*************** BACK TO TOP ***************/
 
 
 .request-but{
 	background-image: url(../images/icons/arrow-right-black.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size:15px;
	padding:0 30px 0 0;
	font-family:var(--heading-font-medium);
 }
  
  
 
/*********************************/

.container {
	width: 1320px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	min-height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 15px;*/	
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}
	
	

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img, .team-single:hover .hover-effect img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}



section {
	width: 100%;
	display:block;
	position: relative;
	 
}
  
 .sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%;
 
}
.section-spacing-100{
	padding:100px 0;
} 
.section-spacing-50{
	padding:50px 0;
} 
 .bg-light-blue{
 	background: #f0f3f6;
 }
 .inner-row-partners{
 	gap:2%;
 }
 .partners-single{
 	flex:0 0 23%;
 	padding: 10px 0 30px 0;
 	margin-bottom: 2%;
 	display: flex;
 	flex-wrap:wrap;
 	flex-direction: column;
 	border-bottom: 2px solid var(--primary-color)
 }
  .partners-single h3{
  	font-size: 22px;
  	line-height: 30px;
  	margin-bottom: 20px;
  	color: var(--black)
  }
    .partners-single p{}
  .partner-logo{
  	margin: 10px 0;
  }
/*********************************************/ 

	
header {
	width: 100%;
	z-index: 999;	
	display:flex;
	position:absolute;	
	left:0;
	top:0;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 header.smaller {	
	background-color:var(--white);
	position: fixed;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	/*-moz-box-shadow: 0px 4px 20px #00000059;*/
}
 
.logo { 
	padding:10px 0;
	position:relative;
	z-index:2;
}

.logo img {
	width:150px;
	display:block;
}
header.smaller .logo img{
	width:70px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position:relative;
 }
.head-group{
	display: flex;
	flex-direction:column;
}

.top-info{
	display: flex;
	color:#fff;
	justify-content: right;
	align-items: center;
	padding:5px 0;
	
} 

 header.smaller .top-info{
 display:none;
 }
 
.top-menu, .top-menu-black{
	display: flex;
 }
.top-menu ul, .top-menu ul li{
	margin:0;
	padding:0;
	list-style:none;
	font-size:14px;
	display: flex;
	line-height:normal;
} 
.top-menu ul li{
	padding:0 20px;
	border-left:1px solid #fff;
}
.top-menu ul li:first-child{
	border-left:0;
}
.top-menu ul li a{
	color:var(--white);
	
} 
.top-menu ul li a:hover{
	color:rgba(255, 255, 255, 0.5);
}  

.top-menu-black ul li a{
	color:var(--black)!important;
	
} 
 .top-menu-black ul li a:hover{
	color:var(--primary-color)!important;
	
} 
 
 
.mobile-menu{
	display:none !important;
}	
/***********social ***********/

.social {
 	display:flex;
	vertical-align:middle; 
}

.social a  {
	color:var(--white);
	background-color:var(--primary-color);
	font-size:16px;
	padding:0;
	margin:5px; 
	width:36px;
	height:36px;
	line-height:36px;
	display:block;
	text-align:center;
	border-radius: 50%;
	 
}

.social a:hover  {
	color: var(--white);
	background-color:var(--secondary-color);
}

/*********link style*************/
.link {}

.link a {
	border-radius: 50px;
	color: var(--black);
	font-size: 14px;
	line-height:50px;
	height:50px;
	font-weight:var(--font-weight-semibold);
	padding: 0 70px 0 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	overflow:hidden;
	border:1px solid var(--grey-medium);
 
}
.link a:hover{	
	border:1px solid var(--primary-color);
	color:var(--white);
}
.link a:before{
	width:50px;
	height:50px;
	position:absolute;	
	top:0;
	right:10px;
	content:'';
	background-image: url(../images/icons/arrow-right-purple.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:25px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	border-radius: 50%;
	
} 
 .link a:hover:before{
 	background-image: url(../images/icons/arrow-right-white.svg);
 }
.link a:hover:before{	
	right:5px;
}
 .link a:after{
	width:0;
	height:50px;
	position:absolute;
	z-index:-1;
	background-color:var(--primary-color); 
	top:0;
	right:0 !important;
	content:'';
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	border-radius: 50px;
	
} 

.link a:hover:after{	
	right:auto !important;
	left:0 !important;
	width:100%;
}
 
 .white-link{}
  .white-link a{
  	color: var(--white);
  	border:1px solid var(--white);
  }
  .white-link a:before{
filter: brightness(0) invert(1);
  }
  .white-link a:after{
  	background-color: var(--secondary-color)
  }
 /*********link style*************/
 
.caps{
	text-transform:uppercase;
}
 
 
/****************************/
  
.pos-relative{
	position:relative;
}
 
.invisible{}
	.level{
	position:relative;
	z-index:2;
	} 
 /*******categories grid***********/
 
 
.brands-listing{} 


.brands-listing ul li img{   
	width:100% !important;
	display:block;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
  }
 
.brands-listing ul li:hover img{
    
	filter: grayscale(100%);
  }
  
.brands-listing ul li{ 
	flex: 0 0 16.66666666666667% !important;
	height:auto !important;
	padding:30px !important;
	}
  

/*******funfacts***********/


 
.funfacts{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	padding-top:100px;
	}

.funfacts ul{ 
    width:100%;
	display: flex;
	flex-wrap: wrap; 
	list-style:none;
	margin:0;
	padding:0;
	gap:0 3.5%;
}

.funfacts ul li{
	flex: 0 0 48%;
	height:170px;
	/*border-radius: 10px;*/
	margin-top:-80px;
	padding:20px;
	background-color:var(--quaternary-color);
	background-image: url(../images/icons/dots.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	position:relative;
 
}
.funfacts ul li:nth-child(even){
    margin-top:15px;
}
.funfacts ul li:before{
	width:22px;
	height:22px;
	position:absolute;
	top:0;
	right:20px;
	content:'';	
	background-image: url(../images/icons/ribbon.svg);
	background-repeat: no-repeat;
	background-position: right top;
	background-size:20px;
 
}
.funfacts ul li:last-child{
	border-bottom:0;
	}

.funfacts ul li h2{
	font-size:50px;
	line-height:normal;
	font-weight:normal;
	margin:0;
	color:var(--secondary-color);
	font-family:var(--heading-font-light);		 
 
}	
.funfacts p{
	margin:0;
	text-transform:uppercase;
	font-family:var(--heading-font-medium);
	font-size:14px;
	color:var(--grey-dark);	 
}
 
 
 
 
 
/*****************grid colums**********/


.display-style{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);	 
	display:block;
	position:relative;
	background-color:var(--white);
	
}
.display-style:after{
	width:100%;
	height:2px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--primary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.display-style:hover:after{
	width:0;
	right:0;
	left:auto;
}

.display-style a{
  color:var(--body-color);
	 
}
 
 .display-style a:hover{
 	color:var(--body-color);
	 
}

.display-style h2{
	margin:0;
	padding:0 0 25px 0;
	font-size:16px;
	text-align:center;
}
  
/*--------------------------------scroll-------------*/

.sideScroll-wrap{
	 background-color:var(--primary-color);
	 width:100%;
	 display:flex;
	 overflow:hidden;
 }

.sideScroll {
  
  white-space: nowrap;

  position: relative;
  color: white;
  display: inline-block;
  animation: sideScroll 20s linear infinite;
  padding:15px 0;
 
}

.sideScroll p{
  font-size: 22px;
  line-height:22px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin:0;
}
.sideScroll p .sep {
	font-size: 22px;
	line-height:22px;
	display:inline-block;
	width:40px;
	text-align:center;
}

@keyframes sideScroll {
  100% {
    transform: translateX(-2000px);
  }
}

.sep{font-size: 70px;line-height: 59px;font-weight: 300;color: var(--white);width: 30px;
	/* height: 5px; */overflow: hidden;margin-top: -5px;}

.sidescroll-row{
    overflow: hidden;
    background-color: var(--dark-grey);
    padding: 1px 0;
}

/**********/


 .rotating-circle{
	width:200px;
	height:200px;
	display:inline-block;
	position:absolute;
	left:-100px;
	top:100px;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.png);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/b2b.png);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:50%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 
  
 /**********************news**********************/
  
 /**********************news**********************/
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 120px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:24px;
	margin:0 0 15px 0;
	line-height:30px;
	font-weight:var(--font-weight-bold);
 
 
}
.webicon{	
	position:absolute;
	left:0;
	top:-5px;	
	width:100px;
	height:100px;
	padding:10px;
	border-radius:50%;
	background-color:var(--white);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--tertiary-color);
}
 
 
  
/*****innerpage products************/
 .blog-list2 .item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}


.blog-list2 .item:hover {
  border-bottom-color: #ccc;
}


.blog-list2 .item:hover .img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.blog-list2 .item .categ a {
  padding: 8px 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
}

.blog-list2 .item .img {
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.blog-list2 .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}


.splitleft{
	width: 50%;
	height: 100%;
	background: url(../images/split.jpg) no-repeat top right #9288c1;
	position: absolute;
	top:0;
	left:0;
}
.bg-grey{
	background-color: #f2f2f2;
}
h2{
	font-size: 40px;
	line-height: 55px;
	margin-bottom: 25px;

}
.highlight-text{
	font-size: 20px;
	line-height: 29px;
	
}


.bg2{
	background: url(../images/backgrounds/bg2.jpg) no-repeat center center;
	background-size: cover
}
.boxy{	 
    padding:30px;
    position: relative;
    background-color: #f1f0f6;
	position:relative;
	 transition: all .3s ease-in-out;
}
.boxy:hover{	 
    background-color: var(--secondary-color);
	color:var(--white);	 
}
.boxy:hover h1, .boxy:hover h2, .boxy:hover h3{
	color:var(--white);	 
}
.boxy:before{
	width:4px;
	height:50px;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-color:var(--primary-color);
}
.boxy p:last-child{	 
   margin:0;
}
.mission-box{
	flex:0  0 33.33%;
    padding:130px 30px 30px 30px;
    position: relative;
    background-color: #f1f0f6;
}
.mission-box p{
	color: #282828;
	font-size: 20px;
	line-height: 27px;
	margin-bottom:27px;
	}
.mission-box:nth-child(even){
	margin-top: 100px;
	}
.mission-box img.icon{
    position: absolute;
    top:30px; right:30px;
    max-width: 75px;
}
.mission-box h3{
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
}
.underline{
    padding-bottom: 15px;
    position: relative;
}
.underline:after{
content: '';
width: 50px;
height: 1px;
background-color: var(--white);
position: absolute;
bottom:0;
left:0;
z-index: 2;

}
.w-icons{
	max-width: 85px;

}

.value-item{
	display: flex;
	align-items: center;
gap:10px;
color: #282828;

}
.value-item:hover{
	background-color: #f1f1f1
	}
.value-item p{
	margin-bottom: 0;
	}
.pop-img-div{
	width: 25%;
	position: relative;

}
.value-item .w-icons-div{
	width: 12%;
	padding: 0 10px;
	}
	.title{
		font-size: 40px;
		line-height: 43px;
		margin-bottom: 25px;
	}
/*------------------case studies bg-----------*/
	.case-studies-bg{
background: url(../images/backgrounds/casestudies-bg.jpg) no-repeat top right;
background-size: contain;
/*background-attachment: local;*/
	}
.bigtext-line{
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-size: 25rem;
    line-height: normal ; color: transparent;
    font-weight: 700;
    opacity: 0.9;
    margin:0;
    font-family: 'GeomanistBold';
}
.uppercase{
	text-transform: uppercase;
}
.subhead{
	font-size: 26px;
	line-height: 30px;
	margin-bottom: 20px;
	color: var(--primary-color);
	font-weight: 700;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}


.wrap-box {
	background:var(--white);
	-webkit-box-shadow: 0px 0px 38px -6px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 38px -6px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 38px -6px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	position: relative;
}
.wrap-box:before {
	content: '';
	width: 100%;
	height: 0;

	background: var(--primary-color);
	position: absolute;
	bottom: 0;
	left:0;
	z-index: -1;
	 -webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
.wrap-box:hover {
	-webkit-box-shadow: 0px 0px 28px -6px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 0px 28px -6px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 28px -6px rgba(0, 0, 0, 0.55);
}
.wrap-box:hover:before {
	height: 100%;
	}
a.more-btn{
	display: inline-block;
	padding: 15px 42px 15px 0px;
	position: relative;
	font-size: 16px;
	line-height: 16px;
	color: var(--primary-color);
}
a.more-btn:hover{
	color: var(--black)
	}
a.more-btn:after {
    content: '\e5c8';
    width: 36px;
    height: 39px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2px;
    margin: auto 0;
    z-index: 2;
    background-color: transparent;
    color: var(--black);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-style: normal;
    font-size: 39px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
a.more-btn:hover:after{
	right: 0;
}
.inner-row-threecol{
	gap:2% ;
}
.row-p-none{}
.row-p-none>p{display: none;}
.threecol{
	flex:0 0 32%;	
	margin-bottom: 3%;
}
.case-single{

	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin-bottom: 2%;
	position: relative;
	padding: 40px 40px 90px 40px;
}
.case-single:hover{
	
	}
	.case-single:hover *{
		color: var(--white)
	}
.case-single a.more-btn{
	position: absolute;
	bottom: 25px;
	right: 40px;
}
.case-single:hover a.more-btn, .case-single:hover a.more-btn:after{
	color: var(--white)
	}
.sidehead-small {
	display: inline-block;
    margin: 0;
    padding: 0 20px 10px 0;
    font-family: var(--heading-font-medium);
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 30px;
}

.career-section{
	background: url(../images/backgrounds/career-bg.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.shape1 {
	width: 40%;
	height: 50%;
  /*  min-width: 500px;
    min-height: 300px;*/
    content: '';
    position: absolute;
    right: 24px;
    top: -15px;
    z-index: -1;
    background-image: radial-gradient(#fff 2px, transparent 3px), radial-gradient(#fff 2px, transparent 3px);
    background-color: transparent;
    background-position: 0 0, 0px 0px;
    background-size: 16px 16px;
    opacity: 0.1;
    -webkit-animation: slideTopDown 1s infinite alternate;
    -moz-animation: slideTopDown 1s infinite alternate;
    -ms-animation: slideTopDown 1s infinite alternate;
    -o-animation: slideTopDown 1s infinite alternate;
    animation: slideTopDown 1s infinite alternate;
    	position: absolute;
	top:0;
	right:0;
	z-index: 1;
}
.shape2{
	width: 30%;
	height: 100%
}
.career-section .shape1{
	position: absolute;
	top:0;
	right:0;
	}

.text-small{
	font-size: 12px;
	line-height: 12px;
}

.career-single{

}
.career-single h3{
	width: 85%;
	
}
/*-------------------page leadership------------*/
.font18{
	font-size: 18px;
	line-height: 20px;
}
.name{
	font-size: 22px;
	line-height: 34px;
}
.ceo-img{
	width: 100%;
    text-align: right;
    line-height: 0;
}
.ceo-img img{
width: 50%;
max-width: 580px;
position: absolute;
bottom: 0;
right:0;
z-index: 2;
}

.team-single{
	padding-bottom: 70px;
	margin-bottom: 4%;
	position: relative;
}
.team-title{
	width: 80%;
	background: var(--white);
	position: absolute;
	bottom: 0;
	right:0;
	padding: 35px 30px;
	 -webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.team-title h4{
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 10px;
}
.team-title p{
	color: var(--primary-color);
	margin-bottom: 0px;
}
.team-single:hover .team-title{
	background: var(--secondary-color);
	color: var(--white);
	padding-bottom: 70px;
	}
	.team-single:hover .team-title p{
	color: var(--white);
	}
	.position-re{
		position: relative;
	}

/*---------------service page------------*/
.service-item{}
	.service-item-cont{
		padding: 50px 50px 20px 50px;
	}

	.service-box{
		position: relative;
		color: var(--white);
	}
	.service-box h3{
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 9px;
    display: flex
;
    align-items: center;
	}
	.small-icon{
		font-size: 20px;
		color: var(--primary-color);
		margin-right: 15px;
		font-weight: 200;

	}
	.service-box-cont{
		padding: 15px 40px 25px 40px;
		background-color: rgba(0, 0, 0, 0.6);
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}

	.font14{
		font-size: 14px;
		line-height: 16px;
	}

	.news-single{

	}
.news-single p{
	margin-bottom: 7px

	}
	.testimonial-box{
		padding: 75px 120px;
		border-radius: 25px;
		margin-bottom: 3%;
		display: flex;
		justify-content: space-between;
	}
	.testimonial-box:nth-child(even){
		flex-direction: row-reverse;
	}
		.testimonial-box-img{
			flex: 0 0 22%;
			border-radius: 20px;
			overflow: hidden;
		}
		.testimonial-box-cont{
			flex: 0 0 70%;
			padding: 15px 0;
			display: flex;
			flex-direction: column;
			/*gap:15px;*/
			justify-content: space-around;
		}

		.quote-icon{
			max-width: 50px;
		}
		p.font24{
			font-size: 24px;
			line-height: 34px;
		}
			p.font26{
			font-size: 26px;
			line-height: 36px;
		}
		.purplehead{
			font-size: 20px;
			line-height: 20px;
			font-weight: 700;
			color: var(--primary-color)
		}

		.number{
			display: inline-block;
			font-family:var(--heading-font-light);
			font-size: 40px;
			line-height: 40px;
		}

		.challenges-box{
			position: relative;
			padding-bottom: 40px;
		}
		.challenges-box h3{
		}
		.challenges-box p{
			font-size: 20px;
			line-height: 27px;
			margin-bottom: 0;
			font-family: var(--heading-font-light);
		}
		.challenges-box .number{
			position: absolute;
			top:20px;
			right:20px;
			opacity: 0.2
		}

		.bluebox{
			background: var(--secondary-color);
			color: var(--white);
			padding: 70px 65px;
		}
		.data-wrap{
			width: 100%;
			padding: 20px 0;
			border-bottom: 1px solid var(--white);
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
		.data-wrap h3{
			margin-bottom: 2px;
		}
		.data-wrap h2{
			color: var(--cyan);
			font-size: 56px;
			line-height: 56px;
			margin-bottom: 0;
			font-family:var(--heading-font-medium)
				/*font-family:var(--heading-font-medium);*/
		}
		.data-wrap p{
			margin-bottom: 0;
			font-size: 20px;
			line-height: 20px;
		}

		.steps-row{
			padding: 50px 0;
			position: relative;
		}
	.steps-row:before{
		content: '';
	width:1px;
	height:100%;
	position:absolute;
	top:0;
	left:44px;
	z-index:1;
	background-color:var(--primary-color);
}

		.steps-circle{
	width:90px;
	height:90px;
	text-align:center;
	font-size:42px;
	font-weight:300;
	line-height:20px;
	position:absolute;
	z-index:2;
	border-radius: 50%;
	left:0;
	top:0;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	background-color:var(--white);
}
.steps-circle span{
color: rgba(0, 0, 0, 0.2);
}


	.iconic-content{
	width:100%;
	position:relative;
	padding:0 0 0 160px;
	min-height:100px;
	margin:0 0 35px 0;
	display: flex;
	align-items: center;
}

.iconic-content h2{
	font-size:27px;
	line-height:35px;
	color:var(--primary-color);
	margin:0 0 15px 0;
font-family:var(--heading-font-medium)
}
.iconic-content p{
	font-size:20px;
	line-height:25px;
	margin:0 0 0px 0;

}
.stickybar{
	position: sticky !important;
	top:100px;
}

.digital-item{
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 3%;
	/* overflow: hidden; */
/*	background: red*/
}
.digital-item:nth-child(even){
	flex-direction: row-reverse;
	}
.digital-item-img{
	flex:0 0 35%;
}
.digital-item-cont{
	flex:0 0 72%;
	padding: 50px 50px 50px 190px;
	background-color: var(--white);
	position: relative;
	transform: translateX(-10%);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}
.digital-item:nth-child(even) .digital-item-cont{
	transform: translateX(10%);
	}
.digital-item-cont .icon{
	width: 85px;
	height: 85px;
	background: var(--primary-color);
	color: var(--white);
	padding: 15px;
	position: absolute;
	top:50px;
	left:55px;
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
	.digital-item-cont .icon img{
		filter: brightness(0) invert(1);
		max-width:100%;
	}
	.digital-item-cont:hover .icon{
		transform: scale(1.4);

	}
.digital-item-cont h3{
	font-size: 30px;
	line-height: 35px;
	color: var(--primary-color);
	font-family: var(--heading-font-medium);
	margin-bottom: 15px;

	}
	.digital-item-cont p{
		font-size: 20px;
		line-height: 30px;
		color: #282828;
		margin-bottom: 0;
	}
	.pltfrm-txt {
		margin-top: 10px;
	}
	.pltfrm-txt a {
		color: var(--primary-color);
		font-weight: normal;
	}
	.digital-item-cont:hover .pltfrm-txt a {
		color: var(--white);
	}
	.pltfrm-txt span{
		font-weight: bold;
	}

	.digital-item-cont:hover p, .digital-item-cont:hover h3{
		color: var(--white);
	}

	.p-contact{
		display: inline-flex;
		align-items: center;
		padding: 15px 15px 15px 0px;
		font-size: 20px;
		line-height: 20px;
		margin-bottom: 0;
	}
	.p-contact i{
		width: 45px;
		height: 45px;
		display: inline-flex;
		align-items: center;justify-content: center;
		background: var(--primary-color);
		color: var(--white);
		margin-right: 15px;
		border-radius: 100%;
		font-size: 15px;
	}

	.news-row-left{
flex:0 0 75%;

	}
	.news-row-right{
flex:0 0 20%;
	}

	.sideheading{
		font-size: 30px;
		line-height: 30px;
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom: 1px solid #bbb;
		color: var(--primary-color)
	}
	.cat-list{
		padding: 0;
		margin: 0;
	}
		.cat-list li{
			list-style: none;
			padding:0px  0;
			margin: 0;
			display: block;
			margin-bottom: 10px;
	}
	.cat-list li a{
		display:block;
		position: relative;
		padding: 7px  0 7px  25px;
		font-size: 18px;
		line-height: 20px;
		color: #777;
		font-size: 16px;
	}
	.cat-list li a:after{
    content: '\e5cc';
    /* width: 36px; */
    /* height: 39px; */
    position: absolute;
    top: 7px;
    bottom: 0;
    left: 0;
    margin: auto 0;
    z-index: 2;
    background-color: transparent;
    /* color: var(--black); */
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    font-family: 'Material Symbols Outlined';
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
 }
	.cat-list li a:before{
		content: '';
		width: 0px;
		height: 100%;
		position: absolute;
		top:0;
		left:0;
		background: var(--secondary-color);
		color: var(--white);
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
	.cat-list li a:hover:after{
		left:5px;

	}
	.cat-list li a:hover{
		color: var(--white);
		padding-left: 30px;
	}
	.cat-list li a:hover:before{
		width:100%;
		z-index: -1;
	}

	.latest-news-single{
		padding: 15px;background: var(--grey);
		margin-bottom: 15px;
		    -webkit-box-shadow: 0px 0px 38px -6px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 38px -6px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 38px -6px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	}
	.latest-news-single:hover{
		background: #fff;
	}
	.latest-news-single p.font14{
		font-size: 12px;
		line-height: 14px;
		color: #888;
		margin-bottom: 10px;
}
	.latest-news-single h3{
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 0;
		font-family: var(--)
	}

	.inner-brands{
		padding: 0;
		margin: 0;
		display: flex;
		flex-wrap: wrap;

	}
		.inner-brands li{
			flex:0  0 14%;
			margin:1% 1%;
		padding:15px 15px;
		background-color: var(--white);
		list-style: none;
		border:0px solid var(--grey);
		text-align: center;
		display: flex;
		align-items: center;
-webkit-box-shadow: 0px 4px 7px -4px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 4px 7px -4px rgba(0,0,0,0.35);
box-shadow: 0px 4px 7px -4px rgba(0,0,0,0.35);
    -webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
		.inner-brands li:hover{
-webkit-box-shadow: 0px 4px 12px -4px rgba(0,0,0,0.55);
-moz-box-shadow: 0px 4px 12px -4px rgba(0,0,0,0.55);
box-shadow: 0px 4px 12px -4px rgba(0,0,0,0.55);
		}
	.inner-brands li img{
		max-width: 100%;
	}

	/*-------------popupstyle-------*/
	.pum-theme-565, .pum-theme-default-theme {
    background-color: rgba(0, 0, 0, 0.7) !important;
}
.pum-container {
    top: 50px!important;
    position: absolute;
    margin-bottom: 3em;
    z-index: 1999999999;
    width: 50% !important;
    max-width: 520px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
}
.pum-container  .fieldset {
    width: 100%;
    padding: 13px 20px;
    }
   .pum-container  .form-style .smd100
   {padding:0 0 10px 0;}
      .pum-container .sendbutton {
    width: auto;
    height: auto;
    border: 0;
    outline: 0;
    margin: 0;
    display: inline-block;
    color: var(--white);
    padding: 7px 40px;
    font-size: 22px !important;
}
.pum-theme-565 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
    width: 50px !important;
    font-size: 19px !important;
}
.ht-ctc-chat {
    position: fixed;
    bottom: 78px !important;
    right: 11px !important;
    cursor: pointer;
    z-index: 99999999;
}
/*----login----*/

.widget {
    position: relative;
    background-color: #ececec;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.wpcf7-form .smd50{
	padding: 10px;
}
.login-form {}
.login-form .smd100{
	padding-bottom: 20px;
}

ul.s-logos{
	margin:10px 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap:15px;
}
ul.s-logos{
	padding: 5px;
	list-style: none;
	margin:0;
	}
	ul.s-logos img{
		max-width: 150px;
	}
/*************** footer CSS ***************/

.social-container{
	width: 100%;
	padding:40px 0;
	border-top:1px solid var(--grey-medium);
	border-bottom:1px solid var(--grey-medium);
    
}
.social-container p:first-child{
	margin:0 0 15px 0;
}
.social-container ul{
	width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none;
	gap:30px 3.5%;
}
.social-container ul li{
	flex: 0 0 22.11%;
	font-size:14px;
	line-height:20px;
	position:relative;
	padding:0 0 0 70px;
	 
}
.social-container ul li span{
	color:var(--primary-color);
	}
	
.social-container ul li i{
	position:absolute;
	left:0;
	top:0;
	font-size:40px;
}
	
.footer{
	padding:100px 0 0 0;
	background-image: url(../images/icons/meridian-font-outline.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.footer a{
	color:var(--black);
}
.footer a:hover{
	color:var(--primary-color);
}
.footer-menu{ 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
	gap:30px 3.5%;
}


.menu-col {
	flex: 0 0 31%;
}
.menu-col  ul, .menu-col  ul li{
	margin:0;
	padding:0;
	list-style:none;
}
.menu-col ul li a{
	margin:0;
	padding:4px 0;
	list-style:none;
	width:100%;
	display:block;
	
}
.menu-col ul li a:hover{
	padding:4px 10px;
 
	
}

 .menu-col h2{
 	font-size:20px;
	line-height:normal;
	margin:0 0 20px 0;
 	font-family:var(--heading-font-medium);
	}
 
 .footer-bottom{
	width: 100%;
	display: flex;
	padding:40px 0;
	border-top:1px solid var(--grey-medium);
	justify-content: space-between;
	} 
	
	
.terms-privacy{}

.copyright{}

	
 
 /**********foote3r settings end*************/
 
 
.input-wrap{
	width:100%;
	position:relative;
	margin-bottom:30px;
	display:block;
}
.input-input{
	width:100%;
	height:50px;
	position:relative;
	color: var(--black);
	background-color:var(--white);
	outline:none;
	border:1px solid var(--grey-medium);
	vertical-align:middle;
	line-height:50px;
	padding:0 170px 0 20px;
	font-size:16px;
}


.input-button{
	background-color:var(--primary-color);
	color:var(--white);
	font-family:var(--heading-font-medium);
	font-size:18px;
	width:150px;
	height:50px;
	border:0;
	outline:none;
	position:absolute;
	top:0;
	right:0;
	z-index:1;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	}
	
.input-button:hover{
	background-color:var(--secondary-color);
	}
 
 /***********subscribe newsletter**********/
 
 
 
 
 .address-box{
	width:100%;
	background-color:var(--grey);
	font-size:20px; 
	display: flex;
	align-items: center;
	margin-bottom:25px;
}

.address{
	 width:75%;
	 padding:25px;
 } 
  .address p{
	 margin:0 0 10px 0; 
 } 
 .address p:last-child{
	 margin:0; 
 }
.address span{
	color:var(--primary-color);
	font-size:16px;
 
}
 .thumb{
	 width:25%;
	}
 .thumb img{
	 width:100%;
	 display:block;
	}

 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
}
/******************************/
 


 
 
ul.list{
    margin:0;
    padding: 0;
    margin-bottom: 30px;
}
ul.list li{
list-style: none;
    padding: 2px 7px 2px 20px;
    margin-bottom: 10px;
    line-height: normal;
    position: relative;
}
ul.list li:before{
     content: "\f111"; 
    position: absolute;
    top:10px;
    left:0;
     font-family: "FontAwesome";
     color: var(--primary-color);
     font-size: 8px;

    }
 
ul.list li strong{
	color: var(--primary-color);
		font-family:var(--heading-font-medium)
}
 

  
/*****************************/



.table-div { 
	overflow-x:auto;
	margin-bottom: 50px;
	}
.table-div td {
  text-transform: uppercase;
}
.table-div h4{
	font-size:20px;
	color:var(--secondary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
}
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 


/******************************indexbanner****************/

 .index-head { 
	width: 100%;
	height:700px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/index-head.webp);
}
.index-intro{
	width:50%;
	padding-top:200px;
	position:relative;
}
.google-review{
	width:330px;
}
 .video-bx{
 	width:100%;
	height:100vh;
	background: url(../images/backgrounds/video-bg.jpg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
 }
 .video-caption{
width: 60%;
    padding: 30px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    color: var(--white);
    font-size: 50px;
    line-height: 60px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    top: 270px;
    font-family: var(--heading-font-medium);
    margin: 0 auto;
 
 }
  .video-caption:before{
 	width:80%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	content:'';
	border:8px solid var(--white);
	border-right:0 !important;
 }
   .video-caption:after{
 	width:14%;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	content:'';
	border:8px solid var(--primary-color);
	border-left:0 !important;
 }
 
.info-des-style{
	width:100%;
	position:relative;
	overflow:hidden;
}
 .info-des-style-des{
	width:100%;
	padding:20px 40px;
	background-color:rgba(0, 0, 0, 0.8);
	position:absolute;
	left:0;
	bottom:0;
	z-index:2;
	color:var(--white);
	font-size:18px;
}
 .info-des-style-des h2{
	font-family:var(--heading-font-medium);
	font-size:24px;
	font-weight:normal;
	line-height:normal;
	margin: 0 0 15px 0;
}
 .info-des-style-des p:last-child{
	margi:0;
}
 .info-des-style-des .material-symbols-outlined{
 	vertical-align:middle;
	margin:-5px 15px 0 0;
	font-size:28px;
	color:var(--primary-color) !important;
 }
 /*************item sthyls ****************/
.bx-shadow{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	background-color:var(--white);
  } 
 .bx-shadow-none{
	box-shadow:none!important;
  } 
  
.item-style{
	background-color:var(--white);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	padding:20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	position:relative;
  } 
.item-style:hover{
	background-color:var(--quaternary-color);
	}

.item-style:before{
	background-color:var(--primary-color);
	width:0;
	height:5px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	z-index:2;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
  }
  
.item-style:hover:before{
	width:100%;
  }  
  
.item-style-inner{
	padding:20px 0 0 0;
	position:relative;
   
  } 
   
 .item-style-inner h2{
	font-size: 24px;
	margin:0 0 10px 0;
	font-family:var(--heading-font-medium);
	font-weight:normal;
	line-height:normal;
  } 
  .item-style-inner p:last-child{
  	margin:0;
 	 
  }
  
 .arrow-button{
	display:inline-block;
	width:25px;
	height:25px;
	background-image: url(../images/icons/arrow-right-purple.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:100%;
	font-size:0;
	text-indent:-999999px;
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 	}
	
.item-style:hover .arrow-button{
	margin-right:20px;

}
 /*************item sthyls ****************/
 
 
.white-tint{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	z-index:2;
	padding:30px;
}
.white-tint-inner{
	width:100%;
	z-index:2;
	padding:40px;
	background-color:rgba(255, 255, 255 ,0.7);
}

   
.white-tint h2{
	font-size: 24px;
	margin:0 0 10px 0;
	font-family:var(--heading-font-medium);
	font-weight:normal;
	line-height:normal;
  } 
.white-tint p:last-child{
  	margin:0;
 	 
  }
  
  /*************news sthyls ****************/

.news-style{
	background-color:var(--white);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	padding:50px 60px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	position:relative;
  } 
.news-style:hover{
	 
	}

.news-style:before{
	background-color:var(--primary-color);
	width:0;
	height:5px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	z-index:2;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
  }
  
.news-style:hover:before{
	width:100%;
  }  
  
 
.news-style h2{
	font-size: 24px;
	margin:0 0 15px 0;
	font-family:var(--heading-font-medium);
	font-weight:normal;
	line-height:normal;
	color:var(--primary-color);
  } 
  .news-style p{
  font-size:14px;
  margin:0 0 20px 0;
   
 	 
  }
.news-style p:last-child{
  	margin:0;
  }

 /*************news sthyls end ****************/
 
 
 /*****************************team grid****************/
 
.team-grid{ 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	
}
.team-grid ul{ 
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none;
	gap:25px 2%;
}
 .team-grid ul li {
	 margin:0;
  
}
 .team-grid ul li:nth-child(1) {
 
  flex: 0 0 39%;
}
 .team-grid ul li:nth-child(2) {
 
 flex: 0 0 59%;
}
 .team-grid ul li:nth-child(3) {
 
  flex: 0 0 29%;
}
 .team-grid ul li:nth-child(4) {
 
  flex: 0 0 19%;
}
 .team-grid ul li:nth-child(5) {
 
  flex: 0 0 48%;
}

/******/

.cta-box {
    padding-block: 40px;
    margin: 60px 0 0 0;
    border-top: 1px solid #e7e7e7;
}
.testimonial-section {
	padding: 100px 0;
}
.bg-dark-blue {
	background-color: var(--secondary-color);
}
.testimonial-section .shape1 {
	z-index: inherit;
}
.box-style {
    background-color: #fff;
    border-left: 3px solid var(--primary-color);
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.cta-section {
	padding: 100px 0;
}
.cta-btn-main {
    display: inline-block;
    padding: 25px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    outline: 1px solid #b9afe8;
    outline-offset: -10px;
}
.cta-btn-main:hover {
	background-color: #458eb4;
	outline: 1px solid #75b5d7;
	color: #fff;
}

/******/
.circle-img{
	border-radius: 50%;
	vertical-align:middle;
	width:70px;

	height:70px;
}
/*************** INNER BANNER ***************/
.inner-head {
	width: 100%;
	min-height:200px;	 
	background-repeat: no-repeat;
	background-position: left bottom;
	background-color:var(--grey); 
	background-image: url(../images/icons/dot.svg);	
}
 

/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--primary-color);	
	margin-bottom:50px;
	position:relative;
}
 

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
	font-family:var(--heading-font-medium);
	text-transform:uppercase;
	font-size:14px;
	border-bottom:1px solid var(--grey-medium);
 
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " / ";
 
}
 .breadcrumb a{
    color:var(--primary-color);	
}
 .breadcrumb a:hover{
    color:var(--secondary-color);	
 
}
 


 
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/
 
 
/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
} 

 
 

.bg1 {
	background-image: url(../images/backgrounds/bg1.webp);
	
}
.bg4{
	background-image: url(../images/backgrounds/bg4.jpg);
	background-size: cover;
	
}
.bg5{
	background-image: url(../images/backgrounds/bg5.jpg);
	background-size: cover;
	background-attachment: fixed;
}
.bg6{
	background-image: url(../images/backgrounds/bg6.jpg);
	background-size: cover;
}
.bg7{
	background-image: url(../images/backgrounds/bg7.jpg);
	background-size: cover;
}
.bg3 {
	background-image: url(../images/parallax/bg1.webp);
	color:#fff;
}
.bg-gradient-wrap{
	background: url(../images/backgrounds/bg-gradient.jpg) no-repeat 100% 165px;
	background-size: contain;
	background-attachment: fixed;
	z-index:1;
	position: relative;
}
.bg-gradient{
	background: url(../images/backgrounds/bg-gradient.jpg) no-repeat 100% 165px;
	background-size: contain;
	background-attachment: fixed;
	z-index:1;
	position: relative;
}

.hr-strip{
	width:100%;
	height:100px;
	position:absolute;
	left:0;
	bottom:0;
	z-index:1;
}

.cnb-single.cnb-right {
    bottom: 145px !important;
    right: 10px !important;
}
.text-hilight {
    padding: 15px 25px;
    background: #eeeaff;
    color: #186790;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
}


.thank-u-wrap{
    display: flex;
    justify-content: center;
}
.thank-u-box{
    flex: 0 0 40%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
    text-align: center;
    padding: 50px 50px 60px;
    border-radius: 15px;
}
.thank-u-box h3 i{
    font-size: 92px;
    color: var(--primary-color);
}
.thank-u-box p{
    margin-bottom: 0px;
    font-size: 28px;
    font-weight: 700;
}
	


.min-240 {min-height: 240px;}
.thecno-acc .acc-new-container {
    background: transparent;	
}
.bg-thecno {
	background-image: url(../images/techno-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	color: var(--white);
}
.thecno-acc .acc-new-content {
	padding: 0;
}
.thecno-acc .acc-new-head h3 {
    margin: 0;
    font-weight: bold;
    font-size: 23px;
	color: var(--white);
}
.techno-box {
    position: relative;
    background-color: var(--primary-color);
    padding: 40px;
	margin-bottom: 0;
}
.techno-box h3 {
    font-size: 33px;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid #bab1e5;
}
.sub-head-techno {
    font-size: 26px;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid var(--secondary-color);
    line-height: 25px;
}
.software-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:2.5%;
	margin-bottom: 40px;
}
.software-wrapper:last-child {
	margin-bottom: 0;
}
.software-box-last-cnt p {
    font-size: 14px;
}
.software-box-last-cnt .s-name {
    text-align: left;
	font-size: 16px;
}
.software-box {
    flex: 0 0 18%;	
}
.icn {
    background-color: #fff;
    padding: 5px;
    border-radius: 7px;
    max-width: 90px;
    margin: 0 auto;
}
.icn img {
    max-width: 100%;
    display: block;
}
.s-name {
    font-size: 14px;
    font-weight: 500;														
    padding: 5px 0;
    margin-bottom: 0;
	text-align: center;
}
.we-use-title {
    font-weight: 600;
}





/*********file chosen style**************/

input.file{
    display: none;
	}


.fa-upload{
	margin:0 15px 0 0;
}
.form-style label.custom-file-upload {
width: 100%;
    border: 0;
    display: inline-flex;
    align-items: center;
    padding: 24px 20px 24px 101px;
    color: #fff;
    cursor: pointer;
    background-color: var(--secondary-color);
    border: 0;
    height: 108px;
    position: relative;
    margin-bottom: 0

}
.form-style label.custom-file-upload:hover {
	background-color: var(--primary-color);
	}
.form-style label.custom-file-upload  span{
    position: absolute;
    /* top: 0; */
    /* bottom: 0; */
    margin: auto 0;
    left: 33px;
    font-size: 39px;
    font-weight: 200;px;
}
.custom-file-upload:hover{
	background-color: var(--secondary-color);
	}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

.form-style{}

 .form-style label .checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 27px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container-wrap{
	position: relative;
	padding-left: 30px;
}

.checkbox-container-wrap .checkbox-container{margin-right: 0;}
.form-style .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.form-style .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 1px solid var(--grey-medium);
}

/* On mouse-over, add a grey background color */
.form-style .checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.form-style .checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.form-style .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.form-style .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-style .checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/**********forms**************/
.form-style{}
.form-style .smd100{
padding:10px 0;
}
.form-style label{
	display: inline-block;
	margin-bottom: 13px;
}
abbr[title] {
    border-bottom: 0px  !important;
    text-decoration: none;
}
.required {
    border: none;
    color: #E01020;
    font-size: 16px;
    line-height: 1;
}
.career-form{
	gap: 30px 4%;
}
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px;
	background-color: var(--white);
	display: block;
	border: 1px solid var(--grey-medium);
	margin:0;
	color: var(--grey-dark);
	font-size: 16px;
 
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0;
	display: inline-block;
	color:var(--white);
	font-size: 30px;
	cursor: pointer;
	vertical-align: top;
	padding: 20px 40px;
	text-align: center;
	background-color: var(--primary-color);
	font-weight: normal;
	font-family:var(--heading-font-medium);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

.sendbutton:hover {	
	background-color: var(--secondary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	padding: 20px 40px 20px 20px;
	background-image: url(../images/icons/down.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 11px;
}
.filter-row{
	border-bottom: 1px solid #ccc;
}
 .form-group-select{
 	display: flex;

 	gap:15px;
 }

::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}

 

 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--secondary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
	.navigation:after {
		display: none;
	}
}
/************************************* 1320px *************************************/
@media only screen and (max-width: 1320px) {

.container {
		width: 100%;
		padding:0 20px;
	}
	
 
		
header,
header.smaller, .header {
	align-items: center;
	padding:0;
	background-color:var(--white);
}
 

.logo img , header.smaller .logo img{
	width:80px;
	}
.social {
	margin-right:10px;	
 	 
}

.social a  {
	font-size:14px;
	margin:3px; 
	width:30px;
	height:30px;
	line-height:30px;	 
}
 .request-but{
	margin-right:20px;
 }	

.title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 25px;
}
.blog-list2 .item:hover .img img {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.testimonial-box{
		padding: 45px 50px;
	}

	.data-wrap h2 {
    font-size: 60px;
    line-height: 66px;
}

.software-box {
    flex: 0 0 23%;
    margin-bottom: 15px;
}

}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
	.head-group {
		flex-direction:row;
   }
	.top-info .top-menu {
		display:none;
	}
	.mobile-menu{
	   display:flex !important;
	   flex-wrap: wrap;
	   color:var(--white) !important;
	   gap:10px;
	   width:100% !important;
	   font-size:12px;
	   line-height:14px !important;
	   justify-content: center;
	   text-align:center !important;
	   margin:0 !important;
	   padding:10px 20px !important;
	   background-color:var(--primary-color) !important;
	   
   }	
   .mobile-menu  a{ 
	   color:var(--white) !important;
	
   }
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.section-spacing-100, .section-spacing-50{
	padding:50px 0;
} 
.partners-single{
 	flex:0 0 32%;
 }
 .threecol{
	flex:0 0 48%;	
}
 .case-single{
	
	padding: 30px 30px 66px 30px;
}
.splitleft{
	display: none;
}
	.blog-list2 .item .img {
    display: none;
}
.title-row-cases{
	margin-top: 200px;
}
	.testimonial-box{
		padding: 25px 30px;
	}
	p.font24 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}
.quote-icon {
    max-width: 35px;
}

.section-steps .smd50,  .section-steps .smd25, .section-steps .smd60{width:100%;}
.digital-item-cont {
    flex: 0 0 72%;
    padding: 130px 30px 30px 30px;
    }
    .digital-item-cont .icon {
    padding: 5px;
    top: 30px;
    left: 30px;
}
.inner-brands li {
    flex: 0 0 23%;
    }
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

  .thank-u-box {
    flex: 0 0 60%;}
	
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

body{
	font-size:16px;
} 
 
 .index-head { 
	padding:100px 0;
	height:auto;	
}
 .index-head:before { 
	width:50%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-color:rgba(0, 0, 0,0.5);
}
.index-intro{
	width:50%;
	position:relative;
	z-index:2;
	padding:20px 20px 20px 0;
	 
}

.index-intro .heading50 {
	color:var(--white);
	font-size:20px !important;
}
 .google-review{
width: auto;
        background-color: var(--white);
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
 
}
hr {
	margin: 20px 0;

	}
	
 
  .info-des-style-des{
	position:relative;
	padding:20px;
	background-color:var(--black);
	font-size:16px;
}
 .info-des-style-des h2{
	font-size:20px;
 
}
.heading30,
.heading50,
.heading60{
	font-size:28px;
}
.heading45 {
	font-size:22px;
}
.heading40 {
	font-size:20px;
}
.heading140{
	font-size:30px;
}
.white-tint {
  padding: 20px;
  position:relative;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  background-color:var(--white);
}
.white-tint-inner {
  padding: 0;
}
.team-grid ul{  
	gap:5px 2%;
}
.news-style{
	padding:30px;
  } 
  
  .social-container ul{
	gap:30px 3.5%;
}
.social-container ul li{
	flex: 0 0 48%;
	padding:0 0 0 40px;
	 
}
.social-container ul li i{
	font-size:24px;
}
 

 .menu-col ul li a{
 	font-size:14px;
}
 
 .menu-col h2{
 	font-size:18px;
	margin:0 0 18px 0;
 
	}
 .footer-bottom{
	 justify-content: left;
	 flex-direction:column;
	 padding:20px 0;
 }
 .terms-privacy, .copyright{
 	width:100%;
 }
  .address-box{
	font-size:14px;
	margin-bottom:20px;
}

 .thumb{
	 padding-right:20px;
	}
.map-bg {
 
  padding: 20px 0;
}
.map-sec-content{
	position:relative;
	left:auto;
	top:auto;
	padding:0;
 	
}
.inner-row-partners {
    gap: 6%;
}
.partners-single{
 	flex:0 0 46%;
 }
 .subhead {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
}
.mission-box {
    flex: 0 0 100%
    }
    .value-item {
    
    flex-wrap: wrap;
  
}
.blog-list2 .item{
	  padding: 25px 20px;
}
.value-item>.title-div{
	width: 100%
	}
	.pop-img-div {
    width: 100%;
}
.value-item .w-icons-div {
    width: 30%;
    padding: 0;
}
.value-item .desc{
    width: 60%;
    padding: 0;
}
.mission-box:nth-child(even) {
    margin-top: 0;
}
.ceo-img img{
width: 90%;
position: relative;
}
.ceo-msg {
	padding: 50px 0 0 0 !important;
}
	.data-wrap h2 {
    font-size: 40px;
    line-height: 46px;
}
.data-wrap p {
    font-size: 16px;
    line-height: 16px;
}
.iconic-content {
    padding: 0 0 0 120px;
    margin-bottom: 25px;
    }
    .iconic-content p {
    font-size: 16px;
    line-height: 20px;
}
.iconic-content h2 {
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 10px 0;
}
.digital-item , .digital-item:nth-child(even){
	flex-direction: column;
	flex-wrap: wrap;

}
.digital-item .digital-item-cont, .digital-item:nth-child(even) .digital-item-cont{
transform: none;
flex:0 0 100%;
margin-bottom: 30px;
}
.digital-item-img {
    flex: 0 0 100%;
}
.inner-brands li {
    flex: 0 0 31%;
    }
    ul.s-logos{
flex-wrap: wrap;
}
header{
		position: static;
	}

.software-box {
    flex: 0 0 18%;
    margin-bottom: 15px;
}



}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
	
 
 .video-caption{
 	width:70%;
	padding:20px;
	font-size:20px;	
	top:100px;
	left:25px;
 }
 
   .video-caption:before{
	border:5px solid var(--white);
 
 }
   .video-caption:after{ 
	border:5px solid var(--primary-color);
 
 }
 
.input-input{
	padding:0 20px; 
}


.input-button{
	font-size:18px; 
	position:relative;
	margin-top:10px;
	width:100%;
}
.circle-img{
	 
	width:50px;
	height:50px;
	margin:0 15px;
}
.threecol{
flex:0 0 100%;	
}
 .case-single{
	
	padding: 30px 30px 66px 30px;
}
.career-form {
    gap: 18px 4%;
}
.testimonial-box, .testimonial-box:nth-child(even) {
    flex-direction: column;
}
.inner-brands li {
    flex: 0 0 31%;
    padding: 7px 7px;
    }
     .video-caption{
width: 90%;
    padding: 20px;
    font-size: 30px;
    line-height: 40px;
  
 
 }
     .section-spacing-100, .section-spacing-50 {
        padding: 25px 0;
    }
    .funfacts ul li h2 {
    font-size: 40px;
}
.video-bx {
    width: 100%;
    height: 350px;
    }


	.pum-theme-565 .pum-container, .pum-theme-default-theme .pum-container{ width: 90% !important;
    max-width: 90% !important;}
}




/************************************* 480px *************************************/
@media only screen and (max-width: 575px) {
	 
.partners-single{
 	flex:0 0 100%;
 }
 .thank-u-box {
    flex: 0 0 90%;

    padding: 50px 20px 60px;}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
.inner-brands li {
    flex: 0 0 48%;
    padding: 7px 7px;
    }
.software-box {
	flex: 0 0 23%;
	margin-bottom: 15px;
}
.techno-box {
    padding: 20px;
}
.thecno-acc .acc-new-head h3 {
    font-size: 20px;
}
}
/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}