@import url(../nullstyle/nullstyle.css);
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.container {
	max-width: 1200px;
	margin: 0 auto;
}
.modal {
	position: fixed;
	z-index: 10000000;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.modal .modal__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	background: #fff;
	height: 540px;
	width: 516px;
	border-radius: 30px;
	font-family: "Noto Sans", sans-serif;
}
.modal .modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 10px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal .modal__close img {
	width: 20px;
	height: 20px;
}
.modal .modal__header {
	background-image: url("../../src/img/modal_bg.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	width: 100%;
	height: 207px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal .modal__header p {
	font-size: 30px;
	color: #fff;
	line-height: 114%;
}
.modal .modal__header p .yellow {
	color: #FFCB26;
}
.modal .modal__body {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	padding: 60px 0;
}
.modal .modal__body .title {
	font-size: 30px;
	flex: 20%;
	font-weight: 600;
}
.modal .modal__body .description {
	flex: 30%;
	font-size: 22px;
	text-align: center;
	max-width: 80%;
}
.modal .modal__body .description span {
	font-weight: 600;
}
.modal .modal__body form {
	flex: 50%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.modal .modal__body form input {
	width: 440px;
	height: 52px;
	border: 1px solid #C0C9D3;
	border-radius: 15px;
	font-size: 14px;
	font-family: "Noto Sans", sans-serif;
	padding: 0 15px;
}
.modal .modal__body form button {
	background: #E94746;
	width: 440px;
	height: 60px;
	border-radius: 48px;
	color: #fff;
	font-size: 18px;
}
.modal.hide {
	display: none;
}
.wrapper .main .download {
	background: linear-gradient(90deg, #ff5653 0%, #cf3535 100%);
	position: relative;
	height: 644px;
	font-family: "Noto Sans", sans-serif;
}
.wrapper .main .download .download__background {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../../src/img/download-bg.svg") 0 0/cover repeat;
	opacity: 0.15;
}
.wrapper .main .download .container {
	position: relative;
	z-index: 100;
	display: flex;
}
.wrapper .main .download__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.wrapper .main .download .mobile {
	display: none;
}
.wrapper .main .download .download__images .comp {
	height: 644px;
	margin-left: 75px;
}
.wrapper .main .download .download__images .mobile {
	display: none;
}
.wrapper .main .download .download__images .laptop {
	display: none;
	height: 458px;
	margin-left: 75px;
}
.wrapper .main .download .download__images .bgmobile {
	display: none;
	height: 384px;
}
.wrapper .main .download .message_block .message_image {
	width: 569px;
	height: 156px;
}
.wrapper .main .download h1 {
	font-weight: bold;
	font-size: 52px;
	color: #fff;
	width: 130%;
	line-height: 110%;
}
.wrapper .main .download h2 {
	margin: 20px 0;
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	line-height: 130%;
}
.wrapper .main .download__span--bold {
	color: #131b24;
}
.wrapper .main .download__links {
	display: flex;
	gap: 20px;
	position: relative;
	overflow: visible;
}
.wrapper .main .download__links a img {
	width: 182px;
	height: 52px;
}
.wrapper .main .download__modal-button {
	position: relative;
	margin-top: 20px;
	border-radius: 20px;
}
.wrapper .main .download__modal-button img {
	height: 90px;
}
.wrapper .main .download__modal-button .modal-button__hover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .3s;
}
@media (any-hover: hover) {
	.wrapper .main .download__modal-button:hover .modal-button__hover {
		opacity: 1;
	}
}
.wrapper .main .download__form {
	margin-top: 40px;
	display: flex;
	width: 100%;
}
.wrapper .main .download__form .download__form-input {
	padding: 10px 15px;
	border-radius: 5px;
	max-height: 40px;
	font-size: 16px;
	margin-right: 10px;
	background: rgba(255, 255, 255, 0.7);
	width: 260px;
	font-family: "Noto Sans", sans-serif;
	transition: all 0.3s;
}
.wrapper .main .download__form .download__form-input:hover, .wrapper .main .download__form .download__form-input:focus {
	background: #fff;
}
.wrapper .main .download__form .download__form-button {
	border-radius: 5px;
	max-height: 40px;
	font-family: "Noto Sans", sans-serif;
	padding: 10px 15px;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	background: #e94746;
	box-shadow: 0px 0px 35px #fff;
}
.wrapper .main .download .available {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	font-family: "Noto Sans", sans-serif;
	margin-top: 20px;
}
.wrapper .main .limited {
	background: black;
}
.wrapper .main .limited .limited-block {
	background-size: cover;
	background-image: url("../../src/img/limited_bg.png");
}
.wrapper .main .limited .container {
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}
.wrapper .main .limited__text {
	display: flex;
	font-family: "Noto Sans", sans-serif;
	font-size: 30px;
}
.wrapper .main .limited__text p {
	color: #fff;
}
.wrapper .main .limited__text .yellow {
	color: #ffcb26;
}
.wrapper .main .limited__button button {
	font-family: "Noto Sans", sans-serif;
	width: 282px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 48px;
	background: #e94746;
	font-size: 18px;
	color: #fff;
}
.wrapper .main .plan {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans", sans-serif;
	padding-bottom: 70px;
	background: #faf9f9;
}
.wrapper .main .plan h4 {
	font-size: 30px;
	text-align: center;
	font-weight: 600;
	padding: 40px 0;
}
.wrapper .main .plan .road-block {
	background-image: url("../../src/img/road.png");
	background-position: 0 35%;
	background-size: contain;
	background-repeat: no-repeat;
	display: flex;
	width: 120%;
	margin-left: -10%;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
}
.wrapper .main .plan .plan__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.wrapper .main .plan .plan__item img {
	width: 130px;
	height: 130px;
	margin: 25px 0;
}
.wrapper .main .plan .plan__item .item__title {
	font-weight: 600;
	font-size: 22px;
	color: #131b24;
}
.wrapper .main .plan .plan__text {
	flex-direction: column;
	display: flex;
}
.wrapper .main .plan .step-number {
	font-size: 18px;
	color: #c0c9d3;
}
.wrapper .main .plan .description {
	width: 205px;
	font-size: 17px;
	line-height: 140%;
	padding-top: 15px;
}
.wrapper .main .supported .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 50px;
}
.wrapper .main .supported .container span {
	font-family: "Noto Sans", sans-serif;
	font-size: 14px;
	color: #a4aeb9;
	text-transform: uppercase;
	text-align: center;
	margin: 35px 0;
	letter-spacing: 2px;
}
.wrapper .main .supported .container ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
}
.wrapper .main .supported .container ul li img {
	transition: all 0.2s;
}
.wrapper .main .supported .container ul li img:hover {
	transform: scale(1.1);
	transition: all 0.2s;
}
.wrapper .main .supported .container ul li .manchester {
	width: 148px;
	height: 60px;
}
.wrapper .main .supported .container ul li .ucl {
	width: 167px;
	height: 43px;
}
.wrapper .main .supported .container ul li .oxford {
	width: 191px;
	height: 50px;
}
.wrapper .main .supported .container ul li .into {
	margin-top: 5px;
	width: 186px;
	height: 40px;
}
.wrapper .main .supported .container ul li .plexa {
	width: 192px;
	height: 35px;
}
.wrapper .main .benefits {
	background: rgb(255, 242, 241);
	height: 624px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-bottom: 20px;
}
.wrapper .main .benefits h4 {
	font-size: 30px;
	color: #E94746;
	font-family: "Noto Sans", sans-serif;
	padding-bottom: 60px;
	font-weight: 600;
}
.wrapper .main .benefits .container {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.wrapper .main .benefits__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	transform: translate(-50%, -50%);
}
.wrapper .main .benefits .benefits__column {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}
.wrapper .main .benefits .benefits__column .benefits__item {
	display: flex;
	gap: 30px;
	height: 122px;
	background: #fff;
	width: 100%;
	align-items: center;
	color: rgb(19, 27, 36);
	font-family: "Noto Sans", sans-serif;
	font-size: 22px;
	font-weight: 500;
	padding: 25px 30px;
}
.wrapper .main .benefits .benefits__column .benefits__item img {
	height: 70px;
	width: 70px;
}
.wrapper .main .benefits .benefits__column .benefits__item span {
	line-height: 25px;
}
.wrapper .main .benefits__column-start .benefits__item {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	justify-content: flex-start;
}
.wrapper .main .benefits__column-start .benefits__item span {
	max-width: 230px;
}
.wrapper .main .benefits__column-end .benefits__item {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	flex-direction: row-reverse;
}
.wrapper .main .benefits__column-end .benefits__item span {
	width: 230px;
}
.wrapper .main .about {
	background: #34414e;
	padding: 70px 0;
}
.wrapper .main .about .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.wrapper .main .about .about-us__video video {
	width: 675px;
	border-radius: 40px;
}
.wrapper .main .about .about-us__text {
	font-family: "Noto Sans", sans-serif;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.wrapper .main .about .about-us__title {
	color: #fff;
	font-weight: 600;
	font-size: 30px;
	line-height: 130%;
}
.wrapper .main .about .about-us__p {
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	margin-top: 15px;
	color: #a4aeb9;
	max-width: 90%;
}
.wrapper .main .about .about-us__button {
	display: none;
	background: #e94746;
	border-radius: 50px;
	color: #fff;
	padding: 16px 30px;
	font-size: 18px;
	font-weight: 600;
	margin-top: 30px;
}
.wrapper .main .contact {
	background: linear-gradient(90deg, #ff5653 0%, #cf3535 100%);
	position: relative;
	height: 633px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wrapper .main .contact .contact__bg {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../../src/img/download-bg.svg") 0 0/cover repeat;
	opacity: 0.15;
}
.wrapper .main .contact__form {
	z-index: 25;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: #fff;
	border-radius: 40px;
	font-family: "Noto Sans", sans-serif;
}
.wrapper .main .contact__title {
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 20px;
}
.wrapper .main .contact__input, .wrapper .main .contact__textarea {
	margin: 10px 0;
	width: 440px;
	border: 1px solid #c0c9d3;
	padding: 14px 16px;
	border-radius: 20px;
}
.wrapper .main .contact__textarea {
	resize: none;
}
.wrapper .main .contact__info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
	gap: 20px;
	width: 100%;
}
.wrapper .main .contact__button {
	background: #e94746;
	color: #fff;
	padding: 16px 57px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 18px;
	box-shadow: #e94746 0 0 6px;
}
.wrapper .main .contact__data {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.wrapper .main .contact__subtitle {
	color: #131b24;
	font-size: 14px;
}
.wrapper .main .contact a {
	color: #e94746;
	line-height: 130%;
	font-weight: 600;
	font-size: 17px;
}
.wrapper .footer {
	background: #d12f2e;
}
.wrapper .footer .container {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
}
.wrapper .footer .container img {
	height: 27px;
	width: 169px;
}
.wrapper .footer .container span {
	font-size: 14px;
	color: #fff;
	font-family: "Noto Sans", sans-serif;
	display: flex;
	align-items: center;
}
.wrapper .footer .container a {
	display: flex;
	align-items: center;
	font-family: "Noto Sans", sans-serif;
	color: #fff;
	text-decoration: underline;
	font-size: 14px;
}
.wrapper .footer .container ul {
	display: flex;
	gap: 20px;
}
.wrapper .footer .container ul li img {
	width: 20px;
	height: 20px;
}