:root {
	--cyan: #00b8f0;
	--white: #ffffff;
	--gray: #64798c;
	--black: #293040;
	--blue-black: #021b41;
	--border-color: #d0d4dd;
	--box-bg-color: #f9fdff;
	--box-border-color: #84bee3;
	--bg-gray: #f2f2f4;
	--nav-border-color: #f2f3f4;
}



html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	position: relative;
	margin: 0;
	padding: 100px 0;
	font-family: 'Mukta', sans-serif;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1,
.faux-h1 {
	margin: 70px 0 20px 0;
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: 54px;
	line-height: 72px;
	letter-spacing: -1.2px;
	color: var(--black);
}

h2,
.faux-h2 {
	margin: 50px 0 15px 0;
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 54px;
	letter-spacing: -1.2px;
	color: var(--black);
}

h3,
.faux-h3 {
	margin: 30px 0 10px 0;
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 35px;
	letter-spacing: -0.78px;
	color: var(--black);
}

h2 + h3,
.faux-h2 + h3,
h2 + .faux-h3,
.faux-h2 + .faux-h3 {
	margin-top :0;
}

h2 em,
.faux-h2 em,
h3 em,
.faux-h3 em {
	font-style: normal;
	color: var(--cyan);
}


p {
	margin: 1em 0;
	font-size: 16px;
	line-height: 26px;
	color: var(--gray);
}

.p-large,
blockquote p {
	font-size: 18px;
	line-height: 32px;
	color: var(--black);
}

h2 + p,
.faux-h2 + p,
h3 + p,
.faux-h3 + p {
	margin-top :0;
}

ul,
ol {
	margin: 1em 0;
	font-size: 16px;
	line-height: 26px;
	color: var(--gray);
}

strong {
	font-weight: bold;
	color: var(--blue-black);
}

em {
	font-style: italic;
}

span.highlighted {
	color: var(--cyan);
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--cyan);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

*:first-child {
	margin-top: 0;
}

*:last-child {
	margin-bottom: 0;
}



nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
	background: #fff;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

body.admin-bar nav {
	top: 32px;
}

nav .nav-wrap {
	display: flex;
	gap: 32px;
	align-items: center;
	justify-content: flex-start;
}

nav .logo {
	width: 134px;
	padding-right: 32px;
	border-right: 1px solid var(--border-color);
}

nav .logo img {
	display: block;
}

nav .nav {
	display: flex;
	gap: 32px;
}

nav .nav-link {
	font-weight: 700;
	font-size: 16px;
	line-height: 28px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--black);
	transition: all 0.15s ease-out;
}

nav .nav-link:hover {
	color: var(--cyan);
}

nav .buttons {
	display: flex;
	gap: 8px;
}



.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 60px 0;
}



header {
	padding: 0 32px;
	text-align: center;
}

header .container {
	padding-top: 0;
	padding-bottom: 40px;
}

header .inner-header {
	max-width: 770px;
	margin: 30px auto 0 auto;
}



.section {
	padding: 0 32px;
}

.section .container {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	align-items: flex-start;
}

.section.top-divider .container {
	border-top: 1px solid #f2f3f4;
}

.section .container.center {
	justify-content: center;
}



footer {
	padding: 0 32px;
}

footer .container {
	padding: 90px 0;
	text-align: center;
	background: var(--bg-gray);
}

footer .footer-wrap {
	padding: 0 30px;
}

footer span:not(:first-child):before {
	content: " · ";
	padding: 0 5px;
}

footer a {
	color: var(--black);
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}



.cell {
	flex: 1;
}

.cell._100-p {
	width: 100%;
	flex: 0 auto;
}

.cell._67-p {
	width: 67.6667%;
	flex: 0 auto;
}

.cell._60-p {
	width: 60%;
	flex: 0 auto;
}

.cell._55-p {
	width: 55%;
	flex: 0 auto;
}

.cell._50-p {
	width: 50%;
	flex: 0 auto;
}

.cell._45-p {
	width: 45%;
	flex: 0 auto;
}

.cell._40-p {
	width: 40%;
	flex: 0 auto;
}

.cell._33-p {
	width: 33.3333%;
	flex: 0 auto;
}



.boxes {
	max-width: 100%;
	overflow: auto;
	margin: 32px 0;
	display: flex;
	justify-content: space-between;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.box {
	min-width: 190px;
	padding: 30px;
	text-align: center;
	background: var(--box-bg-color);
	border: 1px solid var(--box-border-color);
	border-radius: 22px;
}
.box:last-child {
	margin-right: 0;
}

.box img {
	margin-bottom: 10px;
}

.box p {
	margin: 0;
	font-family: 'Mukta', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	white-space: nowrap;
	color: var(--blue-black);
}

.box p strong {
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: var(--black);
}



.button {
	position: relative;
	top: 0;
	display: inline-block;
	margin: 24px 0 0 0;
	padding: 20px 32px;
	font-family: 'Mukta', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white);
	background: var(--cyan);
	border: 1px solid var(--cyan);
	border-radius: 200px;
	transition: all 0.15s ease-out;
}

.button:hover {
	top: -3px;
	text-decoration: none;
}

.button:first-child {
	margin-top: 0;
}

.p-large + .button {
	margin-top: 6px;
}

.button.small {
	margin: 0;
	padding: 8px 16px;
	font-size: 14px;
	line-height: 24px;
}

.button.small.invert {
	color: var(--cyan);
	background: var(--white);
	border: 1px solid var(--cyan);
}



.padding-t-40 {
	padding-top: 40px;
}

.padding-lr-40 {
	padding-left: 40px;
	padding-right: 40px;
}

.padding-r-80 {
	padding-right: 80px;
}



.text-center {
	text-align: center;
}

.text-w-icon {
	text-align: center;
}

.blue-black,
.blue-black p {
	color: var(--blue-black);
}



.has-bg-arrow {
	position: relative;
	padding-bottom: 130px;
}

.has-bg-arrow .bg-arrow {
	position: absolute;
	bottom: 0;
	right: 80px;
	z-index: 0;
	width: 211px;
	height: 211px;
	background: url(../images/arrow.svg) no-repeat 0 0;
}



.has-bg-faq {
	position: relative;
	padding-top: 140px;
}

.has-bg-faq .bg-faq {
	position: absolute;
	top: 0;
	left: 70px;
	z-index: 0;
	width: 180px;
	height: 130px;
	background: url(../images/faq.svg) no-repeat 0 0;
}



.has-bg-charts {
	position: relative;
	padding-top: 150px;
	padding-bottom: 105px;
}

.has-bg-charts .bg-chart1 {
	position: absolute;
	top: 70px;
	left: 70px;
	z-index: 0;
	width: 64px;
	height: 65px;
	background: url(../images/chart1.svg) no-repeat 0 0;
}

.has-bg-charts .bg-chart2 {
	position: absolute;
	top: 30px;
	left: 260px;
	z-index: 0;
	width: 94px;
	height: 97px;
	background: url(../images/chart2.svg) no-repeat 0 0;
}

.has-bg-charts .bg-chart3 {
	position: absolute;
	bottom: 0;
	left: 200px;
	z-index: 0;
	width: 97px;
	height: 93px;
	background: url(../images/chart3.svg) no-repeat 0 0;
}



.fixed-image {
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.fixed-image > * {
	flex-shrink: 0;
}

.fixed-image img {
	max-width: none;
}



.post-teaser {
	margin: 0 24px 48px 24px;
}
.post-teaser h2 {
	margin: 10px 0 0 0;
}


.cell.pagination-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  background-color: var(--bg-gray);
  border-radius: 30px;
}

.page-no {
  display: block;
  margin-left: 3px;
  margin-right: 3px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--gray);
  border-radius: 30px;
  transition: all 0.25s;
}

.page-no:hover {
  color: var(--cyan);
  background-color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.page-no.current {
  color: var(--blue-black);
}



body.single h1 {
	margin: 20px 0 5px 0;
}

.alignleft {
	float: left;
	margin: 0 2em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 2em;
}

.aligncenter {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 2em auto;
}

.alignnone {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 2em 0;
}

.container.center .cell._67-p .alignleft {
	margin-left: -32px;
}

.container.center .cell._67-p .alignright {
	margin-right: -32px;
}

.wp-caption-text {
	margin-top: 0;
	color: var(--blue-black);
}



a.anchor {
	position: relative;
	top: -80px;
}



.mobile-menu-switch,
.mobile-overlay,
.mobile-fixed-button,
.mobile-only {
	display: none;
}



@media screen and (max-width: 1139px) {

	.boxes {
		margin-left: -32px;
		margin-right: -32px;
		padding-left: 32px;
		padding-right: 32px;
		justify-content: flex-start;
		gap: 30px;
	}
}



@media screen and (max-width: 782px) {
	body.admin-bar nav {
		top: 46px;
	}
}



@media screen and (max-width: 767px) {

	body {
		padding-bottom: 16px;
	}

	body.has-mobile-fixed-button {
		padding-bottom: 128px;
	}

	nav {
		flex-direction: column;
		align-items: stretch;
		padding: 22px 16px;
	}

	nav .nav-wrap {
		flex-direction: column;
		gap: 20px;
		align-items: stretch;
	}

	nav .logo {
		padding-right: 0;
		border-right: 0;
	}

	nav .nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0 16px;
	}

	nav .nav-link {
		padding: 11px 0;
		border-bottom: 1px solid var(--nav-border-color);
	}

	nav .buttons {
		display: none;
		gap: 20px;
		padding: 18px 16px 10px 16px;
		justify-content: space-between;
	}

	nav .buttons .button {
		flex: 1;
		text-align: center;
	}

	.container {
		padding: 40px 0;
	}

	header {
		padding: 0 16px;
		text-align: left;
	}

	header .inner-header {
		margin-top: 14px;
	}

	.section {
		padding: 0 16px;
	}

	.section .container {
		gap: 32px;
	}

	.section .container.mobile-gap-0 {
		gap: 0;
	}

	footer {
		padding: 0 16px;
	}

	footer .container {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	footer span {
		display: block;
		margin-top: 6px;
	}

	footer span:before {
		display: none;
	}

	.cell._100-p,
	.cell._67-p,
	.cell._60-p,
	.cell._55-p,
	.cell._50-p,
	.cell._45-p,
	.cell._40-p,
	.cell._33-p {
		width: 100%;
	}

	.cell .padding-lr-40,
	.cell .padding-r-80 {
		padding-left: 0;
		padding-right: 0;
	}

	.boxes {
		margin: 0 -16px;
		padding: 0 16px;
		gap: 10px;
	}

	.text-w-icon {
		display: flex;
		align-items: flex-start;
		gap: 14px;
		margin-top: 24px;
		text-align: left;
	}

	.cell:first-child .text-w-icon {
		margin-top: 0;
	}

	.text-w-icon p {
		margin-top: 0;
	}

	.has-bg-arrow {
		padding-bottom: 0;
	}

	.has-bg-arrow .bg-arrow {
		display: none;
	}

	.has-bg-faq {
		padding-top: 88px;
	}

	.has-bg-faq .bg-faq {
		left: 0;
		width: 100px;
		height: 72px;
		background-size: contain;
	}

	.post-teaser {
		margin: 0 0 12px 0;
	}

	.cell.pagination-wrap {
		margin-top: 0;
	}

	.alignleft,
	.alignright,
	.aligncenter,
	.alignnone,
	.container.center .cell._67-p .alignleft,
	.container.center .cell._67-p .alignright {
		float: none;
		display: block;
		margin: 2em 0;
	}

	*.mobile-first {
		margin-top: 0;
	}

	*.mobile-last {
		margin-bottom: 0;
	}

	.mobile-text-left {
		text-align: left;
	}

	.mobile-menu-switch {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		width: 38px;
		height: 38px;
		padding: 14px 11px;
		background: var(--bg-gray);
		border-radius: 19px;
		transition: 0.25s;
		outline: none;
	}

	.mobile-menu-switch.open {
		background: var(--cyan);
	}

	.mobile-menu-switch .bar1,
	.mobile-menu-switch .bar2,
	.mobile-menu-switch .bar3 {
		margin: 0 0 4px 0;
		width: 16px;
		height: 1px;
		background-color: var(--cyan);
		transition: 0.25s;
	}

	.mobile-menu-switch.open .bar1,
	.mobile-menu-switch.open .bar2,
	.mobile-menu-switch.open .bar3 {
		background: var(--white);
	}
	.mobile-menu-switch.open .bar1 {
		transform: translate(0, 5px) rotate(-45deg);
	}
	.mobile-menu-switch.open .bar2 {
		opacity: 0
	}
	.mobile-menu-switch.open .bar3 {
		transform: translate(0, -5px) rotate(45deg);
	}

	.mobile-overlay {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 91;
		width: 100%;
		height: 100%;
		opacity: 0.3;
		background: var(--Enterprise-gray---100, #64798C);
	}

	.mobile-fixed-button {
		display: block;
		position: fixed;
		bottom: 32px;
		left: 16px;
		right: 16px;
		z-index: 9;
		text-align: center;
	}

	.mobile-fixed-button .button {
		box-shadow: 0px 3px 30px 0px rgba(0, 184, 240, 0.50);
	}

	.mobile-hide {
		display: none;
	}

	.mobile-only {
		display: block;
	}
}
