@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,600&display=swap');
:root {
	--firm: #0075f0;
	--black: #0a1d2e;
	--white: #ffffff;
	--back: #fcfcfd;
	--gray-1: #f3f2f8;
	--gray-2: #8b8b8b;
	--success: #0fc715;
	--warning: #feb32b;
	--error: #fe472b;
	--transition: 0.3s ease-in-out;
}
* {
	box-sizing: border-box;
	margin: 0;
}
html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 10px;
	background-color: var(--back, white);
	color: var(--black, black); font-weight: 500;
}
body {
	margin: 0;
	padding: 3.2rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
}
@media(max-width:768px) {
	body {
		padding: 1.6rem;
	}
}
header, section {
	width: 100%;
	position: relative;
}
h1 {
	font-size: 4.4rem;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.09;
	letter-spacing: normal;
	color: var(--firm);
}
h2 {
	font-size: 3.2rem;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	color: var(--black);
	margin-bottom: 1.5rem;
}
h3 {
	font-size: 3.2rem;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	color: var(--black);
}
p > span {
	color: var(--firm);
}

a:not(.button) {
	color: var(--firm);
	white-space: nowrap;
	text-decoration: underline;
}
:is(header, footer) a:not(.button) {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}
a.button,
button {
	border: none;
	outline: 0;
	appearance: none;
    -moz-appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	position: relative;
	top:0;
	font-size: 1.6rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	text-align: center;
	margin: 0;
	padding: 0.7rem 2.6rem 0.9rem;
	border-radius: 1rem;
	transition: top var(--transition), box-shadow var(--transition);
	text-decoration: none;
}
a.button,
button:not(:disabled) {
	color: var(--black);
	box-shadow: 0 0.3rem 0 0 #d48e0f;
	background-image: linear-gradient(to bottom, #ffc762, var(--warning));
	cursor: pointer;
}
button:disabled {
	color: var(--gray-2);
	background-color: var(--gray-1);
}@media (hover: hover) and (pointer: fine) {
	.a:not(.button) {
		text-decoration: none;
		border-bottom: 0.15rem solid transparent;
		transition: border-bottom-color var(--transition);
	}
	a:not(.button):hover {
		border-bottom-color: var(--firm);
	}
	:is(header, footer) a:not(.button):hover {
		color: var(--firm);
	}
	a:hover.button,
	button:not(:disabled):hover {
		color: inherit;
		top: -0.4rem;
	}
	a:active.button,
	button:not(:disabled):active {
		top: -0.1rem;
		box-shadow: 0 0.1rem 0 0 #d48e0f;
	}
}
@media(max-width: 550px) {
	body {
		font-size: 2rem;
	}
	h1 {
		font-size: 4rem;
	}
	h2 {
		font-size: 2.8rem;
	}
	h3 {
		font-size: 2.8rem;
	}
}



section, footer {
	max-width: 118rem;
	margin: 0 auto 5rem;
	position: relative;
}
@media(max-width: 1280px) {
	section, footer {
		max-width: 94rem;
	}
}
@media(max-width: 1023px) {
	section, footer {
		max-width: 70rem;
	}
}
@media(max-width: 743px) {
	section, footer {
		max-width: none;
		width: 100%;
	}
}



#logo {
	display: block;
	width: 15.6rem;
	height: 4.6rem;
	object-fit: contain;
}
header {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100vw;
	padding: 3.2rem;
	margin: -3.2rem -3.2rem 3.2rem;
	background-color: rgba(252, 252, 253, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
}
header .logo {
	flex-grow: 2;
}
header nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0 0 0 3.2rem;
	padding: 0;
	font-size: 1.6rem;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	color: var(--black);
	justify-content: flex-end;
}
header nav li {
	list-style: none;
	margin: 0 3.2rem 0 0;
	padding: 0.6rem 0 0.6rem;
	border-top: 0.2rem solid transparent;
	border-bottom: 0.2rem solid transparent;
}
header nav .current {
	border-bottom-color: var(--firm);
}
header .burger {
	display: none;
	order: 2;
}
header + section:not(.cover) {
	margin-top: 7rem;
}
@media(max-width: 1023px) {
	header nav li {
		margin-right: 2rem;
	}
}
@media(max-width: 768px) {
	header {
		padding: 1.6rem;
		margin: -1.6rem -1.6rem 1.6rem;
	}
}
@media(max-width:820px) {
	header nav {
		display: none;
	}
	header button {
		margin-right: 2.4rem;
	}
	header .burger {
		display: block;
		position: relative;
		width: 4.3rem;
		height: 4.3rem;
	}
	body.lock {
		overflow: hidden;
	}
	header .burger > div,
	header .burger::before,
	header .burger::after {
		display: block;
		position: absolute;
		left: 0.4rem;
		width: 3.5rem;
		height: 0.3rem;
		background-color: var(--black);
		transition: all 0.15s 0.15s ease-in-out, transform 0.15s ease-in-out;
	}
	header .burger > div {
		transition: all 0.15s 0.15s ease-in-out, opacity 0s 0.15s linear;
		top: 2rem;
	}
	header .burger::before {
		content: '';
		top: 1.2rem;
	}
	header .burger::after {
		content: '';
		bottom: 1.2rem;
	}
 	header.open .burger > div {
 		opacity: 0;
		width: 2.5rem;
		left: 0.9rem;
 		transition: all 0.15s ease-in-out, opacity 0s 0.15s linear;
 	}
	header.open .burger::before,
	header.open .burger::after {
		width: 2.5rem;
		left: 0.9rem;
		transition: all 0.15s ease-in-out, transform 0.15s 0.15s ease-in-out;
	}
	header.open .burger::before {
		width: 2.5rem;
		left: 0.9rem;
		top: 2rem;
		transform: rotate(-45deg);
	}
	header.open .burger::after {
		bottom: 2rem;
		transform: rotate(45deg);
	}
	header > * {
		z-index: 20;
	}
	header nav {
		position: fixed;
		z-index: -1;
		top: -100%;
		left: 0;
		width: 100vw;
		height: 100vh;
		margin: 0;
		background-color: var(--back);
		display: none;
		flex-flow: column nowrap;
		justify-content: center;
		opacity: 0;
		transition: top 0.5s ease-in-out, opacity 0.2s ease-in-out; 
	}
	header.open nav {
		top: 0;
		display: flex;
		z-index: 19;
		opacity: 1;
		transition: top 0.5s ease-in-out, opacity 0.2s 0.3s ease-in-out;
	}
	header nav li {
		margin: 1.2rem 0;
	}
	header nav button {
		display: none;
	}
}
@media(max-width: 550px) {
	header + section:not(.cover) {
		margin-top: 4rem;
	}
	header button {
		display: none;
	}
}
@media(max-height: 550px) {
	header {
		padding-top: 0.5rem;
		padding-bottom: 1rem;
	}
}

.cover {
	max-width: unset;
}
.cover img {
	display: block;
	position: relative;
	width: 100%;
	height: 62.9rem;
	max-height: 100vh;
	object-fit: cover;
	border-radius: 3.2rem;
}
.cover .content {
	display: block;
	position: absolute;
	bottom: 0;
	width: 48rem;
	background-color: var(--white, #ffffff);
	border-radius: 2.4rem;
	padding: 3.2rem 2.4rem 4rem;
	margin: 1.6rem;
}
.cover .content > * {
	margin: 0;
}
.cover .content p {
	margin: 0.8rem 0 2.4rem;
}
.mobile-cta {
	display: none;
}
@media(max-width: 550px) {
	.cover img {
		margin: 0 -0.8rem;
		width: calc(100% + 1.6rem);
		height: calc(100vw - 1.6rem);
	}
	.cover h1 {
		display: none;
	}
	.cover .content {
		position: relative;
		padding: 0;
		margin: 2.4rem 0 4.4rem;
		width: 100%;
		background: none;
	}
	.cover button {
		display: block;
		width: calc(100vw - 1.6rem);
		margin: 0 -0.8rem;
	}
	.cta {
		display: none;
	}
	.mobile-cta {
		width: 100vw;
		padding: 2rem 0.8rem 2rem 0.8rem;
		margin: 0 -1.6rem 2rem;
		background-color: rgba(252, 252, 253, 0.9);
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		display: block;
		position: sticky;
		bottom: 0rem;	
		z-index: 10;
		border-top: 0.5px solid rgba(0, 0, 0, 0.15);
	}
	.mobile-cta button {
		display: block;
		width: 100%;
	}
}
@media(max-height: 550px) {
	.mobile-cta {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}


.features h2:not(:first-child),
.features p:not(:first-of-type) {
	margin-top: 2.4rem;
}
.features figure {
	margin-bottom: 20rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	border: inherit;
}
.features .feature {
	width: 58rem;
	border: inherit;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}
.features .appear .feature h2 {
	position: relative;
	top: 3rem;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.features .appear .feature p {
	position: relative;
	top: 3rem;
	opacity: 0;
	transition: all 0.5s 0.3s ease-in-out;
}
.features .appear.visible .feature h2 {
	top: 0;
	opacity: 1;
}
.features .appear.visible .feature p {
	top: 0;
	opacity: 1;
}
.features .image {
	width: 48rem;
	border: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
}
.features figure .image img {
	position: relative;
	z-index: 2;
}
.features .image::before {
	display: block;
	content: '';
	width: 48rem;
	height: 48rem;
	position: absolute;
	z-index: 1;
}
.features .appear .image::before {
	transform: scale(0);
	transition: transform 1s var(--transition);
}
.features .appear.visible .image::before {
	transform: scale(1);
}
.features .track .image::before {
	background-color: var(--firm);
	clip-path: circle(50%);
}
.features .groups .image::before {
	background-color: var(--warning);
}
.features .chat .image::before {
	background-color: #4e9916;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.features .course .image::before {
	background-color: var(--firm);
	border-radius: 10rem;
}
.features .info .image::before {
	background-color: #4e9916;
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
@media(max-width: 1280px) {
	.features .feature {
		width: 54rem;
	}
	.features .image {
		width: 38rem;
	}
	.features .image img {
		width: 22rem;
	}
	.features .image::before {
		width: 38rem;
		height: 38rem;
	}
}
@media(max-width: 1023px) {
	.features .feature {
		width: 33.7rem;
	}
	.features .image {
		width: 33.7rem;
	}
	.features .image img {
		width: 22rem;
	}
	.features .image::before {
		width: 33.7rem;
		height: 33.7rem;
	}
}
@media(max-width: 743px) {
	.features figure {
		flex-direction: column-reverse;
	}
	.features .feature {
		width: 100%;
	}
	.features .image {
		width: 100%;
		margin-bottom: 4rem;
	}
	.features .image img {
		width: 22rem;
	}
	.features .image::before {
		width: 30.4rem;
		height: 30.4rem;
	}
}



.download {
	border-radius: 5.2rem;
	box-shadow: 0 0.4rem 2.4rem 0 rgba(5, 100, 235, 0.16);
	background-color: #fff;
	padding: 8rem 2rem;
	text-align: center;
}
.download p {
	margin: 1.5rem 0 0;
}
.download a {
	display: inline-block;
	margin: 3.2rem 1.6rem 0;
/* 	opacity: 0.2; */
}



.support {
	max-width: 58rem;
	text-align: center;
	margin: 20rem auto;
}
.support a.button {
	margin-top: 4rem;
}



footer {
	display: flex;
	flex-flow: row-reverse nowrap;
	justify-content: space-between;
	font-size: 1.6rem;
}
footer .copyright {
	font-weight: normal;
}
footer .links {
	display: flex;
	flex-flow: row nowrap;
}
footer .links a {
	display: block;
	margin-left: 3.2rem;
}
@media(max-width: 743px) {
	footer {
		flex-direction: column;
		align-items: center;
	}
	footer .links {
		flex-direction: column;
		align-items: center;
	}
	footer .links a {
		margin-left: 0;
		margin-bottom:2.4rem;
	}
}



.popup {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
	background-color: rgba(243, 242, 248, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	margin: 0;
	padding: 3.2rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}
body.popup-lock {
	overflow: hidden;
}
.popup.show {
	opacity: 1;
	transition: opacity 0.3s ease;
}
.popup .modal {
	display: block;
	overflow-x: auto;
	border-radius: 5.2rem;
	box-shadow: 0 0.4rem 2.4rem 0 rgba(5, 100, 235, 0.16);
	background-color: #fff;
	width: 100%;
	max-width: 98rem;
	min-height: 10.4rem;
	max-height: 100vh;
	padding: 8rem 10rem;
	position: relative;
	opacity: 0;
	transform: scale(0.8);
	transition: transform 0.3s 0.1s ease-out, opacity 0.3s 0.2s ease-out;
}
.popup.show .modal {
	transform: scale(1);
	opacity: 1;
}
.popup .modal a[href='#close'] {
	display: block;
	width: 4.3rem;
	height: 4.3rem;
	text-indent: 10000%;
	overflow: hidden;
	position: absolute;
	right: 2rem;
	top: 2rem;
	z-index: 10000;
	transition: transform 0.5s 0.3s ease-out;
}
.popup .modal a[href='#close'] {
	transform: rotate(-180deg);
}
.popup.show .modal a[href='#close'] {
	transform: rotate(0deg);
}
.popup .modal a[href='#close']:hover::before,
.popup .modal a[href='#close']:hover::after {
	background-color: var(--black);
}
.popup .modal a[href='#close']::before,
.popup .modal a[href='#close']::after {
	display: block;
	content: '';
	position: absolute;
	width: 2.5rem;
	height: 0.3rem;
	left: 0.9rem;
	top: 2rem;
	background-color: var(--gray-2);
	transition: background-color 0.3s ease-in-out, transform 0.5s 0.3s ease-out;
}
.popup.show .modal a[href='#close']::before {
	transform: rotate(-45deg);
}
.popup.show .modal a[href='#close']::after {
	transform: rotate(45deg);
}
@media(max-width: 767px) {
	.popup {
		padding: 0;
	}
	.popup .modal {
		width: 100%;
		height: 100%;
		border-radius: 0;
	}
}
@media (max-width: 670px) {
	.popup .modal {
		padding: 8rem 5rem 4rem;
	}
}
@media (max-width: 413px) {
	.popup .modal {
		padding: 8rem 1.6rem 4rem;
	}
}



.notify-me .modal {
	text-align: center;
}
.notify-me .icon {
	display; block;
	width: 6.4rem;
	height: 6.4rem;
	margin-bottom: 4rem;
}
.notify-me p {
	font-weight: 600;
}
.notify-me .states {
	max-width: 62rem;
	margin: 0 auto;
	padding-top: 5rem;
	display: flex;
	flex-flow: row nowrap;
	overflow: hidden;
}
.notify-me .states > div {
	min-width: 100%;
	position: relative;
}
.notify-me .states.done > div {
	left: -100%;
}
.notify-me .states > div:nth-child(2) {
	opacity: 0;
	transition: opacity var(--transition);
}
.notify-me .states.done > div:nth-child(2) {
	opacity: 1;
}
.notify-me form {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	margin-bottom: 2.4rem;
}
.notify-me .input {
	flex-grow: 2;
	margin: 0 2rem 0 0;
}
.notify-me .message {
	display: block;
	visibility: hidden;
	color: var(--error);
	font-size: 1.2rem;
	text-align: left;
	margin-top: 0.2rem;
	padding: 0 1.6rem;
	opacity: 0;
	transition: opacity var(--transition);
}
.notify-me .error .message {
	visibility: visible;
	opacity: 1;
}
.notify-me input {
	outline: 0;
	appearance: none;
    -moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 1rem;
	border: solid 0.2rem var(--firm);
	font-size: 1.6rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	color: var(--black);
	padding: 1.5rem 1.6rem 1.5rem 1.6rem;
	width: 100%;
	transition: border-color var(--transition), color var(--transition);
}
.notify-me input::placeholder {
	color: var(--gray-2);
}
.notify-me .error input {
	border-color: var(--error);
	color: var(--error);
}
.notify-me button {
	font-size: 1.6rem;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	padding: 1.6rem 2.5rem;
	position: relative;
	white-space: nowrap;
}
.notify-me .note {
	font-size: 1.4rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.43;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray-2);
}
.notify-me .states .done {
	margin: 0 auto;
	padding: 2.4rem 2.4rem 2.4rem 7.4rem;
	text-align: left;
	border-radius: 2.2rem;
	background-color: var(--gray-1);
	font-size: 16px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	background-image: url('/i/web-alert-done.svg');
	background-position: 2.4rem 2.4rem;
	background-size: 3rem 3rem;
	background-repeat: no-repeat;
}
@media(max-width: 550px) {
	.notify-me .states {
		padding-top: 2.4rem;
	}
	.notify-me form {
		flex-direction: column;
		align-items: stretch;
	}
	.notify-me .input {
		margin: 0 0 0.5rem;
	}
	.notify-me input {
		padding: 1.5rem 1.6rem;
		text-align: center;
	}
	.notify-me .message {
		text-align: center;
/* 		padding-bottom: -100%; */
	}
}


@media (max-width: 743px) {
	figure.title {
		flex-direction: column; 
	}
	figure.title .feature {
		margin-bottom: 2.5rem;
	}
}
.quote {
	display: block;
	width: 100%;
	padding: 4rem;
	border-radius: 5.2rem;
	box-shadow: 0 4px 2.4rem 0 rgba(5, 100, 235, 0.16);
	background-color: #fff;
}
.quote q {
	display: block;
	font-weight: normal;
	font-stretch: normal;
	font-style: italic;
	line-height: 1.33;
	letter-spacing: normal;
	margin-bottom: 2.4rem;
}
.quote q::before,
.quote q::after {
	display: none;
}
.quote span {
	color: var(--firm);
}
.quote .author {
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	padding-left: 5.2rem;
	background: url('/i/willsmith.png') 0 center no-repeat;
	background-size: 4rem 4rem;
}
.quote .author .name {
	font-weight: 600;
}


.contacts {
	margin-bottom: 11rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.contacts h2 {
	width: 100%;
	margin-bottom: 4rem;
}
.contacts figure {
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	margin-bottom: 4rem;
	width: 100%;
	max-width: 38rem;
}
@media(max-width:1280px) {
	.contacts figure {
		max-width: 30rem;
	}
}
@media(max-width:1025px) {
	.contacts {
		display: block !important;
	}
	.contacts figure {
		max-width: unset;
	}
}
.contacts div:first-child {
	margin-bottom: 0.4rem;
}
.contacts a {
	color: var(--firm);
}



.contacts-title {
	margin: 0 auto 15rem;
}
.contacts-title h2 {
	max-width: 94rem;
	margin-top: 2.4rem;
}



.legal {
	margin-bottom: 20rem;
	font-size: 1.6rem;
}
.legal > * {
	max-width: 94rem;
	margin-top: 2.4rem;
}
.legal > h1 {
	margin: 0;
}
.legal > h3 {
	margin-top: 6.4rem;
}
.legal ul li {
	margin-top: 1.2rem;
}
.legal ul > li > ul {
	list-style-type: '– ';
}
.legal h4 {
	font-size: inherit;
	text-transform: uppercase;
	font-weight: 700;
}
