@charset "UTF-8";

:root {
	--color-transparent: transparent;
	--color-black: #2B2A29;
	--color-bg: #FAFAFA;	
	--color-yellow: #F1DA4E;
	--color-red: #E22024;
	--color-dark-red: #b80f0f;
	--color-white: #FCFBFB;
	--color-grey: #9b9b9b;
	--color-dark-grey:#B2B3B3;
	--color-blue: #22335C;
	--color-light-blue: #4C4E95;
	--color-green: #61A375;
	--color-neon-green: #91e3aa;
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;


	--a--border--width: 1px;
	--a--border--width--l: max(calc(var(--a--border--width, 1px) * 2), 2px);
    --a--border--width--xl: max(calc(var(--a--border--width, 1px) * 3), 3px);
    --a--border--width--xxl: max(calc(var(--a--border--width, 1px) * 4), 4px);
    --a--border--width--xxxl: max(calc(var(--a--border--width, 1px) * 6), 6px);
	--a--color: #ffffff;
    --a--color-rgb: 78, 79, 151;
    --a--color--accent: #dcc8fa;
    --a--color--accent-rgb: 220, 200, 250;
    --a--color--highlight: #fadcc8;
    --a--color--highlight-rgb: 250, 220, 200;
    --a--color--significant: #c8fafa;
    --a--color--significant-rgb: 200, 250, 250;
    --a--color--contrast: #000032;
    --a--color--contrast-rgb: 0, 0, 50;
    --a--color--background: #32327d;
    --a--color--background-rgb: 50, 50, 125;
    --a--color--background--down: #191964;
    --a--color--background--down-rgb: 25, 25, 100;
    --a--color--success-rgb: 150, 225, 175;
    --a--color--warning-rgb: 225, 175, 150;
    --a--color--error-rgb: 225, 150, 175;
    --a--link--color-rgb: var(--a--color-rgb);
    --a--link--color--active-rgb: var(--a--color--accent-rgb);
    --a--color--light: #fff;
    --a--color--light-rgb: 255, 255, 255;
    --a--color--dark: #000032;
    --a--color--dark-rgb: 0, 0, 50;
    --a--color--shadow-rgb: 0, 0, 50;
    --a--anchor--gutter: var(--f--anchor--gutter);
    --a--selection--color: var(--a--color--background);
    --a--selection--background-color: var(--a--color);
}

@media screen and (min-width: 1367px) {
    :root {
        --multiplier: 1;
        --header-height: calc(6.588579795vw * var(--multiplier));
        --h1-fz: calc(8.0527086384vw * var(--multiplier));
        --h2-fz: calc(5.270863836vw * var(--multiplier));
        --h3-fz: calc(2.9282576867vw * var(--multiplier));
        --h4-fz: calc(2.0497803807vw * var(--multiplier));
        --h5-fz: calc(1.756954612vw * var(--multiplier));
        --h6-fz: calc(1.4641288433vw * var(--multiplier));

    }
}	


.color-transparent {
	color: var(--color-transparent)
}

.bg-color-transparent {
	background-color: var(--color-transparent)
}

.color-black {
	color: var(--color-black)
}

.bg-color-black {
	background-color: var(--color-black)
}

.color-white {
	color: var(--color-white);
}

.bg-white {
	background-color: var(--color-white)
}

.color-grey {
	color: var(--color-gray)
}

.bg-grey {
	background-color: var(--color-gray)
}
.color-dark-grey {
	color: var(--color-dark-gray)
}

.bg-dark-grey {
	background-color: var(--color-dark-gray)
}

.color-blue {
	color: var(--color-blue)
}

.bg-blue {
	background-color: var(--color-blue)
}

.color-light-blue {
	color: var(--color-light-blue)
}

.bg-light-blue {
	background-color: var(--color-light-blue)
}

.color-green {
	color: var(--color-green)
}

.bg-green {
	background-color: var(--color-green)
}

.color-red {
	color: var(--color-red);
	-webkit-transition: color 200ms ease 0s;
	-o-transition: color 200ms ease 0s;
	transition: color 200ms ease 0s;
}

.bg-red {
	background-color: var(--color-red);

}

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

html,
body {
	background: var(--color-bg);
	scrollbar-gutter: stable;
	line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    text-size-adjust: 100%;
	font-size: 18px;
}

body,
p {
	font-family: 'Hero New', 'Arial', sans-serif;
	font-weight: 400;
	color: var(--color-black);
	font-size: 1rem;
	line-height: 1;
}

p {
	margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Hero New', 'Arial', sans-serif;
	margin: 0 0 15px;
	letter-spacing: -1px;
}

.h1,
h1 {
	font-size: clamp(2.5rem, 3vw, 4rem);
}

.h2,
h2 {
	font-size: 4rem;
	margin-bottom: 25px;
}

.h3,
h3 {
	font-size: 2rem;
	line-height: 1.4;
}

.h4,
h4 {
	font-size: 1.4rem;
	line-height: 1.8rem;
}

p,
a {
	line-height: 1.5rem;
}

a {
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
	text-decoration: none;
	outline: none;
	color: var(--color-blue);
	cursor: pointer;
}

a:hover,
a:focus {
	color: var(--color-light-blue);
}

p a {
	color: var(--color-blue);
}

p a:hover {
	color: var(--color-light-blue);
}

ul {
	margin: 0;
	padding: 0;
	margin-bottom: 8px;
}

ol li,
ul li {
	list-style: outside none none;
}

.list-with-bullet li {
	list-style: inside disc;
	padding-bottom: 5px;
}

.content ol li, 
.content ul li {
    list-style: inside disc;
	padding-bottom: 5px;
}

.content ul li::marker {
	color: var(--color-blue);
	font-size: 22px;
}

img {
	height: auto;
	max-width: 100%;
}

input,
button {
	outline: none !important;
}

strong,
.strong,
.bold {
	font-weight: 600;
}


button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	margin: 0;
	padding: 0
}

button:focus {
	outline: none
}

.btn-default {
	padding: 15px 30px 15px 20px;
	border-radius: 0px;
	outline: none;
	text-decoration: none;
	border: 1px solid var(--color-black);
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
	position: relative;
	letter-spacing: -0.1px;
	color: var(--color-black);
	background: transparent;
	cursor: pointer;
	display:flex;
	white-space: nowrap;
	align-items: center;
	justify-self: start;
}

.btn-default:hover {
	color: var(--color-white);
	background: var(--color-black);
	
}

button:disabled,
button[disabled],
button:disabled:hover{
  color: #d2d5db;
  background: #6c7589;
  cursor: not-allowed;
}

.btn-white {
	color: var(--color-black) !important;
	background: var(--color-white);
}

.btn-transparent {
	color: var(--color-white);
	background: transparent;
}

.btn-default .arrow,
.btn-default svg {
	height: 25px;
	margin-left: 15px;
}

.btn-default:hover svg {
	fill:var(--color-white);
}

.title-4 {
	font-size: 1.5rem;
    line-height: 2rem;
	margin-bottom: 20px;
}

.title-5 {
	font-size: 1.4rem;
	line-height: 1.7rem;
}


.subtitle {
	font-size: 16px;
	font-weight: 400;
	padding: 10px 0;
	color: #7c8075;
}

.detailed {
	position: relative;
	padding: 15px 0;
	font-size: 14px;
	margin: -70px 35px 0 0;
	float: right;
}

small,
.small,
p.small,
a.small {
	font-size: .8rem !important;
	line-height: 1.2em;
	font-weight:100;
}

.justifyleft {
	float: left;
}

.justifyright {
	float: right;
}

blockquote {
	padding: 10px 0 10px 30px;
	color: var(--color-green-maple);
	border-left: 2px solid var(--purple);
}

blockquote p {
	color: var(--color-green-maple);
}

fieldset {
    min-width: 0;
    padding: 0;
    margin-bottom: 1rem;
    border: 0;
    display: block;
    min-inline-size: min-content;
    margin-inline: 2px;
    border-width: 2px;
    border-style: groove;
    padding-block: 0.35em 0.625em;
    padding-inline: 0.75em;

}

.p-6 {
	padding: 4rem !important;
}


.pt-6 {
	padding-top: 4rem !important;
}

.pt-7 {
	padding-top: 5rem !important;
}


.pb-6 {
	padding-bottom: 4rem !important;
}

.pb-7 {
	padding-bottom: 5rem !important;
}

.py-6 {
	padding-bottom: 4rem !important;
	padding-top: 4rem !important;
}

.py-7 {
	padding-bottom: 5rem !important;
	padding-top: 5rem !important;
}

.px-7 {
	padding-left: 14rem;
	padding-right: 14rem;
}

.ps-7 {
	padding-left: 14rem;
}

.pe-7 {
	padding-right: 14rem;
}


.px-8 {
	padding-left: 19rem;
	padding-right: 19rem;
}

.ps-8 {
	padding-left: 19rem;
}

.pe-8 {
	padding-right: 19rem;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 990;
	background: #000000b3;
	display: none;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.blend-darken {
	mix-blend-mode: darken;
}

sub,
sup {
	font-size: .5em;
}

.w-lg-75{
	width: 75%;
}

.z-0{
	z-index: 0;
}

.cursor-pointer{
	cursor: pointer;
}



@media (max-width:1700px) {

	p {
		font-size: 0.95rem;
	}

	.ps-8 {
		padding-left: 6rem;
	}

	.px-8 {
		padding: 0 6rem;
	}

	.ps-8 {
		padding-left: 6rem;
	}

	.pe-8 {
		padding-right: 6rem;
	}

	.px-7 {
		padding: 0 3rem;
	}

	.ps-7 {
		padding-left: 3rem;
	}

	.pe-7 {
		padding-right: 3rem;
	}
	.h2, h2 {
		font-size: 3rem;
		margin-bottom: 25px;
	}

	.title-4 {
		font-size: 1.3rem;
		line-height: 2rem;
		margin-bottom: 20px;
	}

}


@media (max-width:1400px) {
    .h2, h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

}

@media (max-width:1200px) {
	p {
		margin-bottom: 0.5rem;
		font-size: 0.9rem;
        line-height: 1.4rem;
	}

    .content a {
		font-size: 0.9rem;
        line-height: 1.2rem;
    }

	li {
		font-size: 0.9rem;
		line-height: 1.3rem;
	}

	.px-8 {
		padding: 0 4rem;
	}

	.ps-8 {
		padding-left: 4rem;
	}

	.pe-8 {
		padding-right: 4rem;
	}

	.px-7 {
		padding: 0 2rem;
	}

	.ps-7 {
		padding-left: 2rem;
	}

	.pe-7 {
		padding-right: 2rem;
	}

	.pt-7 {
		padding-top: 1rem !important;
	}

	.p-6 {
		padding: 1rem !important;
	}

	.pt-6 {
		padding-top: 1rem !important;
	}

	.h2,
	h2 {
		font-size: 2.2rem;
		line-height: 2.4rem;
	}

	.h4,
	h4 {
		font-size: 1.3rem;
	}


	.title-4 {
		font-size: 1.0rem;
		line-height: 1.4rem;
	}

	.list_t li a {
		font-size: 20px;
	}

	.list_t li a i {
		font-size: 18px;
		line-height: unset;
	}
}


@media (max-width:990px) {

	html,
	body {
		height: auto;
	}

	.btn-icon {
		padding: 0;
	}

	.btn-default {
		padding: 10px 15px;
		margin: 0;
	}

}


@media (max-width:720px) {
	.px-7 {
		padding: 0.5rem;
	}

	.ps-7 {
		padding-left: 0.5rem;
	}

	.pe-7 {
		padding-right: 0.5rem;
	}

	.pt-6 {
		padding-top: 0.5rem !important;
	}

	.pt-7 {
		padding-top: 0.5rem !important;
	}

	.px-8 {
		padding: 0 1rem;
	}

	.ps-8 {
		padding-left: 1rem;
	}

	.pe-8 {
		padding-right: 1rem;
	}

	.justifyleft,
	.justifyright {
		float: none;
	}

	.btn-icon {
		padding: 0;
	}

	.h2,
	h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
		margin-bottom: 15px;
		letter-spacing: -0.5px;
	}

	.h3,
	h3 {
		font-size: 1.5rem;
		line-height: 1.9rem;
		letter-spacing: -0.5px;
	}

	.title-5 {
		font-size: 1.0rem;
		line-height: 1.3rem;
	}

	.btn-icon {
		background: var(--color-brightly-blue);
	}

	.btn-icon__t {
		margin-left: 0px;
		padding: 0 8px;
	}

	small,
	.small,
	p.small,
	a.small {
		font-size: .8em !important;
		line-height: 1.1em;
	}


}


/***********************************************************/
.body{
	height:100%;
	position: relative;
	z-index: 0;
}

.content {
	position: relative;
	margin-top: 0px;
    z-index: 0;
	overflow: hidden;
}

.section{
	position: relative;
}

.footer{
	position:relative;
}

@media (max-width:720px) {
	
}

/*********************************** MENU ***********************************************************************/
.header {
	width: 100%;
	position: fixed;
	top:0;
	left: 0;
    z-index: 5;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
	background: var(--color-white);
	padding: 20px 0;
}

.header.scrolled {
	position: fixed;
	left: 0;
	top: -200px;
	backdrop-filter: blur(3px);
	background:transparent;
	background: rgba(255, 255, 255, 0.8);
	padding: 0;
}

.header.scrolled.show-scrolled {
	top: -0px; 
}


.header__logo{
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.header__logo{
	height: 60px;
}

.header__logo-title{
	font-size: 1.3rem;
	color: var(--color-black);
	margin-left: 15px;
}

.header.scrolled.show-scrolled .header__logo{
	height: 55px;
    margin-top: 10px;
	margin-bottom: 10px;
}

.header__menuToggle svg{
	fill: var(--color-black);
	width: 30px;
	height: 40px;
}

.header-menu__ul{
	display: flex;
	justify-content: space-evenly;
}

.header-menu__li_a,
.header-menu__li{
	color:var(--color-black);
	-webkit-transition: 300ms ease-out;
	-o-transition: 300ms ease-out;
	transition: 300ms ease-out;
	line-height: normal;
    text-align: center;
}

.header-menu__li{
		padding: 0 20px 0 30px;
		position: relative;
		
}

.header-menu__li::before{
	content: '';
	position: absolute;
	height: 17px;
	width: 17px;
	left:0;
	top:5px;
	background-color: var(--color-black);
	-webkit-transition: 300ms ease-out;
	-o-transition: 300ms ease-out;
	transition: 300ms ease-out;
}

.header-menu__li:hover::before{
	background-color: var(--color-light-blue);
}

.header-menu__li::after{
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	left:0;
	bottom:-10px;
	background-color: var(--color-light-blue);
	-webkit-transition: 150ms ease-out;
	-o-transition: 150ms ease-out;
	transition: 150ms ease-out;
	transform: scaleX(0);
}

.header-menu__li:hover::after{
	transform: scaleX(1);
}

.header-menu__li_a{
	text-transform:uppercase;
	letter-spacing:-0.2px;
	font-size: 1.0rem;
	white-space: nowrap;
}

.header-menu__li_a:hover{
	color:var(--color-light-blue);
}

.header.scrolled.show-scrolled .header-menu__li_a{
	color: var(--color-black);
}

.header.scrolled.show-scrolled .header-menu__li_a:hover{
	color:var(--color-light-blue);
}

.header-menu__li.li_parent{
	position: relative;
}

.header-menu__li.li_parent .header-menu__li_a{
	display: flex;
	align-items: center;
}

.li_parent img{
	height: 15px;
	margin-left: 10px;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.header-menu__li:hover.li_parent img{
	transform: rotate(90deg);
}

.menu-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 50px;
	width: 50px;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.19, 1, .22, 1);
	transition: -webkit-transform .5s cubic-bezier(.19, 1, .22, 1);
	-o-transition: transform .5s cubic-bezier(.19, 1, .22, 1);
	transition: transform .5s cubic-bezier(.19, 1, .22, 1);
	transition: transform .5s cubic-bezier(.19, 1, .22, 1), -webkit-transform .5s cubic-bezier(.19, 1, .22, 1);
	will-change: transform;
}

.menu-btn .icon-menu {
	font-size: 24px;
}

.menu-btn:hover .icon-menu {
	font-size: 24px;
	color: var(--color-brightly-blue);
}

.menu-btn-close {
	color: var(--color-white);
}

@media (max-width:1500px) {
	.header {
		background: #FFF;
		background: linear-gradient(180deg,rgba(255, 255, 255, 0.75) 30%, rgba(255, 255, 255, 0) 100%);
	}

	.header__logo-title{
		font-size: 1.1rem;
		color: var(--color-black);
		margin-left: 12px;
	}
}


@media (max-width:1200px) {
	.header__logo-title {
		font-size: 1.1rem;
		margin-left: 10px;
	}

	.header-menu__ul{
		display: flex;
		justify-content: end;
	}
}



@media (max-width:990px) {

}


@media (max-width:720px) {
	.header__logo { height: 60px;		margin-top: 0; 	}
	.header.scrolled.show-scrolled .header__logo {
		height: 50px;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.header__logo-title {
		font-size: 1.0rem;
		line-height: 1.2rem;
	}



}



/******************************* sidebar *******************************************/
.sidebar {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100vh;
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-webkit-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: translate(-103%, 0);
	-ms-transform: translate(-103%, 0);
	transform: translate(-103%, 0);
	will-change: transform;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	-o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	z-index: 995;
	overflow: hidden;
}

.sidebar.view {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}


.sidebar-menu__li {
	padding: 5px 0 5px 0;
	margin-left: 15px;
	position: relative;
	cursor: pointer;
}

.sidebar-menu__li.active {
	font-weight: bold;
}

.sidebar-menu__li_li.active .icon-play {
	color: var(--color-black);
}

.sidebar-menu_li.active a {
	color: var(--color-yellow);
}

.sidebar-menu_li.active a:hover {
	color: var(--color-black);
}

.sidebar-menu__li .icon-up-open,
.sidebar-menu__li .icon-down-open {
	position: absolute;
	right: 20px;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.sideba-menu__li.open .icon-down-open {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sidebar-menu__li_a {
	display: block;
	color: var(--color-black);
}

.sidebar-menu__li_li {
	padding: 2px 0 2px 15px;
	margin: 0;
	font-weight: normal;
}

.sidebar-menu__li_li_a {
	font-weight: normal;
	font-size: 0.9rem;
}

.sidebar-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.sidebar-menu__close i {
    color: var(--color-grey);
    -webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
    font-size: 25px;
    cursor: pointer;
}


/*************  content  *****************************/

.hero{
	position: relative;
	background: var(--color-bg);
	margin-bottom: 30px;
	margin-top: 150px;
}

.hero__title{
	font-weight: 600;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    line-height: 100%;
}

.hero__title span{
	font-weight: 600;
    font-size: clamp(24px, 3.8vw, 3.0rem);
	color: var(--color-blue);
}

.hero-img__wrapper{
	display: flex;
	flex-direction: row;
	height: calc(100vh * 0.47); 
    width: calc(100% * 0.96);
    overflow: hidden;
    justify-self: center;
}

.hero-img__block{
	display: flex;
	justify-content: center;
	align-items: normal;
	flex-direction: row;
}

.about__title{
	background: url(images/bg_01.webp) no-repeat 100% 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	padding-right: 15%;
	min-height: 400px;
	font-weight: 600;
	color: var(--color-white);
	font-size: 5rem;
}

.about__title span{
	font-size: 12rem;
	margin-top: -20px;
}

.about__text_wrapper{
	padding: 50px;
	position: relative;	
}

.sq{
	position: absolute;
	height: 17px;
	width: 17px;
	background-color: var(--color-black);
}


@media (max-width:1200px) {

	.hero-img__block{
		flex-direction:column;
		align-items: center;
	}
	

}	


@media (max-width:720px) {
	.hero {
		margin-bottom: 0px;
		margin-top: 140px;
	}


	.hero__title{
		font-size: 2.5rem;
		line-height: 100%;
	}
	
	.hero__title span{
        font-size: 1.4rem;
        line-height: 1.8rem;
        display: inline-block;
	}

	.hero-img__wrapper {
		height: auto;
		width: auto;
	}

	.hero-img__block{
		display: block;
	}
}

/************************ about **************/

.corner_01{
	top:0; left:0;
}

.corner_02{
	top:0; right:0;
}

.corner_03{
	bottom:0; left:0;
}
.corner_04{
	bottom:0; right:0;
}

.bg_02{
    position: absolute;
    left: 1%;
    bottom: -50px;
    z-index: -1;
    height: 500px;
    opacity: 0.6;

}

.section__title{
	font-size: 2.5rem;
	font-weight: 300;
}

.borderline{
	position: relative;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	margin: 15px 0;
}

.border-b{
	border-bottom: 2px solid var(--color-grey);
}

.border-t{
	border-top: 2px solid var(--color-grey);
}

.lineend{
	position: relative;
}

.lineend::after{
    content: '';
    position: absolute;
    transform-origin: 0% 0%;
    top: 0;
    left: 100%;
    background: var(--color-black);
    height: calc(100% * 1.15);
    width: 1px;
	transform: rotate(30deg);
}

.ctc-logo{
	height: 90px;
}

@media (max-width:1200px) {
	.about__title span{
        font-size: 10rem;
        margin-top: 110px;
	}

	.section__title {
		font-size: 2.2rem;
	}

}


@media (max-width:720px) {
	.about__title{
		background: url(images/bg_01.webp) no-repeat 0 100%;
        padding-right: 10%;
        min-height: 200px;
        font-size: 2.5rem;
        align-items: start;
        padding-left: 10%;
        background-size: cover;
	}

	.about__title span{
		font-size: 4rem;
		margin-top: 20px;
	}

	.about__text_wrapper {
		padding: 30px;
	}

	.about__text_wrapper h4{
		font-size: 1.1rem;
	}

	.bg_02 {
		position: absolute;
		left: 25%;
		bottom: 65px;
		z-index: -1;
		height: 500px;
		opacity: 0.6;
		/* top: 50%; */
	}

	.section__title {
		font-size: 1.8rem;
		line-height: 2rem;
	}

	.lineend::after{
		width: 0px;
	}

	.border-t{
		border-top: 0px solid var(--color-grey);
	}
	

}


/************************************************************************/


.benefits{
	background-color: var(--color-blue);
	padding-bottom: 80px;
	position: relative;
	z-index: 0;
}

.benefits:before{
    content: '';
    position: absolute;
    right: 0;
    top: -170px;
    background: url(images/elem_01.svg) no-repeat 0 0;
    height: 170px;
    width: 286px;
}


.plate__wrapper{
background: #22335C;
background: linear-gradient(0deg,rgba(34, 51, 92, 1) 0%, rgba(78, 78, 150, 1) 100%);
border: 1px solid #42428C;
border-radius: 15px;
padding: 25px;
margin-bottom: 40px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-box-shadow: 0px 23px 16px 1px rgba(5, 5, 5, 0.8);
-moz-box-shadow: 0px 23px 16px 1px rgba(5, 5, 5, 0.8);
box-shadow: 0px 23px 16px 1px rgba(5, 5, 5, 0.8);
}


.plate__wrapper_v2{
	background: var(--color-white);
	border: 1px solid #42428C;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	}


.plate__header{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.partners .plate__wrapper{
	height: 94%;
}

.plate__wrapper_v2 .icons{
	fill: var(--color-blue);
}

.plate__title{
	color: var(--color-white);
	margin-left: 25px;
	font-size: 1.2rem;
	line-height: 2rem;
	font-weight: 600;
}

.plate__wrapper_v2 .plate__title{
	color: var(--color-blue);
	font-size: 1.2rem;
	line-height: 2rem;
	font-weight: 600;
	text-align: center;
}


.plate__legend{
	color: var(--color-white);
	font-size: 0.9rem;
	margin-top: 20px;
	text-align: center;
	font-weight: 300;
}



.f-glass--1 {
    --glass--mask--top: 30%;
    --glass--mask--center: 50%;
    --glass--mask--bottom: 70%;
    --glass--color: rgba(var(--a--color-rgb), 5%)
}

.f-glass--2 {
    opacity: 0
}

.f-glass--3 {
    --glass--mask--top: 55%;
    --glass--mask--center: 85%;
    --glass--mask--bottom: 100%;
    --glass--color--background: transparent
}

.f-glass--4,
.f-glass--5 {
    --glass--mask--center: 25%;
    --glass--mask--bottom: 75%;
    --glass--color: rgba(var(--a--color--background-rgb), 50%);
    --glass--color--background: transparent;
    --glass--color--border: rgba(var(--a--color--background-rgb), 50%)
}

.f-glass--6 {
    --glass--mask--top: -10%;
    --glass--mask--center: 20%;
    --glass--mask--bottom: 35%;
    --glass--color--background: transparent
}

.f-glass--7 {
    --glass--mask--top: 25%;
    --glass--mask--center: 40%;
    --glass--mask--bottom: 65%;
    --glass--color: rgba(var(--a--color--accent-rgb), 20%);
    --glass--color--background: transparent
}

.f-glass--8 {
    --glass--mask--top: 0%;
    --glass--mask--center: 30%;
    --glass--mask--bottom: 60%;
    --glass--color: rgba(var(--a--color--accent-rgb), 20%);
    --glass--color--background: transparent
}

.f-glass--9 {
    --glass--mask--top: 25%;
    --glass--mask--center: 45%;
    --glass--mask--bottom: 65%
}

.f-glass--10 {
    --glass--mask--top: 25%;
    --glass--mask--bottom: 90%
}

.f-glass {
    --glass--mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) var(--glass--mask--top, 0%), #000000 var(--glass--mask--center, 50%), rgba(0, 0, 0, 0) var(--glass--mask--bottom, 100%)) border-box;
    --glass--color: rgba(var(--a--color-rgb), 90%);
    --glass--color--background: rgba(var(--a--color--background--down-rgb), 40%);
    --glass--color--border: rgba(var(--a--color-rgb), 50%);
    background-image: linear-gradient(to right, var(--glass--color--background) 0, var(--glass--color--background) var(--a--border--width--l), var(--glass--color) calc(100% - var(--a--border--width--l)), var(--glass--color--border) 100%);
    -webkit-mask: var(--glass--mask);
    -webkit-mask-composite: xor;
    mask: var(--glass--mask);
    mask-composite: subtract;
	position: relative;
    z-index: 1;
}

.benefits .f-window {
    --glasses--columns: 10;
    --glasses--gap: 0px;
    --glasses--mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 50%, rgba(0, 0, 0, 0) 100%) border-box;
    display: grid;
    grid-template-columns: repeat(calc(var(--glasses--columns)), 1fr);
    grid-template-rows: 1fr;
    gap: 0;
    z-index: -1;
    position: absolute;
    top: 0;
	left:0;
	right: 0;
	width: 100%;
    height: 100%;
}


.sec-partners.f-window {
    --glasses--columns: 6;
    --glasses--gap: 0px;
    --glasses--mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 50%, rgba(0, 0, 0, 0) 100%) border-box;
    display: grid;
    grid-template-columns: repeat(calc(var(--glasses--columns)), 1fr);
    grid-template-rows: 1fr;
    gap: 0;
    z-index: -1;
    position: absolute;
    top: 0;
	left:0;
	right: 0;
	width: 80%;
    height: 100%;
}

.partners .plate__legend{
	text-align: left;
}


.footer .f-window {
    --glasses--columns: 4;
    --glasses--gap: 0px;
    --glasses--mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 50%, rgba(0, 0, 0, 0) 100%) border-box;
    display: grid;
    grid-template-columns: repeat(calc(var(--glasses--columns)),1fr);
    grid-template-rows: 1fr;
    gap: 0;
    z-index: -1;
    position: absolute;
    top: -70px;
	right: 0;
	width: 75%;
    height: 90%;
}

@media (max-width:992px) {
	.benefits:before {
		top: -80px;
		height: 80px;
		width: 190px;
	}

}	


@media (max-width:720px) {

	.benefits {
		padding-bottom: 10px;
	}

	.benefits:before {
		top: -70px;
		height: 70px;
		width: 146px;
	}

	.benefits .f-window {
		--glasses--columns: 6;
		width: 116%;
		height: 100%;
	}
	
	.plate__wrapper {
		border-radius: 10px;
		padding: 10px;
		margin-bottom: 30px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		-webkit-box-shadow: 0px 10px 16px 1px rgba(5, 5, 5, 0.8);
		-moz-box-shadow: 0px 10px 16px 1px rgba(5, 5, 5, 0.8);
		box-shadow: 0px 10px 16px 1px rgba(5, 5, 5, 0.8);
	}

	.plate__header{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.plate__img{
		height: 80px;
	}

	.plate__wrapper_v2 .plate__title {
		color: var(--color-blue);
		font-size: 0.8rem;
		line-height: 1.2rem;
		font-weight: 600;
		text-align: center;
		letter-spacing: -0.7px;
	}

	.plate__title {
		color: var(--color-white);
		margin-left: 0px;
		margin-top: 15px;
		font-size: 0.8rem;
		line-height: 1.2rem;
		text-align: center;
	}

	.plate__legend {
		font-size: 0.9rem;
		margin-top: 15px;
	}

}

/********************************** how we works *******************************************/
.hww{
	margin-top: 80px;
	
}

.hwworks{
	background: #EEF0EF;
	overflow: hidden;
	cursor: pointer;
}

.hww__wrapper[data-iteration="2"]{
	padding-right: 150px;
}
	

.hww__wrapper[data-iteration="4"]{
	padding-right: 100px;
}

.hww__wrapper[data-iteration="6"]{
	padding-right: 50px;
}

.iteration{
	border-bottom: 1px solid var(--color-black);
	position: relative;
}

.hww__wrapper[data-iteration="3"] .iteration, 
.hww__wrapper[data-iteration="4"] .iteration,
.hww__wrapper[data-iteration="3"] .hww__title,
.hww__wrapper[data-iteration="4"] .hww__title{
	padding-left: 100px;
}

.hww__wrapper[data-iteration="5"] .iteration, 
.hww__wrapper[data-iteration="6"] .iteration,
.hww__wrapper[data-iteration="5"] .hww__title,
.hww__wrapper[data-iteration="6"] .hww__title{
	padding-left: 150px;
}

.hww__wrapper[data-iteration="7"] .iteration, 
.hww__wrapper[data-iteration="8"] .iteration,
.hww__wrapper[data-iteration="7"] .hww__title,
.hww__wrapper[data-iteration="8"] .hww__title{
	padding-left: 200px;
}


.hww__wrapper .iteration:before{
	content: '';
	position: absolute;
	bottom:-20px;
	width: 1px;
	height: 35px;
	background: var(--color-black);
}

.hww__wrapper .iteration:after{
	content: '';
	position: absolute;
	bottom:-7px;
	width: 1px;
	height: 35px;
	background: var(--color-black);
}

.hww__wrapper[data-iteration="1"] .iteration:before,
.hww__wrapper[data-iteration="2"] .iteration:before{
	left: 0px;
}


.hww__wrapper[data-iteration="1"] .iteration:after,
.hww__wrapper[data-iteration="2"] .iteration:after{
	left: 65px;
}


.hww__wrapper[data-iteration="3"] .iteration:before,
.hww__wrapper[data-iteration="4"] .iteration:before{
	left: 100px;
}


.hww__wrapper[data-iteration="3"] .iteration:after,
.hww__wrapper[data-iteration="4"] .iteration:after{
	left: 165px;
}

.hww__wrapper[data-iteration="5"] .iteration:before,
.hww__wrapper[data-iteration="6"] .iteration:before{
	left: 150px;
}


.hww__wrapper[data-iteration="5"] .iteration:after,
.hww__wrapper[data-iteration="6"] .iteration:after{
	left: 215px;
}


.hww__wrapper[data-iteration="7"] .iteration:before,
.hww__wrapper[data-iteration="8"] .iteration:before{
	left: 200px;
}


.hww__wrapper[data-iteration="7"] .iteration:after,
.hww__wrapper[data-iteration="8"] .iteration:after{
	left: 265px;
}



.iteration .i-num{
	color: var(--color-blue);
	font-size: 2rem;
	margin: 0 0 10px 10px;
	line-height: 2.5rem;

}


.hww .owl-nav{
	position: absolute;
    top: calc(50% - 50px);
	width: 100%;
	z-index: 10;

}

.hww .owl-prev{
	left:-120px;
}

.hww .owl-next{
	right:50px;
	
}

.hww_grad{
	position: absolute;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	background: #EEF0EF;
	background: linear-gradient(90deg,rgba(238, 240, 239, 0) 0%, rgba(238, 240, 239, 1) 50%);
	z-index: 5;
	backdrop-filter: blur(2px);
	mask: linear-gradient(90deg,rgba(238, 240, 239, 0) 0%, rgba(238, 240, 239, 1) 50%);
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
	opacity: 1;
}

.hww_grad.disabled{
	opacity: 0;
}




.hwworks .customBtn {
	position: absolute;
	top: calc(50% - 0px);
	width: 100%;
	z-index: 10;
}

.hwworks .customPrevBtn,
.hwworks .customNextBtn{
	position: absolute;
}


.hwworks .customPrevBtn svg,
.hwworks .customNextBtn svg{
	fill: #22335c;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
	height: 85px;
	width: 50px;
}


.hwworks .customPrevBtn.disabled,
.hwworks .customNextBtn.disabled{
	cursor: default;
}

.hwworks .customPrevBtn.disabled svg,
.hwworks .customNextBtn.disabled svg{
	fill: #cfdaff;
}

.hwworks .customPrevBtn{
	left:-120px;
}

.hwworks .customNextBtn{
	right:50px;
}

@media (max-width:720px) {


	.hww_grad{
		top: 0;
		width: 80px;
		height: 100%;
	}

	.hww {
		margin: 20px 0;
	}

	.hww__wrapper,
	.hww__wrapper p{
		line-height: 1.4rem;
        font-size: 0.8rem;
    }

	.hwworks .customBtn {
		position: absolute;
		top: auto;
		width: 16%;
		z-index: 10;
		bottom: 5px;
		right: -30px;
	}

	.hwworks .customPrevBtn svg,
	.hwworks .customNextBtn svg{
		height: 42px;
		width: 25px;
	}	


.hww__wrapper[data-iteration="1"], 
.hww__wrapper[data-iteration="2"],
.hww__wrapper[data-iteration="3"], 
.hww__wrapper[data-iteration="4"],
.hww__wrapper[data-iteration="5"], 
.hww__wrapper[data-iteration="6"]{
	padding-left: 0px;
	padding-right: 0px;
}

.hww__wrapper[data-iteration="3"] .iteration, 
.hww__wrapper[data-iteration="4"] .iteration,
.hww__wrapper[data-iteration="5"] .iteration, 
.hww__wrapper[data-iteration="6"] .iteration,
.hww__wrapper[data-iteration="7"] .iteration, 
.hww__wrapper[data-iteration="8"] .iteration
{
	padding-left: 0px;
	padding-right: 0px;
}

.hww__wrapper[data-iteration="3"] .hww__title,
.hww__wrapper[data-iteration="4"] .hww__title,
.hww__wrapper[data-iteration="5"] .hww__title,
.hww__wrapper[data-iteration="6"] .hww__title,
.hww__wrapper[data-iteration="7"] .hww__title,
.hww__wrapper[data-iteration="8"] .hww__title{
	padding-left: 0px;
	padding-right: 10px;
}


.hww__wrapper[data-iteration="1"] .iteration:before,
.hww__wrapper[data-iteration="2"] .iteration:before,
.hww__wrapper[data-iteration="3"] .iteration:before,
.hww__wrapper[data-iteration="4"] .iteration:before,
.hww__wrapper[data-iteration="5"] .iteration:before,
.hww__wrapper[data-iteration="6"] .iteration:before,
.hww__wrapper[data-iteration="7"] .iteration:before,
.hww__wrapper[data-iteration="8"] .iteration:before{
	left: 0px;
}


.hww__wrapper[data-iteration="1"] .iteration:after,
.hww__wrapper[data-iteration="2"] .iteration:after,
.hww__wrapper[data-iteration="3"] .iteration:after,
.hww__wrapper[data-iteration="4"] .iteration:after,
.hww__wrapper[data-iteration="5"] .iteration:after,
.hww__wrapper[data-iteration="6"] .iteration:after,
.hww__wrapper[data-iteration="7"] .iteration:after,
.hww__wrapper[data-iteration="8"] .iteration:after{
	left: 65px;
}

}




/*******************************************************************************************/

.fotos__wrapper{
border-radius: 25px;
overflow: hidden;
cursor: pointer;
}

.models__menu_li{
	list-style: none !important;
	position: relative;
	padding: 25px 0;
	font-weight: 300;
	cursor: pointer;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
}

.models__menu_li.v2{
border: 1px solid #ccccf7;
border-radius: 10px;
}
 
.models__menu_li.v2.active{
	border: 1px solid var(--color-blue);
	}

.models__menu_li:hover{
	color: var(--color-light-blue);
}

.models__menu_li.active{
	color: var(--color-light-blue);
}


.models__menu_li.active span{
	position: relative;
	font-size: 2.5rem;
}

.models__menu_li span::after{
	position: absolute;
	content: '';
	top: 8px;
	left: 130%;
	width: 90px;
	height: 45px;
	background: url(images/arrow_models_menu.svg) no-repeat 0 0;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
	opacity: 0;
	transform: translateX(-20px);
}

.models__menu_title{
	position: relative;
	font-size: 1.5rem;
	display: inline-block;
	margin: 20px 0 0 -15px;
}

.models__menu_title::after{
	position: absolute;
	content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 6.91 3.45'><path d='M6.61 1.8H0v-.15h6.61L4.89.11l.1-.11 1.92 1.73-1.92 1.72-.1-.1z' /></svg>");
    top: -3px;
    left: 105%;
    width: 30px;
    height: auto;
    fill: #4C4E95;
    -webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
    opacity: 0;
    transform: translateX(-20px);
}


.models__menu_li.active span::after{
	opacity: 1;
	transform: translateX(0px);
}

.models__menu_li.active .models__menu_title::after{
	opacity: 1;
	transform: translateX(0px);
}

.models_menu_li_img-preview{
	width: 200px;
    height: auto;
}

.models__wrapper{
	position: relative;
    margin-top: -50px;
}

.models__wrapper_content{
	position: relative;
	height: 0; 
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 350ms ease 0s;
    -o-transition: opacity 350ms ease 0s;
    transition: opacity 350ms ease 0s;	
}

.models__wrapper_content.active{
	opacity: 1;
	height: 100%; 
	visibility: visible;
}

.models__wrapper_content .longtitle{
margin: 25px 0;
font-size: 1.2rem;
font-weight: 600;
}

.models__wrapper_content .summary{
	line-height: 1.5rem;
	font-size: 1rem;
	}


	@media (max-width:1500px) {


		.models__menu_li.v2 {
			margin: 0 10px;
		}
	
		.models_menu_li_img-preview{
			width: 150px;
			height: auto;
		} 
	}


@media (max-width:1000px) {


	.models__menu_li.v2 {
		margin: 0 5px;
	}

	.models_menu_li_img-preview{
		width: 100px;
		height: auto;
	} 

	.models__menu_title {
		font-size: 1.2rem;
	}
}
	
	@media (max-width:720px) {

		.models__menu_li {
			font-size: 1.8rem;
			padding: 15px 0;
		}

		.models__menu_li span::after{
			top: 8px;
			left: 130%;
			width: auto;
			height: 20px;
			background-size: contain;
		}		

		.models__wrapper {
			margin-top: 0;
		}
		.models__menu_title {
			font-size: 1.0rem;
		}

		.models__wrapper_content .longtitle {
			margin: 20px 0 0 0;
			font-size: 1.1rem;
			line-height: 1.5rem;
		}		

		.models__wrapper_content .summary {
			line-height: 1.3rem;
			font-size: 0.8rem;
		}

		.models__menu_title::after{

			top: -3px;
			left: 105%;
			width: 20px;
			height: auto;
		}

	}



	/********************************************************************************************/


	.part .customBtn {
		position: absolute;
		top: calc(50% - 0px);
		width: 100%;
		z-index: 10;
	}
	
	.part .customPrevBtn,
	.part .customNextBtn{
		position: absolute;
	}
	
	
	.part .customPrevBtn svg,
	.part .customNextBtn svg{
		fill: #dee5f5;
		width:50px;
		height:85px;
		-webkit-transition: all 350ms ease 0s;
		-o-transition: all 350ms ease 0s;
		transition: all 350ms ease 0s;
	}
	
	
 .part .customPrevBtn{
		left:-80px;
	}
	
	.part .customNextBtn{
		right:-50px;
	}

@media (max-width:1700px) {

	.part .customPrevBtn svg, .part .customNextBtn svg {
		fill: #dee5f5;
		width: 35px;
		height: 60px;
		-webkit-transition: all 350ms ease 0s;
		-o-transition: all 350ms ease 0s;
		transition: all 350ms ease 0s;
	}
	.part .customPrevBtn{
		left:-20px;
	}
	
	.part .customNextBtn{
		right:20px;
	}

}		



@media (max-width:720px) {
	
		.sec-partners.f-window {
			--glasses--columns: 4;
			width: 160%;
			height: 100%;
		}

		.part .customBtn {
			position: absolute;
			top: auto;
			width: 25%;
			z-index: 10;
			bottom: 0px;
			left: calc(50% - 40px);
		}

		.part .customBtn  svg{
			width:25px;
			height:42px;
		}
	}	

/************************************************************************************************/	

	.background{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 990;
		background: var(--color-bg);
		opacity: 0;	
		pointer-events: none;	
		-webkit-transition: opacity 350ms ease 0s;
		-o-transition: opacity 350ms ease 0s;
		transition: opacity 350ms ease 0s;
		overflow-y: auto;
	}

	.background.show{
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 1;	
		pointer-events: auto;	
	}

	.m--content{
		position: relative;
		overflow-y: auto;
	}

	.a--label{
		padding: 6px 20px;
		color: var(--color-white);
		background: var(--color-black);
		margin: 0px 10px 5px 0;
	}


	.m--content ul {
		padding-left: 27px;
		text-indent: -27px;
	}

	.m--content li{
    list-style: inside disc;
	padding-bottom: 5px;
	line-height: 1.4rem;
}

	.m--content::marker {
	color: var(--color-blue);
	font-size: 22px;
}


.modal__close--x {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
	z-index:999;
} 
.modal__close--x svg{
	width: 80px;
	height: 80px;
	fill: var(--color-black);
}

.modal__back--x {
	position: absolute;
	bottom: 10px;
    left: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
  }

.modal__back--x svg{
	width: 80px;
	height: 40px;
	fill: var(--color-black);
	margin-right: 10px;
}

.map{
	position:relative;
	width:100%;
	height:100%;
}


@media (max-width:1200px) {

	.background.show {
		align-items: start;
	}

}	

@media (max-width:720px) {
	.map{
		width: 100%;
        height: 500px !important;
        display: inline-block;
	}



	.m--content{
		padding: 50px 0;
	}

	.a--label{
		padding: 4px 10px;
		color: var(--color-white);
		background: var(--color-black);
		margin: 0px 10px 5px 0;
		font-size: 1rem;
	}

	.a--text{
		font-size: 0.9rem;
	}

	.m--content  p, .m--content a, .m--content li {
        line-height: 1.2rem;
        font-size: 0.8rem;
    }
	.modal__close--x svg {
		width: 45px;
		height: 45px;
	}

  
	.modal__back--x svg{
		width: 50px;
		height: 25px;
		fill: var(--color-black);
		
	}
	
}













.owl-nav{
	position: absolute;
    top: calc(50% - 15px);
	width: 100%;
}

.owl-prev,
.owl-next{
position: absolute;
width: 30px;
height: 30px;
}

.owl-prev{
	left:-80px;
}

.owl-next{
	right:-55px;
}

.news .owl-nav{
	position: absolute;
	bottom: -10px;
	width: 80px;
	left: calc(50% - 40px);
	top: auto;
}

.news .owl-prev{
	left:0px;
}

.news .owl-next{
	right:0px;
}


.carousel-custom-dot{
	display: flex;
}


.carousel-custom-dots{
text-align: center;
margin-top: 20px;

}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    scale: 1;
}

.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item  {
    height: 100%;
}

@media (max-width:1500px) {

}

@media (max-width:1200px) {
p, a {
    line-height: 1.5rem;
    font-size: 0.9rem;
}

}

@media (max-width:720px) {

	
}

@media screen and (max-height: 600px) {
  


}


/*************************** table ********************************/

.table td,
.table th {
	padding: 1rem .5rem;
	vertical-align: middle;
	border-top: 2px solid #EBECEC;
	border-bottom: 2px solid #EBECEC;
	font-size: 1.0rem;
}


.table tr:nth-child(even){
	background:#E8ECEF;
}

.table td:nth-child(1){
	font-weight:bold;
/*	width:70%; */
}

.table td:nth-child(2){
	border-left: 2px solid #EBECEC;
	text-align:center;
}

@media (max-width:720px) {
.table td, .table th {
    padding: 0.8rem .3rem;
    font-size: 0.9rem;
}

}

/************************** video ***********************************/


/*
отношение сторон 1:1 = 1 / 1 = 1 = padding-top: 100%
отношение сторон 4:3 = 3 / 4 = 0.75 = padding-top: 75%
отношение сторон 3:2 = 2 / 3 = 0.66666 = padding-top: 66.67%
отношение сторон 16:9 = 9 / 16 = 0.5625 = padding-top: 56.25%
*/

.video-player {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video__wrapper {
    border-radius: 20px;
    overflow: hidden;
	position:relative;
	margin-top:30px;
}


.plyr--stopped.plyr--video .plyr__controls {
	opacity: 0;
	pointer-events: none;
  }
  .plyr--stopped.plyr--video.plyr--init-play .plyr__controls {
	opacity: 1;
	pointer-events: inherit;
  }
  button.plyr__control.plyr__control--overlaid[data-plyr="play"] {
	background: var(--color-blue);
	border: solid 2px rgba(255, 255, 255, 0.2);
	height: 100px;
	width: 100px;
  }
  button.plyr__control.plyr__control--overlaid[data-plyr="play"] svg {
	width: 60px;
	height: 60px;
	left: 10px;
  }

  button.plyr__control.plyr__control--overlaid[data-plyr="play"] svg use{
	scale: 3.3;
  }

  button.plyr__control.plyr__control--overlaid[data-plyr="play"]:hover {
	background: var(--color-blue);
	border: solid 2px rgba(255, 255, 255, 0.8);
  }
  
  button.plyr__control.plyr__control--overlaid[data-plyr="play"]:before {
	content: "";
	position: absolute;
	width: 200%;
	height: 200%;
	top: -50%;
	left: -50%;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate1 3s;
	animation: pulsate1 3s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, 0.75);
	background-color: rgba(198, 16, 0, 0);
	transition: border 2s; 
  }
  
  button.plyr__control.plyr__control--overlaid[data-plyr="play"]:hover:before {
	border: 5px solid rgba(255, 255, 255, 0.4);
  }
  
  @-webkit-keyframes pulsate1 {
	0% {
	  -webkit-transform: scale(0.5);
	  transform: scale(0.5);
	  opacity: 0;
	  box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
		0px 0px 25px 10px rgba(255, 255, 255, 0.75);
	}
	50% {
	  opacity: 1;
	  transform: scale(0.55);
	}
	100% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 0;
	  box-shadow: none;
	}
  }
  
  @keyframes pulsate1 {
	0% {
	  -webkit-transform: scale(0.5);
	  transform: scale(0.5);
	  opacity: 0;
	  box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
		0px 0px 25px 10px rgba(255, 255, 255, 0.75);
	}
	50% {
	  opacity: 1;
  
	  transform: scale(0.55);
	}
	100% {
	  -webkit-transform: scale(1, 1);
	  transform: scale(1);
	  opacity: 0;
	  box-shadow: none;
	}
  }

  

@media (max-width:720px) {


}

/*****************   fancybox  ***********************************/

.fancybox-toolbar {
    right: 15px;
    top: 5px;
}

.fancybox-button svg path {
    fill: var(--color-yellow);
}

.layer-view{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0; left: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}
.layer-view i{
	font-size: 3rem;
	color: rgba(255,255,255,0.4) !important;
}

a[data-fancybox]:hover  .layer-view{
	opacity: 1;
}

.line-on-bottom-move{
	background: var(--color-yellow);
	position: absolute;
	bottom: 0;
	left:0;
    height: 60px;
    color: var(--color-black);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;

	transform: translateY(35px) scaleY(0.5);
	
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}


.bg-move-wrapper{
	position: relative;
	height: 100%;
	display: block;
	overflow: hidden;
}

.bg-move{
	background: rgba(44,46,61,0.5);
	position: absolute;
	bottom: 0;
	left:0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: translateY(100%);
	opacity: 0;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.zoom{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--color-yellow);
	display: flex;
	align-items: center;
    justify-content: center;
}


a[data-fancybox]:hover  .line-on-bottom-move{
	transform: translateY(0px)  scaleY(1);
}

a[data-fancybox]:hover  .bg-move{
	transform: translateY(0px);
	opacity: 1;
}



/*************************************** slider ***********************************/

.owl-dots {
	padding: 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.owl-dot {
	width: 15px;
	height: 15px;
	background: var(--color-light-gray);
	border-radius: 100%;
	border: 2px solid #ffffff;
	margin: 0 5px;
}

.owl-dot.active {
	background: var(--color-blue);

}

.slider-control {
	position:absolute;
	cursor:pointer;
}

.slider-control svg{
	fill:#e31e24;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.slider-control:hover svg{
	fill:#fff;
}

.slider-control_rel {
	position:relative;
	cursor:pointer;
}

.gallery__wrapper{
	height: 440px;
    display: flex;
    flex-direction: column;
}

.gallery__wrapper img{
    height: 140%;
    object-fit: cover;
}


/************************* runing line *************************************/

.r-line_wrapper{
	width:100%;
	height:80px;
	background:var(--color-white);
	border-top:2px solid var(--color-black);
	border-bottom:2px solid var(--color-black);
	display:flex;
	align-items:center;
	overflow: hidden;
}

.r-line_line,
.r-line_line p{
	font-size:1.6rem;
	white-space: nowrap;
	width:100%;
	display: inline-block;
	animation: scroll 15s linear 1s infinite;
    animation-play-state: running;
    animation-delay: 0s;
    animation-direction: normal;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}



@media (max-width:720px) {
	.r-line_line,
	.r-line_line p{
		font-size:1.4rem;
		animation: scroll 5s linear 1s infinite;
	}

}

/*********************** FOOTER ****************************/



.footer {
	width: 100%;
	color: var(--color-white);
	background: var(--color-blue);
	padding:80px 0 50px 0;
	position: relative;
}

.footer:before{
    content: '';
    position: absolute;
    left: -30px;
    top: -170px;
    background: url(images/elem_01.svg) no-repeat 0 0;
    height: 170px;
    width: 286px;
	transform: scaleX(-100%);
}


.footer__logo{
	height: 80px;
}

.footer__logo-title{
	font-size: 1.4rem;
	color: var(--color-white);
	margin-left: 15px;
}

.sidebar__logo-title{
	font-size: 1.4rem;
	color: var(--color-black);
	margin-left: 25px;
}


.footer p {
	color: var(--color-white);
}

.footer a {
	color: var(--color-white);
}

.footer a:hover {
	color: #b0b1dd;
}


.footer-menu__ul{
	display: flex;
	justify-content: space-evenly;
}


.footer-menu__li_a,
.footer-menu__li{
	color:var(--color-white);
	-webkit-transition: 300ms ease-out;
	-o-transition: 300ms ease-out;
	transition: 300ms ease-out;
	line-height: normal;
    text-align: center;
}

.footer-menu__li{
		padding: 0 20px 0 30px;
		position: relative;
}

.footer-menu__li::before{
	content: '';
	position: absolute;
	height: 17px;
	width: 17px;
	left:0;
	top:5px;
	background-color: var(--color-white);
}

@media (max-width:1700px) {
	.footer:before {
		left: -130px;
		top: -70px;
		height: 70px;
		width: 283px;
	}
}

@media (max-width:1200px) {

}


@media (max-width:720px) {

	.footer {
		padding: 50px 0 0px 0;
	}

	.footer__logo-title{
		font-size: 1.0rem;
		color: var(--color-white);
		margin-left: 15px;
		line-height: 1.2rem;
	}



	.footer-menu__ul{
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
	}

	.footer-menu__li::before {
		height: 0px;
		width: 0px;
	}


}


/******************************************  modal  ***************************/

.s-modal { display: none; }
.order-modal { display: none; } 


.modal--show,
.modal--hide { display: flex; } 
.modal--align {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.modal__container {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 800px;
  padding: 20px;
  margin: 12px;
  background: #fff;
}


.s-modal.modal--show {
  animation: modal-open 0.3s;
}

@keyframes modal-open {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}

/* Close */
.s-modal.modal--hide {
  animation: modal-close 0.3s;
}

@keyframes modal-close {
  0%    { opacity: 1; }
  100%  { opacity: 0; }
}


@media (max-width:720px) {}




/***************************************** FORMS ***************************************************/



::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #c7c7c7;
	font-size: 0.85rem;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #c7c7c7;
   opacity:  1;
   font-size: 0.85rem;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #c7c7c7;
   font-size: 0.85rem;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
font-size: 0.85rem;
   color:    #c7c7c7;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #c7c7c7;
   font-size: 0.85rem;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #c7c7c7;
   font-size: 0.85rem;
}

/***************************  ANIMATION *******************************/

.animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}


.glow{
	animation: neon 3s infinite;
}

@keyframes neon {
	0% {
	  text-shadow: 
		-1px -1px 1px var(--shadow-color-light), 
		-1px 1px 1px var(--shadow-color-light), 
		1px -1px 1px var(--shadow-color-light), 
		1px 1px 1px var(--shadow-color-light),
		0 0 3px var(--shadow-color-light), 
		0 0 5px var(--shadow-color-light),
		0 0 10px var(--shadow-color-light),
		0 0 15px var(--shadow-color), 
		0 0 20px var(--shadow-color), 
		0 0 25px var(--shadow-color), 
		0 0 30px var(--shadow-color), 
		0 0 40px var(--shadow-color),
		0 0 50px var(--shadow-color);
	}

	50% {
	  text-shadow:
		-1px -1px 1px var(--shadow-color-light), 
		-1px 1px 1px var(--shadow-color-light), 
		1px -1px 1px var(--shadow-color-light), 
		1px 1px 1px var(--shadow-color-light),
		0 0 5px var(--shadow-color-light), 
		0 0 10px var(--shadow-color-light),
		0 0 15px var(--shadow-color-light),
		0 0 20px var(--shadow-color), 
		0 0 24px var(--shadow-color), 
		0 0 30px var(--shadow-color), 
		0 0 40px var(--shadow-color), 
		0 0 50px var(--shadow-color),
		0 0 60px var(--shadow-color);
	}

	100% {
	  text-shadow: 
		-1px -1px 1px var(--shadow-color-light), 
		-1px 1px 1px var(--shadow-color-light), 
		1px -1px 1px var(--shadow-color-light), 
		1px 1px 1px var(--shadow-color-light),
		0 0 3px var(--shadow-color-light), 
		0 0 5px var(--shadow-color-light),
		0 0 10px var(--shadow-color-light),
		0 0 15px var(--shadow-color), 
		0 0 20px var(--shadow-color), 
		0 0 25px var(--shadow-color), 
		0 0 30px var(--shadow-color), 
		0 0 40px var(--shadow-color),
		0 0 50px var(--shadow-color);
	}
  }



  
 
  /******************  fadeInUp  ********************/

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

  .animate-UpAndDown {
	-moz-animation: UpAndDown 2s infinite linear;
	-o-animation: UpAndDown 2s infinite linear;
	-webkit-animation: UpAndDown 2s infinite linear;
	animation: UpAndDown 2s infinite linear;
  }
  
  
  @keyframes UpAndDown {
	0% {
	  opacity: 0;
	  transform: translateY(10px);
	}
	
	 20% {
	  opacity: 1;
	  transform: translateY(10px);
	}
  
	90% {
	  opacity: 1;
	  transform: translateY(-10px);
	}
  
	100% {
	  opacity: 0;
	  transform: translateY(-10px);
	}
  }
  
  /******************  spin  ********************/

  .animate-spin {
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: inline-block;
  }

  @-moz-keyframes spin {
	0% {
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -moz-transform: rotate(359deg);
	  -o-transform: rotate(359deg);
	  -webkit-transform: rotate(359deg);
	  transform: rotate(359deg);
	}
  }
  @-webkit-keyframes spin {
	0% {
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -moz-transform: rotate(359deg);
	  -o-transform: rotate(359deg);
	  -webkit-transform: rotate(359deg);
	  transform: rotate(359deg);
	}
  }
  @-o-keyframes spin {
	0% {
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -moz-transform: rotate(359deg);
	  -o-transform: rotate(359deg);
	  -webkit-transform: rotate(359deg);
	  transform: rotate(359deg);
	}
  }
  @-ms-keyframes spin {
	0% {
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -moz-transform: rotate(359deg);
	  -o-transform: rotate(359deg);
	  -webkit-transform: rotate(359deg);
	  transform: rotate(359deg);
	}
  }
  @keyframes spin {
	0% {
	  -moz-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -moz-transform: rotate(359deg);
	  -o-transform: rotate(359deg);
	  -webkit-transform: rotate(359deg);
	  transform: rotate(359deg);
	}
  }

  


/*************************************  ELEMENTS ------------------------*/


.form-control {
    padding: .8rem .8rem;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .5rem;
}

input[type=checkbox],
input[type=radio] {
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.3rem;
	width: 1em;
	margin: 0;
	color: var(--color-red);
	outline: none;
	font-family: "fontello";
	-webkit-transition: 300ms ease-out;
	-o-transition: 300ms ease-out;
	transition: 300ms ease-out;
}

input[type=checkbox]::after,
input[type=radio]::after {
	content: "\f10c";
	display: inline-block;
	text-align: center;
	width: 1em;
}

input[type=checkbox]:checked::after,
input[type=radio]:checked::after {
	font-weight: normal;
}

input[type=checkbox]:active,
input[type=radio]:active {
	-webkit-transform: scale(0.6);
	-ms-transform: scale(0.6);
	transform: scale(0.6);
}

input[type=checkbox]+span,
input[type=radio]+span {
	margin-left: 0.35em;
}

input[type=checkbox]:checked::after {
	content: "\e82e";
}

input[type=radio]:checked::after {
	content: "\f192";
}

.square input[type=checkbox]:after {
	content: "\f0c8";
}

.square input[type=checkbox]:checked::after {
	content: "\f14a";
}

@media (max-width:1600px) {

}


@media (max-width:1400px) {
}

@media (max-width:720px) {

}
