* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-size: 16px;
	/* line-height: 1.5rem; */
	font-family: 'Coco Gothic', sans-serif;
	font-weight: 400;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
}
a {
	text-decoration: none;
}
.container {
	padding: 0 30px;
	max-width: 1500px;
	margin: 0 auto;
}
img {
	max-width: 100%;
}
button,
input,
select,
textarea {
	outline: 0;
	border: 0;
}
textarea {
	resize: none;
	height: 125px;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}
input:-internal-autofill-selected {
	background-color: transparent !important;
}
h2,
h1 {
	font-family: Colus;
	font-weight: 400;
	font-size: 32px;
	line-height: 134%;
	color: #1c242e;
	letter-spacing: 0.005em;
}
h3 {
	font-family: Colus;
	color: #1c242e;
	font-size: 24px;
	line-height: 134%;
	letter-spacing: 0.005em;
}
.mt-160 {
	margin-top: 160px;
}
.mt-180 {
	margin-top: 180px;
}
.mt-120 {
	margin-top: 120px;
}
.mb-120 {
	margin-bottom: 120px;
}
.btn-dark,
.btn-light {
	font-size: 18px;
	text-align: center;
	padding: 14px 24px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
	font-weight: 400;
}
.btn-dark {
	background-color: #1c242e;
	color: #fff;
}
.btn-dark:hover {
	background-color: #363d47;
}
.btn-light {
	background-color: #f5f6f6;
	color: #363d47;
}
.btn-light:hover {
	background-color: #ecedee;
}
.custom-label {
	position: relative;
	display: block;
}
.custom-label.dark .custom-input {
	background-color: #363d47;
	border-color: transparent;
}
.custom-label.dark .custom-input:hover {
	background-color: #424a54;
}
.custom-label.dark .custom-input:focus {
	background-color: #fff;
}
.custom-label.dark .custom-input.blur {
	color: #f5f6f6;
}
.custom-label.dark .custom-placeholder {
	color: #949ca6;
}
.custom-input {
	padding: 20px 12px 6px 16px;
	font-size: 18px;
	line-height: inherit;
	color: #363d47;
	border: 1px solid #d8dbde;
	width: 100%;
	-webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
	-o-transition: border-color 0.3s ease, background-color 0.3s ease;
	transition: border-color 0.3s ease, background-color 0.3s ease;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
	font-weight: 400;
	display: block;
}
.custom-input:hover {
	border-color: #b5bac1;
}
.custom-input:focus {
	border-color: #80828c;
}
.custom-placeholder {
	color: #b5bac1;
	display: block;
	font-size: 18px;
	line-height: 100%;
	position: absolute;
	left: 17px;
	top: calc(50% - 6px);
	pointer-events: none;
	-webkit-transition: top 0.3s ease, font-size 0.3s ease;
	-o-transition: top 0.3s ease, font-size 0.3s ease;
	transition: top 0.3s ease, font-size 0.3s ease;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
}
.custom-input.focused + .custom-placeholder,
.custom-input:focus + .custom-placeholder {
	font-size: 12px;
	top: 7px;
}
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 12px;
	-webkit-transform: scale(0.6);
	-ms-transform: scale(0.6);
	transform: scale(0.6);
	margin: 2px auto -1px;
	float: none;
	will-change: transform;
}
.lds-ellipsis div {
	position: absolute;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	-webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
	will-change: transform;
}
.lds-ellipsis div:nth-child(1) {
	left: 6px;
	-webkit-animation: lds-ellipsis1 0.6s infinite;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 6px;
	-webkit-animation: lds-ellipsis2 0.6s infinite;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 26px;
	-webkit-animation: lds-ellipsis2 0.6s infinite;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 45px;
	-webkit-animation: lds-ellipsis3 0.6s infinite;
	animation: lds-ellipsis3 0.6s infinite;
}
@-webkit-keyframes lds-ellipsis1 {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes lds-ellipsis1 {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes lds-ellipsis3 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}
@-webkit-keyframes lds-ellipsis2 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(19px, 0);
		transform: translate(19px, 0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(19px, 0);
		transform: translate(19px, 0);
	}
}
.validate-error {
	border-color: #f41818 !important;
}
.validate-message {
	font-size: 12px;
	line-height: 16px;
	color: #f41818;
	margin: -12px 0 14px;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
}
textarea + .custom-placeholder {
	top: 14px;
}
.form-agreement {
	margin: 24px 0 0;
	font-size: 14px;
	line-height: 19px;
	color: #949ca6;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
}
.form-agreement.dark {
	color: rgba(255, 255, 255, 0.32);
}
.form-agreement.dark a:hover {
	color: rgba(255, 255, 255, 0.507);
}
.form-agreement a {
	text-decoration: underline;
	line-height: inherit;
	font-size: inherit;
	color: inherit;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.form-agreement a:hover {
	color: #80828c;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: auto;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 40px 0 0;
	padding: 0 40px;
}
.swiper-pagination-bullet {
	max-width: 140px;
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.32);
	border-radius: 4px;
	opacity: 1;
	overflow: hidden;
	display: block;
}
.swiper-pagination-bullet-active.swiper-pagination-bullet:after {
	content: '';
	height: 100%;
	-webkit-animation: increase 5s linear;
	animation: increase 5s linear;
	background-color: #fff;
	display: block;
}
.swiper-pagination {
	z-index: 2;
}
.swiper-slide {
	position: relative;
}
.btn-light .lds-ellipsis div {
	background-color: #363d47;
}
.sticky-button {
	position: fixed;
	width: 140px;
	height: 140px;
	bottom: 40px;
	right: 80px;
	background: #1c242e;
	border-radius: 100px;
	font-weight: 700;
	font-size: 12px;
	line-height: 167%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	-webkit-font-feature-settings: 'salt' on;
	font-feature-settings: 'salt' on;
	color: #fff;
	padding: 0 24px;
	cursor: pointer;
	z-index: 5;
}
.form-additional {
	display: none;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes increase {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@keyframes increase {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@media (max-width: 1440px) {
	.container {
		padding: 0 20px;
	}
	h2 {
		font-size: 28px;
	}
}
@media (max-width: 1200px) {
	.mt-160 {
		margin-top: 100px;
	}
	.mt-180 {
		margin-top: 120px;
	}
	.mb-120 {
		margin-bottom: 80px;
	}
	.sticky-button {
		width: 120px;
		height: 120px;
		bottom: 20px;
		right: 40px;
	}
}
@media (max-width: 1000px) {
	h2 {
		font-size: 24px;
	}
}
@media (max-width: 600px) {
	.container {
		padding: 0 16px;
	}
	.mt-180 {
		margin-top: 100px;
	}
	.mt-120 {
		margin-top: 100px;
	}
	h2 {
		font-size: 20px;
	}
	.swiper-horizontal > .swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		margin: 24px 0 0;
		padding: 0 12px 0;
	}
	.form-agreement {
		margin: 20px 0 0;
	}
	.sticky-button {
		display: none;
	}
}


  