:root {
	--yellow: #EBB144;
	--yellow-hovered: #FFB400;
	--blue: #458BE0;
	--gray: #7E8B98;
}
html,body {
	height: 100%;
}
body {
	font-family: 'Open sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: left;
	background: #2B3036;
	color: #FFFFFF;
}
h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 32px;
}
h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 33.6px;
    text-align: left;
    margin-bottom: 28px
}
hr {
    border-top: 1px solid #ffffff1a;
}
p, ul, ol {
	font-family: 'Open sans', sans-serif;
	color: #FFFFFFCC;
}
p, li, ol {
    margin-bottom: 24px;
}
ol {
    margin-left: 0;
    padding: 0;
}
.col-md-16 h2 {
    font-size: 32px;
}
.nums_with_background li {
    display: inline-flex;
    counter-increment: step-counter;
    min-height: 54px;
}
.nums_with_background li::before {
    display: block;
    border-radius: 50%;
    background-image: url("/assets/css/images/item.svg");
    min-width: 54px;
    height: 54px;
    content: counter(step-counter);
    margin-right: 24px;
    padding: 18px 0;
    box-shadow: 0px 0px 10px 10px #EBB14410;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
}
.nums_with_background > li::before {
    background-size: 54px 54px;
}
@media (min-width: 1260px) {
    .container {
        width: 1260px;
    }
}
.header {
    height: 190px;
}
header {
    height: 140px;
}
header .container {
    height: 100%;
}
.header__container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header__col:first-of-type,
.header__col:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc((100% - 60px) / 4);
}
.header__col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 40px;
    width: calc(((100% - 40px) / 4) * 2 + 20px);
}
.header__shop {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #FFFFFF;
}
.header__shop img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}
.header__shop-phone {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    color: var(--yellow);
}
.header__shop-map {
    color: #FFFFFF;
}
.header__shop-phone:hover,
.header__shop-map:hover {
    color: var(--yellow-hovered);
}
.header-menu__wrapper {
    width: 100%;
    background-color: #0000001A;
}
.sticky .header-menu__wrapper{
    position:fixed;
    background: #272b31;
    top: 0;
    z-index: 1111;
}
.header-menu {
    width: 100%;
    height: 50px;
}
.header-menu__burger {
    display: none;
}
.header-menu ul {
    width: 100%;
    display: inline-flex;
    gap: 88px;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 50px;
}
.header-menu ul li {
    margin-bottom: 0;
}
.header-menu ul li a {
    display: inline-flex;
    gap: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #FFFFFF;
    text-decoration: none;
}
.header-menu ul li a:hover {
    color: var(--yellow-hovered);
}
.subpage {
    display: none;
    flex-direction: column;
    background: #21262C;
    width: 230px;
    position: absolute;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    z-index: 1000000;
}
.header-menu ul li:hover .subpage {
    display: flex;
}
.subpage a {
    padding: 10px 25px;
    text-align: left;
    border-bottom: 1px solid #2f2e2e;
}
.has-sub > a:after {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    background: url(/assets/icons/menu_arrow.svg);
}
.has-sub:hover .subpage {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    opacity: 1;
}
footer {
    background: #272B31;
}
footer hr {
    margin: 0;
}
.footer__copyright {
    height: 50px;
    display: flex;
}
.footer__copyright-left,
.footer__copyright-right {
    width: 50%;
    height: 100%;
}
.footer__copyright-right {
    text-align: right;
}
.footer__copyright p {
    display: inline-flex;
    margin: auto 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: #FFFFFF33;
}
.footer__menu {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 24px 0 54px 0;
}
.footer__menu-column {
    width: calc((100% - 80px) / 5);
}
.footer__menu-column > a {
    font-size: 22px;
    font-weight: 700;
    line-height: 29.96px;
    text-align: left;
    color: #FFFFFF;
    opacity: 0.3;
}
.footer__menu-column .button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.footer__menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.footer__menu-items > a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
    text-align: left;
    color: #FFFFFF;
}
.footer__contact {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    text-align: right;
    margin-bottom: 16px;
}
.footer__contact img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}
.footer__contact a {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--yellow);
}
.footer__contact a:hover {
    color: var(--yellow-hovered);
}
.footer__menu a:hover {
    color: var(--yellow-hovered);
    opacity: 1;
}
.footer-menu__header a {
    font-size: 22px;
    font-weight: 700;
    line-height: 29.96px;
    text-align: left;
    color: #FFFFFF4D;
}
.footer-menu__header img {
    display: none;
}
.breadcrumbs {
    padding: 24px 0;
}
.breadcrumbs .container,
.breadcrumbs .col-md-16 {
    height: 16px;
    line-height: normal;
}
.breadcrumb {
    padding: 0;
    margin: 0;
    display: inline-flex;
}
.breadcrumb li {
    display: inline-flex;
    margin-bottom: 0;
    line-height: 16px;
    height: 16px;
}
.breadcrumb > li a {
    font-style: normal;
}
.breadcrumb > li + li:before {
    content: "/";
}
.breadcrumb > li a {
    display: inline-block;
    height: 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    color: var(--yellow);
    text-decoration: underline;
}
.breadcrumb > li a img {
    width: 14px;
    height: 14px;
    margin: 1px;
    vertical-align: unset;
}
.breadcrumb > li + li:before,
.breadcrumb > .active {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    color: var(--gray);
}
.mp-section-1 {
    height: 650px;
    position: relative;
}
.mp-section-1 video {
    width: 63%;
    height: 650px;
    object-fit: cover;
    position: absolute;
    right: 0;
}
.mp-section-1__wrapper {
    height: 100%;
    position: absolute;
    inset: 0;
    background: url('/assets/images/pages/main/new-bg.png');
    background-size: 60% 100%;
    background-position: left;
    background-repeat: no-repeat;
}
.mp-section-1__banner-content {
    max-width: 615px;
    padding-top: 90px;
}
.mp-section-1 h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 50.4px;
    text-align: left;
}
.mp-section-1 h1 span {
    color: var(--yellow);
}
.mp-advantages {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0 32px;
}
.mp-advantages__column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: calc(100% / 2);
}
.mp-advantages__advantage {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
}
.mp-advantages__icon-background {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url('/assets/css/images/ellipse.svg');
    background-size: 26px 26px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 0px 10px 10px #EBB14410;
}
.mp-advantages__icon-background:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EBB14433;
}
.mp-advantages__icon-background img {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
}
.mp-section-1 .call {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 440px;
}
.call label {
    margin-bottom: 0;
}
.call button {
    text-align: center;
}
.call button,
.call input {
    height: 65px;
}
.call input {
    width: 100%;
    padding: 19px 4px 19px 24px;
    border-radius: 5px;
    border: 1px solid #FFFFFF1A;
    background: #353A40;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.51px;
    color: #FFFFFF99;
    text-align: left;
}
.mp-section-2 {
    background: #21262C;
    padding: 56px 0 68px 0;
}
.mp-section-2 .owl-carousel {
    margin: 16px auto 0 auto;
    width: calc(100% - 138px);
}
/* .mp-section-2 .owl-carousel .owl-wrapper {
    display: flex!important;
    gap: 24px;
} */
.mp-section-2 .owl-carousel .owl-prev,
.mp-section-2 .owl-carousel .owl-next {
    width: 45px;
    height: 45px;
    border-radius: 2px;
    background: #FFFFFF08;
    position: absolute;
    top: 150px;
}
.mp-section-2 .owl-carousel .owl-prev {
    left: -69px;
}
.mp-section-2 .owl-carousel .owl-next {
    right: -69px;
}
.mp-section-2 .owl-carousel .owl-item {
    padding: 0 12px;
}
.mp-section-2 .owl-carousel .item {
    width: 100%;
}
.mp-section-2 .owl-carousel .shop-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mp-section-2 .owl-carousel .shop-item .product-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 24.51px;
    text-align: left;
    color: #FFFFFF;
}
.mp-section-2 .owl-carousel .shop-item .product-title:hover {
    color: var(--yellow-hovered);
}
.mp-section-2 .owl-carousel .shop-item img {
    width: 100%;
    max-height: 320px;
}
.rp-prev,
.rp-next {
    width: 100%;
    height: 100%;
}
.rp-prev {
    background: url(/assets/icons/slider_arrow_left.svg) no-repeat;
}
.rp-next {
    background: url(/assets/icons/slider_arrow_right.svg) no-repeat;
}
.mp-section-3 {
    padding: 160px 0 80px 0;
}
.mp-section-3 .button-transparent {
    margin: 16px 0 0 60px;
}
.mp-section-4 {
    padding: 80px 0 130px 0;
}
.mp-section-4 h2 {
    margin-top: 0;
}
.mp-section-4 button {
    margin-top: 30px;
}
.mp-section-4 ul li{
    color: #ebb145;
}
.main-wrap {
    padding: 16px 0 180px 0;
}
.sidebar {
    padding: 30px 10px 0 10px;
}
.sidebar__widget:not(:first-of-type) {
    margin-top: 24px;
}
.sidebar__widget > span {
    display: block;
    padding: 16px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 29.96px;
    text-align: left;
    color: #FFFFFF;
    opacity: 60%;
    border-bottom: 1px solid #FFFFFF33;
}
.sidebar.services .sidebar__widget > span {
    color: var(--yellow);;
    opacity: 90%;
}
.sidebar__widget > div {
    border-bottom: 1px solid #FFFFFF33;
}
.sidebar__widget > div > .toogle-menu__header,
.sidebar__widget > div > a {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    font-size: 18px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #FFFFFF;
    cursor: pointer;
}
.toogle-menu__header > span,
.sidebar__widget > div > a {
    opacity: 40%;
}
.sidebar.services .sidebar__widget > div > a {
    color: var(--yellow);
    opacity: 90%;
}
.sidebar.services .sidebar__widget > div > a:hover {
    color: var(--yellow-hovered);
    opacity: 100%;
}
.toogle-menu__header > img {
    width: 16px;
}
.toogle-menu__header.active > img {
    rotate: 180deg;
}
.sidebar__widget .togglebox {
    display: none;
    padding: 4px 0 32px 0;
}
.togglebox__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.togglebox__inner a {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    color: #FFFFFF;
}
.togglebox__inner a:hover {
    color: var(--yellow);
}
.content {
    padding-left: 30px;
    padding-right: 0;
}
.content h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 33.6px;
    text-align: left;
    color: #FFFFFF;
}
.content h2 {
    margin: 0 0 40px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 33.6px;
    text-align: left;
    color: #FFFFFF;
}
.product-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    color: #FFFFFF;
}
h3.price {
    width: fit-content;
    margin: 8px 0 12px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #458BE0;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    text-align: left;
    color: #FFFFFF;
}
.product-form p {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #FFFFFF66;
}
.product-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.product-form form > input,
.product-form form > textarea {
    padding: 15px 16px;
    border-radius: 6px;
    background: #494E54;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    color: #FFFFFF99;
}
.product-form form > input {
    height: 50px;
    margin-bottom: 0;
}
.product-form form > textarea {
    height: 180px;
}
.product-form form > button {
    margin-top: 6px;
    text-align: center;
}
.nextprev {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 20px);
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.nextprev > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: absolute;
    margin: 0;
    border-radius: 20px;
    background: #71767C;
    color: #FFFFFF;
}
.nextprev > a.product-prev-btn {
    left: -20px;
}
.nextprev > a.product-next-btn {
    right: -20px;
}
.nextprev > a:hover {
    background: var(--yellow);
}
.catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    width: 100%;
    padding: 32px 0;
}
.product-card {
    display: block;
    position: relative;
}
.product-card img {
    border-radius: 5px;
    filter: brightness(0.7);
}
.product-card__info {
    position: absolute;
    bottom: 24px;
    width: 100%;
    padding: 0 12px;
}
.product-card__info > span {
    display: block;
}
.product-card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
}
.product-card__price {
    width: fit-content;
    padding: 4px 8px;
    margin-top: 12px;
    background-color: #458BE0;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 27.24px;
    text-align: left;
    color: #FFFFFF;
}
.sidebar__widget .product-card {
    margin-top: 25px;
}
.sidebar__widget .product-card img {
    width: 100%;
}
.sidebar__widget > img {
    margin-top: 24px;
    width: 100%;
}
.page-meta hr {
    height: 1px;
    color: #D9D9D9;
    margin-top: 0;
    margin-bottom: 13px;
}
.page-total {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    color: #FFFFFF;
    opacity: 20%;
}
.page-nav {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}
.page-nav li {
    display: block;
    width: 36px;
    height: 36px;
}
.page-nav li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #e5e9ef66;
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    color: #32323299;
    border-radius: 2px;
}
.page-nav li a:hover {
    background: #e5e9efff;
}
.page-nav li a.active {
    background: var(--yellow);
    color: #FFFFFF;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 16px;
    margin-bottom: 24px;
}
.gallery .gal-item {
    width: calc((100% - 16px) / 2);
}
.gallery .gal-item img {
    width: 100%;
}
.blog h1 {
    margin: 0 0 32px 0;
}
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.home-blog-big span {
    display: block;
    font-size: 20px;
    margin-bottom: 24px;
}
.home-blog-big p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: left;
}
.home-blog-big a {
    display: block;
    padding: 10px 30px;
    border-radius: 5px;
    border: 1px solid #FFFFFF33;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #FFFFFF;
}
.home-blog-big a:hover {
    border: 1px solid var(--yellow);
    background: var(--yellow);
}
.home-blog-single > h1 {
    margin: 32px 0;
    font-size: 28px;
}
.about-page .content {
    padding: 0 20px;
}
.about-page h1 {
    margin-bottom: 32px;
}
.contacts {
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}
.contacts__wrapper {
    display: flex;
    width: 100%;
    gap: 20px;
}
.contacts__left,
.contacts__right {
    width: calc((100% - 20px) / 2);
}
.contacts li {
    margin-bottom: 12px;
    color: #FFFFFF99;
}
.contacts li a {
    color: #FFFFFF99;
}
.contacts li a span {
    margin-right: 10px;
}
.sidebar iframe {
    width: 100%;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 6px;
    background: #494E54;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    color: #FFFFFF99;
    margin-bottom: 12px;
}
.comment-form input {
    height: 50px;
}
.contact-us .content {
    padding: 0 10px;
}
.button {
    padding: 20px 43px;
    border-radius: 5px;
    border: 2px solid;
    width: fit-content;
}
.button-yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0px 0px 6px 3px #EBB14440;
    font-family: Open Sans;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #FFFFFF;
}
.button-yellow:hover {
    background: var(--yellow-hovered);
}
.button-blue {
    padding: 20px 60px 22px 60px;
    border-radius: 5px;
    border: none;
    background: var(--blue);
    box-shadow: 0px 0px 6px 3px #458BE040;
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
    text-align: left;
}
.button-transparent {
    padding: 20px 60px 22px 60px;
    border-radius: 5px;
    border: 1px solid #FFFFFF33;
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
    text-align: left;
    color: #FFFFFF;
    background: none;
}
.rotate {
    rotate: 180deg;
}
.normal-height {
    height: auto !important;
    line-height: inherit !important;
}
.form_notification_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1111111111;
    background: rgba(0,0,0,.8);
    display: none;
}
.form_notification {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_notification .success {
    background: mediumseagreen;
}
.form_notification .error{
    background: red;
}
.form_notification p {
    color: #fff;
    padding: 40px;
    position: relative;
}
.form_notification p .fclose {
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 3px;
    right: 3px;
    color: #fff;
    cursor: pointer;
}
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: rgba(0,0,0,.8);
    display: none;
}
.modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-container form {
    position: relative;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #2B3036;
    padding: 40px 20px 20px 20px;
    border-radius: 5px;
}
.modal-container form .fclose {
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 8px;
    right: 20px;
    color: #fff;
    cursor: pointer;
}
.modal-container form input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 6px;
    background: #494E54;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    color: #FFFFFF99;
    margin-bottom: 12px;
    height: 50px;
}
.modal-container form button {
    text-align: center;
}
.modal-container .success {
    background: mediumseagreen;
}
.modal-container .error{
    background: red;
}
.modal-container .message {
    margin: 12px 0 0 0;
    color: #fff;
    padding: 20px;
    position: relative;
    border-radius: 5px;
}
.error-page h1 {
    font-size: 72px;
}
.error-page h3 {
    font-size: 32px;
}
.error-page .button-transparent {
    font-size: 20px;
    display: block;
    width: fit-content;
    margin: 30px auto;
}
.error-page .button-transparent:hover {
    color: #FFFFFF;
}
.error-page p {
    margin: 60px 0;
}
.product-advantages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.product-advantages .mp-advantages__advantage {
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
}
.product-advantages .mp-advantages__icon-background {
    width: 26px;
    height: 26px;
}
.product-advantages .mp-advantages__icon-background:before {
    width: 26px;
    height: 26px;
}
.product-advantages .mp-advantages__icon-background img {
    top: 8px;
    left: 8px;
    width: 10px;
    height: 10px;
}
.product-slide {
    position: relative;
}
.first-block {
    margin-bottom: 32px;
}
.product-info {
    padding-left: 16px;
}
.content-block p, 
.content-block li, 
.content-block ol {
    margin-bottom: 16px;
}
.description-block,
.similar-products-block {
    margin-bottom: 64px;
}
.additional-product-list {
    display: flex;
    gap: 20px;
}
.additional-product-list .product-card {
    width: calc((100% - 40px) / 3);
}
input[type=checkbox] {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #7785921A;
    background: #494E54;
}
.specifications-block {
    margin-bottom: 64px;
}
.product-specification {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #FFFFFF1A;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}
.ps__title {
    color: #FFFFFF99;
}
.mobile-product-info {
    display: none;
}
#totop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ebb145;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
#totop:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
.localities-page .page-title-breadcrumbs-wrapper {
    min-height: 318px;
}
.locality-page .page-title-breadcrumbs-wrapper {
    min-height: 700px;
}
.page-title-breadcrumbs {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-title-breadcrumbs-wrapper {
    height: 100%;
    background: #000000B3;
}
.page-title-breadcrumbs h1 {
    margin: 34px 0 12px;
    font-weight: 700;
    font-size: 42px;
    line-height: 120%;
    color: #EBB144;
}
.page-title__caption {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    vertical-align: middle;
    color: #FFFFFFCC;
}
.districts {
    margin-bottom: 120px;
}
.district-wrapper {
    padding: 32px 0 80px;
    border-top: 1px solid #FFFFFF33;
}
.district__name {
    margin: 0 0 40px;
    font-weight: 400;
    line-height: 110%;
}
.district__localities {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
}
.locality-item {
    display: block;
    width: calc((100% - 3 * 20px) / 4);
    min-height: 60px;
    padding: 18px 20px 20px;
    border-radius: 6px;
    border: 1px solid #FFFFFF1A;
    background: #F9F9F91A;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
    color: #FFFFFF;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}
.locality-item span {
    color: #FFFFFF99;
}
.locality-item:hover {
    border: 1px solid #EBB144;
    background: #EBB144;
    color: #FFFFFF;
}
.districts__form-section {
    display: flex;
    min-height: 500px;
    background: #FFFFFF;
}
.dfs-left {
    padding: 40px 80px 50px 10px;
}
.dfs-right {
    flex: 1;
    min-height: 500px;
    background-image: url("/assets/images/localities/form-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.district-form__wrapper {
    width: 396px;
}
.district-form__title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #323232;
}
.district-form__caption {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #323232B3;
}
.dfs-left .comment-form input {
    background: #F0F0F4;
    border: none;
}
.dfs-left .checkbox label {
    color: #323232;
}
.dfs-left .checkbox label a {
    color: #646464;
}
.dfs-left form button {
    width: 100%;
    border: none;
    box-shadow: 0px 0px 6px 3px #458BE040;
    text-align: center;
}
.locality-list-button {
    display: none;
}
.locality-top {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.locality-top__block {
    min-height: 700px;
    background: #000000B3;
}
.locality-top__block .breadcrumbs {
    padding-bottom: 44px;
}
.locality-top__wrapper {
    display: flex;
    gap: 84px;
}
.locality-top__right {
    width: 460px;
}
.locality-top__left {
    flex: 1;
    padding-top: 76px;
}
.locality-top__left h1 {
    margin: 0 0 24px;
    font-weight: 700;
    font-size: 42px;
    line-height: 120%;
    color: #EBB144;
}
.locality-top__left h1 span {
    color: #FFFFFF;
}
.locality-top__left .mp-advantages {
    margin: 50px 0 0;
}
.lbf__right .district-form__wrapper,
.locality-top__right .district-form__wrapper {
    width: 460px;
    padding: 38px 32px 42px;
    border-radius: 16px;
    background: #FFFFFF;
}
.district-form__wrapper .district-form__caption {
    margin-bottom: 24px;
}
.district-form__wrapper .comment-form input {
    border: none;
    background: #F0F0F4;
}
.district-form__wrapper .checkbox {
    margin-bottom: 21px;
}
.district-form__wrapper .checkbox label {
    color: #323232;
}
.district-form__wrapper .checkbox a {
    color: #646464;
}
.district-form__wrapper button {
    width: 100%;
    height: 65px;
    border: none;
    box-shadow: 0px 0px 6px 3px #458BE040;
    text-align: center;
}
.locality__we-offer {
    padding: 56px 0 62px;
}
.locality__we-offer h2 {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
}
.block-caption {
    margin-bottom: 26px;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    vertical-align: middle;
    color: #FFFFFF99;
}
.we-offer__products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.we-offer__card {
    width: calc((100% - 3 * 20px) / 4);
    padding: 16px 18px 20px;
    border-radius: 10px;
    border: 1px solid #FFFFFF0F;
    background: #FFFFFF0F;
}
.we-offer__card img {
    width: 100%;
    height: 256px;
    object-fit: contain;
}
.we-offer__card-title {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 17px;
    line-height: 140%;
    text-align: center;
    vertical-align: middle;
}
.we-offer__card-price {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    vertical-align: middle;
    color: #458BE0;
}
.we-offer__card a {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    padding: 17.5px 45px;
    background: #EBB144;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
}
.we-offer__card a:hover {
    background: var(--yellow-hovered);
}
.locality__recommended {
    padding: 56px 0 68px;
    background: #21262C;
}
.locality__recommended h2 {
    margin: 0 48px 44px;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
}
.locality__recommended .owl-carousel {
    margin: 0 auto;
    width: calc(100% - 72px);
}
.locality__recommended .owl-carousel .owl-item {
    padding: 0 12px;
}
.locality__recommended .owl-carousel .shop-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.locality__recommended .owl-carousel .item {
    width: 100%;
}
.locality__recommended .owl-carousel .shop-item img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}
.locality__recommended .owl-buttons > div {
    width: 45px;
    height: 45px;
    border-radius: 2px;
    background: #FFFFFF08;
    overflow: hidden;
}
.locality__recommended .owl-carousel .owl-controls {
    position: absolute;
    top: 150px;
    width: calc(100% + 112px);
    margin: 0 -56px;
}
.locality__recommended .owl-carousel .owl-buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.locality__about {
    position: relative;
    padding: 64px 0 124px;
    overflow: hidden;
}
.locality-about__bg-img-1 {
    position: absolute;
    left: 58px;
    bottom: -140px;
    max-height: 900px;
}
.locality-about__bg-img-2 {
    position: absolute;
    right: 295px;
    bottom: 40px;
}
.locality-about__wrapper {
    max-width: 810px;
}
.locality-about__wrapper > img {
    height: 188px;
    margin-right: -16px;
    margin-bottom: 12px;
}
.locality-about__title {
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 32px!important;
    line-height: 120%;
    color: #EBB144;
}
.locality-about__subtitle {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 180%;
    color: #FFFFFF;
}
.locality-about__text {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    color: #FFFFFFCC;
}
.locality__advantages {
    padding: 40px 0 50px;
    border-top: 1px solid #FFFFFF33;
}
.locality-advantages__list {
    display: flex;
    gap: 40px;
}
.locality-advantage__card {
    width: calc((100% - 2 * 40px) / 3);
}
.locality-advantage__card img {
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
}
.locality-advantage__card-title {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
}
.locality-advantage__card-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #FFFFFFB3;
}
.locality-accessories {
    padding: 56px 0 78px;
    background: #21262C;
}
.block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 24px;
}
.block-header__title {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 28px!important;
    line-height: 120%;
    color: #FFFFFF;
}
.block-header__subtitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    vertical-align: middle;
    color: #FFFFFF99;
}
.block-header__right .button-transparent:hover {
    color: #FFFFFF;
}
.locality-accessories .additional-product-list {
    display: flex;
    gap: 27px;
}
.locality-accessories .additional-product-list .product-card {
    width: calc((100% - 3 * 27px) / 4);
}
.locality-accessories .additional-product-list .product-card img {
    width: 100%;
}
.locality__bottom-form {
    position: relative;
    padding: 56px 0 72px;
}
.locality__bottom-form > img {
    position: absolute;
    bottom: 0;
    right: 44px;
    z-index: 1;
}
.lbf-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.lbf__left {
    max-width: 670px;
}
.lbf__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px!important;
    line-height: 100%;
}
.lbf-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #FFFFFF99;
}
.lbf__right {
    max-width: 460px;
}
.locality-accessories .button-transparent {
    display: flex;
    align-items: center;
    gap:10px;
    width: max-content;
}
#localityBottomForm input:not([type=checkbox]),
#orderCallForm input:not([type=checkbox]) {
    color: #323232;
}
.video {  
	max-width: 600px;
	margin: 0 auto 24px;
}
.video-wrp {
	position: relative;
	padding-top: 56.25%;
}
.video-wrp iframe {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	margin: 0;
	top: 0;
	left: 0;
	border: none;
}
.mp-section-1__mobile {
    display: none;
}
@media (max-width: 1900px) {
    .locality-about__bg-img-2,
    .locality__bottom-form > img {
        display: none;
    }
}
@media (max-width: 1199px) {
    header {
        height: auto;
    }
    .header__col,
    .header__col:first-of-type, 
    .header__col:last-of-type {
        flex-direction: column;
        gap: 12px;
        width: calc((100% - 40px) / 3);
    }
    .header__shop-phone {
        font-size: 18px;
    }
    .header-menu ul {
        gap: 40px;
    }
    .mp-section-3 {
        padding: 80px 0 40px 0;
    }
    .mp-section-4 {
        padding: 40px 0 65px 0;
    }
    .footer__menu {
        gap: 30px 60px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer__menu-column {
        width: calc((100% - 120px) / 3);
    }
    .header__shop-mail {
        margin-left: 0;
    }
    .header {
        height: auto;
    }
    .header header {
        padding: 10px 0;
    }
    .mp-section-1__banner-content {
        max-width: 400px;
    }
}
@media (max-width: 991px) {
    .dfs-left {
        padding: 30px 40px 30px 10px;
    }
    .header-menu ul {
        gap: 14px;
    }
    .locality-top__wrapper {
        flex-direction: column;
        gap: 38px;
    }
    .locality-top__right {
        width: 100%;
        padding-bottom: 24px;
    }
    .lbf__right .district-form__wrapper, 
    .locality-top__right .district-form__wrapper {
        width: 100%;
        padding: 24px 32px 30px;
    }
    .lbf-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .lbf__right {
        max-width: 100%;
    }
    .mp-section-1 video {
        width: 45%;
    }
    .mp-section-1__wrapper {
        background-size: 71% 100%;
    }
}
@media (max-width: 767px) {
    .header.sticky{
        position: fixed;
        background: #272b31;
        top: 0;
        z-index: 1111;
        width:100%;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    header {
        height: auto;
    }
    .header__container {
        flex-direction: column;
        gap: 0;
    }
    .header__col {
        width: 100%!important;
    }
    .header__col:first-of-type {
        flex-direction: row;
        justify-content: space-between;
        order: 2;
    }
    .header__shop:last-of-type {
        padding: 7px 0;
    }
    .header__shop img {
        width: 15px;
        height: 15px;
        margin-right: 3px;
    }
    .header__shop-phone {
        font-size: 15px;
        font-weight: 600;
        line-height: 21px;
        text-align: left;
    }
    .header-menu__burger {
        display: block;
    }
    .header-menu__wrapper {
        display: none;
        background: #21262C;
        z-index: 9999999;
        position: relative;
    }
    .sticky .header-menu__wrapper{
        top:81px;
    }
    .header-menu {
        height: auto;
        padding: 20px 0;
    }
    .header-menu ul {
        flex-direction: column;
        line-height: unset;
        gap: 8px;
    }
    .has-sub > a:after {
        display: none;
    }
    .subpage {
        display: flex;
        width: 100%;
        position: unset;
    }
    footer .container:first-of-type {
        padding-left: 0;
        padding-right: 0;
    }
    .footer__menu {
        flex-direction: column;
        gap: 0;
        padding: 0 0 111px 0;
    }
    .footer__menu-column {
        width: 100%;
    }
    .footer__menu-column:not(:last-of-type) {
        border-bottom: 1px solid #FFFFFF33;
    }
    .footer__menu-column:last-of-type {
        padding-top: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .footer-menu__header {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
        padding: 20px 25px;
    }
    .footer-menu__header > a {
        font-size: 18px;
        font-weight: 700;
        line-height: 24.51px;
        text-align: left;
        color: #FFFFFF4D;
    }
    .footer-menu__header > img {
        display: block;
    }
    .footer__menu-items {
        display: none;
        margin: 12px auto 40px 40px;
    }
    .footer__menu-items > a {
        font-size: 14px;
        line-height: 19.07px;
    }
    .footer-menu__items-show {
        display: flex;
    }
    .footer__contact {
        justify-content: start;
        margin-bottom: 12px;
    }
    .footer__menu-column .button {
        width: auto;
        min-width: 260px;
        margin-top: 22px;
    }
    .mp-section-3 img,
    .mp-section-4 img {
        width: 100%;
    }
    .button-transparent img {
        width: auto;
    }
    .main-wrap {
        padding-bottom: 64px;
    }
    .sidebar {
        padding-top: 0;
    }
    .content {
        padding: 64px 10px 0 10px;
    }
    .product-card {
        width: calc((100% - 20px) / 2);
    }
    .product-card img {
        width: 100%;
    }
    .gallery {
        gap: 16px;
    }
    .gallery .gal-item {
        width: 100%;
    }
    .product-form form {
        gap: 8px;
    }
    .product-form form > button {
        margin-top: 4px;
    }
    .product-slide {
        margin-bottom: 30px;
    }
    h3.price {
        margin: 12px 0 16px;
    }
    .product-advantages {
        margin-bottom: 24px;
    }
    p {
        font-size: 14px;
    }
    .big-img img {
        width: 100%;
    }
    .nextprev > a {
        width: 36px;
        height: 36px;
    }
    .nextprev > a.product-prev-btn {
        left: -18px;
    }
    .nextprev > a.product-next-btn {
        right: -18px;
    }
    .product-title {
        font-size: 20px;
        line-height: 120%;
    }
    .content h2 {
        font-size: 24px;
        line-height: 120%;
    }
    .product-specification {
        padding: 8px 0;
        font-size: 12px;
    }
    .mobile-product-info {
        display: block;
        width: 100%;
        position: absolute;
        bottom: 0;
        padding: 0 10px 24px;
    }
    .mobile-product-info .price {
        margin-bottom: 0;
    }
    .product-info .price,
    .product-info .product-title {
        display: none;
    }
    .districts {
        margin-bottom: 24px;
    }
    .district-wrapper {
        padding: 16px 0 40px;
    }
    .localities-page .page-title-breadcrumbs-wrapper {
        min-height: 180px;
    }
    .localities-page .breadcrumbs {
        padding-top: 16px;
    }
    .page-title-breadcrumbs h1 {
        margin-top: 16px;
        font-size: 26px;
    }
    .page-title__caption {
        font-size: 16px;
    }
    .district__name {
        margin: 0 0 20px;
        font-weight: 600;
        font-size: 20px;
        line-height: 130%;
    }
    .district__localities {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }
    .locality-item {
        display: none;
        width: 100%;
        min-height: 55px;
        padding: 17px 16px;
        font-size: 15px;
        line-height: 19px;
    }
    .locality-list-button {
        display: flex;
        gap: 10px;
        align-items:center;
        justify-content: center;
        width: calc(100% + 32px);
        height: 45px;
        margin: 0 -16px;
        padding: 0;
        border: none;
        background: #EBB144;
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: -0.03px;
        color: #FFFFFF;
    }
    .locality-list-button:before,
    .locality-list-button:after {
        display: block;
        content: url("/assets/icons/menu_arrow.svg");
    }
    .districts__form-section .col-md-16 {
        flex-direction: column;
        gap: 0;
    }
    .dfs-left {
        width: 100%;
        padding: 24px 16px 40px;
    }
    .district-form__title {
        margin-bottom: 8px;
        font-size: 24px;
    }
    .district-form__caption {
        font-size: 14px;
    }
    .dfs-left .comment-form input {
        margin-bottom: 8px;
    }
    .checkbox {
        margin-top: 8px;
        margin-bottom: 24px;
    }
    .dfs-left .checkbox label {
        margin-bottom: 0;
    }
    .dfs-left form button {
        height: 60px;
    }
    .dfs-right {
        min-height: 290px;
        height: 100%;
        width: 100%;
    }
    .district__localities .locality-item:nth-child(-n+3) {
        display: block;
    }
    .expanded .locality-item {
        display: block;
    }
    .expanded .locality-list-button:before,
    .expanded .locality-list-button:after {
        transform: rotate(180deg);
    }
    .expanded .locality-list-button {
        background: #458BE0;
    }
    .locality-top__left {
        flex: 1;
        padding-top: 76px;
    }
    .locality-top__left {
        padding-top: 0;
    }
    .locality-top__left h1 {
        margin-bottom: 16px;
        font-size: 26px;
    }
    .locality-top__left .mp-advantages {
        flex-direction: row;
        gap: 12px;
        margin-top: 30px;
    }
    .locality-top__left .mp-advantages__column {
        width: calc((100% - 12px) / 2);
    }
    .district-form__wrapper {
        margin: 0 -16px;
        padding: 24px 16px 30px;
        border-radius: 0;
    }
    .locality__we-offer {
        padding: 40px 0;
    }
    .locality__we-offer h2 {
        font-weight: 700;
        font-size: 24px;
    }
    .block-caption {
        margin-bottom: 24px;
        font-size: 14px;
    }
    .we-offer__products {
        flex-direction: column;
        gap: 12px;
    }
    .we-offer__card {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 0;
    }
    .we-offer__card img {
        width: 120px;
        height: auto;
    }
    .we-offer__card-wrapper {
        width: 100%;
        padding: 16px 12px 14px 14px;
    }
    .we-offer__card-title {
        margin-bottom: 4px;
        font-size: 14px;
        text-align: left;
    }
    .we-offer__card-price {
        margin-bottom: 36px;
        font-size: 22px;
        text-align: left;
    }
    .we-offer__card a {
        width: fit-content;
        height: 45px;
        padding: 14.5px 27.5px;
        font-size: 12px;
    }
    .locality__recommended {
        padding: 40px 0 24px;
    }
    .locality__recommended h2 {
        margin: 0 0 32px;
        font-weight: 700;
        font-size: 24px;
    }
    .locality__recommended .owl-carousel .owl-controls {
        display: none!important;
    }
    .locality__about {
        padding: 38px 0 34px;
    }
    .locality-about__wrapper > img {
        height: 100px;
        margin: 0;
    }
    .locality-about__title {
        margin-bottom: 12px;
        font-size: 24px !important;
        line-height: 115%;
    }
    .locality-about__subtitle {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 130%;
    }
    .locality-about__text {
        margin-bottom: 24px;
        font-size: 14px;
    }
    .locality__advantages {
        padding: 24px 0 40px;
    }
    .locality-advantages__list {
        flex-direction: column;
        gap: 26px;
    }
    .locality-advantage__card {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 12px;
        width: 100%;
    }
    .locality-advantage__card img {
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }
    .locality-advantage__card-title {
        margin-bottom: 0;
        font-size: 20px;
    }
    .locality-advantage__card-text {
        width: 100%;
        font-size: 14px;
    }
    .locality-accessories {
        padding: 32px 0 34px;
    }
    .block-header__right {
        display: none;
    }
    .block-header__title {
        font-size: 24px !important;
    }
    .block-header__subtitle {
        font-size: 14px;
    }
    .locality-accessories .additional-product-list {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 32px;
    }
    .locality-accessories .additional-product-list .product-card {
        width: calc((100% - 20px) / 2);
    }
    .locality-accessories .button-transparent {
        width: fit-content;
    }
    .locality__bottom-form {
        padding: 34px 0 80px;
    }
    .lbf-wrapper {
        flex-direction: column;
        /* gap: 32px; */
        justify-content: space-between;
    }
    .lbf__title {
        margin-bottom: 16px;
        font-size: 24px !important;
    }
    .lbf-text {
        font-size: 14px;
    }
    .lbf__right {
        max-width: 100%;
    }
    .districts__form-section {
        flex-direction: column;
    }
    .dfs-left .district-form__wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .locality-top__right {
        padding-bottom: 0;
    }
    .lbf__right .district-form__wrapper, 
    .locality-top__right .district-form__wrapper {
        width: calc(100% + 32px);
        margin: 0 -16px;
        padding: 24px 16px 30px;
        border-radius: 0;
    }
    .flex-row {
        flex-direction: row;
    }
    .header header {
        padding: 0;
    }
    .menu-opened {
        overflow: hidden;
    }
    .menu-opened .header-menu__wrapper {
        display: block;
        overflow: scroll;
        height: calc(100vh - 81px);
    }
    .mp-section-1 {
        height: 360px;
    }
    .mp-section-1 video {
        width: 100%;
        height: 360px;
    }
    .mp-section-1__wrapper {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 55.28%, rgba(0, 0, 0, 0.6) 90.19%);
        background-size: cover;
    }
    .mp-section-1__banner-content {
        max-width: unset;
        padding-top: 40px;
    }
    .mp-section-1 .mp-advantages,
    .mp-section-1 .call {
        display: none;
    }
    .mp-section-1__mobile {
        display: block;
        background: url(/assets/images/pages/main/image_17_1.jpg);
        background-size: auto;
        background-position: left;
        background-repeat: no-repeat;
    }
    .mp-section-1__mobile .mp-section-1__banner-content {
        padding: 0 0 32px;
    }
    .mp-section-1__mobile .call {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    footer hr {
        display: none;
    }
    .footer__copyright {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .footer__copyright-left, 
    .footer__copyright-right {
        width: 100%;
    }
    .footer__copyright-left {
        border-bottom: 1px solid #FFFFFF1A;
    }
    .mp-section-1 h2 {
        font-size: 26px;
        line-height: 31.2px;
    }
    .mp-section-1 .call {
        flex-direction: column;
        height: auto;
    }
    .mp-advantages {
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
        width: 100%;
        margin: 40px 0 48px 0;
    }
    .mp-advantages__column {
        gap: 16px;
        width: 100%;
    }
    .call label {
        margin-right: 0;
        margin-bottom: 12px;
        width: 100%;
    }
    .call input,
    .call button {
        width: 100%;
    }
    .button-blue {
        text-align: center;
    }
    .mp-section-4 .row {
        display: flex;
        flex-direction: column;
    }
    .mp-section-4 .col-md-9 {
        order: 2;
    }
    .mp-section-4 .col-md-7 {
        order: 1;
    }
    .catalog {
        gap: 32px;
    }
    .product-card {
        width: 100%;
    }
    /*.product-card__info {
        bottom: 100px;
    }
    .product-card:after {
        display: block;
        content: "Подробнее \2192";
        margin-top: 12px;
        width: 100%;
        padding: 21px 45px;
        border-radius: 5px;
        border: 1px solid #FFFFFF33;
        font-size: 15px;
        font-weight: 600;
        line-height: 20.43px;
        color: #FFFFFF;
        text-align: center;
    }*/
    .home-blog-big span,
    .home-blog-big p {
        margin-bottom: 12px;
    }
    .article-list {
        gap: 32px;
    }
    .contacts__wrapper {
        flex-direction: column;
    }
    .contacts__left,
    .contacts__right {
        width: 100%;
    }
    .contacts__left {
        height: 300px;
    }
    .additional-product-list {
        flex-direction: column;
    }
    .additional-product-list .product-card {
        width: 100%;
    }
    .locality__recommended .owl-carousel {
        argin: 0;
        width: 100%;
    }
    .locality__recommended .owl-carousel .owl-item {
        padding: 0;
    }
    .locality-accessories .additional-product-list .product-card {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .dfs-left {
        margin-left: calc((100% - 740px) / 2);
    }
}
@media (min-width: 992px) {
    .dfs-left {
        margin-left: calc((100% - 960px) / 2);
    }
}
@media (min-width: 1200px) {
    .dfs-left {
        margin-left: calc((100% - 1180px) / 2);
    }
}
@media (min-width: 1260px) {
    .dfs-left {
        margin-left: calc((100% - 1260px) / 2);
    }
}