/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Russo+One&display=swap");

body {
	overflow-x: hidden;
}

* {
	font-family: "Lato", sans-serif;
}

a {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	color: #1c9fae;
	transition: 0.3s;
}

a:hover {
	text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

h1 {
	font-size: 50px;
	line-height: 54px;
}

h2 {
	font-size: 32px;
	margin-bottom: 30px;
}
/* /fonts */
/* general */
section {
	margin: 70px 0;
}

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

.block-title {
	margin-bottom: 30px;
}

.block-title--white {
	color: #fff;
}

.block-title span {
	color: #1746d3;
	font-family: "Russo One", sans-serif;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px !important;
	}
}

.text-align-center {
	text-align: center;
}

.russo-one {
	font-family: "Russo One", sans-serif;
}

.strong {
	font-weight: 700;
}

.hidden {
	display: none;
}

.expand-button {
	display: none;
}

.hidden-scroll {
	overflow: hidden;
}
/* /general */
/* backgrounds */
.bg--style1 {
	background: #f2f2f2;
}
.bg--style2 {
	position: relative;
}
.bg--style2::after {
	content: url(/assets/images/main/bg1.png);
	position: absolute;
	z-index: -10;
	right: 0;
	top: -100%;
	transform: rotate(45deg);
}
/* /backgrounds */
/* buttons */
.button--style1 {
	padding: 13px 55px;
	background: #1746d3;
	border-radius: 10px;
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-transform: uppercase;
	width: fit-content;
	transition: 0.3s;
	border: 0;
	border-radius: 5px;
}

.button--style1:hover {
	background: #133aaf;
	color: #fff;
	text-decoration: none;
}

.button--style2 {
	padding: 13px 55px;
	background: #ff8c26;
	border-radius: 10px;
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-transform: uppercase;
	width: fit-content;
	transition: 0.3s;
	border: 0;
	border-radius: 5px;
}

.button--style2:hover {
	background: #c46b1d;
	color: #fff;
	text-decoration: none;
}

.button--style3 {
	padding: 13px 55px;
	background: #f70b5f;
	border-radius: 10px;
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-transform: uppercase;
	width: fit-content;
	transition: 0.3s;
	border: 0;
	border-radius: 5px;
}

.button--style3:hover {
	background: #d30951;
	color: #fff;
	text-decoration: none;
}

.button-small {
	padding: 7px 25px;
	font-size: 12px;
}
/* /buttons */
/* breadcrumbs */
.breadcrumb--custom {
	background-color: #f2f2f2;
	padding: 10px 0;
}

.breadcrumb--custom ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumb--custom li {
	list-style: none;
	color: #4f4f4f;
	font-size: 12px;
}

.breadcrumb--custom li a {
	color: #4f4f4f;
}

.breadcrumb--custom li a:hover {
	color: #868686;
}
/* /breadcrumbs */
/* header */

#mobile-header {
	display: none;
}

.navbar-brand img {
	height: 52px;
}

.navbar-nav {
	justify-content: space-between;
	width: 100%;
}

.navbar-border {
	border: 1px solid !important;
}

#mobile-header a.nav-link {
	font-family: "Russo One";
}

.header__top,
.header__middle {
	font-size: 14px;
	line-height: 16px;
}

.header__top,
.header__middle {
	padding: 10px 0;
}

.header__bottom a {
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
}

header a {
	color: #333;
}

.header__social {
	display: flex;
	gap: 5px;
}

.header__social a {
	transition: 0.3s;
	padding: 5px;
}

.header__social a img {
	transition: 0.3s;
}

.header__social a:hover {
	background: #1746d3;
	border-radius: 100px;
}

.header__social a:hover img {
	filter: invert(1);
}

.header__phones {
	display: flex;
	gap: 15px;
}

.header__phones a {
	display: flex;
	gap: 5px;
}

.header__phones a::before {
	content: url(/assets/svg/phone.svg);
}
/* /header */
/* miniCart */
.minicart__section {
	display: flex;
	align-items: center;
	gap: 10px;
}

.minicart__section h5 {
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
}

.minicart__body {
	position: relative;
}

.minicart__count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #f70b5f;
	border-radius: 50px;
	padding: 1px 5px;
	color: #fff;
}

.minicart__icon {
	width: 43px;
	height: 43px;
}

.minicart__icon svg path {
	fill: #1746d3;
	transition: 0.3s;
}

.minicart:hover .minicart__icon svg path {
	fill: #143baf;
}
/* /miniCart */
/* cartForm */
.cart-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 25px;
	grid-row-gap: 0px;
}

.cart-form {
	background: #f2f2f2;
	border-radius: 12px;
	padding: 30px;
}

.cart-form__textarea {
	grid-column-start: 1;
	grid-column-end: 3;
}

.cart-form__textarea textarea {
	resize: none;
}

#payments,
#deliveries,
#deliveries-input {
	display: none;
}
/* /cartForm */
/* footer */
.footer {
	background: #222222;
	padding: 70px 0;
}

/* .footer__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
} */

.gap-10 {
	gap: 10px;
}

.gap-20 {
	gap: 20px;
}

.footer ul {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.footer li {
	padding: 0;
	list-style: none;
}

.footer__column div {
	color: #fff;
}

.footer {
	color: #fff;
}

.footer h4 {
	color: #fff;
}

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

.footer-logo img {
	background: #fff;
	padding: 5px;
	border-radius: 8px;
}

.footer-socials img {
	filter: invert(1);
}

.white-a a {
	color: #fff;
	transition: 0.3s;
	border-bottom: 1px solid transparent;
	width: fit-content;
	padding: 0;
}

.white-a a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
}

.footer__mail::before {
	content: url(/assets/svg/footer-mail.svg);
}

.footer__nav::before {
	content: url(/assets/svg/footer-nav.svg);
}

.footer__clock::before {
	content: url(/assets/svg/footer-clock.svg);
}

.footer__phone::before {
	content: url(/assets/svg/footer-phone.svg);
}

.footer__mail::before,
.footer__phone::before,
.footer__nav::before,
.footer__clock::before {
	display: block;
	width: 20px;
	height: 20px;
}

.footer__mail,
.footer__phone,
.footer__nav,
.footer__clock {
	display: flex;
	align-items: center;
	gap: 5px;
}
/* /footer */
/* main page */
/* banner */
.banners__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 240px);
	grid-column-gap: 30px;
	grid-row-gap: 15px;
}

.banners__grid h1,
.banners__grid h2 {
	color: #fff;
	margin: 0;
	width: 70%;
}

.banner-small h2 {
	font-size: 24px;
}

.banner-small p {
	font-size: 10px;
}

.banners__grid p {
	color: #ffffff99;
	font-family: "Russo One", sans-serif;
	margin: 0;
	width: 70%;
}

.banner-one {
	grid-area: 1 / 1 / 3 / 2;
	background: url("/assets/images/main/banner-1new.png");
}
.banner-two {
	grid-area: 1 / 2 / 2 / 3;
	background: url("/assets/images/main/banner-2new.png");
}
.banner-three {
	grid-area: 2 / 2 / 3 / 3;
	background: url("/assets/images/main/banner-3new.png");
}

.banner {
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	border-radius: 12px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	padding: 30px;
}

.banner-small {
	gap: 15px;
	padding: 15px;
}

.banner-small p {
	font-size: 16px;
	line-height: 16px;
	color: #fff;
}

.banner h1 {
	font-size: 50px;
	line-height: 50px;
}

.banner-one p {
	font-size: 30px;
	line-height: 30px;
	color: #fff;
}

.banner-small h2 {
	font-size: 30px;
	line-height: 30px;
}
/* /banner */
/* calculator */
.calculator__row {
	display: flex;
	gap: 30px;
}

.calculator__element a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
}

.calculator__element a {
	font-size: 14px;
	line-height: 20px;
	color: #999;
}

.calculator-main__element img {
	height: 200px;
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.calculator-main__element h5 {
	color: #000;
	transition: 0.3s;
}

.calculator-main__element:hover h5 {
	color: #0056b3;
}

.calculator__head h1 {
	font-size: 28px;
	line-height: 36px;
}

.calculator__head h3 {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

/* /calculator */
/* catalog */
.main-catalog__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.main-catalog__element {
	border: 1px solid #eeeeee;
	padding: 20px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	font-family: "Russo One", sans-serif;
	color: #222222;
	font-size: 20px;
	line-height: 26px;
}

.main-catalog__element img {
	max-height: 80px;
	object-fit: contain;
}
/* /catalog */
/* stock */

/* /stock */
/* feedback */
.feedback__row {
	display: flex;
	gap: 30px;
}

.feedback__column {
	width: calc(50% - 15px);
}

.feedback__column:first-child {
	background: #f8faff;
	border-radius: 8px;
	padding: 20px;
}

.form__row {
	display: flex;
	gap: 20px;
}

.feedback label span {
	color: #1746d3;
	font-weight: 700;
}

.feedback label {
	font-weight: 700;
}

.feedback textarea {
	resize: none;
}

.feedback button {
	border: 0;
}

.feedback__column img {
	border-radius: 15px;
	height: 100%;
	object-fit: cover;
}
/* /feedback */
/* ticker */
.ticker {
	margin: 0 auto;
}

.ticker p {
	font-size: 56px;
	line-height: 65px;
	letter-spacing: 7%;
	text-align: center;
	text-transform: uppercase;
	animation: text 15s infinite linear;
	padding-left: 100%;
	white-space: nowrap;
	color: transparent;
	font-family: "Russo One", sans-serif;

	-webkit-text-stroke: 1px #1746d3;
}

@keyframes text {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-250%, 0);
	}
}
/* /ticker */
/* reviews */
.reviews {
	background: url(/assets/images/main/m-8-1.png);
	padding: 30px 0;
	background-size: cover;
	background-position: center;
	margin-bottom: 0;
}

.reviews__slider .swiper-slide {
	text-align: center;
}

.reviews__slider img {
	max-width: 70%;
}
/* /reviews */
/* manufactures */
.manufactures-content {
	display: flex;
	gap: 25px;
}

.manufactures-image,
.manufactures-button {
	width: 20%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.manufactures-button {
	justify-content: end;
}

.manufactures-description {
	width: 60%;
}

.manufactures-button a::before {
	content: url(/assets/svg/pdf-ico.svg);
	width: 25px;
	height: 25px;
}

.manufactures-button a {
	display: flex;
	gap: 5px;
}
/* /manufactures */
/* /main page */
/* catalog */
.page-content {
	margin-top: 75px;
}

.product__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 60px;
}

.product__image img {
	max-width: 100%;
	width: 100%;
	position: relative;
	object-fit: contain;
}

.product__image {
	position: relative;
	display: block;

	border: 1px solid #3333331a;
	border-radius: 5px;
	padding: 25px;
}

.product__image::before {
	content: url(/assets/svg/expand.svg);
	display: block;
	width: 28px;
	height: 28px;
	position: absolute;
	z-index: 100;
	bottom: 10px;
	right: 10px;
}

.product__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.product__tags__element {
	width: fit-content;
	padding: 7px 14px;
	background: #f2f2f2;
	color: #5a5a5a;
	border-radius: 5px;
}

.product__column h1 {
	margin-bottom: 30px;
}

.product__characteristics {
	font-weight: 700;
}

.product__tabs {
	grid-area: 2 / 1 / 3 / 3;
}
/* /catalog */
/* product variant */
.varProduct__row {
	grid-template-rows: repeat(1, 1fr);
}

.varTopCharacteristics {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.varTopCharacteristics label,
.varProduct_tabs span {
	font-weight: 700;
}

.varProduct__list {
	display: flex;
	justify-content: space-between;
}

.varProduct_tabs h3 {
	margin-bottom: 40px;
}

.varProduct_tabs .col-form-label {
	font-weight: 700;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	opacity: 1;
}

.varProduct__tags {
	margin-top: 40px;
}

.varAddToCart {
	display: flex;
	gap: 40px;
	margin-top: 30px;
}

.varAddToCart button {
	border: 0;
}

.varAddToCart input[type="number"] {
	width: 90px;
	padding: 10px 5px 10px 10px;
	border-radius: 5px;
	border: 1px solid #1746d3;
	outline: none;
}

.varProduct__row .product__image img {
	height: 520px;
}

.parameters__element {
	border-bottom: 1px solid #3333331a;
	padding-top: 6px;
}
/* /product variant */
/* product list */
.product-list__head {
	display: flex;
	gap: 15px;
	padding: 20px 10px;
	border-radius: 5px;

	background: #f2f2f2;
	color: #333333;
	font-size: 14px;
	font-weight: 700;
}

.products-list__row {
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 20px 5px;
	font-size: 14px;
}

.products-list__element {
	border-bottom: 1px solid #3333331a;
}

.products-list__element:last-child {
	border: none;
}

.products-list__row p,
.product-list__head p {
	margin: 0;
}

.products-list__image {
	width: 25%;
}

.products-list__name {
	width: 35%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.badge__discount {
	background-color: #f70b5f !important;
}

.products-list__article {
	width: 14%;
}
.products-list__stock {
	width: 10%;
}
.products-list__more {
	width: 12%;
}
.products-list__cart {
	width: 18%;
}

.products-list__count {
	width: 90px;
	padding: 10px 5px 10px 10px;
	border-radius: 5px;
	border: 1px solid #1746d3;
	outline: none;
}

button.products-list__cart {
	padding: 10px;
	background: #1746d3;
	border-radius: 10px;
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	text-transform: uppercase;
	width: fit-content;
	transition: 0.3s;
	border: none;
	font-size: 14px;
	border: 1px solid transparent;
	white-space: nowrap;
}

button.products-list__cart:hover {
	background: #ffffff;
	color: #1746d3;
	border: 1px solid #1746d3;
}

.products-list__more a {
	padding: 10px;
	background: #ffffff;
	border-radius: 10px;
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #1746d3;
	text-transform: uppercase;
	width: fit-content;
	transition: 0.3s;
	border: none;
	font-size: 14px;
	border: 1px solid #1746d3;
}

.products-list__more a:hover {
	background: #1746d3;
	color: #fff;
}

/* /product list */
/* tabs */
.tab {
	overflow: hidden;
	margin-bottom: 40px;
}

.tab button {
	font-family: "Russo One", sans-serif;
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	outline: none !important;
	background: #f2f2f2;
}

.tab button:first-child {
	border-radius: 5px 0px 0px 5px;
}

.tab button:last-child {
	border-radius: 0px 5px 5px 0px;
}

.tab button:hover {
	background-color: #1746d3;
	color: #fff;
}

.tab button.active {
	background-color: #1746d3;
	color: #fff;
}

.tabcontent {
	display: none;
	border-top: none;
}

.tabcontent {
	animation: fadeEffect 1s;
}

@keyframes fadeEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* /tabs */
/* filters */
.disabled_fieldsets {
	display: none;
}
fieldset#mse2_msoption\|category {
	display: block;
}

.calculator__filter-column {
	border: 1px solid #eeeeee;
	padding: 15px;
}

.open-filters {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	background: #1746d3;
	color: #fff;
	height: 40px;
	outline: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.calculator__filter-column__outer {
	display: flex;
	flex-direction: column;
}

.checkbox-container-group {
	border-bottom: 1px solid #3333331a;
	padding: 10px 0px;
}

.calculator__head {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.calculator__block .price.ml-md-3 {
	display: none;
}

.button-reset {
	width: 100%;
}

.open-filters {
	display: none;
}
/* /filters */
/* ВРЕМЕННО */
.page-item.active .page-link {
	background-color: #1746d3 !important;
	border-color: #1746d3 !important;
	color: #fff !important;
}

.page-link {
	color: #1746d3 !important;
}

.varProduct__row .badge-secondary {
	background-color: #f70b5f;
}
/* /ВРЕМЕННО */

/* Commissioning */
.commissioning-banner {
	background: url(/assets/images/inner-pages/commissioning-banner1.jpg);
}

.about-banner {
	background: url(/assets/images/inner-pages/about-banner-3.jpg);
}

.commissioning-banner,
.about-banner {
	margin: 0;
	background-repeat: no-repeat;
	height: 600px;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.commissioning-banner::before,
.about-banner::before {
	content: "";
	background: #6d758f52;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
}

.commissioning-banner .container {
	position: relative;
	height: 100%;
}

.commissioning-banner__body {
	width: 680px;
	background: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	padding: 40px;
	border-radius: 8px;
}

.commissioning-banner__body h1 {
	font-size: 32px;
	line-height: 36px;
	margin-bottom: 30px;
}

.commissioning-banner__body p {
	margin-bottom: 30px;
}

.commissioning-types h5 {
	margin-top: 0.5rem;
}

.commissioning-types img {
	border-radius: 8px;
}

.commissioning__border-block {
	border: 1px solid #e1e4ed;
	padding: 25px;
	border-radius: 8px;
}

.commissioning-ico {
	padding: 8px;
	border-radius: 8px;
	border: 1.5px solid #f4f4f4;
}

.commissioning__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.commissioning__number {
	font-size: 48px;
	line-height: 48px;
	color: #b4b9c9;
}

.commissioning__grid img {
	height: 100%;
	width: 100%;
	border-radius: 8px;
}

.commissioning-about .col-xl-6.align-self-center {
	background: #f8faff;
	border-radius: 8px;
	padding: 20px;
}
/* /Commissioning */
/* about us page */

.about-mission .col-xl-6 {
	background: #f8faff;
	border-radius: 8px;
	padding: 20px;
}

.about-mission .col-xl-4 {
	text-align: center;
}

.about-team img,
.commissioning-about img {
	border-radius: 8px;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 0px;
}

.about-grid__element {
	border-radius: 8px;
	border: 1.5px solid #f4f4f4;
	padding: 15px;
}

.values-num {
	margin: 0;
	color: #b4b9c9;
	font-size: 18px;
}

.about-last .col-xl-5 {
	background: #f8faff;
	border-radius: 8px;
	padding: 20px;
	border: 1.5px solid #f4f4f4;
}
/* /about us page */
/* modal */
.modal-body.feedback label {
	color: #000;
}

.modal-title {
	color: #000;
}
/* /modal */
/* MOBILE */

@media (max-width: 992px) {
	.mobile-none {
		display: none;
	}

	#mobile-header {
		position: sticky;
		z-index: 9999;
		width: 100%;
		top: 0;
	}

	.mobile-cart h5 {
		display: none;
	}

	.banners__grid {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(3, 1fr);
	}

	.banner-one,
	.banner-two,
	.banner-three {
		grid-area: initial;
	}

	.ticker {
		display: none;
	}

	.main-catalog__row {
		grid-template-columns: repeat(2, 1fr);
	}

	.products-list__cart,
	.products-list__stock,
	.products-list__article,
	.products-list__count {
		display: none;
	}

	.products-list__name {
		width: 70%;
	}

	.products-list__more {
		width: 30%;
	}

	.pagination {
		flex-wrap: wrap;
	}

	.feedback__row {
		flex-direction: column;
	}

	.feedback__column {
		width: 100%;
	}

	.about-grid,
	.commissioning__grid {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 15px;
	}

	.bg--style2::after {
		content: none;
	}

	.calculator__filter-column {
		position: fixed;
		background: #fff;
		z-index: 99;
		top: 86px;
		height: calc(100vh - 126px);
		width: 100%;
		overflow-y: scroll;
		transform: translateY(-150%);
		animation: downToTop 1s forwards;
	}

	.calculator__content .products-list__row {
		flex-wrap: wrap;
	}

	.calculator__content .products-list__image,
	.calculator__content .products-list__name,
	.calculator__content .products-list__more {
		width: 100%;
	}

	.calculator__content .products-list__cart,
	.calculator__content .products-list__article,
	.calculator__content .products-list__count {
		display: block;
	}

	.calculator__content .products-list__name {
		font-weight: 700;
	}

	.calculator__head {
		flex-direction: column;
	}

	.open-filters {
		display: block;
	}
}

@media (max-width: 768px) {
	.footer__row {
		gap: 25px;
	}

	.manufactures-content {
		flex-direction: column;
	}

	.manufactures-description {
		width: 100%;
	}

	.manufactures-image,
	.manufactures-button {
		width: 100%;
		justify-content: flex-start;
	}

	.commissioning-banner,
	.about-banner {
		height: initial;
	}

	.about-banner .container,
	.commissioning-banner .container {
		padding: 50px 0;
	}

	.commissioning-banner__body {
		position: relative;
		transform: none;
		padding: 15px;
		top: 0;
		width: 80%;
		margin: 0 auto;
	}
}

@media (max-width: 576px) {
	#pc-header {
		display: none;
	}

	h1 {
		font-size: 35px;
		line-height: 40px;
	}

	#mobile-header {
		display: block;
	}

	.banner h1 {
		font-size: 25px;
		line-height: 30px;
	}

	.banner-one p {
		font-size: 16px;
		line-height: 16px;
	}

	.banner-small h2 {
		font-size: 25px;
		line-height: 30px;
	}

	.banners__grid p,
	.banners__grid h1,
	.banners__grid h2 {
		width: 100%;
	}

	.page-content {
		margin-top: 55px;
	}

	section {
		margin: 55px 0;
	}

	.main-catalog__row {
		grid-template-columns: repeat(1, 1fr);
	}

	.form__row {
		flex-direction: column;
		gap: 0;
	}

	.commissioning-banner__body h1 {
		font-size: 17px;
		line-height: 24px;
	}

	.commissioning-banner__body .button {
		display: none;
	}

	.product__row {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}

	.product__row .product__column:first-child {
		/* order: 2; */
	}

	.varProduct__row .product__image img {
		height: initial;
	}

	.product__column h1 {
		font-size: 25px;
	}

	.varAddToCart {
		flex-direction: column;
		gap: 10px;
	}
}

/* MOBILE END */
/* animations */
@keyframes downToTop {
	0% {
		transform: translateY(150%);
	}
	100% {
		transform: translateY(0);
	}
}
/* /animations */

