/*-------------------------------------*/
/* Root                                */
/*-------------------------------------*/

:root {
    --tmpl-max-width: 1366px;
    --tmpl-toolbar-height: 64px;

    --tmpl-main-color: #111111;
    --tmpl-main-background: #f5f5f5;
    --tmpl-main-shadow: 0 4px 10px #ddd;

    --tmpl-primary-deep: #000000;
    --tmpl-primary-base: #eeeeee;
    --tmpl-primary-surf: #ffffff;

    --tmpl-title-color: #000000;

    --tmpl-border-color: #e7e7e7;

    --tmpl-accent-dark: #000000;
    --tmpl-accent-base: #111111;
    --tmpl-accent-light: #222222;
}

@media (max-width: 767px) {
    :root {
        --tmpl-toolbar-height: 52px;
    }
}

/*-------------------------------------*/
/* Base                                */
/*-------------------------------------*/

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--tmpl-main-color);
    background: var(--tmpl-main-background);
    overflow-x: hidden;
}

body.overflow {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--tmpl-title-color);
    margin: 1em 0;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    display: block;
    position: relative;
    box-sizing: border-box;
    max-width: var(--tmpl-max-width);
    padding: 0 16px;
    margin: 0 auto;
}

.container-toolbar {
    max-width: 1600px;
}

.container-products {
    max-width: 1920px;
}

.container-informer {
    max-width: 1100px;
}

.link-pdf {
    font-size: 110%;
    text-decoration: none;
}

.link-pdf .bi {
    font-size: 160%;
    text-decoration: none;
}

/*-------------------------------------*/
/* Elements                            */
/*-------------------------------------*/

.logo-main {
    display: flex;
    position: relative;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

.logo-main img {
    display: block;
    position: relative;
    max-width: 140px;
    z-index: 9;
}

.tel-main {
    display: inline-flex;
    position: relative;    
    box-sizing: border-box;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    color: #000;
    font-size: 120%;
}

.footer .tel-main {
    color: #fff;
}

.email-main {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    text-decoration: none;
    white-space: nowrap;
    color: #000;
}

.footer .email-main {
    color: #fff;
}

@media (max-width: 767px) {
    .logo-main img {
        max-width: 120px;
    }
}

/*-------------------------------------*/
/* Buttons                             */
/*-------------------------------------*/

.button-base {
    display: inline-flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    min-height: 50px;
    color: #fff;
    line-height: 1.1;
    background: #000;
    border: 1px solid transparent;
    transition: 0.2s;
}

.button-base:active,
.button-base:hover {
    color: #000!important;
    background: none;
    border-color: #000;
}

.button-round {
    color: #000;
    background: transparent;
    border: 1px solid #000;
    border-radius: 80px;
    transition: 0.2s;
}

.button-round .bi {
    margin-right: 16px;
    font-size: 120%;
}

.button-round:active,
.button-round:hover {
    color: #fff!important;
    background: #000;
}

.button-burger {
    display: flex;
    position: relative;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: 0.2s;
}

.button-burger span {
    display: block;
    position: relative;
    width: 100%;
    height: 4px;
    background: #000;
    margin: 2px 0;
    border-radius: 2px;
    transition: 0.2s;
}

.button-slider {
    display: flex;
    position: absolute;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    top: 44%;
    font-size: 120%;
    line-height: 0;
    color: #fff;
    background: #000;
    border-radius: 4px;
    opacity: 0.4;
    transition: 0.2s;
}

.button-slider:hover {
    opacity: 1;
}

.button-slider.slider-prev {
    left: 16px;
}

.button-slider.slider-next {
    right: 16px;
}

/*-------------------------------------*/
/* Sections                            */
/*-------------------------------------*/

.section-main {
    display: block;
    position: relative;
    padding: 80px 0;
}

.section-main__wrapper {
    display: block;
    position: relative;
}

.section-title {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    text-transform: uppercase;
    margin: 0.5em 0;
}

.section-descr {
    display: block;
    position: relative;
    text-align: center;
}

.section-articles {
    background: #fff;
}

.section-info {
    background: #fff;
}

@media (max-width: 559px) {
    .section-main {
        padding: 32px 0;
    }
}

/*-------------------------------------*/
/* Content                             */
/*-------------------------------------*/

.content {
    display: block;
    position: relative;
}

.content__wrapper {
    display: block;
    position: relative;
}

/*-------------------------------------*/
/* Social Link                         */
/*-------------------------------------*/

.social-link {
    display: block;
    position: relative;
}

.social-link__flex {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 -8px;
}

.social-link__item {
    display: block;
    position: relative;
    box-sizing: border-box;
    margin: 0 8px;
    max-width: 30px;
    line-height: 0;
}

.social-link__item a {
    display: inline-flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 0;
    color: transparent;
    line-height: 0;
    opacity: 0.7;
    background: no-repeat center;
    background-size: cover;
    text-decoration: none;
    transition: 0.2s;
}

.social-link__item a:hover {
    opacity: 1;
}

.social-link__item.contact {
    margin: 16px 0;
    max-width: 100%;
}

.modal .social-link__item.contact {
    margin: 8px 0;
}

.social-link__item.contact a {
    font-size: 16px;
    color: #000;
    line-height: 1.2;
    width: auto;
    background-position: 0 50%;
    background-size: contain;
}

.social-link__item.contact a span {
    margin-left: 40px;
}

.social-link__vk {
    background-image: url(../icons/vk-brands.svg)!important;
}

.social-link__telegram {
    background-image: url(../icons/telegram-brands.svg)!important;
}

.social-link__max {
    background-image: url(../icons/max-brands.svg)!important;
}
.social-link__whatsapp {
    background-image: url(../icons/whatsapp-brands.svg)!important;
}

.footer .social-link__item a {
    filter: invert();
}

@media (max-width: 559px) {
    .social-link {
        transform: scale(0.8);
    }
}