/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;1,700&display=swap');*/
@import url('../fonts/alergia_grotesk/alergia_grotesk.css?v=1');

:root {
	/*--font-title: 'Cormorant', serif;
	--font-text: 'Open Sans', sans-serif;*/
	--font-title: 'Alergia', sans-serif;
	--font-text: 'Alergia', sans-serif;
	--color-gray: 105,116,126;
	--color-red:208,62,73;
	--color-yellow:253,191,30;
	--color-text:33,33,43;
	--color-bg:47,47,47;
	--logo-h:188px;
	--logo-h-sm:80px;
	--menu-h:114px;
	--menu-h-sm:49px;
	--z-index-1: 1050;
	--z-index-2: 1060;
}
/*font-family: var(--font-title);*/


html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	background-color: #fff;
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	color: rgb(var(--color-text));
	position: relative;
}

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

/*h1, .h1 {
  font-size: 2.5rem;
}
h2, .h2 {
  font-size: 2rem;
}
h3, .h3 {
  font-size: 1.75rem;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.25rem;
}
h6, .h6 {
  font-size: 1rem;
}*/

input[type="text"]:focus,
input[type="button"]:focus,
button:focus {
   outline:none;
}

input[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
   border: 0;
}

a {
	color: rgb(var(--color-red));
}
a:hover {
	color: rgb(var(--color-red));
	text-decoration: none;
}

/*
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { }
*/

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}
/*@media (max-width: 767.98px) {
	.img-responsive {
		width: 100%;
	}
}*/

.object-fit {
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}


@keyframes fadeInDown {
from {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
} to {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
}
.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInUp {
from {
	opacity: 1;
	transform: translate3d(0, 0, 0);
} to {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
}
}
.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.fadeIn{animation-name:fadeIn}
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	opacity: 1 !important;
}


/*.is-sticky {
	top: 0;
	left: 0;
	*position: fixed;
	width: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 0.97);
	-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	-webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
	animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}
@media (max-width: 991.98px) {
	.sticky.is-sticky {
		position: fixed;
	}
}
@media (min-width: 992px) {
	.sticky-lg.is-sticky {
		position: fixed;
	}
	.container-sticky {
		max-width: 1140px;
		margin: 0 auto;
	}
}*/

/*
.scroll-top {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 3rem;
	height: 3rem;
	text-align: center;
	cursor: pointer;
	z-index: 999;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	border-radius: 4px;
	background-color: rgb(var(--color-gray));
	-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.scroll-top.not-visible {
	bottom: -50px;
	visibility: hidden;
	opacity: 0;
}
.scroll-top i {
	line-height: 3rem;
	color: #fff;
	font-size: 1.5rem;
}
*/

.view-overlay {
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	*right: 0;
	*bottom: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: visibility .5s linear,opacity .4s linear;
	z-index: 1010;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.overlay__open .view-overlay {
	visibility: visible;
	opacity: 1;
}


.gdprChangePreferences_btn {
	display: none;
}


.view {
	color: #fff;
	background-color: rgb(var(--color-bg));
}
.view .wrapper {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.view .body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding-top: var(--menu-h-sm);
	*padding-top: 3rem;
	padding-bottom: 3rem;
}

.view-home {
	
}
.view-home .wrapper {

}

.view.view-white {
	background-color: #fff;
	color: rgb(var(--color-text));
}

/*.view {
	-moz-font-feature-settings: "kern" 1;
	-moz-osx-font-smoothing: grayscale;
	-ms-font-feature-settings: "kern" 1;
	-o-font-feature-settings: "kern" 1;
	-webkit-font-feature-settings: "kern" 1;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "kern" 1;
	-webkit-font-kerning: normal;
	font-kerning: normal;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}
.view::before, .view::after {
	background-color: transparent;
	content: '';
	display: block;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transition: visibility 0s cubic-bezier(0, 0.7, 0.4, 1) 0s, background-color 0.8s cubic-bezier(0, 0.7, 0.4, 1) 0s;
	transition: visibility 0s cubic-bezier(0, 0.7, 0.4, 1) 0s, background-color 0.8s cubic-bezier(0, 0.7, 0.4, 1) 0s;
	visibility: hidden;
	z-index: 30;
}*/


.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
}
	.header__container {
		display: flex;
	}
	.header__logo {
		position: absolute;
		top: 0;
		left: 0;
	}
	.header__menu {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		*transition: .4s;
		background-color: rgb(var(--color-bg));
		height: var(--menu-h-sm);
	}
	.header__logo .logo_lg {
		transition: .4s;
		**height: 189px;
		height: var(--logo-h-sm);
	}
	@media (max-width: 991.98px) {
		/*.header__menu {
			height: var(--menu-h-sm);
		}*/
		/*.header__logo .logo_lg {
			height: 80px;
		}*/
	}
	@media (min-width: 992px) {
		/*.header__menu {
			height:114px;
		}*/
		/*.is-sticky .header__logo .logo_lg {
			height: 80px;
		}
		.is-sticky .header__menu {
			height: var(--menu-h-sm);
		}*/
	}

.view .header.sticky.is-sticky + .body {
	*margin-top: 0px;
}
.view .header.sticky.is-sticky {
	*position: relative;
}


.view-home .header__menu {
	background-color: rgba(255,255,255,.4);
	transition: .4s;
}
	.view-home .header__logo .logo_lg {
		**height: 188px;
		height: var(--logo-h);
	}
	@media (max-width: 991.98px) {
		.view-home .header__logo .logo_lg {
			height: var(--logo-h-sm);
		}
	}
	@media (min-width: 992px) {
		.view-home .header__menu {
			height: var(--menu-h);
		}
		.view-home .is-sticky .header__logo .logo_lg {
			height: var(--logo-h-sm);
		}
		.view-home .is-sticky .header__menu {
			height: var(--menu-h-sm);
		}
	}

.header__buttons ul,
.header__buttons li {
	list-style: none;
	padding: 0;
	margin: 0;
}
.header__buttons .search {
	width: var(--menu-h-sm);
	height: var(--menu-h-sm);
	color: rgb(var(--color-red));
}




.footer {
	background-color: rgb(var(--color-bg));
}
	.footer .row {
		margin: 0;
	}
	.footer__counter {
		background-color: #FFDF8F;
		color: rgb(var(--color-text));
		font-size: 3rem;
		text-align: center;
		font-weight: 600;
		padding: 1.5rem 0;
	}
	.footer__counter i {
		font-style: normal;
	}
	.footer__counter span {
		font-size:1rem;
		letter-spacing: .2rem;
	}
	.footer__content {
		color: #fff;
		padding: 3rem 0;
	}
	.footer__content .slogan {
		text-align: center;
		font-size: 2rem;
		letter-spacing: .15rem;
		padding-bottom: 3rem;
	}
	.footer__content .brands {
	}
	.footer__content .brands img {
		margin-right: 2rem;
	}
	/*.footer__content .social {
		font-size: 2rem;
	}
	.footer__content .social i {
		margin-left: 2rem;
	}
	.footer__content .social a {
		color: #fff;
		text-decoration: none;
	}
	.footer__content .social a:hover {
		color: rgb(var(--color-red));
	}
	@media (max-width: 767.98px) {
		
	}*/



.side_panel {
	position: fixed;
	top: 0px;
	bottom: 0;
	height: 100%;
	opacity: 1;
	visibility: visible;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 1100;
	*background-color: rgb(var(--color-text));
	background-color: rgba(255,255,255,.6);
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	*transform: translate3d(-100%,0,0);
}
	@media (max-width: 575.98px) { 
		.side_panel {
			width: 80%;
		}
	}
	@media (min-width: 768px) and (max-width: 991.98px) {
		.side_panel {
			width: 60%;
		}
	}
	.side_panel__open {
		overflow: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.side_panel {
		right:-100%;
	}
	.side_panel__open .side_panel {
		right:0;
	}
	.side_panel__wrap {
		position: relative;
		width: 100%;
		padding: var(--logo-h-sm) 1.25rem 1.25rem 1.25rem;
	}


.menu-icon {
	height: var(--menu-h-sm);
	width: var(--menu-h-sm);
	transition: 0.3s;
	display: inline-block;
	position: relative;
	cursor: pointer;
}
	.menu-icon:hover {
		opacity: 1;
	}
	.menu-icon .bars {
		display: block;
		margin: auto;
		width: 24px;
	}
	.menu-icon .bars .bar1, 
	.menu-icon .bars .bar2, 
	.menu-icon .bars .bar3 {
		display: block;
		content: "";
		height: 2px;
		width: 100%;
		margin-bottom: 5px;
		transition: 0.3s;
		background-color: #F8204B;
	}
	/*.menu-icon .bars .bar1 {
		width: 20px;
	}*/
	.menu-icon .bars .bar3 {
		margin-bottom: 0;
	}
	.side_panel__open .menu-icon .bars .bar1, 
	.side_panel__open .menu-icon .bars .bar2, 
	.side_panel__open .menu-icon .bars .bar3 {
		height: 2px;
		width: 100%;
		margin-bottom: 4px;
		border-radius: 0;
	}
	.side_panel__open .menu-icon .bars .bar1 {
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg);
		-webkit-transform-origin: center;
		transform-origin: center;
		width: 24px;
	}
	.side_panel__open .menu-icon .bars .bar2 {
		width: 0px;
		*transition: none;
	}
	.side_panel__open .menu-icon .bars .bar3 {
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg);
		-webkit-transform-origin: center;
		transform-origin: center;
		width: 24px;
	}


.menu ul {
	display: -ms-flexbox;
	-ms-flex-direction: row;
	display: flex;
	flex-direction: row;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
	.menu input[type="checkbox"],
	.menu .drop-icon {
		display: none;
		margin: 0;
		cursor: pointer;
	}
	.menu .menu-dropdown {
		display: none;
		border-radius: 0;
		margin-left: 0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 200;
		min-width: 10rem;
	}
	.menu .dd-dir-left .menu-dropdown {
		left: auto;
		right: 0;
	}
	.menu .menu-item:hover .menu-dropdown {
		display: block;
	}
	.menu .menu-sub {
		flex-direction: column;
		background: #fff;
		border: .0625rem solid #ddd;
		border-radius: .125rem;
		padding: .3rem 1.25rem 1rem;
	}
	.menu .menu-item {
		padding: 0 .6rem;
		position: relative;
		white-space: nowrap;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.menu .ws-normal .menu-item {
		white-space: normal;
	}
	.menu .menu-linkbox::after {
		display: block;
		clear: both;
		content: "";
	 }
	.menu .menu-link {
		display: block;
		position: relative;
		font-size: .85rem;
		color: #111;
		line-height: 1rem;
		text-decoration: none;
		cursor: pointer;
		margin: .5rem 0;
		padding: .5rem 0;
	}
	.menu .menu-link:hover {
		color:#DB021B;
	}
	.menu .menu-link .txt {
		font-weight: 600;
	}
	.menu .menu-sub .menu-item {
		padding:.7rem 0 0 0;
	}
	.menu .menu-sub .menu-link {
		margin: 0;
		padding: .25rem 0;
	}
	.menu .hide-txt .txt {
		display: none;
	}


.menu.menu-main {
	height: 100%;
}
	.menu.menu-main ul {
		height: 100%;
	}
	.menu.menu-main .menu-item {
		height: 100%;
		padding: 0 .5rem;
	}
	@media (min-width: 992px) {
		.menu.menu-main .menu-item {
			padding: 0 1.5rem;
		}
	}
	@media (min-width: 1200px) {
		.menu.menu-main .menu-item {
			padding: 0 2rem;
		}
	}
	.menu.menu-main .menu-item:hover {
		background-color: rgba(var(--color-gray),.9);
	}
	.menu.menu-main .menu-item:hover .menu-link {
		color: #fff;
	}
	.menu.menu-main .menu-linkbox {
		height: 100%;
	}
	.menu.menu-main .menu-link {
		letter-spacing: .1rem;
		height: 100%;
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;
		**color: rgb(var(--color-text));
		color: #fff;
	}
	.menu.menu-main .menu-item:hover .menu-dropdown {
		width: auto;
		**top:114px;
		top:var(--menu-h-sm);
	}
		.menu.menu-main .menu-sub {
		**background-color: rgba(255,255,255,.4);
		background-color: rgba(var(--color-gray),.9);
		border: 0;
		border-radius: 0;
		padding: 0;
	}
	.menu.menu-main .menu-sub .menu-item {
		padding: 0;
		*text-shadow: 0px 0px 2px rgba(var(--color-gray),.75);
	}
	.menu.menu-main .menu-sub .menu-item:hover {
		**background-color: rgba(255,255,255,.6);
		background-color: transparent;
	}
	.menu.menu-main .menu-sub .menu-link {
		padding: 1rem;
	}
	.menu.menu-main .menu-sub .menu-item:hover .menu-link {
		**color: rgb(var(--color-red));
		color: rgb(var(--color-text));
	}


.view-home .menu.menu-main .menu-link {
	color: rgb(var(--color-text));
}
	.view-home .menu.menu-main .menu-item:hover .menu-dropdown {
		top:114px;
	}
	.view-home .is-sticky .menu.menu-main .menu-item:hover .menu-dropdown {
		top:var(--menu-h-sm);
	}
	.view-home .menu.menu-main .menu-sub {
		background-color: rgba(255,255,255,.4);
	}
	.view-home .menu.menu-main .menu-sub .menu-item:hover {
		background-color: rgba(255,255,255,.6);
	}
	.view-home .menu.menu-main .menu-sub .menu-link {
		color: rgb(var(--color-text));
	}
	.view-home .menu.menu-main .menu-sub .menu-item:hover .menu-link {
		*color: #fff;
		color: rgb(var(--color-text));
	}


.menu.menu-footer ul {
	flex-direction: column;
}
	.menu.menu-footer a {
		margin: 0;
		padding: .25rem 0;
		color: #fff;
		font-size: 1.15rem;
		line-height: 1.25;
	}
	.menu.menu-footer a:hover {
		color: rgb(var(--color-red));
	}
	.menu.menu-footer .txt {
		display: inline-block;
		white-space: break-spaces;
	}


.menu.menu-social li {
	padding: 0;
}
	.menu.menu-social .menu-linkbox {
		margin-left: 1.5rem;
	}
	.menu.menu-social a {
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 2rem;
	}
	.menu.menu-social a:hover {
		color: rgb(var(--color-red));
	}


.menu.menu-mobile ul {
	flex-direction: column;
}
	.menu.menu-mobile .drop-icon {
		display: block;
	}
	.menu.menu-mobile .menu-dropdown {
		position: relative;
		width: 100%;
		display: block;
		overflow: hidden;
		max-height: 0;
		transition: max-height .5s ease-in-out;
	}
	/*.menu.menu-mobile .menu-item:hover .menu-dropdown {
		display: none;
	}*/
	.menu.menu-mobile input[type="checkbox"]:checked ~ .menu-dropdown {
		display: block;
		max-height: 200px;
	}
	.menu.menu-mobile .menu-sub {
		background: transparent;
		border: 0;
		border-radius: 0;
		padding: 0;
	}
	.menu.menu-mobile .menu-item {
		padding: 0 0 1rem 1.5rem;
		white-space: normal;
	}
	.menu.menu-mobile .menu-linkbox {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
	}
	.menu.menu-mobile .menu-link {
		font-size: 1rem;
		color: rgb(var(--color-text));
		letter-spacing: .1rem;
		margin: 0 0 0 .5rem;
		padding: 0;
	}
	.menu.menu-mobile .menu-sub .menu-link {
		font-size: .85rem;
		*margin: 0 0 0 .5rem;
		*padding: 0;
	}
	.menu.menu-mobile .menu-link:hover {
		color: #fff;
		text-shadow: 0px 0px 2px rgba(116,117,127,.75);
	}
	.menu.menu-mobile .menu-link .txt {

	}
	.menu.menu-mobile .menu-sub .menu-item {
		padding: 1rem 0 0rem .5rem;
	}
	.menu.menu-mobile .menu-sub .menu-link {
		
	}
	.menu.menu-mobile .drop-icon ._down,
	.menu.menu-mobile .drop-icon ._up {
		display: none;
	}
	/*.menu.menu-mobile  input[type="checkbox"]:checked ~ .menu-linkbox .drop-icon ._up {
		display: inline-block;
	}
	.menu.menu-mobile  input[type="checkbox"]:checked ~ .menu-linkbox .drop-icon ._down {
		display: none;
	}*/
	.menu.menu-mobile .menu-link {
		order: 2;
	}
	.menu.menu-mobile .drop-icon {
		order: 1;
		position: absolute;
		top: .5rem;
		left: 0;
		width: 1rem;
		height: 1rem;
		transform: translate(-100%, -50%);
	}
	.menu.menu-mobile .drop-icon::before {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transition: -webkit-transform 0.25s ease-in-out;
		transition: -webkit-transform 0.25s ease-in-out;
		transition: transform 0.25s ease-in-out;
		transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
	}
	.menu.menu-mobile .drop-icon::before,
	.menu.menu-mobile .drop-icon::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: -2px;
		width: 10px;
		height: 2px;
		background-color: rgb(var(--color-text));
	}
	.menu.menu-mobile  input[type="checkbox"]:checked ~ .menu-linkbox .drop-icon::before {
		-webkit-transform: none;
		transform: none;
	}
	.menu.menu-mobile .m-hide,
	.menu.menu-mobile .m-hide-txt .txt,
	.menu.menu-mobile .m-hide-icon i {
		display: none;
	}



.intro-links {
	position: relative;
}
@media (min-width: 768px) {
	.intro-links {
		height: 75vh;
	}
}
@media (min-width: 992px) {
	.intro-links {
		height: 100vh;
	}
}
.intro-links .intro-links__list,
.intro-links .intro-links__item {
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.intro-links .intro-links__list {
	display: flex;
	flex-direction: row;
}
@media (max-width: 767.98px) {
	.intro-links .intro-links__list {
		flex-direction: column;
	}
}
@media (min-width: 768px) {
	.intro-links .intro-links__list {
		flex-direction: row;
	}
	.intro-links .intro-links__item {
		flex: 1 3 100%;
	}
}
.intro-link {
	cursor: pointer;
	display: block;
	font-size: 0;
	height: 75vw;
	overflow: hidden;
	position: relative;
	width: 100%;
}
@media (max-width: 575.98px) {
	.intro-links__item.item-gray .intro-link {
		height: calc(75vw + var(--menu-h-sm));
	}
}
@media (min-width: 768px) {
	.intro-link {
		*height: 33.33333vh;
		height: 100%;
		min-height: 220px;
	}
	.intro-link::before {
		background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#ffffff));
		background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
		content: '';
		width: 100%;
		height: 290px;
		opacity: 0.46;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
}
.intro-link__background {}
.intro-link__image {
	*background-color: #FFF;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(1.01);
	transform: translate(-50%, -50%) scale(1.01);
	-webkit-transition: -webkit-transform 0.35s ease-in-out;
	transition: -webkit-transform 0.35s ease-in-out;
	transition: transform 0.35s ease-in-out;
	transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
/*@media (max-width: 1199.98px) {
	.intro-link__image {
		-webkit-transform-origin: 50% 0% !important;
		transform-origin: 50% 0% !important;
	}
}*/
.intro-link__body {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	height: 100%;
	position: relative;
	padding: 0 2rem 8rem 10%;
}
/*.intro-links__item:hover .intro-link__body {
	*display: flex;
}*/
.intro-link__body .view__title {
	font-size: 2.5rem;
	font-weight: 600;
	color: #fff;
}
.intro-link__body .view__btn {
	display: inline-block;
	font-size: .84rem;
	font-weight: 600;
	letter-spacing: .1rem;
	color: #fff;
	margin-top: 1rem;
	padding: .75rem 1.25rem;
	visibility: hidden;
}
.intro-links__item:hover .intro-link__body .view__btn {
	visibility: visible;
}
@media (max-width: 767.98px) {
	.intro-link__body {
		padding: 0 10% 10% 10%;
	}
	.intro-link__body span {
		font-size: 1.8rem;
	}
}

.intro-links__item.item-gray:hover .intro-link__image,
.intro-links__item.item-red:hover .intro-link__image,
.intro-links__item.item-yellow:hover .intro-link__image {
	-webkit-transform: translate(-50%, -50%) scale(1.05);
	transform: translate(-50%, -50%) scale(1.05);
}

.intro-links__item.item-gray:hover .intro-link__body {
	background-color: rgba(var(--color-gray),.4);
	color: rgb(var(--color-gray));
}
.intro-links__item.item-red:hover .intro-link__body {
	background-color: rgba(var(--color-red),.15);
}
.intro-links__item.item-yellow:hover .intro-link__body {
	background-color: rgba(var(--color-yellow),.15);
}

.intro-links__item.item-gray .intro-link__body .view__btn {
	background-color: rgb(var(--color-gray));
}
.intro-links__item.item-red .intro-link__body .view__btn {
	background-color: rgb(var(--color-red));
}
.intro-links__item.item-yellow .intro-link__body .view__btn {
	background-color: rgb(var(--color-yellow));
}
.intro-links__item .intro-link__body .view__btn:hover {
	background-color: #fff;
}
.intro-links__item.item-gray .intro-link__body .view__btn:hover {
	color: rgb(var(--color-gray));
}
.intro-links__item.item-red .intro-link__body .view__btn:hover {
	color: rgb(var(--color-red));
}
.intro-links__item.item-yellow .intro-link__body .view__btn:hover {
	color: rgb(var(--color-yellow));
}



.search__layer {
	overflow: hidden;
	width: 100%;
	height:0;
	transition: height 0.25s ease-in-out;
	**background-color: rgba(255,255,255,.4);
	background-color: rgba(var(--color-gray),.9);
	color: rgb(var(--color-text));
	z-index: 200;
	position: relative;
}
	.search__layer.active {
		height: 120px;
	}
	.search__form {
		height: 100%;
		width: 100%;
	}
	.search__form form {
		width: 100%;
	}
	.search__inputbox {
		**border-bottom: 1px solid rgb(var(--color-gray));
		border-bottom: 1px solid rgba(255,255,255,.3);
	}
	.search__input {
		background-color: transparent;
		flex:1 1 100%;
	}
	.search__input input{
		width: 100%;
		height: 3rem;
		background-color: transparent;
		border: 0;
		padding: 0;
		font-size: 1.75rem;
		font-weight: 600;
	}
	.search__button {
		flex:1 10 100%;
	}
	.search__button button {
		width: 100%;
		height: 100%;
		text-align: right;
		padding: 0;
		border: 0;
		background-color: transparent;
	}
	.searchOpenBtn,
	.searchCloseBtn {
		cursor: pointer;
	}
	.searchCloseBtn span {
		padding-right: 1rem;
		display: inline-block;
		font-size: 2rem;
		font-weight: 400;
	}
	@media (max-width: 575.98px) {
		.search__button {
			flex: 1 5 100%;
		}
	}
	@media (max-width: 767.98px) {
		.search__button {
			flex: 1 7 100%;
		}
	}
	.search__type {
		padding-top: .75rem;
		font-size: .80rem;
	}
	.search__type label {
		cursor: pointer;
		margin: 0;
		margin-right: 1rem;
	}
	.search__type input[type="radio"] {
		display: none;
	}
	.search__type input[type="radio"] + label > span.inp {
		position: relative;
		display: inline-block;
		margin: 0;
		width: .9rem;
		height: .9rem;
		background-color: #fff;
		border: 1px solid #333;
		border-radius: 50%;
		margin-right: .5rem;
		cursor: pointer;
	}
	.search__type input[type="radio"]:checked + label > span.inp::before {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: '';
		border: 2px solid #fff;
		border-radius: 50%;
		background-color: rgb(var(--color-red));
	}

.view-home .search__layer {
	background-color: rgba(255,255,255,.4);
}
.view-home .search__inputbox {
	border-bottom: 1px solid rgb(var(--color-gray));
}


.page__wrap {
	display: flex;
	flex-direction: row;
	align-content: stretch;
	flex:1;
}
.page__background {
	position: relative;
	flex: 1 3 100%;
}
.page__background-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: -webkit-transform 0.35s ease-in-out;
	transition: -webkit-transform 0.35s ease-in-out;
	transition: transform 0.35s ease-in-out;
	transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
.page__body {
	flex: 1 1 100%;
	*background-color: lightblue;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	*padding: 3rem;
}
.page__title {
	font-size: 1.75rem;
	font-weight: 500;
	margin-top: 2rem;
}
.page__content {
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.65;
	margin-top: 2rem;
}
.page__content p {
	margin: 1.25rem 0 0 0;
}
.page__content p:first-child {
	margin: 0;
}
.page__body .image_detail {
	color: #a9a9a9;
}


.image_detail {
	font-size: .85rem;
	font-weight: 200;
	letter-spacing: .1rem;
}
.image_detail .image_detail__row:first-child {
	margin-top: 6rem;
}
.image_detail__row {
	*margin-top: 1rem;
}
.image_detail__row label {
	display: inline-block;
	margin:0;
	padding-right: .5rem;
}
.image_detail__row div {
	display: inline-block;
}
.image_detail__row.image__title div {
	font-weight: 400;
	text-decoration: underline;
}
.image_detail__row.image__description {
	margin: 1rem 0;
}


.bt {
	margin-right: 1rem;
	padding: .5rem 1rem;
	text-transform: uppercase;
	cursor: pointer;
	letter-spacing: .1rem;
	font-size: .65rem;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 0;
	white-space: nowrap;
}
.bt.bt-1 {
	border: 1px solid #fff;
	color: #fff;
}
.bt.bt-1:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: rgb(var(--color-text));
}
.bt.bt-1.dark {
	border: 1px solid rgb(var(--color-text));
	color: rgb(var(--color-text));
}
.bt.bt-1.dark:hover {
	background-color: rgb(var(--color-text));
	border: 1px solid rgb(var(--color-text));
	color: #fff;
}

.bt.bt-2 {
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
	border-bottom: 1px solid rgb(var(--color-red));
	border-left: 1px solid rgb(var(--color-red));
	color: #fff;
}
.bt.bt-2.dark {
	color: rgb(var(--color-red));
}
.bt.bt-2:hover {
	background-color: rgb(var(--color-red));
	border: 1px solid rgb(var(--color-red));
	color: #fff;
}


._arrow {
	border-color: #000;
	border-style: solid;
	border-width: 0 3px 3px 0;
	display: inline-block;
}
._arrow._right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
._arrow._left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
._arrow._up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
._arrow._down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}


.timeline img {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

/*.timeline-row {
	position: relative;
}
.timeline-row:before {
	position: absolute;
	left: 46%;
	width: 2px;
	height: 100%;
	margin-left: -1px;
	content: "";
	background-color: rgb(255, 255, 255);
}
.timeline-row.lvl-3:before {
	background-color: rgb(var(--color-text));
}
@media (max-width: 767.98px) {
	.timeline-row:before {
		left: 40px;
	}
}*/


.timeline .c.t {
	*min-height: 100px;
	*background-color: orange;
}

/*.timeline-rows {
	display: none;
	*max-height: 0;
	*transition: max-height .5s ease-in-out;
}*/

.c.img .c_box,
.c.t .c_box {
	padding: 0 1rem 0rem 1rem;
}

.c .c_box {
	
}

.c.img img {
	width: 100%;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none
}

.timeline .c.l {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.timeline .line {
	position: relative;
	width: 2px;
	height: 100%;
	background-color: #fff;
}
.timeline .line::before {
	position: absolute;
	content: '';
	top: 0;
	left: -15px;
	width: 32px;
	height: 2px;
	background-color: #fff;
}
.line_space {
	width: 2px;
	min-height: 3rem;
	background-color: #fff;
}
.line_space._top{}
.line_space._bottom{}


.c_title {
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.65;
}
.c_text {
	margin-top: 1rem;
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.5;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/*display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;*/
}
.c_text p:last-child {
	margin-bottom: 0;
}

.tools {
	display: flex;
	align-items: flex-start;
	margin-top: 2rem;
}


.lvl-2 {
	background-color: #575757;
	display: none;
	*display: flex;
}
.lvl-2.open {
	display: flex !important;
}
.lvl-2 .c.img .c_box {
	padding: 0 1rem 0rem 4rem;
}


.lvl-3 {
	background-color: #FFF;
	color: rgb(var(--color-text));
	display: none;
	*display: flex;
}
.lvl-3.open {
	display: flex !important;
}
.lvl-3 .c.img .c_box {
	padding: 0 1rem 0rem 7rem;
}
.lvl-3 .line {
	background-color: rgb(var(--color-text));
}
.lvl-3 .line::before {
	background-color: rgb(var(--color-text));
}
.lvl-3 .line_space {
	background-color: rgb(var(--color-text));
}


@media (max-width: 767.98px) {
	.lvl-2 .c.img .c_box,
	.c.img .c_box, .c.t .c_box,
	.lvl-3 .c.img .c_box,
	.c_box {
		padding: 0;
	}
}



.lvl_close {
	position: relative;
	display: flex;
	display: -ms-flexbox;
	align-items: center;
	justify-content: flex-end;
}
.lvl_close-box {
	justify-content: flex-end;
	align-items: center;
}
.lvl_close-box .txt {
	width: 40%;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: .75rem;
	text-align: right;
	line-height: 1.15;
	letter-spacing: 0.075rem;
}
.lvl_close-box .icn {
	padding: 1rem;
}
.lvl_close-box .icn svg {
	width: 2rem;
	height: 2rem;
}
/*.lvl_close svg {
	width: 1.5rem;
	height: 1.5rem;
}*/
.lvl-1 .lvl_close-box svg polyline,
.lvl-2 .lvl_close-box svg polyline {
	fill: #fff;
}
.lvl-3 .lvl_close-box svg polyline {
	fill: rgb(var(--color-text));
}
.lvl-3 .lvl_close-box .txt {
	color: rgb(var(--color-text));
}


/*.experience-row.lvl-3 .c.t {
	border: 1px dashed rgb(var(--color-red));
	padding-top: 1rem;
	padding-bottom: 1rem;
}*/
.experience-row.lvl-3 .c.t .c_box {
	border: 1px dashed rgb(var(--color-red));
	padding: 1rem;
}
.experience-row.lvl-3 .c_pers_name {
	margin-bottom: .25rem;
	font-size: 1.15rem;
}
.experience-row.lvl-3 .c_title {
	font-weight: 400;
}
.experience-row.lvl-3 .c_text {
	font-size: 1rem;
	line-height: 1.35;
}

.experience_form {}
.experience_form .page__title {
	text-align: center;
}
.experience_form form {
	margin-top: 2rem;
	line-height: 1.65;
	font-size: 1.15rem;
}
.experience_form .form-row {
	flex-direction: column;
	margin: 0;
	margin-top: 1.5rem;
}
.experience_form label {
	color: rgb(var(--color-red));
	text-transform: uppercase;
	letter-spacing: .1rem;
}
.experience_form .text .input-row, 
.experience_form .textarea .input-row {
	border: 1px solid #a9a9a9;
	background-color: #fff;
}
.experience_form .text input {
	width: 100%;
	padding: .75rem;
	border: 0;
	background-color: transparent;
	letter-spacing: .1rem;
	font-weight: 300;
}
.experience_form .textarea textarea {
	width: 100%;
	min-height: 20rem;
	padding: .75rem;
	border: 0;
	background-color: transparent;
	letter-spacing: .1rem;
	font-weight: 300;
}


.experience_form .invalid-feedback {
	color: rgb(var(--color-red));
}
.experience_form  .input-row.is-invalid {
	border: 1px solid rgb(var(--color-red));
}

.experience_form .dropzone {
	border: 0;
	background: transparent;
	padding: 0;
}
.experience_form .dropzone .dz-message {

}
.experience_form .form-row.drop {
	padding-top: 0;
	margin: 3.5rem 0 2rem 0;
}
.experience_form .form-row.drop .input-row {
	border: 1px dashed  #a9a9a9;
	background-color: #f9f9f9;
}

.experience_form .form-row.button {
	align-items: center;
	justify-content: center;
	margin-top: 3rem;
	flex-direction: row;
}
/*.experience_form .form-row.button {
	cursor: pointer;
}*/
.experience_form .bt {
	margin-right: 3rem;
}
.experience_form .form-row.button .bt-2 {
	color: rgb(var(--color-text));
}
.experience_form .form-row.button .bt-2:hover {
	color: #fff;
}


.modal__window {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	transition: opacity .15s linear;
}
.modal__window img {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}
.modal__open {
	overflow: hidden;
	*padding-right: 17px;
}
.modal__wrap {
	position: relative;
	width: auto;
	min-height: 100%;
	*margin: var(--menu-h-sm) auto 0 auto;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out,-webkit-transform .3s ease-out;
	transform: none;
	background-color: #fff;
	color: rgb(var(--color-text));
}
.modal__body {
	position: relative;
	padding-top: calc(3rem + var(--menu-h-sm));
	padding-bottom: 3rem;
}
.modal__close {
	position: absolute;
	top: var(--menu-h-sm);
	right: 0;
	cursor: pointer;
	padding: 1rem;
	font-size: 3rem;
}
.modal__close .icn {
	font-size: 3rem;
	line-height: 1;
}
.modal__close .txt {
	font-size: 1rem;
	line-height: 1.25;
}
.modal__title {
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1.65;
}
.modal__content {
	margin-top: 1rem;
	font-size: 1.15rem;
	font-weight: 300;
	line-height: 1.65;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.modal__image {
	margin-top: 1.875rem;
}
.modal__image a {
	display: inline-block;
}
.modal__image img {
	width: 100%;
}

@media (max-width: 767.98px) {
	/*.modal__row .gallery__row {
		padding: 0 7.5px;
	}
	.modal__row .gallery__row:first-child,
	.modal__row .gallery__row:last-child {
		padding: 0 15px;
	}*/
}

.modal__nav {
	margin-top: calc(var(--menu-h-sm) * -1);
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.modal__nav-dir {
	width: 100%;
	justify-content: center;
	align-items: center;
}
.modal__nav-prev {
	margin-right: 1rem;
	justify-content: flex-end;
}
.modal__nav-next {
	margin-left: 1rem;
	justify-content: flex-start;
}
.modal__nav-prev,
.modal__nav-next {
	flex:1;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	*justify-content: center;
	align-items: center;
}
.modal__nav-prev .icn,
.modal__nav-next .icn {
	width: 2rem;
	height: 2rem;
	justify-content: center;
	align-items: center;
}
.modal__nav-prev .icn span,
.modal__nav-next .icn span {
	width: 1.5rem;
	height: 1.5rem;
}
.modal__nav-prev ._arrow,
.modal__nav-next ._arrow {
	border-color: rgb(var(--color-text));
	border-width: 0 4px 4px 0;
}
.modal__nav-prev .txt,
.modal__nav-next .txt {
	color: rgb(var(--color-text));
    font-size: .75rem;
    line-height: 1.15;
    letter-spacing: 0.075rem;
}
.modal__nav-prev:hover .txt,
.modal__nav-next:hover .txt {
	color: rgb(var(--color-red));
}
.modal__nav-prev.nolnk .txt,
.modal__nav-next.nolnk .txt {
	color: rgb(var(--color-gray));
}
.modal__nav-prev.nolnk ._arrow,
.modal__nav-next.nolnk ._arrow {
	border-color: rgb(var(--color-gray));
}


.modal__nav-close ._close {
	justify-content: flex-end;
	align-items: center;
}
.modal__nav-close .txt {
    width: 45%;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-text));
    font-size: .75rem;
    text-align: right;
    line-height: 1.15;
    letter-spacing: 0.075rem;
}
.modal__nav-close:hover .txt {
	color: rgb(var(--color-red));
}
.modal__nav-close .icn {
    padding: 1rem 0 1rem 1rem;
}
.modal__nav-close .icn svg {
    width: 2rem;
    height: 2rem;
}
.modal__nav-close .icn svg polyline {
    fill: rgb(var(--color-text));
}

.__zlvl_1 {
	z-index: var(--z-index-1);
}
.__zlvl_2 {
	z-index: var(--z-index-2);
}

.modal__open .header__menu {
	*padding-right: 17px;
	transition: none;
}
.modal__open__zlvl_1 .modal__window.__zlvl_1,
.modal__open__zlvl_2 .modal__window.__zlvl_2 {
	display: block;
	overflow-x: hidden;
	overflow-y: auto;
}

.modal__imageview {

}
.modal__imageview .modal__wrap {
	background-color: rgb(var(--color-bg));
}
.modal__imageview .modal__body {
	height: 100vh;
	padding: 0;
}
.modal__imageview .modal__close {
	*margin-top: var(--menu-h-sm);
	z-index: var(--z-index-2);
	color: var(--color-text);
}
.modal__imageview .modal__container {
	width: 100%;
	max-width: 100%;
	height: 100%;
	padding-left: 0;
	padding-right: 0;
	padding-top: var(--menu-h-sm);
}
.modal__imageview .modal__row {
	height: 100%;
	margin: 0;
}
.modal__imageview .col_image,
.modal__imageview .col_details {
	padding: 0;
}


.modal__imageview .col_image {
	align-items: center;
	justify-content: center;
	position: relative;
}
.modal__imageview .col_image img {
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - var(--menu-h-sm));
	transition: transform .4s cubic-bezier(.19,1,.22,1);
}
.modal__imageview .col_image:hover img {
	transform: scale(.85);
}


.modal__imageview .col_details {
	background-color: #fff;
	flex-direction: column;
	padding: 2rem;
}
.modal__imageview .col_detail-row {
	margin: 2rem 0 0 0;
	line-height: 1.15;
	font-weight: 300;
}
.modal__imageview .col_detail-row label {
	font-weight: 500;
	margin: 0;
}
.modal__imageview .col_detail-row span {
	
}

.modal__imageview .modal__nav {
	display: none;
}
.modal__imageview .modal__btn {
	position: absolute;
	top: calc(50vh - 2rem);
	width: 4rem;
	height: 4rem;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal__imageview .modal__btn span {
	border-color: #fff;
	width: 2rem;
	height: 2rem;
}
.modal__imageview .modal__btn-l,
.modal__imageview .modal__btn-l span {
	left: 0;
}
.modal__imageview .modal__btn-r,
.modal__imageview .modal__btn-r span {
	right: 0;
}
.col_image:hover .modal__nav {
	display: inline-block;
}


@media (max-width: 767.98px) {
	.modal__imageview .modal__wrap {
		background-color: #fff;
	}
	.modal__imageview .col_image:hover img {
		transform: scale(1);
	}
	.modal__imageview .modal__nav {
		display: inline-block;
	}
	.modal__imageview .modal__btn {
		top: auto;
	}
	.modal__imageview .modal__btn span {
		
	}
	.modal__imageview .modal__row {
		margin-top: 3.5rem;
	}
	.modal__close {
		padding: 0 1rem 0 0;
	}
}


.sc_image__box {
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1.5rem;
}
.sc_image__text {
	flex: 1;
}
.sc_image__text p:last-child,
.sc_image__text ul:last-child {
	margin-bottom: 0 !important;
}
.sc_image__text._dir-l {
	padding-right: 1rem;
}
.sc_image__text._dir-r {
	padding-left: 1rem;
}
.sc_image__figure {
	flex: 1;
	margin: 0;
}
.sc_image__figure img {
	width: 100%;
	height: auto;
}
.sc_image__figure figcaption {
	margin-top: .5rem;
	font-size: .75rem;
	line-height: 1.1;
}
.sc_image__text ul {
	padding: 0 0 0 1rem;
	margin: 0;
	margin-bottom: 1.5rem;
}
.sc_image__text li {
	padding-left: .25rem;
}

@media (max-width: 767.98px) {
	.sc_image__box {
		flex-direction: column;
	}
	.sc_image__text._dir-l,
	.sc_image__text._dir-r {
		padding: 0;
	}
	.sc_image__text._dir-l ~ .sc_image__figure,
	.sc_image__figure ~.sc_image__text._dir-r {
		margin-top: 1.5rem;
	}
}


.embed-responsive {
	margin: 2rem 0;
}