@charset "UTF-8";

:root {
	--color-black: #2B2A29;
	--color-bg: #FAFAFA;	
	--color-yellow: #F1DA4E;
	--color-red: #E22024;
	--color-dark-red: #b80f0f;
	--color-white: #fff;
	--color-grey: #9b9b9b;
	--color-dark-grey:#B2B3B3;
	--color-blue: #264796;
	--color-dark-blue: #273973;	
	--shadow-color: #FF9E9E;
	--shadow-color-light: white;
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

.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-yellow {
	color: var(--color-yellow)
}

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

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

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

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

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

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

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

body,
p {
	font-family: 'Century Gothic', 'Arial', sans-serif;
	font-weight: normal;
	color: var(--color-black);
	font-size: 16px;
	line-height: 1;
}

p {
	margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	letter-spacing: -1px;
}

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

.h2,
h2 {
	font-size: clamp(1.8rem, 3vw, 2.0rem);
	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,
a:hover,
a:focus {
	-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-grey);
	cursor: pointer;
}

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

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

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

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


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

input,
button {
	outline: none !important;
}

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


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: 8px 25px;
	border-radius: 5px;
	outline: none;
	text-decoration: none;
	border: 2px solid var(--color-grey);
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
	position: relative;
	letter-spacing: -0.5px;
	color: var(--color-white) !important;
	background: rgb(255,0,0);
	background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(200,34,35,1) 100%);
	cursor: pointer;
	display:inline-block;
}


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

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


.btn-text {
	position: relative;
	z-index: 2;
}

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

.title-5 {
	font-size: 1.2rem;
	line-height: 1.6rem;
}


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

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


.ul-title {
	font-size: 1.0rem;
	line-height: 1.2;
	color: var(--color-black);
	margin: 5px 0 0 15px;
}


.list_t li {
	padding: 25px 0;
	border-bottom: 1px solid var(--color-gray);
}

.list_t li a {
	font-size: 24px;
	width: 100%;
	display: block;
}

.list_t li a:hover {
	color: var(--color-dark-gray);
}

.list_t li a i {
	color: var(--color-brightly-blue);
	font-size: 20px;
	line-height: 30px;
}

.target-link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 39px;
}

.target-link__text {
	padding: 0px 12px;
	color: var(--color-dark-blue);
	font-size: 1.1rem;
	background-color: #fafdff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

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

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


}


@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.2rem;
		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: 5px 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: 1.6rem;
		line-height: 2.1rem;
		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;
	/* overflow: hidden; */
	margin-top: 0px;
    z-index: 0;
}

.section{
	position: relative;
}

.footer{
	position:relative;
}

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

/*********************************** MENU ***********************************************************************/
.header {
	width: 100%;
	position: relative;
    z-index: 5;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.header.scrolled {
	position: fixed;
	left: 0;
	top: -49px;
}

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


.header_line-1{
	background:var(--color-black);
	color:var(--color-white);
	position: relative;
    z-index: 2;
	height:50px;
}

.header_line-1__title{
	font-size: 1.3rem;
    line-height: 1.8rem;
}

.header_line-1 a,
.header_line-1 li{
	color:var(--color-white);
		-webkit-transition: 300ms ease-out;
	-o-transition: 300ms ease-out;
	transition: 300ms ease-out
}

.header_line-1 a:hover{
	color:var(--color-red);
}


.header_social{
		width:30px;
}

.social__a{
	width:30px;
	height:30px;
	display: inline-block;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;	
	margin-left:15px;
}

.social__a svg{
	fill: var(--color-white);
	width:100%;
	height:100%;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;	
}


.sidebar .social__a svg{
	fill: var(--color-black);
}

.social__a:hover svg{
	fill: var(--color-red);
}


.header_line-2{
	background:var(--color-white);
	color:var(--color-black);
	height: 100px;
	position: relative;
    z-index: 2;
	border-radius: 0 0 50px 50px;
	overflow:hidden;
	-webkit-transition: all 350ms ease 0s;
	-o-transition: all 350ms ease 0s;
	transition: all 350ms ease 0s;
}

.header.scrolled .header_line-2{
	height: 80px;
}

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


.header-menu__li_a{
	text-transform:uppercase;
	letter-spacing:-0.2px;
	font-weight:bold;
}

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

.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:1400px) {
	.header {
	/*	height: 70px; */
	}
	.header__menu_li.current .header__menu_li_a:after {
		bottom: -40px;
	}

}


@media (max-width:1200px) {
	.header__menu_li_a {
		font-size: 1.0rem;
}


}

@media (max-width:990px) {

	.header.scrolled {
		height: 60px;
		top: -60px;
	}
}


@media (max-width:720px) {
	.header_line-1 {
		height: 55px;
	}
	
	.header_line-1__title{
		font-size: 1.1rem;
		line-height: 1.4rem;
	}

.header_line-2 {
    height: 100px;
    border-radius: 0 0 20px 20px;
}	

.header .header_line-2,
.header.scrolled .header_line-2 {
    height: 60px;
}

}

/******************************* 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  *****************************/

.wa{
	color:#25D366; /* WhatsApp   */
}

.tg{
	color:#1696D6; /* Telegram   */
}

.hero{
	margin-top: -50px;
}

.hero-text-col {
	padding-top: 50px;
	}
	
.number{
	border-radius:100%;
	background: rgb(255,0,0);
	background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(200,34,35,1) 100%);
	color: var(--color-white);
	font-size: 4rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-shrink: 0;
}

.bg_grad{
	position:relative;
	border-radius: 0 0 50px 50px;
	min-height:60vh;
	width:100%;
	background: rgb(255,0,0);
	background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(200,34,35,1) 100%);
	z-index:-1;
	margin: 0 auto;
}

.text-wrapper{
	position:absolute;
	width:100%;
	top:0;
	z-index:1;
	left: 0;
	right: 0;
}

.text_t{
	padding:30px;
	
}

.bg_trigger{
	position:absolute;
    left: 10vh;
    top: 35vh;
    z-index: 0;
    width: 80px;
    height: 80px;
	padding:10px;
	cursor:pointer;
	z-index: 2;
	animation: pulse 2.5s ease-in-out infinite;
	background:rgba(255,255,255,.5);
	border: #ffa3a3 solid 3px;
	border-radius:100%;
	box-shadow: 0 0 0 0 rgba(235, 235, 235, 0.5);
}


@keyframes pulse {
	from {
	  transform: scale3d(1, 1, 1);
	}
  
	50% {
	  transform: scale3d(1.05, 1.05, 1.05);
	  box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
	}
  
	to {
	  transform: scale3d(1, 1, 1);
	  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
	}
  }
  
  

.reconstruction h2{	font-size:4rem; }
.reconstruction h1{	font-size:1.5rem;text-align:center; }
.reconstruction .title-4{	font-size:2.7rem; }
.reconstruction .bg_img{
	position:relative;
	margin-top:-40vh;
	z-index:0;
	text-align:center;
	padding: 0 50px
}
.reconstruction .bg_trigger {
    top: 5vh;
}

.cnc-machine h1{	font-size:3rem; }
.cnc-machine h2{	font-size:4rem; }
.cnc-machine .bg_img{
	position:relative;
	margin-top:-40vh;
	z-index:0;
	text-align:center;
	padding: 0 50px
}

.index .cnc-machine{
	margin-top:-40px; 
}

.index .cnc-machine h2 {
    font-size: 8rem;
    margin: 30px 0;
}


@media (max-width:1440px) {
.header_line-2 {
    height: 80px;
}	
	
.header_line-1__title{
	font-size:1.2rem; 
}	
.wa, .tg, .ph{
	font-size:0.9rem; 
}

.index .cnc-machine .bg_img {
    margin-top: -30vh;
}

.index .cnc-machine{
	margin-top:0px; 
}

.index .text-wrapper {
    top: 30px;
}	
	
}


@media (max-width:720px) {

.bg_grad{
	border-radius: 0 0 40px 40px;
	min-height:70vh;
}

.bg_img{
	margin-top:-15vh;
	padding: 0 15px
}

.bg_trigger{
		right: 3vh;
        top: -5vh;
        width: 40px;
        height: 43px;
        left: auto;
}

.reconstruction h2{	font-size:3rem; }
.reconstruction h1{	font-size:1.2rem; margin:20px 0; }
.reconstruction .title-4{	font-size:2.7rem; line-height:3rem;margin-top:50px;}
.reconstruction .bg_img {
    margin-top: -10vh;
    padding: 0;
}
.reconstruction .bg_trigger {
    top: -8vh;
}


.hero-text-col {
	padding-top: 0px;
	}

.number {
    font-size: 3rem;
    height: 60px;
    width: 60px;
}
.cnc-machine .bg_grad{
	border-radius: 0 0 40px 40px;
	min-height:40vh;
}

.cnc-machine .bg_img{
	margin-top:-15vh;
	padding: 0 15px
}

.cnc-machine .bg_trigger{
		right: 3vh;
        top: 20vh;
        width: 40px;
        height: 43px;
        left: auto;
}

.cnc-machine h2{	font-size:3rem; }
.cnc-machine h1{	font-size:1.2rem; margin:20px 0; }


.index .text-wrapper {
        top: 0;
    }

.index .cnc-machine h2 {
	font-size: 3rem;
}

.index .cnc-machine .bg_grad {
        min-height: 30vh;
    }
	
.index .cnc-machine .bg_img {
        margin-top: -12vh;
    }
.index .cnc-machine .bg_trigger {
        top: 15vh;
    }


}

.perks__title{
	font-size:2.5rem;
	color: var(--color-red);
	border-bottom:1px solid var(--color-red);
	height:100px;
}


.perks__text{
	font-size:1.5rem;
	margin-top:15px;
	height:80px;
	line-height: 2rem;
}

.fos__wrapper{
	padding:80px 50px;
	border-radius:50px;
	background: rgb(255,0,0);
	background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(200,34,35,1) 100%);
	color: var(--color-white);
}


ul.markers {
	margin: 0 0 20px 0px;
	padding: 0;
}

.markers li {
	list-style: none !important;
	font-size: 1.3rem;
    padding: 10px 0 15px 0px !important;
    line-height: 2rem;
}
.markers li::before {
    content: url(images/tr.svg);
    padding-right: 20px; /* Защищаем достаточное пространство для текста */
}

.triangles {
	position:absolute;
	left:0;
	bottom:0;
	width:40%;
	z-index: -1;
}

.logo_dec{
	position:absolute;
	bottom: -200px;
    left: -200px;
    z-index: -1;
    transform: scale(0.8);
}

@media (max-width:1440px) {
	.logo_dec{
	opacity:0.2;
}

.hero h3{
     font-size: 1.4rem;
}

.hero h2{
     font-size: 1.5rem;
} 

.number {
    font-size: 3rem;
    height: 60px;
    width: 60px;
}
 

}


@media (max-width:720px) {
	.perks__title {     
		font-size: 1.6rem; 
		padding-bottom: 15px;
		height:auto;		
	}
		
	.perks__text {      
		font-size: 1.2rem;   
		height: auto;    
		line-height:1.5rem;
		 padding-bottom: 20px;
	}
	
	.fos__wrapper {
    padding: 40px 30px;
    border-radius: 30px;
	}
	
	.markers li {
    font-size: 1.1rem;
    padding: 5px 0 10px 0px !important;
    line-height: 1.6rem;
}
	
	.triangles {
	display:none;
	}
	
	
}


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

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


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

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

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


.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 ***********************************/

.video__wrapper{
	min-height:800px;
	border-radius: 50px;
	overflow:hidden;
	height: 80vh;
	display: flex;
}

.video__wrapper_min{
	min-height:700px;
	height: 60vh;
	border-radius: 50px;
	overflow:hidden;
	display: flex;
}

.video__wrapper_a{
	border-radius: 50px;
	overflow:hidden;
	display: flex;
}

.v--label{
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background: var(--color-white);
    z-index: 100;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1.3rem;
    color: var(--color-red);
    top: -25px;
    left: -25px;
    border: 2px solid var(--color-red);
    transform: rotate(-13deg);
    box-shadow: 6px 9px 11px rgba(0, 0, 0, 0.8);
}

.plyr--video .plyr__controls {
        padding: var(--plyr-control-spacing, 40px);
    }
	
.plyr__control--overlaid {
    background: var(--color-white) !important;
    color: var(--color-red) !important;
    width: 80px !important;
    height: 80px !important;
	border-radius:100%;
}

.plyr__control--overlaid svg {
    left: 34%;
}

.plyr-player{
	object-fit: cover;
    width: 100%;
}

.plyr {
    width: 100%;
}


.img_list{
	display: grid;
	grid-auto-flow: column;
}

.monolith .cnc-machine{
	margin-top: -110px;
}

.monolith  .bg_grad {
	min-height: auto;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.monolith .t__wr{
	padding-top: 130px;
	padding-bottom: 50px;
}

.monolith .cnc-machine h2{
	font-size: 4.5rem;
    margin: 0;
}

.monolith .cnc-machine h3{
	font-size: 3rem;
}

.monolith .video__wrapper {
    min-height: unset;
    border-radius: 50px;
    height: auto;
}

.features-list__wrapper{
	display: flex;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--color-red);
}

.features-list__number {
	color: var(--color-red);
	font-weight: bold;
	white-space: nowrap;
    font-size: 1.5rem;
}

.features-list__title{
	margin-left: 2rem;
	font-size: 1.3rem;
}

.monolith .video__wrapper_min {
    min-height: auto;
    height: auto;
}






@media (max-width:720px) {

	.img_list {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-flow: row;
		grid-template-rows: repeat(2, 1fr);
	}
	.monolith .t__wr {
		padding-top: 70px;
		padding-bottom: 30px;
	}

	.monolith .cnc-machine h2 {
		font-size: 3.2rem;
		line-height: 4rem;
	}

	.monolith .cnc-machine h3 {
		font-size: 2.1rem;
		line-height: 2.5rem;
	}



.video__wrapper_min {
    height: 75vh;
	margin-bottom:25px;
}

.video__wrapper_a {
    border-radius: 15px;
}


.v--label {
    width: 100px;
    height: 100px;
    line-height: 0.9rem;
    top: -5px;
    left: 15px;
    font-size: 0.7rem;
}

}

/*****************   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;
}

.hero .customPrevBtn{
	left:8%;
}

.hero .customNextBtn{
	left:46%;
}

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



/************************* 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 ****************************/

.bg-g{
	position:absolute;
	z-index:-1;
	width:100%;
	height:50%;
	background: rgb(232,236,239);
	background: linear-gradient(360deg, rgb(235 244 251) 36%, rgb(250 250 250) 100%);
	bottom:0;
	left:0;
	right:0;
}

.footer {
	width: 100%;
	color: var(--color-white);
	background: #434242;
	border-radius:50px 50px 0 0;
	padding:80px 0 50px 0;
}

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

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

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


@media (max-width:1400px) {

}

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


@media (max-width:720px) {
	
	.footer {
	border-radius:25px 25px 0 0;
	padding:50px 0 30px 0;
	}
}


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

.s-modal { display: none; }
.modal--show,
.modal--hide { display: flex; } /* classes fired by js for animation control */

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

/* The .modal__close class is used in js but is modified '--x' here */
.modal__close--x {
  font-size: 30px; /* this is only because we use unicode for the X in this case */
  position: absolute;
  top: 3px;
  right: 10px;
}

/* As there is no href to avoid the hash being added to the URL when clicked we add a pointer */
/* This 'x' is hidden from screen readers as there is an accessible close button in the modal */
.modal__close--x:hover {
  cursor: pointer;
}

/* Animations */
/* Open */
.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 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 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);
	}
  }
  
  
@keyframes blink{
   0% { opacity:1; }
   50% { opacity:0; }
   100% { opacity:1; }
}


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

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



/*************************************  ELEMENTS ------------------------*/
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) {

}
