@charset "UTF-8";
@import 'fonts/inter.css';

: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;
	--color-orange: #FE712C;
	--animate-duration: 1.5s;
	--animate-delay: 1s;
	--animate-repeat: 1;
	--shadow-color: #68e3e3;
	--shadow-color-light: #fff;
}

.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);
}

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

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


*,
: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: 'Inter';
	font-weight: normal;
	color: var(--color-black);
	font-size: 1rem;
	font-weight:300;
	line-height: 1;
}

p {
	margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	letter-spacing: -0.3px;
	font-weight: 500;
}

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

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

.h3,
h3 {
	font-size: 3.5rem;
	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-orange);
}

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

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

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,
b,
.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;
	min-height: 100vh;
}

.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: transparent;
	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: 120px;
}

.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-white);
	-webkit-transition: 300ms ease-out;
	-o-transition: 300ms ease-out;
	transition: 300ms ease-out;
	line-height: normal;
    text-align: center;
}

.header-menu__li{
		position: relative;
}

.header-menu__li_a{
	letter-spacing:-0.2px;
	font-size: 1.1rem;
	white-space: nowrap;
	line-height: 2.5rem;
	padding: 0 25px;
}

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

.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);
}

.submenu{
	padding: 0;
	background: rgba(255, 255, 255, 0.8);
	position: absolute;
    left: 0%;
    top:40px;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
	transform: translateY(-20px) scale(0.9);
	opacity: 0;
	z-index: 100;
	pointer-events: none;
    backdrop-filter: blur(8px);
	text-align: left;
}


.header-menu__li.level2 {
	font-size: 1.0rem;
	color: var(--color-black);
}


.header-menu__li.li_parent.level2 .submenu{
	padding: 10px;
	position: relative;

}

.submenu li{
    padding: 4px 20px 4px 18px;
    border-left: 5px solid #a16b34;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.submenu li:first-child{
    padding: 8px 20px 4px 18px;
}

.submenu li:last-child{
    padding: 4px 20px 8px 18px;
}

.submenu li:hover{
    border-left: 5px solid var(--color-orange);
}

.submenu li a{
	white-space: nowrap;
	color: var(--color-black);
	height: 100%;
}

.submenu li a:hover{
	color: var(--color-orange);
}

.header-menu__li.li_parent:hover .submenu{
	transform: translateY(0px) scale(1);
	opacity: 1;
	pointer-events: auto;
}










.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;
}


@media (max-width:720px) {

	.header {
		padding: 0px 0;
	}


}


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

.hero{
	position: relative;
    background-image: url(images/bg_hero_02.webp);
	background-repeat: no-repeat;
    background-size: 100% auto;
	height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 40px 40px;
	background-position-x: 50%;
	background-position-y: 100%;
	-webkit-transition: all 150ms ease 0s;
    -o-transition: all 150ms ease 0s;
    transition: all 150ms ease 0s;
}

.hero__title {
    color: #ffffff;
    text-align: center;
    line-height: 3rem;
	transform: translateY(100px) scale(1);
    font-size: 2.1rem;
    letter-spacing: 2.0px;
    font-weight: 400;
	-webkit-transition: all 150ms ease 0s;
    -o-transition: all 150ms ease 0s;
    transition: all 150ms ease 0s;
}

.about{
	position: relative;
}

.about h2{
	font-size: 1.3rem;
	font-weight: 400;
}

.about_logo {
	width: 200px;
}

.bl-circle_01{
    position: absolute;
    width: 102%;
    height: 140%;
    top: -62%;
    left: -44%;
    background: #F7FAF9;
    background: radial-gradient(circle, rgb(199 170 148 / 32%) 0%, rgba(242, 245, 244, 0) 50%);
    z-index: -2;
}
	
.bg_01{
    position: absolute;
    top: -270px;
    left: 0;
    z-index: -1;
    width: 60%;
    opacity: 0.15;
    transform: rotate(-18deg);
}

.bg-line{
	position: absolute;
    width: 90%;
    height: 200px;
    background: rgba(0, 0, 0, 0.6);
}

.projects__wrapper{
	padding: 120px 15px 20px 15px;
	background-color: var(--color-white);
	-webkit-box-shadow: 6px 7px 14px 0px rgba(34, 60, 80, 0.38);
-moz-box-shadow: 6px 7px 14px 0px rgba(34, 60, 80, 0.38);
box-shadow: 6px 7px 14px 0px rgba(34, 60, 80, 0.38);
background-image: url(images/kaskad_logo_cir.svg);
background-position: -40px -45px;
background-size: 150px;
background-repeat: no-repeat;
 /* height: 100%; */
}

.projects .owl-stage-outer {
    height: 120% !important;
	width: calc(100% + 25px) !important;
}

.m-title{
	position: relative;
	display: inline-block;
	padding-right: 50px;
	
}

.m-title[role=button]{
	padding-right: 0px;
	border:1px solid #d7d7d7b3;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
	
}

.m-title[role=button]:hover{
	background: #949FA8;
}

.m-title h3{
	margin: 0;
	font-size: 3.5rem;
}

.m-title[role=button] .m-title__title {
	padding: 15px 20px;
	font-size: 1.4rem;
	
}

.m-title_decoration-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: auto 0% 0% auto;
    transform: rotate(180deg);
}

.m-title_decoration-wrapper_bottom_border,
.m-title_decoration-wrapper_right-border{
	background-color: var(--color-orange);
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
}

.m-title .m-title_decoration-wrapper_bottom_border {
	background-color: var(--color-orange);
    width: 1rem;
    height: 2px;
}

.m-title_decoration-wrapper_right-border {
    width: 3px;
    height: 1rem;
}


.m-title[role=button] .m-title_decoration-wrapper_bottom_border,
.m-title[role=button] .m-title_decoration-wrapper_right-border {
	background-color: var(--color-black);
}

.m-title[role=button]:hover .m-title_decoration-wrapper_bottom_border {
	background-color: var(--color-orange);
    width: 4rem;
}

.m-title[role=button]:hover .m-title_decoration-wrapper_right-border {
	background-color: var(--color-orange);
      height: 2rem;
}











.transition-block {
    background-color: var(--color-white);
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    height: 80px;
    position: absolute;
    inset: auto 0% -79px;
    bottom: -29px;
    z-index: 0;
}

.services{
	background: #1a1919;
    padding-top: 130px;
	padding-bottom: 50px;
    margin-top: -50px;
}

.services__row{
	display: flex;
	justify-content: space-between;
	padding: 30px 15px;
	border-bottom: 1px solid var(--color-white);
	background: transparent;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
}

.services__row:hover{
background: rgba(255, 255, 255, 0.2);
}

.service__row_title {
	font-size: 1.6rem;
}

.services__row_descr{
	color: var(--color-white);
	display: flex;
	align-items: center;
	margin: 0;

}




.engineering__row_title {
	font-size: 1.2rem;
} 

.services__row_number{
	color: var(--color-orange);	
	font-weight: bold;
	white-space:nowrap;
}

.services__row:hover .services__row_number{
	animation: neon-1 3s infinite;
}

.ims_logo{
	height: 200px;
}



@media (max-width:720px) {

	.hero {
		background-size: cover;
		height: 85vh;
	}


	.hero__title {
		line-height: 2rem;
		font-size: 1.5rem;
		
	}

	.about h2{
		font-size: 1.0rem;
		line-height: 1.8rem;
	}
	

	.bl-circle_01 {
		width: 600%;
		height: 140%;
		top: -82%;
		left: -464%;
	}

	.m-title {
		padding-right: 30px;
	}
	

	.m-title h3 {
        margin: 0 0 10px 0;
        font-size: 1.8rem;
	}

	.services__row{
		flex-direction: column;
	}	

	.service__row_title {
		font-size: 1.3rem;
	}
	
	.services__row_descr{
		margin: 20px 2rem 0px 4rem;
		line-height: 1.5rem;
	
	}

	.engineering__row_title{
		font-size: 1.0rem;
	}

}


.tab_button__wrapper{
    padding: 20px 50px;
    text-align: center;
    background: #949FA8;
    color: var(--color-white);
    cursor: pointer;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
    border: 2px solid #bcbcbc;
    outline: 2px solid var(--color-bg);
    outline-offset: -3px;
}

.tab_button__wrapper:hover{
	background: #7b7b7b;
	color: var(--color-white);
}

.tab_button__wrapper.active{
	background: #1a1919;
	color: var(--color-orange);
}

.bg_02{
    position: absolute;
    top: -270px;
    left: 0;
    z-index: -1;
    width: 60%;
    opacity: 0.1;
    transform: rotate(-18deg);
}


.bl-circle_05{
	position: absolute;
    width: 3000px;
    height: 2000px;
    top: -1120px;
    left: -1560px;
    background: #F7FAF9;
    background: radial-gradient(circle, rgb(111 127 133 / 42%) 0%, rgba(242, 245, 244, 0) 50%);
    z-index: -1;
}

.products__pagination{
	display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    gap: .5em;
    z-index: 1;
	justify-content: center;
}

.models-list__wrapper{
	padding: 15px 20px;
    border: 1px solid var(--color-black);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	cursor: pointer;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
}

.models-list__wrapper:hover{
    border: 1px solid var(--color-orange);

}


.models-list__wrapper:hover .m-title_decoration-wrapper_bottom_border {
	background-color: var(--color-orange);
    width: 4rem;
}

.models-list__wrapper:hover .m-title_decoration-wrapper_right-border {
	background-color: var(--color-orange);
      height: 2rem;
}


.models-list__title{
	font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 10px;
}

.models-list__longtitle,
.models-list__longtitle p{
	line-height: 1.3rem;
}

.bg_03{
    position: absolute;
    top: -280px;
    left: 0;
    z-index: -1;
    width: 100%;
    opacity: 0.9;
}

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

.models__container_block{
	padding: 0 50px;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	display: inline-flex;
    left: 25px;
    top: 0;
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
}

.models__container_block.active{
	opacity: 1;
	visibility: visible;
}

.model-nav{
	position: absolute;
	top:50%;
	width: 100%;
}

.model-nav .prev,
.model-nav .next{
	position: absolute;
	height: 50px;
	width: 50px;
	cursor: pointer;
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
     user-select: none; 

}

.model-nav .prev{
	left: 0;
}

.model-nav .next {
    right: 0px;
}
.model-nav .prev svg,
.model-nav .next svg{
	-webkit-transition: all 350ms ease 0s;
    -o-transition: all 350ms ease 0s;
    transition: all 350ms ease 0s;
	fill:var(--color-black);
}

.model-nav .prev:hover svg,
.model-nav .next:hover svg{
	fill:var(--color-orange);
}


@media (max-width:1200px) {

}


@media (max-width:720px) {

	.models__container_block {
		padding: 0 20px;
	}

	.model-nav .next {
		right: -25px;
	}

}


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


.background-move_01{
	position: fixed;
	left: -50%;
	bottom: -50%;
	width: 200%;
	height: 0%;
	z-index: 990;
	background: var(--color-orange);
	-webkit-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	transition: all 500ms ease-in-out 0s;
	transform: rotate(30deg);
}

.background-move_01.show{
	height: 200%;
}


.background-move_02{
	position: fixed;
	left: -50%;
	bottom: -50%;
	width: 200%;
	height: 0%;
	z-index: 991;
	background: var(--color-white);
	-webkit-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	transition: all 500ms ease-in-out 0s;
	transform: rotate(30deg);
}

.background-move_02.show{
	height: 200%;
}

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

.background.show{
	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 h3 {
		font-size: 2.5rem;
		line-height: 1.0;
		margin: 0 0 25px 0;
	}

.m--content h4 {
	font-size: 1.3rem;
    margin: 25px 0 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;
}

.m--content p{
	line-height: 1.2rem;
	font-size: 0.8rem;
}


.modal__close--x {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
	z-index:1000;
} 

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

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

.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: 650px !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: 35px;
		height: 35px;
	}

  
	.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%;
}

.footer__line_1{
	border-top: 10px solid var(--color-orange);
	background: #1F1B20;
	position: relative;
	padding: 50px 0;
	overflow: hidden;
}

.bl-circle_02{
	position: absolute;
    width: 1000px;
    height: 1000px;
    top: -500px;
    left: -200px;
    background: #F7FAF9;
    background: radial-gradient(circle, rgb(199 170 148 / 52%) 0%, rgba(242, 245, 244, 0) 50%);
    z-index: 0;
}


.bl-circle_03{
    position: absolute;
    width: 1000px;
    height: 1000px;;
    bottom: -500px;
    right: -200px;
    background: #F7FAF9;
    background: radial-gradient(circle, rgb(199 170 148 / 32%) 0%, rgba(242, 245, 244, 0) 50%);
    z-index: 0;
}

.footer__line_2{
	position: relative;
	padding: 50px 0 50px 0;
	overflow: hidden;
}

.bl-circle_04{
    position: absolute;
    width: 2000px;
    height: 1000px;
    bottom: -530px;
    left: calc(50% - 1000px);
    background: #F7FAF9;
    background: radial-gradient(circle, rgb(127 127 127 / 42%) 0%, rgba(242, 245, 244, 0) 50%);
    z-index: 0;
}



.footer__line_1 a {
	color: var(--color-white);
	text-transform: uppercase;
	white-space: nowrap;
}

.footer__line_1 a:hover {
	color: var(--color-orange);
}

.footer__line_2 a {
	color: var(--color-black);
}

.footer__line_2 a:hover {
	color: var(--color-orange);
}



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


.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 50px;
		position: relative;
}

.footer__logo{
	height: 150px;
}



@media (max-width:1700px) {

}

@media (max-width:1200px) {

}


@media (max-width:720px) {

	.bl-circle_03 {
		bottom: -580px;
		right: -90px;
		z-index: -1;
	}


	.footer-menu__li {
		padding: 0 15px;
	}

}


/******************************************  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-0{
	animation: neon-0 3s infinite;
}


@keyframes neon-0 {
	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 10px var(--shadow-color-light), 
	  0 0 20px var(--shadow-color-light),
	  0 0 30px var(--shadow-color), 
	  0 0 40px var(--shadow-color), 
	  0 0 50px var(--shadow-color), 
	  0 0 70px var(--shadow-color), 
	  0 0 100px var(--shadow-color), 
	  0 0 200px 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 15px var(--shadow-color-light), 
	  0 0 25px var(--shadow-color-light),
	  0 0 40px var(--shadow-color), 
	  0 0 50px var(--shadow-color), 
	  0 0 60px var(--shadow-color), 
	  0 0 80px var(--shadow-color), 
	  0 0 110px var(--shadow-color), 
	  0 0 210px 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 10px var(--shadow-color-light), 
	  0 0 20px var(--shadow-color-light),
	  0 0 30px var(--shadow-color), 
	  0 0 40px var(--shadow-color), 
	  0 0 50px var(--shadow-color), 
	  0 0 70px var(--shadow-color), 
	  0 0 100px var(--shadow-color), 
	  0 0 200px var(--shadow-color);
	}
  }
  
  

  
.glow-1{
	animation: neon-1 3s infinite;
}


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

	}
	50% {
	  text-shadow: 
 
	  0 0 15px var(--shadow-color-light), 
	  0 0 25px var(--shadow-color-light),
	  0 0 40px var(--shadow-color), 
	  0 0 50px var(--shadow-color), 
	  0 0 60px var(--shadow-color);

	}
	100% {
	  text-shadow: 
 
	  0 0 10px var(--shadow-color-light), 
	  0 0 20px var(--shadow-color-light),
	  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) {

}
