html {
  overflow-y: scroll;
}
button, 
button:active, 
button:focus {
    outline: none;
}
*{
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: none;
}
a{
  color:white;
}
body{
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.logo_panel{
  font-size: 2em;
  width: 100%;
}
.img_logo{
  background:url(../img/logo.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 1;
}
.logo span{
  font-family:'Raleway';
  font-weight: 600;
  color: rgb(146, 146, 146);
  font-size: .7em;
}
.btn{
  display: inline-block;
  color: rgb(238, 34, 29);
  font-size: .8em;
  font-family:'Raleway';
  font-weight: 800;
  text-transform: uppercase;
  padding: 15px 25px;
  border: solid rgb(238, 34, 29);
  transition: .3s;
}
.contact_wrap{
  display: flex;
  align-items: flex-start;
}
.phone_and_btn span{
  font-family:'Montserrat';
  font-weight: bold;
}
.contact:first-child{
  margin-right: 35px;
}
.contact:last-child{
  margin-right: 0px;
}
.contact img{
  width: 13px;
}
.contact > #main_addres{
  font-family:'Montserrat';
  font-weight: 600;
  padding-bottom: 5px;
}
.contact span{
  font-family:'Monserrat';
  font-weight: normal;
  font-size: .8em;
  display: block;
}
.phone_and_btn > .btn:hover{
  background-color: rgb(238, 34, 29);
  color: white;
}
.logo_panel_inner{
  max-width: 1920px;
  width: 75%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo span{
  display: inline-block;
  margin-left: 15px;
}
.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}
nav{
  background-color: #2D2D2D;
}
.nav_inner{
  max-width: 1920px;
  width: 75%;
  height: 60px;
  justify-content: flex-start;
}
.menu{
  padding: 0;
  margin: 0;
  position: relative;
  height: 100%;
}
.menu ul{
  padding: 0;
  margin: 0;
}
/*Всплыв меню*/
.menu-item-has-children,
.menu_list{
  position: relative;
}
.main-menu .sub-menu,
.menu_drop{
  background-color: #2D2D2D;
  position: absolute;
  z-index: 2;
  width: 410px;
  top:-9999em;
  left:10%; 
  opacity: 0;
  transition: .2s opacity;
}
.menu-item-has-children:hover .main-menu .sub-menu,
.menu_list:hover .menu_drop{
  padding: 25px 10px 10px 30px;
  margin: 4em 0 0 -2em;
  opacity: 1;
  top: 0em;
}
.menu-item-has-children:hover .main-menu .sub-menu::after,
.menu_list:hover .menu_drop::after{
  content: '';
  top: -20px;
  left: 0;
  position: absolute;
  z-index: 999999;
  height: 20px;
  width:100%;
  transition: .2s;
}
.menu-item-has-children span,
.menu_list span{
  display: block;
  position: absolute;
  top: 5px;
  right: 8%;
}
.red_line::after{
  content: '';
  bottom: -19px;
  left: 0;
  position: absolute;
  z-index: 100;
  height: 5px;
  width:100%;
  background-color: rgb(238, 34, 29);
  transition: .2s;
  transform: scaleX(0); 
}
.red_line:hover:after{
  transform: scaleX(1);
} 
.menu a:hover{
  color: white;
} 
.menu a{
  height: 100%;
  text-transform: uppercase;
  color: rgb(193, 197, 214);
  font-size: 1.8em;
  font-family: 'Raleway';
  font-weight: 600;
  margin-right: 1.8em;
  transition: .1s;
  position: relative;
}
.main_btn{
  display: block;
  position: absolute;
  cursor: default;
}
.main_btn::after{
  content: '';
  bottom: -19px;
  left: 0;
  position: absolute;
  z-index: 999999;
  height: 5px;
  width:100%;
  background-color: rgb(238, 34, 29);
  transition: .2s;
  transform: scaleX(0); 
}
.main-menu .sub-menu a,
.menu_drop a{
  font-size: 1.4em;
  font-weight: normal;
  font-family: 'Raleway';
  display: block;
  padding: 0 0 20px 18px;
}
.main_btn:hover:after{
  transform: scaleX(1);
}
.main-menu .sub-menu:hover + .main_btn:after,
.menu_drop:hover + .main_btn:after{
  transform: scaleX(1);
}
.main-menu .sub-menu li,
.menu_drop li{
  position: relative;
}
.main-menu .sub-menu span,
.menu_drop span{
  display: block;
  position: absolute;
  top: 2px;
  left: -0.5%;
}
.menu-item-has-children:hover .lnr-chevron-down,
.menu_list:hover .lnr-chevron-down{
  color: white;
}
.lnr-chevron-down{
  color:rgb(193, 197, 214);
  font-size: 13px;
  padding: 0;
  transition: .1s;
}
.lnr-chevron-right{
  color: white;
  font-size: 10px;
  padding: 0;
  transition: .1s;
}
.flex1 .search-home {
	width: 100%;
}
.search-home-inp {
	height: 35px;
    width: 80%;
	font-size: 18px;
}
.search-home-but {
	height: 35px;
    background: #ffd800;
    border: none;
    color: #fff;
	width:19%;
	font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.color {
	background-color: #2D2D2D;
    padding: 20px 0 0;
}

.services{
  width: 75%;
  max-width: 1920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr 1fr;
  grid-template-areas: 
  "box1 box2"
  "box3 box4";
}
.box1{
  grid-area: box1;
  display: block;
  background-image:url(../img/box1.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat; 
  position: relative;
  outline: 15px solid rgba(255, 255, 255, 0);
  outline-offset: -15px;
  transition: .3s;
}
.services a{
  padding-top: 68%;
}
.services_container{
  padding: 35px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.services a:hover{
  outline: 15px solid rgba(0, 0, 0, 0.6);
}
.services a:hover:after{
  opacity: .6;
}
.services h1{
  font-family: 'Century Gothic';
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  font-size: 4.5em;
  margin: 0 0 20px 0;
  line-height: 60px;
}
.services .h1{
  font-family: 'Century Gothic';
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  font-size: 4.5em;
  margin: 0 0 20px 0;
  line-height: 60px;
}
.services span{
  font-family: 'Raleway';
  font-weight: normal;
  color: white;
  font-size: 3.2em;
  text-align: right;
  padding-right: 20px;
}
.flex1 .services span{
  font-family: 'Raleway';
  font-weight: normal;
  color: white;
  text-align:center;
  font-size: 4.2em;
}
.box2{
  grid-area: box2;
  display: block;
  background-image:url(../img/box2.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat; 
  position: relative;
  outline: 15px solid rgba(255, 255, 255, 0);
  outline-offset: -15px;
  transition: .3s;
}
.box3{
  grid-area: box3;
  display: block;
  background-image:url(../img/box3.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat; 
  position: relative;
  outline: 15px solid rgba(255, 255, 255, 0);
  outline-offset: -15px;
  transition: .3s;
}
.box3 h1, .box4 h1{
  font-size: 4.5em;
}
.box3 .h1, .box4 .h1{
  font-size: 4.5em;
}
.box4{
  grid-area: box4;
  display: block;
  background-image:url(/wp-content/uploads/2021/09/block-noutbuk.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat; 
  position: relative;
  outline: 15px solid rgba(255, 255, 255, 0);
  outline-offset: -15px;
  transition: .3s;
}
.slider_sale{
  width: 75%;
  max-width: 1920px;
  background-color: rebeccapurple;
  height: 500px;
}
/*мои стили, что можно изменить изменяйте наздоровье) */
.slider_wrap{
  position: relative;
  width: 100%;
  padding-top: 25%;
}
.slider_wrap_inner{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.slide_img1{
  color: white;
  font-size: 3em;
  background-image: url(../img/slide_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  padding-top: 25%;
}
.slide_img2{
  color: black;
  font-size: 3em;
  background-image: url(../img/slide_img2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  padding-top: 25%;
}
.slide_img3_old{
  color: black;
  font-size: 3em;
  background-image: url(../img/slide_img3.png);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 100%;
  position: relative;
  width: 95%;
  padding-top: 25%;
}
.slide_img3{
  color: white;
  font-size: 3em;
  background-image: url(../img/slide_img3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  padding-top: 25%;
}
.slide_img4{
  color: black;
  font-size: 3em;
  background-image: url(../img/slide_img4.jpg);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: 100%;
  position: relative;
  width: 80%;
  padding-top: 25%;
}
.slider_img_inner{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  font-size: 0.9em;
}
.slider_img_inner2{
  font-family: 'Montserrat';
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 75%;
}
.slider_img_inner2 .inner_white_cover{
    background: white;
    margin-top: 15px;
    padding: 0px 15px 15px 15px;
}
.btn_slider{
  margin-top: 1em;
  color: white;
  font-size: .5em;
  font-family:'Montserrat';
  font-weight: 600;
  text-transform: uppercase;
  padding: 1.2em 2.8em;
  background-color: rgb(238, 34, 29);
}
.btn_slider:hover{
  background-color: black;
}

.slider_img_inner h1,h2{
  margin: 0;
}
.slider_img_inner .h1,.h2{
  margin: 0;
}
.slider_img_inner h1{
  font-size: 1.5em;
  font-weight: 700;
  margin: 2.5em 0 0 0;
  text-transform: uppercase;
}
.slider_img_inner .h1{
  font-size: 1.5em;
  font-weight: 700;
  margin: 2.5em 0 0 0;
  text-transform: uppercase;
}
.slider_img_inner .inner_white_cover h1{
  font-size: 1.8em;
  font-weight: 800;
  margin: 15px 0 0 0;
  text-transform: uppercase;
}
.slider_img_inner .inner_white_cover .h1{
  font-size: 1.8em;
  font-weight: 800;
  margin: 15px 0 0 0;
  text-transform: uppercase;
}
.slider_img_inner h2{
	font-weight: lighter;
    margin-top: .5em;
    font-size: .8em;
    text-transform: uppercase;
}
.slider_img_inner .h2{
	font-weight: lighter;
    margin-top: .5em;
    font-size: .8em;
    text-transform: uppercase;
}
.slider-item{
  height: 100%;
  width: 100%;
  
}

.prev,.next{
  display: block;
  font-size: 5em;
  cursor: pointer;
  position: absolute;
  transition: .3s;
  color: rgb(77, 77, 77);
  opacity: 0;
}
.prev{
    top: 40%;
    left: 5%;
}
.next{
    top: 40%;
    right: 5%;
}
.slider_wrap:hover .prev {
  opacity: 1;
  color: rgb(77, 77, 77);
}
.slider_wrap:hover .next{
  opacity: 1;
  color: rgb(77, 77, 77);
}
/*конец моих стилей*/
.color1{
  background-color: #2D2D2D;
}
.color2{
  background-color: rgb(250, 16, 12);
  margin-top: 50px;
}
.sale{
  width: 75%;
  max-width: 1920px;
  color: white;
  height: 300px;
  padding: 3.5em;
}
.sale h1{
  font-size: 5em;
  margin: 0;
  font-family:'Monserrat';
  font-weight: bold;
}
.sale .h1{
  font-size: 5em;
  margin: 0;
  font-family:'Monserrat';
  font-weight: bold;
}
.sale h1:first-child{
  font-size: 6em;
  position: relative;
}
.sale .h1:first-child{
  font-size: 6em;
  position: relative;
}

.sale span{
  font-family:'Monserrat';
  font-weight: normal;
  font-size: 2.5em;
}
.sale_inner{
  position: relative;
}

.color2  .btn{
  font-family:'Monserrat';
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 2.5em;
  padding: 20px 70px;
  position: absolute;
  color: white;
  border: solid white;
  top: 105px;
  right: 0;
  transition: .3s;
}
.color2  .btn:hover{
  color: rgb(250, 16, 12);
  background-color: white;
  border: solid white;
}
.advantages{
  width: 55%;
  max-width: 1920px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-row-gap: 10px;
  grid-template-rows: repeat(2,1fr);
  grid-auto-rows: 30px;
  grid-template-areas: 
  "list1 list2 list3"
  "list4 list5 list6";
  /* padding-bottom: 10px; */
}

.advant_container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#list{
  padding-top: 65%;
  position: relative;
}
.advantages img{
  width: 30%;
  padding-bottom: 5px;
  transition: .3s;
}

.advantages img:hover{
  width: 35%;
}
.advantages h2{
  font-family:'Monserrat';
  font-weight: bold;
  padding: 0;
  margin: 0;
  font-size: 3em;
}
.advantages .h2{
  font-family:'Monserrat';
  font-weight: bold;
  padding: 0;
  margin: 0;
  font-size: 3em;
}
.list1 h2{

  font-size: 2.5em;
}
.list1 .h2{

  font-size: 2.5em;
}
.list3 h2{
  font-size: 2.6em;
}
.list3 .h2{
  font-size: 2.6em;
}
.list6 h2{
  font-size: 2.6em;
}
.list6 .h2{
  font-size: 2.6em;
}
.advantages span{
  text-align: center;
  font-size: 1.8em;
  font-family:'Monserrat';
  font-weight: normal;
}
.list3 span{
  font-size: 1.8em;
}
.list6 span{
  font-size: 1.8em;
}
.list1{
  grid-area: list1;
}
.list2{
  grid-area: list2;

}
.list3{
  grid-area: list3;
 
}
.list4{
  grid-area: list4;
 
}
.list5{
  grid-area: list5;
}
.list6{
  grid-area: list6; 
}
#advant h1{
  font-family: 'Century Gothic';
  font-weight: bold;
  font-size: 3em;
  margin: 0;
  padding: 50px 0 ;
}
#advant .h1{
  font-family: 'Century Gothic';
  font-weight: bold;
  font-size: 3em;
  margin: 0;
  padding: 50px 0 ;
}
#advant.flex{
  flex-direction: column;
  position: relative;
}
.slider_news{
  width: 75%;
  max-width: 1920px;
  position: relative;
}
.brands{
  width: 95%;
  max-width: 1920px;
  height: 150px;
  padding: 1em 5em;
}
.brands_inner{
  padding: 0;
  display: grid;
  justify-content: center;
  align-content: center;
    grid-template-columns: 2fr 2fr 2fr 0.6fr 2fr 2fr;
    grid-template-rows: 120px;
    column-gap: 50px;
    grid-template-areas: 
    "bre1 bre2 bre3 bre4 bre5 bre6";
}
.brands_inner img{
  opacity: .6;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: .2s;
}
#passive:hover #active{
  opacity: 1;
}
.bre1{
  grid-area: bre1;
}
.bre2{
  grid-area: bre2;
}
.bre3{
  grid-area: bre3;
}
.bre4{
  grid-area: bre4;
}
.bre5{
  grid-area: bre5;
}
.bre6{
  grid-area: bre6;
}


/* Модальное окно */
.modal, .modal_2{
  display:none;
  position: fixed;
  z-index:99;
  left: 0;
  top:0;
  height: 100%;
  width:100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal-wrap, .modal_2 {
	padding: 0 30px;
	position: relative;
	margin: 3% auto;
  max-width: 580px;
}
.modal-content {
	position: relative;
	background-color: #2D2D2D;
	padding: 50px;
	padding-top: 140px;
	box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 7px 20px 0 rgba(0,0,0,0.17);
	animation-name: modalopen;
	animation-duration: 1s;
	z-index: 2;
	color: white;
	text-align: center;
}
.closeBtn {
	display: block;
	height: 50px;
	width: 50px;
	position: absolute;
	top: 5px;
  right: 5px;
}
.lnr-cross{
  font-size: 5em;
  color:white;
  transition: .2s;
}
.lnr-cross:hover{
  color:red;
  cursor:pointer;
}
.info-modal {
  font-family: 'Raleway';
  font-weight: normal;
	font-size: 1.7em;
	display: block;
	color: white;
}
.red_tape {
	z-index: 10;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: rgb(250, 16, 12);
	text-align: center;
}
.red_tape > h2 {
  font-family:'Monserrat';
  font-weight: 600;
  font-size: 2.8em;
	margin: 0;
	padding: 0;
	color: white;
	text-transform: uppercase;
}
/*.red_tape > .h2 {
  font-family:'Monserrat';
  font-weight: 600;
  font-size: 2.8em;
	margin: 0;
	padding: 0;
	color: white;
	text-transform: uppercase;
}*/
.form-phone {
	outline: none;
	width: 180px;
	background-color: #2D2D2D;
	border: 0;
	border-bottom: 1px solid #5C5C5C;
	margin-top: 30px;
	color: white;
}
.form-mail {
	width: 180px;
	color: white;
	margin-top: 30px;
	outline: none;
	background-color: #2D2D2D;
	border: 0;
	border-bottom: 1px solid #5C5C5C;
}
.places{
/*	border: solid 1px red;*/
	display: flex;
	justify-content: space-between;
}
.form-name { 	
	color: white;
	margin-top: 25px;
	width: 100%;
	outline: none;
	background-color: #2D2D2D;
	border: 0;
	border-bottom: 1px solid #5C5C5C;
}
textarea {
	margin-top: 35px;
	width: 100%;
	font-size: 15px;
	resize: none;
	outline: none;
	border: 0;
	background-attachment: local;
	background-image: linear-gradient(to right, #2D2D2D 0px, transparent 0px), linear-gradient(to left, #2D2D2D 0px, transparent 10px), repeating-linear-gradient(#2D2D2D, #2D2D2D 26px, #5C5C5C 26px, #5C5C5C 27px, #2D2D2D 27px);
	line-height: 27px;
	padding: 3px 0px;
	color: white;
}
.modal_btn{
  color:white;
  border: 0;
  font-family:'Monserrat';
  font-weight:600;
  font-size: 1.6em;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 45px;
	padding: 13px 60px;
	background-color: rgb(250, 16, 12);
}
.modal_btn:hover{
  background-color: rgb(168, 10, 7);
  cursor:pointer;
}
/* СПАСИБО ЗА ЗАЯВКУ */

.overlay {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	display: none;
}

.popup {
	position: absolute;
	width: 300px;
	height: 180px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 40px;
	background-color: #FFF;
}

.close-popup {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 23px;
	height: 23px;
	cursor: pointer;
}

.close-popup:before {
	content: '';
	background-color: #000;
	position: absolute;
	height: 1px;
	width: 31px;
	top: 11px;
	left: -4px;
	transform: rotate(-45deg);
}

.close-popup:after {
	content: '';
	background-color: #000;
	position: absolute;
	height: 1px;
	width: 31px;
	top: 11px;
	transform: rotate(45deg);
	left: -4px;
}

/* конец стилей модального окна */

/* СЛАЙДЕР ЛУЧШИЕ ТОВАРЫ */
.slider_best{
  width: 60%;
  max-width: 1920px;
  background-color: white;
  padding-bottom: 0;
  position: relative;
}
.slider_best h1{
  margin: 1.1em 0 1.2em;
  font-size: 3em;
  font-family: 'Century Gothic';
  font-weight: bold;
  
}
.slider_best .h1{
  margin: 1.1em 0 1.2em;
  font-size: 3em;
  font-family: 'Century Gothic';
  font-weight: bold;
  
}
.slider_best.flex{
  flex-direction: column;
}
.slider_best_inner{
  height: 100%;
  width: 100%;
}
.slider_best_inner2{
  height: 100%;
  width: 100%;
}
.slider_best_items{
  position: relative;
}
.img_best{
  width: 100%;
  background-size:contain;
  background-repeat: no-repeat;
  height:200px;
  background-position: center;
 
}
#img1{
  background-image: url(../img/good1.jpg);
}
#img2{
  background-image: url(../img/good9.jpg);
}
#img3{
  background-image: url(../img/good10.jpg);
}
#img4{
  background-image: url(../img/good16.jpg);
}
#img5{
  background-image: url(../img/good26.jpg);
}
#img6{
  background-image: url(../img/good29.jpg);
}
#img7{
  background-image: url(../img/good30.jpg);
}
#sale_status{
  background-color: rgb(238, 34, 29);
}
.status{
  position: absolute;
  background-color: #000;
  padding: 5px 10px;
  font-size: 1em;
  color: white;
  top: 0;
  left: 0;
  font-family: 'Raleway';
  font-weight: 800;
  margin-left: 1px;
}
#amount.price{
  font-size: 3.5em;
}
.price{
  margin-right: 10px;
  font-family:'Monserrat';
  font-weight: 600;
  font-size: 2em;
  color: rgb(78, 78, 78);
}
.red_price{
  color: rgb(238, 34, 29);
}
#red_price{
  color: rgb(238, 34, 29);
}
.description{
  display: block;
  font-family: 'Raleway';
  font-weight: normal;
  font-size: 1.5em;
  margin-top: 10px;
}
.slider_best_items > a{
  margin-top: 20px;
  font-family:'Monserrat';
  font-weight: 600;
  display: block;
  background-color: #000;
  border:solid black 2px;
  padding: 10px 0;
  font-size: 1.3em;
  width: 155px;
  text-align: center;
  transition: .2s;
  margin-left: 1px;
  text-transform: uppercase;
}
.lnr-cart{
  font-size: 1.3em;
  margin-right: 8px;
  vertical-align: sub; 
}
.best_margin{
  margin-bottom: 50px;
}
.slider_best_items > a:hover .lnr-cart{
  color: black;
  font-weight: 400;
}
.slider_best_items > a:hover{
  background-color: white;
  color: black;
}
#slide2.lnr.lnr-chevron-right{
  display: inline-block !important;
  color: rgb(126, 126, 126);
  font-size: 2.5em;   
  transition: .3s;          
}
#slide1.lnr.lnr-chevron-left{
  display: inline-block !important;
  color: rgb(126, 126, 126);
  font-size: 2.5em;  
  transition: .3s;                  
}
.best_title {
  display: block;
  position: relative;
  
}
.arrows{
  position:absolute;
  top: 35px;
  right: 0;
}
.arrows > div:hover{
  cursor: pointer;
}
#slide1.lnr.lnr-chevron-left:hover{
  color:black;
}
#slide2.lnr.lnr-chevron-right:hover{
  color:black;
}
.arrows > div{
  margin-left: 20px;
}
.line-main{
  background-color: #000;
  height: 1px;
  width: 70%;
  margin: 50px auto 10px;
  opacity: 0.2;
}
.slider_news.flex{
  flex-direction: column;
}
a.img_best{
	display: block;
}
a.img_best:hover{
	opacity: 0.7;
	transition: 2s;
}
#news1{
  background-image: url('/wp-content/uploads/2025/01/uhod2.jpg');
}
#news2{
  background-image: url('/wp-content/uploads/2025/01/katridzh3.jpg')
}
#news3{
  background-image: url(../img/news3.jpg)
}
#news4{
  background-image: url('/wp-content/uploads/2025/01/pod.jpg')
}
#news5{
  background-image: url(../img/new5.jpg)
}
.slider_news_inner{
  height: 100%;
  width: 100%;
  margin-bottom: 35px;
}
.news_item{
  padding: 0 30px 0 ;
  color: white;
  
}
.slider_news > h1{
 font-family: 'Raleway';
  font-weight: 600;
  color: white;
  font-size: 3em;
  margin: 30px 0 30px 0;
}
.slider_news > .h1{
 font-family: 'Raleway';
  font-weight: 600;
  color: white;
  font-size: 3em;
  margin: 30px 0 30px 0;
}
.btn_news{
  font-family:'Monserrat';
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.8em;
  display: block;
  padding: 10px;
  width: 130px;
  text-align: center;
  border: 2px solid rgb(83, 83, 83);
  margin-top: 20px;
  transition: .3s;
}
.btn_news:hover{
  color: #2D2D2D;
  background-color: #a0a0a0;
}
.news_item > .h3{
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 2.5em;
  font-family:'Monserrat';
  font-weight: normal;
  line-height: 35px;
}
.news_item > span{
  font-family:'Monserrat';
  font-weight: normal;
  font-size: 2.2em;
  color: rgb(167, 167, 167);
}
.news_item > .img_best{
  height: 250px;
}
#news.arrows{
  top: 40px;
  right: 30px;
}
#slide2.lnr.lnr-chevron-left{
  display: inline-block !important;
  color: rgb(207, 207, 207);
  font-size: 2.5em;  
  transition: .3s;                  
}
#slide3.lnr.lnr-chevron-right{
  display: inline-block !important;
  color: rgb(207, 207, 207);
  font-size: 2.5em;  
  transition: .3s;                  
}
#slide2.lnr.lnr-chevron-left:hover,
#slide3.lnr.lnr-chevron-right:hover{
  color: white;
}
.slick-dots{
  position: absolute;
    z-index: 1;
    bottom: 10%;
    left: 0;
}
.slick-dots li button{
  background-color: #000;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  transition: .2s;
  position: relative;
}
.slick-dots li button:before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  left: 30%;
  top: 30%;
  border: 5px solid rgb(85, 85, 85);
  opacity: 0;
  border-radius: 50%;
  transition: all .3s ease;
}
.slick-dots li button:hover:before{
  background-color:rgb(114, 114, 114);
  width: 15px;
  height: 15px;
  opacity: .6;
  top: -5px;
  left: -5px;
}
/* active btn */
.slick-dots li.slick-active button{
  background-color: rgb(102, 102, 102);
  border-radius: 50%;
  height: 15px;
  width: 15px;
  z-index: 99;
  transition: .2s;
  z-index: 1;
  position: relative;
}
.slick-dots li.slick-active button:before{
  content: "";
  position: absolute;
  z-index: 1;
  background-color: black;
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  margin: -5px;
  opacity: 0.5;
  border-radius: 50%;
  transition: all .3s ease;
}
.slick-dotted.slick-slider{
  margin: 0;
}
.slick-dots li{
  margin: 0 15px;
}
/* BURGER MENU */
nav{
  position: relative;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:white;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham6 .top {
  stroke-dasharray: 40 172;
}
.ham6 .middle {
  stroke-dasharray: 40 111;
}
.ham6 .bottom {
  stroke-dasharray: 40 172;
}
.ham6.active .top {
  stroke-dashoffset: -132px;
}
.ham6.active .middle {
  stroke-dashoffset: -71px;
}
.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

.toggle-menu{
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  z-index: 99999;
  background-color: rgb(238, 34, 29);
}
.menu-mobile{
  color: white;
  font-size: 3em;
  display: none;
  position: absolute;
  height: calc(100vh - 73px);
  width: 100%;
  top: 73px;
  left: -100%;
  z-index: 99999;
  background-color: rgb(56, 56, 56);
  transition: .5s;
  font-family: 'Raleway';
  font-weight: normal;
  overflow: auto;
}
.menu-mobile.active{
  left: 0;
}
.menu-mobile ul{
  margin: 0;
  padding: 0;
}
.menu-mobile ul li{
  padding: 20px 0 20px 50px;
  border-bottom: rgb(27, 27, 27) solid 1px;
}
.drop-menu{
  display: none;
}
.drop-menu.active{
  font-size: 0.8em;
  overflow: auto;
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: 0;
  /* background-color: rgb(68, 68, 68); */
  -webkit-box-shadow: inset 0px 0px 37px 0px rgba(0,0,0,0.44);
  -moz-box-shadow: inset 0px 0px 37px 0px rgba(0,0,0,0.44);
  box-shadow: inset 0px 0px 37px 0px rgba(0,0,0,0.44);
}
.drop-menu a{
  padding: 0 0 0 45px;
}
.mob_btn{
  position: relative;
}
.mob_btn > .lnr-chevron-right{
  font-size: 0.7em;
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(0deg);
  transition: .3s;
}
.mob_btn > .lnr-chevron-right.active{
  transform: rotate(90deg);
}
.menu-mobile a{
  display: block;
 width: 100%;
}
.qa{
  margin-top: 20px;
}
.qa span{
  font-size: 1em;
  color: #ff8b8b;
}
.slider_advant{
  width: 100%;
}
.advant-item{
  font-size: 2.5em;
  text-align: center;
  width: 100%;
}
.advant-item h2, .advant-item span{
  padding: 0 10px;
}
.advant-item .h2, .advant-item span{
  padding: 0 10px;
}
.slider_advant img{
  margin: 0 auto;
  width: 40%;
  padding-bottom: 10px;
  transition: .3s;
}
.flex.adv_mob{
  text-align: center;
  display: none;
}
#slide3.lnr.lnr-chevron-left{
  display: inline-block;
  color: rgb(126, 126, 126);
  font-size: 2.5em ;   
  transition: .3s;                  
}
#slide4.lnr.lnr-chevron-right{
  display: inline-block;
  color: rgb(126, 126, 126);
  font-size: 2.5em ;   
  transition: .3s;          
}
#slide3.lnr.lnr-chevron-left:hover{
  color:black;
}
#slide4.lnr.lnr-chevron-right:hover{
  color:black;
}

#slide5.lnr.lnr-chevron-left{
  display: inline-block;
  color: rgb(126, 126, 126);
  font-size: 2.5em ;   
  transition: .3s;                  
}
#slide6.lnr.lnr-chevron-right{
  display: inline-block;
  color: rgb(126, 126, 126);
  font-size: 2.5em ;   
  transition: .3s;          
}
#slide5.lnr.lnr-chevron-left:hover{
  color:black;
}
#slide6.lnr.lnr-chevron-right:hover{
  color:black;
}
.brands .brands-item img{
  margin: 0 auto;
  opacity: .6;
  width: 65%;
  height: 70px;
  object-fit: contain;
  display: block;
  transition: .2s;
}
#img_bre:hover{
  opacity: 1;
}
#arrows-br.arrows{
display: none;
}
.brands-slider{
 height: 100%;
 width: 200px;
 display: none !important;
}
.flex.brands-cont{
  position: relative;
}
.slider_wrap{
   cursor: grab;
  cursor: -moz-grab; cursor: -webkit-grab;
}
.slider_wrap:active{
    cursor: grabbing;
  cursor: -moz-grabbing; cursor: -webkit-grabbing;
}
.list {height: 200px;}
.advant__bg {height: 100px;}
.advant__desc {height: 100px;}
.list2 .h2 {
    font-size: 2.5em;
}
.list3 .h2 {
    font-size: 2.5em;
}
.list4 .h2 {
    font-size: 2.5em;
}
.list5 .h2 {
    font-size: 2.5em;
}
.list6 .h2 {
    font-size: 2.5em;
}

.advantages__wrapper {
    width: 80%;
    max-width: 1920px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-row-gap: 10px;
    grid-template-rows: repeat(2,1fr);
    grid-auto-rows: 30px;
    grid-template-areas: "list1 list2 list3" "list4 list5 list6";
}
.advantages__item {
    float: left;
    height: 220px;
    box-sizing: border-box;
    transition: 0.3s;
}
.advantages__bg {
    text-align:center;
}
.advantages__bg img {width:30%;min-height:80px;}
.advantages__wrap {text-align:center;}
.advantages .advantages__title {
	font-family: 'Monserrat';
    font-size: 18px;
    margin-bottom: 12px;
    display: block;
    font-weight: bold;
    white-space: nowrap;
    padding-top: 10px;
    position: relative;
}
.advantages .advantages__desc {
	font-size: 1.8em;
    font-family: 'Monserrat';
    font-weight: normal;
}
.qqq {
  flex-direction: column;
}

.search_home {
  display: flex;
  width: 75%;
  margin: 20px 0;
  justify-content: flex-end;
  align-items:center;
}

.search_home .src_form {
  width: 50%;
}

.search_home span {
  font-size: 24px;
  color: #ffffff;
  margin-right: 15px;
}
.slider_img_inner h1{
	font-size: 1.5em;
    margin: 2.5em 0 0.8em 0;
    text-transform: uppercase;
}
.services_container h2{
	font-family: 'Century Gothic';
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    font-size: 4.5em;
    margin: 0 0 20px 0;
}


/*-------------- end --------------*/