
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,500&display=swap');
@font-face {
    font-family:'Neue Power';
    src: url('../webfonts/NeuePower-Bold.eot');
    src: url('../webfonts/NeuePower-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/NeuePower-Bold.woff2') format('woff2'),
        url('../webfonts/NeuePower-Bold.woff') format('woff'),
        url('../webfonts/NeuePower-Bold.ttf') format('truetype'),
        url('../webfonts/NeuePower-Bold.svg#NeuePower-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Power';
    src: url('../webfonts/NeuePower-Bold.eot');
    src: url('../webfonts/NeuePower-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/NeuePower-Bold.woff2') format('woff2'),
        url('../webfonts/NeuePower-Bold.woff') format('woff'),
        url('../webfonts/NeuePower-Bold.ttf') format('truetype'),
        url('../webfonts/NeuePower-Bold.svg#NeuePower-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Power Med';
    src: url('../webfonts/NeuePower-Medium.eot');
    src: url('../webfonts/NeuePower-Medium.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/NeuePower-Medium.woff2') format('woff2'),
        url('../webfonts/NeuePower-Medium.woff') format('woff'),
        url('../webfonts/NeuePower-Medium.ttf') format('truetype'),
        url('../webfonts/NeuePower-Medium.svg#NeuePower-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: 'Montserrat', sans-serif;
	background-color: #000;
	color: #fff;
	font-weight: 400;
	font-size: 1.6rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	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;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: #FFC400;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display:inline-block;
	z-index: 999;
	width: 3.8rem;
}
.hamburger-menu span {
	background: #fff;
	width: 100%;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-center{
	width: 70%;
}
.hamburger-menu .line-bottom{
	width: 50%;
}

header{
	position:fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	background-color: #000;
}
.header_main{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width:100%;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
#menu {
	text-align: right;
}
#menu li {
	display: inline-block;
	color: #fff;
}
#menu li a {
	font-size: 1.6rem;
	text-transform: uppercase;
	color: #F3F3F3;
	padding: 0 3.2rem;
	font-weight: 700;
	position: relative;
}
#menu li a::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 15px;
    background-image: url(../img/Path118.svg);
    height: 100%;
    width: 100%;
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    background-repeat: no-repeat;
    opacity: 0;
}
#menu li:last-child a{
	padding-right: 0;
}
#menu>li>a.active,
#menu>li>a:hover {
	color:#A8A8A8;
}
#menu>li>a:hover::before{
	opacity: 1;
}
main{
	overflow: hidden;
	padding-top: 9.5rem;
}
/*fixt area*/
.fixt_area{
	position: fixed;
	height: 7rem;
	width:7rem;
	border-radius: 50%;
	background-color: #707070;
	right: 2rem;
	top: 76%;
	z-index: 2;
	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-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.fixt_area i{
	font-size: 3rem;
	color:#fff;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.fixt_area:hover{
	background-color: #FFC400;
}
.fixt_area:hover i{
	color: #000;
}
/*return-to-top START CSS*/

.back-to-top {
    font-size: 2.4rem;
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 3.0rem;
    right: 2.0rem;
    border-radius: 50%;
    background: #FFC400;
    z-index: 1000;
}
.back-to-top i {
	color: #000;
}
.menu_wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	padding: 0 4rem;

}

.menu_right{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu_right a{
	font-size: 1.7rem;
	color:#F3F3F3;
}
.menu_right a:first-child{
	margin-right: 3.5rem;
}
.menu_right img{
	width: 1.7rem;
	margin-right: 1rem;
}
.logo{
	max-width: 27.9rem;
}

/*hero area*/
.hero_area{
	padding-bottom: 9rem;
}
.hero_img{
	height:48.6rem;
	position: relative;
}
.hero_img img{
	width: 100%;
}
.Group8{
	position: absolute;
	left:0;
	top:10rem;
	max-width: 60rem;
	width:100%;
}
.hero_heading {
    color: #F3F3F3;
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Neue Power';
}
.hero_main span {
    color: #A8A8A8;
    font-family: 'Neue Power Med';
    font-weight: 500;
}
.hero_main{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 7.5rem;
	margin-bottom: 13.5rem;
}

.hero_btn_area{
	border-bottom: .1rem solid #707070;
	padding-bottom: 2.3rem;
}
.hero_btn_area:hover  img{
	-webkit-transform: translateY(2rem);
	    -ms-transform: translateY(2rem);
	        transform: translateY(2rem);
}
.hero_btn_area span{
	font-size: 1.6rem;
	color:#F3F3F3;
	text-transform: uppercase;
	font-weight: 700;
	margin-right: 6rem;
}
.hero_btn_area:hover span{
	color:#A8A8A8;
}

/*side menu*/
.hero_btn_area img{
	width: 2.2rem;
}
.menu_footer a{
	font-size: 1.7rem;
	color:#F3F3F3;
	display: block;
}
.menu_footer img{
	width: 1.7rem;
	margin-right: 1rem;
}
.menu_footer a:first-child{
	margin-bottom: 2.5rem;
}
.side_menu{
	background-color:#000;
    max-width: 39rem;
    width: 100%;
    height:calc(100vh - 13rem);
    position: fixed;
    padding-top: 11rem;
    top:13rem;
    left: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: -1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 1.5rem;
}
.side_menu_footer{
	width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6.5rem 9rem;
}
.side_menu.open {
    left: 0;
}
.side_menu_wrap{
	width:100%;
    overflow: auto;
}
.side_menu_wrap ul{
	padding-left: 11rem;
}
.side_menu_wrap ul li{
	margin-bottom: 6rem;
}
.side_menu_wrap ul li a{
	color:#F3F3F3;
	font-size: 1.6rem;
	font-weight: 700;
}
.side_menu_wrap ul li a:hover{
	color:#A8A8A8;
}

/*carousel area*/
.carousel_container{
	position: relative;
}
.carousel_container::before{
	content:'';
	position:absolute;
	height: 100%;
	width: 100%;
	top:0;
	right:100%;
	background-color: #000;
	z-index: 2; 
}
.carousel_two .owl-stage-outer {
    overflow: visible;
}
.carousel_area{
	position: relative;
}
.carousel_area::before {
    content: '';
    position: absolute;
    height: .1rem;
    width: 200rem;
    background-color: #707070;
    right: 72rem;
    top: 0;
}
.PATTERN {
    position: absolute;
    max-width: 54.6rem;
    width: 100%;
    top: -12.8rem;
    right: 12rem;
}
.carousel_heading{
	color:#F3F3F3;
	font-size: 5rem;
	line-height:1.2;
	font-weight: 700;
	font-family:'Neue Power';
	margin-bottom: 8.5rem;
	padding-top: 8.5rem;

}
.carousel_main{
	background-color: #161616;
	border-radius: 1.5rem;
	padding-top: 2rem;
	padding-bottom: 12rem;
	padding-left: 3.5rem;
	padding-right: 2rem;
	height: 100%;
	position: relative;
}
.carousel_main:hover{
	background-color: #242424;
}
.carousel_main:hover .carousel_icon i{
	color:#FFC400;
}
.carousel_main:hover .plus_to{
	background-color:#FFC400;
	border:none;
}
.carousel_main:hover .plus_to i{
	color:#000;
}
.carousel_icon i {
	color:#A8A8A8;
	font-size: 3.5rem;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.space{
	max-width: 25.2rem;
}
.space h2 {
    font-family: 'Neue Power';
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 700;
    color: #F3F3F3;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.space p{
	color:#A8A8A8;
}
.plus_to i{
	font-size: 1.5rem;
}
.plus_to {
    position: absolute;
    left: 3.6rem;
    bottom: 3rem;
    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;
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50%;
    border: .2rem solid #A8A8A8;
    color: #fff;
}

.carousel_two .owl-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.2rem;
    -moz-column-gap: 2.2rem;
    column-gap: 2.2rem;
    margin-top: 8rem;
    margin-bottom: 8rem;
    
}
.carousel_area .carousel_two .owl-stage{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
.carousel_two .owl-nav button{
	background-color: transparent;
}
.carousel_link{
	display: inline-block;
	min-width: 27rem;
	padding: 2.5rem 2rem;
	border-top: .1rem solid #707070;
	border-left: .1rem solid #707070;
	border-right: .1rem solid #707070;
	border-radius: 1.5rem 1.5rem 0 0;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
}
.carousel_link:hover{
	background-color: #242424;
	border-color: transparent;
}
.carousel_link span{
	color:#F3F3F3;
	font-size: 1.6rem;
	font-weight: 700;
	margin-left: 2.5rem;
}
.carousel_link img{
	width: 1.5rem;
}
.carousel_link_main{
	text-align: center;
}

/*mazgatava area*/
.mazgatava_area{
	padding-top: 12.5rem;
	padding-bottom: 7rem;
	border-top: .1rem solid #707070;
}

.mazgatava_heading h2 {
    color: #F3F3F3;
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Neue Power';
}
.mazgatava_card img{
	width:100%;
	height: 42.4rem;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 1.5rem;
}
.Group38 {
    max-width: 14.5rem;
    width: 100%;
    position: absolute;
    top: -6.5rem;
    right: -3.2rem;
    z-index: 1;
}
.mazgatava_card_right{
	position: relative;
	max-width: 77.7rem;
}
.mazgatava_card_right img{
	width: 100%;
	height:42.4rem;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 1.5rem;
}
.mazgatava_child_wrap{
	background-color: #161616;
	border-radius: 1.5rem;
	padding: 2rem 2rem;
	height: 100%;
}
.mazgatava_child_wrap:hover{
	background-color: #242424;
}
.mazgatava_icon{
	color:#A8A8A8;
	font-size: 3.5rem;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.mazgatava_child_wrap:hover .mazgatava_icon{
	color:#FFC400;
}
.mazgatava_child_wrap:hover .plus{
	background-color:#FFC400;
	border:none;
}
.mazgatava_child_wrap:hover .plus i{
	color:#000;
}
.mazgatava_wrapper{
	max-width: 33.7rem;
}
.mazgatava_wrapper h2 {
    font-family: 'Neue Power';
    font-size: 2.6rem;
    color: #F3F3F3;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 700;
}
.mazgatava_wrapper p{
	color:#A8A8A8;
	margin-bottom: 4.5rem;
}
.plus i {
    font-size: 1.5rem;
    color: #fff;
}
.plus{
	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;
	height: 4.5rem;
	width: 4.5rem;
	border-radius: 50%;
	border:.2rem solid #A8A8A8;
}
.mazgatava_wrapper{
	padding-left: 1.5rem;
}

/*parmums area*/
.parmums_area{
	padding-bottom: 13rem;
	padding-top: 13rem;
}
.parmums_heading{
	position: relative;
	display: inline-block;
}
.parmums_heading::before{
	content: '';
	position:absolute;
	height: .1rem;
	width: 200rem;
	background-color: #707070;
	left:110%;
	top:0;
}

.parmums_heading h2 {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Neue Power';
    line-height: 1.2rem;
    margin-bottom: 4.5rem;
}
.parmums_left{
	max-width: 59.5rem;
}
.parmums_left h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 12rem;
}
.parmums_left p{
	color:#A8A8A8;
}
.parmums_right h3 {
    color: #F3F3F3;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 5rem;
    margin-top: 4.5rem;
}
.parmums_right{
	position: relative;
}
.Group54 {
    position: absolute;
    right: 0;
    top: -101px;
    width: 100%;
    max-width: 8rem;
}
.parmus_card{
	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;
	border:.1rem solid #707070;
	border-radius: 1.5rem;
	padding: 5.6rem 3.9rem;
	width: 100%;
}
.parmus_card img{
	width: 100%;
	max-width: 12.2rem;
}

/*kontakti_area*/
.kontakti_area{
	position: relative;
	border-top:.1rem solid #707070; 
	padding-top:12rem;
	padding-top:12rem;
}
.v-shaf{
	position: absolute;
	max-width: 54.5rem;
	width: 100%;
	left:-8rem;
	top:2.5rem;
}
.kontakti_heading {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Neue Power';
}
.kon_icon span{
	margin-left: 1rem;
	color:#A8A8A8;
	text-transform: uppercase;
}

.kon_icon a{
	display: inline-block;
	font-size: 2rem;
	color:#fff; 
	margin-top: 1.5rem;
}
.kon_icon img{
	width:1.5rem;
}
.kontaki_icon_area{
	border-bottom: .1rem solid #707070;
	padding-bottom: 5rem;
}
.kontakti_btn img{
	width:1.5rem;
	margin-right: 3rem; 
}
.kontakti_btn span{
	color:#fff;
	font-weight: 700;

}
.kontakti_btn:hover span{
	color:#A8A8A8;
}
.kontakti_btn{
	border-bottom: .1rem solid #707070;
	padding-bottom: 2rem;
}
.kontakti-pera{
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.2;
}

.map_area{
	margin: 10rem 0;
}

/*footer area start*/
footer{
	border-top:.1rem solid #707070;
	padding: 10rem 0;
}
footer .row{
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.footer_icon a{
	font-size: 3rem;
	color:#ffffff;
	margin-right: 3.5rem;
}
.footer_logo{
	max-width: 18.4rem;
	width:100%;
	margin-left: 3.5rem;
}
.footer_content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align:start;
	    -ms-flex-align:start;
	        align-items:start;
	-webkit-box-pack:end;
	    -ms-flex-pack:end;
	        justify-content:flex-end;
}

/*footer area end*/