*,
*::before,
*::after {
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
    list-style-type: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

:root {
    --white-color: #FFFFFF;
    --text-color: #464646;
    --black-color: #141414;
    --orange-color: #E9A300;
    --orange-color-light: #FDB714;
}

a {
    color: var(--text-color);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: .3s;
}

a:hover {
    text-decoration: none;
    color: var(--orange-color);
}

p a {
    text-decoration: underline;
    color: inherit;
}

ul[class], ol[class] {
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    max-height: 100%;
    pointer-events: none;
}
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
    -webkit-box-sizing: border-box;
}

/*
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent;
}
  
::-webkit-scrollbar-track {
    background: #A3BFCE;
    border-radius: 10px;
}
  
::-webkit-scrollbar-thumb {
    background-color: var(--text-color);
    border-radius: 10px;
    border: 3px solid #050c26;
}
*/

html {
    position: sticky;
    margin: 0;
    /*
    scroll-behavior: smooth;
    */
    overflow-x: hidden;
}

html.no-scroll {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background: #F7F7F7;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    position: relative;
    overflow-x: hidden;
}

section {
    position: relative;
    padding: 80px 0 90px;
}

section .swiper-wrapper {
    align-items: stretch;
}

section .swiper-wrapper .swiper-slide {
    height: auto;
}

.section-title {
    position: relative;
    width: 100%;
}

.section-title h1 {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
}

.section-title h2 {
    margin: 0 0 40px;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1256px;
    padding: 0 20px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

h1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--black-color);
    margin: 0 0 40px;
}

h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--black-color);
    margin: 0 0 20px;
}

h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--black-color);
    margin: 0 0 20px;
}

h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--black-color);
    margin: 0 0 20px;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    height: 50px;
    width: 100%;
    max-width: 240px;
    background: var(--orange-color);  
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--white-color);
    border-radius: 10px;
    transition: .3s;
    cursor: pointer;
    outline: none;
}

.btn:hover {
    background: var(--orange-color-light);
    color: var(--white-color);
}

.btn.btn-gray {
    background-color: #E8E8E8;
    color: #666666;
}

.btn.btn-gray:hover {
    background-color: #F2F2F2;
    color: #666666;
}

/*

.btn.btn-popup {
    max-width: 154px;
    height: 40px;
    font-size: 13px;
    color: var(--white-color);
    background: rgba(250, 250, 250, .05);
}

.btn.btn-popup:hover {
    background: rgba(250, 250, 250, .15);
    box-shadow: none;
}
    */

/*====== breadcrumbs ======*/

.section-breadcrumbs {
    position: relative;
    padding: 16px 0 10px;
}

.section-breadcrumbs a, .section-breadcrumbs span {
    font-size: 15px;
    color: #464646;
}

.section-breadcrumbs .deliver {
    margin: 0 4px;
    color: var(--orange-color);
}

.section-breadcrumbs .current-item {
    color: var(--orange-color);
}

/*

.breadcrumbs-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumbs-list-container span {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--yellow-color);
}

.breadcrumbs-list-container li a span {
    color: var(--text-light-color);
}

*/

/*====== mobile-menu ======*/

.mobile-menu {
    position: fixed;
    /*
    display: flex;
    flex-direction: column;
    */
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--white-color);
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 12px 16px;
    transition: .3s;
    transform: translateX(1000%);
    z-index: 163;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu .custom-logo-link {
    height: 60px;
}

.mobile-menu .mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.mobile-menu .menu > li {
    /*
    padding: 8px 0;
    */
    border-bottom: 1px solid rgba(235, 235, 235, 1);
}

.mobile-menu .menu > li:nth-child(1) {
    border-top: 1px solid rgba(235, 235, 235, 1);
}

.mobile-menu .menu li + li {
    margin: 0;
}

.mobile-menu .menu li::before, .mobile-menu .menu li a::after {
    display: none;
}

.mobile-menu .menu li a {
    display: block;
    font-weight: 500;
    font-size: 15px;
    color: var(--black-color);
    padding: 8px 0 9px;
}

.mobile-menu .menu li a svg path {
    fill: var(--text-color);
}

.mobile-menu .menu .menu-item-has-children a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 9px;
}

.mobile-menu .menu .menu-item-has-children > a:after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    position: absolute;
    right: 16px;
    top: 14px;
    left: auto;
    background-image: url(/wp-content/uploads/2026/06/menu-after-mobile.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    transition: .3s;
}

.mobile-menu .menu .menu-item-has-children.open > a:after {
    transform: rotate(180deg);
}

.mobile-menu .menu .menu-item-has-children ul li {

    border-bottom: 1px solid rgba(235, 235, 235, 1);
}

.mobile-menu .menu .menu-item-has-children ul li:nth-child(1) {
    border-top: 1px solid rgba(235, 235, 235, 1);
}

.mobile-menu .menu .menu-item-has-children ul li a {
    font-weight: 400;
    color: #464646;
    padding: 8px 16px 9px 16px;
}

.mobile-menu .menu .menu-item-has-children ul {
    display: none;
}

.mobile-menu .menu .menu-item-has-children.open ul {
    display: block;
}

.mobile-menu__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto 0 68px;
}

.mobile-menu__info .phone {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.mobile-menu__info .btn {
    width: 155px;
    height: 40px;
    font-size: 14px;
    margin: 8px 0;
}

.mobile-menu__info .address, .mobile-menu__info .email {
    font-size: 14px;
}

.mobile-menu__info .phone a, .mobile-menu__info .phone p {
    color: var(--text-color);
}

/*====== header ======*/

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    padding: 0;
    transition: .3s;
    z-index: 100;
}

header .header-top {
    background-color: #22282C;
    padding: 6px 00 8px;
}

header .header-top .row {
    align-items: center;
    justify-content: space-between;
}

header .header-top p, header .header-top a {
    font-weight: 400;
    font-size: 14px;
    color: #D2D2D2;
}

header .header-top a:hover {
    color: var(--orange-color);
}

header .header-main {
    background-color: var(--white-color);
    padding: 10px 0;
}

header .header-main .row {
    align-items: center;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

header .header-main .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 0 16px;
}

header .header-main .menu li {
    padding: 20px 0;
}

header .header-main .menu li.menu-item-has-children {
    position: relative;
    padding: 20px 14px 20px 0;
}

header .header-main .menu li.menu-item-has-children:after {
    position: absolute;
    content: '';
    width: 8px;
    height: 5px;
    background-image: url('/wp-content/uploads/2026/05/triangle-after.svg');
    right: 0;
    top: 29px;
    transition: .3s;
}

header .header-main .menu li.menu-item-has-children:hover:after {
    transform: rotate(180deg);
}

header .header-main .menu li.menu-item-has-children .sub-menu {
    display: none;
}

header .header-main .menu li.menu-item-has-children:hover .sub-menu {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 260px;
    background-color: var(--white-color);
    padding: 0 0 10px;
    border-radius: 0 0 10px 10px;
}

header .header-main .menu li.menu-item-has-children .sub-menu li {
    padding: 5px 16px 6px;
}

header .header-main .menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--black-color);
}

header .header-main .menu a:hover {
    color: var(--orange-color);
}

header .header-main .phones {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin: 0 0 0 auto;
}

header .header-main .phones a {
    font-weight: 600;
    font-size: 18px;
    color: var(--black-color);
}

header .header-main .phones a:hover {
    color: var(--orange-color);
}

header .header-main .btn {
    width: 155px;
    height: 40px;
    font-size: 14px;
}

header .header-main .btn svg {
    display: none;
}

header .header-main a.burger-menu {
    display: none;
    width: 40px;
    height: 40px;
}

header.scroll {
    box-shadow: 0px 4px 20px 0px rgba(20, 20, 20, 0.05);
}


/*====== main ======*/

main {
    margin-top: 122px;
}

/*====== section-primary ======*/

.section-primary {
    position: relative;
    /*
    background-image: url(../images/primary-bg.jpg);
    */
    background-size: cover;
    background-position: center;
    padding: 130px 0 196px;
}

.section-primary:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(34, 40, 44, 0.9) 18.07%, rgba(34, 40, 44, 0.4) 81.18%);
    z-index: 2;
}

.section-primary .primary-content {
    position: relative;
    max-width: 910px;
    z-index: 3;
}

.section-primary .primary-content .label {
    display: inline;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white-color);
    padding: 6px 14px 9px;
}

.section-primary .primary-content h1 {
    font-size: 46px;
    color: var(--white-color);
    margin: 30px 0 20px;
}

.section-primary .primary-content p {
    font-size: 18px;
    color: #D2D2D2;
}

/*====== section-advantages ======*/

.section-advantages {
    position: relative;
    padding: 0;
    margin-top: -60px;
    z-index: 5;
}

.advantages-item {
    flex: 1;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
}

.advantages-item p {
    font-weight: 500;
    font-size: 18px;
    color: var(--black-color);
    text-align: center;
}

/*====== section-about ======*/

.section-about {
    padding: 70px 0 90px;
}

.section-about .row {
    justify-content: space-between;
}

.section-about h2 {
    max-width: 442px;
}

.section-about .about-content {
    max-width: 700px;
}

.section-about .about-content p {
    font-weight: 500;
    color: var(--text-color);
}

.section-about .about-content p + p {
    margin: 20px 0 0;
}

.section-about .about-content .btn {
    margin: 30px 0 0;
}

/*====== section-catalog ======*/

.section-catalog {
    background-color: var(--white-color);
}

.section-catalog .row {
    justify-content: space-between;
}

.catalog-content {
    width: calc(100% - 535px);
    max-width: 700px;
}

.catalog-title {
    margin: 0 0 40px;
}

.catalog-title h2 {
    margin: 0 0 20px;
}

.catalog-title p {
    color: #6E6E6E;
}

.catalog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.catalog-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #F7F7F7;
    padding: 16px 20px 17px;
    border-radius: 10px;
}

.catalog-list a span {
    font-weight: 500;
    color: var(--black-color);
}

.catalog-list a:hover span {
    color: var(--orange-color);
}

.catalog-list a img.hover {
    display: none;
}

.catalog-list a:hover img.no-hover {
    display: none;
}

.catalog-list a:hover img.hover {
    display: block;
}

.catalog-image {
    position: relative;
    width: 515px;
    border-radius: 10px;
    overflow: hidden;
    right: -70px;
}

.catalog-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    objective-position: center;
}

/*====== section-info ======*/

.section-info {
    background-color: #22282C;
}

.section-info h2 {
    color: #F1F1F1;
    margin: 0 0 40px;
}

.section-info .info-item {
    flex: 1;
    position: relative;
    background-color: #363C40;
    padding: 24px 26px 30px 46px;
    border-radius: 10px;
}

.section-info .info-item:before {
    content: '';
    position: absolute;
    left: 26px;
    top: 24px;
    width: 10px;
    height: 10px;
    background-color: var(--orange-color);
}

.section-info .info-item .item-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--orange-color);
    margin: 0 0 5px;
}

.section-info .info-item .item-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #D2D2D2;
}

/*====== section-complex ======*/

.section-complex {
    position: relative;
    z-index: 5;
}

.section-complex h2 {
    margin: 0 0 40px;
}

.complex-item {
    flex: 1;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
}

.complex-item p {
    font-weight: 500;
    font-size: 18px;
    color: var(--black-color);
    text-align: center;
}

/*====== section-list ======*/

.section-list {
    background-color: #EBEBEB;
}

.list-form {
    background-color: var(--white-color);
    padding: 80px 60px 90px;
    box-shadow: 0px 4px 30px 0px rgba(20, 20, 20, 0.03);
    border-radius:  10px;
}

.list-form .list-title {
    margin: 0 0 40px;
}

.list-form .list-title h2 {
    margin: 0 0 20px;
}

.list-form .list-title p {
    color: #6E6E6E;
}

form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

form input {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #464646;
    padding: 13px 15px 16px;
    border: 1px solid #F7F7F7;
    background-color: #F7F7F7;
    border-radius: 10px;
    outline: none;
    transition: .3s;
}

form input:hover {
    border: 1px solid #EDEDED;
    background-color: var(--white-color);
}

form input:active {
    background-color: var(--orange-color);
}

form .col-full .form-row__title {
    font-size: 18px;
    margin: 0 0 20px;
}

form textarea {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    height: 80px;
    color: #464646;
    padding: 13px 15px 16px;
    border: 1px solid #F7F7F7;
    background-color: #F7F7F7;
    border-radius: 10px;
    outline: none;
}

.form-row.col-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.popup form .form-row.col-3 {
	flex-direction: column;
}

.form-row.col-3 .form-row__title {
    font-size: 18px;
    width: 100%;
}

.form-row__title {
    font-weight: 600;
    color: #AAAAAA;
}

.form-row__input {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
}

.form-row__input span, .form-row__input span input {
    width: 100%;
}

.form-row.col-3 .form-row__input {
    flex: 1;
}

.form-row__input p {
    font-weight: 500;
    font-size: 16px;
    color: #464646;
}

.form-row__input p span {
    color: #C53E3E;
}

.form-row.grid {
    display: grid;
    gap: 20px;
    grid-template-areas: 
        "form-row__title form-row__title form-row__title"
        "performance fineness classification"
        "count size classification";
    grid-template-columns: repeat(3, 1fr);
}

.form-row.grid .form-row__title {
    font-size: 18px;
    grid-area: form-row__title;
}

.form-row.grid .performance {
    grid-area: performance;
}

.form-row.grid .fineness {
    grid-area: fineness;
}

.form-row.grid .count {
    grid-area: count;
}

.form-row.grid .size {
    grid-area: size;
}

.form-row.grid .classification {
    grid-area: classification;
    justify-content: flex-start;
}

.form-row.grid .classification p {
    color :var(--black-color);
    margin: 0 0 5px;
}

.form_radio {
	margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1px;
}
.form_radio input[type=radio] {
	display: none;
}
.form_radio label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 28px;
	margin-right: 0;
	line-height: 18px;
	user-select: none;
}
.form_radio label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	bottom: 0px;
	background: url(../images/radio-2.svg) 0 0 no-repeat;
}
 
/* Checked */
.form_radio input[type=radio]:checked + label:before {
	background: url(../images/radio-1.svg) 0 0 no-repeat;
}
 
/* Hover */
.form_radio label:hover:before {
    /*
	filter: brightness(120%);
    */
    background: url(../images/radio-3.svg) 0 0 no-repeat;
}
 
/* Disabled */
.form_radio input[type=radio]:disabled + label:before {
	filter: grayscale(100%);
}

.checkbox-politika {
    width: 100%;
    display: flex;
    gap: 7px;
    align-items: flex-start;
    margin: 0;
    padding: 0 0 0 4px;
}

.checkbox-politika input {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 1px solid #F7F7F7;
    transition: .3s;
    opacity: 0;
}

.checkbox-politika:hover input {
    border: 1px solid var(--orange-color);
}

.checkbox-politika .check-custom {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: #F7F7F7;
    border-radius: 2px;
    transition: .3s;
    border: 1px solid #F7F7F7;
}

.checkbox-politika:hover .check-custom {
    border: 1px solid var(--orange-color);
}

.checkbox-politika input:checked+.check-custom {
    background: url(../images/icon-check.svg) no-repeat center / 12px 10px, var(--orange-color);
    border: 1px solid var(--orange-color);
}

.checkbox-politika .checkbox-text {
    width: calc(100% - 27px);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--text-light-color);
    cursor: pointer;
}

.checkbox-politika .checkbox-text a {
    color: var(--orange-color);
    text-decoration: none;
}

.checkbox-politika .checkbox-text a:hover {
	text-decoration: underline;
}

.form-row.checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row.checkboxes .form-row__title {
    font-size: 18px;
    width: 100%;
}

.form-row.checkboxes .checkbox {
    width: auto;
}

form button.btn {
    max-width: 266px;
}

form button.btn.disabled {
    pointer-events: none !important;
    transition: .3s;
    opacity: .6;
}

/*====== section-gallery ======*/

.section-gallery {
    padding: 80px 0 40px;
}

.section-gallery h2 {
    margin: 0 0 40px;
}

.section-gallery .row {
    align-content: stretch;
}

.section-gallery .mySwiper {
    width: 186px;
    height: 550px;
}


/*
.section-gallery .mySwiper .swiper-wrapper {
    height: 100%;
}

.section-gallery .mySwiper .swiper-wrapper img {
    height: 100%;
}

.section-gallery .mySwiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
    */

.section-gallery .mySwiper .swiper-wrapper .swiper-slide {
    position: relative;
    width: 100% !important;
    /*
    height: 94px !important;
    */
    border-radius: 10px;
    opacity: .5;
    overflow: hidden;
    cursor: pointer;
    transition: .3s;
}

.section-gallery .mySwiper .swiper-wrapper .swiper-slide:hover, .section-gallery .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.section-gallery .mySwiper .swiper-wrapper .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.section-gallery .mySwiper2 {
    width: calc(100% - 206px);
    /*
    height: calc(94px*5 + 80px);
    */
    height: 550px;
}

.section-gallery .mySwiper2 .swiper-slide {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.section-gallery .mySwiper2 .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    objective-position: center;
}

.section-gallery .mySwiper2 .swiper-button-next, .section-gallery .mySwiper2 .swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: .3s;
}

.section-gallery .mySwiper2 .swiper-button-next:hover, .section-gallery .mySwiper2 .swiper-button-prev:hover {
    background-color: var(--orange-color);
}

.section-gallery .mySwiper2 .swiper-button-next:after, .section-gallery .mySwiper2 .swiper-button-prev:after {
    display: none;
}

.section-gallery .mySwiper2:hover .swiper-button-next, .section-gallery .mySwiper2:hover .swiper-button-prev {
    opacity: 1;
}

.section-gallery .mySwiper2 .swiper-button-next svg path, .section-gallery .mySwiper2 .swiper-button-prev svg path {
    fill: var(--orange-color);
}

.section-gallery .mySwiper2 .swiper-button-next:hover svg path, .section-gallery .mySwiper2 .swiper-button-prev:hover svg path {
    fill: var(--white-color);
}

.section-gallery .mySwiper2 .swiper-button-next svg, .section-gallery .mySwiper2 .swiper-button-prev svg {
    width: 8px;
}

.section-gallery .mySwiper2 .swiper-button-next svg {
    transform: rotate(180deg);
}

.section-gallery .mySwiper2 .swiper-button-prev {
    left: 20px;
}

.section-gallery .mySwiper2 .swiper-button-next {
    right: 20px;
}

.swiper-pagination-mySwiper2 {
    display: none !important;
}

/*====== section-partners ======*/

.section-partners {
    padding: 40px 0 80px;
}

.section-partners .partners-title {
    max-width: 850px;
    margin: 0 0 40px;
}

.section-partners .partners-title p {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #6E6E6E;
}

.section-partners .swiper-slide {
    background-color: var(--white-color);
    padding: 20px;
    text-align: center;
    bprder-radius: 10px;
}

.section-partners .swiper-slide img {
    margin: 0 0 10px;
}

.section-partners .swiper-slide p {
    font-size: 16px;
    color: #464646;
}

.section-partners .swiper-pagination-partners, .section-gallery .swiper-pagination-mySwiper2, .swiper-pagination-photos, .swiper-pagination-history, .swiper-pagination-single {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 0;
}

.section-partners .swiper-pagination-partners span, .section-gallery .swiper-pagination-mySwiper2 span, .swiper-pagination-photos span, .swiper-pagination-history span, .swiper-pagination-single span {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    background: #DEDEDE;
    opacity: 1;
}

.section-partners .swiper-pagination-partners span.swiper-pagination-bullet-active, .section-gallery .swiper-pagination-mySwiper2 span.swiper-pagination-bullet-active, .swiper-pagination-photos span.swiper-pagination-bullet-active, .swiper-pagination-history span.swiper-pagination-bullet-active, .swiper-pagination-single span.swiper-pagination-bullet-active  {
    background-color: var(--orange-color);
}

/*====== section-connection ======*/

.section-connection {
    background-color: #22282C;
}

.section-connection .connection-title {
    max-width: 890px;
    margin: 0 0 40px;
}

.section-connection .connection-title h2 {
    color: #F1F1F1;
    max-width: 530px;
    margin: 0 0 20px;
}

.section-connection .connection-title p {
    color: #D2D2D2;
}

.connection-item {
    flex: 1;
    background-color: #363C40;
    padding: 24px 28px 30px;
    border-radius: 10px;
}

.connection-item .connection-item__title {
    display: flex;
    gap: 6px;
    padding: 0 0 14px;
    border-bottom: 1px solid #4A5054;
}

.connection-item .connection-item__title p {
    font-size: 16px;
    color: #D2D2D2;
}

.connection-item .connection-item__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 0;
}

.connection-item .connection-item__content a {
    font-weight: 500;
    font-size: 18px;
    color: #F1F1F1;
}

.connection-item .connection-item__content a:hover {
    color: var(--orange-color);
}

.connection-item .connection-item__content p {
    font-weight: 500;
    font-size: 18px;
    color: #F1F1F1;
}

/*====== footer ======*/

footer {
    background-color: #FFFFFF;
    padding: 80px 0 90px;
}

footer .footer-top {
    margin: 0 0 40px;
}

footer .footer-top .row {
    align-items: center;
}

footer .footer-top .phones {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .footer-top .phones a {
    font-weight: 600;
    font-size: 18px;
    color: var(--black-color);
}

footer .footer-top .phones a:hover {
    color: var(--orange-color);
}

footer .footer-top .footer-info {
    display: none;
}

footer .footer-top .btn {
    width: 155px;
    height: 40px;
    font-size: 14px;
    margin: 0 0 0 auto;
}

.footer-links .phones {
    display: none;
}

.footer-links .footer-info {
    margin: 0 125px 0 0;
}

.footer-links .footer-info p {
    font-size: 15px;
    color: #464646;
    margin: 0 0 12px;
}

.footer-links .footer-info a {
    font-weight: 400;
    font-size: 15px;
    color: #464646;
}

.footer-links .footer-info a:hover {
    color: var(--orange-color);
}

.footer-links .links-column {
    min-width: 184px;
}
/*
.footer-links .links-column:nth-child(4), .footer-links .links-column:nth-child(5) {
    min-width: 217px;
}
    */
.footer-links .links-column:nth-child(4) .links-column__links {
    max-width: 450px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-links .links-column:nth-child(4) .links-column__links li {
    width: calc(50% - 10px);
    margin: 0;
}

.footer-links .links-column p {
    font-weight: 500;
    font-size: 15px;
    color: #AAAAAA;
    margin: 0 0 16px;
}

.footer-links .links-column li {
    margin: 0 0 12px;
}

.footer-links .links-column li a {
    font-weight: 400;
    font-size: 15px;
    color: #464646;
}

.footer-links .links-column li a:hover {
    color: var(--orange-color);
}

.footer-bottom__links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom {
    margin: 60px 0 0;
}

footer .footer-bottom a:hover {
    color: var(--orange-color);
}

footer .footer-bottom a, footer .footer-bottom span {
    font-size: 14px;
    color: #464646;
    text-decoration: none;
}

footer .footer-bottom p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 0 auto;
}

/*====== page ======*/

.page-title {
    padding: 40px 0;
}

.page-title h1 {
    margin: 0;
}

.page-content {
    padding: 0 0 90px;
}

.page-content .row {
    margin-top: 40px;
}

.page-content p + h3, .page-content ul + h3 {
    margin-top: 30px;
}

.page-content p + p, .page-content p + ul, .page-content ul + p, .page-content li + li {
    margin-top: 10px;
}

.page-content p, .page-content li {
    max-width: 1010px;
    color: #464646;
}

.page-content p.large {
    font-size: 18px;
    color: #6E6E6E;
    margin: 0 0 40px;
}

.page-content a {
    color: var(--orange-color);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content ul li {
    position: relative;
    padding: 0 0 0 12px;
}

.page-content ul li:before {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--orange-color);
}

/*====== page about ======*/

.section-about-page {
    padding: 0 0 90px;
}

.section-about-page p {
    max-width: 1010px;
    font-size: 18px;
    color: #6E6E6E;
    margin: 0 0 40px;
}

.section-about-page .photos .swiper-wrapper {
    display: flex;
    gap: 20px;
}

.section-about-page .photos .swiper-slide {
    position: relative;
    width: calc(50% - 10px);
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.section-about-page .photos .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.section-history {
    background-color: #EBEBEB;
    padding: 90px 0;
}

.section-history .history-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section-history .history-info .history-content {
    background-color: var(--white-color);
    width: calc(100% - 310px);
    padding: 40px;
    border-radius: 10px;
}

.section-history .history-info .history-content h3 {
    margin: 0 0 30px;
}

.section-history .history-info .history-content p + p {
    margin-top: 10px;
}

.section-history .history-info .history-photos {
    width: 290px;
}

.section-history .history-info .history-photos .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 290px;
}

.section-history .history-info .history-photos .photo-box {
    flex: 1;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.section-history .history-info .history-photos .photo-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.section-geography {
    background-color: var(--white-color);
    padding: 0;
    border-bottom: 1px solid #EBEBEB;
}

.section-geography .row {
    justify-content: space-between;
}

.section-geography h2 {
    width: calc(100%  - 820px);
    max-width: 420px;
    margin: 80px 0 0;
}

.section-geography img {
    position: relative;
    width: 880px;
    margin: 0 -80px 0 0;
}

/*====== contacts ======*/

.section-contacts-page {
    padding: 0 0 80px;
}

.contacts-item {
    width: calc((100% - 40px) / 3);
    background-color: var(--white-color);
    padding: 24px 28px 30px;
    border-radius: 10px;
}

.contacts-item .contacts-item__title {
    display: flex;
    gap: 6px;
    padding: 0 0 14px;
    border-bottom: 1px solid #EBEBEB;
}

.contacts-item .contacts-item__title p {
    font-size: 16px;
    color: #464646;
}

.contacts-item .contacts-item__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 0;
}

.contacts-item .contacts-item__content a {
    font-weight: 500;
    font-size: 18px;
    color: #464646;
}

.contacts-item .contacts-item__content a:hover {
    color: var(--orange-color);
}

.contacts-item .contacts-item__content p {
    font-weight: 500;
    font-size: 18px;
    color: #464646;
}

#map {
    position: relative;
    height: 520px;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 6;
}

.ymaps-2-1-79-controls__control {
	left: calc(100% - 20px) !important;
}

.ymaps-2-1-79-controls-pane {
	right: 0;
    /*
	top: 72px !important;
    */
}
.map-nav__wrapper {
    position: absolute;
    top: 115px;
    left: -45px;
    border-radius: 12px;
    box-shadow: 0px 2px 6px 0px #00000033;
    overflow: hidden;
}

.ymaps-2-1-79-map {
    width: 100% !important;
    height: 100% !important;
}

#zoom-in, #zoom-out {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

#zoom-in img, #zoom-out img {
    opacity: .7;
    transition: .3s;
}

#zoom-in img:hover, #zoom-out img:hover {
    opacity: 1;
}

.ymaps-2-1-79-map-copyrights-promo, .ymaps-2-1-79-copyright {
    display: none !important;
}

.ymaps-2-1-79-balloon__content {
	padding: 16px !important;
}

.map__modal-text, .map__modal-center.flex span {
	font-family: "Onest", sans-serif !important;
	color: var(--text-color) !important;
    font-size: 14px !important;
}

.map__modal-center.flex span {
	border-bottom: 1px dotted #484C51;
}

.map__modal-text {
	margin: 0 0 10px !important;
}

.map__modal-center.flex a {
	display: flex !important;
	gap: 10px !important;
	align-items: center !important;
}

.ymaps-2-1-79-balloon {
	border-radius: 16px !important;
	box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1) !important;
}

.ymaps-2-1-79-balloon__layout {
	border-radius: 16px !important;
	overflow: hidden !important;
	width: 270px !important;
}

.ymaps-2-1-79-balloon__layout ymaps {
	width: auto !important;
	height: auto !important;
}

.ymaps-2-1-79-balloon__layout .ymaps-2-1-79-balloon__close {
	width: 22px !important;
    height: 22px !important;
}

.ymaps-2-1-79-balloon__layout .ymaps-2-1-79-balloon__close .ymaps-2-1-79-balloon__close-button {
	width: 22px !important;
    height: 22px !important;
    margin: 5px -5px;
}

/*====== page products ======*/

.section-products {
    padding: 0 0 90px;
}

.product-single {
    width: calc((100% - 60px) / 4);
    border-radius: 10px;
    overflow: hidden;
}

.product-single .product-image {
    position: relative;
    width: 100%;
    height: 170px;
}

.product-single .product-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.product-single .product-title {
    background-color: var(--white-color);
    padding: 10px 16px;
}

.product-single .product-title p {
    font-weight: 500;
    font-size: 16px;
    color: var(--black-color);
}

.product-single:hover .product-title p {
    color: var(--orange-color);
}

/*====== page single ======*/

.section.single-primary {
    padding: 40px 0 40px;
}

.section.single-primary .single-primary__content {
    width: calc(50% - 10px);
    max-width: 560px;
    margin: 0 auto 0 0;
}

.section.single-primary .single-primary__content .after-title p:nth-child(1) {
    font-weight: 400;
    font-size: 18px;
    color: #6E6E6E;
    margin: 0 0 20px;
}

.section.single-primary .single-primary__content .after-title p:nth-child(2) {
    font-weight: 400;
    font-size: 16px;
    color: #464646;
    margin: 0
}

.section.single-primary .single-primary__photos {
    width: calc(50% - 10px);
    max-width: 560px;
}

.section.single-primary .single-primary__photos .single-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.section.single-primary .single-primary__photos .single-slider .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-position: center;
    object-fit: cover;
}

.table-content {
    margin: 20px 0 0;
}

table {
    border-radius: 10px;
    overflow: hidden;
    border-spacing: 0;
}

table thead tr th {
    padding: 6px;
    text-align: left;
    color: var(--white-color);
    background-color: #22282C;
    font-weight: 600;
    font-size: 14px;
}

table td {
    padding: 10px 6px;
    text-align: left;
    color: #464646;
    font-weight: 400;
    font-size: 15px;
}

table tbody tr:nth-child(even) {
    background-color: #EDEDED;
}

table tbody tr:nth-child(odd) {
    background-color: var(--white-color);
}

.section.section-list.section-list__single .list-form .list-title p {
    font-size: 18px;
    color: #6E6E6E;
    margin: 0 0 40px;
}

.section.section-list.section-list__single .list-form .list-title p.description {
    font-size: 16px;
    color: #6E6E6E;
    margin: 0;
}

.section.section-list.section-list__single .list-form .list-title p.description a {
    font-weight: 600;
    text-decoration: none;
}

/*====== section-404  ======*/

.section-404 {
    padding: 85px 0 90px;
}

.section-404 h1 {
    margin: 0 0 40px;
}

.section-404 p {
    max-width: 500px;
    font-weight: 400;
    font-size: 18px;
    color: #6E6E6E;
    margin: 0 0 30px;
}

.section-404 .btn {
    max-width: 217px;
}

/*====== scroll-top ======*/

.scroll-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    box-shadow: 0px 3px 10px 0px rgba(20, 20, 20, 0.03);
    border-radius: 50%;
    transition: 1s;
    opacity: 0;
    z-index: 30;
}

.scroll-top.scroll {
    opacity: 1;
}

.scroll-top svg path {
    fill: var(--orange-color);
}

.scroll-top:hover {
    background-color: #FDB714;
}

.scroll-top:hover svg path {
    fill: var(--white-color);
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 40, 44, 0.4);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.overlay.open {
    z-index: 150;
    opacity: 1;
    visibility: visible;
}

.popup {
    background: var(--white-color);
    position: fixed;    
    left: calc(50% - 240px);
    top: calc(50% - 229px);
    width: 480px;
    max-width: 100%;
    border-radius: 10px;
    transition: .3s;
    padding: 40px 40px 50px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 170;
}

.popup.open {
    opacity: 1;
    visibility: visible;
}

.popup form {
    max-width: 100%;
    gap: 20px;
}

.popup form button.btn {
    max-width: 200px;
}

.popup .popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.popup .popup-close svg {
    width: 12px;
}

.popup .order-title {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    letter-spacing: 0%;
    color: var(--black-color);
    margin: 0 0 20px;
}

.popup .order-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--text-color);
    margin: 0 0 30px;
}

.popup  form .checkbox-label {
    color: var(--text-color);
}

.small-popup {
    display: flex;
    align-items: center;
    background: var(--white-color);
    position: fixed;    
    gap: 16px;
    left: calc(50% - 210px);
    top: calc(50% - 56px);
    width: 420px;
    height: 115px;
    max-width: 100%;
    border-radius: 10px;
    transition: .3s;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 170;
}

.success.open, .error.open {
    opacity: 1;
    visibility: visible;
}

.success.open svg, .error.open svg {
    width: 40px;
}

.success.open p, .error.open p {
    width: calc(100% - 56px);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--black-color);
}

.success.open p, .error.open p span {
    font-size: 16px;
    font-weight: 600;
    color: #464646;
}

.wpcf7-response-output, .wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-response-output {
    display: none !important;
}
#wpadminbar + #page {
    margin-top: -32px;
}

/*====== cookie ======*/

.cookie {
    position: fixed;
    background-color: var(--white-color);
    width: 310px;
    left: 30px;
    bottom: 20px;
    padding: 24px 20px;
    box-shadow: 0px 3px 10px 0px rgba(20, 20, 20, 0.07);
    border-radius: 10px;
    z-index: 50;
}

.cookie.hide {
    display: none;
}

.cookie .cookie-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.cookie .btn {
    height: 40px;
    width: 95px;
    font-size: 13px;
    color: #666666;
}

.cookie p {
    color: #464646;
    font-size: 15px;
    margin: 0 0 16px;
}

.cookie p a {
    color: var(--orange-color);
    text-decoration: none;
}

.map-address {
    display: none;
    position: absolute;
    width: 245px;
    background-color: var(--white-color);
    padding: 10px 24px 14px 10px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px rgba(20, 20, 20, 0.07);
    overflow: hidden;
    z-index: 100;
}

.map-address.show {
    display: block;
}

.map-address .close-address {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-address .map-icon-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    margin: 0 0 6px;
    color: #464646;
}

.map-address .map-icon-address {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    margin: 0 0 8px;
    color: #464646;
}

.map-address .map-icon-bottom {
    display: flex;
    align-items: center;
    gap: 4px;
}

.map-address .map-icon-bottom a {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #464646;
}

.map-address.address-1 {
    top: 200px;
    left: calc(50% - 110px);
}

.map-address.address-2 {
    /*
    bottom: 80px;
    right: calc(50% - 330px);
    */
    bottom: 140px;
    right: calc(50% - 300px);
}

@media screen and (max-width: 980px) {
    
    header .header-main .menu {
        display: none;
    }

    header .header-main .phones {
        margin: 0 0 0 auto;
    }

    header .header-main a.burger-menu {
        display: flex;
    }

    .advantages-item {
        width: calc(50% - 10px);
        flex: none;
        gap: 10px;
    }

    .section-about h2, .section-about .about-content {
        max-width: 100%;
        margin: 0;
    }

    .catalog-content {
        width: 100%;
        max-width: 100%;
    }

    .catalog-image {
        width: 100%;
        height: 400px;
        right: 0;
        margin: 20px 0 0;
    }

    .complex-item {
        flex: none;
        width: calc((100% - 40px) / 3);
    }

    .list-form {
        padding: 80px 40px 90px;
    }

    .form-row.col-3 .form-row__input {
        flex: none;
        width: 100%;
    }

    .form-row.grid {
        grid-template-areas:         
        "form-row__title"
        "performance"
        "count"
        "fineness"
        "size"
        "classification";
        grid-template-columns: repeat(1, 1fr);
    }

    .section-gallery .mySwiper {
        display: none;
    }

    .section-gallery .mySwiper2 {
        position: relative;
        width: calc(100% + 40px);
        left: -20px;
        height: 500px;
        overflow: clip;
        border-radius: 0;
    }

    .section-gallery .mySwiper2 .swiper-slide {
        border-radius: 0;
    }

    .swiper-pagination-mySwiper2 {
        display: flex !important;
        margin: 0 !important;
    }

    .section-gallery .mySwiper2:hover .swiper-button-next, .section-gallery .mySwiper2:hover .swiper-button-prev {
        display: none !important;
    }

    .section-connection .connection-title h2 {
        max-width: 100%;
    }

    footer .footer-top .phones {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links .row {
        align-items: flex-start;
    }

    .footer-links .footer-info {
        width: 100%;
        margin: 0 0 10px;
    }

    .footer-bottom .row {
        align-items: flex-start;
    }

    .footer-bottom__links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom__links span {
        display: none;
    }

    .page-title {
        padding: 30px 0 40px;
    }

    .section-history .history-info .history-content {
        width: 100%;
    }

    .section-history .history-info .history-photos {
        width: 100%;
    }
    
    .section-history .history-info .history-photos .swiper-wrapper {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%;
        height: 290px;
    }

    .section-geography h2 {
        width: 100%;
        max-width: 100%;
        margin: 80px 0 40px;
    }

    .section-geography img {
        width: 100%;
    }

    .product-single {
        width: calc((100% - 40px) / 3);
    }
    
    .product-single .product-image {
        height: 176px;
    }

    .section.single-primary .row {
        gap: 40px;
    }

    .section.single-primary .single-primary__content {
        width: 100%;
        max-width: 100%;
    }

    .section.single-primary .single-primary__photos {
        width: 100%;
        max-width: 100%;
    }

    .section.single-primary .single-primary__photos .single-slider {
        position: relative;
        width: calc(100% + 40px);
        margin: 0 -20px;
        border-radius: 0;
    }

    .section.single-primary .single-primary__photos .single-slider .swiper-slide {
        height: 480px;
        border-radius: 0;
    }

    .table-box {
        overflow: auto;
        padding: 0 0 20px;
    }

    table {
        min-width: 940px;
    }

    table th {
        font-size: 13px;
    }

    table td {
        font-size: 14px;
    }

    .section-404 {
        padding: 75px 0 90px;
    }

}

@media screen and (max-width: 768px) {
    html #wpadminbar {
        display: none !important;
    }
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    header .header-top {
        display: none;
    }

    header .header-main .row {
        gap: 12px;
    }

    .custom-logo-link {
        gap: 8px;
    }

    header .custom-logo-link img:nth-child(1) {
        height: 50px;
    }
    /*
    header .custom-logo-link img:nth-child(2) {
        height: 28px;
    }
    */

    header .header-main .phones a {
        font-size: 16px;
    }

    header .header-main .btn {
        width: 36px;
        height: 36px;
    }

    header .header-main .btn span {
        display: none;
    }

    header .header-main .btn svg {
        display: block;
    }

    header .header-main a.burger-menu {
        width: 36px;
        height: 36px;
    }

    main {
        margin-top: 70px;
    }

    .section-primary {
        padding: 130px 0 226px;
    }

    .section-primary .primary-content p.label  {
        font-size: 15px;
    }

    .section-primary .primary-content h1 {
        font-size: 38px;
    }

    .section-primary .primary-content p {
        font-size: 16px;
    }

    .section-advantages {
        margin-top: -90px;
    }

    .advantages-item img {
        width: 100px;
    }

    .advantages-item p {
        font-size: 16px;
    }

    .section-about {
        padding: 80px 0 90px;
    }

    .section-info .info-item {
        flex: none;
        width: calc(50% - 10px);
        padding: 44px 20px 30px;
    }

    .section-info .info-item .item-title {
        font-size: 32px;
    }

    .section-info .info-item .item-text {
        font-size: 16px;
    }

    .catalog-image {
        height: 320px;
    }

    .complex-item {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .complex-item img {
        width: 60px;
    }

    .complex-item p {
        font-size: 16px;
    }

    .list-form {
        padding: 80px 20px 90px;
    }

    .list-form .list-title h2 {
        font-size: 30px;
    }

    .list-form .list-title p {
        font-size: 16px;
    }

    .form-row.col-3 .form-row__title, .form-row.grid .form-row__title, .form-row.col-3 .form-row__title, .form-row.checkboxes .form-row__title, form .col-full .form-row__title {
        font-size: 16px;
    }

    .checkbox-politika .checkbox-text, .form-row__input p, .form_radio label {
        font-size: 15px;
    }

    .section-gallery .mySwiper2 {
        height: 400px;
    }

    .section-partners .partners-title p {
        font-size: 16px;
    }

    .connection-item {
        width: 100%;
        flex: none;
    }

    .connection-item .connection-item__title p {
        font-size: 15px;
    }

    .connection-item .connection-item__content a, .connection-item .connection-item__content p {
        font-size: 16px;
    }

    footer .footer-top .phones {
        display: none;
    }

    .footer-links .phones {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0 25px 0 0;
    }

    .footer-links .phones a {
        font-weight: 600;
    }

    .footer-links .footer-info {
        width: auto;
    }

    .footer-links .links-column:nth-child(3) {
        width: 100%;
    }

    .footer-links .links-column:nth-child(3) .links-column__links {
        display: flex;
        gap: 12px;
    }
    /*
    .footer-links .links-column:nth-child(4), .footer-links .links-column:nth-child(5) {
        width: calc(50% - 10px);
        min-width: auto;
    }
        */
    .footer-links .links-column:nth-child(4) .links-column__links {
        max-width: 100%;
    }

    .footer-bottom .row {
        flex-direction: column;
        gap: 12px;
    }

    footer .footer-bottom p {
        margin: 0;
    }

    .section-about .photos .swiper-wrapper, .section-history .history-info .history-photos .swiper-wrapper {
        gap: 0;
    }

    .section-history .history-info .history-photos .photo-box {
        flex: none;
    }

    .section-about-page {
        padding: 0 0 70px;
    }

    .section-about-page p {
        font-size: 16px;
    }

    .swiper.photos.slider-photos {
        width: calc(100% + 40px);
        left: -20px;
        right: -20px;
    }

    .section-about-page .photos .swiper-slide {
        height: 290px;
    }

    .section-history .history-info .history-content {
        padding: 40px 20px;
    }

    .section-history .history-info .history-content h3 {
        font-size: 20px;
    }

    .section-history .history-info .history-content p {
        font-size: 15px;
    }

    .section-history .history-info .history-photos .swiper-wrapper {
        height: 360px;
    }

    .page-content p.large {
        font-size: 16px;
    }

    .page-content p, .page-content li {
        font-size: 15px;
    }

    .contacts-item {
        width: calc(50% - 10px);
    }

    .contacts-item .contacts-item__title p {
        font-size: 15px;
    }

    .contacts-item .contacts-item__content p, .contacts-item .contacts-item__content a {
        font-size: 16px;
    }

    .product-single {
        width: calc(50% - 10px);
    }
    
    .product-single .product-image {
        height: 210px;
    }

    .product-single .product-title p {
        font-size: 15px;
    }

    .section.single-primary .single-primary__photos .single-slider .swiper-slide {
        height: 400px;
    }

    .section.section-list.section-list__single .list-form .list-title p {
        font-size: 16px;
    }

    .section.section-list.section-list__single .list-form .list-title p.description {
        font-size: 15px;
    }

    .section-404 {
        padding: 75px 0 90px;
    }

    .section-404 p {
        font-size: 16px;
    }

    .popup {
        padding: 40px 30px 50px;
    }

    .popup .order-title {
        font-size: 20px;
    }

    .popup  .form-row__input p, .checkbox-politika .checkbox-text {
        font-size: 15px;
    }

    .small-popup {
        width: 300px;
        left: calc(50% - 150px);
        height: auto;
    }

    .small-popup svg {
        width: 30px;
    }

    .small-popup p {
        width: calc(100% - 36px);
        font-size: 18px;
    }

    .small-popup p span {
        font-size: 13px;
    }

    .section-contacts-page {
        position: relative;
        background: #F7F7F7;
        z-index: 4;
    }

    #map {
        height: 400px;
    }

    .ymaps-2-1-79-controls__control {
        top: 60px !important;
    }

}
@media screen and (max-width: 576px) {

    section {
        padding: 70px 0 80px;
    }

    .container {
        padding: 0 16px;
    }

    h1{
        font-size: 32px;
        /*
        word-break: break-all;
        */
    }

    h2 {
        font-size: 28px;
         /*
        word-break: break-all;
        */
    }

    header .header-main .row {
        display: grid;
        grid-template-columns: auto 36px 36px;
        grid-template-areas: 
            "custom-logo-link btn burger-menu"
            "phones phones phones";
    }

    header .header-main .custom-logo-link {
        grid-area: custom-logo-link;
    }

    header .header-main .btn {
        grid-area: btn;
    }

    header .header-main .burger-menu {
        grid-area: burger-menu;
    }

    header .header-main .phones {
        grid-area: phones;
        align-items: flex-start;
        margin: 0;
        flex-direction: row;
    }

    main {
        margin-top: 87px;
    }

    .section-primary {
        padding: 130px 0 86px;
    }

    .section-primary .primary-content h1 {
        font-size: 32px;
    }

    .section-advantages {
        margin-top: 0;
        padding: 70px 0 0;
    }

    .advantages-item {
        width: 100%;
        padding: 20px;
        flex-direction: row;
    }

    .advantages-item img {
        width: 90px;
    }

    .advantages-item p {
        text-align: left;
    }

    .section-about .about-content p {
        font-size: 15px;
    }

    .section-about .about-content .btn {
        width: 100%;
        max-width: 100%;
    }

    .section-info .info-item {
        width: 100%;
    }

    .catalog-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .catalog-image {
        height: 240px;
    }

    .complex-item img {
        width: 50px;
    }

    .section-list {
        padding: 0 0 80px;
    }

    .section-list .container {
        padding: 0;
    }

    .list-form {
        padding: 70px 16px 80px;
        border-radius: 0;
    }

    .list-form .list-title h2 {
        font-size: 28px;
    }

    form button.btn {
        max-width: 100%;
    }

    .section-gallery .mySwiper2 {
        height: 240px;
    }

    .section-gallery {
        padding: 80px 0 30px;
    }

    .page-content.section-gallery {
        padding: 0 0 30px;
    }

    footer .footer-top .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    footer .custom-logo-link {
        margin: 0 0 16px;
    }

    footer .custom-logo-link img:nth-child(2) {
        height: 40px;
    }

    footer .footer-top .phones {
        display: flex;
        margin: 0 0 4px;
    }

    footer .footer-top .phones a {
        font-size: 16px;
    }

    footer .footer-top .footer-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    footer .footer-top .footer-info p, footer .footer-top .footer-info a {
        font-size: 15px;
    }

    footer .footer-top .btn {
        width: 100%;
        max-width: 100%;
    }

    .footer-links .phones, .footer-links .footer-info {
        display: none;
    }

    .footer-bottom {
        margin: 50px 0 0;
    }

    .section-history {
        background-color: #EBEBEB;
        padding: 80px 0;
    }

    .section-geography h2 {
        margin: 70px 0 40px;
    }

    .swiper.photos.slider-photos {
        width: calc(100% + 32px);
        left: -16px;
        right: -26px;
    }

    .section-about-page .photos .swiper-slide, .section-history .history-info .history-photos .swiper-wrapper {
        height: 240px;
        border-radius: 0;
    }

    .section-about-page .photos .swiper-wrapper {
        gap: 0;
    }

    .contacts-item {
        width: 100%;
    }

    .product-single {
        width: 100%;
    }
    
    .product-single .product-image {
        height: 230px;
    }

    .section.single-primary .single-primary__photos .single-slider {
        width: calc(100% + 32px);
        margin: 0 -16px;
    }

    .section.single-primary .single-primary__photos .single-slider .swiper-slide {
        height: 240px;
    }

    .section-404 {
        padding: 75px 0 80px;
    }

    .section-404 h1 {
        word-break: normal;
    }

    .section-404 .btn {
        max-width: 100%;
    }

    .popup {
        width: calc(100% - 32px);
        left: 16px;
    }

    .popup .btn {
        width: 100%;
    } 

    .small-popup {
        width: 300px;
        left: calc(50% - 150px);
        height: auto;
    }

    .small-popup svg {
        width: 30px;
    }

    .small-popup p {
        width: calc(100% - 36px);
        font-size: 18px;
    }

    .small-popup p span {
        font-size: 13px;
    }

    .cookie {
        width: calc(100% - 32px);
        left: 16px;
    }

    .scroll-top {
        bottom: 190px;
        right: 16px;
    }

    .scroll-top.no-cookie {
        bottom: 20px;
    }

    .map-address {
        width: calc(100% - 32px);
    }

    .map-address.address-1, .map-address.address-2 {
        top: auto;
        left: 16px;
        bottom: 10px;
    }

    #map {
        height: 320px;
    }

    .ymaps-2-1-79-controls__control {
        top: 30px !important;
    }

}

@media screen and (max-width: 375px) {

    .scroll-top {
        bottom: 210px;
    }

}