@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
:root {
  --rgb-main-color: 212 31 23; /* красный */
  --rgb-second-color: 66 66 66; /* темно-серый */
  --rgb-green: 44 183 66; /* зеленый */
  --font-title: "Merriweather";
}
body {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}
.parallax_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    z-index: -3;
}
.main {
    position: relative;
    z-index: 2;
    background-color: rgba(0,0,0,0.6);
    margin-bottom: 0px !important;
}
@media (max-width: 1199px){
    body {font-size: 15px;}
}
@media (max-width: 991px){
    body {font-size: 14px;}
}
@media (max-width: 575px){
    body {font-size: 13px;}
}



a {color: inherit;}
a:hover, a:focus, a:active {
    color: inherit;
    outline: none;
    text-decoration: none;
}
p, label, span, a, select, div, blockquote, cite {
    line-height: normal;
    margin-bottom: 0px;
}

/* BLOCKS AND SECTIONS */
section {
    padding-top: 1px;
    padding-bottom: 1px;
    margin-bottom: 0px;
}
.site_box {
    padding-left: 8vw;
    padding-right: 8vw;
}
.bg_gray {background-color: #f5f5f5;}
.bg_white {background-color: #fff;}
.bg_main_color {background-color: rgb(var(--rgb-main-color));}
.box_shad {filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.1));}
.white_box {
    background-color: #fff;
    border-radius: .5em;
    padding: 1em;
    height: 100%;
}
.br_03 {border-radius: .3em;}



/* FORMS CUSTOMIZATION */
input, input:hover, input:focus, input:active,
button, button:hover, button:focus, button:active, 
textarea, textarea:hover, textarea:focus, textarea:active,
select, select:hover, select:focus, select:active {outline: none;}

/* placeholder stylization */
input:-moz-placeholder, textarea:-moz-placeholder {color: #8e8e8e;}
input::-moz-placeholder, textarea::-moz-placeholder {color: #8e8e8e;}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {color: #8e8e8e;}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {color: #8e8e8e;}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {color: #8e8e8e;}
input::placeholder, textarea::placeholder {color: #8e8e8e;}

input, textarea, select {
    display: block;
    border: 2px solid rgb(var(--rgb-second-color) / 25%);
    background-color: #f5f5f5;
    border-radius: .3em;
    padding: .75em 1.5em;
    width: 100%;
    line-height: normal;
    box-shadow: unset;
}
input.simple, textarea.simple {
    border: 2px solid orange;
    width: fit-content;
    width: -moz-fit-content;
    padding: .5em 1em;
}


/* SELECT simple */
select {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    background-image: url(../images/icons/down.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: auto 7px;
    position: relative;
}
select::-ms-expand { /* for IE 11 */display: none;}
select:hover {cursor: pointer;}

/* checkbox customization */
.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.checkbox input[type="checkbox"] {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    box-shadow: none;
    border: 2px solid rgb(var(--rgb-main-color));
    border-radius: 0;
    height: 1em;
    min-height: unset;
    width: 1em;
    position: relative;
    box-sizing: content-box;
    margin-right: .25em;
}
.checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.5em;
    height: 2em;
    background: url(../images/icons/mark.png) no-repeat;
    background-size: contain;
    background-position: bottom left;
}
.checkbox label {
    flex: 1;
    line-height: 1em;
}
.checkbox label a {line-height: 1em;}

/* radiobutton customization */
.radio {
    display: flex;
    justify-content: flex-start;
    align-items: end;
}
.radio input[type="radio"] {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    box-shadow: none;
    border: 2px solid rgb(var(--rgb-main-color));
    border-radius: 50%;
    height: 1em;
    width: 1em;
    position: relative;
    box-sizing: content-box;
    margin-right: .25em;
}
.radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: #d9501a;
    border-radius: 50%;
}
.radio label {
    flex: 1;
    line-height: 1em;
}
.radio label a {line-height: 1em;}

/* кнопки */
button {
    background: none;
    border: none;
    padding: unset;
    display: block;
}
button:hover, button:focus, button:active {cursor: pointer;}
.btn_main {
    border-radius: .3em;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
    line-height: 1.1em;
    padding: 1em 2em;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    min-height: 2em;
    transition: .5s;
}
.btn_main:hover, .btn_main:focus, .btn_main:active {cursor: pointer;}
.btn_1 {
    color: #fff;
    background-color: rgb(var(--rgb-main-color));
    position: relative;
    overflow: hidden;
}
.btn_1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.15);
    transition: .15s;
}
.btn_1:hover::before {left: 0%;}
.btn_1:hover, .btn_1:focus, .btn_1:active {color: #fff;}
.btn_2 {
    border: 2px solid rgb(var(--rgb-main-color));
    color: rgb(var(--rgb-main-color));
    background-color: transparent;
}
.btn_2:hover, .btn_2:focus, .btn_2:active {
    color: #fff;
    background-color: rgb(var(--rgb-main-color));
}
.btn_3 {
    color: #fff;
    background-color: rgb(var(--rgb-green));
    position: relative;
    overflow: hidden;
}
.btn_3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.15);
    transition: .15s;
}
.btn_3:hover::before {left: 0%;}
.btn_3:hover, .btn_3:focus, .btn_3:active {color: #fff;}
.btn_3:active, .btn_3:visited {background-color: #3c823c;}
.btn_3.clicked_btn {background-color: #3c823c;}
.btn_3 img {
    width: 2em;
}
.btn_collapse::before {content: "Загрузить ещё";}
.btn_collapse[aria-expanded="true"]::before {content: "Скрыть";}
@media (max-width: 1199px){
    .btn_main {padding: 1em 1.5em;}
}



/* Текстовые стили */
h1, .h1, h2, h3, h4, h5 {font-family: var(--font-title);}

h1 {
    font-size: 2.5em;
    color: #fff;
    font-weight: 500;
}
.h1 {
    font-size: 3em;
    color: #fff;
    font-weight: 400;
    text-align: left;
    margin-bottom: 1em;
}
@media (max-width: 991px){.h1 {font-size: 2.6em;}}
@media (max-width: 575px){.h1 {font-size: 2.3em;}}
.h1 h1 {
    font-size: 1em;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 0;
    display: inline;
}
h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 1em;
}
@media (max-width: 767px){h2 {font-size: 1.8em;}}
@media (max-width: 575px){h2 {font-size: 1.5em;}}
h3 {
    text-align: left;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: .6em;
}
h4 {
    text-align: left;
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: .5em;
    font-style: italic;
    word-break: break-word;
}


.f_08 {font-size: .8em;}
.f_09 {font-size: .9em;}
.f_11 {font-size: 1.1em;}
.f_12 {font-size: 1.2em;}
.f_13 {font-size: 1.3em;}
.f_14 {font-size: 1.4em;}
.f_15 {font-size: 1.5em;}
.f_16 {font-size: 1.6em;}
.f_17 {font-size: 1.7em;}
.f_18 {font-size: 1.8em;}
.f_19 {font-size: 1.9em;}
.f_20 {font-size: 2em;}
.white {color:#fff;}
.black {color: #000;}
.main_color {color: rgb(var(--rgb-main-color));}
.sec_color {color: rgb(var(--rgb-second-color));}

.fw_2 {font-weight: 200;} /* extra-light */
.fw_3 {font-weight: 300;} /* !light */
.fw_4 {font-weight: 400;} /* !regular */
.fw_5 {font-weight: 500;} /* !medium */
.fw_6 {font-weight: 600;} /* !semi-bold */
.fw_7 {font-weight: 700;} /* !bold */
.fw_8 {font-weight: 800;} /* !extra-bold */
.fw_9 {font-weight: 900;} /* black */
.itlc {font-style: italic;}
.norm {font-style: normal;}

.tt_up {text-transform: uppercase;}
.td_und {text-decoration: underline;}
.td_lth {text-decoration: line-through;}
.lh_n {line-height: normal;}
.lh_1 {line-height: 1em;}
.bb_1 {border-bottom: 1px solid;}
.t_ind {text-indent: 2rem;}



/************* header ****************/
header {
    background-color: #fff;
    margin-top: -1px;
}
header>div.container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1em;
    padding-top: 1em;
    position: relative;
}
header>div.container>div {
    flex: 1;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img {
    width: 4em;
    margin-right: .5em;
}

@media (max-width: 991px){
    .header_address {font-size: 1em;}
}
@media (max-width: 767px){
    header {display: none;}
    header .logo {
        justify-content: center;
        margin-bottom: 1em;
    }
}
@media (max-width: 575px){
    header>div a.logo {
        top: calc(1em + 8px);
        right: 135px;
    }
}



/************* top menu ****************/
.top_menu {
    background: rgb(var(--rgb-second-color));
    /* margin-bottom: 2em; */
}
.top_menu>div.container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding-top: .5em;
    padding-bottom: .5em;
    position: relative;
}
.home_link {
    position: absolute;
    top: 1em;
    right: 15px;
}
.home_link img {
    width: 2em;
    height: 2em;
    object-fit: contain;
}
@media (max-width: 767px){
    .top_menu {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }
    .top_menu .logo {
        position: absolute;
        right: 15em;
        align-items: center;
        top: .4em;
    }
    .top_menu  .header_logo {
        height: 3em;
        margin-right: .5em;
    }
    .top_menu .phone {
        position: absolute;
        right: 3.5em;
        top: 1.1em;
    }
}
@media (max-width: 575px){
    .top_menu .phone {right: 4em;}
}


/************** menu ***************/
nav {
    width: 100%;
    padding: 0 !important;
}
.navbar-nav {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.nav-item {
    border-radius: 2em;
    padding: .2em .4em;
    border: 1px solid transparent;
}
@media (max-width: 1199px){.nav-item {padding: .2em .3em;}}
.nav-link {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 !important;
    margin: 0;
    border: 1px solid transparent;
}
@media (max-width: 991px){.nav-link {font-size: 1em;}}
.active .nav-link, .nav-link:hover, .nav-link:focus, .nav-link:active {color: rgb(var(--rgb-main-color));}
.navbar-toggler .navbar-toggler-icon {
    display: block;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #fff;
}
@media (max-width: 991px){
    nav {width: 100%;}
    #menu_line>button {
        position: absolute;
        top: 5px;
        right: 15px;
    }
    .navbar-nav {align-items: flex-start;}
}
@media (max-width: 767px){
    .nav-item {margin-bottom: .5em;}
    .nav-link {font-size: 1.3em;}
}
@media (max-width: 575px){
    .navbar-toggler {padding: .25rem 0;}
}


/* кнопка вверх */
#scroll_top {
  display: none;
  background-color: #000;
  padding: 1em;
  border-radius: .3em;
  position: fixed;
  bottom: 5em;
  right: 2em;
  z-index: 9999;
  opacity: .25;
}
#scroll_top.show {display: block;}
#scroll_top>span {
  color: #fff;
  font-size: 1.5em;
  line-height: 1em;
}
#scroll_top:hover {
  opacity: .6;
  cursor: pointer;
}

/* фиксированная кнопка Whats app */
#fixes_wapp {
    background-color: rgb(var(--rgb-green));
    padding: .75em;
    border-radius: .3em;
    position: fixed;
    bottom: 6em;
    right: 2em;
    z-index: 9999;
    opacity: .5;
}
#fixes_wapp .white_icon svg {
    width: 2em;
    height: 2em;
}
#fixes_wapp:hover {
  opacity: 1;
  cursor: pointer;
}
@media (max-width: 767px){
    #fixes_wapp {display: none;}
}

/* фиксированная кнопка корзины на мобильных */
/* #cart_mobile_1993 {
    background-color: rgb(var(--rgb-green));
    padding: .75em;
    border-radius: .3em;
    position: fixed;
    bottom: 10em;
    right: 2em;
    z-index: 9999;
    display: none;
    cursor: pointer;
}
#cart_mobile_1993.empty_cart {opacity: .5;}
#cart_mobile_1993 img {
    width: 2em;
    height: 2em;
}
#cart_mobile_1993 span {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.75em;
    background: rgba(0, 0, 0, .6);
    border-radius: 100%;
    height: 1.4em;
    width: 1.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    color: #fff;
} */

.ya-chat-widget.ya-chat-widget_desktop.ya-chat-widget_theme_light.ya-chat-widget_size_large {
    bottom: 70px !important;
}


/****** ICONS ******/
.svg_icon svg {
    width: 2em;
    height: 2em;
}
.svg_icon svg path, .svg_icon svg circle {
    fill: rgb(var(--rgb-main-color));
}
.blue_icon svg path, .blue_icon svg circle {fill: rgb(var(--rgb-main-color));}
.white_icon svg path, .white_icon svg circle {fill: #fff;}



/********* pagination ********/
nav>ul.pagination {
    justify-content: center;
}
nav>ul.pagination .page-link {
    background-color: transparent;
    font-weight: 600;
    border: none;
    color: #000;
    font-size: 1.2em;
    width: 2em;
    height: 2em;
    text-align: center;
}
nav>ul.pagination .page-link:hover, nav>ul.pagination .page-link:active {
    background-color: rgb(var(--rgb-main-color));
    color: #fff;
    border-radius: 50%;
}


/********** footer ************/
.footer_wrap {
    position: relative;
    padding: 0;
}
.footer_wrap>section {
    position: relative;
    z-index: 1;
}
footer {
    background: #000;
    color: #fff;
    padding-top: 3em;
    padding-bottom: 2em;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}
.footer-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social .white_icon svg {
    width: 1.5em;
    height: 1.5em;
}
.footer-social a:hover .white_icon svg path, .footer-social a:hover .white_icon svg circle {
    transition: .25s;
    fill: #000;
}
footer hr {
    background-color: rgba(255,255,255,.1);
    width: 100%;
    height: 1px;
    border: none;
    margin: 1em 0;
}
/* text links */
footer a.link {
    position: relative;
}
footer a.link:hover {
    color:rgb(var(--rgb-main-color));
    transition: .25s;
}
footer a.link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(var(--rgb-main-color));
    height: 1px;
    transform-origin:center;
    transform: scale(0);
    transition: .25s;
}
footer a.link:hover::after {
    transform-origin:center;
    transform: scale(1);
    transition: .25s;
}
/* подписи */
.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.developers {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-transform: uppercase;
}
.developers img {
    width: 50px;
    margin-left: 10px;
}
@media (max-width: 767px){
    .footer_bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer_bottom>div.text-center {margin-bottom: 1em;}
}

footer.mobile {
    padding: .5em 0;
    position: sticky;
    bottom: 0px;
    left: 0px;
    z-index: 100;
}
footer.mobile nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
footer.mobile nav a, footer.mobile nav button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #fff;
}
footer.mobile nav a svg, footer.mobile nav button svg {
    width: 23px;
    height: 23px;
    object-fit: contain;
}
footer.mobile .cart-total {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D41F17;
    border: 1px solid #000000;
    position: absolute;
    bottom: -2px;
    right: -7px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
 }


/********** sliders ************/
.swiper_3 {
    position: relative;
    overflow: hidden;
    margin-top: 1em;
    margin-bottom: 4em;
    padding-bottom: 3em;
}

.swiper-pagination {bottom: 0 !important;}
.swiper-pagination-bullet {
    background-color: rgb(var(--rgb-main-color) / 40%);
    opacity: 1;
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background-color: rgb(var(--rgb-main-color));
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    border: 2px solid #000;
    border-radius: .25em;
    width: 2em;
    height: 2em;
    opacity: .5;
    background-color: #fff;
}
.swiper-button-prev {left: 0;}
.swiper-button-next {right: 0;}
.swiper-button-next:hover, .swiper-button-prev:hover, .swiper-button-next:active, .swiper-button-prev:active {opacity: 1;}
.swiper-button-prev::after, .swiper-button-next::after {
    color: rgb(var(--rgb-main-color));
    font-size: 1.5em;
    line-height: 1em;
}
.swiper-button-prev::after {
    content: "➤";
    transform: rotate(180deg);
}
.swiper-button-next::after {
    content: "➤";
    
}



/************** sticky menu ***************/
.header_sticky {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    filter: drop-shadow(0px 0px 15px rgba(0,0,0,0.1));
    padding-top: .5em;
    padding-bottom: .5em;
    z-index: 100;
}
.header_sticky>div.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_sticky .logo img {width: 4em;}
.header_sticky nav {width: fit-content;width: -moz-fit-content;}
.header_sticky .nav-link {color: rgb(var(--rgb-second-color));}
.header_sticky .active .nav-link, .header_sticky .nav-link:hover {color: rgb(var(--rgb-main-color));}
.header_sticky .navbar-toggler .navbar-toggler-icon {background-color: rgb(var(--rgb-main-color));}
@media (max-width: 991px){
    .header_sticky button.btn_main, .header_sticky>div>span {
        position: absolute;
        top: 0;
        right: 15px;
        height: 53px;
        display: flex;
        align-items: center;
    }
    .header_sticky a.logo {
        position: absolute;
        top: 2px;
        right: 220px;
    }
    .header_sticky .logo img {
        max-height: 50px;
        object-fit: contain;
    }
}
@media (max-width: 767px){
    .header_sticky {display: none !important;}
}
@media (max-width: 575px){
    .header_sticky .logo img {width: 3em;}
    .header_sticky button.btn_main {
        top: .8em;
    }
    .header_sticky a.logo {
        top: 8px;
        right: 155px;
    }
}


/* Всплывающая форма обратной связи */
.modal-dialog {
    width: 60%;
    max-width: 500px;
}
.modal-content {
    border-radius: 1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.modal-body {padding: 2em;}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    opacity: .7 !important;
    font-size: unset;
}
.close svg {
    width: 1.5em;
    height: 1.5em;
}
.close svg g {
    fill: rgb(var(--rgb-main-color));
}
.close:hover {opacity: 1 !important;}
@media (max-width: 767px){
    .modal-dialog {width: 75%;}
}
@media (max-width: 575px){
    .modal-dialog {
        width: 95%;
        margin: 2em auto;
    }
    .modal-body {padding: 1.5em;}
    .close svg {
        width: 20px;
        height: 20px;
    }
}



/* Шрифты */
@font-face {
    font-family: 'coco';
    src: url('../fonts/CocoBiker Regular-trial.ttf');
}