/* RESET */
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: 0;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

:root {
	--font-Plus-Jakarta-Sans: "Plus Jakarta Sans", sans-serif;
	--font-Inter: "Inter", sans-serif;
}

/* font-family: "Sora", sans-serif; */

/* general */
body,
html {
	min-height: 100%;
}

body {
	background: #08090c;
	transition: opacity 0.3s linear;
	font-family: var(--font-Inter);
	font-weight: 400;
	font-size: 19px;
	line-height: 1.8;
	color: #8a8f9e;
}

.open-menu {
	overflow: hidden;
}

svg {
	display: block;
}

a {
	text-decoration: none;
	color: #d4ff3f;
}

a:hover {
	text-decoration: underline;
}

ul {
	margin-left: 26px;
}

ul li {
	list-style-type: disc;
}

strong,
b {
	font-weight: 800;
}

.loader {
	position: relative;
}

.loader .roller {
	display: block;
}

.loader .layout {
	opacity: 0;
}

.layout {
	min-height: 100vh;
	position: relative;
	transition: opacity 0.3s linear;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.layout.bg::after {
	content: "";
	width: 561px;
	height: 856px;
	position: fixed;
	background: url(../images/bg-fixed.svg) no-repeat;
	background-size: contain;
	background-position: left bottom;
	left: 0;
	bottom: -126px;
}

.wrapper {
	padding-left: 60px;
	padding-right: 60px;
	margin: 0 auto;
	width: 100%;
	max-width: 1582px;
	height: 100%;
	position: relative;
}

.wrapper--sm {
	max-width: 1328px;
}

picture,
img {
	max-width: 100%;
	height: auto;
	display: block;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	body {
		font-size: 17px;
	}

	.layout.bg::after {
		height: 657px;
	}
}

@media screen and (max-width: 1024px) {
	.wrapper {
		padding: 0 40px;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 16px;
	}

	.wrapper {
		padding: 0 20px;
		max-width: 600px;
	}

	.layout.bg::after {
		height: 580px;
		opacity: 0.6;
	}
}

/* typography */
.title {
	font-weight: 900;
	color: #fff;
	font-family: var(--font-Plus-Jakarta-Sans);
}

.title--lv1 {
	font-weight: 800;
	font-size: 94px;
	line-height: 1.04;
}

.title--lv2 {
	font-size: 55px;
	line-height: 1.25;
}

.title--lv3 {
	font-size: 34px;
	line-height: 1.37;
}

.title--lv4 {
	font-weight: 700;
	font-size: 23px;
	line-height: 1.38;
}

.subtitle {
	font-size: 21px;
	line-height: 1.63;
}

.label {
	display: flex;
	align-items: center;
	gap: 11px;
	justify-content: flex-start;
	font-family: var(--font-Plus-Jakarta-Sans);
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.link {
	font-size: 20px;
}

.color-accent {
	color: #d4ff3f !important;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 10px 27px 10px 37px;
	transition: all 0.3s;
	max-width: fit-content;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	border: none;
	background: #d4ff3f;
	box-shadow: 0px 0px 27.4449px rgba(212, 255, 63, 0.25);
	border-radius: 50px;
	font-family: var(--font-Plus-Jakarta-Sans);
	font-weight: 700;
	font-size: 17px;
	line-height: 1;
	color: #08090c;
	height: 58px;
}

.btn svg {
	margin-bottom: -4px;
}

.btn--secondary {
	background: #12141c;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.05);
	color: #fff;
}

.btn--sm {
	font-size: 16px;
	padding: 6px 20px;
	height: 46px;
	gap: 8px;
}

.btn:hover {
	text-decoration: none;
	background: #daff5b;
}

.btn:not(.btn--secondary):hover {
	box-shadow: 0px 0px 35.445px rgba(212, 255, 63, 0.5);
}

.btn--secondary:hover {
	background: #0b0b0f;
}

.btn-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
}

.btn[disabled] {
	pointer-events: none !important;
	cursor: default !important;
	opacity: 0.4 !important;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.title--lv1 {
		font-size: 52px;
	}

	.title--lv2 {
		font-size: 42px;
	}

	.title--lv3 {
		font-size: 28px;
	}

	.subtitle {
		font-size: 18px;
	}
}

@media screen and (max-width: 992px) {
	.title--lv4 {
		font-size: 20px;
	}

	.title--lv3 {
		font-size: 22px;
	}
}

@media screen and (max-width: 768px) {
	.title--lv1 {
		font-size: 32px;
		line-height: 1.3;
	}

	.title--lv2 {
		font-size: 30px;
	}

	.title--lv4 {
		font-size: 18px;
	}

	.subtitle {
		font-size: 18px;
	}

	.label {
		gap: 7px;
		font-size: 10px;
		letter-spacing: 1.7px;
	}

	.btn {
		height: 50px;
	}

	.btn-wrap {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 576px) {
}

/* header */
.header {
	z-index: 100;
	padding: 14px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transition: all 0.2s;
	border-bottom: 1px solid transparent;
}

.header__logo {
	display: block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 15;
}

.header__pic {
	display: block;
	max-width: 100%;
	height: auto;
	transition: all 0.2s;
}

.header__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	position: relative;
	transition: all 0.3s;
}

.header__wrap {
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 43px;
}

.header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: auto;
}

.header__item {
	list-style: none;
}

.header__link {
	position: relative;
	white-space: nowrap;
	line-height: 1;
	transition: all 0.2s;
	color: inherit;
	font-size: 16px;
	font-weight: 500;
}

.header__link:hover {
	color: inherit;
	text-decoration: none;
}

.header__link:not(.active):hover {
	opacity: 0.5;
}

.header__link.active {
	color: #d4ff3f;
}

.header__btn {
	display: none;
	position: relative;
	width: 22px;
	height: 22px;
	background: none;
	padding: 0;
	cursor: pointer;
	z-index: 10;
	outline: none;
	border: none;
	position: relative;
	z-index: 30;
}

.header__btn span {
	position: absolute;
	height: 2px;
	background-color: #d4ff3f;
	width: 100%;
	left: 0;
	transition: all 0.3s;
	border-radius: 3px;
}

.header__btn span:nth-child(1) {
	top: 2px;
}

.header__btn span:nth-child(2) {
	top: 10px;
}

.header__btn span:nth-child(3) {
	top: 18px;
}

.header__btn.open span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}

.header__btn.open span:nth-child(2) {
	transform: rotate(180deg);
	opacity: 0;
}

.header__btn.open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

.header--scrolled {
	background: rgba(8, 9, 12, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 1660px) {
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.header__pic {
		max-width: 153px;
	}
}

@media screen and (max-width: 1050px) {
	.header__nav {
		flex-direction: column;
	}

	.header__wrap {
		max-width: 100%;
		width: auto;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 25;
		-webkit-transform: translateY(-350px);
		-ms-transform: translateY(-350px);
		transform: translateY(-350px);
		opacity: 0;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
		padding: 81px 10px 60px;
		background: #08090c;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 43px;
		pointer-events: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

	.header__link {
		display: block;
		font-size: 20px;
	}

	.header__wrap.open {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
		z-index: 10;
		pointer-events: all;
	}

	.header__btn {
		display: block;
	}
}

@media screen and (max-width: 768px) {
}

/* footer */
.footer {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 16px;
}

.footer__wrap {
	padding: 45px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.footer__nav {
	display: flex;
	justify-content: center;
	gap: 39px;
}

.footer__link {
	color: inherit;
	display: block;
	position: relative;
	z-index: 1;
	transition: opacity 0.2s;
}

.footer__link:hover {
	opacity: 0.5;
	text-decoration: none;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.footer {
		font-size: 15px;
	}
}

@media screen and (max-width: 992px) {
	.footer__wrap {
		flex-direction: column-reverse;
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		font-size: 14px;
	}

	.footer__wrap {
		gap: 39px;
	}

	.footer__nav {
		width: 100%;
		align-items: center;
		gap: 15px;
	}

	.footer__copyright {
		text-align: center;
	}
}

@media screen and (max-width: 540px) {
	.footer__nav {
		gap: 24px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/* content */
.main {
	width: 100%;
	position: relative;
	z-index: 1;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.section {
	position: relative;
	z-index: 1;
	padding-top: 80px;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.section {
		padding-top: 50px;
	}
}

@media screen and (max-width: 768px) {
	.section {
		padding-top: 40px;
	}
}

/* section intro */
.intro {
	padding: 84px 0;
	background-image: url(../images/bg.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top right;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

.intro .wrapper {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.intro__row {
	display: flex;
}

.intro__info {
	max-width: 900px;
	margin-top: 45px;
	width: 62%;
}

.intro__pic {
	position: relative;
	margin-left: -41px;
	margin-right: -103px;
}

.intro .title {
	margin-top: 32px;
}

.intro .subtitle {
	max-width: 650px;
	margin-top: 30px;
	margin-bottom: 52px;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.intro__row {
		align-items: center;
	}

	.intro__info {
		max-width: 700px;
		margin-top: 0;
	}

	.intro .title {
		margin-top: 20px;
	}

	.intro .subtitle {
		margin-top: 21px;
		margin-bottom: 35px;
	}

	.intro__pic {
		margin: auto;
		/* max-width: 424px; */
		max-width: 39%;
	}
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
	.intro {
		background-size: 160%;
	}

	.intro__row {
		flex-direction: column;
	}

	.intro__info {
		margin-top: 0;
		width: 100%;
	}

	.intro .title {
		margin-top: 15px;
	}

	.intro .subtitle {
		max-width: 100%;
		margin-top: 17px;
		margin-bottom: 25px;
	}

	.intro__pic {
		display: none;
	}
}

/* section platform */
.about {
	padding-bottom: 245px;
}

.about__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: -80px;
	padding-top: 86px;
}

.about__left {
	padding-top: 20px;
}

.about__right {
	max-width: 1130px;
	width: 78%;
}

.about .title {
	max-width: 900px;
	margin-bottom: 30px;
}

.about .description {
	max-width: 780px;
}

.about .description p + p {
	margin-top: 16px;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.about {
		padding-bottom: 100px;
	}

	.about__row {
		margin-top: -50px;
		padding-top: 60px;
	}
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
	.about {
		padding-bottom: 30px;
	}

	.about__left {
		padding-top: 0;
	}

	.about__row {
		flex-direction: column;
		gap: 5px;
		margin-top: -40px;
		padding-top: 40px;
	}

	.about .title {
		margin-bottom: 14px;
	}

	.about .description p + p {
		margin-top: 10px;
	}
}

/* section features */
.services {
}

.services .title--lv2 {
	margin-top: 4px;
	margin-bottom: 14px;
}

.services .title--lv2 span {
	color: #8a8f9e;
	font-weight: 600;
}

.services__info {
	max-width: 790px;
}

.services__row {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 82px;
	gap: 28px;
}

.services__col {
	flex: 1;
	background: #12141c;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 35px 36px 37px 40px;
}

.services__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}

.services__number {
	font-family: var(--font-Plus-Jakarta-Sans);
	font-weight: 900;
	font-size: 41px;
	line-height: 1;
	opacity: 0.4;
}

.services__list {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.services__item {
	padding-left: 36px;
	position: relative;
}

.services__item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' stroke='%23D4FF3F' stroke-opacity='0.7'/%3E%3Cpath d='M15 6.5L8.125 13.5L5 10.3182' stroke='%23D4FF3F' stroke-width='0.952948' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 20px;
	height: 20px;
}

.services__title {
	font-family: var(--font-Plus-Jakarta-Sans);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.37;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 4px;
}

.services__description {
	font-size: 14px;
	line-height: 1.59;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.services__info {
		max-width: 670px;
	}

	.services__row {
		margin-top: 50px;
	}
}

@media screen and (max-width: 992px) {
	.services__col {
		padding: 18px 20px 20px;
	}

	.services__header {
		margin-bottom: 13px;
	}

	.services__number {
		font-size: 30px;
	}

	.services__pic svg {
		width: 35px;
	}

	.services__list {
		margin-top: 21px;
	}
}

@media screen and (max-width: 768px) {
	.services {
		padding-bottom: 30px;
	}

	.services__row {
		margin-top: 24px;
		gap: 20px;
		flex-direction: column;
	}

	.services__list {
		gap: 12px;
	}

	.services__description {
		font-size: 12px;
	}
}

/* banner */
.banner {
	background-color: #12141c;
	background-image: url(../images/bg-banner.svg);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 81%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	margin-top: 50px;
	padding: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.banner {
		padding: 45px;
	}
}

@media screen and (max-width: 992px) {
	.banner {
		background-size: cover;
	}
}

@media screen and (max-width: 768px) {
	.banner {
		background-size: 81%;
		margin-top: 30px;
		padding: 19px 24px 26px;
		gap: 20px;
		flex-direction: column;
	}

	.banner .btn {
		padding-right: 16px;
		padding-left: 21px;
		font-size: 17px;
		gap: 5px;
	}
}

/* section contact */
.contact {
	padding-bottom: 109px;
}

.contact__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 61px;
}

.contact__item-l {
	flex: 0 0 42%;
	width: 100%;
	padding-top: 79px;
}

.contact__item-r {
	flex: 0 0 51%;
	padding: 54px 55px 23px;
	position: relative;
	width: 100%;
}

.contact__item-r::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image: url(../images/bg-form.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
	border-radius: 20px;
}

.contact__item-r::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(18, 20, 28, 0.8);
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
}

.contact .title {
	margin: 28px 0;
}

.contact .description {
	max-width: 530px;

	max-width: 100%;
}

.without-form .contact__item-l {
	flex-basis: 100%;
}

.without-form .description {
	max-width: 100%;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.contact {
		padding-bottom: 80px;
	}
}

@media screen and (max-width: 992px) {
	.contact__row {
		gap: 30px;
	}

	.contact__item-r {
		padding: 23px 23px 26px;
	}
}

@media screen and (max-width: 768px) {
	.contact {
		padding-bottom: 60px;
	}

	.contact__row {
		flex-direction: column;
	}

	.contact__item-l {
		padding-top: 0;
	}

	.contact .title {
		margin: 10px 0;
	}
}

/* form */

.form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	max-width: 800px;
}

.form-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.form-item {
	position: relative;
	padding-bottom: 33px;
	width: 100%;
}

.form-label {
	font-weight: 600;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 1.9px;
	text-transform: uppercase;
	display: block;
}

.form-control {
	background-color: transparent;
	display: block;
	width: 100%;
	padding: 6px 0 12px;
	border-radius: 0px;
	font-family: inherit;
	font-weight: inherit;
	color: #fff;
	text-align: left;
	text-decoration: none;
	box-sizing: border-box;
	font-size: 16px;
	outline: none;
	transition: all 0.3s linear;
	border-bottom: 1px solid #3f424d;
}

textarea.form-control {
	height: 130px;
	resize: none;
}

.has-error {
	margin-bottom: 21px;
}

.has-error .form-control {
	border-color: #b10c4b;
}

label.error {
	font-family: inherit;
	display: block;
	font-size: 16px;
	color: #b10c4b;
	left: 0;
	bottom: 3px;
	position: absolute;
	line-height: 1;
}

.form-captcha {
	position: relative;
}

.form-captcha .form-error {
	bottom: -18px;
}

.form .btn {
	max-width: 100%;
	width: 100%;
}

.grecaptcha-badge {
	z-index: -10000;
	opacity: 0 !important;
}

@media screen and (max-width: 1309px) {
}

@media screen and (max-width: 768px) {
	.form-error {
		font-size: 12px;
		bottom: 14px;
	}
}

/* popup */
.popup {
	position: fixed;
	z-index: 900;
	display: none;
	background: #08090c;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.popup__content {
	width: 100%;
	max-width: 1462px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

.popup__wrap-btn {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	margin-top: 23px;
}

.popup__content .popup__wrap-btn {
	margin-top: 0;
	flex-direction: column-reverse;
	gap: 20px;
}

.popup__wrap-btn .btn {
	min-width: 112px;
	max-width: 100%;
	padding: 10px 45px;
}

.popup__title {
	padding-bottom: 20px;
}

.popup .title {
	width: 100%;
}

.popup--cookies {
	left: 0;
	right: 0;
	bottom: 0;
	padding: 52px 45px 52px;
}

.popup--error,
.popup--thanks {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 537px;
	width: calc(100% - 40px);
	border-radius: 20px;
	padding: 34px 42px 43px;
}

.popup-thanks-show {
	overflow: hidden;
}

.popup-thanks-show::after {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background: #12141c;
	opacity: 0.6;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
	.popup--cookies {
		padding: 49px 45px 58px;
	}
}

@media screen and (max-width: 768px) {
	.popup__title {
		padding-bottom: 15px;
	}

	.popup__text {
		font-size: 14px;
	}

	.popup--cookies {
		padding: 22px 20px 29px;
	}

	.popup--error,
	.popup--thanks {
		padding: 23px 26px 29px;
	}

	.popup__content {
		flex-direction: column;
		gap: 30px;
	}

	.popup__content .popup__wrap-btn {
		flex-direction: row;
	}
}

@media screen and (max-width: 520px) {
}

/* section terms */
.terms {
	padding: 110px 0 100px;
}

.terms h1,
.terms h2,
.terms h3 {
	font-weight: 900;
	color: #fff;
	font-family: var(--font-Plus-Jakarta-Sans);
}

.terms h1 {
	margin: 0 0 40px;
	font-size: 50px;
}

.terms h2 {
	margin: 40px 0 18px;
	font-size: 32px;
}

.terms h3 {
	margin: 30px 0 10px;
	font-size: 24px;
}

.terms p {
	margin-bottom: 16px;
}

.terms .update {
	color: #fff;
}

.terms a:not(.btn) {
	white-space: nowrap;
}

.terms ul {
	margin-bottom: 20px;
	margin-top: 23px;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
}

@media screen and (max-width: 768px) {
	.terms {
		padding: 82px 0 30px;
	}

	.terms h1 {
		margin: 0 0 25px;
		font-size: 30px;
	}

	.terms h2 {
		font-size: 22px;
	}

	.terms h3 {
		font-size: 20px;
	}
}

/* page 404 */
.main--404 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-404 {
	text-align: center;
	padding: 123px 0 132px;
	width: 100%;
}

.section-404__title {
	padding-bottom: 25px;
}

.section-404 .btn {
	margin: 51px auto 0;
}

@media screen and ((max-height: 750px) and (min-width: 768px) and (orientation: landscape)), (max-width: 1440px) {
}

/* roller */
.roller {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	z-index: 200;
}

.roller div {
	-webkit-animation: roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	animation: roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	-webkit-transform-origin: 40px 40px;
	-ms-transform-origin: 40px 40px;
	transform-origin: 40px 40px;
}

.roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d4ff3f;
	margin: -4px 0 0 -4px;
}

.roller div:nth-child(1) {
	-webkit-animation-delay: -0.036s;
	animation-delay: -0.036s;
}

.roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}

.roller div:nth-child(2) {
	-webkit-animation-delay: -0.072s;
	animation-delay: -0.072s;
}

.roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}

.roller div:nth-child(3) {
	-webkit-animation-delay: -0.108s;
	animation-delay: -0.108s;
}

.roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}

.roller div:nth-child(4) {
	-webkit-animation-delay: -0.144s;
	animation-delay: -0.144s;
}

.roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}

.roller div:nth-child(5) {
	-webkit-animation-delay: -0.18s;
	animation-delay: -0.18s;
}

.roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}

.roller div:nth-child(6) {
	-webkit-animation-delay: -0.216s;
	animation-delay: -0.216s;
}

.roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}

.roller div:nth-child(7) {
	-webkit-animation-delay: -0.252s;
	animation-delay: -0.252s;
}

.roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}

.roller div:nth-child(8) {
	-webkit-animation-delay: -0.288s;
	animation-delay: -0.288s;
}

.roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}

@-webkit-keyframes roller {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes roller {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* anim */
/* anim anim-hidden */
.anim {
	-webkit-transition:
		opacity 0.5s ease,
		-webkit-transform 0.25s linear;
	transition:
		opacity 0.5s ease,
		-webkit-transform 0.25s linear;
	-o-transition:
		transform 0.25s linear,
		opacity 0.5s ease;
	transition:
		transform 0.25s linear,
		opacity 0.5s ease;
	transition:
		transform 0.25s linear,
		opacity 0.5s ease,
		-webkit-transform 0.25s linear;
	opacity: 1;
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	will-change: transform;
}

.anim.anim-hidden {
	opacity: 0;
}

.anim.anim-not-delay {
	-webkit-transition-delay: 0s !important;
	-o-transition-delay: 0s !important;
	transition-delay: 0s !important;
}

.anim.not-in-view {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

@media screen and (max-width: 768px) {
	.anim.not-in-view {
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
}
