@keyframes easyLeft {
	0% {
		left: -10rem;
		opacity: 0
	}
	to {
		left: 0;
		top: 0;
		opacity: 1
	}
}

@keyframes easyRight {
	0% {
		right: -10rem;
		opacity: 0
	}
	to {
		right: 0;
		top: 0;
		opacity: 1
	}
}

.fade-in {
	animation: fadeIn 3s ease;
	-webkit-animation: fadeIn 3s ease;
	-moz-animation: fadeIn ease 3s;
	-o-animation: fadeIn ease 3s;
	-ms-animation: fadeIn ease 3s
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}


@media only screen and (max-width:80em) {
	html {
		font-size: 56.25%
	}
}

@media only screen and (max-width:56.25em) {
	html {
		font-size: 50%
	}
}

@media only screen and (min-width:112.5em) {
	html {
		font-size: 75%
	}
}


@media only screen and (max-width:56.25em) {
	body {
		padding: 0
	}
}

::selection {
	background-color: #009ae0;
	color: #fff
}

body {
	font-family: "Lato", sans-serif;
	font-weight: 400
}

.heading--mega {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 7.2rem
}

@media only screen and (max-width:64em) {
	.heading--mega {
		font-size: 4rem;
		font-weight: 700;
		line-height: 4rem
	}
}

@media only screen and (max-width:37.5em) {
	.heading--mega {
		font-size: 2.4rem;
		font-weight: 700;
		line-height: 3.2rem
	}
}

.heading--medium {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 4.8rem
}

@media only screen and (max-width:48em) {
	.heading--medium {
		text-align: center;
		font-size: 2.4rem
	}
}

.p--medium {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.7rem
}

.p--small {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.4rem
}

.green--text {
	color: #008489
}

.green--text--2 {
	color: #009ae0
}

.grid--1 {
	display: grid;
	grid-template-columns: [first-start] 5rem [first-end second-start] minmax(50rem, 1.5fr) [second-end third-start] minmax(55rem, 1fr) [third-end fourth-start] 5rem [fourth-end]
}

@media only screen and (max-width:80em) {
	.grid--1 {
		grid-template-columns: [first-start] 5rem [first-end second-start] minmax(60rem, 1.5fr) [second-end third-start] minmax(50rem, 1fr) [third-end fourth-start] 5rem [fourth-end]
	}
}

@media only screen and (max-width:64em) {
	.grid--1 {
		grid-template-columns: [first-start] 5rem [first-end second-start] minmax(50rem, 1.5fr) [second-end third-start] minmax(50rem, 1fr) [third-end fourth-start] 5rem [fourth-end];
		grid-template-columns: [first-start] 5rem [first-end second-start] minmax(50rem, 1fr) [second-end third-start] minmax(40rem, 1fr) [third-end fourth-start] 5rem [fourth-end]
	}
}

@media only screen and (max-width:56.25em) {
	.grid--1 {
		grid-template-columns: [first-start] 5rem [first-end second-start] minmax(40rem, 1fr) [second-end third-start] minmax(40rem, 1fr) [third-end fourth-start] 5rem [fourth-end]
	}
}

@media only screen and (max-width:48em) {
	.grid--1 {
		grid-template-columns: [first-start] 5rem [first-end second-start] minmax(40rem, 1fr) [second-end third-start] minmax(40rem, 1fr) [third-end fourth-start] 5rem [fourth-end]
	}
}

@media only screen and (max-width:37.5em) {
	.grid--1 {
		display: flex!important;
		flex-direction: column!important
	}
}

.grid--2 {
	display: grid!important;
	grid-template-columns: [first-start] 1fr [first-end second-start] 1fr!important;
	grid-auto-flow: column!important;
	grid-column-gap: 5rem!important
}

@media only screen and (max-width:48em) {
	.grid--2 {
		display: flex!important;
		flex-direction: column!important;
		align-items: center
	}
}

.grid--3 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 4rem
}

@media only screen and (max-width:37.5em) {
	.grid--3 {
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 3rem;
		grid-column-gap: 1rem
	}
}

.grid--4 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 1rem;
	grid-row-gap: 4rem
}

@media only screen and (max-width:37.5em) {
	.grid--4 {
		display: flex!important;
		flex-direction: column!important
	}
}

.grid--5 {
	display: grid;
	grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width:64em) {
	.grid--5 {
		grid-column-gap: 20rem
	}
}

@media only screen and (max-width:37.5em) {
	.grid--5 {
		grid-column-gap: 1rem
	}
}

.grid--6 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 23rem
}

.grid--7 {
	display: grid;
	grid-template-columns: repeat(5, 8rem);
	grid-gap: 1rem;
	grid-template-rows: 4rem;
	align-items: center
}

.grid--8 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr
}

.grid--9 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 3rem
}

@media only screen and (max-width:37.5em) {
	.grid--9 {
		display: flex!important;
		flex-direction: column!important
	}
}

.link {
	padding: 1rem 3rem;
	text-decoration: none;
	font-size: 2rem;
	border-radius: 15px
}

.SVGfigure {
	height: 60rem;
	width: 60rem
}

.forMargin {
	margin-left: 4rem
}

.circle {
	height: 9px;
	width: 9px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
	align-self: center
}

.spinnerDiv {
	text-align: center;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center
}

.fw500 {
	font-weight: 500
}

.blueStrip {
	width: 100%;
	background-color: #0e3a62;
	height: 2.4rem;
	display: none
}

@media only screen and (max-width:37.5em) {
	.blueStrip {
		display: block;
		position: -webkit-sticky;
		position: sticky;
		top: 0
	}
}

.cursor-free {
	cursor: pointer!important
}

.marginTop13 {
	margin-top: 13rem
}

@media only screen and (max-width:37.5em) {
	.marginTop13 {
		margin-top: 0
	}
}

.marginTop11 {
	margin-top: 11rem
}

@media only screen and (max-width:37.5em) {
	.marginTop11 {
		margin-top: 0
	}
}

.marginTop7 {
	margin-top: 7rem
}

.marginTop5 {
	margin-top: 5rem
}

.marginTop3 {
	margin-top: 3rem
}

.marginTop1 {
	margin-top: 1rem
}

.marginLeft3 {
	margin-left: 3.8rem
}

@media only screen and (max-width:37.5em) {
	.marginLeft3 {
		margin-left: 0;
		margin-bottom: 2.2rem
	}
}

.colRev {
	flex-direction: column-reverse!important
}

/*a {
	text-decoration: none;
	color: #fff
}*/

.flexrow {
	display: flex
}

@media only screen and (max-width:37.5em) {
	.tutorsMobile {
		margin-left: -2rem
	}
}

@media only screen and (max-width:37.5em) {
	.jcCheat {
		justify-content: center
	}
}

@media only screen and (max-width:37.5em) {
	.p6rem {
		padding: 0 6rem!important
	}
}

@media only screen and (max-width:37.5em) {
	.p2rem {
		padding: 0 2rem!important
	}
}

.funding {
	width: 80%;
	height: 100%
}

.funding--Phone {
	display: none
}

@media only screen and (max-width:37.5em) {
	.funding--Phone {
		display: block;
		width: 90%
	}
}

.funding--Web {
	display: block
}

@media only screen and (max-width:37.5em) {
	.funding--Web {
		display: none
	}
}

.btn {
	box-shadow: none;
	text-shadow: none;
	border: none;
	transition: all .3s ease-in
}

.btn--bookADemo {
	padding: 16px;
	font-size: 1.6rem;
	border-radius: 4px;
	background-color: #009ae0;
	color: #fff;
	outline: none;
	border: none;
	cursor: pointer
}

@media only screen and (max-width:37.5em) {
	.btn--bookADemo {
		padding: 1.4rem 1.6rem
	}
}

.btn:hover {
	transform: translateY(-.2rem);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .3)
}

button {
	outline: none;
	border: none
}

.pointImg {
	height: 30px;
	width: 30px
}

@media only screen and (max-width:37.5em) {
	.pointImg {
		height: 20px;
		width: 20px
	}
}

.TextContentGroup {
	margin-top: 60px
}

@media only screen and (max-width:37.5em) {
	.TextContentGroup {
		margin-top: 16px
	}
}

.landing {
	background-position: 50%;
	margin-top: 7rem;
	padding: 6.5rem 0
}

@media only screen and (max-width:37.5em) {
	.landing {
		padding: 0;
		margin-top: 3rem
	}
}

.landing__content {
	grid-column: second-start/second-end;
	display: flex!important;
	flex-direction: column!important;
	position: relative;
	color: #fff
}

@media only screen and (max-width:37.5em) {
	.landing__content {
		text-align: center
	}
}

.landing__content--Item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 36px
}

@media only screen and (max-width:37.5em) {
	.landing__content--Item {
		margin-top: 16px
	}
}

.landing__content--Item-Text {
	color: rgba(1, 105, 153, .807843137254902);
	font-weight: 500;
	text-align: center
}

.landing__content--Item-Text-heading {
	font-size: 54px;
	line-height: 60px;
	font-weight: 700;
	margin-bottom: 16px
}

@media only screen and (max-width:37.5em) {
	.landing__content--Item-Text-heading {
		font-size: 28px;
		line-height: 28px;
		margin-bottom: 4px
	}
}

.landing__content--Item-Text-normalText {
	font-size: 27px;
	font-weight: 500;
	line-height: 34px
}

@media only screen and (max-width:37.5em) {
	.landing__content--Item-Text-normalText {
		font-size: 18px;
		line-height: 21px
	}
}

.landing__content--Item-TextContent {
	display: flex;
	flex-direction: row;
	margin: 16px 0
}

@media only screen and (max-width:37.5em) {
	.landing__content--Item-TextContent {
		margin: 6px 0
	}
}

.landing__content--Item-TextContent-point {
	margin-left: 8px;
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	color: rgba(1, 105, 153, .807843137254902)
}

@media only screen and (max-width:37.5em) {
	.landing__content--Item-TextContent-point {
		font-size: 16px;
		line-height: 20px
	}
}

.landing__content--main {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 6rem
}

@media only screen and (max-width:37.5em) {
	.landing__content--main {
		margin-top: 3rem;
		font-size: 3.5rem;
		padding: 2.7rem;
		line-height: 5rem;
		font-weight: 500;
		display: block;
		text-align: left
	}
}

.landing__content--main--corona {
	font-size: 6rem;
	display: flex
}

@media only screen and (max-width:37.5em) {
	.landing__content--main--corona {
		font-size: 7rem;
		margin-top: 8rem;
		padding: 0;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		text-align: center;
		flex-direction: column
	}
}

@media only screen and (max-width:37.5em) {
	.landing__content--main--corona>div {
		margin-bottom: 2rem
	}
}

.landing__content--sub {
	margin-top: 3.4rem;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 3rem
}

@media only screen and (max-width:37.5em) {
	.landing__content--sub {
		font-size: 2.4rem;
		margin-top: 2rem;
		padding: 0 2.2rem 2.7rem;
		display: block;
		text-align: left;
		width: 60%;
		line-height: 4rem
	}
}

.landing__content--sub--corona {
	font-size: 3.2rem!important;
	line-height: 4rem!important
}

@media only screen and (max-width:37.5em) {
	.landing__content--sub--corona {
		margin-top: 4rem;
		padding: 0 2rem
	}
}

.landing__content--sub--hashtag {
	margin-top: 1rem!important;
	font-weight: 300
}

@media only screen and (max-width:37.5em) {
	.landing__content--sub--hashtag {
		font-size: 2.5rem
	}
}

.landing__content--sub--prompt {
	margin-top: 5rem!important;
	font-weight: 300;
	font-size: 4rem
}

.landing__content--sub--prompt--2 {
	margin-bottom: 3rem
}

@media only screen and (max-width:37.5em) {
	.landing__content--sub--prompt {
		margin-top: 2rem!important;
		padding: 0;
		font-size: 3.2rem;
		font-weight: 500;
		text-align: left
	}
}

.landing__content--tnc {
	display: none
}

@media only screen and (max-width:37.5em) {
	.landing__content--tnc {
		display: block;
		text-align: right;
		position: absolute;
		right: 2rem;
		bottom: 0
	}
}

.landing__form {
	background-color: #fff;
	max-width: 46rem;
	border-radius: 4px;
	margin-left: 12rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 1.8rem
}

@media only screen and (max-width:80em) {
	.landing__form {
		margin-left: 9.5rem
	}
}

@media only screen and (max-width:64em) {
	.landing__form {
		margin-left: 7rem
	}
}

@media only screen and (max-width:56.25em) {
	.landing__form {
		padding: 2.7rem 3.2rem
	}
}

@media only screen and (max-width:48em) {
	.landing__form {
		padding: 2.7rem 1.2rem
	}
}

@media only screen and (max-width:37.5em) {
	.landing__form {
		margin: 0!important;
		text-align: left;
		max-width: unset;
		padding: 2.7rem 2.6rem
	}
}

.landing__form--header--heading {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 4rem
}

@media only screen and (max-width:80em) {
	.landing__form--header--heading {
		font-size: 3.6rem
	}
}

@media only screen and (max-width:48em) {
	.landing__form--header--heading {
		line-height: 4rem
	}
}

@media only screen and (max-width:37.5em) {
	.landing__form--header--heading {
		font-size: 2.3rem;
		font-weight: 700
	}
}

.landing__form--header--content {
	margin-top: 3rem;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: 500
}

@media only screen and (max-width:48em) {
	.landing__form--header--content {
		margin-top: 2.7rem
	}
}

@media only screen and (max-width:37.5em) {
	.landing__form--header--content {
		margin-top: 1rem
	}
}

.landing__Image {
	width: 55rem;
	height: 45rem;
	align-self: center
}

@media only screen and (max-width:37.5em) {
	.landing__Image {
		display: none
	}
}

.instantFix {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 2.5rem
}

@media only screen and (max-width:37.5em) {
	.instantFix {
		font-size: 2rem
	}
}

.instantFix2 {
	position: absolute;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	top: 5rem;
	right: -8rem;
	padding: 1.6rem 2.4rem
}

@media only screen and (min-width:1925px) {
	.landing__form {
		margin-top: 6rem
	}
}

@media only screen and (max-width:1925px) {
	.landing__form {
		margin-top: 6rem
	}
}

@media only screen and (max-width:1875px) {
	.landing__form {
		margin-top: 4rem
	}
}

@media only screen and (max-width:1825px) {
	.landing__form {
		margin-top: 2rem
	}
}

@media only screen and (width:1800px) {
	.landing__form {
		margin-top: 1rem
	}
}

@media only screen and (max-width:1799px) {
	.landing__form {
		margin-top: 13rem
	}
}

@media only screen and (max-width:1775px) {
	.landing__form {
		margin-top: 12rem
	}
}

@media only screen and (max-width:1750px) {
	.landing__form {
		margin-top: 11rem
	}
}

@media only screen and (max-width:1725px) {
	.landing__form {
		margin-top: 10rem
	}
}

@media only screen and (max-width:1700px) {
	.landing__form {
		margin-top: 9rem
	}
}

@media only screen and (max-width:1675px) {
	.landing__form {
		margin-top: 8rem
	}
}

@media only screen and (max-width:1650px) {
	.landing__form {
		margin-top: 7rem
	}
}

@media only screen and (max-width:1625px) {
	.landing__form {
		margin-top: 6rem
	}
}

@media only screen and (max-width:1600px) {
	.landing__form {
		margin-top: 5rem
	}
}

@media only screen and (max-width:1575px) {
	.landing__form {
		margin-top: 4rem
	}
}

@media only screen and (max-width:1550px) {
	.landing__form {
		margin-top: 3rem
	}
}

@media only screen and (max-width:1525px) {
	.landing__form {
		margin-top: 2rem
	}
}

@media only screen and (max-width:1500px) {
	.landing__form {
		margin-top: 1rem
	}
}

.line-1 {
	white-space: nowrap;
	overflow: hidden
}

.anim-typewriter {
	animation: typewriter 4s steps(44) 1s 1 normal both, blinkTextCursor .5s steps(44) infinite normal
}

@keyframes typewriter {
	0% {
		width: 0
	}
	to {
		width: 24em
	}
}

@keyframes blinkTextCursor {
	0% {
		border-right-color: hsla(0, 0%, 100%, .75)
	}
	to {
		border-right-color: transparent
	}
}

@media only screen and (max-width:37.5em) {
	.landing__content--sub--prompt--2 {
		font-size: 2.5rem
	}
}

.centerAlignmentNew {
	position: absolute;
	bottom: 32vh;
	right: 1rem;
	width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column
}

.form {
	margin: 1rem 0;
	display: flex!important;
	flex-direction: column!important
}

@media only screen and (max-width:37.5em) {
	.form {
		min-width: 100%
	}
}

.form__input {
	margin: 1rem 2px;
	border: 1px solid #979797;
	box-sizing: border-box;
	border-radius: 4px;
	/*font-size: 1.6rem;*/
	padding: 1.4rem 1.6rem;
	color: #212121
}
.form__input_div1, .form__input_div3 {
	width: 50%;
	background-color: #fff;
	color: #999;
}

.form__input--2 {
	width: 48%;
	left: 0
}

.form__button {
	margin-top: 2.4rem;
	box-shadow: 0 4px 1px rgba(0, 154, 224, .24)
}

.cityDropdown {
	margin: 1rem 0;
	border: 1px solid #979797;
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 1.6rem!important;
	margin-top: 9px!important;
	width: 48%;
	left: 0
}

.cityDropdown,
.Select-value-label {
	color: #999!important;
	outline: none!important
}

.Select-value-label {
	outline-color: none!important
}

.Select.is-focused:not(.is-open)>.Select-control {
	box-shadow: none!important
}

.checkmark {
	font-style: normal;
	font-weight: 450;
	font-size: 16px;
	line-height: 24px;
	opacity: .87;
	margin-left: 8px;
	color: #2d2d45
}

.select-css {
	display: block;
	padding: 1.4rem 1.6rem;
	border-radius: 4px;
	font-size: 1.6rem;
	color: #999;
	border: 1px solid #979797;
	width: 50%;
	max-width: 50%;
	margin: 1rem 0 1rem .8rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff
}

.select-css::-ms-expand {
	display: none
}

.select-css:focus {
	outline: none
}

.select-css option {
	font-weight: 400
}

.successPopup {
	height: 100vh;
	width: 100vw;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center
}

.successPopup__content {
	background-color: #009ae0;
	padding: 3rem 6rem;
	border-radius: 5px;
	width: 30%;
	text-align: center
}

@media only screen and (max-width:37.5em) {
	.successPopup__content {
		width: 80%
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
		height: 100vh;
		width: 100vw;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		position: fixed;
		z-index: 1000
	}
	90% {
		opacity: .1
	}
	to {
		opacity: 0;
		display: none;
		z-index: 0;
		visibility: hidden
	}
}

.successOut {
	animation: fadeOut 4s;
	animation-fill-mode: forwards
}

.whatsappBtn {
	background: #3c6;
	border-radius: 8px
}

.whatsappAnchor {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none
}

.whatsappAnchor:hover {
	color: #fff
}

.spacing {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.otp_seperator {
	margin: 14px
}

.resend_otp {
	margin-top: 20px;
	font-size: 16px;
	cursor: pointer;
	text-align: end;
	text-align: right
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0
}

.formRadioGroup {
	justify-content: space-between;
	margin: 1rem 0
}

.radioButton {
	font-size: 1.6rem!important
}

.ui.default.dropdown:not(.button)>.text,
.ui.dropdown:not(.button)>.default.text {
	color: #999
}

.ui.dropdown .menu {
	left: 0!important;
	margin-left: 7rem!important
}

.ui.fluid.dropdown {
	width: 48%
}

.VideoModal {
	display: flex;
	display: -webkit-flexbox;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #000;
	background-color: rgba(0, 0, 0, .6)
}

.VideoModal__Container {
	background-color: #fff;
	margin: auto;
	border: 1px solid #888;
	width: 90%;
	border-radius: 1%;
	padding: 15px 20px 20px
}

.VideoModal__Container--Head {
	font-size: 20px;
	font-weight: 700;
	line-height: 40px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	margin-bottom: 20px
}

.VideoModal__Container--Head img {
	cursor: pointer
}

.VideoModal__Container--Body iframe {
	width: 100%;
	height: 515px;
	border: none
}

@media (max-width:600px) {
	.VideoModal__Container--Body iframe {
		height: 150px
	}
}

.features {
	padding: 4rem 9rem 3rem;
	text-align: center
}

@media only screen and (max-width:37.5em) {
	.features {
		padding: 6rem 0
	}
}

.features__header--content {
	margin-top: 2.4rem;
	padding: 0 2.4rem
}

.features__content {
	margin-top: 5rem
}

@media only screen and (max-width:37.5em) {
	.features__content {
		margin-top: 2rem
	}
}

.features__content--list {
	margin-top: 6rem
}

@media only screen and (max-width:37.5em) {
	.features__content--list {
		margin-top: 9rem
	}
}

.features__content--list--item {
	text-align: center
}

.features__content--list--item--img {
	width: 6.4rem;
	height: 6.4rem
}

.features__content--list--item--heading {
	margin-top: 1.6rem;
	font-weight: 700;
	font-size: 1.8rem;
	margin-bottom: .5rem
}

@media only screen and (max-width:37.5em) {
	.features__content--list--item--heading {
		font-weight: 700;
		font-size: 1.6rem
	}
}

.features__link {
	margin-top: 4rem
}

.features__link a {
	font-size: 16px;
	line-height: 27px;
	text-align: center;
	color: #9013fe;
	text-decoration: none
}

.features__content .slick-next,
.features__content .slick-prev {
	display: flex!important;
	content: ""!important;
	margin: 0 1rem!important;
	list-style: none;
	visibility: hidden;
	position: relative
}

.features__content .slick-prev:after {
	top: 25rem;
	left: -5rem
}

.features__content .slick-next:after,
.features__content .slick-prev:after {
	display: none;
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	background-color: #009ae0;
	border-radius: 50%
}

.features__content .slick-next:after {
	bottom: 28rem;
	right: -125rem
}

.features__content .slick-dots {
	display: flex!important;
	justify-content: center
}

.features__content .slick-dots li {
	content: ""!important;
	margin: 0 1rem!important;
	list-style: none;
	height: 15px;
	width: 15px;
	background-color: rgba(0, 154, 224, .24);
	border-radius: 50%
}

.features__content .slick-dots li button {
	content: ""!important;
	color: transparent;
	background-color: initial;
	border: none;
	outline: none;
	height: 10px
}

.features__content .slick-dots li:after {
	visibility: visible;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	height: 15px;
	width: 15px;
	border-radius: 50%
}

.features__content .slick-dots .slick-active {
	background-color: #009ae0
}

.features__content .slick-dots .slick-active button {
	background-color: #009ae0;
	color: #009ae0
}

.features__content .slick-active,
.features__content .slick-current {
	outline: none!important
}

.Carousel__pic--img {
	height: 64.5rem;
	width: 63.4rem
}

@media only screen and (max-width:37.5em) {
	.Carousel__pic--img {
		margin-bottom: 1rem;
		height: 34rem;
		width: 38rem
	}
}

.Carousel__pic--img--small {
	display: none!important
}

.Carousel__content {
	margin-left: 7rem;
	text-align: left
}

@media only screen and (max-width:48em) {
	.Carousel__content {
		margin-left: 0;
		padding: 0 2.4rem;
		text-align: center
	}
}

.Carousel__content--heading {
	text-align: left
}

@media only screen and (max-width:37.5em) {
	.Carousel__content--heading {
		text-align: center
	}
}

.Carousel__content--content {
	margin-top: 3.4rem
}

@media only screen and (max-width:37.5em) {
	.Carousel__content--content--text {
		padding: 0
	}
}

@media only screen and (max-width:37.5em) {
	.Carousel__content--content {
		text-align: center
	}
}

.Carousel__content--content--button {
	margin-top: 4.6rem
}

.Carousel__content--testimonial {
	border-top: 1px solid #008489;
	margin-top: 4.6rem;
	padding-top: 3.7rem;
	display: flex
}

@media only screen and (max-width:64em) {
	.Carousel__content--testimonial {
		display: flex!important;
		flex-direction: column!important;
		flex-direction: column-reverse!important
	}
}

.Carousel__content--testimonial--pic {
	display: flex!important;
	flex-direction: column!important;
	text-align: center;
	min-width: 15rem;
	align-items: center
}

@media only screen and (max-width:37.5em) {
	.Carousel__content--testimonial--pic {
		margin-top: 2rem
	}
}

.Carousel__content--testimonial--pic--img {
	width: 9rem;
	height: 9rem;
	border-radius: 50%;
	border: 1px solid #e5e5e5;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .12)
}

.Carousel__content--testimonial--pic--name {
	margin-top: 2rem;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 23px
}

.Carousel__content--testimonial--pic--org {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 18x;
	color: #008489
}

.Carousel__content--testimonial--text {
	margin-left: 2.4rem;
	line-height: 2.4rem;
	position: relative
}

@media only screen and (max-width:48em) {
	.Carousel__content--testimonial--text {
		padding: 0 1rem 0 2rem
	}
}

.Carousel__content--testimonial--text--quotes {
	position: absolute;
	top: -1rem;
	left: -4rem
}

@media only screen and (max-width:48em) {
	.Carousel__content--testimonial--text--quotes {
		left: -3rem
	}
}

.Institutes {
	padding: 6rem 0;
	text-align: center;
	background-color: #f4f7f8
}

@media only screen and (max-width:37.5em) {
	.Institutes {
		padding: 6rem 0
	}
}

@media only screen and (max-width:37.5em) {
	.Institutes--heading {
		padding: 0 4rem
	}
}

.Institutes--text {
	padding: 0 14rem
}

@media only screen and (max-width:37.5em) {
	.Institutes--text {
		padding: 0 2.4rem
	}
}

.Institutes--content {
	margin-top: 3.4rem
}

.Institutes--list {
	margin-top: 6.2rem
}

.Institutes--list--profile {
	margin: 0 auto;
	width: unset!important;
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center
}

.Institutes--list--profile--img {
	margin: 0 auto;
	border-radius: 50%;
	height: 9rem;
	width: 9rem;
	object-fit: cover;
	object-position: center
}

.Institutes--list--profile--text {
	margin-top: 1rem;
	display: flex!important;
	flex-direction: column!important
}

.Institutes--list .slick-slide {
	display: initial!important
}

.Institutes--list .slick-arrow,
.Institutes--list .slick-dots>* {
	display: none!important
}

.News {
	padding: 6rem 12rem
}

@media only screen and (max-width:37.5em) {
	.News {
		padding: 6rem 2.4rem
	}
}

.News__header {
	text-align: center
}

.News__header--content {
	margin-top: 2.4rem
}

.News__list {
	margin-top: 5rem
}

@media only screen and (max-width:48em) {
	.News__list {
		margin-top: 0
	}
}

.News__list--item {
	text-align: center
}

@media only screen and (max-width:37.5em) {
	.News__list--item {
		margin-top: 2rem
	}
}

.News__list--item--img {
	width: 15rem;
	height: 4.8rem
}

.News__list--item--heading {
	margin-top: 1.6rem;
	font-weight: 700
}

.News__list--item--content {
	margin-top: 1.8rem;
	color: #2d2d45
}

@media only screen and (max-width:37.5em) {
	.News__list--item--content {
		color: #008489;
		padding: 0 1rem
	}
}

.LifeStory {
	padding: 6rem 12rem;
	text-align: center;
	background-color: #f4f7f8;
	position: relative
}

@media only screen and (max-width:37.5em) {
	.LifeStory {
		padding: 6rem 0
	}
}

.LifeStory--text {
	padding: 0 10rem
}

@media only screen and (max-width:48em) {
	.LifeStory--text {
		padding: 0 2.4rem
	}
}

.LifeStory__content {
	margin-top: 2.4rem;
	position: relative
}

@media only screen and (max-width:37.5em) {
	.LifeStory__content {
		padding: 0 .1rem
	}
}

.LifeStory__video {
	padding: 10rem 0 5rem
}

.video-play-button {
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: initial;
	display: block;
	width: 32px;
	height: 44px;
	background: #009ae0;
	border-radius: 50%;
	padding: 18px 20px 18px 28px
}

.video-play-button:before {
	z-index: 0;
	animation: pulse-border 1.5s ease-out infinite
}

.video-play-button:after,
.video-play-button:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #009ae0;
	border-radius: 50%
}

.video-play-button:after {
	z-index: 1;
	transition: all .2s
}

.video-play-button:hover:after {
	background-color: #0077ad
}

.video-play-button img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	width: auto;
	height: auto
}

.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1
	}
	to {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0
	}
}

.video-overlay {
	position: fixed;
	z-index: -1;
	opacity: 0;
	transition: all .5s ease
}

.video-overlay.open {
	position: fixed;
	z-index: 1000;
	opacity: 1
}

.video-overlay-close {
	position: absolute;
	z-index: 1000;
	top: 15px;
	right: 20px;
	font-size: 36px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all .2s
}

.video-overlay-close:hover {
	color: #009ae0
}

.video-overlay iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-shadow: 0 0 15px rgba(0, 0, 0, .75)
}

.iframeContainer {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center
}

.iframeVideo {
	border: none;
	outline: none;
	height: 60rem;
	width: 90rem
}

@media only screen and (max-width:48em) {
	.iframeVideo {
		width: 60rem;
		height: 40rem
	}
}

@media only screen and (max-width:37.5em) {
	.iframeVideo {
		width: 39rem;
		height: 26rem
	}
}

.Reach {
	background-color: #0e3a62;
	padding: 3.2rem 9rem
}

@media only screen and (max-width:64em) {
	.Reach {
		padding: 2.5rem 7rem;
		padding: 2.5rem 6rem
	}
}

@media only screen and (max-width:37.5em) {
	.Reach {
		padding: 3rem 2.8rem 3rem 0
	}
}

.Reach__content {
	display: flex;
	justify-content: space-around;
	align-items: center
}

.Reach__content--item {
	text-align: center
}

.Reach__content--item--heading {
	width: -webkit-min-content;
	width: -moz-min-content;
	width: min-content;
	color: #fff;
	font-size: 4rem!important;
	color: hsla(0, 0%, 100%, .9)
}

@media only screen and (max-width:64em) {
	.Reach__content--item--heading {
		font-size: 3rem
	}
}

@media only screen and (max-width:37.5em) {
	.Reach__content--item--heading {
		font-size: 1.8rem!important
	}
}

.Reach__content--item--content {
	margin-top: 2.4rem;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 3rem;
	color: #f1f1f1
}

@media only screen and (max-width:64em) {
	.Reach__content--item--content {
		font-size: 1.8rem
	}
}

@media only screen and (max-width:37.5em) {
	.Reach__content--item--content {
		margin-top: .8rem;
		font-size: 1.4rem
	}
}

.Contact {
	padding: 6rem 20rem;
	text-align: center
}

@media only screen and (max-width:37.5em) {
	.Contact {
		padding: 6rem 0
	}
}

.Contact__content {
	margin-top: 3.4rem;
	padding: 0 2.4rem
}

.Contact--form {
	margin: 0 auto;
	width: 40%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	justify-self: center
}

@media only screen and (max-width:37.5em) {
	.Contact--form {
		padding: 0 2.6rem;
		width: 100%
	}
}

.tnc {
	margin-top: 16rem;
	text-align: center
}

@media only screen and (max-width:37.5em) {
	.tnc {
		margin-top: 8rem
	}
}

.tnc__heading {
	font-weight: 700;
	font-size: 4rem;
	line-height: 3rem
}

.tnc__heading--2 {
	margin-top: 2rem;
	color: #777;
	line-height: 30px;
	font-size: 24px
}

.tnc__heading:after {
	content: "";
	border-top: 1px solid #333;
	margin-top: 1rem
}

.tnc__list {
	text-align: left;
	padding: 0 10rem
}

.tnc__item,
.tnc__list {
	margin: 3rem 0
}

.tnc__item--title {
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	color: #444
}

.tnc__item--content {
	margin: 1rem 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	color: #555
}

.policy {
	text-align: center;
	font-size: 1.6rem
}

.policy__content {
	margin: 3rem 0;
	padding: 1rem 11rem
}

@media only screen and (max-width:37.5em) {
	.policy__content {
		padding: 1rem 4rem
	}
}

.policy__list {
	text-align: left;
	padding: 1rem 14rem
}

@media only screen and (max-width:37.5em) {
	.policy__list {
		padding: 1rem 4rem
	}
}

.policy__list--item {
	list-style: circle
}

@media only screen and (max-width:900px) {
	.tnc__list {
		text-align: left;
		margin: 2rem 0;
		padding: 0 5rem
	}
}

@media only screen and (max-width:768px) {
	.tnc__list {
		text-align: left;
		margin: 2rem 0;
		padding: 0 4rem
	}
}

@media only screen and (max-width:600px) {
	.tnc__heading {
		font-weight: 700;
		font-size: 3rem;
		line-height: 2.25rem
	}
	.tnc__list {
		text-align: left;
		padding: 0 3rem
	}
	.tnc__item,
	.tnc__list {
		margin: 2rem 0
	}
	.tnc__item--title {
		font-size: 20px;
		font-weight: 700;
		line-height: 30px;
		color: #444
	}
	.tnc__item--content {
		margin: 1rem 0;
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
		color: #555
	}
}

@media only screen and (max-width:480px) {
	.tnc__list {
		text-align: left;
		margin: 2rem 0;
		padding: 0 2rem
	}
}

@media only screen and (max-width:320px) {
	.tnc__list {
		text-align: left;
		margin: 2rem 0;
		padding: 0 1rem
	}
}

.Footer {
	background-color: #0e3a62;
	padding: 6rem 15rem;
	color: #fff;
	display: flex!important;
	flex-direction: column!important
}

@media only screen and (max-width:64em) {
	.Footer {
		padding: 4rem 12rem
	}
}

@media only screen and (max-width:56.25em) {
	.Footer {
		padding: 2rem 12rem
	}
}

@media only screen and (max-width:37.5em) {
	.Footer {
		padding: 6rem 2.4rem
	}
}

.Footer__content {
	padding-bottom: 4.8rem
}

@media only screen and (max-width:37.5em) {
	.Footer__content {
		text-align: center
	}
}

.Footer__content--title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2rem;
	margin-bottom: 2.2rem
}

@media only screen and (max-width:37.5em) {
	.Footer__content--title {
		margin-bottom: 1.7rem
	}
}

.Footer__content--company--item {
	margin-bottom: .8rem;
	color: #fff;
	text-decoration: none
}

.Footer__content--contact {
	display: flex!important;
	flex-direction: column!important
}

@media only screen and (max-width:37.5em) {
	.Footer__content--contact {
		margin-top: 2rem
	}
}

.Footer__content--address {
	font-size: 1.4rem
}

.Footer__content--phone {
	margin-top: 1.6rem;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 500
}

.Footer__content--phone--img {
	margin-right: 1rem
}

@media only screen and (max-width:37.5em) {
	.Footer__content--phone--extra {
		text-align: center
	}
}

.Footer__content--reach {
	text-align: left
}

@media only screen and (max-width:48em) {
	.Footer__content--reach {
		text-align: center
	}
}

@media only screen and (max-width:37.5em) {
	.Footer__content--reach {
		margin-top: 2rem
	}
}

.Footer__content--contacts {
	margin-left: 2.2rem
}

@media only screen and (max-width:37.5em) {
	.Footer__content--contacts {
		margin-left: 0
	}
}

.Footer__content--contacts>* {
	margin-left: 1.7rem
}

@media only screen and (max-width:56.25em) {
	.Footer__content--contacts>* {
		margin-left: 1rem
	}
}

@media only screen and (max-width:37.5em) {
	.Footer__content--contacts>* {
		margin-right: .5rem
	}
}

.Footer__copyrights {
	padding-top: 3.2rem;
	border-top: 1px solid #fff;
	text-align: center
}

@media only screen and (max-width:37.5em) {
	.classplusFooter {
		display: none
	}
}

.navigation {
	padding: 1rem 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100
}

@media only screen and (max-width:80em) {
	.navigation {
		padding: .5rem 5rem
	}
}

@media only screen and (max-width:64em) {
	.navigation {
		padding: .5rem 5rem
	}
}

@media only screen and (max-width:48em) {
	.navigation {
		padding: 1rem 5rem
	}
}

@media only screen and (max-width:37.5em) {
	.navigation {
		padding: 1rem 2rem
	}
}

@media only screen and (max-width:37.5em) {
	.navigation__logo--img {
		width: 14rem;
		height: 3.4rem
	}
}

.scrollButton {
	border-radius: 50px;
	font-weight: 600;
	padding: 1rem 3.1rem
}

.ui.dropdown {
	background: #009ae0;
	color: #fff;
	padding: 1rem 1.6rem;
	border-radius: 4px;
	font-size: 1.6rem
}

.ui.dropdown .menu {
	top: 120%;
	left: -7rem!important
}

.ui.dropdown .menu>.item {
	padding: 1.5rem!important
}

.ui.dropdown .menu>.item>a {
	color: #000;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.8rem
}

.callButton {
	position: fixed;
	right: 2rem;
	bottom: 15vh;
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	background-color: #009ae0;
	cursor: pointer;
	display: grid;
	place-items: center
}

@media only screen and (max-width:37.5em) {
	.callButton {
		width: 7.5rem;
		height: 7.5rem;
		right: 2.5rem
	}
}

.callButton__img {
	width: 3rem;
	height: 3rem
}

@media only screen and (max-width:37.5em) {
	.callButton__img {
		width: 4rem;
		height: 4rem
	}
}

.book-demo-wrapper {
	padding: 16px 12px;
	background: #fffffe!important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 0;
	z-index: 99;
	text-align: center;
	cursor: pointer;
	transition: 1s ease;
	border: none;
	color: #fff
}

.book-demo {
	width: inherit;
	padding: 0 8px;
	line-height: 40px;
	font-size: 16px;
	border-radius: 4px;
	background: #009ae0!important
}

.closeBtn {
	bottom: -100%
}

#chat-bot-launcher-container {
	bottom: 8%!important
}


#landing__content2 {
	visibility: hidden;
}

@media only screen and (max-width: 600px) {
  #landing__content2 {
    visibility: visible;
  }
}

/* TODO understand this hack for responsive form */
html {
        /*scroll-behavior: smooth;*/
	font-size: 62.5%
}
.lead, .mt-0{
	font-size: 2rem;
}
/* END OF todo */