/****************** VAR *******************/
:root {
	--body_bg			:	#fff;
	--footer_bg			:	#fdfdfe;
	--copyright_bg		:	#f9fbfe;

	--text_color		:	#111;
	--text_color_0		:	#ffffff;
	--text_color_1		:	#1464af;
	--text_color_1_1	:	#3692e7;
	--text_color_2		:	#585858;
	--text_color_3		:	#a6b0c3;
	--text_color_4		:	#003049;
	--text_color_5		:	#02141d;
	--text_color_6		:	#04080f;
	--text_color_7		:	#eaeaf1;
	--text_color_8		:	#05171b;
	--text_color_9		:	#ffb100;
	--text_color_10		:	#c90000;

	--color_blue		:	#1464af;
	--color_yellow		:	#fff3d6;
	--color_yellow_2	:	#ffda85;
	--color_orange		:	#ffb100;
	--color_orange_1	:	#f26c4f;
	--color_green		:	#3cb878;
	--color_white		:	#ffffff;
	--color_white_1		:	#fdfdfe;
	--color_grey_1		:	#eaeaf1;
	--color_grey_2		:	#f9fbfd;
	--color_grey_3		:	#eaebeb;
	--color_grey_4		:	#edeff1;
	--color_grey_5		:	#a6b0c3;
	--color_grey_6		:	#f0f0f0;
	--color_grey_7		:	#fefeff;
	--color_black		:	#000;
	--color_red			:	#c90000;
	
	--color_black_04	:	rgba(0,0,0,0.4);
	--color_white_08	:	rgba(255,255,255,0.8);

	--button_blue		:	#1464af;
	--button_blue_1		:	#1a7edb;
	--button_blue_2		:	#3692e7;

	--button_orange		:	#ffb100;
	--button_orange_1	:	#ffc233;
	--button_orange_2	:	#ffce5c;

	--button_green		:	#3cb878;
	--button_green_1	:	#4cd68f;
	--button_green_2	:	#59e59d;

	--button_grey		:	#a6b0c3;
	--button_grey_1		:	#8d99af;
	--button_grey_2		:	#7c889e;

}
/****************** VAR - END *******************/


* {margin: 0;padding: 0;}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, 
dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, 
tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, 
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, 
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, 
nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; vertical-align: top;}
input, select, textarea, button {font-family: 'Roboto';-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
textarea{max-width: 100%; min-width: 100%;}
input:focus, select:focus, textarea:focus, button:focus {outline:none;}

::-webkit-scrollbar {width: 5px;}
::-webkit-scrollbar-track {background: var(--color_grey_1);transition: all 0.5s ease-in-out;}
::-webkit-scrollbar-thumb {background: var(--color_blue);transition: all 0.5s ease-in-out;}

.horisontal__noscroll {overflow: auto;}
.horisontal__noscroll::-webkit-scrollbar {width: 5px;height: 0px;}
.horisontal__noscroll::-webkit-scrollbar-track {background: var(--color_grey_1);}
.horisontal__noscroll::-webkit-scrollbar-thumb {background: var(--color_blue);}

/****************** GENERAL *******************/

html {
	font-size: 16px;font-family: 'Roboto';
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	overflow-y: scroll;
}
body {font-family: 'Roboto';font-size: 16px;color: var(--text_color); background: var(--body_bg);}

img[src=""] {visibility: hidden;}
img, iframe, video, object, embed {max-width: 100%;}

a {
	color: var(--color_dark);
	-webkit-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
    -moz-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
    -o-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
	text-decoration:none;
	user-select:none;
	cursor: pointer;
}
svg use, svg {
	-webkit-transition: fill 0.1s ease-in-out;
    -moz-transition: fill 0.1s ease-in-out;
    -o-transition: fill 0.1s ease-in-out;
    transition: fill 0.1s ease-in-out;
}
a:not(.link__type):link, a:not(.link__type):visited {color:var(--text_color_1);text-decoration:none;}
a:not(.link__type):hover {text-decoration:underline;}
a:not(.link__type):active {color:var(--text_color_1_1);text-decoration:underline;}
a:not(.link__type):hover {}

a.link__svg:link svg, a.link__svg:visited svg {fill:var(--text_color_3);}
a.link__svg:hover svg {fill:var(--text_color_1);}
a.link__svg:active svg {fill:var(--text_color_1_1);}

.img__cover {width:100%;height:100%;object-fit:cover;}
.text-center {text-align:center;}
.text-left {text-align:left;}
.text-right {text-align:right;}
.text-justify {text-align:justify;}
.font-bold {font-weight:bold;}

.clear {clear: both;}
.container {max-width: 1310px; margin: 0px auto; padding-left: 15px; padding-right: 15px;width: auto;}
.container__wide {max-width: 1280px;padding-left: 0px;padding-right: 0px;}
.inline__block {display: inline-block;}
.flex__block {
	display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}
.easy__hover {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.required {color: #c90000;}

.title__page {
	font-size: 30px;line-height:135%;
	color: var(--text_color);
	font-weight: bold;
	margin-bottom: 25px;
}
.title__small {
	font-size: 20px;line-height:135%;
	color: var(--text_color);
	font-weight: bold;
	margin-bottom: 15px;
}


.title__link-block {margin-bottom: 25px;}
.title__link-block * {position: relative;z-index: 3;}
.title__link-block .title__page {margin-bottom: 0px;}
.title__link a {font-size: 25px;color: var(--text_color_1);text-decoration:none;}
.title__link svg {
	vertical-align: middle;
	fill: var(--text_color_3);
	-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.title__link a:hover {text-decoration:none;}
.title__link a:hover svg {fill: var(--text_color_1);}
.title__link a:active svg {fill: var(--text_color_1_1);}

@media screen and (max-width: 767px) {
	.title__page {font-size:28px;margin-bottom: 15px;}
}
@media screen and (max-width: 640px) {
	.title__page {font-size:26px;margin-bottom: 15px;}
	.title__link {font-size: 23px;}
	.title__small {font-size: 18px;}
}

.input__wrapper {margin-bottom: 20px;}
.input__label {display: block;color:var(--text_color_6);font-weight: bold;margin-bottom: 5px;}
*.input__text {
    padding: 10px 15px !important;
    border-radius: 5px !important;
    color: var(--text_color_6) !important;
    font-size: 18px;height: 48px !important;
    background-color: var(--color_grey_2) !important;
    border: 1px solid var(--color_grey_3) !important;
    border-radius: 5px;margin:0px !important;
    -webkit-box-sizing: border-box !important; -moz-box-sizing: border-box !important; box-sizing: border-box !important;
}
*.input__text::placeholder {color: var(--text_color_6) !important;}
.input__wrapper .input__text {width: 100%;}

textarea.input__text {height: auto !important;min-height: 48px;}
*.input__text:hover {border-color: var(--color_blue) !important;}
*.input__text:focus {border-color: var(--color_blue) !important; background-color: var(--color_yellow) !important;}
*.input__text:disabled {opacity:0.5;background-color: var(--color_grey_2) !important; background-color: var(--color_yellow) !important;}

*.input__select {
	display: block;opacity: 1;
    border: 1px solid var(--color_grey_3);
    padding: 10px 15px !important;
    border-radius: 5px !important;
    color: var(--text_color_6) !important;
    font-size: 18px;height: 48px !important;
    
	background-color: var(--color_grey_2);
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 15 9' width='15' height='9' fill='rgba(20,100,175,1)' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M854.739,589a1.706,1.706,0,0,1,.51.47q0.543,0.527,1.083,1.055l2.824,2.754c0.3,0.293.6,0.586,0.9,0.879a2.865,2.865,0,0,1,.42.411h0.029v-0.03q2.106-2.035,4.21-4.074l1.052-1.025a1.553,1.553,0,0,1,.48-0.44,6.109,6.109,0,0,0,.873.85,6.245,6.245,0,0,0,.871.85v0.029h-0.031q-3.712,3.635-7.425,7.268a1.184,1.184,0,0,1-.451-0.381q-0.643-.63-1.293-1.26l-5.8-5.627C853.575,590.15,854.158,589.574,854.739,589Z' transform='translate(-853 -589)'/></svg>");
  	background-position: right 10px top 50%;
  	background-repeat: no-repeat;
	
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}
*.input__select:not(:disabled):hover {border-color: var(--color_blue);}
*.input__select:not(:disabled):focus {border-color: var(--color_blue); background-color: var(--color_yellow);}
*.input__select:disabled {opacity: 0.5;}

.select2.select2-container {display: block;width:auto !important;}
.select2-container.select2-container--open {z-index:10000;}
.select2.select2-container--default .select2-selection--single {
	display: block;opacity: 1;
    border: 1px solid var(--color_grey_3);
    padding: 10px 15px !important;
    border-radius: 5px !important;
    color: var(--text_color_6) !important;
    font-size: 18px;height: 48px !important;
}
.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
	height:100%;width:30px;
	top:0px;right:0px;
}
.select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
	height:9px;width:15px;
    border: none;
    margin-left: -8px;
    margin-top: -5px;
    position: absolute;
    top: 50%;left: 50%;
	background-color: transparent;
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 15 9' width='15' height='9' fill='rgba(20,100,175,1)' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M854.739,589a1.706,1.706,0,0,1,.51.47q0.543,0.527,1.083,1.055l2.824,2.754c0.3,0.293.6,0.586,0.9,0.879a2.865,2.865,0,0,1,.42.411h0.029v-0.03q2.106-2.035,4.21-4.074l1.052-1.025a1.553,1.553,0,0,1,.48-0.44,6.109,6.109,0,0,0,.873.85,6.245,6.245,0,0,0,.871.85v0.029h-0.031q-3.712,3.635-7.425,7.268a1.184,1.184,0,0,1-.451-0.381q-0.643-.63-1.293-1.26l-5.8-5.627C853.575,590.15,854.158,589.574,854.739,589Z' transform='translate(-853 -589)'/></svg>");
  	background-position: center center;
  	background-repeat: no-repeat;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.select2.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	-moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.select2-search--dropdown input:not(.browser-default):focus:not([readonly]) {
    border-bottom: 1px solid var(--color_blue);
    -webkit-box-shadow: 0 1px 0 0 var(--color_blue);
    box-shadow: 0 1px 0 0 var(--color_blue);
}

.select2-results__group {font-weight:bold;}

[type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:before, [type="radio"].with-gap:checked+span:after {
	border-color: var(--text_color_1);
}

[type="radio"]:checked+span:after, [type="radio"].with-gap:checked+span:after {
	background-color: var(--text_color_1);
}

.btn-wrapper {text-align: center;}
.btn {
    border-radius: 5px;
	border: none;
	font-size: 16px;
	color: var(--text_color_0) !important;
	background: transparent;
	height: auto;
	line-height: 125%;
	box-shadow: none;
    position: relative;
	cursor: pointer;
    text-decoration: none;
    padding: 15px 25px;
    display: inline-block;
    font-weight: bold;
    user-select: none;
    text-transform: none;
}
.btn:hover {-webkit-box-shadow: none;box-shadow: none;}
a.btn:hover {text-decoration: none;}
a.btn:active {text-decoration: none;}
.btn-svg {
	font-weight: bold;white-space: nowrap;
    width: 50%; font-size: 22px;
}
.btn-svg svg {
	fill:var(--text_color_0);
    margin-right: 5px;
    vertical-align: middle;
}
.btn .material-icons {margin-right: 10px;}
a.btn.disabled, .btn:disabled {cursor:default;opacity: 0.5;color: var(--text_color_0) !important;}

a.btn.btn-blue:link,		.btn.btn-blue,
a.btn.btn-blue:visited,		.btn.btn-blue:visited {background-color: var(--button_blue);border-color: var(--button_blue);}
a.btn.btn-blue:hover,		.btn.btn-blue:hover, a.btn-link:hover .btn.btn-blue {background-color: var(--button_blue_1);border-color: var(--button_blue_1);}
a.btn.btn-blue:active,		.btn.btn-blue:active, a.btn-link:active .btn.btn-blue {background-color: var(--button_blue_2);border-color: var(--button_blue_2);}
a.btn.btn-blue.disabled,	.btn.btn-blue:disabled, a.btn-link.disabled {background-color: var(--button_blue) !important;border-color: var(--button_blue) !important;}

a.btn.btn-orange:link,		.btn.btn-orange,
a.btn.btn-orange:visited,	.btn.btn-orange:visited {background-color: var(--button_orange);border-color: var(--button_orange);}
a.btn.btn-orange:hover, 	.btn.btn-orange:hover, a.btn-link:hover .btn.btn-orange {background-color: var(--button_orange_1);border-color: var(--button_orange_1);}
a.btn.btn-orange:active, 	.btn.btn-orange:active, a.btn-link:active .btn.btn-orange {background-color: var(--button_orange_2);border-color: var(--button_orange_2);}
a.btn.btn-orange.disabled,	.btn.btn-orange:disabled, a.btn-link.disabled {background-color: var(--button_orange) !important;border-color: var(--button_orange) !important;}

a.btn.btn-green:link,		.btn.btn-green,
a.btn.btn-green:visited,	.btn.btn-green:visited {background-color: var(--button_green);border-color: var(--button_green);}
a.btn.btn-green:hover, 		.btn.btn-green:hover, a.btn-link:hover .btn.btn-green {background-color: var(--button_green_1);border-color: var(--button_green_1);}
a.btn.btn-green:active, 	.btn.btn-green:active, a.btn-link:active .btn.btn-green {background-color: var(--button_green_2);border-color: var(--button_green_2);}
a.btn.btn-green.disabled,	.btn.btn-green:disabled, a.btn-link.disabled {background-color: var(--button_green) !important;border-color: var(--button_green) !important;}

a.btn.btn-grey:link,		.btn.btn-grey,
a.btn.btn-grey:visited,		.btn.btn-grey:visited {background-color: var(--button_grey);border-color: var(--button_grey);}
a.btn.btn-grey:hover,		.btn.btn-grey:hover, a.btn-link:hover .btn.btn-grey {background-color: var(--button_grey_1);border-color: var(--button_grey_1);}
a.btn.btn-grey:active,		.btn.btn-grey:active, a.btn-link:active .btn.btn-grey {background-color: var(--button_grey_2);border-color: var(--button_grey_2);}
a.btn.btn-grey.disabled,	.btn.btn-grey:disabled, a.btn-link.disabled {background-color: var(--button_grey) !important;border-color: var(--button_grey) !important;}

a.btn.btn-block, .btn.btn-block {display:block;width:100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}

.btn-loading svg {animation: circle 3s linear infinite;}
@keyframes circle { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }


nav {background: inherit;height: auto;line-height: initial;box-shadow: none;}
nav ul {}
nav ul li {float:none;}
nav ul li a {
	background: inherit;
	height: auto;
    line-height: initial;
    padding: 0px;
    color: var(--text_color);
}
nav ul li a {
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
nav ul a:hover {background-color: transparent;}

.menu__burger {
	float:right;overflow:hidden;background: transparent; margin: 0px; width: 40px;
	margin-left: 0px;display: inline-block; border: none; border-radius: 4px;
	cursor: pointer; vertical-align: top;padding: 10px 5px;
}
.menu__burger span {
	background: var(--color_blue); display: block; height: 2px; margin: 7px 0px 7px auto;
	border-radius:1px;
}
.menu__burger span:nth-child(1) {width:100%;}
.menu__burger span:nth-child(2) {width:70%;}
.menu__burger span:nth-child(3) {width:90%;}

/****************** SWIPER *******************/

.swiper__wrapper {position: relative;}
.swiper {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.swiper:not(.swiper-initialized)+.swiper-button-prev,
.swiper:not(.swiper-initialized)+.swiper-button-next,
.swiper:not(.swiper-initialized)+.swiper-button-prev+.swiper-button-next,
.swiper:not(.swiper-initialized)+.swiper-button-next+.swiper-button-prev {opacity: 0;}
.swiper.swiper-initialized {opacity: 1;}
.swiper-wrapper.disabled {transform: translate3d(0px, 0, 0) !important;}
.swiper .swiper-button-prev,
.swiper .swiper-button-next,
.swiper__wrapper .swiper-button-prev,
.swiper__wrapper .swiper-button-next {
	position: absolute;z-index: 3;
	top: 50%;margin-top: -21px;
	height: 36px !important;width: 36px !important;line-height: 36px;
	text-align: center;
	background-color: var(--color_white);
	display: block;
	border-radius: 50px;
	border: 2px solid var(--color_blue);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.swiper-button-prev svg, .swiper-button-next svg {fill:var(--text_color_1);}

.swiper-button-prev svg,
.swiper-button-next svg {margin-top: -2px;vertical-align: middle;position: relative;}
.swiper-button-prev svg {
	left:-1px;
	-moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.swiper-button-next svg {
	right:-1px;
	-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:hover {background-color: var(--color_blue);}
.swiper-button-prev:hover svg use,
.swiper-button-next:hover svg use {fill: var(--color_white);}
.swiper-button-next:after, .swiper-button-prev:after {display: none;}

.swiper-button-prev:after, .swiper-button-next:after {display: none;}
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	font-size: 0px;
	border-radius: 100px;
	padding: 0px;margin: 0px;
	border:2px solid var(--color_dark);
	background-color: var(--text_color_1);
	height: 40px !important;
    width: 40px !important;
}
.swiper-button-next i,
.swiper-button-prev i {
	color: var(--color_dark);
	font-size: 30px;margin-left: 3px;
}
.swiper .swiper-button-next.swiper-button-disabled,
.swiper .swiper-button-prev.swiper-button-disabled {opacity: 0.5;}


.swiper-pagination .swiper-pagination-bullet {
	background-color: var(--color_grey_5);
    width: 5px; height: 5px;
    vertical-align: middle;
    opacity: 1;padding: 0px;margin:0px 5px !important;
    cursor: pointer; border-radius: 5px;
}
.swiper-pagination .swiper-pagination-bullet-active {background-color: var(--color_blue);}

/****************** SWIPER - END *******************/

.alerts {
	position: fixed;
	right: 0px;
	top: 55px;
	z-index: 1000000;
	max-width: 80%;
}

.alert+.alert {
	margin-top: 10px;
}

.alert {
	font-size: 18px;
	padding: 10px 15px;
	padding-right: 45px;
	background:var(--color_blue);
	color:var(--text_color_0);
	position: relative;
	border-radius: 5px;
	min-width: 150px;
}

.alert__close {
    position: absolute;
    top: 0px; right: 0px;
    padding: 0px;
    display: inline-block;
    line-height: 0px;
    font-size: 0px;
    width: 40px;
    height: 100%;
}
.alert__close svg {
	position:absolute;top:50%;left:50%;
	margin-top:-15px;margin-left:-15px;
	fill:var(--text_color_0);
}

.form__result {}
.form__result>*{margin-bottom: 15px;font-size:16px;text-align:center;}

.form__result-success	{color:var(--text_color_1);}
.form__result-error		{color:var(--text_color_10);}