@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
			url('../fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
			url('../fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
			url('../fonts/Montserrat-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Helvetica Neue';
	src: url('../fonts/HelveticaNeue-CondensedBlack.woff2') format('woff2'),
			url('../fonts/HelveticaNeue-CondensedBlack.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}


* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	/* scroll-behavior: smooth; */
}
body {
	color: #DEDEDE;
	background: #0F0F0F;
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.wrapper {
	margin: 0 auto;
	overflow: hidden;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 11px 60px;
	background: #FFFFFF0A;
	backdrop-filter: blur(30px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}
.logo img {
	display: block;
}
.menu {
	display: flex;
	align-items: center;
	padding: 0 20px;
	transition: .5s;
}
.menu-link {
	text-transform: uppercase;
	background: #FFFFFF0D;
	border: 1px solid #FFFFFF1C;
	backdrop-filter: blur(20px);
	text-decoration: none;
	font-weight: 600;
	font-size: 12px;
	padding: 8px 15px;
	min-width: 130px;
	height: 38px;
	text-align: center;
	color: #fff;
	margin: 0 6px;
	border-radius: 100px;
	transition: .3s;
	position: relative;
}
.menu-link:hover {
	background: #FFFFFF33;
	border: 1px solid #FFFFFF4D;
}
.login {
	text-transform: uppercase;
	text-decoration: none;
	background: #2694FF;
	border: 1px solid #2694FF;
	backdrop-filter: blur(20px);
	font-size: 12px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 38px;
	padding: 8px 15px;
	color: #fff;
	border-radius: 100px;
	cursor: pointer;
	transition: .3s;
}
.login svg {
	display: none;
}
.login:hover {
	background: #2663FF;
	border: 1px solid #FFFFFF4D;
}
.menu .login {
	display: none;
}
.btn-menu {
	width: 60px;
	height: 36px;
	background: #FFFFFF1A;
	border: 1px solid #FFFFFF29;
	backdrop-filter: blur(20px);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 8px;
	border-radius: 100px;
	cursor: pointer;
	display: none;
}
.home {
	position: relative;
	background: url(../img/mountains.jpg) center top/cover no-repeat fixed;
	overflow: hidden;
	height: 100vh;
}
.thunder {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}
.circles{
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.viking {
	position: absolute;
	width: 100%;
	height: 100%;
	max-height: 98%;
	object-fit: cover;
	bottom: 0;
}

.home .line {
	display: flex;
	justify-content: center;
	width: 100vw;
}
.word {
	font-family: 'Helvetica Neue';
	font-size: 160px;
	line-height: 80%;
	font-weight: 900;
	letter-spacing: -0.03em;
	margin: 0 20px;
}
.home .description {
	font-size: 20px;
	line-height: 100%;
	text-align: center;
	margin: 60px auto;
	max-width: 570px;
}
.home-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
}
.become {
	background: #E86800;
	width: 240px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -0.03em;
	border: none;
	color: #eee;
	border: 1px solid #E86800;
	cursor: pointer;
	text-decoration: none;
}
.become svg {
	margin-left: 8px;
}
.become:hover {
	border: 1px solid #FFFFFF4D;
	background: #E83E00;
}

.big-title {
	font-family: 'Helvetica Neue';
	font-weight: 900;
	font-size: 80px;
	line-height: 80%;
	text-transform: uppercase;
	letter-spacing: -0.03em;
}

.why {
	padding: 30px 15px;
	background: linear-gradient(180deg, #09132A 0%, #223051 100%),
radial-gradient(41.44% 222.91% at 50% 50%, rgba(0, 200, 255, 0.1) 0%, rgba(45, 0, 209, 0.1) 100%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.why .big-title {
	margin-bottom: 60px;
}
.why .left {
	width: 50%;
	max-width: 570px;
	margin-right: 30px;
}
.why .left p {
	margin-bottom: 16px;
}
.why .right {
	width: 50%;
	max-width: 570px;
	margin-left: 30px;
}
.why .item {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
radial-gradient(48.18% 99.29% at 49.92% 55.17%, rgba(0, 221, 250, 0.2) 0%, rgba(163, 0, 250, 0.018) 100%);
	border: 1px solid #FFFFFF26;
	backdrop-filter: blur(20px);
	border-radius: 30px;
	padding: 55px 60px;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 300;
	min-height: 240px;
}
.why .item:last-child {
	margin-bottom: 0;
}

.policies {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.policies .title {
	width: 100%;
	background: #09132A;
	font-family: 'Helvetica Neue';
	font-weight: 900;
	font-size: 80px;
	line-height: 80%;
	padding: 40px 15px;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	text-align: center;
}
.policies .content {
	width: 100%;
	padding: 30px 15px;
	background: #09132A url(../img/policies.png) center/cover no-repeat fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}
.policies .content .left,
.policies .content .right {
	width: 50%;
	max-width: 830px;
	background: #FFFFFF03;
	border: 1px solid #FFFFFF1A;
	backdrop-filter: blur(30px);
	border-radius: 30px;
	padding: 110px 20px;
}
.policies .content .left {
	margin-right: 30px;
}
.policies .content .right {
	margin-left: 30px;
}
.policies .content .left h3,
.policies .content .right h3 {
	font-family: 'Helvetica Neue';
	font-weight: 900;
	font-size: 40px;
	line-height: 80%;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}
.policies .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	max-width: 430px;
	margin: 0 auto;;
}
.policies .item {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	margin: 0 4px 8px;
}
.policies .item img {
	margin-right: 8px;
}

.advantages {
	background: linear-gradient(180deg, #09132A 0%, #223051 100%),
radial-gradient(41.44% 222.91% at 50% 50%, rgba(0, 200, 255, 0.1) 0%, rgba(45, 0, 209, 0.1) 100%);
	padding: 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.advantages .big-title {
	padding-left: 15px;
}
.advantages .content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.advantages .description {
	width: 90%;
	max-width: 750px;
	padding: 0 15px 0 60px;
}
.advantages .description p {
}
.advantages .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-top: 60px;
}

.advantages .item {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
radial-gradient(48.18% 99.29% at 49.92% 55.17%, rgba(0, 221, 250, 0.2) 0%, rgba(163, 0, 250, 0.018) 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	width: calc(50% - 30px);
	height: 200px;
	padding: 20px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 15px;
	text-align: center;
}
.advantages .item .title {
	font-family: 'Helvetica Neue';
	font-weight: 900;
	font-size: 28px;
	line-height: 80%;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin: 20px 0 6px;
	display: flex;
	align-items: center;
}
.advantages .item .desc {
	font-size: 14px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}




.commissions {
	padding: 30px 15px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #09132A url(../img/miolner.png) center/cover no-repeat fixed;
}

.commissions .content {
	width: 50%;
	max-width: 640px;
	margin-right: 30px;
}

.commissions .items {
	width: 50%;
	max-width: 500px;
	margin-left: 30px;
}

.commissions .description p {
	margin: 30px 0;
}
.commissions .terms {
	width: 200px;
	height: 45px;
	background: #2694FF;
	border:1px solid #2694FF;
	border-radius: 100px;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	color: #fff;
	transition: .3s;
	text-decoration: none;
}
.commissions .terms:hover {
	background: #2663FF;
	border: 1px solid #FFFFFF4D;
}

.commissions .item {
	background: #FFFFFF1A;
	border: 1px solid #FFFFFF26;
	backdrop-filter: blur(20px);
	border-radius: 30px;
	text-align: center;
	margin-bottom: 30px;
}
.commissions .item .title {
	font-family: 'Helvetica Neue';
	font-weight: 900;
	font-size: 60px;
	line-height: 80%;
	text-transform: uppercase;
	padding: 17px 20px 8px;
	letter-spacing: -0.03em;
}
.commissions .item .desc {
	font-weight: 500;
	font-size: 14px;
	padding: 0 20px 15px;
	letter-spacing: -0.03em;
}
.commissions .item .bottom {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
radial-gradient(48.18% 259.34% at 49.92% 55.17%, rgba(0, 255, 196, 0.3) 0%, rgba(0, 96, 250, 0.276) 100%);
	border-radius: 0 0 30px 30px;
	padding: 18px;
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: -0.03em;
}

.managers {
	background: #09132A;
	padding: 30px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.managers .big-title {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.managers .content {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	max-width: 1200px;
	margin: 40px auto 0;
}
.managers .left {
	width: 50%;
	max-width: 580px;
	margin-right: 20px;
}
.managers .item {
	background: #111F3E;
	border-top: 1px solid #FFFFFF1A;
	box-shadow: 0px 4px 30px 0px #00000040;
	border-radius: 30px;
	margin-bottom: 15px;
	padding: 28px 24px;
	display: flex;
	align-items: center;
}
.managers .item > img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.managers .item:last-child {
	margin-bottom: 0;
}
.managers .item .info {
	margin: 0 24px;
}
.managers .item .info .name {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 80%;
	letter-spacing: -0.03em;
}
.managers .item .info .prof {
	font-size: 14px;
	font-weight: 600;
	margin-top: 2px;
}
.managers .item .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2694FF;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	text-decoration: none;
	color:#fff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px;
	width: 144px;
	height: 46px;
	margin-left: auto;
	transition: .3s;
}
.managers .item .btn img {
	margin-right: 8px;
}
.managers .item .btn:hover {
	background: #2663FF;
}
.managers .right {
	width: 50%;
	max-width: 580px;
	margin-left: 20px;
	border: 1px solid #FFFFFF1A;
	box-shadow: 0px 4px 70px 0px #0000004D;
	border-radius: 30px;
	padding: 24px;
}
.managers .right .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Helvetica Neue';
	font-weight: 900;
	font-size: 30px;
	line-height: 130%;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	margin-bottom: 23px;
}
.managers .right .form {
	display: flex;
	flex-direction: column;
}
.managers .right .form input,
.managers .right .form textarea {
	border: 1px solid #152344;
	width: 100%;
	height: 43px;
	border-radius: 12px;
	padding: 0 15px;
	font-size: 14px;
	color: #dedede;
	font-weight: 500;
	background: #121F3C;
	margin-bottom: 16px;
}
.managers .right .form textarea {
	padding: 15px;
	height: 140px;
	resize: none;
}
.managers .right .form input::placeholder,
.managers .right .form textarea::placeholder {
	color: #dedede;
}
.managers .right .form input:focus,
.managers .right .form textarea:focus {
	background: #1f3159;
	outline: none;
}
.managers .right .form button {
	background: #2694FF;
	border-radius: 100px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 166px;
	height: 46px;
	padding: 10px;
	cursor: pointer;
	margin: 0 auto;
	transition: .3s;
}
.managers .right .form button:hover {
	background: #2663FF;
}
.managers .right .form-status {
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 10px;
}

.partners {
	background: linear-gradient(0deg, #09132A 0%, #223051 100%),
radial-gradient(41.44% 222.91% at 50% 50%, rgba(0, 200, 255, 0.1) 0%, rgba(45, 0, 209, 0.1) 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 15px;
}
.partners .content {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.partners .big-title {
	margin-right: 50px;
	margin-top: 20px;
}
.partners .slider-container {
	margin-left: 50px;
	width: 90%;
	max-width: 775px;
}
.partners .slider .swiper-slide {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
radial-gradient(48.18% 99.29% at 49.92% 55.17%, rgba(0, 221, 250, 0.2) 0%, rgba(163, 0, 250, 0.018) 100%);
	border: 1px solid #415179;
	border-radius: 30px;
	padding: 30px;
	display: flex;
	align-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	height: auto;
}
.partners .slider .swiper-slide img {
	height: 55px;
	max-width: 100%;
}
.partners .slider .swiper-slide .title {
	text-transform: uppercase;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
}
.partners .slider .swiper-slide .desc {
	width: 100%;
	font-size: 14px;
	color: #fff;
	margin-top: 20px;
}
.partners .slider {
	padding-bottom: 60px;
}

.partners .slider-container .pagination {
	overflow: hidden;
	position: relative;
	margin: 30px auto 0;
	width: 85px;
	height: 20px;
}
.partners .slider-container .custom-pagination { 
	position: absolute;
	display: flex; 
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease;
}
.partners .slider-container .custom-bullet {
	width: 8px;
	height: 8px;
	background: #4A537D;
	border-radius: 50%;
	margin: 0 4px;
	transition: .3s;
	cursor: pointer;
}
.partners .slider-container .custom-bullet.active {
	width: 12px;
	height: 12px;
	background: linear-gradient(180deg, #9FAECF 0%, #3F5075 100%);
}



.about {
	background: url("../img/valhalla.png") center/cover no-repeat fixed;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 30px 0 0;
}
.about .content {
	flex-grow: 1;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 15px;
}
.about .text {
	width: 80%;
	max-width: 780px;
	padding: 0 15px 30px;
}
.about .content .description {
	margin: 40px 0;
	font-size: 16px;
	font-weight: 300;
}
.about .content .description p {
	margin-bottom: 20px;
}

.contacts {
	background: #FFFFFF0A;
	border: 1px solid #FFFFFF1A;
	backdrop-filter: blur(20px);
	border-radius: 100px;
	text-decoration: none;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 45px;
	padding: 5px;
	margin-right: 5px;
	transition: .3s;
}
.contacts:hover {
	background: #FFFFFF33;
	border: 1px solid #FFFFFF4D;
	backdrop-filter: blur(20px);
}
.start {
	background: #E86800;
	border: 1px solid#E86800;
	border-radius: 100px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 45px;
	padding: 5px;
	transition: .3s;
	cursor: pointer;
}
.start:hover {
	background: #E83E00;
	border: 1px solid #FFFFFF4D;
	backdrop-filter: blur(20px);
}


.footer {
	width: 100%;
	background: #091226;
	backdrop-filter: blur(30px);
	padding: 50px 15px;
	display: flex;
	justify-content: center;
}
.footer .item {
	text-align: center;
}
.footer .socials {
	margin: 0 160px;
}
.footer .item h6 {
	color: #6A7180;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
}
.footer .contact-us a {
	color: #A9ABAF;
	text-decoration: none;
	font-size: 16px;
	margin-top: 10px;
	display: inline-block;
}
.footer .socials a {
	display: inline-block;
	margin: 0 4px;
}

.mask {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #09132ACC;
	z-index: 10;
	padding: 20px;
	display: none;
}
.modal {
	position: fixed;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #00000033;
	border-radius: 20px;
	border: 1px solid #FFFFFF17;
	backdrop-filter: blur(50px);
	box-shadow: 0px 4px 50px 0px #09132A87;
	padding: 20px;
	max-width: 1200px;
	z-index: 11;
	display: none;
}
.modal-title {
	font-size: 40px;
	letter-spacing: -0.03em;
	font-family: 'Helvetica Neue';
	line-height: 130%;
	font-weight: 900;
	text-transform: uppercase;
}
.modal .close {
	position: absolute;
	top: 26px;
	right: 30px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #FFFFFF3D;
	background: none;
	border: none;
	transition: .3s;
}
.modal .close:hover {
	color: #FFFFFF99;
}
.modal .content {
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	scrollbar-color: #fff transparent;
	scrollbar-width: thin;
}
.modal.modal-terms .content {
	padding-right: 10px;
}
.modal .content::-webkit-scrollbar {
	width: 4px;
}
.modal .content::-webkit-scrollbar-track {
	border-radius: 4px;
	background: none transparent;
}
.modal .content::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}
.modal .content::-webkit-scrollbar-thumb:hover {
	background: #fff;
}
.modal .content h1 {
	font-size: 26px;
	margin: 20px 0;
}
.modal .content p {
	margin: 0 0 10px;
	font-size: 14px;
}
.modal .content p a {
	color: #fff;
}

.modal-sign,
.modal-reset {
	max-width: 620px;
}
.forms-btns {
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
}
.forms-btn {
	width: calc(50% - 5px);
	height: 48px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #25314A;
	border: 1px solid #FFFFFF1A;
	border-radius: 15px;
	color: #B7B7B7;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
}
.forms-btn:hover,
.forms-btn.active {
	background: #3A4868;
	border: 1px solid #FFFFFF4D;
}
.modal .form {
	margin: 30px 0 0;
	display: none;
}
.modal .form.active {
	display: block;
}
.modal .form input,
.modal .form textarea {
	border: 1px solid #FFFFFF1A;
	width: 100%;
	height: 48px;
	border-radius: 15px;
	padding: 0 20px;
	color: #B7B7B7;
	font-size: 14px;
	font-weight: 500;
	background: none;
	font-family: 'Montserrat', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.modal .form textarea {
	resize: none;
	height: 120px;
	padding: 20px;
	font-size: 14px;
	font-weight: 500;
}
.modal .form-field {
	margin-bottom: 5px;
}
.modal .form .error {
	color: #ff4a4a;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	padding-left: 10px;
}
.modal .form.form-login .error {
	margin-bottom: 5px;
}
.modal .form input::placeholder {
	color: #B7B7B7;
}
.modal .form input:hover {
	border: 1px solid #FFFFFF4D;
}
.modal .form input:focus {
	border: 1px solid #FFFFFF4D;
	outline: none;
}
.modal .form .checkbox {
	position: relative;
	padding-left: 30px;
	top: 15px;
	cursor: pointer;
	font-size: 13px;
}
.modal .form .checkbox .checkbox-input {
	display: inline-block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 5px;
	background: transparent;
	border: 2px solid #fff;
}
.modal .form .checkbox .checkbox-input::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	transform: scale(0);
	top: 0;
	left: 0;
	background: #E86800;
	transition: transform .2s ease;
}
.modal .form .checkbox input:checked + .checkbox-input::after {
	transform: scale(1);
}
.modal .form .checkbox input {
	display: none;
}
.modal .form .checkbox a {
	text-decoration: underline;
}
.modal .form button {
	background: #E86800;
	width: 200px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	border: 1px solid #E86800;
	border-radius: 100px;
	margin: 30px auto 20px;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	transition: .3s;
}
.modal .form button:hover {
	background: #E83E00;
	border: 1px solid #FFFFFF4D;
}
.modal-terms {
	z-index: 12;
}
.modal .form .links {
	text-align: center;
	color: #fff;
	font-size: 14px;
}
.modal .form .links a {
	text-decoration: none;
	font-weight: 500;
	color: #fff;
}
.modal .form.form-reset {
	display: block;
}

.modal .success {
    padding: 5px 17px;
    border-radius: 25px;
    text-align: center;
}
.modal .success h4 {
    margin: 10px 0 15px;
    font-size: 24px;
}

.wrapper section {
	min-height: calc(100vh - 60px);
}

