@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@font-face {
	font-family: 'BertSans';
	src: url('../fonts/BertSans-Medium.woff2') format('woff2'),
			 url('../fonts/BertSans-Medium.woff') format('woff'),
			 url('../fonts/BertSans-Medium.ttf') format('truetype');
	font-weight: 500; /* Medium weight */
	font-style: normal;
}

@font-face {
	font-family: 'BertSans';
	src: url('../fonts/BertSans-SemiBold.woff2') format('woff2'),
			 url('../fonts/BertSans-SemiBold.woff') format('woff'),
			 url('../fonts/BertSans-SemiBold.ttf') format('truetype');
	font-weight: 600; /* SemiBold weight */
	font-style: normal;
}

/* Используемые цвета */
:root {
  --green: #225E2A;
  --green-d: #143819;
	--yellow: #FFCE00;
	--yellow-d: #E5B900;
	--lifht-black: #0B1E0D;
	--gray-b: #999999;
	--gray-m: #CCCCCC;
	--gray-l: #EBEBEB;
	--gray-s: #F7F7F7;
	--link: #000AFF;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
	font-family: "Inter", sans-serif;
	/* font-family: 'Bert Sans Light'; */
	font-size: 16px;
	color: var(--lifht-black);
}
.d-none{
	display: none !important;
}
a,
a:hover,
a:visited,
a:focus{
	color: var(--link);
	font-family: 'BertSans';
	font-weight: 500;
}
h1,h2,h3,h4{
	font-family: 'BertSans';
	font-weight: 600;
}
h1{
	font-size: 33px;
	margin: 25px 0;
}

h2{
	font-size: 25px;
	margin: 25px 0 30px 8px;
}
h2.home-catalog-h2{
	font-size: 32px;
	margin: 105px 0 30px 8px;
	text-align: center;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 20px;
}
.text-big{
	font-size: 20px;
}
.text-button{
	font-size: 16px;
}
.text-menu{
	font-size: 14px;
}
p{
	line-height: 1.5;
	margin-bottom: 45px;
}
button{
	transition: 0.3s;
}
section,
.flex-center{
	display: flex;
	justify-content: center;
}
.container,
.container-big{
	width: 100%;
	margin-left: 24px;
	margin-right: 24px;
}
.container{
	max-width: 1176px;
}
.container-big{
	max-width: 1352px;

}
.container-100{
	max-width: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
.entry-content{
	margin-bottom: 25px;
}
.home-about{
	background-color: var(--gray-s);
	margin-top: 80px;
}
.home-about h2{
	font-size: 33px;
	margin: 77px 0 64px 0;
}
.home-about-blocks{
	display: flex;
	gap: 25px;
	margin-bottom: 25px;
}
.home-about-block-2{
	flex-basis: 476px;
	background-size: cover;
	background-position: center;
}
.home-about-block-1{
	flex-basis: 676px;
	position: relative;
}
.home-about-block-1-img{
	background-size: cover;
	background-position: center;
	height: 400px;
	position: relative;
}
.home-about-block-1-img::after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.2;
	border-radius: 20px;
}
.home-about-block-1-img a,
.home-about-block-1-img a:hover
.home-about-block-1-img a:visited
.home-about-block-1-img a:focus{
	position: absolute;
	z-index: 1;
  bottom: 30px;
  right: 35px;
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	font-size: 25px;
}
.home-about-block-1-img a:hover{
	color: var(--yellow);
}
.home-about-block-1-img a:hover svg circle{
	stroke: var(--yellow);
}
.home-about-block-1-img a:hover svg path{
	fill: var(--yellow);
}
.home-about-block-1-img a span{
	padding-right: 25px;
}
.head-site{
	background-color: var(--gray-s);
	align-items: center;
	margin-top: 26px;
	padding: 10px 20px;
	position: relative;
}
body.scroll{
	margin-top: 100px;
}
body.scroll .head-site{
	position: fixed;
	width: 100%;
	max-width: 1305px;
	z-index: 100;
	top: 0;
	background-color: #f7f7f7b8;
	backdrop-filter: blur(30px);
}
.bord-r20{
	border-radius: 20px;	
}
form p{
	margin-bottom: 0;
}
.wpcf7-list-item{
	margin: 0;
}
form textarea,
input[type="tel"],
input[type="email"],
input[type="text"]{
	border-radius: 10px;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 25px;
	background: #fff;
	border-color: #fff;
	border: #fff 1px solid;
	width: 100%;
}
[type="submit"]{
	border: none;
	border-radius: 10px;
	background-color: var(--yellow);
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	color: var(--lifht-black);
	text-align: center;
	width: 100%;
	margin: 20px 0 0 0;
}
[type="submit"]:hover{
	background: var(--yellow-d);
}
/* Общие стили для всех чекбоксов */
[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
	position: relative;
	background-color: white;
	margin-right: 10px;
}
.wpcf7-checkbox label{
	display: flex;
	align-items: center;
	font-size: 14px;
}
/* Стили для псевдоэлемента галочки */
[type="checkbox"]::after {
  content: ''; /* Создаем пустой контент для псевдоэлемента */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px; /* Ширина галочки */
  height: 15px; /* Высота галочки */
  display: none; /* Скрываем галочку по умолчанию */
}

/* Стили для отмеченного состояния чекбокса */
[type="checkbox"]:checked::after {
  content: '\2714'; /* Задаем символ галочки (✓) */
  font-size: 16px; /* Размер символа галочки */
  color: var(--yellow); /* Цвет галочки - желтый */
  display: block; /* Отображаем галочку */
	text-align: center;
	margin-top: -2px;
}

a.head-logo, a.head-logo:hover, a.head-logo:visited, a.head-logo:focus{
	color: #000;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 600;
	font-size: 11px;
	line-height: 1.5;
	margin-right: 15px;
}
.navigation ul{
	list-style: none;
  display: flex;
}
.navigation ul li{
	position: relative;
	padding: 5px 10px;
}
.navigation ul li > ul{
	display: none;
}
.navigation ul li:hover > ul{
	/* display: block; */
	position: absolute;
	background: var(--gray-s);
	padding: 10px 10px 10px 10px;
	margin: 0 0 0 0;
	border-radius: 15px;
	left: 0;
	top: 25px;
}

.navigation ul a,
.navigation ul a:hover
.navigation ul a:visited,
.navigation ul a:focus{
	color:var(--lifht-black);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.head-pfone{
	font-weight: 600;
	font-size: 18px;
	margin: 0 25px;
}
.head-working{
	font-size: 14px;
  line-height: 1.5;
	margin-right: 30px;
	text-align: center;
}
a.green,
a.green:hover,
a.green:visited,
a.green:focus,
button.green,
a.yellow,
a.yellow:hover,
a.yellow:visited,
a.yellow:focus,
button.yellow{
border: none;
border-radius: 10px;
padding: 16px 17px;
font-size: 17px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
color: var(--lifht-black);
text-align: center;
display: block;
}
.yellow,
a.yellow,
a.yellow:hover,
a.yellow:visited,
a.yellow:focus,
button.yellow{
	background-color: var(--yellow);
}
a.green,
a.green:hover,
a.green:visited,
a.green:focus,
button.gren{
	background-color: var(--green);
	color: #fff;
}
a.yellow:hover,
button.yellow:hover{
	background-color: var(--yellow-d);
}
a.green:hover,
button.green:hover{
	background-color: var(--green-d);
}
.breadcrumbs-body{
	height: 100px;
	align-items: center;
}
.breadcrumbs-container{
	padding: 10px 0 0 0;
}
.breadcrumbs-container,
.breadcrumbs-container .current,
.breadcrumbs-container a:hover,
.breadcrumbs-container a:visited,
.breadcrumbs-container a:focus,
.breadcrumbs-container a{
	text-decoration: none;
	text-decoration: none;
	color: var(--gray-b);
	font-size: 16px;
	font-weight: 600;
}
.home-haed{
	background-size: cover;
	background-position: center;
	min-height: 534px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
	margin-bottom: 25px;
}
.home-haed h1{
	color: #fff;
	width: 100%;
	max-width: 1176px;
	padding: 30px;
	margin: 0;
	font-size: 56px;
	text-align: left;
}
.home-haed-excerpt{
	color: #fff;
	width: 100%;
	max-width: 1175px;
	font-size: 24px;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin: 0;
	padding: 3px 32px 98px 32px;
}
.home-servises-link{
	margin: 50px 0;
	font-size: 21px;
	padding: 18px 10px;
	border-radius: 20px;
}
.footer-container-fn{
	background-color: var(--gray-s);
	margin-bottom: 25px;
}
.footer-container{
	display: flex;
	flex-wrap: wrap;
	padding: 75px 0;
}
.footer-logo img{
	width: 50px;
}
.footer-name{
	font-size: 25px;
  font-weight: 600;
	line-height: 1.8;
}
.footer-logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: max-content;
}
.footer-desck{
	font-size: 17px;
	padding-top: 10px;
	line-height: 1.4;
}
.footer-nav{
	flex-basis: 215px;
	flex-grow: 100;
	display: flex;
	margin: 0;
	justify-content: center;
}
.footer-nav ul{
	list-style-type:none
}
.footer-nav ul ul{
	display: none;
}
.footer-nav a,
.footer-nav a:hover,
.footer-nav a:focus,
.footer-nav a:visited{
	color: var(--lifht-black);
	text-decoration: none;
	font-weight: 600;
}
.footer-nav li{
	padding: 5px 0 25px 0;
}
.footer-contacts{
	display: flex;
	flex-wrap: wrap;
	flex-basis: 220px;
	flex-grow: 428;
	height: max-content;
	justify-content: space-between;
}
.footer-logo-desk{
	flex-basis: 260px;
	max-width: 300px;
	flex-grow: 100;
}
.footer-info h3{
	font-size: 16px;
	padding: 5px 0 20px 0;
}
.footer-contacts a,
.footer-contacts a:hover,
.footer-contacts a:focus,
.footer-contacts a:visited{
	display: flex;
	align-items: center;
	color: var(--lifht-black);
	text-decoration: none;
	height: max-content;
	flex-basis: 250px;
	margin-bottom: 25px;
}
.footer-contacts a img{
	width: 50px;
	margin-right: 15px;
}
.footer-bottom{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 45px;
	flex-wrap: wrap;
}
.footer-bottom a,
.footer-bottom a:hover
.footer-bottom a:visited
.footer-bottom a:focus{
	display: flex;
	align-items: center;
	color: var(--lifht-black);
	text-decoration: none;
	font-weight: 600;
}
/* .footer-bottom a,
.footer-bottom div{
	text-align: center;
	flex-grow: 1;
} */
a.footer-made img{
	margin-right: 8px;
}
.footer-area{
	line-height: 1.5;
	padding-bottom: 25px;
}
.footer-area-works-h{
	font-weight: 600;
}
.footer-info{
	flex-basis: 400px;
	flex-grow: 100;
}
.footer-area-works{
	margin-bottom: 36px;
}
.footer-made b{
	font-weight: 600;
	white-space: nowrap;
}
.error-404-container{
	background-image: url(../img/404.jpeg);
	background-position-y: -36px;
	background-size: cover;
	padding: 65px;
}
.error-404 h1{
	font-size: 59px;
	color: var(--yellow);
}
.error-404-container p{
	color: #fff;
	max-width: 550px;
	margin-bottom: 25px;
}
a.error-404-botton{
	max-width: 573px;
  width: 100%;
	display: block;
	margin-bottom: 80px;
}
/* .new-tumb,
.content-new,
.new-tumb iframe,
.new-tumb img,
.new-tumb .video-container */
.content-new,
.new-tumb{
	width: 100%;
	max-width: 776px;
	overflow: hidden;
	line-height: 0;
}
.new-tumb .video-container video{
	width: 100%;
}
.new-tumb iframe{
	height: 375px;
	width: 100%;
}
/**/
.video-container {
    position: relative;
    display: inline-block;
}

#video_new {
	width: 100%;
	height: auto;
}

.play-button-video{
    position: absolute;
		cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
		background-image: url(../img/play-button-video.svg);
}

.play-button-video:hover {
  opacity:0.7;
}
.news-date{
	font-size: 14px;
  padding: 30px 0;
}
.new-tumb-img{
	height: 374px;
	background-size: cover;
	background-position: center;
}

.header-new-archive h1{
	text-align: center;
	margin-top: 10px;
}
.posts{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -13px;
	margin-right: -13px;
	margin-top: 50px;
}
.posts .post-error{
	margin: 0 0 30px 0;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--gray-m);
}
a.news-one-arhiv,
a.news-one-arhiv:hover,
a.news-one-arhiv:visited,
a.news-one-arhiv:focus{
	flex-grow: 1;
	flex-basis: 230px;
	max-width: 320px;
	margin: 13px;
	text-decoration: none;
	background: var(--gray-s);
	color: var(--lifht-black);
}
.news-arhiv-img{
	height: 276px;
	background-size: cover;
	display: flex;
	background-position: center;
}
.news-arhiv-h2{
	color: #fff;
	margin: 18px 23px;
	font-size: 25px;
	font-weight: 400;
	line-height: 1.2;
}
.news-arhiv-detals{
	font-weight: 600;
	padding: 20px 23px 19px 23px;
}
.pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 37px 0 100px 0;
}
.page-numbers,
a.page-numbers,
a.page-numbers:hover,
a.page-numbers:visited,
a.page-numbers:focus{
	display: flex;
	width: 36px;
	height: 36px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: var(--gray-b);
	text-decoration: none;
	font-weight: 600;
}
span.page-numbers.current{
	background-color: var(--yellow);
	color: var(--lifht-black);
}
a.next.page-numbers{
	margin-left: 40px;
}
a.prev.page-numbers{
	margin-right: 40px;
}
span.page-numbers.dots{
	width: 50px;
}
.home-link-catolog{
	width: 100%;
	max-width: 372px;
	margin: 20px auto 0 auto;;
}
.popap-order{
	display: none;
	transition: 0.5s;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	position: fixed;
	width: 100%;
	max-width: 776px;
	transform: translate(-50%, -50%);
	height: 563px;
	top: 50%;
	left: 50%;
	border-radius: 20px;
	background: var(--gray-s);
	z-index: 1000;
}
.popap-fon{
	display: none;
	transition: 0.5s;
	position: fixed;
	z-index: 999;
	background: #fff;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}
.popap-order-body{
	max-width: 523px;
	margin: 50% auto 0 auto;
	transform: translate(0, -65%);
}
.popap-order-body form p{
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}
.popap-order-body form label{
	width: 100%;
}
.popap-order-body form textarea,
.popap-order-body form input{
 margin: 0;
}
.popap-order-body span[data-name="your-phone"],
.popap-order-body span[data-name="your-email"]{
 flex-basis: 200px;
 flex-grow: 1;
}
.popap-order-body  input[type="checkbox"]{
	margin-right: 10px;
}
.popap-x{
	cursor: pointer;
	position: absolute;
	top: 0;
	right: -60px;
}
.popap-order-body textarea{
	resize: none;
}
.wpcf7 form.sent .wpcf7-response-output{
	background: var(--gray-s);
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	height: 100%;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: flex-start;
}
.wpcf7 form.sent .wpcf7-response-output::after{
	content: '';
	display: block;
	background-image: url(../img/f-ok.svg);
	width: 80px;
	height: 80px;
	background-size: 100%;
	margin-bottom: 25px;
}
@media screen and (max-width: 1280px){
	.home .posts{
		margin-left: 0;
		margin-right: 0;
	}
	.home-haed h1{
		font-size: 40px;
	}
	.home-haed-excerpt{
		font-size: 20px;
	}
	.head-site{
		justify-content: space-between;
		padding: 10px;
	}
	body.scroll .head-site{
		width: calc(100vw - 48px);
		margin-top: 20px;
	}
	.head-nav{
		display: none;
	}
	.button-memu-head{
		background-image: url(../img/menu.svg);
		width: 48px;
    height: 48px;
		cursor: pointer;
	}
	.button-memu-head.click{
		background-image: url(../img/menu-x.svg);
	}
	.head-pfone{
		margin-left: auto;
	}
	.head-nav.click{
		display: block;
		position: absolute;
		top: calc(100% + 20px);
		right: 0;
		background: var(--gray-s);
		min-width: 420px;
		text-align: center;
		padding: 20px;
		border-radius: 20px;
		z-index: 100;
	}
	.head-nav.click ul{
		display: block;
	}
	.head-nav.click ul ul{
		display: none;
	}
	.navigation ul li:hover > ul{
		display: none;
		background: var(--gray-s);
		padding: 0;
		border-radius:0;
		margin-top: 10px;
    left: 0;
    top: 0;
	}
	.head-nav .menu-item-has-children::after{
		content: '';
		display: inline-block;
		cursor: pointer;
		width: 24px;
		height: 24px;
		margin-bottom: -6px;
		margin-left: 0px;
		background-image: url(../img/arrow-down.svg);
	}
	.menu-item-has-children.click{
		display: flex;
    flex-wrap: wrap;
    justify-content: center;
		align-items: center;
	}
	.menu-item-has-children.click a{
		order: 1;
	}
	.menu-item-has-children.click ul{
		width: 100%;
    order: 3;
		margin-top: 10px;
	}
	.menu-item-has-children.click::after{
		order: 2;
		margin-bottom: -3px;
		margin-left: 5px;
	}
	.head-nav.click ul .menu-item-has-children.click ul{
		display: block;
		position: relative;
	}
	.navigation ul li{
		padding: 10px;
	}
	.navigation ul > li:not(:first-child):before{
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100px;
		height: 1px;
		background-color: var(--gray-m);
	}
	.navigation ul li.menu-item-has-children li{
		padding: 5px;
	}
	.navigation ul li.menu-item-has-children li a{
		font-size: 14px;
	}
	.navigation ul li.menu-item-has-children li:before{
		display: none;
		top: 0;
		left: 0;
		transform:none;
	}
	.error-404-container p{
		max-width: calc(100vw - 453px);
	}
	a.error-404-botton {
    margin-bottom: 10px;
	}
}
@media screen and (max-width: 955px){
	.footer-policy {
		order: 1;
	}
	.footer-made{
		order: 2;

	}
	.footer-copy{
		order: 3;
		text-align: center;
    width: 100%;
    margin-top: 25px;
	}
	.footer-container{
		padding: 50px 0;
	}
	.popap-x{
		right: 15px;
    top: 27px;
	}
	.popap-order{
		max-width: 100%;
    top: 0;
    transform: none;
		right: 0;
    left: 0;
    height: 100%;
    border-radius: 0;
	}
}
@media screen and (max-width: 768px){
	.home-catalog-body .slick-slide > div{
		display: flex;
    justify-content: center;
	}
	.home-catalog-body .slick-dots{
		top: 610px;
	}
	.home-catalog-body .slick-dots li:not(.slick-active) button:before{
     background-color: var(--gray-b);
	}
	.home-catalog-body .slick-list .slick-slide .slick-dots{
		display: none !important;
	}
	.home-about-block-2{
		display: none;
	}
	.home-about-block-1{
		flex-basis: 100%;
	
	}
	.home-about-block-1 p{
		position: absolute;
		z-index: 1;
		color: #fff;
		padding: 25px;
		top: 0;
		left: 0;
	}
	.home-link-catolog{
		margin: 60px auto 0 auto;
	}
	.home-about-block-1-img a, .home-about-block-1-img a:hover .home-about-block-1-img a:visited .home-about-block-1-img a:focus{
		left: 20px;
	}
	.home-about-block-1-img::after {
    opacity: 1;
    border-radius: 20px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0 0 0 / 52%) 0%, rgb(0 0 0 / 3%) 53%);
}
	.container, .container-big {
    margin-left: 15px;
    margin-right: 15px;
	}
	.head-site{
		margin-top: 15px;
	}
	body:not(.page-template-templete-contacts) .breadcrumbs-body{
		display: none;
	}
	body{
		font-size: 14px;
	}
	h1{
		font-size: 24px;
    margin-top: 50px;
	}
	.header-new-archive h1{
		margin-top: 38px;
	}
	.home-haed h1{
		font-size: 34px;
		padding: 25px 25px 10px 25px;
	}
	.home-haed-excerpt {
		font-size: 16px;
		padding: 0 25px 25px 25px;
  }
	h2{
		font-size: 20px;
		margin: 16px 0 16px 8px;
	}
	h3{
		font-size: 18px;
	}
	h4{
		font-size: 16px;
	}
	.application,
	.head-working{
		display: none !important;
	}
	.head-pfone{
		margin: auto;
	}
	.head-nav.click{
		min-width: 0;
		width: 100%;
		height: calc(100vh - 140px);
	}
	.navigation ul li {
    position: relative;
    padding: 18px 10px;
}
.posts{
	margin-top: 0;
}
	.navigation ul a, .navigation ul a:hover .navigation ul a:visited, .navigation ul a:focus {
		font-size: 20px;
	}
	.footer-bottom{
		margin-top: 0;
	}
	.footer-copy{
		width: 100%;
    text-align: center;
	}
	.footer-bottom a, .footer-bottom a:hover .footer-bottom a:visited .footer-bottom a:focus {
		width: 100%;
    justify-content: center;
	}
	.footer-policy{
		margin-bottom: 25px;
	}
	.footer-logo img {
    width: 40px;
	}
	.footer-name {
    font-size: 20px;
	}
	.footer-desck {
    font-size: 13px;
		padding-top: 5px;
		text-align: center;
	}
	.footer-logo-desk{
		max-width: 210px;
	}
	.error-404-container{
		position: absolute;
		background-image: none;
		padding: 0;
		transform: translateY(-50%);
		top: 50%;
		width: calc(100% - 48px);
	}
	.error-404-container p{
		color:var(--lifht-black);
		width: 100%;
		max-width: 100%;
	}
	.error-404 h1{
		font-size: 36px;
	}
	.header-new h1{
		text-align: center;
	}
	.pagination{
		padding: 37px 0 50px 0;
	}
	.popap-order-body{
		max-width: 100%;
		margin: 114px 0 0 0;
		transform: none;
	}
	.wpcf7 form.sent .wpcf7-response-output{
		top: 66px;
		height: calc(100vh - 66px);
		align-items: center;
		text-align: center;
	}
}
@media screen and (max-width: 550px){
	.home-haed{
		align-items: flex-start;
	}
	.home-haed h1{
		max-width: 250px;
	}
	.home-haed h1{
		max-width: 308px;
    font-size: 36px;
    line-height: 1.5;
	}
	.footer-logo-desk{
		max-width: 100%;
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
		margin-bottom: 37px;
	}
	.footer-nav li {
    padding: 5px 0 19px 0;
	}
	.footer-contacts,
	.footer-info{
		max-width: 320px;
    margin: auto;
	}
	.footer-made{
		flex-direction: column;
		text-align: center;
		line-height: 1.8;
	}
	a.footer-made img{
		margin: 0;
	}
	span.page-numbers.dots {
    width: 5px;
	}
	a.next.page-numbers,
	a.prev.page-numbers{
		font-size: 0;
		margin: 0;
	}
	a.next.page-numbers,
	a.prev.page-numbers::before{
		content: '';
		width: 8px;
		height: 8px;
		border-left: 3px solid;
		border-bottom: 3px solid;
		transform: rotate(45deg);
		margin: 0;
		border-radius: 0;
	}
	a.next.page-numbers{
		transform: rotate(225deg);
		width: 10px;
		height: 10px;
		margin-left: 15px;
	}
	.home-catalog-body .slick-dots {
		top: 610px;
	}
}
@media screen and (max-width: 425px){
	.head-pfone{
		font-size: 16px;
	}
	.button-memu-head{
		width: 40px;
	}
	a.head-logo, a.head-logo:hover, a.head-logo:visited, a.head-logo:focus{
		margin-right: 0;
	}
}
