.modal {
	--bs-modal-zindex: 1055;
	--bs-modal-width: 500px;
	--bs-modal-padding: 1rem;
	--bs-modal-margin: .5rem;
	--bs-modal-color: ;
	--bs-modal-bg: #fff;
	--bs-modal-border-color: var(--bs-border-color-translucent);
	--bs-modal-border-width: 1px;
	--bs-modal-border-radius: .5rem;
	--bs-modal-box-shadow: 0 .125rem .25rem #00000013;
	--bs-modal-inner-border-radius: calc(.5rem - 1px);
	--bs-modal-header-padding-x: 1rem;
	--bs-modal-header-padding-y: 1rem;
	--bs-modal-header-padding: 1rem 1rem;
	--bs-modal-header-border-color: var(--bs-border-color);
	--bs-modal-header-border-width: 1px;
	--bs-modal-title-line-height: 1.5;
	--bs-modal-footer-gap: .5rem;
	--bs-modal-footer-bg: ;
	--bs-modal-footer-border-color: var(--bs-border-color);
	--bs-modal-footer-border-width: 1px;
	z-index: var(--bs-modal-zindex);
	width: 100%;
	height: 100%;
	outline: 0;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto
}

.modal-dialog {
	width: auto;
	margin: var(--bs-modal-margin);
	pointer-events: none;
	position: relative
}

.modal.fade .modal-dialog {
	transition: transform .3s ease-out;
	transform: translateY(-50px)
}

@media (prefers-reduced-motion:reduce) {
	.modal.fade .modal-dialog {
		transition: none
	}
}

.modal.show .modal-dialog {
	transform: none
}

.modal.modal-static .modal-dialog {
	transform: scale(1.02)
}

.modal-dialog-scrollable {
	height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-dialog-scrollable .modal-content {
	max-height: 100%;
	overflow: hidden
}

.modal-dialog-scrollable .modal-body {
	overflow-y: auto
}

.modal-dialog-centered {
	min-height: calc(100% - var(--bs-modal-margin)*2);
	align-items: center;
	display: flex
}

.modal-content {
	width: 100%;
	color: var(--bs-modal-color);
	pointer-events: auto;
	background-color: var(--bs-modal-bg);
	border: var(--bs-modal-border-width)solid var(--bs-modal-border-color);
	border-radius: var(--bs-modal-border-radius);
	background-clip: padding-box;
	outline: 0;
	flex-direction: column;
	display: flex;
	position: relative
}

.modal-backdrop {
	--bs-backdrop-zindex: 1050;
	--bs-backdrop-bg: #000;
	--bs-backdrop-opacity: .5;
	z-index: var(--bs-backdrop-zindex);
	width: 100vw;
	height: 100vh;
	background-color: var(--bs-backdrop-bg);
	position: fixed;
	top: 0;
	left: 0
}

.modal-backdrop.fade {
	opacity: 0
}

.modal-backdrop.show {
	opacity: var(--bs-backdrop-opacity)
}

.modal-header {
	padding: var(--bs-modal-header-padding);
	border-bottom: var(--bs-modal-header-border-width)solid var(--bs-modal-header-border-color);
	border-top-left-radius: var(--bs-modal-inner-border-radius);
	border-top-right-radius: var(--bs-modal-inner-border-radius);
	flex-shrink: 0;
	justify-content: space-between;
	align-items: center;
	display: flex
}

.modal-header .btn-close {
	padding: calc(var(--bs-modal-header-padding-y)*.5)calc(var(--bs-modal-header-padding-x)*.5);
	margin: calc(-.5*var(--bs-modal-header-padding-y))calc(-.5*var(--bs-modal-header-padding-x))calc(-.5*var(--bs-modal-header-padding-y))auto
}

.modal-title {
	line-height: var(--bs-modal-title-line-height);
	margin-bottom: 0
}

.modal-body {
	padding: var(--bs-modal-padding);
	flex: auto;
	position: relative
}

.modal-footer {
	padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);
	background-color: var(--bs-modal-footer-bg);
	border-top: var(--bs-modal-footer-border-width)solid var(--bs-modal-footer-border-color);
	border-bottom-right-radius: var(--bs-modal-inner-border-radius);
	border-bottom-left-radius: var(--bs-modal-inner-border-radius);
	flex-wrap: wrap;
	flex-shrink: 0;
	justify-content: flex-end;
	align-items: center;
	display: flex
}

.modal-footer>* {
	margin: calc(var(--bs-modal-footer-gap)*.5)
}

@media (min-width:576px) {
	.modal {
		--bs-modal-margin: 1.75rem;
		--bs-modal-box-shadow: 0 .5rem 1rem #00000026
	}

	.modal-dialog {
		max-width: var(--bs-modal-width);
		margin-left: auto;
		margin-right: auto
	}

	.modal-sm {
		--bs-modal-width: 300px
	}
}

@media (min-width:992px) {

	.modal-lg,
	.modal-xl {
		--bs-modal-width: 800px
	}
}

@media (min-width:1200px) {
	.modal-xl {
		--bs-modal-width: 1140px
	}
}

.modal-fullscreen {
	width: 100vw;
	max-width: none;
	height: 100%;
	margin: 0
}

.modal-fullscreen .modal-content {
	height: 100%;
	border: 0;
	border-radius: 0
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
	border-radius: 0
}

.modal-fullscreen .modal-body {
	overflow-y: auto
}

@media (max-width:575.98px) {
	.modal-fullscreen-sm-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0
	}

	.modal-fullscreen-sm-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0
	}

	.modal-fullscreen-sm-down .modal-header,
	.modal-fullscreen-sm-down .modal-footer {
		border-radius: 0
	}

	.modal-fullscreen-sm-down .modal-body {
		overflow-y: auto
	}
}

@media (max-width:767.98px) {
	.modal-fullscreen-md-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0
	}

	.modal-fullscreen-md-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0
	}

	.modal-fullscreen-md-down .modal-header,
	.modal-fullscreen-md-down .modal-footer {
		border-radius: 0
	}

	.modal-fullscreen-md-down .modal-body {
		overflow-y: auto
	}
}

@media (max-width:991.98px) {
	.modal-fullscreen-lg-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0
	}

	.modal-fullscreen-lg-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0
	}

	.modal-fullscreen-lg-down .modal-header,
	.modal-fullscreen-lg-down .modal-footer {
		border-radius: 0
	}

	.modal-fullscreen-lg-down .modal-body {
		overflow-y: auto
	}
}

@media (max-width:1199.98px) {
	.modal-fullscreen-xl-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0
	}

	.modal-fullscreen-xl-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0
	}

	.modal-fullscreen-xl-down .modal-header,
	.modal-fullscreen-xl-down .modal-footer {
		border-radius: 0
	}

	.modal-fullscreen-xl-down .modal-body {
		overflow-y: auto
	}
}

@media (max-width:1399.98px) {
	.modal-fullscreen-xxl-down {
		width: 100vw;
		max-width: none;
		height: 100%;
		margin: 0
	}

	.modal-fullscreen-xxl-down .modal-content {
		height: 100%;
		border: 0;
		border-radius: 0
	}

	.modal-fullscreen-xxl-down .modal-header,
	.modal-fullscreen-xxl-down .modal-footer {
		border-radius: 0
	}

	.modal-fullscreen-xxl-down .modal-body {
		overflow-y: auto
	}
}

html,
body,
* {
	font-family: Open Sans, sans-serif
}

*,
:before,
:after {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	overflow-y: scroll
}

body {
	margin: 0
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: none
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0
}

a {
	text-decoration: none
}

img {
	width: 100%;
	vertical-align: middle
}

@font-face {
	font-family: Gotham Pro;
	src: url(GothaProLig.d383080a.woff)format("woff");
	font-weight: 100;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Gotham Pro;
	src: url(GothaProReg.d55be12a.woff)format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Gotham Pro;
	src: url(GothaProMed.98b04ca3.woff)format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Gotham Pro;
	src: url(GothaProBol.922596b1.woff)format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Gotham Pro;
	src: url(GothaProBla.096b7182.woff)format("woff");
	font-weight: 900;
	font-style: normal;
	font-display: swap
}

.label-title {
	color: #fff;
	font-size: 28px;
	font-weight: 400;
	line-height: 35px;
	display: block
}

.label-title span {
	display: block
}

@media screen and (max-width:640px) {
	.label-title span {
		margin-top: 20px;
		font-size: 21px;
		line-height: 24px
	}

	.label-title {
		font-size: 20px;
		line-height: 27px
	}
}

.label-title_decorate {
	padding-left: 49px;
	position: relative
}

@media screen and (max-width:640px) {
	.label-title_decorate {
		padding-left: 24px
	}
}

.label-title_decorate:before {
	content: "";
	height: 27px;
	width: 27px;
	background-image: url(Group.53b30cc6.svg);
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 2px;
	left: 0
}

@media screen and (max-width:640px) {
	.label-title_decorate:before {
		height: 18px;
		width: 18px;
		top: 3px
	}
}

.btn {
	color: #001c80;
	width: 267px;
	height: 55px;
	cursor: pointer;
	background: #43efce;
	border: none;
	border-radius: 27px;
	font-size: 20px;
	transition: all .3s;
	position: relative
}

.btn_small {
	width: 220px
}

.btn_end {
	margin-top: 70px;
	margin-left: 49px
}

.btn:hover,
.btn :focus {
	background: #2fdcb9
}

.btn:active {
	background: #25b598
}

.btn:disabled,
.btn[disabled] {
	color: #747474;
	cursor: not-allowed;
	background-color: #ccc
}

.btn--load {
	font-size: 0
}

.btn--load:before {
	content: "";
	height: 24px;
	width: 24px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAApklEQVRIieWVuw2DMBRFj/IZgFDTBhqWoAKxDovAMtkH0jIBBRQ8FBQgsi2HT3Kk21jva/vZ8E+kwBOogOQbCSqgFZWqTicLiW9AIXJUna6iMQl9FyUQj9YLXp3l74EuGpU+AE/D3hoOfeU5Glt0HM6W4wWAC9RLBh7mBxkAjcgfFufmoDVMsAo+cN+6iB8hFKmSiSbovEWfsHbzIpEyJv/BrufkgHS4mRfHknkLXgAAAABJRU5ErkJggg==) 50% no-repeat;
	margin: auto;
	animation: 1s linear infinite spin;
	position: absolute;
	inset: 0
}

@keyframes spin {
	to {
		transform: rotate(-360deg)
	}
}

.header {
	background-image: url(main2.13716d10.jpg);
	background-position: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 41px;
	padding-bottom: 240px;
	position: relative
}

@media screen and (max-width:640px) {
	.header {
		background-image: url(main2_mob.21865fe9.jpg);
		padding-top: 280px;
		padding-bottom: 35px
	}
}

.header-desc {
	flex-direction: column;
	display: flex
}

.link {
	color: #fffc;
	align-items: center;
	margin-bottom: 91px;
	padding-left: 17px;
	font-size: 19px;
	display: inline-flex;
	position: relative
}

@media screen and (max-width:640px) {
	.link {
		display: none
	}
}

.link:before {
	content: "";
	width: 10px;
	height: 11px;
	background-image: url(Vector1.a0f6a1bc.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 4px;
	left: 0
}

.logo {
	width: 217px;
	height: 164px
}

@media screen and (max-width:640px) {
	.logo {
		width: 80px;
		height: auto
	}
}

.title {
	padding-top: 80px;
	padding-bottom: 80px;
	font-size: 50px;
	font-weight: 400;
	line-height: 59px;
}

@media screen and (max-width:640px) {
	.title {
		padding-top: 20px;
		padding-bottom: 20px;
		font-size: 32px;
		line-height: 39px
	}

	.title span:nth-child(2) {
		display: block
	}
}

.title span:nth-child(3) {
	display: block
}

.description {
	font-size: 30px;
	font-weight: 100;
	line-height: 36px;
}

@media screen and (max-width:640px) {
	.description {
		font-size: 20px;
		font-weight: 100;
		line-height: 26px
	}
}

.checkbox {
	font-size: 23px;
	position: relative
}

@media screen and (max-width:640px) {
	.checkbox {
		font-size: 16px
	}
}

.checkbox__other {
	align-items: center;
	display: flex
}

@media screen and (max-width:640px) {
	.checkbox__other {
		flex-wrap: wrap
	}
}

.checkbox__lable {
	cursor: pointer;
	padding-left: 44px;
	font-weight: 100;
	display: block;
	position: relative
}

@media screen and (max-width:640px) {
	.checkbox__lable {
		padding-left: 35px
	}
}

.checkbox__lable:before {
	content: "";
	width: 22px;
	height: 22px;
	z-index: 1;
	background: 0 0;
	border: 2px solid #fff;
	border-radius: 50%;
	transition: background .1s linear, border .1s linear;
	position: absolute;
	top: 0;
	left: 0
}

@media screen and (max-width:640px) {
	.checkbox__lable:before {
		width: 17px;
		height: 17px
	}
}

.checkbox__lable:after {
	content: "";
	width: 10px;
	height: 10px;
	opacity: 0;
	z-index: 2;
	background: #fff;
	border-radius: 10px;
	transition: opacity .1s linear;
	position: absolute;
	top: 6px;
	left: 6px
}

@media screen and (max-width:640px) {
	.checkbox__lable:after {
		width: 7px;
		height: 7px;
		top: 5px;
		left: 5px
	}
}

.checkbox_vertical {
	width: 22px;
	font-size: 20px
}

@media screen and (max-width:640px) {
	.checkbox_vertical {
		font-size: 18px
	}
}

.checkbox_vertical .checkbox__lable {
	justify-content: center;
	padding-bottom: 44px;
	padding-left: 0;
	display: flex
}

@media screen and (max-width:640px) {
	.checkbox_vertical .checkbox__lable {
		padding-bottom: 30px
	}
}

.checkbox_vertical .checkbox__lable:before {
	top: auto;
	bottom: 0
}

@media screen and (max-width:640px) {
	.checkbox_vertical .checkbox__lable:before {
		left: 3px
	}
}

.checkbox_vertical .checkbox__lable:after {
	top: auto;
	bottom: 6px
}

@media screen and (max-width:640px) {
	.checkbox_vertical .checkbox__lable:after {
		bottom: 5px;
		left: 8px
	}
}

.checkbox__input {
	appearance: none;
	position: absolute
}

.checkbox__input:checked+.checkbox__lable:after {
	opacity: 1
}

.form-field {
	padding-left: 49px
}

@media screen and (max-width:640px) {
	.form-field {
		padding-left: 24px
	}
}

.form-field>:not(:last-child) {
	padding-bottom: 36px
}

@media screen and (max-width:640px) {
	.form-field>:not(:last-child) {
		padding-bottom: 20px
	}
}

.form-field_row {
	display: flex
}

.form-field_row>:not(:last-child) {
	margin-right: 49px
}

@media screen and (max-width:640px) {
	.form-field_row>:not(:last-child) {
		margin-right: 5px
	}
}

.details {
	color: #ffffffb3;
	font-size: 19px;
	font-weight: 100
}

@media screen and (max-width:640px) {
	.details {
		font-size: 16px
	}
}

main {
	background-image: url(bg.c393b2b9.jpg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 85px 0 165px
}

@media screen and (max-width:640px) {
	main {
		background-image: url(bg_mob.0fdf4ea8.jpg);
		padding: 30px 0
	}
}

.field-custom {
	max-width: 696px;
	position: relative
}

.field-custom__other {
	width: 100%;
	padding-left: 27px
}

@media screen and (max-width:640px) {
	.field-custom__other {
		margin-top: 25px;
		padding-left: 0
	}
}

.field-custom__input {
	height: 55px;
	width: 100%;
	color: #fff;
	background: 0 0;
	border: 2px solid #43efce;
	border-radius: 27px;
	outline: none;
	padding: 0 40px;
	font-size: 20px;
	font-weight: 100
}

.field-custom__input--textarea {
	height: auto;
	min-height: 55px;
	padding: 10px 40px
}

@media screen and (max-width:640px) {
	.field-custom__input {
		padding: 0 15px
	}

	.field-custom__input--textarea {
		padding: 10px
	}
}

.field-custom__input_small {
	height: 48px
}

.field-custom__input_small-area {
	padding: 0 307px 0 40px
}

@media screen and (max-width:640px) {
	.field-custom__input_small-area {
		padding: 0 15px
	}
}

.field-custom__btn {
	position: absolute;
	top: 0;
	right: 0
}

@media screen and (max-width:640px) {
	.field-custom__btn {
		margin-top: 25px;
		position: relative
	}
}

.form-error {
	color: red;
	font-size: 15px;
	display: none;
	position: absolute;
	bottom: -20px
}

@media screen and (max-width:640px) {
	.form-error {
		font-size: 12px
	}
}

.form-error--show {
	display: block
}

.form-success--show {
	color: #43efce;
	display: block
}

.all {
	text-align: left !important
}

.height-modal {
	height: 300px;
	border-radius: 8px;
	padding: 20px
}

.js-text-from-modal {
	color: #43efce;
	max-width: 600px;
	font-style: italic;
	display: none
}

.js-text-from-modal--show {
	display: block
}

.h2-big {
	font-size: 35px
}

@media screen and (max-width:640px) {
	.h2-big {
		font-size: 24px
	}
}

.desc-opinion {
	font-size: 23px
}

@media screen and (max-width:640px) {
	.desc-opinion {
		font-size: 18px
	}
}

@media screen and (min-width:640px) {
	.desc-opinion span {
		display: block
	}
}

body {
	color: #fff;
	background-color: #001c85
}

.container {
	max-width: 1510px;
	margin: 0 auto;
	padding: 0 15px
}

.mt-1 {
	margin-top: 27px
}

.mt-2 {
	margin-top: 43px
}

@media screen and (max-width:640px) {
	.mt-2 {
		margin-top: 30px
	}
}

.mt-4 {
	margin-top: 70px
}

@media screen and (max-width:640px) {
	.mt-4 {
		margin-top: 50px
	}
}

.mt-5 {
	margin-top: 90px
}

@media screen and (max-width:640px) {
	.mt-5 {
		margin-top: 30px
	}
}

.mt-6 {
	margin-top: 100px
}

@media screen and (max-width:640px) {
	.mt-6 {
		margin-top: 50px
	}
}

.mt-7 {
	margin-top: 30px
}

.mt-8 {
	margin-top: 149px
}

@media screen and (max-width:640px) {
	.mt-8 {
		margin-top: 50px
	}
}

.mb {
	margin-bottom: 165px
}

.mb-1 {
	margin-bottom: 45px
}

.mb-2 {
	margin-bottom: 15px
}

.ml-1 {
	margin-left: 49px
}

@media screen and (max-width:640px) {
	.ml-1 {
		margin-left: 24px
	}
}

.wrpi {
	position: relative
}

.modal-content {
	background: #001c85;
	border-radius: 28px
}

.modal-confirm {
	max-width: 800px
}

.modal-confirm .modal-body {
	border-radius: inherit;
	background-image: url(modalconfirm.6505967a.jpg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 70px
}

.modal-confirm .modal-body .label-title {
	text-align: center
}

.modal-agreement {
	max-width: 1000px;
	text-align: center
}

.modal-agreement .modal-body {
	width: 100%;
	max-width: 100%;
	border-radius: inherit;
	background-image: url(modalconfirm.6505967a.jpg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 20px
}

.modal-agreement .modal-body .label-title {
	text-align: center;
	font-size: 20px;
	line-height: 25px
}

@media screen and (max-width:640px) {
	.modal-agreement .modal-body .label-title {
		font-size: 14px;
		line-height: 22px
	}
}

.modal-agreement .modal-body .label-title--left {
	text-align: left
}

.modal-agreement .modal-body p {
	text-align: left;
	font-size: 15px;
	line-height: 20px
}

.wrpb {
	justify-content: center;
	display: flex
}

.wrpb .btn {
	margin: 0 10px
}

.js-choise {
	position: relative
}

.js-choise .form-error {
	bottom: -10px
}

.modal,
body {
	padding: 0 !important
}

.js-form-end {
	position: relative
}

.psmall {
	font-size: 12px
}

.scroll-window {
	max-height: 300px;
	overflow: auto
}

.scroll-window::-webkit-scrollbar {
	width: 11px
}

.scroll-window::-webkit-scrollbar-track {
	background: #ffffff57;
	border-radius: 18px
}

.scroll-window::-webkit-scrollbar-thumb {
	background: #43efced9 padding-box content-box;
	border: 3px solid #0000;
	border-radius: 9px
}

@media screen and (min-width:640px) {
	.header .description span {
		display: block
	}
}

.checkbox__input:disabled + .checkbox__lable {
	opacity: .5;
  }

/*# sourceMappingURL=index.afa76245.css.map */