* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	color: inherit;
	text-decoration: none;
}

body {
	font-family: "Exo 2", sans-serif;
	color: rgb(31, 31, 31);
	font-weight: 400;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: calc(100% - 30px);
	padding:0;
}

header.header {
	/* overflow: hidden; */
}

.header__top {
	padding: 15px 0;
	border-bottom: 1px solid rgb(242, 242, 242);
	background: rgb(253, 253, 253);
}

.header__top .container {
	max-width: 1800px;
	display: flex;
	align-items: center;
	gap: 35px;
}

.header-logo {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-right: auto;
}

.header-logo__img {
	max-width: 256px;
}

.header-logo__text {
	max-width: 213px;
	font-size: 19px;
	font-weight: 600;
	line-height: 20px;
}

.header-search {
	max-width: 668px;
	display: flex;
	border: 1px solid rgb(245, 245, 245);
	border-radius: 6px;
	background: rgb(255, 255, 255);
	width: 100%;
	height: 44px;
	align-items: center;
	overflow: hidden;
}

.header-search__input {
	padding: 0 16px;
	width: -webkit-fill-available;
	border: none;
	height: 100%;
	color: rgb(31, 31, 31);
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	max-width: calc(100% - 42px);
}

.header-search__btn {
	background-color: rgb(210, 33, 43);
	background-image: url(img/search.png);
	width: 42px;
	min-width: 42px;
	height: 40px;
	border: none;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	transition: all .3s;
}

.header-search__btn:hover {
	background-color: rgb(31, 31, 31);
}

.header-contacts {
	display: flex;
	flex-direction: column;
	text-align: right;
	gap: 11px;
}

.header-contacts__tel {
	font-size: 18px;
	font-weight: 700;
	line-height: 12px;
}

.header-contacts__mail {
	font-size: 15px;
	line-height: 10px;
	color: rgb(140, 140, 140);
}

.header-buttons {
	display: flex;
	gap: 8px;
}

.header-buttons__item {
	border: 1px solid #ccc;
	width: 56px;
	height: 56px;
	border-radius: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	position: relative;
}

.header-cart__count {
	position: absolute;
	background: rgb(210, 33, 43);
	width: 16px;
	height: 16px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(255, 255, 255);
	font-size: 10px;
	font-weight: 700;
	line-height: 12px;
	top: 0;
	right: 0;
}

.header-buttons__item:hover {
	background: rgb(31, 31, 31);
	border-color: inherit;
}

.header-buttons__item * {
	transition: all .3s;
}

.header-buttons__item:hover * {
	fill: #FFF;
}

.header-buttons__item.cart {
    /* background-image: url(img/cart.png); */;
}

.header-buttons__item.bio {
    /* background-image: url(img/bio.png); */;
}

.header-buttons__item.menu-toggle {
	display: none;
}

.header-socials {
	display: flex;
	gap: 8px;
}

.header-socials__item {
	width: 38px;
	height: 38px;
	backdrop-filter: blur(2px);
	background: linear-gradient(202.29deg, rgb(255, 67, 67) 2.599%,rgb(31, 31, 31) 85.443%);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-socials__item:hover {
	background: rgb(31, 31, 31);
}

.header-socials__item:before {
	content: '';
	width: 21px;
	height: 21px;
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
}

.header-socials__item.tg:before {
	background-image: url(img/tg.png);
}

.header-socials__item.wa:before {
	background-image: url(img/wa.png);
}

.header-socials__item.vk:before {
	background-image: url(img/vk.png);
}

.header__bottom {
	padding: 16px 0;
	position: relative;
}

.header__bottom .container {
	max-width: 1800px;
	display: flex;
	justify-content: center;
}

.header-menu {
	display: flex;
}

.header-menu li {
	display: flex;
	position: relative;
}

.header-menu li a {
	padding: 11px 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 21px;
	text-transform: uppercase;
	position: relative;
}

.header-menu li a:before {
	transition: all .3s;
}

.header-menu li a:hover:before {
	content: '';
	border-bottom: 2px solid rgb(210, 33, 43);
	position: absolute;
	width: 100%;
	bottom: 0;
	height: 100%;
	left: 0;
}

.header-menu__submenu {
	position: absolute;
	padding: 21px 24px 25px 24px;
	border-radius: 20px;
	box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.07);
	background: rgb(255, 255, 255);
	z-index: 9;
	bottom: -1px;
	transform: translateY(100%);
	width: 275px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}

.header-menu li:hover .header-menu__submenu {
	opacity: 1;
	visibility: visible;
}

.header-menu__submenu li a {
	color: rgb(140, 140, 140);
	font-size: 16px;
	font-weight: 400;
	line-height: 11px;
	padding: 0 0 14px;
	margin-bottom: 14px;
	border-bottom: 1px dashed rgb(227, 227, 227);
	width: 100%;
	text-transform: none;
}

.header-menu__submenu li:last-child a {
	margin: 0;
	padding: 0;
	border: none;
}

.header-menu__submenu li a:before {
	display: none;
}

section {
	padding: 90px 0;
	overflow: hidden;
}

section.banner {
	padding: 0;
}

.banner-slider {
	overflow: hidden;
	position: relative;
}

.banner-slide {
	padding: 86px 0 156px;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: cover!important;
	color: rgb(255, 255, 255);
}

.banner-slide .container {
	max-width: 1546px;
}

.banner-slide__title {
	font-size: 61px;
	font-weight: 800;
	line-height: 64px;
	margin-bottom: 29px;
	max-width: 560px;
}

.banner-slide__text {
	font-size: 23px;
	line-height: 33px;
	max-width: 560px;
	margin-bottom: 46px;
}

.banner-slide__btn {
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	display: flex;
	align-items: center;
	gap: 21px;
	border: 1px solid rgb(255, 255, 255);
	border-radius: 11px;
	width: 282px;
	height: 64px;
	max-width: 100%;
	justify-content: center;
	transition: background 1.3s;
	color:#fff!important;
}

.banner-slide__btn:hover {
	border: none;
	background: linear-gradient(202.33deg, #FF4343 2.6%, #1F1F1F 85.44%);
}

.banner-slide__btn:after {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	max-width: 28px;
	background-image: url(img/w-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-pagination {
	width: calc(100% - 30px)!important;
	max-width: 1546px;
	margin: 0 auto;
	left: 50%!important;
	transform: translateX(-50%);
	justify-content: flex-start!important;
	display: flex;
	gap: 12px;
	bottom: 31px!important;
}

.banner-pagination .swiper-pagination-bullet {
	margin: 0!important;
	border: 2px solid rgb(255, 255, 255)!important;
	width: 12px!important;
	height: 12px!important;
	opacity: 1!important;
	background: transparent!important;
}

.banner-pagination .swiper-pagination-bullet-active {
	background: #FFF!important;
}

section.catalog {
	background-image: url(img/catalog.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.catalog-wrap {
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgb(245, 245, 245);
}

.catalog-wrap:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.catalog-top {
	margin-bottom: 35px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.section-title {
	font-size: 48px;
	font-weight: 600;
	line-height: 52px;
}

.catalog__title {
	margin-right: auto;
}

.catalog__link {
	color: rgb(210, 33, 43);
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	text-decoration-line: underline;
}

.catalog-slider__nav {
	display: flex;
	gap: 7px;
	align-items: center;
	min-height: 54px;
}

.swiper-button-next, .swiper-button-prev {
	position: unset;
	width: 54px;
	height: 54px;
	border: 1px solid rgb(31, 31, 31);
	border-radius: 100%;
	margin: 0;
	transition: all .3s;
}

.swiper-button-next:after, .swiper-button-prev:after {
	content: '';
	width: 30px;
	height: 30px;
	background-image: url(img/slider-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

.swiper-button-prev {
	transform: rotate(180deg);
}

.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
	background-image: url(img/slider-arrow-w.png);
}

.swiper-button-next:hover {
	background: linear-gradient(202.29deg, rgb(255, 67, 67) 2.599%,rgb(31, 31, 31) 85.443%);
	border: transparent;
}

.swiper-button-prev:hover {
	background: linear-gradient(22deg, rgb(255, 67, 67) 2.599%, rgb(31, 31, 31) 85.443%);
	border: transparent;
}

.catalog-slider {
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.catalog-slide {
	border: 2px solid rgb(240, 240, 240);
	border-radius: 12px;
	background: rgb(255, 255, 255);
	padding: 33px 32px 38px;
	width: auto;
	position: relative;
	width: 277.5px;
	transition: all .3s;
	margin-right: 30px;
}

.catalog-slide:hover {
	box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.07);
}

.catalog-slide__img {
	height: 144px;
	margin-bottom: 23px;
	width: 100%;
	object-fit: contain;
	object-position: left;
}

.catalog-slide__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	margin-bottom: 45px;
}

.catalog-slide__price {
	color: rgb(210, 33, 43);
	font-size: 21px;
	font-weight: 700;
	line-height: 25px;
}

.catalog-slide__sale {
	position: absolute;
	top: 14px;
	right: 16px;
	border-radius: 50px;
/* Красный */
	background: rgb(210, 33, 43);
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	height: 26px;
	padding: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.features {
	background-image: url(img/delivery.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.features-top {
	position: relative;
	padding-right: 226px;
	color: rgb(255, 255, 255);
	margin-bottom: 45px;
}

.features__title {
	margin-bottom: 30px;
}

.features__text {
	font-size: 21px;
	font-weight: 500;
	line-height: 33px;
}

.features__img {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 216px;
}

.features-row {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
	counter-reset: item;
	list-style-type: none;
}

.features-item {
	border-radius: 20px;
	backdrop-filter: blur(54px);
	background: rgb(255, 255, 255);
	width: 216px;
	padding: 21px 28px 29px;
	position: relative;
}

.features-item__icon-wrap {
	background: radial-gradient(84.72% 85.71% at 39% 15%,rgb(170, 200, 5),rgb(24, 142, 48) 100%);
	width: 88px;
	height: 88px;
	border-radius: 14px 0px 41px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 17px;
}

.features-item__icon {
	width: 75px;
}

.features-item:before {
	content: counter(item, decimal-leading-zero) " ";
	counter-increment: item;
	position: absolute;
	top: 19px;
	right: 19px;
	font-size: 58px;
	font-weight: 700;
	line-height: 40px;
	opacity: 0.05;
}

.features-item__text {
	font-size: 22px;
	font-weight: 600;
	line-height: 25px;
}

.features-item.green {
	background: radial-gradient(85.16% 85.71% at 39% 15%,rgb(170, 200, 5),rgb(24, 142, 48) 100%);
	color: rgb(255, 255, 255);
}

.features-item.green:before {
	opacity: 0.13;
}

section.news {
	background-image: url(img/news.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.news-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.news__title {
}

.news__link {
	color: rgb(210, 33, 43);
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	text-decoration-line: underline;
}

.news-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.news-item {
	width: 277.5px;
	border: 2px solid rgb(240, 240, 240);
	border-radius: 12px;
	background: rgb(255, 255, 255);
	padding: 21px 26px 29px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.news-item__img {
	border-radius: 15px;
	width: 100%;
	aspect-ratio: 225.5 / 176;
	margin-bottom: 17px;
}

.news-item__title {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 16px;
}

.news-item__text {
	color: rgb(140, 140, 140);
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 18px;
}

.news-item__btn {
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
	border: 1px solid rgb(31, 31, 31);
	border-radius: 6px;
	width: 104px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
}

.news-item__btn:hover {
	border: none;
	background: linear-gradient(202.29deg, rgb(255, 67, 67) 7.934%,rgb(31, 31, 31) 55.572%);
	color: #FFF;
}

.news-item__date {
	position: absolute;
	top: 29px;
	right: 34px;
	height: 21px;
	border-radius: 50px;
/* Красный */
	background: rgb(210, 33, 43);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	color: rgb(255, 255, 255);
	font-size: 13px;
	font-weight: 600;
	line-height: 16px;
}

.news-item.vk {
	background: linear-gradient(202.29deg, rgb(255, 67, 67) 1.244%,rgb(31, 31, 31) 93.033%);
	text-align: center;
	justify-content: center;
	align-items: center;
}

.news-item.vk .news-item__img-wrap {
	width: 92.74px;
	height: 64.35px;
	border: 3px solid rgb(255, 255, 255);
	border-radius: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.news-item.vk .news-item__img {
	width: 52.74px;
	aspect-ratio: auto;
	border-radius: 0;
	margin: 0;
}

.news-item.vk .news-item__title {
	color: rgb(255, 255, 255);
	font-size: 19px;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 18px;
}

.news-item.vk .news-item__text {
	color: rgb(255, 255, 255);
	font-size: 15px;
	line-height: 21px;
}

.news-item.vk .news-item__btn {
	width: 158px;
	height: 42px;
	font-size: 17px;
	font-weight: 600;
	line-height: 20px;
	border-radius: 50px;
	background: rgb(255, 255, 255);
	border: none;
	transition: all .3s;
}

.news-item.vk .news-item__btn:hover {
	background: linear-gradient(202.29deg, rgb(255, 67, 67) 7.934%,rgb(31, 31, 31) 55.572%);
	color: #FFF;
}

footer.footer {
	background-image: url(img/footer.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0;
	/* overflow: hidden; */
	position: relative;
}

.back-to-top {
    position: absolute;
    top: 0;
    right: 210px;
    width: 54px;
    height: 54px;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 31px;
    background: linear-gradient(202.29deg, rgb(255, 67, 67) 2.599%,rgb(31, 31, 31) 85.443%);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
}

.back-to-top img {
    width: 30px;
    height: 30px;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.footer-col:not(:first-child) {
	padding-left: 30px;
	border-left: 1px dashed rgba(255, 255, 255, 0.22);
}

.footer-col {
}

.footer-col.footer-logo {
	display: flex;
	flex-direction: column;
}

.logo.footer-logo__link {
	width: 256.05px;
	max-width: 100%;
}

.logo.footer-logo__link img {
	width: 100%;
}

.footer-logo__text {
	color: rgb(104, 104, 104);
	font-size: 14px;
	line-height: 16px;
	max-width: 194px;
}

.footer-col__title {
	color: rgb(255, 255, 255);
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 15px;
	display: block;
}

.footer-col__menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col__menu li {
}

.footer-col__menu li a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 20px;
	transition: all .3s;
}

.footer-col__menu li a:hover {
	text-decoration: underline;
}

.footer-col.footer-contacts {
}

.footer-contacts__item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-contacts__title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	line-height: 12px;
}

.footer__bottom {
	border-radius: 12px;
	background: rgb(40, 40, 40);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: rgb(255, 255, 255);
}

.footer__copyright {
	max-width: 627px;
	white-space: pre-line;
	font-size: 13px;
	line-height: 16px;
}

.footer-policy__link {
	font-size: 15px;
	line-height: 20px;
	text-align: left;
	text-decoration-line: underline;
}

.footer-contacts__link {
	color: rgb(255, 255, 255);
	font-size: 16px;
	font-weight: 600;
	line-height: 11px;
}

.footer-contacts__item:not(:last-child) {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.footer-contacts__text {
	display: flex;
	flex-direction: column;
	color: rgb(255, 255, 255);
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	max-width: 266px;
}

.footer-contacts__text span {
	display: block;
	font-size: 13px;
	line-height: 15px;
}

.header-menu__submenu.mega-menu {
	left: 0;
	width: 100vw;
	height: 600px;
	overflow: hidden;
	background: url(img/mega-menu.png);
	border-radius: 0;
	padding: 30px 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
}

.header-menu li:has(.header-menu__submenu.mega-menu) {
	position: unset;
}

.mega-menu__container {
	max-width: 1270px;
	margin: 0 auto;
	width: calc(100% - 30px);
	display: flex;
	gap: 40px;
	height: 100%;
}

.mega-menu__left {
	width: 335px;
	padding: 8px 20px 21px 0;
	border-right: 1px dashed rgb(227, 227, 227);
}

.mega-menu__list {
	padding-right: 20px;
	height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.mega-menu__list::-webkit-scrollbar {
	width: 3px;
}

.mega-menu__list::-webkit-scrollbar-track {
	background: rgb(241, 241, 241);
}

.mega-menu__list::-webkit-scrollbar-thumb {
	background: linear-gradient(202deg, rgb(255, 67, 67) 2.599%, rgb(31, 31, 31) 85.443%);
	border-radius: 0;
}

.mega-menu__list li {
}

.mega-menu__list li a {
	display: flex;
	align-items: center;
	border: none;
	margin: 0;
	padding: 0;
	color: rgb(31, 31, 31);
	font-size: 16px;
	font-weight: 700;
	line-height: 21px;
	text-transform: uppercase;
	gap: 16px;
	transition: all .3s;
}

.mega-menu__list li a img {
	background: rgb(255, 255, 255);
	width: 72px;
	height: 72px;
	padding: 8px;
	border-radius: 13px;
}

.mega-menu__list li a:after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	min-width: 24px;
	background-image: url(img/mega-menu__arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

.mega-menu__list li a.active {
	background: linear-gradient(202.29deg, rgb(255, 67, 67),rgb(31, 31, 31));
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.mega-menu__list li a.active:after {
	background-image: url(img/mega-menu__arrow-active.png);
}

a.active > .mega-menu__list__img:before {
	background: linear-gradient(202deg, rgb(255, 67, 67) 2.599%, rgb(31, 31, 31) 85.443%);
}

.mega-menu__list__img:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: rgb(242, 242, 242);
	border-radius: 15px;
	transition: all .3s;
}

.mega-menu__list__img {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 76px;
	height: 76px;
	min-width: 76px;
	transition: all .3s;
}

.mega-menu__right {
	display: flex;
	flex-grow: 1;
}

.mega-menu__content {
	display: none;
	flex-grow: 1;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
	opacity: 0;
	transition: all .3s;
}

.mega-menu__content.active {
	display: flex;
	opacity: 1;
}

.mega-menu__submenu {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mega-menu__submenu li {
}

.mega-menu__submenu li a {
	padding: 0;
	margin: 0;
	border: none;
	color: rgb(140, 140, 140);
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
	text-transform: uppercase;
}

.mega-menu__img {
	width: 531px;
	height: 508px;
	border: 1px solid rgb(244, 244, 244);
	border-radius: 40px;
	box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.03);
	background: rgb(255, 255, 255);
	padding: 16px;
	object-fit: contain;
}

.mega-menu__submenu li a:hover {
	text-decoration: underline;
}

.header-menu li:hover .header-menu__submenu.mega-menu {
	opacity: 1;
	visibility: visible;
}

#m-menu {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	padding: 70px 10px 40px 20px;
	width: 400px;
	max-width: 100%;
}

.mobile-menu {
	display: flex;
	flex-direction: column;
}

.drowdown > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.drowdown-arrow {
	content: '';
	background-image: url(img/mega-menu__arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	width: 60px;
	height: 60px;
	display: block;
	background-color: transparent;
	border: 1px solid rgb(231, 231, 231);
	border-width: 0 1px;
}

.mobile-menu a {
	line-height: 60px;
	font-size: 20px;
	border-bottom: 1px solid rgb(231, 231, 231);
	width: 100%;
	display: flex;
}

.mobile-menu > li.drowdown:first-child > a > .drowdown-arrow {
	border-width: 1px 1px 0;
}

.mobile-menu {
	height: auto;
	overflow: auto;
	padding-right: 10px;
	position: relative;
}

.second-menu {
	display: none;
	position: absolute;
	background: #ffffff;
	width: 100%;
	height: 100%;
	top: 0;
	padding-right: 10px;
	overflow: auto;
}

.active > .second-menu {
	display: block;
}

.dropback:after {
	content: '';
	background-image: url(img/mega-menu__arrow-r.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	width: 58px;
	height: 60px;
	display: block;
	background-color: transparent;
	border: 1px solid rgb(231, 231, 231);
	margin-left: auto;
}

#m-menu .header-contacts {
	display: flex;
	text-align: center;
	margin: 40px 0;
}

#m-menu .header-socials {
	display: flex;
	justify-content: center;
}

@media(max-width: 1600px) {
	.header-logo__text {
		display: none;
	}
}

@media(max-width: 1300px) {
	.header-logo__text {
		display: none;
	}

	.header__bottom {
		display: none;
	}

	.header-contacts {
		display: none;
	}

	.header-socials {
		display: none;
	}

	.header-buttons__item.menu-toggle {
		display: flex;
	}

	.back-to-top {
	    right: 20px;
	}

	.catalog-slide {
		margin-right: 20px;
	}
}

@media(max-width: 1024px) {
	.footer__top {
		flex-wrap: wrap;
		gap: 20px 0;
	}

	.footer-col {
		width: calc(100% / 3);
		padding: 0 20px!important;
	}

	.footer-col.footer-logo {
		width: 100%;
		display: flex;
		align-items: center;
		text-align: center;
	}

	.footer-col:nth-child(2) {
		border: none;
	}

	.footer__bottom {
		flex-direction: column;
	}
}

@media(max-width: 768px) {
	.header-search {
		display: none;
	}

	.banner-slide__title {
		font-size: 40px;
		line-height: normal;
	}

	.banner-slide__text {
		font-size: 18px;
		line-height: normal;
	}

	.banner-slide__btn {
		font-size: 18px;
		line-height: normal;
		height: 50px;
		width: fit-content;
		padding: 15px;
	}

	.section-title {
		font-size: 32px;
		line-height: normal;
		width: 100%;
	}

	.features__text {
		font-size: 18px;
		line-height: normal;
	}

	.features-item__text {
		font-size: 18px;
		line-height: normal;
	}

	.footer-col__title {
		font-size: 18px;
		line-height: normal;
	}

	.header-logo {
		max-width: calc(100% - 180px);
	}

	.header-logo__img {
		max-width: 100%;
	}

	.header-buttons__item {
		width: 40px;
		height: 40px;
	}

	.swiper-button-next, .swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.catalog-top {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 20px;
	}

	.features__img {
		display: none;
	}

	.features-top {
		padding: 0;
	}

	.footer-col {
		border: none!important;
		width: 100%;
	}

	section {
		padding: 40px 0;
	}

	footer.footer {
		padding: 30px 0;
	}

	.banner-slide {
		padding: 50px 0 80px;
	}

	.features-row {
		gap: 20px;
	}

	.news-row {
		gap: 20px;
	}

	.news-top {
		flex-wrap: wrap;
		gap: 20px;
	}

	.news__link {
		margin-left: auto;
	}

	.catalog-slide {
		margin-right: 15px;
	}
}


.bx-aside-nav-control, .bx-aside-nav {
	display:none!important;
}


.news-item {
    justify-content: space-between;
}



@media( min-width:991px){
	.swiper-slide.banner-slide {
		min-height:730px;
	}
}