::selection {
	background-color: #1e79bf;
	color: #fff;
}
::-moz-selection {
	background-color: #1e79bf;
	color: #fff;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/ProximaNova-Regular.eot');
	src: local('Proxima Nova Regular'), local('ProximaNova-Regular'), url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Regular.woff') format('woff'), url('../fonts/ProximaNova-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/ProximaNova-Bold.eot');
	src: local('Proxima Nova Bold'), local('ProximaNova-Bold'), url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Bold.woff') format('woff'), url('../fonts/ProximaNova-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/ProximaNova-Semibold.eot');
	src: local('Proxima Nova Semibold'), local('ProximaNova-Semibold'), url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Semibold.woff') format('woff'), url('ProximaNova-Semibold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

*, *:before, *:after {
	font-family: 'Proxima Nova', 'Open Sans', Arial, sans-serif;
	box-sizing: border-box;
}

html, body {
	background:#fff;
	min-height:100%;
	height:100%;
	min-width:100%;
	font-style: normal;
	font-size: 16px;
}
button,a {
	cursor: pointer;
	transition: .3s ease-out;
	outline: none;
}
a {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-decoration-line: underline;
	color: #0D6D7B;
}
a:hover {

}

/*layout*/
.v_flex {
	display: flex;
	flex-wrap: wrap;
}
.v_ai-c {
	align-items: center;
}
.v_jc-c {
	justify-content: center;
}
.v_jc-sb {
	justify-content: space-between;
}
.v_column {
	flex-direction: column;
}
.v_row {
	flex-direction: row;
}
.v_relative {
	position: relative;
}
.v_grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2em;
}
.v_container {
	width: 100%;
	/*max-width: calc(1512px);*/
	margin-left: auto;
	margin-right: auto;
}
.v_box {
	padding: 2em;
}
.v_show-on-mobile {
	display: none;
}
.v_bg-block {
	position: relative;
}
.v_bg-block .v_content {
	position: relative;
	z-index: 2;
}
.v_bg-block .v_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.v_bg-block .v_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.v_decor-block {
	position: relative;
}
/*layout*/






/*buttons*/
.v_btn, button {
	background: #3C4652;
	border-radius: 2px;
	font-style: normal;
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	color: #FFFFFF;
	transition: .3s ease-out;
	padding: 1em 3em;
	text-decoration: none;
}
.v_btn:hover, button:hover {
	background: #5D6A76;
}
/*buttons*/






.v_page-home {
	overflow: hidden;
}
/*header*/
.v_header {
	display: none;
}
.v_page-home .v_header {
	height: 100%;
	max-width: 517px;
	background: white;
	z-index: 99;
	display: flex;
}
/*header*/








/*menu*/
.v_main-menu-wrapper {
	overflow: auto;
	background: #3C4652;
	padding-left: 0;
	padding-right: 0;
	color: white!important;
}
.v_main-menu-wrapper * {
	color: white;
}
.v_main-menu-wrapper .v_toggle-btn {
	width: 100%;
	padding: .5em 1em;
	background: none;
	border: none;
	flex-wrap: nowrap;
}
.v_main-menu-wrapper .v_toggle-btn .icon {
	flex-shrink: 0;
}
.v_main-menu-wrapper .v_toggle-btn .name {
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	padding: 0 1em;
	display: block;
	text-align: left;
}
.v_main-menu-wrapper .v_toggle-btn .arr {
	transition: .3s ease-out;
	transform: rotate(180deg);
}
.v_main-menu-wrapper .v_toggle-btn.open .arr {
	transform: rotate(0deg);
}
.v_main-menu-wrapper .v_line {
	width: 100%;
	display: block;
	height: 1px;
	margin: 2em 0;
	background: #5D6A76;
}
.v_main-menu-wrapper .logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 129px;
}
.v_main-menu-wrapper .logo img,
.v_main-menu-wrapper .logo svg {
	width: 100%;
}
.v_main-menu-wrapper .v_menu {
	transition: max-height .3s ease-out, opacity .3s ease-out;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
}
.v_main-menu-wrapper .v_toggle-btn.open + .v_menu {
	max-height: 100%;
	overflow: initial;
	opacity: 1;
}
.v_main-menu-wrapper .v_menu a {
	display: block;
	width: 100%;
	padding: 1em 2em 1em 3.5em;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	color: #C8C8C8;
}
.v_main-menu-wrapper .v_menu a.active,
.v_main-menu-wrapper .v_menu a:hover{
	background: #5D6A76;
}
/*menu*/






/*content*/
.v_page {
	/*height: 100%;*/
}
.v_page > .v_main-menu-wrapper {
	order: 0;
	width: 20%;
	min-height: 100vh;
}
.v_page > .v_content {
	width: 80%;
	order: 1;
}

.v_page-home > .v_header {
	order: 3;
	width: 30%;
	min-height: 100vh;
	position: relative;
}
.v_page-home > .v_header:after {
	content: '';
	position: absolute;
	right: -243px;
	bottom: -48px;
	display: block;
	width: 486px;
	height: 486px;
	background: url("../img/d2.png") no-repeat;
	background-size: contain;
	z-index: -1;
	opacity: .3;
}
.v_page-home > .v_header .logo {
	margin-bottom: 2em;
}
.v_page-home > .v_content {
	width: 50%;
}

.v_page-home .v_bg-block {
	height: 100%;
}
.v_page-home .v_bg-block p {
	font-weight: 600;
	margin-top: 0;
}
.v_page-home .v_bg-block a {
	display: block;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: .25em;
}
/*content*/



/*text*/
.v_page h1,
.v_page h2,
.v_page h3,
.v_page h4,
.v_page h5 {
	color: #5C636C;
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 1em;
}
.v_page h1 {
	font-size: 40px;
}
.v_page h2 {
	font-size: 30px;
}
.v_page h3 {
	font-size: 25px;
}
.v_page h4 {
	font-size: 20px;
}
.v_page p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #5C636C;
	margin-top: 1em;
	margin-bottom: 1em;
}
.v_page .t-white {
	color: white!important;
}
.v_page ul,
.v_page ol {
	margin-left: 1em;
	margin-bottom: 1em;
	list-style: none;
}
.v_page ul li {
	list-style: none;
	position: relative;
}
.v_page ul li:before,
.v_page ol li:before {
	content: '';
	background: #0D6D7B;
	border-radius: 100%;
	display: block;
	height: 5px;
	width: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.v_page li {
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: #5C636C;
	padding: .5em 2em;
	margin: 0;
	position: relative;
	list-style: none;
}

.v_page ol {
	counter-reset: li
}
.v_page ol li {counter-increment: li}
.v_page ol li:before {
	content: counter(li);
	background: none;
	border-radius: 0px;
	border: none;
	color: #0D6D7B;
	text-align: right;
	direction: rtl;
	width: initial;
	height: initial;
	font-weight: 700;
}
.v_page blockquote {
	position: relative;
	padding: 1em 1em 1em 4em;
	margin: 1em 0;
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #5C636C;
}
.v_page blockquote:before {
	content: '“';
	font-family: 'Proxima Nova';
	font-style: normal;
	font-weight: 400;
	font-size: 100px;
	height: 24px;
	line-height: 24px;
	color: #E5E5E5;
	display: block;
	position: absolute;
	top: 40px;
	left: 0;
}
.v_page blockquote .author {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.v_page blockquote .author * {
	text-align: right;
}
.v_page blockquote .author b {
	font-weight: 600;
	font-size: 18px;
	line-height: 133%;
	color: #5C636C;
}
.v_page blockquote .author span {
	font-size: 16px;
	line-height: 1.5;
	color: #C8C8C8;
	display: block;
}
/*text*/

/*table*/
.v_page table {
	width: 100%;
	overflow: auto;
	text-align: left;
	margin: 1em 0;
}
.v_page th, .v_page td {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
	border-bottom: 3px solid #0D6D7B;
	padding: .5em;
}
.v_page td {
	font-weight: 400;
	border-bottom: 1px solid #E5E5E5;
}





/*responsive*/
@media (min-width: 921px) {
	.v_main-menu-wrapper {
		display: block!important;
	}
}
@media(max-width: 1200px) {
	body {
		font-size: 14px;
	}
	.v_page-home > .v_content .v_grid-2 {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 920px) {
	.fancybox__container.is-animated .v_main-menu-wrapper {
		display: block!important;
	}
	.v_page-home > .v_header:after {
		display: none;
	}
	.v_show-on-mobile {
		display: block;
	}
	.v_hide-on-mobile {
		display: none!important;
	}
	.v_header {
		order: 0!important;
		width: 100% !important;
		min-height: initial!important;
		max-width: 100% !important;
		height: 80px;
		padding-top: 0;
		padding-bottom: 0;
		display: flex;
	}
	.v_header .v_btn {
		margin-left: auto;
		margin-right: 2em;
	}
	.v_header > .v_column {
		flex-direction: row;
		align-items: center;
		width: 100%;
	}
	.v_header .logo {
		margin: 0 1em 0 0!important;
	}
	.v_header .logo svg {
		width: 61px;
		height: auto;
	}
	.v_page > .v_content {
		width: 100%;
		order: 1;
	}
	.v_main-menu-wrapper {
		order: initial;
		width: 100% !important;
		height: 100% !important;
		display: none;
		max-width: 100% !important;
		position: relative;
		background: rgba(60, 70, 82, 0.98);
		overflow: auto;
		z-index: 2;
	}

	.v_main-menu-wrapper:after {
		content: '';
		position: fixed;
		right: 0px;
		bottom: 0px;
		display: block;
		width: 200px;
		height: 200px;
		background: url("../img/d1.png") no-repeat;
		background-size: contain;
		z-index: -1;
		opacity: .2;
	}
	.v_main-menu-wrapper .logo {
		padding: 0 2em;
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}
	.v_main-menu-wrapper .logo svg {
		width: 40px;
		height: 40px;
	}
	.v_main-menu-wrapper .logo .v_show-on-mobile {
		background: none;
		border: none;
		display: block;
		padding: 0;
		margin: 0;
	}


	body {
		font-size: 12px;
	}
	.v_box {
		padding: 1em;
	}
	.v_btn, button {
		font-size: 10px;
	}
	.v_grid-2 {
		grid-template-columns: 1fr;
		grid-gap: 1em;
	}
}







.fancybox__slide {
	padding: 0;
}