@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');
@font-face {
		font-family: 'proxima_nova_altbold';
		src: url('../fonts/Mark Simonson - Proxima Nova Alt Bold-webfont.eot');
		src: url('../fonts/Mark Simonson - Proxima Nova Alt Bold-webfont.eot?#iefix') format('embedded-opentype'),
			 url('../fonts/Mark Simonson - Proxima Nova Alt Bold-webfont.woff2') format('woff2'),
			 url('../fonts/Mark Simonson - Proxima Nova Alt Bold-webfont.woff') format('woff'),
			 url('../fonts/Mark Simonson - Proxima Nova Alt Bold-webfont.ttf') format('truetype'),
			 url('../fonts/Mark Simonson - Proxima Nova Alt Bold-webfont.svg#proxima_nova_altbold') format('svg');
		font-weight: normal;
		font-style: normal;
}
:root {
	--brandGreen: #019047;
	--hoverGreen: #02773b;
}
*{
	font-family: 'Rubik', sans-serif;
}
body{
	position: relative;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
}
::-webkit-scrollbar {
		width: 8px;
		height: 4px;
}
::-webkit-scrollbar-track {
		background-color: #cdcdcd;
		box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb{
		background-color: var(--brandGreen);
		border-radius: 0px 0px 5px 5px;
}
::-webkit-scrollbar-thumb:hover{
		background-color: #05ab56;
}
h1, h2, h3, h4, h5, big{
	font-family: 'proxima_nova_altbold';
}
p{
	color: #3d3d3d;
}
a{
	position: relative;
	text-decoration: none;
	cursor: pointer;
	color: #151515;
}
button{
	position: relative;
	padding: 12px 22px;
	padding-right: 42px;
	font-size: 0.8em;
	color: #ffffff;
	background-color: var(--brandGreen);
	outline: 0px;
	border: 0px;
	border-radius: 20px;
	cursor: pointer;
	transition: 0.4s;
}
button:hover, button:focus{
	background-color: var(--hoverGreen);
}
input{
	position: relative;
	display: block;
	width: 100%;
	font-size: 0.9em;
	margin-bottom: 20px;
	padding: 10px 0px;
	outline: 0px;
	border: 0px;
	box-sizing: border-box;
	background-color: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	transition: 0.4s;
}
input:hover, input:focus{
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	transition: 0.4s;
}
a.flowLink{
	position: relative;
	display: inline-block;
	padding: 14px 22px;
	padding-right: 42px;
	font-size: 0.8em;
	color: inherit;
	z-index: 1;
	transition: 0.4s;
}
a.flowLink:hover{
	color: #ffffff;
	transition: 0.4s;
}
a.flowLink::before, button::before{
	content: '';
	position: absolute;
	right: 20px;
	top: 18px;
	width: 11px;
	height: 9px;
	background-image: url('../images/arrow.png');
}
button::before{
	top: 15px;
}
a.flowLink::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 55px;
	z-index: -1;
	background-color: var(--brandGreen);
	border-radius: 24px;
	filter: invert(0);
	transition: 0.4s ease-out;
}

a.flowLink:hover::after{
	width: 100%;
	transition: 0.4s ease-out;
}
a.flowLink.dark::before, a.flowLink:hover::before, button::before{
	filter: invert(1);
	transition: 0.4s;
}
a.flowLink:not(.greenBubble).dark::after{
	background-color: #151515;
}
.center{
	text-align: center;
}
.branded{
	color: var(--brandGreen);
}
.container{
	position: relative;
	display: block;
	width: 1200px;
	max-width: 90%;
	margin: auto;
}
.container.short{
	width: 1000px;
}
header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0);
	transition: 0.4s;
}
header.services{
	position: absolute;
	background-color: rgba(255, 255, 255, 0)!important;
}
header, header a{
	color: #ffffff;
}
header.scrolled a:not(.freeTrial), header.scrolled .menu li{
	color: #6a6a6a;
	transition: 0.4s;
}
header.scrolled{
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	transition: 0.4s;
}
header > .container{
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	min-height: 65px;
	transition: 0.4s;
}
header > .container > div{
	align-self: center;
}
.headerLeft{
	position: relative;
	display: flex;
}
.headerLeft > div{
	position: relative;
	align-self: center;
}
.headerLeft > .menu > *{
	position: relative;
	display: inline-block;
	margin-left: 30px;
	margin-top: 3px;
	margin-bottom: 3px;
	font-size: 1em;
	color: inherit;
}
.headerRight{
	flex: 1;
	text-align: right;
}
.headerRightTop{
	font-size: 0.7em;
	max-height: 500px;
	overflow: hidden;
	transition: 0.4s;
}
header.scrolled:not(.services) .headerRightTop{
	max-height: 0px;
	transition: 0.4s;
}
.headerRightTop > a{
	position: relative;
	display: inline-block;
	padding: 10px 15px;
}
a.callBack{
	background-color: rgba(255, 255, 255, 0.3);
}
.headerRightBottom{
	padding: 10px 0px;
}
a.freeTrial{
	position: relative;
	display: inline-block;
	padding: 10px 15px;
	color: var(--brandGreen);
	background-color: #ffffff;
	border-radius: 20px;
	font-size: 0.8em;
	margin-left: 15px;
	transition: 0.6s;
}
a.freeTrial:hover, header.scrolled a.freeTrial{
	color: #ffffff;
	background-color: var(--brandGreen);
}
.headerRight a:not(.freeTrial), .menu a, .menu li{
	opacity: 0.8;
	transition: 0.4s;
}
.headerRight a:hover, .menu a:hover, .menu li:hover{
	opacity: 1;
	transition: 0.4s;
}
.mobileMenuCurtain{
	display: none;
}
.homeBanner{
	position: relative;
	height: 70vh;
	overflow: hidden;
	background-size:cover;
	background-color: #212121;
	background-position:center;
	color: #ffffff;
	line-height: 1.2;
	box-shadow: inset 0px -5px 5px rgba(0, 0, 0, 0.08);
}
.homeBanner::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.homeBanner.bigger{
	height: 80vh;
	max-height: 80vh;
}
.homeBanner.shorter{
	height: 50vh;
}
.homeBanner h1, .homeBanner h2, .homeBanner h3, .homeBanner p{
	margin: 5px 0px;
}
.homeBanner > div{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.homeBanner:not(.bigger) > div{
	top: 58%;
	transform: translateY(-50%);
}
.homeBanner h1{
	margin: 0px;
	font-size: 3em;
	max-width: 600px;
}
.homeBanner h2.big{
	font-size: 2.2em;
}
.homeBanner p{
	margin-top: 10px;
	margin-bottom: 45px;
	line-height: 1.4;
	max-width: 550px;
	color: #ffffff;
}
#homeSlider{
	position: relative;
}
.indicators{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 45px;
	z-index: 10;
	text-align: left;
}
.slideBar{
	position: relative;
	display: inline-block;
	width: 100px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
}
.slideBar > div{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.8);
	right: 100%;
}
.smart{
	position: relative;
	background-image: url('../images/waves.jpg');
	background-size: cover;
	background-position: left bottom;
	padding: 5vh 0px;
}
.tabMenu{
	position: sticky;
	display: block;
	top: 66px;
	z-index: 10;
	text-align: center;
	background-color: #ffffff
}
.tabMenu > a{
	position: relative;
	display: inline-block;
	text-align: center;
	padding: 12px 3%;
	margin: 0px -2px;
	font-size: 0.9em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	color: #6a6a6a;
	transition: 0.4s;
}
.tabMenu > a:not(.active):hover{
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	transition: 0.4s;
}
.tabMenu > a.active{
	border-bottom: 1px solid var(--brandGreen);
	color: #151515;
	transition: 0.4s;
}
.dualTiles{
	position: relative;
	display: flex;
	margin: 60px 0px;
}
.dualTiles.reversed{
	flex-direction: row-reverse;
}
.dualTiles > div{
	position: relative;
	flex: 1;
	padding: 30px 45px;
	box-sizing: border-box;
	align-self: center;
}
.dualTiles > div:first-child{
	text-align: center;
}
.imageBox{
	position: relative;
	display: inline-block;
	width: 80%;
}
.imageBox::before{
	content: '';
	position: absolute;
	top: -30px;
	left: -30px;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 10px;
	background-color: #fafafa;
	background-image: url('../images/waves-faded.jpg');
	background-size: cover;
	background-position: top left;
}
.imageBox::after{
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	width: 55px;
	height: 55px;
	z-index: 1;
	border-radius: 10px;
	background-color: #51CE6C;
}
.imageBox img{
	z-index: 2;
	border-radius: 10px;
	width: 100%;
}
.verticalSlides .imageBox{
	z-index: 1;
	width: 80%;
	max-width: 300px;
	margin: 30px 10%;
}
.dualTiles img{
	width: 100%;
	border-radius: 10px;
	animation-duration: 2s;
}
.sideAngle{
	background-image: url('../images/side-angle.png');
	background-repeat: no-repeat;
	background-position: left center;
}
.cloudSolutions{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 60px 0px;
}
.cloudSolutions > a{
	position: relative;
	flex: 16.6666%;
	padding: 10px 10px;
	text-align: center;
	box-sizing: border-box;
	border-right: 1px solid rgba(0, 0, 0, 0.04);
	font-weight: bold;
	transition: 0.4s;
}
.cloudSolutions > a > div{
	position: relative;
	display: inline-block;
	text-align: center;
	width: 100px;
	height: 100px;
	padding-top: 30px;
	margin-bottom: 10px;
	box-sizing: border-box;
	border-radius: 50%;
	background-color: #f9f9f9;
	transition: 0.4s;
}
.cloudSolutions img{
	height: 40px;
}
.cloudSolutions > a:hover > div{
	background-color: var(--brandGreen);
	transition: 0.4s;
}
.cloudSolutions > a:hover p{
	color: var(--brandGreen);
	transition: 0.4s;
}
.cloudSolutions > a:hover img{
	filter: hue-rotate(150deg) brightness(4);
	transition: 0.4s;
}
.cloudSolutions > a:last-child{
	border-right: 0px;
}
.cloudSolutions p{
	margin: 0px;
	font-size: 0.9em;
	margin-top: 10px;
}
.barred{
	position: relative;
	margin-bottom: 35px;
}
.barred::after{
	content: '';
	position: absolute;
	bottom: -16px;
	left: 0px;
	height: 3px;
	width: 44px;
	z-index: 1;
	border-radius: 2px;
	background-color: var(--brandGreen);
}
.center.barred::after{
	left: 50%;
	margin-left: -22px;
}
.partnership{
	position: relative;
	display: flex;
}
.partnership > div{
	position: relative;
	background-position: left top;
	background-size: cover;
	margin: 5vh 0px;
	padding: 30px;
	border-radius: 8px;
	box-sizing: border-box;
}
.partnership > div:first-child{
	background-color: #d6d6d6;
	background-image: url('../images/waves-faded.jpg');
	margin-right: 30px;
}
.partnership > div:last-child{
	background-color: #131313;
	background-image: url('../images/partner.jpg');
	color: #ffffff;
}
.partnership > div:last-child p{
	color: #ffffff;
}
.partnership h2{
	margin-top: 0px;
}
.clients{
	position: relative;
	max-width: 700px;
	margin: auto;
	text-align: center;
}
.clients > div{
	position: relative;
	display: inline-table;
	vertical-align: middle;
	padding: 10px;
	box-sizing: border-box;
}
.resources{
	position: relative;
	margin-top: 60px;
	padding: 60px 0px;
	background-image: url('../images/waves-faded.jpg');
	background-size: cover;
	background-position: left top;
}
.resources > .container{
	display: flex;
}
.resources > .container > div:first-child{
	width: 280px;
}
.resourceTilesHolder{
	position: relative;
	flex: 1;
	display: flex;
}
.resourceTile{
	position: relative;
	margin-left: 30px;
	box-sizing: border-box;
	color: #ffffff;
}
.resourceTile img{
	width: 100%;
	z-index: 0;
	border-radius: 10px;
}
.resourceTile > div{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	z-index: 1;
}
.resourceTile span{
	position: relative;
	display: inline-block;
	border: 1px solid var(--brandGreen);
	padding: 2px 10px;
	border-radius: 16px;
	font-size: 0.8em;
}
.resourceTile span.blog{
	border-color: #ff3b8d;
}
.resourceTile span.ebook{
	border-color: #0fc1f9;
}
.resourceTile h3{
	margin-top: 10px;
	font-size: 1em;
	font-weight: normal;
}
.control{
	position: relative;
	display: inline-block;
	background-color: #ffffff;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	border-radius: 20px;
	text-align: center;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
	padding-top: 10px;
	margin-right: 15px;
	color: #6a6a6a;
	cursor: pointer;
	transition: 0.4s;
}
.control:hover{
	box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3);
	color: #000000;
	transition: 0.4s;
}
.footerForm{
	position: relative;
	padding: 5vh 0px;
	background-image: url('../images/waves-faded.jpg');
	background-size: cover;
	background-position: left;
}
.footerForm > .container{
	display: flex;
}
.footerForm > .container > div:first-child{
	flex: 1;
	padding-right: 100px;
}
.footerForm > .container > div:last-child{
	width: 400px;
	max-width: 35%;
}
.footerForm h2{
	margin-top: 0px;
}
.associations{
	position: relative;
}
.associations > div{
	position: relative;
	display: inline-table;
	vertical-align: middle;
	padding: 10px 10px 10px 0px;
	box-sizing: border-box;
}
.associations img{
	max-width: 100%;
}
footer{
	position: relative;
	padding: 6vh 0px;
	background-color: #0d0d0d;
	color: #ffffff;
}
footer a{
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9em;
	transition: 0.4s;
}
footer a:hover{
	color: rgba(255, 255, 255, 1);
	transition: 0.4s;
}
.footerMenu{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 6vh;
}
.footerMenu > div{
	flex: 1;
}
.footerMenu h4{
	margin: 10px 0px;
	font-weight: normal;
}
.footerMenu a{
	display: block;
	font-size: 0.8em;
	margin-bottom: 8px;
}
.socialLinks > a{
	display: inline-block;
	margin-right: 15px;
}
.footLinks{
	position: relative;
	display: flex;
	color: rgba(255, 255, 255, 0.1);
}
.footLinks > div:last-child{
	flex: 1;
	text-align: right;
}
.footLinks a{
	font-size: 0.8em;
}
.footLinks p{
	margin: 0px;
	font-size: 0.8em;
	color: rgba(255, 255, 255, 0.5);
}
.testimonialsHolder{
	padding: 80px 0px;
}
.testimonialsHolder h2{
	margin-top: 0px;
}
.testimonials{
	position: relative;
	margin: auto;
	padding: 60px 0px;
}
.testimonials > div{
	position: relative;
	display: flex;
	box-sizing: border-box;
}
.testimonials > div span{
	position: absolute;
	display: inline-block;
	top: -80px;
	right: 0;
	width: 400px;
	max-width: 50%;
	height: 200px;
	z-index: -1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right top;
	filter: grayscale(1);
	opacity: 0.05;
}
.testimonials > div > div{
	position: relative;
	padding: 0px 45px;
	box-sizing: border-box;
}
.testimonials > div > div:first-child{
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.testimonials > div:not(.active){
	display: none;
}
.testimonials p{
	margin: 0px;
}
.testimonials img{
	width: 100px;
}
.testimonialsControls{
	position: relative;
	text-align: right;
}
#testimonialIndex{
	display: inline-table;
	margin-right: 20px;
	opacity: 0.4;
	font-size: 0.9em;
}
.serviceBody{
	position: relative;
}
.serviceMenu{
	position: sticky;
	top: 0;
	z-index: 5;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.04);
	background-color: #ffffff;
	padding: 10px 0px;
}
.serviceMenu .container{
	display: flex;
}
.serviceMenu .container > div{
	align-self: center;
}
.serviceMenu .container > div:not(:nth-child(2)){
	flex: 1;
}
.serviceMenu .container > div:nth-child(3){
	text-align: right;
}
.serviceMenu h3{
	margin: 0px;
}
.serviceMenu a{
	position: relative;
	display: inline-block;
	margin-right: 30px;
	opacity: 0.8;
	transition: 0.4s;
}
.serviceMenu a::after{
	content: '';
	position: absolute;
	bottom: -18px;
	left: 0;
	right: 0;
	height: 3px;
	border-radius: 4px 4px 0px 0px;
	background-color: #ffffff;
	transition: 0.4s;
}
.serviceMenu a:hover, .serviceMenu a.active{
	opacity: 1;
	transition: 0.4s;
}
.serviceMenu a:hover::after{
	background-color: rgba(0, 0, 0, 0.1);
	transition: 0.4s;
}
.serviceMenu a.active::after{
	background-color: var(--brandGreen);
	transition: 0.4s;
}
.motivationHolder{
	position: relative;
	padding-bottom: 60px;
}
.motivationSlides{
	position: relative;
	padding: 0px 40px;
	max-width: 900px;
	margin: auto;
	box-sizing: border-box;
	text-align: center;
	margin-top: 30px;
}
.motivationSlides > div{
	position: relative;
}
.motivationSlides > div:not(:first-child){
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 0;
}
.motivationSlides > div.active{
	z-index: 1;
	opacity: 1;
	transition: 1s;
}
.motivationSlides > div.changing{
	transform: scale(0.85);
	opacity: 0;
	transition: 1s;
}
.motivationSlides picture{
	position: relative;
	max-width: 100%;
}
.motivationSlides img{
	max-width: 100%;
}
.motivationSlides.fullWidth{
	position: relative;
	padding: 0px;
	max-width: 100%;
}
.motivationSlides.fullWidth  *{
	text-align: left;
	color: #000000;
}
.verticalSlider{
	position: relative;
	display: flex;
	margin: 45px 0px;
	background-color: inherit;
}
.verticalTabs{
	position: relative;
	width: 200px;
	background-color: inherit;
}
.verticalTabs > .timeline{
	content: '';
	position: absolute;
	top: 0px;
	left: 29px;
	z-index: 0;
	border-left: 1px dashed rgba(0, 0, 0, 0.4);
}
.verticalTabs > li{
	position: relative;
	display: block;
	list-style: none;
	padding: 8px 45px 8px 60px;
	border-radius: 30px;
	font-size: 0.9em;
	font-weight: bold;
	margin-bottom: 45px;
	color: #6a6a6a;
	background-color: inherit;
	cursor: pointer;
	z-index: 1;
	transition: 0.4s;
	border: 1px solid rgba(0, 0, 0, 0.04);
}
.verticalTabs.reducedHeight > li{
	margin-bottom: 25px;
}
.verticalTabs > li:hover{
	background-color: #fdfdfd;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
}
.verticalTabs > li.active{
	background-color: #ffffff;
	color: #000000;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
	transition: 0.4s;
}
.verticalTabs > li > span{
	position: absolute;
	top: 14px;
	left: 14px;
	border-radius: 15px;
	width: 30px;
	height: 30px;
	color: #151515;
	box-sizing: border-box;
	text-align: center;
	padding-top: 8px;
	letter-spacing: 1px;
	font-weight: normal;
	font-size: 9px;
	background-color: #f9f9f9;
	transition: 0.4s;
	border: 1px solid #ffffff;
}
.verticalTabs > li.active > span{
	background-color: #51CE6C;
	color: #ffffff;
	transition: 0.4s;
}
.verticalTabs > li:last-child{
	margin-bottom: 0px;
}
.verticalSlides{
	flex: 1;
}
.verticalSlides > div{
	position: relative;
	padding-left: 100px;
	display: none;
	box-sizing: border-box;
}
.verticalSlides > div > span{
	position: absolute;
	top: 15px;
	left: 5%;
	font-size: 5em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
	line-height: 0px;
	font-family: 'proxima_nova_altbold';
}
.verticalSlides > div.active{
	display: flex;
}
.verticalSlides > div > div{
	width: 50%;
	position: relative;
}
.verticalSlides > div > div:first-child{
	padding-right: 30px;
}
.verticalSlides h3{
	margin-top: 0px;
}
.verticalSlides li, .whyUs li, li{
	font-size: 1em;
	margin-bottom: 10px;
	list-style-image: url('../images/services/list-arrow.svg');
}
.boxedContent{
	position: relative;
	max-width: 300px;
	margin: auto;
	background-color: #1A2534;
	padding: 15px 30px;
	font-size: 0.9em;
	border-radius: 10px;
	color: #ffffff;
	text-align: left;
}
.offerings{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 5vh 0px;
}
.offerings > div{
	position: relative;
	width: 18%;
	flex: 1;
	margin: 10px 1%;
	border-radius: 10px;
	box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.06);
	padding: 15px 25px;
	box-sizing: border-box;
}
.offerings img{
	height: 35px;
}
.offerings h4{
	margin-top: 5px;
	margin-bottom: 0px;
}
.merikos{
	position: relative;
	margin-bottom: 160px;
	background-image: linear-gradient(to right, #ffffff 50%, #182230 50%);
	color: #ffffff;
}
.merikos > .container{
	background-color: #182230;
	display: flex;
	border-radius: 10px;
}
.merikos > .container > div{
	position: relative;
	flex: 1;
	align-self: center;
	padding: 60px;
	box-sizing: border-box;
}
.merikos p{
	color: #ffffff;
}
.merikos img{
	width: 100%;
	margin-bottom: -140px;
	border-radius: 10px;
}
.whyUs{
	position: relative;
	background-color: #eeeef0;
	background-image: url('../images/services/why-back.jpg');
	background-size: cover;
	background-position: right;
	padding: 60px;
	border-radius: 10px;
	box-sizing: border-box;
	margin-bottom: 60px;
}
.whyUs > div{
	max-width: 700px;
}
.whyUs ul{
	padding: 0px 10px;
	column-count: 3;
}
.whyUs li{
	font-size: 1em;
}
.ourSuccess{
	display: flex;
	margin-bottom: 80px;
}
.ourSuccess > div{
	position: relative;
	box-sizing: border-box;
	padding: 60px;
}
.ourSuccess > div:first-child{
	flex: 60%;
	background-color: #192231;
	background-image: url('../images/services/success-back.jpg');
	background-size: cover;
	background-position: right bottom;
	color: #ffffff;
	border-radius: 10px;
}
.ourSuccess > div:last-child{
	flex: 40%;
	padding-top: 30px;
}
.successBoxes{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}
.successBoxes > div{
	width: 33.3333%;
	position: relative;
	padding: 30px;
	box-sizing: border-box;
	border-color: #3E3E3E;
	border-style: solid;
	border-width: 0px 1px 1px 0px;
}
.successBoxes > div:nth-child(3n+1){
	padding-left: 0px;
}
.successBoxes > div:nth-child(3){
	border-width: 0px 0px 1px 0px;
}
.successBoxes > div:nth-child(n+4){
	border-width: 0px 1px 0px 0px;
}
.ourSuccess h2{
	margin-top: 0px;
}
.ourSuccess li{
	position: relative;
	font-size: 0.9em;
	margin: 10px 0px;
	list-style-image: url('../images/services/arrow-green.svg');
}
.successBoxes p{
	margin-top: -15px;
	margin-bottom: 0px;
	color: #ffffff;
	white-space: nowrap;
}
.overviewExtended{
	position: relative;
	display: flex;
}
.overviewExtended > div{
	position: relative;
	box-sizing: border-box;
}
.overviewExtended > div:first-child{
	width: 330px;
	padding-right: 60px;
}
.extendedBoxes{
	position: relative;
	flex: 1;
	display: flex;
}
.extendedBoxes > div{
	position: relative;
	flex: 1;
	padding: 30px;
	padding-bottom: 10px;
	min-height: 250px;
	border-right: 1px solid #f2f2f2;
	transition: 0.4s;
}
.extendedBoxes > div:last-child{
	border-right: 0px;
}
.extendedBoxes > div:hover{
	box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: 0.4s;
}
.extendedBoxes img{
	height: 40px;
}
.extendedBoxes p{
	position: relative;
	display: block;
	margin-top: -10px;
	margin-bottom: 0px;
	max-height: 50px;
	padding-bottom: 20px;
	overflow: hidden;
	transition: 0.4s;
}
.extendedBoxes > div:hover p{
	max-height: 500px;
	transition: 1.5s;
}
.extendedBoxes p::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1) );
}
.floatBox{
	position: relative;
	margin: 60px 0px;
	display: flex;
	border-radius: 10px;
	background-color: #fafafa;
	background-image: url('../images/waves-faded.jpg');
	background-size: cover;
	background-position: top left;
}
.floatBox > div{
	position: relative;
	align-self: center;
	padding: 30px;
}
.floatBox > div:first-child{
	flex: 1;
}
.floatBox > div:last-child{
	text-align: right;
}
.floatBox p{
	margin: 0px;
}
.floatBox h2{
	margin-top: 5px;
	margin-bottom: 0px;
}
.boxSlider{
	position: relative;
	padding: 30px 60px 15px 60px;
	box-sizing: border-box;
}
.boxSlides{
	position: relative;
	width: 100%;
	min-height: 300px;
}
.boxSlides.larger{
	min-height: 340px;
}
.boxSlides > div{
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: 0px;
	right: 0px;
	z-index: 0;
	overflow: hidden;
	padding: 30px;
	text-align: left;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.08);
	background-color: #fbfbfb;
	transition: 1s;
}
.boxSlides > div.active{
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 30px;
	right: 30px;
	background-color: #ffffff;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
	transition: 1s;
}

.boxSlides h1{
	position: relative;
	font-size: 2.5em;
	line-height: 1em;
	margin: 0px;
}
.boxSlides h1 > div{
	position: absolute;
	top: 12px;
	left: 100px;
	right: 15px;
	height: 12px;
	border-radius: 6px;
	background-color: #E9E9E9;
}
.boxSlides h1 > div > div{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0%;
	border-radius: inherit;
	background-color: #EBB939;
	transition: 1s;
}
.boxSlides p{
	margin-bottom: 0px;
}
.boxSliderIndex{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 0.8em;
	opacity: 0.6;
}
.boxSliderControls{
	position: absolute;
	top: 48%;
	left: 0px;
	right: 0px;
	text-align: left;
	padding-top: 10px;
}
.boxSliderControls .right{
	float: right;
	margin: 0px;
}
.popupCover{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 110;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
}
.popupCover > div{
	position: absolute;
	top: 0;
	bottom: 0;
	right: -600px;
	width: 50%;
	padding: 60px 80px;
	max-width: 600px;
	background-color: #fafafa;
	background-image: url('../images/waves-faded.jpg');
	background-size: cover;
	overflow-x: hidden;
	box-sizing: border-box;
	transition: 1s;
}
.popupCover.active > div{
	right: 0;
	transition: 1s;
}
.popupCover h2{
	margin-top: 0px;
}
.popupCover .close{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	padding: 8px;
	border-radius: 15px;
	box-sizing: border-box;
	background-origin: content-box;
	background-image: url('../images/cross.svg');
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	opacity: 0.6;
	transition: 0.4s;
}
.popupCover .close:hover{
	opacity: 1;
	background-color: #ffffff;
	transition: 0.4s;
}
.popupLinks{
	position: relative;
	display: flex;
	font-size: 0.7em;
	margin-top: 45px;
}
.popupLinks > a{
	position: relative;
	flex: 1;
	padding: 10px 5px;
	box-sizing: border-box;
	text-align: center;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.popupLinks > a:last-child{
	border-right: 0px;
}
.popupLinks i{
	font-size: 1.8em;
	color: var(--brandGreen);
	margin-bottom: 10px;
	display: block;
}
.mobileDock{
	display: none;
}
.mobileDock a.becomePartner{
	display: none;
}
.features{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.features > div{
	position: relative;
	width: 23.5%;
	margin: 12px 0;
	margin-right: 2%;
	border-radius: 10px;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	padding: 15px;
}
.features > div:nth-child(4n){
	margin-right: 0px;
}
.features p{
	margin: 0px;
}
.slidingBoxes{
	position: relative;
}
.slidingBoxes .extendedBoxes{
	max-width: 100%;
	overflow-x: auto;
	padding: 15px;
}
.slidingBoxes .extendedBoxes::-webkit-scrollbar {
	height: 0px;
}
.slidingBoxes .extendedBoxes > div{
	min-width: 200px;
	min-height: 180px;
}
.slidingBoxes img{
	margin-bottom: 15px;
}
.slidingBoxesControls{
	position: absolute;
	top: 65%;
	height: 1px;
	left: 0;
	right: 0;
}
.slidingBoxesControls .right{
	float: right;
	margin: 0px;
}
.wavesBack{
	position: relative;
	background-color: #fafafa;
	background-image: url('../images/waves-faded.jpg');
	background-size: cover;
	background-position: top left;
	margin: 60px 0px;
	padding: 60px 0px;
}
.devPlatform{
	position: relative;
	display: flex;
}
.devPlatform > div{
	position: relative;
	box-sizing: border-box;
}
.devPlatform > div:first-child{
	width: 500px;
	padding-right: 100px;
}
.flipSlider{
	position: relative;
	text-align: center;
}
.flipSlider img{
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.flipSlider h4{
	margin-top: 10px;
}
.flipSlides > div{
	position: relative;
	transform: rotateZ(0deg) scale(1);
	opacity: 1;
	transition: 0.5s;
}
.flipSlides > div.flipping{
	transform: rotateZ(5deg) scale(0.6);
	opacity: 0;
	transition: 0.5s;
}
.flipSlides > div:not(.active){
	opacity: 0;
	transition: 0.5s;
}
.flipSlides > div:not(:first-child){
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.flipSliderDots{
	position: relative;
	font-size: 0.7em;
}
.flipSliderDots > span{
	color: #bdbdbd;
	cursor: pointer;
	padding: 0px 5px;
	transition: 0.4s;
}
.flipSliderDots > span:hover{
	color: #9c9c9c;
	transition: 0.4s;
}
.flipSliderDots > span.active{
	color: #000000;
	transition: 0.4s;
}
.expertiseTiles{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.expertiseTiles > div{
	position: relative;
	width: 20%;
	margin: 20px 0px;
	padding: 0px 15px;
	box-sizing: border-box;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.expertiseTiles > div:nth-child(4n+5){
	border-right: 0px;
}
.expertiseTiles p{
	margin-top: 10px;
	margin-bottom: 0px;
}
.expertiseTiles img{
	height: 40px;
}
.jailBars{
	position: relative;
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
}
.jailBars > div{
	position: relative;
	flex: 1;
	padding: 30px;
	box-sizing: border-box;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.jailBars > div:last-child{
	border-right: 0px;
}
.jailBars > div > span{
	position: absolute;
	top: -5px;
	left: 20px;
	font-size: 5em;
	z-index: 0;
	font-family: 'proxima_nova_altbold';
	color: transparent;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}
.jailBars h3{
	position: relative;
	display: block;
	z-index: 1;
	margin-bottom: 30px;
}
.jailBars > div:not(:first-child) h3::after{
	content: '';
	position: absolute;
	top: 4px;
	left: -30px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid green;
}
.blueBox{
	position: relative;
	display: flex;
	margin-bottom: 60px;
	background-color: #182230;
	border-radius: 10px;
	color: #ffffff;
}
.blueBox > div{
	position: relative;
	padding: 30px;
	box-sizing: border-box;
}
.blueBox > div:first-child{
	width: 35%;
}
.blueBox > div:last-child{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
}
.blueBox h4{
	margin: 0px;
}
.blueBox li{
	width: 50%;
}
.iiotMethodology p{
	margin: -15px 0px;
	min-height: 70px;
}
.analyticalPlatform{
	position: relative;
	width: 650px;
	max-width: 100%;
	margin: auto;
	margin-top: -45px;
}
.analyticalPlatform img{
	width: 100%;
}
.applicationsList{
	position: relative;
	display: flex;
	margin: 60px 0px;
}
.applicationsList > div{
	position: relative;
	flex: 1;
	padding: 15px 30px;
	box-sizing: border-box;
	border-right: 1px solid #f2f2f2;
}
.applicationsList > div:last-child{
	border-right: 0px;
}
.applicationsList h4{
	margin: 0px;
	margin-bottom: -5px;
	color: var(--brandGreen);
}
.noMinHeight > div{
	min-height: 0px;
}
.accordion{
	position: relative;
}
.accordion > div{
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	padding: 6px 5%;
	overflow: hidden;
	max-height: 75px;
	box-sizing: border-box;
	cursor: pointer;
	transition: 0.4s;
}
.accordion > div:last-child{
	border-bottom: 0px;
}
.accordion > div::after{
	content: '+';
	position: absolute;
	top: 30px;
	right: 30px;
	opacity: 0.6;
}
.accordion > div.active::after{
	content: '—';
	cursor: pointer;
}
.accordion > div.active{
	max-height: 75px;
	box-sizing: border-box;
	border-radius: 10px;
	max-height: 1000px;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
	cursor: default;
	transition: 1s;
}
.menu li{
	position: relative;
	padding: 15px 0px;
}
.subMenu{
	position: absolute;
	top: 55px;
	left: -10px;
	/*height: 60vh;*/
	display: none;
	border-radius: 5px;
	padding: 6px;
	box-sizing: border-box;
	background-color: #ffffff;
	box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
}
.menu > li:hover > div{
	display: flex;
}
.subMenu > div{
	position: relative;
	padding: 0px 15px;
}
.subMenu > div.smartMenu{
	position: relative;
	border-radius: 5px;
	min-width: 140px;
	padding: 15px;
	background-size: cover;
	background-position: bottom left;
	text-align: right;
	height: 175px;
}
.smartMenu h4{
	color: var(--brandGreen);
	margin: 0px;
}
.smartMenu h5{
	margin-top: 5px;
	color: #000000;
}
.subMenu a{
	display: block;
	color: #000000;
}
.otherMenu a{
	position: relative;
	display: block;
	padding: 8px 0px;
	min-width: 150px;
	font-size: 0.85em;
}
.justTouch{
	display: none!important;
}
.stickyItems{
	position: fixed;
	bottom: 50px;
	right: 11px;
	z-index: 90;
}
.stickyItems > a{
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: #000000;
	color: #ffffff;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 8px;
	box-sizing: border-box;
	opacity: 0.75;
	box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.4);
	transition: 0.4s;
}
.stickyItems > a:hover{
	opacity: 1;
	box-shadow: 1px 1px 6px rgba(255, 255, 255, 0.8);
	transition: 0.4s;
}
#gotoTop{
	transform: scale(0);
	transition: 1s;
}
#gotoTop.active{
	transform: scale(1);
	transition: 1s;
}
/* cloning pages style */
.microsite-banner{
	display: flex;
}
.microsite-banner div:first-child{
	flex: 1;
}
.microsite-banner div:last-child{
	flex: 1;
}
.microsite-banner-right{
	position: absolute;
	bottom: -50px;
	right: 0;
}
.microsite-banner-right img{
	width: 100px;
}
.microsite-expertiseTiles{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.microsite-expertiseTiles > div{
	position: relative;
	width: 16%;
	margin: 20px 0px;
	padding: 0px 15px;
	box-sizing: border-box;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.microsite-expertiseTiles > div:nth-child(6){
	border-right: 0px;
}
.microsite-expertiseTiles p{
	margin-top: 10px;
	margin-bottom: 0px;
}
.microsite-expertiseTiles img{
	height: 40px;
}
.hybrid-usecase > div:first-child{
	position: relative;
	width: 100%;
}
.aws-usecase{
	position: relative;
	flex: 1;
	display: flex;
	padding: 0px 150px;
}
.aws-usecase > div{
		position: relative;
		flex: 1;
		padding: 30px;
		padding-bottom: 10px;
		border-right: 1px solid rgba(0, 0, 0, 0.04);
		transition: 0.4s;
		text-align: center;
}
.aws-usecase > div:nth-child(3n){
	border-right: none;
}
.aws-usecase img{
	border: 1px solid #e6e6e6;
	border-radius: 8px;
}
.casestudy-img{
	width: 150px;
	border-radius: 10px;
}
.ebook-Text{
	position: relative;
	width: 100%;
	margin: 25px 0px;
}
.ebook-Text > div:first-child{
	position: relative;
	width: 55%;
	padding: 25px 30px;
	display: inline-table;
}
.ebook-Text > div:last-child{
	position: absolute;
	width: 20%;
	box-sizing: border-box;
	padding: 25px 30px;
	display: inline-table;
	top: -300px;
}
.ebook-Text > div:last-child >img{
	border-radius: 10px;
}
.nosystem{
		display: none;
}
a.aws-button::after{
	background-color: #FF9900!important;
}
.partners-cloud{
	position: relative;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0px;
}
.partners-cloud >div{
	position: relative;
    width: 18%;
    flex: 1;
    margin: 10px 1%;
    border-radius: 10px;
    padding: 0px 25px;
    box-sizing: border-box;
    border-right: 1px solid #f2f2f2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.partners-cloud >div:last-child{
	border-right: 0px;
}
.partners-cloud img {
    margin-right: 15px;
    /*margin-top: 0px;*/
    width: 23%;
}
.partners-manage img{
	width: 15%;
}
.partners-cloud img {
    height: 40px;
}
.partners-cloud h4 {
    flex: 60%;
}
.thankyouLinks{
	position: relative;
	padding: 25px 0px;
	text-align: center;
}
/* End cloning pages style */
.motivationTabs{
	position: relative;
	text-align: center;
	margin-top: 15px;
	max-width: 100%;
	overflow: auto;
	white-space: nowrap;
}
.motivationTabs::-webkit-scrollbar{
	height: 0px;
}
.motivationTabs li{
	position: relative;
	list-style: none;
	display: inline-block;
	margin: 0px -2px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.05);
	color: #888888;
	font-weight: bold;
	padding: 8px 5%;
	font-size: 0.8em;
	transition: 0.4s;
	cursor: pointer;
}
.motivationTabs li:hover, .motivationTabs li.active{
	color: #000000;
	transition: 0.4s;
}
.motivationTabs li.active{
	border-bottom: 2px solid var(--brandGreen);
	transition: 0.4s;
}
/* Landing pages style */
.infoSection{
	position: relative;
	padding: 10vh 0px;
	display: flex;
}
.infoSection > div{
	position: relative;
	flex: 1;
	column-gap: 30px;
}
.infoSection video{
	width: 100%;
}
.infoPoints{
	position: relative;
	align-self: center;
	text-align: center;
}
.infoPoints h2{
	font-weight: normal;
}
.infoPoints > div{
	position: relative;
	display: inline-block;
	width: 49%;
	text-align: center;
	padding: 15px 0px;
	margin: 5px 0px;
}
.infoPoints > div:nth-child(odd)::after{
	content: '';
	width: 1px;
	position: absolute;
	top: 20%;
	bottom: 20%;
	right: 0;
	background-color: rgba(0, 0, 0, 0.05);
}
.infoPoints img{
	height: 45px;
}
.webinarExtended{
	position: relative;
	background-color: #071548;
	padding: 8vh 0px;
}
.webinarExtended > div{
	display: flex;
}
.webinarExtended .container div:first-child a{
	margin-top: 20px;
	color: #ffffff;
	font-size: 12px;
}
.webinarExtended > div > div{
	position: relative;
	flex: 1;
	margin: 0px 20px;
	background-color: #ffffff;
	padding: 30px;
	box-sizing: border-box;
}
.webinarExtended > div > div:first-child{
	background-color: transparent;
	color: #ffffff;
}
.webinarExtended > div > div:nth-child(2)::after, .webinarExtended > div > div:nth-child(3)::after{
	content: "+";
	position: absolute;
	right: -25px;
	top: 48%;
	color: #ffffff;
}
.webinarExtended h2{
	font-weight: normal;
	margin-top: 0px;
}
.webinar .container p > br{
	display: none;
}
.oneSolution{
	position: relative;
	cursor: pointer;
	padding-top: 45px!important;
}
.oneSolution .hanging{
	position: absolute;
	display: inline-block;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.4s;
}
.hanging{
	text-align: center;
}
.hanging img{
	max-height: 40px;
}
.oneSolution:hover .hanging img{
	max-height: 25px;
}
.oneSolution:hover .hanging{
	text-align: right;
}
.oneSolution:hover .hanging p{
	opacity: 0;
}
.oneSolution > div:not(.hanging){
	opacity: 0;
	transition: 0.4s;
}
.oneSolution:hover > div:not(.hanging){
	opacity: 1;
	transition: 1s;
}
.oneSolution:hover .hanging{
	top: 10px;
	left: auto;
	right: 10px;
	transform: translateX(0%);
	transition: 0.4s;
}
.oneSolution h5{
	margin-bottom: 5px;
	margin-top: 10px;
}
.oneSolution p{
	font-size: 0.8em;
	margin: 5px 0px;
}
.keyHighlights{
	position: relative;
	display: flex;
	column-gap: 30px;
}
.keyHighlights > div{
	flex: 1;
	position: relative;
	background-color: #323232;
	background-size: cover;
	min-height: 250px;
	margin: 15px;
	color: #ffffff;
}
.keyHighlights h4{
	margin-bottom: 5px;
	min-height: 40px;
}
.keyHighlights > div > div{
	position: absolute;
	overflow: hidden;
	padding: 15px;
	box-sizing: border-box;
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
	max-height: 85px;
	background-image: linear-gradient(to top, #000000, transparent);
	transition: 0.4s;
}
.keyHighlights > div:hover > div{
	max-height: 1000px;
	transition: 1.5s;
}
.keyHighlights p{
	font-size: 0.9em;
	color: #ffffff;
}
.support p{
	font-size: 15px;
	color: #676767;
	line-height: 21px;
}
.support-extended{
	position: relative;
  display: flex;
  column-gap: 30px;
}
.support-extended >div{
	flex: 1;
  position: relative;
  background-color: #F6F6F6;
  background-size: cover;
  min-height: 250px;
  margin: 15px;
  padding: 23px;
  color: #000000;
}
.support-extended > div >p{
	font-size: 13px;
	color: #676767;
	line-height: 21px;
}
table{
	width: 100%
}
table tr th, table tr td{
	width: 25%;
	min-width: 190px;
	padding: 10px;
	text-align: center;
	/*border-top: 1px solid rgba(0, 0, 0, 0.04);
	border-left: 1px solid rgba(0, 0, 0, 0.04);*/
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	border-right: 1px solid rgba(0, 0, 0, 0.04);
}
table tr th:last-child, table tr td:last-child{
	/*border-right: 0px;*/
}
table tr th:first-child, table tr td:first-child{
	text-align: left;
}
table p{
	font-weight: normal;
	font-size: 0.8em;
}
table h4, table.secondary td p{
	position: relative;
	margin: 0px;
	padding-left: 10px;
}
table tr h4::before{
	content: '+';
	position: absolute;
	top: 0px;
	left: -5px;
}
table.active tr h4::before{
	content: '-';
}
table tr:not(:first-child){
	display: none;
}
table.active tr:not(:first-child){
	display: table-row;
	width: 100%;
}
table.secondary th{
	cursor: pointer;
}
.table-icon{
	position: relative;
	display: flex;
	padding: 1vh 0px;
}
.table-icon >div{
	flex: 1;
}
.table-icon p{
	color: #2F2F2F;
	font-size: 13px;
	margin: 3px 0px;
}
.external{
	position: relative;
	margin: auto;
	display: flex;
}
.external > div{
	flex: 1;
	position: relative;
	margin: 15px;
	padding: 30px;
	box-sizing: border-box;
	min-height: 50vh;
	vertical-align: top;
	background-color: #f0f0f2;
	background-size: cover;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.external h3{
	font-size: 1.4em;
	font-weight: normal;
	max-width: 250px;
}
.external a{
	display: block;
	margin-top: -10px;
	font-size: 0.8em;
	text-decoration: none;
	color: inherit;
}
.footStrip{
	background-color: #1F5DBA;
	padding: 10px;
}
.footStrip h3{
	color: #ffffff;
	font-weight: normal;
	text-align: center;
}
.faq-section .faqs{
	display: none;
}

.faqs{
	position: relative;
}
.faqs > div{
	position: relative;
	padding: 0px 15px;
	box-sizing: border-box;
	/*border: 1px solid rgba(0, 0, 0, 0.04);*/
	background-color: #F8F8F8;
	border-radius: 5px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	cursor: pointer;
}
.faqs > div:not(.active):hover{
	background-color: #fdfdfd;
}
.faqs > div::before{
	content: '';
	position: absolute;
	top: 18px;
	right: 5px;
	float: right;
	border-style: solid;
	border-width: 2px 2px 0 0;
	display: inline-block;
	height: 5px;
	position: relative;
	transform: rotate(135deg);
	vertical-align: top;
	width: 5px;
	opacity: 0.4;
	transition: 0.4s;
}
.faqs > div.active::before{
	transition: 0.4s;
	transform: rotate(-45deg);
}
.faqs > div.active{
	background-color: #fcfcfc;
}
.arrow-mark{
	padding: 5px 10px;
    background-color: #e6e6e6;
    border-radius: 10px;
}
.arrow-mark > .landingpageaccordion:not(.active):hover{
	background-color: #fdfdfd;
}
.arrow-mark > .landingpageaccordion::before{
	content: '';
	position: absolute;
	top: 20px;
	right: 5px;
	float: right;
	border-style: solid;
	border-width: 2px 2px 0 0;
	display: inline-block;
	height: 5px;
	position: relative;
	transform: rotate(135deg);
	vertical-align: middle;
	width: 5px;
	opacity: 0.4;
	transition: 0.4s;
}
.arrow-mark > .landingpageaccordion.active::before{
	transition: 0.4s;
	transform: rotate(-45deg);
}
.faqs h3{
	margin: 0px;
	color: #181818;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px 10px 0px;
}
.faqs p{
	position: relative;
	margin: 0px;
	color: #676767;
	line-height: 25px;
	overflow: hidden;
	max-height: 0px;
	transition: 0.4s;
}
.faqs > div.active h3{
	color: #181818;
}
.faqs > div.active p{
	max-height: 1100px;
	transition: 0.8s;
}
.landingpageaccordion{
  /*background-color: #eee;*/
  background-color: none!important;
  /*color: #444;*/
  cursor: pointer;
  /*padding: 18px;*/
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.active, .landingpageaccordion:hover {
  background-color: none;
}
.bannerBottom{
	position: relative;
  background-color: #F0F0F0;
  padding: 25px 0px;
}
.bannerBottom .container{
	display: flex;
}
.bannerBottom .container > div{
	flex: 1;
	border-right: 1px solid #C6C6C6;
}
.bannerBottom h4{
	    margin: 7px 0px;
}
.included-icon{
	position: relative;
	padding: 8vh 0px;
	width: 100%;
}
.included-left{
	display: inline-table;
	width: 28%;
}
.included-right{
	display: inline-table;
	width: 71%;
}
.included-right > div{
	display: inline-table;
	width: 16%;
	text-align: center;
}
.included-right p{
	margin: 8px 0px;
}
.short-content{
	width: 500px;
}
/* End Landing pages style */
.serviceProviders{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.serviceProviders > div{
	width: 20%;
	position: relative;
	padding: 8px;
	box-sizing: border-box;
	text-align: center;
}
.serviceProviders img{
	max-width: 100%;
}
.videoContainer > *{
	min-height: 300px;
	background-color: #fafafa;
}
@media screen and (max-width: 1221px){  /* All  screens except Big screens */
	.resources > .container{
		display: block;
	}
	.resources > .container > div:first-child{
		width: 100%;
	}
	.resourceTilesHolder{
		padding-top: 30px;
	}
	.resourceTile:first-child{
		margin-left: 0px;
	}
	.boxSlider{
		position: relative;
		padding: 30px 0px 15px 0px;
		box-sizing: border-box;
	}
	.boxSliderControls{
		position: relative;
		padding-top: 20px;
		display: inline-block;
	}
	.boxSliderControls .right{
		float: none;
		margin-left: 15px;
	}
}
.iiotFeatures img{
	margin-bottom: -10px;
}
@media screen and (min-width: 1000px){  /* Just the big & mid screens */
	.noDesktop{
		display: none!important;
	}
	.specialPopup{
		background-image: none!important;
		background-color: #ffffff!important;
		bottom: 30px!important;
		top: 30px!important;
		right: 50%!important;
		transform: translateX(50%);
		border-radius: 10px;
	}
	.subMenu::after{
		content: '';
		height: 3px;
		position: absolute;
		left: 15px;
		width: 50px;
		top: -4px;
		border-radius: 2px 2px 0px 0px;
		background-color: #ffffff;
	}
	.scrolled .subMenu::after{
		background-color: var(--brandGreen);
	}
	.otherMenu a::after{
		content: '>';
		opacity: 0.4;
		float: right;
		transition: 0.4s;
	}
	.otherMenu a:hover::after{
		margin-right: -5px;
		opacity: 1;
		transition: 0.4s;
	}
	.slidingBoxes.wide .extendedBoxes > div{
		min-width: 28%;
	}
	.slidingBoxes.wide .extendedBoxes > div > p{
		max-height: 1000px;
	}
	.slidingBoxes.wide img{
		margin-bottom: -5px;
	}
	.verticalSlides.lessContent > div > div:first-child{
		padding: 60px;
		padding-right: 30px;
	}
	.advantage > .extendedBoxes > div{
		min-height: 300px;
	}
	.advantage > .extendedBoxes p{
		max-height: 80px;
	}
	.iiotFeatures .extendedBoxes > div{
		min-height: 320px;
	}
	.dcBox .extendedBoxes > div{
		min-height: 360px;
	}
	.dcBox .extendedBoxes > div:not(:hover) > p{
		max-height: 98px;
	}
	.verticalTabs > li{
		min-height: 42px;
	}
	.verticalTabs > li div{
		position: relative;
		display: block;
		transform: translateY(50%);
	}
	/* cloning pages style */
	.micrositeBox .extendedBoxes > div{
		min-height: 300px;
	}
	.micrositeBox .extendedBoxes > div:not(:hover) > p{
		max-height: 100px;
	}
	/* Ends cloning pages style */
}
@media screen and (max-width: 1220px) and (min-width: 1000px) { /* Just the mid screens */
	.overviewExtended > div:first-child{
		width: 230px;
		padding-right: 30px;
	}
	.extendedBoxes > div{
		min-height: 300px;
	}
	.successBoxes p{
		white-space: normal;
	}
	.merikos > .container > div:last-child{
		padding: 0px;
	}
	.offerings h4{
		font-size: 0.9em;
	}
	header, .serviceMenu{
		font-size: 14px;
	}
	.headerRightTop{
		position: absolute;
		top: 0;
		right: 0;
	}
	header:not(.scrolled) .container{
		padding-top: 30px;
		transition: 0.04s;
	}
}
@media screen and (max-width: 999px) {
	.noTouch{
		display: none;
	}
	.justTouch{
		display: block!important;
	}
	.blueBox{
		display: block;
		margin-top: -40px;
	}
	.blueBox > div:first-child{
		width: 100%;
		padding-bottom: 0px;
	}
	.flipSliderDots > span{
		padding: 0px 10px;
	}
	.devPlatform{
		display: block;
	}
	.devPlatform > div:first-child{
		width: 100%;
		padding-right: 0px;
		padding-bottom: 60px;
	}
	.devPlatform > div:last-child{
		max-width: 400px;
		margin: auto;
	}
	.slidingBoxes .extendedBoxes > div{
		min-width: 170px;
		min-height: 0px;
	}
	.slidingBoxesControls{
		display: none;
	}
	.mobileDock{
		position: fixed;
		display: block;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #ffffff;
		z-index: 100;
		display: block;
		box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	}
	.mobileDock .freeTrial{
		padding: 12px 30px;
		display: block;
		margin: 0px;
		border-radius: 0;
		color: #ffffff;
		background-color: var(--brandGreen);
		text-align: left;
	}
	.menuButton{
		position: fixed;
		top: 12px;
		right: 15px;
		z-index: 150;
		background-color: #ffffff;
		width: 40px;
		height: 40px;
		border-radius: 20px;
		filter: invert(1);
	}
	.popupCover > div{
		right: -100%;
		width: 100%;
		padding: 100px 80px;
	}
	.popupCover.active > div{
		max-width: 100%;
	}
	.boxSlides.larger{
		min-height: 390px;
	}
	.floatBox{
		display: block;
	}
	.floatBox > div:last-child{
		padding-top: 0px;
		text-align: center;
	}
	.overviewExtended{
		display: block;
	}
	.overviewExtended > div:first-child{
		width: 100%;
		padding-right: 0px;
	}
	.extendedBoxes > div{
		padding: 15px;
		padding-bottom: 10px;
	}
	.extendedBoxes > div:hover{
		box-shadow: none;
	}
	.extendedBoxes p{
		max-height: 500px;
	}
	.ourSuccess{
		display: block;
		margin-bottom: 0px;
	}
	.whyUs ul{
		column-count: 2;
	}
	.merikos{
		margin-bottom: 30px;
		margin-top: 60px;
	}
	.merikos > .container{
		display: block;
	}
	.merikos > .container > div{
		padding: 30px 15px;
		width: 95%;
		margin-left: 5%;
	}
	.merikos > .container > div:first-child{
		padding-bottom: 0px;
		text-align: center;
	}
	.merikos p{
		color: #ffffff;
	}
	.merikos img{
		width: 100%;
		max-width: 450px;
		margin-bottom: 0px;
		margin-top: -120px;
	}
	.offerings > div{
		flex: 32%;
		margin: 10px 1%;
	}
	.verticalSlider{
		display: block;
	}
	.verticalTabs{
		width: 100%;
		max-width: 100%;
		overflow: auto;
		white-space: nowrap;
		padding: 10px;
		padding-left: 6px;
	}
	.verticalTabs::-webkit-scrollbar {
		height: 0px;
	}
	.verticalTabs > .timeline{
		display: none;
	}
	.verticalTabs > li{
		display: inline-block;
		padding: 8px 12px 8px 40px;
		font-size: 0.8em;
		margin-bottom: 0px;
		margin-right: 15px;
	}
	.verticalTabs > li:not(:nth-last-of-type(1))::after{
		content: '';
		position: absolute;
		right: -15px;
		width: 10px;
		top: 18px;
		height: 5px;
		border-top: 1px dashed rgba(0, 0, 0, 0.4);
	}
	.verticalTabs > li > span{
		position: absolute;
		top: 5px;
		left: 7px;
		border-radius: 15px;
		width: 25px;
		height: 25px;
		padding-top: 6px;
		letter-spacing: 1px;
	}
	.verticalTabs > li:last-child{
		margin-right: 0px;
	}
	.verticalSlides {
		padding-top: 30px;
	}
	.verticalSlides > div{
		padding-left: 0px;
	}
	.verticalSlides > div.active{
		display: block;
	}
	.verticalSlides > div > div{
		width: 100%;
	}
	.verticalSlides > div > div:first-child{
		padding-right: 0px;
		padding-bottom: 15px;
	}
	.verticalSlides > div > div:last-child{
		max-width: 350px;
		margin: auto;
	}
	.serviceMenu{
		display: none;
	}
	.footerForm > .container > div:first-child{
		padding-right: 45px;
	}
	.footerForm > .container > div:last-child{
		max-width: 40%;
	}
	.associations{
		position: relative;
	}
	.associations img{
		max-width: 70px;
	}
	.resources{
		display: block;
		padding: 30px 0px;
		padding-left: 0%;
	}
	.controls{
		position: relative;
		width: 100%;
		padding-top: 0px;
		padding-right: 5%;
		padding-left: 5%;
	}
	.controls .control{
		display: none;
	}
	.resourceTile{
		position: relative;
		display: inline-block;
		width: 250px;
		padding-right: 15px;
	}
	.resourceTile > div{
		position: absolute;
		bottom: 30px;
		left: 20px;
		right: 30px;
		z-index: 1;
	}
	.clients img{
		max-height: 45px;
	}
	.partnership{
		display: block;
	}
	.partnership > div:first-child{
		margin-right: 0px;
		margin-bottom: 30px;
	}
	.dualTiles > div{
		padding: 45px 15px;
	}
	.tabMenu{
		display: none;
		top: 0px;
	}
	header{
		position: absolute;
	}
	header, header a, header.scrolled a{
		color: #6a6a6a;
	}
	header.scrolled{
		box-shadow: 0px;
	}
	header > .container{
		display: block;
		padding: 10px 0px;
		min-height: 0px;
	}
	.headerLeft{
		display: block;
	}
	.headerLeft > .menu{
		margin-top: 15px;
		display: none;
	}
	.headerLeft > .menu > *{
		position: relative;
		display: block;
		margin-left: 0px;
		padding: 10px 0px;
		border-top: 1px solid #fafafa;
	}
	.headerLeft > .menu > a:last-child{
		border-bottom: 1px solid #fafafa;
	}
	.menu li{
		overflow: hidden;
		max-height: 25px;
		transition: 0.5s;
	}
	.menu li span{
		position: relative;
		display: block;
		z-index: 1;
	}
	.menu li.active{
		max-height: 500px;
		transition: 0.5s;
	}
	.menu li:after{
		content: '+';
		position: absolute;
		z-index: 0;
		right: 10px;
		top: 12px;
	}
	.menu li.active:after{
		content: '—';
	}
	.menu li .subMenu{
		position: relative;
		display: block;
		top: 0;
		box-shadow: none;
	}
	.headerRight{
		display: none;
		flex-direction: column-reverse;
	}
	.headerRightBottom{
		background-color: #fafafa;
		text-align: center;
		margin: 20px 0px;
	}
	.headerRightBottom .freeTrial{
		display: none;
	}
	header.scrolled:not(.services) .headerRightTop{
		max-height: 500px;
	}
	.headerRightTop{
		text-align: center;
	}
	.headerRightTop span{
		display: none;
	}
	.headerRightTop a{
		display: block;
	}
	a.callBack{
		margin-top: 10px;
		background-color: #fafafa;
	}
	.hamburger{
		position: relative;
		margin: auto;
		margin-top: 14px;
		width: 20px;
		height: 14px;
		transition: 0.4s;
		max-height: 15px;
	}
	.hamburger.active{
		margin-top: 20px;
		height: 20px;
		max-height: 2px;
		transition: 0.4s;
	}
	.hamburger span{
		position: absolute;
		z-index: 1;
		height: 2px;
		background-color: #000000;
		right: 0;
		transition: 0.6s;
	}
	.hamburger span:nth-child(odd){
		left: 0;
		transform: rotateZ(0deg);
	}
	.hamburger span:nth-child(3){
		bottom: 0;
	}
	.hamburger span:nth-child(2){
		top: 6px;
		left: 30%;
	}
	.hamburger.active span:nth-child(1){
		left: 0;
		transform: rotateZ(40deg);
		transform-origin: center;
	}
	.hamburger.active span:nth-child(3){
		bottom: 0;
		transform: rotateZ(-40deg);
		transform-origin: center;
	}
	.hamburger.active span:nth-child(2){
		top: 0;
		left: 50%;
		right: 50%;
		opacity: 0;
		transition: 0.2s;
	}
	.mobileMenuCurtain{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #ffffff;
		z-index: -1;
	}
	.homeBanner h1{
		font-size: 3em;
	}
	/* Cloning pages style */
	.ebook-Text > div:first-child{
		display: block;
		width: 100%;
		padding: 0px;
	}
	.ebook-Text > div:last-child{
		position: relative;
		display: block;
		text-align: center;
		width: 100%;
		padding: 0px;
		top: 0px;
	}
	.ebook-Text > div:last-child >img{
		width: 50%;
	}
	.partners-cloud{
		display: block;
		padding: 0px;
	}
	.partners-cloud img{
		width: 5%;
	}
	.partners-cloud >div{
		width: 100%;
		border-right: 0px;
	}
	/* Ends cloning pages style */
}
@media screen and (max-width: 699px){
	.videoContainer > *{
		min-height: 30vh;
		margin-top: 30px;
	}
	.serviceProviders > div{
		width: 50%;
		padding: 5px;
	}
	.applicationsList{
		display: block;
		margin: 30px 0px;
	}
	.applicationsList > div{
		padding: 30px 0px;
		border-right: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}
	.applicationsList > div:last-child{
		border-bottom: 0px;
	}
	.applicationsList p{
		margin-bottom: 0px;
	}
	#Platform h2 br{
		display: none;
	}
	.analyticalPlatform{
		margin-top: 15px;
	}
	.iiotMethodology p{
		min-height: 0px;
	}
	.iiotMethodology h2 br{
		display: none;
	}
	.blueBox li{
		width: 100%;
	}
	.jailBars{
		margin-top: 0px;
		display: block;
	}
	.jailBars > div{
		width: 100%;
		padding: 30px 0px;
		border-right: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	.jailBars > div:last-child{
		border-bottom: 0px;
	}
	.jailBars > div > span{
		position: absolute;
		top: 0px;
		left: -10px;
		font-size: 5em;
	}
	.jailBars > div:not(:first-child) h3::after{
		display: none;
	}
	.expertiseTiles > div{
		width: 100%;
		margin: 0px;
		padding: 20px 0px;
		border-right: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		display: flex;
	}
	.expertiseTiles img{
		margin-right: 20px;
	}
	.expertiseTiles p{
		margin-top: 0px;
	}
	.expertiseTiles > div:last-child{
		border-bottom: 0px;
	}
	.features > div{
		flex: 47%;
		margin-right: 6%;
	}
	.features > div:nth-child(2n){
		margin-right: 0px;
	}
	.homeBanner h1{
		font-size: 2em;
		max-width: 600px;
	}
	.popupCover > div{
		padding: 45px 30px 15px 30px;
	}
	.popupCover h2{
		font-size: 1.1em;
	}
	.popupCover .close{
		top: 10px;
		right: 10px;
	}
	.popupLinks{
		margin-top: 30px;
	}
	.popupLinks i{
		font-size: 1.4em;
	}
	.resourceTilesHolder{
		overflow: auto;
		white-space: nowrap;
		padding-top: 15px;
		padding-bottom: 10px;
	}
	.resourceTile{
		min-width: 260px;
		white-space: normal;
	}
	.boxSlider{
		margin-top: -30px;
	}
	.extendedBoxes{
		display: block;
	}
	.extendedBoxes > div{
		padding: 30px 0px;
		padding-bottom: 0px;
		min-height: 10px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
		border-right: 0px;
		display: flex;
		flex-wrap: wrap
	}
	.extendedBoxes > div:last-child{
		border-bottom: 0px;
	}
	.extendedBoxes br{
		display: none;
	}
	.extendedBoxes img{
		margin-right: 15px;
		margin-top: -15px;
		width: 12%;
	}
	.extendedBoxes h3{
		flex: 80%;
		margin-top: -12px;
		margin-bottom: 30px;
	}
	.iiotFeatures .extendedBoxes h3{
		flex: auto;
	}
	.extendedBoxes.devops p{
		flex: 80%;
		margin-top: -15px;
	}
	.ourSuccess > div{
		padding: 30px;
	}
	.successBoxes{
		position: relative;
		display: block;
		flex-wrap: wrap;
		margin-top: 15px;
	}
	.successBoxes > div{
		width: 100%;
		padding: 20px 0px;
		border-width: 0px 0px 1px 0px;
	}
	.successBoxes > div:nth-child(3){
		border-width: 0px 0px 1px 0px;
	}
	.successBoxes > div:nth-child(n+4){
		border-width: 0px 0px 1px 0px;
	}
	.successBoxes > div:last-child{
		border-width: 0px;
	}
	.noMobile{
		display: none!important;
	}
	.whyUs{
		padding: 15px;
		margin-bottom: 60px;
	}
	.whyUs h1{
		font-size: 1.2em;
	}
	.whyUs ul{
		padding: 0px;
		padding-left: 15px;
		column-count: 1;
	}
	.offerings > div{
		flex: 100%;
		margin: 10px 0%;
		padding: 20px 15px;
		display: flex;
	}
	.offerings > div > *{
		margin: 0px;
	}
	.offerings > div > img{
		margin-right: 15px;
	}
	.motivationSlides{
		padding: 0px;
	}
	.testimonialsHolder{
		padding: 30px 0px;
	}
	.testimonials{
		padding: 45px 0px;
		min-height: 180px;
	}
	.testimonials > div{
		display: block;
	}
	.testimonials > div span{
		top: -40px;
	}
	.testimonials > div > div{
		padding: 10px 0px;
	}
	.testimonials > div > div:first-child{
		border-right: 0px;
	}
	footer{
		padding: 5vh 0px;
		padding-bottom: 80px;
	}
	.footerMenu{
		margin-bottom: 20px;
	}
	.footerMenu > div{
		padding-bottom: 15px;
	}
	.footerMenu > div:first-child{
		flex: 100%;
	}
	.footerMenu > div:nth-child(2), .footerMenu > div:nth-child(3){
		flex: 50%;
	}
	.footerMenu > div:nth-child(2){
		padding-right: 15px;
		box-sizing: border-box;
	}
	footer img{
		width: 100px;
	}
	.footLinks{
		display: block;
		text-align: center;
	}
	.footLinks > div:last-child{
		margin-top: 15px;
		text-align: inherit;
	}
	.footerForm > .container{
		display: block;
	}
	.footerForm > .container > div:first-child{
		padding-right: 0;
	}
	.footerForm > .container > div:last-child{
		margin-top: 30px;
		width: 100%;
		max-width: 100%;
	}
	.associations > div{
		width: 49%;
		padding: 10px 10px 10px 0px;
		box-sizing: border-box;
	}
	.associations img{
		max-width: 80%;
	}
	.clients img{
		max-height: 30px;
	}
	.partnership > div{
		padding-top: 15px;
	}
	.cloudSolutions > a{
		flex: 50%;
		max-width: 50%;
		text-align: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
		padding: 25px 5px;
	}
	.cloudSolutions > a:nth-child(2n+2){
		border-right: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	}
	.cloudSolutions > a:nth-child(3){
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	}
	.cloudSolutions > a:last-child{
		border-right: 1px solid rgba(0, 0, 0, 0.04);
		border-bottom: 0px;
	}
	.sideAngle{
		background-image: none;
	}
	.dualTiles{
		display: block;
		margin: 60px 0px;
	}
	.dualTiles > div{
		padding: 0px;
	}
	.dualTiles > div:last-child{
		padding-bottom: 30px;
	}
	.dualTiles h1{
		font-size: 1.6em;
	}
	.dualTiles p{
		margin-bottom: 0px
	}
	.tabMenu{
		white-space: nowrap;
		overflow: auto;
	}
	.tabMenu::-webkit-scrollbar {
			height: 0px;
	}
	.tabMenu > a{
		padding: 12px 20px;
		font-size: 0.8em;
	}
	.verticalSlides > div > div:last-child{
		max-width: 100%;
	}
	/* cloning pages style */

	.microsite-expertiseTiles > div{
		width: 100%;
		margin: 0px;
		padding: 20px 0px;
		border-right: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		display: flex;
	}
	.microsite-expertiseTiles img{
		margin-right: 20px;
	}
	.microsite-expertiseTiles p{
		margin-top: 0px;
	}
	.microsite-expertiseTiles > div:last-child{
		border-bottom: 0px;
	}
	.microsite-banner{
		display: block;
	}
	.hybrid-usecase{
		padding: 0px;
	}
	.hybrid-usecase > div:first-child{
		width: 100%;
	}
	.aws-usecase{
		display: block;
		padding: 0px;
	}
	.aws-usecase > div{
		position: relative;
		flex: 1;
		padding: 30px;
		padding-bottom: 10px;
		border-right: 1px solid rgba(0, 0, 0, 0.04);
		transition: 0.4s;
	}
	.casestudyBanner{
		height: 90vh;
	}
	.ebook-Text > div:first-child{
		display: block;
		width: 100%;
		padding: 0px;
	}
	.ebook-Text > div:last-child{
		position: relative;
		display: block;
		text-align: center;
		width: 100%;
		padding: 0px;
		top: 0px;
	}
	.ebook-Text > div:last-child >img{
		width: 50%;
	}
	.nosystem{
		display: block;
	}
	.partners-cloud{
		display: block;
		padding: 0px;
	}
	.partners-cloud img{
		width: 12%;
	}
	.partners-cloud >div{
		width: 100%;
		border-right: 0px;
	}
	.partner-offer >div{
		display: block;
	}
	/* Ends cloning pages style */
	/* Landing pages style */
	.infoSection{
		padding: 30px 0px;
		display: block;
	}
	.infoSection > div{
		position: relative;
		margin: 15px 0px;
	}
	.webinarExtended{
		padding: 2vh 0px;
		text-align: center;
	}
	.webinarExtended > div{
		display: block;
	}
	.webinarExtended > div > div{
		margin: 30px 0px;
	}
	.webinarExtended > div > div:nth-child(2)::after, .webinarExtended > div > div:nth-child(3)::after{
		right: auto;
		top: auto;
		bottom: -25px;
		left: 48%;
	}
	.webinar{
		text-align: center;
	}
	.webinar .container p > span{
		display: none;
	}
	.webinar .container p > br{
		display: block;
	}
	.keyHighlights{
		display: block;
	}
	.keyHighlights > div{
		margin: 30px 0px;
	}
	.support-extended{
		display: block;
	}
	.pricing{
		height: 800px;
		overflow-y: scroll;
	}
	.wrapper1, .wrapper2{
	overflow-x: scroll; overflow-y:hidden;}
	.wrapper1{height: 20px; }
	.div1 {width:1000px; height: 20px; }
	.external{
		display: block;
	}
	.external > div{
		width: 100%;
		margin: 20px 0px;
		min-height: 50vh;
	}
	.footStrip .container h3 br{
		display: block;
	}
	.footStrip{
		height: 100px;
	}
	.bannerBottom .container{
		display: block;
	}
	.bannerBottom .container > div{
		text-align: center;
		border: none;
		margin-top: 15px;
	}
	.included-left{
		width: 100%;
		display: block;
	}
	.included-right{
		width: 100%;
		display: block;
	}
	.included-right > div{
		width: 31.33%;
		margin: 15px 0px;
	}
	.short-content{
		width: 100%;
	}
	/* End Landing pages style */

}
