@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Commissioner';
    src: url('../fonts/Commissioner-Regular.ttf');
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-black: #333333;
    --black: #393939;
    --bg: #F1F1F1;
    --white: #FFFFFF;
    --primary: #8E8E8E;
    --gray: #EEEEED;
    --gray-dark: #D6D5CF;

    --red: #DA6F6D;
    --green: #72B286;
    --accent: #EC813F;
    --accent-hover: #85756B;

}

html {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 300;
    color: var(--dark-black);
    background-color: var(--bg);
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

a:hover {
    color: var(--accent);
}

textarea,
input,
button {
    border: none;
    background-color: inherit;
    color: inherit;
    font-family: 'Commissioner';
    font-size: 16px;
    border-radius: 0;
}

textarea:focus,
input:focus,
button:focus {
    outline: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
    line-height: 110%;

}

h1 {
    font-size: 36px;
}

h1.hero-title {
    font-size: 64px;
}

h2 {
    font-size: 64px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

.accent-color {
    color: var(--accent);
}

.text-medium {
    font-size: 18px;
    line-height: 110%;
}

.form-title {
    font-size: 24px;
    padding-right: 30px;
}

.section-text {
    font-weight: 500;
    font-size: 24px;
}

.black-bg {
    background-color: var(--black);
    color: var(--gray-dark);
}

.grey-bg {
    background-color: #E4E4E4;
}

.black-bg h2 {
    color: var(--white);
}

.grey-color-text {
    color: var(--primary);
}

.text-wrapper {
    max-width: 883px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title__text {
    max-width: 881px;

}

.btn {
    height: 46px;
    width: fit-content;
    font-weight: 400;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color .3s ease, color .3s ease;
    cursor: pointer;
}

.btn_primary {
    background-color: var(--white);
    color: var(--black);
}

.btn_primary:hover {
    background-color: var(--gray);
}

.btn_second {
    background-color: var(--accent);
    color: var(--white);
}

.btn_second:hover {
    background-color: var(--accent-hover);
}

.modal_overlay {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #21212180;
    z-index: 11;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    overflow-y: auto;
    padding: 10px;
}

.modal_overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.modal_overlay.is-open .modal-menu {
    transform: translateX(0);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 10px;
}

.modal-close {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url('../images/icons/close.svg') 50% / contain no-repeat;
}

.modal-menu {
    transform: translateX(100%);
    transition: transform .3s ease;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    width: 100%;
    max-width: 360px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow-y: auto;
}

.menu-nav {
    display: flex;
    flex-direction: column;
}

.menu-nav-item {
    padding: 16px 10px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-dark);

}

.menu__contact {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu__contact a:hover {
    color: var(--accent-hover);
}

.menu__contact .link_contacts {
    align-items: start;
    color: var(--accent);
    gap: 10px;
}

.menu__contact .link_contacts a {
    font-size: 16px;
}

.modal-content {
    padding: 40px;
    border-radius: 4px;
    background-color: var(--white);
    position: relative;
    margin: auto;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 31px;
    transform: translateY(20px);
    transition: transform .3s ease;
}

.modal_overlay.is-open .modal-content {
    transform: translateY(0);
}

.modal-content .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success_form__content {
    display: none;
}

.form.success_form .success_form__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form.success_form>* {
    display: none;
}

.form .btn {
    width: 100%;
}

.form_bootom {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 14px;
    color: #ADAEB9;
    margin-top: 11px;
}

.form_bootom a {
    text-decoration: underline;
}

textarea,
input {
    height: 46px;
    border: none;

    border-bottom: 1px solid #ADAEB9;
    transition: all .3s ease;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.error_msg {
    color: var(--red);
    font-size: 14px;
    font-family: 'Commissioner';
    display: none;
}

.input_label.error input {
    border-color: var(--red);
    color: var(--red);
}

.input_label.error .error_msg {
    display: block;
}

input:focus {
    border-color: var(--accent);
}

.input_label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

textarea {
    resize: none;
    padding-bottom: 10px;

}

textarea:focus {
    border-color: var(--accent);
}

.no-page {
    width: 100%;
    padding: 123px 0;
    min-height: 100vh;
    display: flex;
    color: var(--white);
    background: url('../images/404-bg.png') 0% 0% / cover no-repeat;
}

.no-page-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.no-page_info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.container {
    max-width: calc(1180px + (30px * 2));
    padding: 0 30px;
    width: 100%;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: var(--black);
    color: var(--white);
    z-index: 10;
    transition: all .3s ease;
}

.page-template-page-policy .header,
.page-template-default .header {
    background-color: var(--black);
}

.header_hero {
    padding-top: 20px;
    background-color: #ffffff00;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header.is-scrolled {
    padding: 20px 0;
    background-color: var(--black);
}

.logo {
    width: 179px;
    flex-shrink: 0;
    height: 81px;
    display: block;
    background: url('../images/sial-logo.svg') 50% / contain no-repeat;
}

.logo_black {
    width: 119px;
    height: 52px;
    background: url('../images/logo_bl.svg') 50% / contain no-repeat;
}

.nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-item {
    font-weight: 500;
}

.nav-item:hover {
    color: var(--accent);
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.link_contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: end;
}

.link_contact__tel {
    font-weight: 500;
    font-size: 18px;
}

.link_contact__mail {
    font-size: 14px;
    font-weight: 500;
}

.bread-crumbs {
    padding-top: 155px;
    color: #ADAEB9;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
}

.bread-crumbs a,
.bread-crumbs span {
    display: flex;
    align-items: center;
    gap: 2px;
    text-wrap: nowrap;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Commissioner';
    color: #ADAEB9;
}

.bread-crumbs a::after {
    content: ' /';
}

.bread-crumbs a:hover {
    color: var(--accent);
}

.bread-crumbs a:last-child:after {
    content: '';
}

.bread-crumbs .breadcrumb_last {
    color: var(--black);
}

section {
    padding: 110px 0;
}

.section-hero {
    padding-bottom: 110px;
    display: flex;
    align-items: end;
    min-height: 100vh;
    position: relative;
    background: url('../images/hero.png') 50% / cover no-repeat;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 102.31%);

}

.hero-info {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    color: var(--white);
    position: relative;
}

.hero-text {
    font-size: 32px;
}

.burger-menu {
    display: none;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.burger-menu svg path {
    transition: fill .3s ease;
}

.burger-menu:hover svg path {
    fill: var(--accent);
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mine-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mine-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    line-height: 110%;
}

.mine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    min-height: 0;
    min-width: 0;
}

.mine-stat-container {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 200px 284px 313px;
    gap: 93px;
}

.mine-stat-item {
    display: flex;
    flex-direction: column;
}

.mine-stat-item__count {
    line-height: 110%;
    font-weight: 500;
    font-size: 48px;
}

.counter-anim__sign,
.counter-anim {
    display: inline-block;
}

.swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.section-control {
    overflow: hidden;
}

.custom-scrollbar {
    height: 2px;
    background: #343434;
    opacity: 1;
    margin-top: 40px;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.swiper-scrollbar-drag {
    background-color: var(--primary);
}

.swiper-scrollbar-drag::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

.control-scheme .swiper-slide {
    filter: blur(3px);
    transition: filter .3s ease;
}

.control-scheme .swiper-slide-active {
    filter: blur(0px);
}

.control-scheme .swiper-slide-active+.swiper-slide {
    filter: blur(0px);
}

.control-scheme {
    position: relative;
}

.visible-slide {
    filter: blur(10px);
}

.control-scheme-item {
    width: 100%;
    height: auto;
    max-width: 580px;
    background-color: #2B2B2B;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.control-scheme {
    margin-top: 30px;
    margin-bottom: 70px;
}

.control-scheme-item__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.control-scheme-item__text ul {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    list-style-type: none;
}

.control-scheme-item__text ul li {
    border-radius: 100px;
    padding: 4px 10px;
    background-color: #424242;
}

.control-scheme-item__count {
    width: 46px;
    height: 46px;
    border-radius: 100px;
    background-color: var(--black);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.bubble-text-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.bubble-text {
    border-radius: 100px;
    padding: 4px 10px;
    background-color: #424242;

}

.section-product {
    overflow: hidden;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 280px;
    padding: 20px;
    border-radius: 4px;

    height: auto;
    background: #FFFFFF;

}

.product-card__info {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.product-card__img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
}

.product-card__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.warranty-scheme-item {
    max-width: 480px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
}

.warranty-scheme-item__img {
    width: 100%;
    aspect-ratio: 1 / 0.702;
}

.warranty-scheme-item__title {
    display: flex;
    gap: 10px;
    font-weight: 500;
}

.warranty-scheme-item__title span {
    margin-top: 3px;
}

.warranty-scheme-item__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.warranty-scheme-item__count {
    width: 26px;
    height: 26px;
    border-radius: 100px;
    color: var(--white);
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.grey-bg .custom-scrollbar {
    background-color: #D9D9D9;
}

.about-items-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.about-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    border-radius: 4px;
    background-color: #2B2B2B;
}

.about-item__icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.about-item__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 379px;

}

.contacts-link {
    display: flex;
    gap: 20px;
}

.contacts-link span {
    margin-top: 2px;
}

.contacts-link::before {
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contacts__block {
    padding: 40px;
    background-color: var(--white);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.contacts-link_location::before {
    background: url('../images/icons/location.svg') 50% / contain no-repeat;
}

.contacts-link_mail::before {
    background: url('../images/icons/mail.svg') 50% / contain no-repeat;
}

.contacts-link_tel::before {
    background: url('../images/icons/tel.svg') 50% / contain no-repeat;
}

.contacts__block .btn {
    width: 100%;
}

.contacts-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.contact__map {
    filter: grayscale(1);
    border-radius: 4px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);

}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 36px;
}

.footer__top .nav {
    margin-top: 8px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: end;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}

.footer-link svg path {
    transition: all .3s ease;
    fill: var(--primary);

}

.footer-link:hover svg path {
    fill: var(--accent);
}

.footer__bottom {
    padding-top: 20px;
    border-top: 3px solid #2E2E2E;
    font-size: 14px;
    display: flex;
    gap: 55px;
}

.about-site {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-site a {
    color: var(--accent);
}

.about-company {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;

    color: #ABABAB;
}

.about-develop {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-shrink: 0;
}

.about-develop img {
    width: 190px;
    height: 33px;
    object-fit: contain;
}

.politick,
.section_content {
    padding: 0;
    padding-bottom: 110px;
}

.politick-container p,
.section_content p,
.section_content ul,
.section_content ol {
    margin: 10px 0;
    font-weight: 500;
}

.politick-container h2,
.section_content h2,
.politick-container h3,
.section_content h3,
.politick-container h4,
.section_content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.politick a,
.section_content a {
    color: var(--accent);
}

.politick h2 {
    font-size: 24px;
}

.content-container h1 {
    margin-bottom: 40px;
}

.politick-container .politick_subtitle {
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
}

#wrapMap {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: help;
    overflow: hidden;
}
.mapTitle {
    position: absolute;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
    display: none;
    padding: 5px 20px;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
    font-size: 14px;
}

.page-template-page-policy ul,
.page-template-default ul,
.page-template-default ol,
.page-template-default ol {
    padding-left: 30px;
}

@media (max-width:1250px) {

    .header__contact,
    .header .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

@media (max-width:1100px) {
    .mine-stat-container {
        max-width: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0;
    }


}

@media (max-width:1000px) {
    .logo {
        width: 119px;
        height: 52px;
    }

    .header.is-scrolled,
    .header {
        padding: 10px 0;
    }

    h1.hero-title {
        font-size: 38px;
        max-width: 600px;
    }

    section {
        padding: 60px 0;
    }

    .hero-text {
        font-size: 20px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 30px;
    }

    .text-medium {
        font-size: 16px;
    }

    .flex-column {
        gap: 20px;
    }

    .about-items-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-item {
        gap: 20px;
    }

    .contacts-container {
        gap: 10px;
    }

    .contacts__block {
        padding: 20px;
    }

    .contacts__info {
        max-width: 300px;
    }

    .footer__top {
        align-items: start;
        flex-direction: column;
    }

    .footer__top .nav {
        margin: 0;
    }

    .footer .logo {
        width: 177px;
        height: 36px;
        background-position: left;
    }

    .footer {
        padding: 60px 0;
    }

    .modal-content {
        padding: 20px;
    }

    .bread-crumbs {
        padding-top: 80px;
    }

}

@media (max-width:750px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 40px 0;
    }
.section-hero {
    
    background: url('../images/hero_mob.png') 50% / cover no-repeat;
}
    h1.hero-title {
        font-size: 28px;
        word-break: break-word;
        max-width: 350px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    .hero-text {
        font-size: 16px;
    }

    .burger-menu {
        width: 27px;
        height: 27px;
    }

    .mine-container {
        display: flex;
        flex-direction: column;
    }

    .mine-container {
        gap: 10px;
    }

    .mine-info {
        gap: 10px;
    }

    .mine-stat-container {
        grid-template-columns: 1fr;
    }

    .section-text {
        font-size: 16px;
    }

    .section-title {
        gap: 6px;
    }

    .control-scheme-item {
        padding: 12px;
        max-width: 306px;

    }

    .bubble-text,
    .control-scheme-item p {
        font-size: 14px;
        line-height: 110%;
    }

    .custom-scrollbar {
        margin-top: 10px;
    }

    .control-scheme {
        margin-bottom: 22px;
    }

    .product-card__text {
        gap: 8px;
    }

    .warranty-scheme-item {
        padding: 12px;
    }

    .contacts-container {
        display: flex;
        flex-direction: column;

    }

    .contacts__info {
        max-width: none;
    }

    .contact__map {
        height: 204px;
    }

    .footer__top .nav {
        flex-direction: column;
        align-items: start;
    }

    .footer__contact {
        margin-top: 20px;
        align-items: flex-start;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 25px;
    }

    .footer__top {
        padding-bottom: 20px;
    }

    .about-develop {
        gap: 10px;
    }

    .bread-crumbs a {
        font-size: 12px;
    }

    .politick-container h1 {
        font-size: 28px;
    }

    .politick-container .politick_subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .politick-container h4 {
        margin-top: 20px;
    }
    .no-page {
   
    background: url('../images/404-bg_mob.png') 50% 0% / cover no-repeat;
}
}

@media (max-width:550px) {
    .modal-menu {
        max-width: none;
    }

    .about-items-container {
        grid-template-columns: 1fr;
    }

    .about-company {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width:360px) {
    .mine-stat-item__count {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .politick h2 {
        font-size: 20px;
    }
}