#theme-switch {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	width: 70px;
	z-index: 9999
}

#theme-switch input {
	position: absolute;
	display: none
}

#theme-switch label,
#theme-switch .slider {
	display: block;
	position: relative;
	width: 100%;
	border-radius: 50px;
	cursor: pointer
}

#theme-switch .slider {
	padding: 5px;
	background-color: var(--d-gray);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

#theme-switch .slider:before {
	content: "";
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: var(--yellow);
	background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

#theme-switch input:checked ~ .slider:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278zM4.858 1.311A7.269 7.269 0 0 0 1.025 7.71c0 4.02 3.279 7.276 7.319 7.276a7.316 7.316 0 0 0 5.205-2.162c-.337.042-.68.063-1.029.063-4.61 0-8.343-3.714-8.343-8.29 0-1.167.242-2.278.681-3.286z' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
	transform: translateX(30px)
}

.overlay {
	background: rgba(var(--rgb-vl-blue), .7);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] .overlay {
	background: rgba(var(--rgb-black), .7) !important
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 0;
	z-index: 999;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

nav.slide {
	padding: 1rem 0;
	background-color: rgba(var(--rgb-black), .05)
}

[data-theme=dark] nav.slide {
	background-color: rgba(var(--rgb-white), .1)
}

nav.slide:before {
	backdrop-filter: blur(50px);
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0
}

nav .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: inherit;
	flex-wrap: inherit;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

nav .logo {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	width: 172px;
	height: 100px;
	background-image: url(../images/logo_black_m.svg);
	background-repeat: no-repeat;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] nav .logo {
	background-image: url(../images/logo_white_m.svg)
}

nav.slide .logo {
	width: 86px;
	height: 50px
}

nav .toggle {
	display: none;
	float: right;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background-color: rgba(var(--rgb-white), .5);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 88C0 74.75 10.75 64 24 64H424C437.3 64 448 74.75 448 88C448 101.3 437.3 112 424 112H24C10.75 112 0 101.3 0 88zM0 248C0 234.7 10.75 224 24 224H424C437.3 224 448 234.7 448 248C448 261.3 437.3 272 424 272H24C10.75 272 0 261.3 0 248zM424 432H24C10.75 432 0 421.3 0 408C0 394.7 10.75 384 24 384H424C437.3 384 448 394.7 448 408C448 421.3 437.3 432 424 432z' fill='%232B2A29'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	border-radius: var(--border-radius);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] nav .toggle {
	background-color: rgba(var(--rgb-black), .5);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M0 88C0 74.75 10.75 64 24 64H424C437.3 64 448 74.75 448 88C448 101.3 437.3 112 424 112H24C10.75 112 0 101.3 0 88zM0 248C0 234.7 10.75 224 24 224H424C437.3 224 448 234.7 448 248C448 261.3 437.3 272 424 272H24C10.75 272 0 261.3 0 248zM424 432H24C10.75 432 0 421.3 0 408C0 394.7 10.75 384 24 384H424C437.3 384 448 394.7 448 408C448 421.3 437.3 432 424 432z' fill='%23FFFFFF'/%3E%3C/svg%3E")
}

nav.open .toggle {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M312.1 375c9.369 9.369 9.369 24.57 0 33.94s-24.57 9.369-33.94 0L160 289.9l-119 119c-9.369 9.369-24.57 9.369-33.94 0s-9.369-24.57 0-33.94L126.1 256L7.027 136.1c-9.369-9.369-9.369-24.57 0-33.94s24.57-9.369 33.94 0L160 222.1l119-119c9.369-9.369 24.57-9.369 33.94 0s9.369 24.57 0 33.94L193.9 256L312.1 375z' fill='%232B2A29'/%3E%3C/svg%3E")
}

[data-theme=dark] nav.open .toggle {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M312.1 375c9.369 9.369 9.369 24.57 0 33.94s-24.57 9.369-33.94 0L160 289.9l-119 119c-9.369 9.369-24.57 9.369-33.94 0s-9.369-24.57 0-33.94L126.1 256L7.027 136.1c-9.369-9.369-9.369-24.57 0-33.94s24.57-9.369 33.94 0L160 222.1l119-119c9.369-9.369 24.57-9.369 33.94 0s9.369 24.57 0 33.94L193.9 256L312.1 375z' fill='%23FFFFFF'/%3E%3C/svg%3E")
}
	
li.parent.open > a {
	color: var(--blue)
}

[data-theme=dark] li.parent.open > a {
	color: var(--l-blue)
}

nav .navigation ul a {
	font-family: var(--font-normal)
}

header,
.breadcrumbs {
	background-image: url('../images/copter_light.gif');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-transition: background var(--this-transition);
	-o-transition: background var(--this-transition);
	transition: background var(--this-transition)
}

header .overlay,
.breadcrumbs .overlay {
	/* background: rgba(var(--rgb-vl-blue), .3); */
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3ClinearGradient id='lgrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25' %3E%3Cstop offset='0%25' style='stop-color:rgb(39,112,182);stop-opacity:0.4' /%3E%3Cstop offset='50%25' style='stop-color:rgb(185,105,166);stop-opacity:0.4' /%3E%3Cstop offset='100%25' style='stop-color:rgb(215,181,109);stop-opacity:0.4' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='url(%23lgrad)'/%3E%3C/svg%3E");
	padding: 200px 0 100px
}

.breadcrumbs h1 {
	text-transform: none;
	letter-spacing: .1rem;
	line-height: 1;
	margin: 1rem 0
}

header h1 {
	letter-spacing: .1rem;
	line-height: 1;
	margin: 0
}

header .slogan {
	margin: 0 0 2rem;
	display: block;
	color: rgba(var(--rgb-black), .7);
	line-height: 1;
	font-family: var(--font-medium);
	font-size: 30px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] header .slogan {
	color: var(--d-gray)
}

.breadcrumbs span {
}

.breadcrumbs span,
.breadcrumbs span a {
	color: rgba(var(--rgb-black), .7);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] .breadcrumbs span,
[data-theme=dark] .breadcrumbs span a {
	color: var(--d-gray)
}

.breadcrumbs span a:hover {
	color: var(--blue)
}

[data-theme=dark] .breadcrumbs span a:hover {
	color: var(--l-blue)
}

.breadcrumbs span > span {
	margin: 0 .75rem
}

header img {
	max-width: 80%;
	transform: rotate(-35deg)
}

h1.title,
h2.title {
	letter-spacing: .1rem;
	margin: 0
}

span.description {
	font-size: 1.2rem;
	letter-spacing: .1rem;
	color: rgba(var(--rgb-black), .7)
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] span.description {
	color: var(--d-gray)
}

span.description:after {
	content: '';
	display: block;
	display: none;
	width: 50px;
	height: 50px;
	margin-top: 15px;
	background-color: rgba(var(--rgb-vd-gray), .1);
	border-radius: 50%;
	border: 1px solid rgba(var(--rgb-vd-gray), .5);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M377.4 296.6l-168 176C204.8 477.3 198.6 480 192 480s-12.84-2.688-17.38-7.438l-168-176C-2.5 286.1-2.156 271.8 7.438 262.6c9.5-9.156 24.75-8.812 33.94 .8125L168 396.1V56.02c0-13.25 10.75-24.01 23.1-24.01S216 42.77 216 56.02v340.1l126.6-132.7c9.156-9.625 24.41-9.969 33.94-.8125C386.2 271.8 386.5 286.1 377.4 296.6z' fill='%232B2A29'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] span.description:after {
	background-color: rgba(var(--rgb-gray), .1);
	border: 1px solid rgba(var(--rgb-gray), .5);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M377.4 296.6l-168 176C204.8 477.3 198.6 480 192 480s-12.84-2.688-17.38-7.438l-168-176C-2.5 286.1-2.156 271.8 7.438 262.6c9.5-9.156 24.75-8.812 33.94 .8125L168 396.1V56.02c0-13.25 10.75-24.01 23.1-24.01S216 42.77 216 56.02v340.1l126.6-132.7c9.156-9.625 24.41-9.969 33.94-.8125C386.2 271.8 386.5 286.1 377.4 296.6z' fill='%23FFFFFF'/%3E%3C/svg%3E")
}

h2.title {
	position: relative;
	display: inline-block;
	padding: 0 0 5px;
	font-size: 1.1rem;
	font-family: var(--font-medium)
}

h2.title:before {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	width: 100%
}

section:not(.gradient) {
	padding: 3rem 0
}

section.gradient {
	position: relative;
	contain: paint
	/* overflow: hidden */
}

section.gradient .blur {
	padding: 3rem 0;
	backdrop-filter: blur(50px);
	height: 100%
}

.product {
	position: relative;
	text-align: center;
	height: 100%
}

.product:after {
	content: '';
	display: block;
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 75px);
	background: var(--gradient);
	width: 150px;
	height: 150px;
	opacity: .5;
	border-radius: 50%;
	z-index: -1
}

.gradient-bg-wrapper.big:after {
	top: calc(50% - 125px);
	left: calc(50% - 250px);
	background: var(--gradient);
	width: 250px;
	height: 250px
}

.news .poster,
.project .poster,
.news .poster img,
.project .poster img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: var(--border-radius-xl);
	overflow: hidden
}

.news .poster.contain img,
.project .poster.contain img,
.news .poster.contain img {
    width: auto;
	object-fit: contain
}

.news .poster.top img {
    object-position: top
}

.news .poster.right img {
    object-position: right
}

.news .poster.bottom img {
    object-position: bottom
}

.news .poster.left img {
    object-position: left
}
.slider .owl-stage {
	padding-left: 0 !important
}

.slider .owl-item .image,
.news .poster,
.project .poster,
.news .annotation.panel .image {
	background: rgba(var(--rgb-vl-blue), .5)
}

[data-theme=dark] .slider .owl-item .image,
[data-theme=dark] .news .poster,
[data-theme=dark] .project .poster,
[data-theme=dark] .news .annotation.panel .image {
	background: rgba(var(--rgb-vl-blue), .1)
}

.news .poster.contain,
.project .poster.contain,
.news .poster.contain {
    background: none;
    text-align: center
}

.content img,
.content .plyr {
	display: block;
	margin: 2rem auto;
	border-radius: var(--border-radius-xl);
	overflow: hidden
}

.news .content {
	min-height: 300px
}

.product .content {
	backdrop-filter: blur(50px);
	height: 100%
}

.product .content .image {
	display: flex;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 100px 30px 50px
}

.product .content .image img,
.gradient-bg-wrapper .blur-content .image img {
	max-width: 50%
}

.card {
	border: 2px solid var(--black);
	padding: 3rem 2rem;
	text-align: center;
	height: 100%;
	border-radius: var(--border-radius);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] .card {
	border: 2px solid var(--white)
}

.achievements .item {
	text-align: center
}

.achievements .item .number,
.achievements .item p {
	text-transform: uppercase;
	letter-spacing: .1rem
}

.achievements .item .number {
	font-family: var(--font-bold);
	line-height: 1;
	font-size: 3rem
}

.panel {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.achievements .item p,
.panel p {
	color: rgba(var(--rgb-black), .7);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] .achievements .item p,
[data-theme=dark] .panel p {
	color: var(--d-gray)
}

.achievements .item p {
	font-size: 1.25rem
}

.panel {
	padding: 5rem 2rem;
	background: rgba(var(--rgb-gray), .25);
	border-radius: var(--border-radius-xl);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] .panel {
	background: rgba(var(--rgb-vd-gray), .25)
}

.news .panel,
.project .panel {
	padding: .5rem 1.5rem;
	border-radius: var(--border-radius)
}

.news .panel span,
.project .panel span,
.programs span {
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.content *:not(.text) > p,
.news *:not(.text) > p,
.project *:not(.text) > p,
.content *:not(.text) > ul li,
.news *:not(.text) > ul li,
.news *:not(.text) > ol li,
.project *:not(.text) > ul li,
.project *:not(.text) > ol li {
	font-size: 1.25rem
}

.content *:not(.text) > p:not(:first-of-type),
.news *:not(.text) > p:not(:first-of-type) {
	margin-top: 2rem
}

.news p:last-of-type {
	margin-bottom: 0
}

.news .panel span,
.project .panel span,
.programs span,
.news .panel *:not(.text) > p,
.project .panel *:not(.text) > p {
	letter-spacing: .1rem;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-family: var(--font-medium);
	margin: 0
}

.news .annotation.panel {
	position: relative;
	padding: 1.5rem
}

.news .annotation.panel.first {
	padding: 1.5rem
}

.news .annotation.panel .image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: var(--border-radius)
}

.news .annotation.panel img,
.news .image.first img,
.projects .item .image img {
	object-fit: cover
}

.news .annotation.panel img {
	width: 100%;
	height: 200px
}

.news .image.first,
.news .image.first img {
	border-radius: var(--border-radius);
	overflow: hidden;
	height: 300px
}

.news .annotation.panel .panel {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: block;
	height: auto;
	border: 1px solid var(--white);
	pointer-events: none
}

.project .annotation.panel .panel {
	background: none;
	padding: 0;
	margin: 2rem 0 3rem
}

.news .annotation.panel.first .panel {
	border: 1px solid var(--text-color);
	top: 1.5rem;
	left: 1.5rem;
	bottom: auto
}

.news .panel .panel p,
.project .panel .panel p {
	font-size: 1rem;
	color: var(--white);
	font-family: var(--font-normal)
}

.project .panel .panel p,
.news .annotation.panel.first .panel p {
	color: var(--text-color)
}
.news .annotation.panel .text {
	margin-top: 2rem
}

.project .annotation.panel .text p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	height: 96px
}

.news .annotation.panel.first .text {
	margin-top: 5rem
}

.news .annotation.panel .text h3,
.programs h3 {
	font-size: 1.3rem !important;
	font-family: var(--font-normal);
	-webkit-line-clamp: 2;
	height: 50px;
	letter-spacing: .1rem;
	margin: 0 0 1.5rem;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.news .annotation.panel .text h3:hover {
	color: var(--blue)
}

[data-theme=dark] .news .annotation.panel .text h3:hover {
	color: var(--l-blue)
}

.item.panel h3 {
	font-size: 1.25rem;
	font-family: var(--font-medium);
	text-transform: none
}

.panel p,
.news .panel span,
.project .panel span {
	color: rgba(var(--rgb-black), .6)
}

[data-theme=dark] .panel p,
[data-theme=dark] .news .panel span,
[data-theme=dark] .project .panel span {
	color: rgba(var(--rgb-white), .6)
}

.panel p,
[data-theme=dark] .panel p {
	color: var(--text-color)
}

.news .annotation.panel .text p,
.programs p {
	font-size: 1rem !important;
	color: rgba(var(--rgb-black), .7);
	-webkit-line-clamp: 3;
	height: 72px;
	letter-spacing: .1rem
}

[data-theme=dark] .news .annotation.panel .text p,
[data-theme=dark] .programs p {
	color: var(--d-gray)
}

.projects .slider .owl-stage-outer {
	padding: 80px 0 0
}

.projects .item {
	background: var(--vl-blue);
	-webkit-transition: background var(--this-transition);
	-o-transition: background var(--this-transition);
	transition: background var(--this-transition)
}

.projects .item .btn {
	font-family: var(--font-normal);
	text-transform: uppercase
}

[data-theme=dark] .projects .item {
	background: var(--vd-gray)
}

.owl-stage-outer:before,
hr,
h2.title.gradient:before {
	height: 2px;
	background: var(--gradient);
	background-size: 300% 300%;
	border: none;
	animation: bgAnimate 3s ease alternate infinite
}

.projects .owl-stage-outer:before,
hr {
	content: '';
	display: block;
	position: absolute;
	top: 60px;
	width: 100%;
}

.projects .item .number {
	position: absolute;
	top: -90px;
	right: 0;
	font-size: 3rem;
	font-family: var(--font-bold);
	color: var(--yellow)
}

[data-theme=dark] .projects .item .number {
	color: var(--l-blue)
}

.projects .item .text {
	width: 100%;
	padding: 2rem 1rem 1rem
}

.projects .item .image img {
	height: 250px
}

.news .annotation.panel .text h3,
.projects .item h3,
.news .annotation.panel .text p,
.projects .item p,
.programs h3,
.programs p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
	
}

.projects .item h3 {
	font-size: 1.25rem !important;
	color: var(--d-gray);
	font-family: var(--font-normal);
	-webkit-line-clamp: 1;
	height: 24px;
	letter-spacing: .1rem;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.projects .item h3 {
	font-size: 1.05rem;
	color: var(--text-color);
	height: 20px;
	font-family: var(--font-medium)
}

.projects .item h3:hover {
	color: var(--blue)
}

[data-theme=dark] .projects .item h3:hover {
	color: var(--l-blue)
}

.projects .item p {
	-webkit-line-clamp: 3;
	height: 72px;
	letter-spacing: .1rem
}

.news .annotation.panel .date,
.programs .hours {
	color: var(--d-gray);
	font-family: var(--font-light);
	font-size: .9rem
}

.contacts .icon.circle {
	display: block;
	margin: 0 auto 2rem;
}

.contact h2 {
	text-transform: none
}

.partners .slider .item {
	height: 80px
}

.gallery a {
	display: block;
	border-radius: var(--border-radius);
	overflow: hidden
}

.gallery a img {
	height: 200px;
	object-fit: cover;
	object-position: top;
	width: 100%;
	background: var(--input-bg);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.gallery-pdf .item {
	text-align: center
}

.gallery-pdf .pdf-preview {
	color: var(--text-color)
}

.gallery-pdf .pdf-preview:before {
	content: '';
	display: block;
	height: 50px;
	width: 50px;
	margin: 0 auto;
	background-color: var(--input-bg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M320 464C328.8 464 336 456.8 336 448V416H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V416H48V448C48 456.8 55.16 464 64 464H320zM256 160C238.3 160 224 145.7 224 128V48H64C55.16 48 48 55.16 48 64V192H0V64C0 28.65 28.65 0 64 0H229.5C246.5 0 262.7 6.743 274.7 18.75L365.3 109.3C377.3 121.3 384 137.5 384 154.5V192H336V160H256zM88 224C118.9 224 144 249.1 144 280C144 310.9 118.9 336 88 336H80V368C80 376.8 72.84 384 64 384C55.16 384 48 376.8 48 368V240C48 231.2 55.16 224 64 224H88zM112 280C112 266.7 101.3 256 88 256H80V304H88C101.3 304 112 293.3 112 280zM160 240C160 231.2 167.2 224 176 224H200C226.5 224 248 245.5 248 272V336C248 362.5 226.5 384 200 384H176C167.2 384 160 376.8 160 368V240zM192 352H200C208.8 352 216 344.8 216 336V272C216 263.2 208.8 256 200 256H192V352zM336 224C344.8 224 352 231.2 352 240C352 248.8 344.8 256 336 256H304V288H336C344.8 288 352 295.2 352 304C352 312.8 344.8 320 336 320H304V368C304 376.8 296.8 384 288 384C279.2 384 272 376.8 272 368V240C272 231.2 279.2 224 288 224H336z' fill='%232B2A29'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	border-radius: var(--border-radius);
	background-size: 20px;
	background-position: center
}

span.video {
	display: block;
	position: absolute;
	left: calc(50% - 24px);
	top: calc(50% - 24px);
	background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
	border-radius: 100%;
	color: var(--white);
	padding: 15px;
}

span.video svg {
	left: 2px;
	position: relative;
	display: block;
	fill: currentColor;
	height: var(--plyr-control-icon-size, 18px);
	width: var(--plyr-control-icon-size, 18px)
}

.partners .slider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	margin: 0 10%;
	object-fit: contain;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.partners .slider img,
[data-theme=dark] .partners .slider img.dark{
	opacity: 1;
	visibility: visible
}

.partners .slider img.dark,
[data-theme=dark] .partners .slider img:not(.dark) {
	opacity: 0;
	visibility: hidden
}

.gradient-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1
}

.news .gradient-bg {
	height: calc(100% - 300px);
	bottom: 0
}

.gradient-bg:before,
.gradient-bg:after {
	content: '';
	display: block;
	background: var(--white);
	width: 100%;
	height: 7rem;
	position: absolute;
	opacity: 1;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.gradient-bg:after {
	top: auto;
	bottom: 0
}

.gradient-bg.hide:before,
.gradient-bg.hide:after {
	opacity: 0
}

[data-theme=dark] .gradient-bg:before,
[data-theme=dark] .gradient-bg:after {
	background: var(--black)
}

.gradient-bg i {
	/* position: absolute; */
	display: inline-block;
	position: sticky;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	-webkit-animation: circle infinite;
	animation: circle infinite;
	animation-duration: 10s
}

.gradient-bg i:nth-child(1) {
	top: calc(50% - 225px);
	left: calc(25% - 225px);
	background: var(--blue)
}

.gradient-bg i:nth-child(2) {
	top: calc(50% + 25px);
	left: calc(25% + 25px);
	background: var(--yellow)
}

.gradient-bg i:nth-child(3) {
	top: calc(50% - 125px);
	left: calc(25% - 125px);
	background: var(--pink)
}

.gradient-bg.right {
	display: none
}

.gradient-bg.right i {
	left: auto
}

.gradient-bg.right i:nth-child(1) {
	top: calc(50% - 175px);
	left: calc(75% + 225px);
	background: var(--yellow)
}

.gradient-bg.right i:nth-child(2) {
	top: calc(50% - 25px);
	left: calc(75% - 25px);
	background: var(--blue)
}

.gradient-bg.right i:nth-child(3) {
	top: calc(50% + 125px);
	left: calc(75% + 125px);
	background: var(--pink)
}

@keyframes circle {
	from {
		transform: scale(1);
		opacity: .15
	}
	50% {
		transform: scale(1.25);
		opacity: .25
	}
	to {
		transform: scale(1);
		opacity: .15
	}
}

#YaMap {
	width: 100%;
	height: 400px
}

#YaMap .ymaps3x0--main-engine-container {
	filter: grayscale(1);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] #YaMap .ymaps3x0--main-engine-container {
	filter: grayscale(1) brightness(40%);
	-ms-filter: grayscale(1) brightness(40%);
	-webkit-filter: grayscale(1) brightness(40%);
	-moz-filter: grayscale(1) brightness(40%);
	-o-filter: grayscale(1) brightness(40%)
}

.steps .item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center
}

.steps .item .number {
	display: inline-flex;
	width: 40px;
	height: 40px;
	color: var(--white);
	font-family: var(--font-bold);
	font-size: 1.2rem;
	background: var(--gradient);
	background-size: 300% 300%;
	animation: bgAnimate 3s ease alternate infinite;
	border-radius: 50%;
	align-content: center;
	justify-content: center;
	align-items: center
}

.steps .item h4 {
	display: inline-block;
	margin: 0 0 0 1rem
}

#YaMap ymaps > div {
	width: 40px
}

.footer > * {
	-webkit-transition: none;
	-o-transition: none;
	transition: none
}

footer {
	background: url('../images/footer.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: var(--black)
}

[data-theme=dark] footer {
	color: var(--gray)
}

footer .top {
	padding: 3rem 0 1.5rem
}

footer .logo {
	display: block;
	width: 172px;
	height: 100px;
	background: url(../images/logo_black_m.svg) no-repeat;
	background-size: contain;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] footer .logo {
	background: url(../images/logo_white_m.svg) no-repeat
}

footer .slogan {
	margin: 1rem 0;
	display: block;
	font-family: var(--font-bold);
	font-size: 22px
}

footer h2 {
	color: var(--black);
	font-family: var(--font-medium)
}

[data-theme=dark] footer h2 {
	color: var(--gray)
}

footer a {
	color: var(--black);
	line-height: 1.5rem;
	text-decoration: none;
	font-family: var(--font-normal);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

[data-theme=dark] footer a {
	color: var(--gray)
}

footer a:hover {
	color: var(--blue)
}

[data-theme=dark] footer a:hover {
	color: var(--l-blue)
}

blockquote {
	position: relative;
	margin: 2rem
}

blockquote:before {
	position: absolute;
	left: -1rem;
	top: 0;
	display: block;
	content: '';
	width: 2px;
	height: 100%;
	background: var(--gradient);
	background-size: 300% 300%;
	border: none;
	animation: bgRevAnimate 3s ease alternate infinite
}

hr {
	position: relative;
	top: -2px;
	margin: 0
}

footer .bottom {
	padding: 1rem 0;
	font-size: .9rem
}

.share {
	text-align: center
}

.share ul li {
	display: inline
}

.share ul,
footer ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.share ul li {
	line-height: 0
}

.share ul li:not(:last-child) a {
	margin-right: 2rem
}

footer .menu li:not(:last-child) a {
	margin-bottom: 1rem
}

.share ul li a,
footer .menu li a {
	display: inline-flex;
	align-items: center;
	text-transform: uppercase
}

.share ul li a,
footer .menu li.social a {
	text-transform: none
}

.share ul .icon,
footer .menu .icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-size: 32px;
	margin-right: 1rem;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.traveler-banner {
	position: relative;
	border-radius: 20px;
	padding: 20px;
	background-image: linear-gradient(0.275turn, rgba(1, 63, 87, 1) 0%, rgba(0, 115, 130, 1) 44%, rgba(55, 171, 187, 1) 100%);
	color: var(--white)
}

.traveler-banner .text {
	width: 75%;
	font-size: 1.5rem;
	font-family: var(--font-medium);
	line-height: 1.1
}

.traveler-banner .prize {
    position: relative;
	font-size: 1.75rem;
	font-family: var(--font-bold);
	color: #37abbb;
	margin: 2rem 0;
	z-index: 1
}

.traveler-banner .link {
	position: relative;
	display: inline-flex;
	width: 205px;
	height: 50px;
	color: var(--white);
	font-size: 17px;
	text-align: center;
	padding: 15px;
	border-radius: 60px;
	background: #37abbb;
	justify-content: center;
	align-items: center;
	z-index: 1;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition)
}

.traveler-banner .link:hover {
	background: var(--white);
	color: #2e3542;
	border-radius: 40px;
}

.traveler-banner .img {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 60%
}

.traveler-banner .img img {
	height: 100%
}

.table-wrapper {
    max-width: 100%;
    overflow: auto
}

table {
    width: 100%
}

table th,
table td {
    padding: .5rem;
    border: 1px solid var(--text-color)
}

table th.nowrap,
table td.nowrap {
    white-space: nowrap
}

@media (max-width: 1199px) {
	nav .logo {
		width: 100px;
		height: 100px;
		display: block;
		z-index: 9999
	}

	nav.slide .logo {
		width: 50px;
		height: 50px
	}

	nav .toggle {
		display: block;
		z-index: 999
	}

	nav .navigation {
		position: fixed;
		background-color: var(--gray);
		top: calc(99px + 3rem);
		left: 0;
		width: 100%;
		height: 100vh;
		padding-bottom: 200px;
		opacity: 0;
		visibility: hidden;
		overflow: auto;
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition)
	}

	nav.slide .navigation {
		top: calc(49px + 2rem);
		padding-bottom: 130px
	}

	[data-theme=dark] nav .navigation {
		background-color: var(--vd-gray)
	}

	nav.open .navigation {
		opacity: 1;
		visibility: visible
	}

	nav .navigation ul {
		list-style: none;
		padding: 1rem .5rem
	}

	nav .navigation ul .link {
		display: block;
		padding: 1.25rem;
		margin: 0 0 1.25rem;
		font-size: 1.2rem;
		line-height: 1;
		text-transform: uppercase;
		background-color: rgba(var(--rgb-white), .5);
		border-radius: var(--border-radius)
	}

	[data-theme=dark] nav .navigation ul .link {
		background-color: rgba(var(--rgb-gray), .1)
	}
	
	li.parent > a {
		position: relative
	}

	li.parent > a:after {
		content: '';
		position: absolute;
		right: 1.25rem;
		top: calc(50% - .5rem);
		width: 1rem;
		height: 1rem;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z' fill='%232B2A29'/%3E%3C/svg%3E");
		background-size: 1rem;
		background-position: center;
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition)
	}

	[data-theme=dark] li.parent > a:after {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z' fill='%23FFFFFF'/%3E%3C/svg%3E")
	}

	li.parent:hover > a:after,
	li.parent.open > a:after {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z' fill='%239CBBE3'/%3E%3C/svg%3E")
	}
	
	li.parent.open > a:after {
		transform: rotate(45deg)
	}

	nav .navigation .submenu {
		padding: 0;
		max-height: 0;
		overflow: hidden;
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition)
	}

	nav .navigation ul .submenu .link {
		font-size: .9rem;
		background-color: rgba(var(--rgb-black), .1);
		padding: 1rem 1.75rem
	}

	[data-theme=dark] nav .navigation ul .submenu .link {
		background-color: var(--black)
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.product:after {
		top: calc(50% - 50px);
		left: calc(50% - 50px);
		width: 100px;
		height: 100px
	}
}

@media (min-width: 992px) {
	.content img,
	.content .plyr {
		max-width: 80%
	}

	.share {
		position: absolute;
		left: 0;
		width: 15%;
		height: 100%
	}
	
	.share ul {
		position: sticky;
		top: 50%
	}

	.share ul li {
		display: block
	}

	.share ul li:not(:last-child) a {
		margin-right: 0;
		margin-bottom: 2rem
	}

	.share ul .icon {
		width: 60px;
		height: 60px;
		background-size: 60px;
		margin-right: 0
	}

	section:not(.gradient),
	section.gradient .blur {
		padding: 4rem 0
	}

	.news .annotation.panel .image,
	.news .annotation.panel img {
		height: 250px
	}

	.news .image.first,
	.news .image.first img {
		height: 350px
	}

	.news .annotation.panel.first .text {
		position: absolute;
		width: calc(100% - 3rem);
		margin-top: 0;
		bottom: 1.5rem;
		left: 1.5rem
	}

	.projects .item .image img {
		height: 300px
	}

    .traveler-banner {
    	padding: 40px
    }

	.traveler-banner .text {
		font-size: 2rem;
		width: 70%
	}
	
	.traveler-banner .prize {
		font-size: 2.5rem
	}

    .traveler-banner .link {
    	width: 265px;
    	height: 65px;
    	font-size: 19px
    }

	.traveler-banner .img {
		height: 100%
	}
}

@media (min-width: 1200px) {
	.gallery .owl-stage-outer,
	.gallery-pdf .owl-stage-outer {
		margin: 0 3rem
	}

	.news .annotation.panel img,
	.news .image.first img,
	.projects .item .image img {
		filter: grayscale(100%);
		-ms-filter: grayscale(100%);
		-webkit-filter: grayscale(100%);
		-moz-filter: grayscale(100%);
		-o-filter: grayscale(100%);
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition)
	}

	.news .annotation.panel img:hover,
	.news .image.first img:hover,
	.projects .item .image img:hover {
		filter: grayscale(0);
		-ms-filter: grayscale(0);
		-webkit-filter: grayscale(0);
		-moz-filter: grayscale(0);
		-o-filter: grayscale(0)
	}

	.breadcrumbs span > span {
		margin: 0 1.5rem
	}

	nav .logo,
	footer .logo {
		background-image: url('../images/logo_black.svg');
	}

	[data-theme=dark] nav .logo,
	[data-theme=dark] footer .logo {
		background-image: url('../images/logo_white.svg');
	}

	nav .navigation {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	
	nav .navigation ul {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding-left: 0;
		margin-bottom: 0;
		list-style: none;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}
	
	nav .navigation ul a {
		display: block;
		line-height: 1.5rem;
		font-size: .9rem;
		padding: .5rem;
		text-transform: uppercase
	}

	nav.slide .navigation ul a {
		line-height: 1.25rem;
		padding: .35rem 1.5rem;
		font-size: .9rem
	}

	nav .navigation > ul > li > a.active {
		position: relative;
		top: -2px
	}

	nav .navigation > ul > li > a.active:before {
		content: '';
		position: relative;
		display: block;
		bottom: -2rem;
		width: 100%;
		height: 2px;
		background: var(--text-color);
		-webkit-transition: var(--this-transition);
		-o-transition: var(--this-transition);
		transition: var(--this-transition)
	}

	nav .navigation ul a.active:hover:before,
	nav .navigation ul li.parent.open a:before {
		background: var(--blue)
	}
	
	[data-theme=dark] nav .navigation ul a.active:hover:before,
	[data-theme=dark] nav .navigation ul li.parent.open a:before {
		background: var(--l-blue)
	}
	
	nav.slide .navigation ul a.active:before {
		height: 1px
	}
	
	nav .navigation .submenu {
		justify-content: space-between;
		position: absolute;
		top: calc(100% + 2.5rem);
		left: -100vw;
		max-width: 100%;
		padding: 1rem;
		z-index: -1;
		border-radius: var(--border-radius);
		overflow: hidden;
		background-color: rgba(var(--rgb-white), .1);
		-moz-box-shadow: var(--shadow);
		-webkit-box-shadow: var(--shadow);
		box-shadow: var(--shadow);
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition)
	}
	
	[data-theme=dark] nav .navigation .submenu {
		background-color: rgba(var(--rgb-black), .05)
	}
	
	nav .navigation .parent.open {
		color: var(--l-blue)
	}
	
	nav .navigation .parent.open > .submenu {
		left: 0
	}

	nav .navigation .submenu:before {
		backdrop-filter: blur(5px);
		content: '';
		display: block;
		height: 100%;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	
	nav .navigation .submenu li:not(:last-of-type) {
		margin-right: 2rem
	}
	
	nav .navigation .submenu a {
		border-radius: var(--border-radius);
		background: var(--white)
	}
	
	[data-theme=dark] nav .navigation .submenu a {
		background: var(--black)
	}

	nav.slide.hide {
		transform: translateY(-100%)
	}

	header .overlay {
		padding: 250px 0 150px
	}

	section:not(.gradient),
	section.gradient .blur {
		padding: 5rem 0
	}
	
	.news .poster,
	.project .poster,
	.news .poster img,
	.project .poster img {
		 height: 450px   
	}

	.news .gradient-bg {
		height: calc(100% - 450px)
	}

	.news .annotation.panel.first {
		padding: 3rem
	}
	
	.news .annotation.panel.first .panel {
		top: 3rem;
		left: 3rem
	}

	.news .annotation.panel.first .text {
		width: calc(100% - 6rem);
		bottom: 3rem;
		left: 3rem
	}

	.news .annotation.panel .image,
	.news .annotation.panel img {
		height: 350px
	}

	.news .image.first,
	.news .image.first img {
		height: 450px
	}

	footer .logo {
		width: 215px;
		height: 125px
	}
	
	footer .slogan {
		font-size: 24px
	}

	footer h2 {
		font-size: 2.5rem   
	}

	footer .menu li:not(:last-child) a {
		margin-bottom: 1.5rem
	}

	.projects .item .image img {
		height: 400px
	}

	.traveler-banner .text {
		width: 50%
	}

	.traveler-banner .text {
		font-size: 2.5rem;
		width: 70%
	}
	
	.traveler-banner .prize {
		font-size: 3rem
	}
}

@media (min-width: 1400px) {
	nav .navigation ul a {
		font-size: 1rem;
		padding: .5rem 1rem
	}

	.news .poster,
	.project .poster,
	.news .poster img,
	.project .poster img {
		 height: 600px   
	}

	.news .gradient-bg {
		height: calc(100% - 600px)
	}

	footer .logo {
		width: 258px;
		height: 150px
	}
	
	footer .slogan {
		font-size: 30px
	}

	.projects .item .image img {
		height: 450px
	}
}