@font-face {
    font-family: 'Avenir';
    src: url('./fonts/AvenirNextCyr-Light.eot');
    src: url('./fonts/AvenirNextCyr-Light.eot?#iefix') format('embedded-opentype'),
    url('./fonts/AvenirNextCyr-Light.woff') format('woff'),
    url('./fonts/AvenirNextCyr-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir';
    src: url('./fonts/AvenirNextCyr-Regular.eot');
    src: url('./fonts/AvenirNextCyr-Regular.eot?#iefix') format('embedded-opentype'),
    url('./fonts/AvenirNextCyr-Regular.woff') format('woff'),
    url('./fonts/AvenirNextCyr-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir';
    src: url('./fonts/AvenirNextCyr-Medium.eot');
    src: url('./fonts/AvenirNextCyr-Medium.eot?#iefix') format('embedded-opentype'),
    url('./fonts/AvenirNextCyr-Medium.woff') format('woff'),
    url('./fonts/AvenirNextCyr-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir';
    src: url('./fonts/AvenirNextCyr-Demi.eot');
    src: url('./fonts/AvenirNextCyr-Demi.eot?#iefix') format('embedded-opentype'),
    url('./fonts/AvenirNextCyr-Demi.woff') format('woff'),
    url('./fonts/AvenirNextCyr-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
body {
    font-family: 'Avenir';
    background: #F9F9FB;
}
header {
    height: 95px;
    display: flex;
    padding: 0 48px 0 34px;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    z-index: 99999;
    position: fixed;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}
.top_links a {
    color: #000000;
    text-decoration: none;
    padding: 0 15px;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.tc_phone a {
    text-decoration: none;
    font-size: 24px;
    line-height: 136.19%;
    text-align: center;
    letter-spacing: -0.065em;
    color: #fe0000;
    font-weight: 600;
}
.tc_clock {
    font-size: 14px;
    line-height: 136.19%;
    text-align: center;
    letter-spacing: -0.065em;
}
.top_cart {
    position: absolute;
    right: 15px;
    top: 0;
    width: 70px;
    height: 57px;
    background: #fe0000;
    background-image: url(../images/cart.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.top_contacts {
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding-right: 90px;
}
.top_links {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.logo img {
    margin-top: -10px;
}
.top_links a:after {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fe0000;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
.top_links a:hover:after {
    left: 0;
}
.top_links a:hover {
    color: #fe0000;
}
header .container {
    position: relative;
}
.top_cart::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -55px;
    border: 35px solid transparent;
    border-top: 20px solid #fe0000;
}
.count_in_cart {
    position: absolute;
    width: 19px;
    height: 19px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    right: 10px;
    bottom: 0;
    padding-top: 0;
    background: #84C502;
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
}
.top_cat_items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0 15px;
}
.top_cat_item {
    text-align: center;
}
.tci_image {
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.tci_name {
    font-size: 20px;
    line-height: 136.19%;
    letter-spacing: -0.07em;
    margin-top: 10px;
}
.tci_image img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    -webkit-filter: grayscale(1);
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.top_cat_item:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: none;
    -webkit-filter: grayscale(0);
    cursor:pointer;
}
.top_cat_item:hover {
    cursor: pointer;
}
section.advantages .container {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
}
.ai_title {
    font-size: 20px;
    line-height: 135.19%;
    letter-spacing: -0.015em;
    color: #000000;
    height: 84px;
    padding: 15px 0;
    box-sizing: border-box;
}
.ai_descr {
    font-size: 12px;
    line-height: 135.19%;
    text-align: center;
    letter-spacing: 0.06em;
}
.ai_img {
    min-height: 67px;
}
section.advantages {
    padding: 40px 0;
    background: #fff;
}
section.top_rolls {
    background: #fff;
    /* padding-top: 40px; */
    padding-bottom: 60px;
}
section.categories {
    background: #fff;
    position: fixed;
    top: 22px;
    width: 100%;
    z-index: 9;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    box-shadow: 0px 4px 52px #e9e9e9;
}
.tbs_title {
    font-size: 45px;
    line-height: 52px;
    letter-spacing: 0.02em;
    color: #000000;
    font-weight: 600;
}
.tbs_descr {
    font-size: 16px;
    line-height: 135.19%;
    letter-spacing: -0.015em;
    color: #828081;
    margin-top: 15px;
}
.main_slide .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_title {
    font-size: 42px;
    line-height: 37px;
    letter-spacing: -0.015em;
    color: #000000;
    font-weight: 500;
}
.top_description {
    font-size: 14px;
    line-height: 135.19%;
    letter-spacing: 0.06em;
    color: #948A87;
    margin-top: 20px;
}
.top_block {
    width: 545px;
}
.top_header_block {
    padding-top: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_position_title {
    font-weight: 600;
    font-size: 32px;
    line-height: 135.19%;
    letter-spacing: -0.015em;
    color: #000000;
}
.show_more_btn a {
    display: block;
    padding: 10px 20px;
    border: 1px solid #fe0000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    line-height: 10px;
    letter-spacing: -0.015em;
    color: #fe0000;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.product_item {
    width: 246px;
    height: 390px;
    margin: 15px;
    background: #fff;
    box-shadow: 0px 4px 15px #e5e5e5;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
    border-radius: 4px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.topik_slider1 {
    display: flex;
    margin-top: 60px;
    margin: 60px -15px 0;
}
.product_info {
    padding: 0 12px 12px;
    box-sizing: border-box;
    overflow: hidden;
    flex-grow: 5;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
}
.product_name {
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    letter-spacing: -0.015em;
    color: #000000;
    margin: 10px 0;
    flex-grow: 1;
}
.product_descr {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #8C8C8C;
    height: 57px;
    overflow: hidden;
    flex-grow: 5;
}
span.gr {
    color: #fe0000;
}
.product_img {
    overflow: hidden;
    max-height: 165px;
    flex-grow: 5;
}
.product_item:hover {
    box-shadow: 0px 4px 30px #CBCDCF;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.add_cart_btn {
    text-align: center;
    background: #84C502;
    color: #fff;
    padding: 8px 0;
    box-sizing: border-box;
    border-radius: 25px;
    cursor: pointer;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
    position: relative;
}
.product_price {
    font-weight: 500;
    font-size: 20px;
    line-height: 132.69%;
    letter-spacing: -0.015em;
    color: #494D50;
}
.count_price {
    display: flex;
    margin: 10px 0;
    align-items: center;
    justify-content: space-between;
}
.product_img img {
    width: 100%;
}
.ctrl {
    width: 78px;
    background: #efefef;
    border-radius: 25px;
    text-align: center;
    position: relative;
}
.minus {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #d0d0d0;
    border-radius: 100%;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 22px;
    line-height: 18px;
    text-align: center;
    font-weight: 500;
    opacity: 0.6;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.plus {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #d0d0d0;
    border-radius: 100%;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    font-weight: 500;
    opacity: 0.6;
}
.minus:hover, .plus:hover {
    opacity: 1;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.add_cart_btn:hover {
    background: #92da02;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
section.top_sushi {
    padding-bottom: 60px;
}
section.top_street {
    background: #fff;
    padding-bottom: 60px;
}
section.zona_dostavki {
    background: #fff;
    padding-top: 40px;
    /* padding-bottom: 140px; */
}
section.top_napitok {
    padding-bottom: 60px;
}
.zd_title {
    font-size: 42px;
    line-height: 37px;
    letter-spacing: -0.015em;
    color: #000000;
    font-weight: 500;
    margin-top: 60px;
}
.zd_descr {
    font-size: 15px;
    line-height: 135.19%;
    letter-spacing: 0.06em;
    color: #948A87;
    margin-top: 20px;
}
.map {
    margin-top: 60px;
    height: 645px;
}
.istb_title {
    font-weight: 600;
    font-size: 40px;
    line-height: 135.19%;
    letter-spacing: 0.06em;
    color: #000000;
}
.istb_descr {
    font-weight: 300;
    font-size: 16px;
    line-height: 135.19%;
    letter-spacing: 0.06em;
    color: #000000;
    margin-top: 45px;
}
section.insta_sect {
    padding-top: 46px;
    padding-bottom: 117px;
    background: #E7F6F8;
}
.is_text_block:after {
    content: '';
    position: absolute;
    background-image: url(../images/iphone.png);
    background-repeat: no-repeat;
    bottom: -117px;
    right: 120px;
    width: 488px;
    height: 546px;
}
.is_text_block {
    position: relative;
}
.is_text_block:before {
    content: '';
    position: absolute;
    background-image: url(../images/favorite.png);
    background-repeat: no-repeat;
    top: -32px;
    right: -115px;
    width: 261px;
    height: 235px;
}
.show_more_btn a:hover {
    color: #fff;
    background: #EE6344;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
footer .container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
footer {
    background: #fff;
    padding-top: 145px;
    padding-bottom: 30px;
}
.fi_title {
    font-size: 16px;
    line-height: 136.19%;
    letter-spacing: 0.08em;
    color: #A8B4B9;
    font-weight: 600;
    margin-bottom: 19px;
}
.fi_stroke {
    padding: 7px 0;
}
.fi_stroke a {
    font-size: 15px;
    text-decoration: none;
    letter-spacing: -0.015em;
    color: #000000;
}
.foot_phone a {
    font-size: 18px;
    line-height: 136.19%;
    text-align: center;
    letter-spacing: 0.075em;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 7px 0;
}
.now {
    padding: 7px 0 7px 30px;
    position: relative;
}
.graf {
    padding: 7px 0;
}
.now:before {
    content: '';
    position: absolute;
    width: 12px;
    left: 3px;
    top: 14px;
    height: 12px;
    background: #fe0000;
    border-radius: 100%;
}
section.categories:hover {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    top: 95px;
}
section.main_slider {
    padding-top: 152px;
}
section.categories:hover {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    top: 95px;
}
section.main_slider {
    padding-top: 152px;
}
.main .slider .slider-bullets {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: auto
}
.main .slider .slider-bullets .swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,.24);
    background: 0 0;
    margin: 0 8px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    opacity: 1
}
.main .slider .slider-bullets .swiper-pagination-bullet:hover {
    border: 2px solid #484848
}
.main .slider .slider-bullets .swiper-pagination-bullet-active {
    background-color: #484848;
    border: 2px solid #484848
}
section.main_slider .swiper-slide .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_slider .slider .slider-bullets {
    position: absolute;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: auto
}
.main_slider .slider .slider-bullets .swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,.24);
    background: 0 0;
    margin: 0 8px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    opacity: 1
}
.main_slider .slider .slider-bullets .swiper-pagination-bullet:hover {
    border: 2px solid #484848
}
.main_slider .slider .slider-bullets .swiper-pagination-bullet-active {
    background-color: #484848;
    border: 2px solid #484848
}
.cat_slider .op {
    position: absolute;
    width: 6%;
    height: 100%;
    top: 0;
    z-index: 2;
}
.cat_slider .op-left {
    left: 0;
    background: -webkit-gradient(linear,left top,right top,from(white),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,#fff 0,rgba(255,255,255,0) 100%);
}
.cat_slider .op-right {
    right: 0;
    background: -webkit-gradient(linear,right top,left top,from(white),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(right,#fff 0,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(right,#fff 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to left,#fff 0,rgba(255,255,255,0) 100%);
}
.grey  .cat_slider .op-left {
    left: 0;
    background: -webkit-gradient(linear,left top,right top,from(#F9F9FB),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,#F9F9FB 0,rgba(255,255,255,0) 100%);
}
.grey .cat_slider .op-right {
    right: 0;
    background: -webkit-gradient(linear,right top,left top,from(#F9F9FB),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(right,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(right,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to left,#F9F9FB 0,rgba(255,255,255,0) 100%);
}
.cat_slider.swiper-container {
    margin-left: -5.5%;
    padding: 13px 0 13px 4.5%;
}
.mobile_menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    z-index: 9999;
}
.mobile_menu {
    z-index: 9999999;
    background-color: #fff;
    box-sizing: border-box;
    padding: 15px;
    position: relative;
    transform: none;
    top: 58px;
    left: 0;
    min-height: calc(100% - 58px);
}
.mobile_header {
    display: none;
}
.overflow {
    overflow: hidden;
}
.close_menu {
    display: none;
}
section.bread_crumbs {
    padding-top: 170px;
    background: #fff;
    padding-bottom: 15px;
}
section.articles {
    background: #fff;
    padding-top: 30px;
}
section.bread_crumbs ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}
section.bread_crumbs ul li {
    display: inline-block;
}
section.bread_crumbs ul li a {
    text-decoration: none;
    padding-right: 7px;
    margin-right: 5px;
    position: relative;
    color: #fe0000;
}
section.bread_crumbs ul li a:after {
    content: '/';
    color: #000;
    right: 0;
    transform: translateX(50%);
    position: absolute;
}
.categories_blocks {
    justify-content: space-between;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin-top: 45px;
    grid-gap: 32px;
    margin-bottom: 80px;
}
.category {
    width: 100%;
    height: 16vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(0,0,0,.08);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.category a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.cat_name {
    font-size: 24px;
    font-weight: 600;
}
.cat_img {
    min-height: 160px;
}
h2 {
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
    color: #000000;
}
.ar_text_block p {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #948A87;
    margin-bottom: 0;
    margin-top: 15px;
}
.category:hover {
    box-shadow: 0 4px 15px #e5e5e5;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.arti_description {
    font-size: 14px;
    line-height: 17px;
    color: #948A87;
    margin-top: 14px;
}
.avokado {
    background: #F9F9FB;
    padding-top: 80px;
    margin-top: 77px;
    padding-bottom: 120px;
}
.ab_title {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #000000;
}
.ab_blocks {
    display: flex;
    margin-top: 25px;
}
.avokado_block {
    padding-left: 250px;
    position: relative;
}
.avokado_block:before {
    content: '';
    position: absolute;
    width: 271px;
    height: 271px;
    left: 0;
    top: -75px;
    background-image: url(../images/avokado.svg);
}
.time_block {
    position: relative;
    padding-left: 70px;
    margin-right: 35px;
}
.time_block:before {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    left: 0;
    top: 0;
    background-image: url(../images/time.svg);
    background-size: 100%;
}
.money_block {
    position: relative;
    padding-left: 70px;
    margin-right: 35px;
}
.money_block:before {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    left: 0;
    top: 0;
    background-image: url(../images/money.svg);
    background-size: 100%;
}
.popytal {
    position: relative;
    padding-left: 70px;
}
.popytal:before {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    left: 0;
    top: 0;
    background-image: url(../images/popytal.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
section.zona_dostavki.delivery_map {
    padding-bottom: 0;
}
section.many_interesting {
    background: #fff;
    padding: 50px 0 85px;
}
.grey_block {
    background: #f9f9fb;
    padding: 53px 0 133px;
    margin-top: 50px;
}
.akcii_block_title {
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    color: #000000;
    text-align: center;
}
.akcii_flex {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 120px;
}
.af1:before {
    content: '';
    width: 118px;
    height: 132px;
    position: absolute;
    top: -63px;
    left: -121px;
    background: url(../images/af1.svg);
    background-repeat: no-repeat;
}
.af2:before {
    content: '';
    width: 158px;
    height: 152px;
    position: absolute;
    top: -71px;
    left: -87px;
    background: url(../images/af2.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.af1 {
    position: relative;
    /*margin-right: 80px;*/
}
.af2 {
    padding-left: 80px;
    position: relative;
}
section.many_interesting .zd_descr {
    font-size: 13px;
}
html::-webkit-scrollbar {
    width: 6px;
    height: 3px;
    border-radius:100px;
}
html::-webkit-scrollbar-track {
    background-color: #999;
}
html::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
    border-radius:3px;
}
html::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #fe0000;
    border-radius: 3px;
}
html::-webkit-scrollbar-corner {
    background-color: #999;
}
.cf1 {
    padding-left: 80px;
    position: relative;
    margin-right: 45px;
}
.cf1:before {
    content: '';
    width: 158px;
    height: 152px;
    position: absolute;
    top: -71px;
    left: -87px;
    background: url(../images/cMarker.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.cf2 {
    padding-left: 80px;
    position: relative;
}
.cf2:before {
    content: '';
    width: 158px;
    height: 152px;
    position: absolute;
    top: -71px;
    left: -87px;
    background: url(../images/cPhone.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.input {
    width: 100%;
    margin-bottom: 12px
}
.input span {
    font-size: 12px;
}
.input span.error {
    color: #ee6344;
    line-height: 1;
    display: block;
    margin-top: 4px
}
.input span span {
    text-decoration: none;
    color: #ee6344;
    margin-left: 4px
}
.input input {
    width: 100%;
    height: 40px;
    border: solid 1px rgba(0,0,0,.08);
    padding-left: 12px;
    background-color: #fff;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}
.input input:active,.input input:focus {
    border: solid 1px rgba(0,0,0,.16)
}
.input.input-half {
    width: -webkit-calc(50% - 8px);
    width: calc(50% - 8px);
    margin-right: 3px;
}
.input textarea {
    width: 100%;
    height: 160px;
    border: solid 1px rgba(0,0,0,.08);
    padding-left: 12px;
    padding-top: 8px;
    background-color: #fff;
    resize: none;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}
.input textarea:active,.input textarea:focus {
    border: solid 1px rgba(0,0,0,.16)
}
.order_contain {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-bottom: 60px;
}
.order_item {
    width: 486px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0px 4px 15px #e5e5e5;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
    border-radius: 4px;
    margin: 15px 30px 16px 0;
}
.close_oItem {
    position: absolute;
    right: 0;
    top: 0;
    background: #8C8C8C;
    background-image: url(../images/CloseOrder.svg);
    width: 42px;
    height: 42px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: translate(50%, -50%);
    border-radius: 100%;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.order_info {
    padding: 26px 0 32px 13px;
}
.order_item_name {
    font-weight: 600;
    font-size: 20px;
    line-height: 136.19%;
    letter-spacing: -0.025em;
    color: #000000;
}
.order_item .product_price {
    font-weight: 600;
    font-size: 30px;
    line-height: 136.19%;
    text-align: center;
    letter-spacing: -0.025em;
    color: #000000;
    margin-left: 20px;
}
.order_item .ctrl {
    background: #fff;
    width: 147px;
}
.order_item .minus.ajax {
    width: 42px;
    height: 42px;
    font-size: 33px;
    line-height: 34px;
    background: #84C502;
    opacity: 1;
    color: #fff;
    border: 0;
    z-index: 2;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.order_item .plus.ajax {
    width: 42px;
    height: 42px;
    font-size: 25px;
    line-height: 38px;
    background: #84C502;
    opacity: 1;
    color: #fff;
    border: 0;
}
.order_item .quantity {
    font-weight: 600;
    font-size: 25px;
    line-height: 136.19%;
    text-align: center;
    color: #000000;
    opacity: 0.5;
    padding: 4px 0;
}
.order_item .minus:hover, .order_item .plus:hover {
    background: #52AA00;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}

.order_img {
    width: 152px;
    height: 147px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order_img img {
    min-height: 100%;
}
section.form_order {
    padding: 20px 0 60px;
}
.fo_title {
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    color: #000000;
    margin-bottom: 25px;
}
label.input.textarea textarea {
    height: 40px;
}
.close_oItem:hover {
    background: #EE6344;
    background-image: url(../images/CloseOrder.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.part h3 {
    font-size: 12px;
    font-weight: 400;
}
label.input.radio {
    width: auto;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    /* identical to box height */
    color: #000000;
}
.radio {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-bottom: 0;
}
.radio .name {
    width: 100%;
    margin-bottom: 6px
}
.radio:hover .checkmark {
    border: 2px solid #ee6344
}
.radio .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.16);
    left: 0;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    margin-right: 16px;
    position: relative
}
.radio .checkmark:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #ee6344;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
}
.radio input {
    display: none
}
.radio input:checked~.checkmark {
    border: 2px solid #ee6344
}
.radio input:checked~.checkmark:after {
    opacity: 1
}
.radioFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.summ {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
}
.so_btn {
    display: block;
    padding: 15px 45px;
    border: 1px solid #EE6344;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 20px;
    line-height: 10px;
    letter-spacing: -0.015em;
    color: #EE6344;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.so_btn:hover {
    background: #EE6344;
    color: #fff;
    cursor: pointer;
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
.ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âf1 {
    padding-left: 80px;
    position: relative;
    margin-right: 45px;
}
.ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âf1:before {
    content: '';
    width: 158px;
    height: 152px;
    position: absolute;
    top: -71px;
    left: -87px;
    background: url(../images/cMarker.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âf2 {
    padding-left: 80px;
    position: relative;
}
.ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âf2:before {
    content: '';
    width: 158px;
    height: 152px;
    position: absolute;
    top: -71px;
    left: -87px;
    background: url(../images/cPhone.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.logo {
    width: 260px;
    height: 90px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    margin-top: -80px;
}
.mob_logo {
    width: 56px;
    height: 52px;
}

.mob_logo img {
    width: 100%;
}

.tci_image img {
    max-height: 70px;
}

.top_cat_item {
    position: relative;
}

.top_cat_item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.catSection {
    margin-top: 25px;
}

.subCategories ul li {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    list-style: none;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.subCategories ul {
    padding: 0;
    display: flex;
}

.subCategories ul li a {
    color: #000000;
    overflow: hidden;
}
.subCategories ul li a:after {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fe0000;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.subCategories ul li:hover a:after {
    left: 0;
}

.subCategories ul li:hover a {
    text-decoration: none;
    color: #fe0000;
}

li.activeSub:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fe0000;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.catProducts {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.subCategories ul li.activeSub {
    color:#fe0000;
}

section.top {
    padding-top: 40px;
    background: #fff;
    padding-bottom: 40px;
}

section.top_rolls:nth-child(2n) {
    background: #f9f9fb;
}

section.top_rolls:nth-child(2n) .cat_slider .op-left {
    left: 0;
    background: -webkit-gradient(linear,left top,right top,from(#F9F9FB),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,#F9F9FB 0,rgba(255,255,255,0) 100%);
}

section.top_rolls:nth-child(2n) .cat_slider .op-right {
    right: 0;
    background: -webkit-gradient(linear,right top,left top,from(#F9F9FB),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(right,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(right,#F9F9FB 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to left,#F9F9FB 0,rgba(255,255,255,0) 100%);
}

.top_cart a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.input input.boc_error {
    border: 1px solid red;
}

.total_cart .summ:nth-child(2) {
    display: none;
}

div#error-not-found {
    padding-top: 105px;
}

.close_b {
    position: absolute;
    right: 0;
    top: -35px;
    width: 30px;
    height: 30px;
    background-image: url(/images/Wclose.svg);
    background-size: 30px;
    background-position: center center;
    cursor: pointer;
    z-index: 3000;
}
.order_success {
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 630px;
}
.os_title {
    font-size: 42px;
    font-weight: 600;
}
.os_desc {
    font-size: 28px;
}
.overflow {
    overflow:hidden;
}
.overlay {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 950000;
}

.alert-success{
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    z-index: 9999999;
    position: fixed;
    top: 165px;
    padding: 5px 20px;
    border-radius: 5px;
    display: none;
    left: 50%;
    transform: translate(-50%);
    width: 243px;
}
.delivery_ico {
    position: relative;
}


@media only screen and (max-width: 1400px) {
    .category {
        height: 220px;
    }
}
@media only screen and (max-width: 1199px) {
    .is_text_block:after {
        width: 361px;
        height: 404px;
        background-size: 100%;
        right: 162px;
    }
    .is_text_block:before {
        width: 187px;
        height: 174px;
        right: 0;
        background-size: 100%;
    }
    .images_block_slide img {
        width: 450px;
    }
    .avokado_block {
        padding-left: 0;
    }
    .avokado_block:before {
        display: none;
    }
}
@media only screen and (max-width: 991px){
    .top_links {
        display: none;
    }
    .istb_title {
        display: none;
    }
    .is_text_block {
        height: 200px;
    }
    .istb_descr {
        display: none;
    }
    .is_text_block:after {
        right: 0;
        width: 460px;
        height: 516px;
    }
    .is_text_block:before {
        right: auto;
    }
    .map {
        height: 450px;
    }
    footer .container {
        flex-wrap: wrap;
    }
    .images_block_slide img {
        width: 347px;
    }
    .tbs_title {
        font-size: 34px;
        line-height: 35px;
    }
    .akcii_flex {
        flex-direction: column;
    }
    .af1 {
        margin-right: 0;
        padding-left: 100px;
        margin-bottom: 120px;
    }
    .af1:before {
        left: -12px;
    }
    .af2 {
        padding-left: 138px;
    }
    .af2:before {
        left: -14px;
    }
    .cf1:before {
        width: 70px;
        height: 84px;
        top: -37px;
        left: -3px;
    }
    .cf2:before {
        width: 70px;
        top: -19px;
        height: 80px;
        left: -3px;
    }
    .cf1 {
        margin: 0 0 60px;
    }
    .grey_block.contact_block {
        padding: 10px 0 60px;
    }
}
@media only screen and (max-width: 767px){
    header {
        display: none;
    }
    section.categories {
        top: auto;
        bottom: 0;
    }
    section.mobile_header {
        display: block;
        background: #fff;
        z-index: 99999;
        position: relative;
    }
    section.main_slider {
        padding-top: 20px;
    }
    .tci_image img {
        width: 32px;
        height: 32px;
    }
    .tci_image {
        min-height: 35px;
    }
    .tci_name {
        font-size: 14px;
    }
    .center_icons {
        width: 137px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .delivery_ico {
        width: 18px;
        height: 25px;
        background-image: url(../images/marker.svg);
        background-repeat: no-repeat;
        position: relative;
    }
    .delivery_ico a{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .mPhone_ico {
        width: 26px;
        height: 26px;
        background-image: url(../images/mPhone.svg);
        background-repeat: no-repeat;
        position: relative;
    }
    .mPhone_ico a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .mCart_ico {
        width: 32px;
        position: relative;
        height: 31px;
        background-image: url(../images/mCart.svg);
        background-repeat: no-repeat;
    }
    .mCount {
        position: absolute;
        width: 19px;
        height: 19px;
        font-size: 10px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        border-radius: 100%;
        right: -1px;
        bottom: -4px;
        padding-top: 0;
        background: #84C502;
        border: 2px solid #FFFFFF;
        box-sizing: border-box;
    }
    section.main_slider .swiper-slide .container {
        flex-direction: column;
    }
    section.advantages .container {
        flex-wrap: wrap;
    }
    .advantages_item {
        margin-bottom: 20px;
    }
    .is_text_block:after {
        width: 295px;
        height: 331px;
    }
    .is_text_block {
        height: 80px;
    }
    .map {
        height: auto;
    }
    .top_block {
        width: 100%;
    }
    .flex {
        height: 60px;
    }
    .content {
        padding: 0 16px;
        background: #fff;
    }
    a.link {
        height: 48px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid rgba(0,0,0,.08);
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        color: #000;
    }
    a.link.active {
        color: #ee6344;
    }
    .link-head {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        height: 48px;
    }
    .link.cat-group {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 48px;
        position: relative;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .cat-links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 12px 0;
        position: absolute;
        top: 48px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .1s ease;
        -o-transition: .1s ease;
        transition: .1s ease;
    }
    .cat-group.show .cat-links {
        opacity: 1;
        visibility: visible;
        -webkit-transition: .3s ease .2s;
        -o-transition: .3s ease .2s;
        transition: .3s ease .2s;
    }
    .link.cat-group.show {
        height: 309px;
    }
    .cat-links img {
        width: 32px;
        height: 32px;
    }
    .cat-group .cat-links a span {
        margin-left: 24px;
        color: #000000;
        font-size: 16px;
    }
    .cat-group .cat-links a {
        margin-bottom: 16px;
    }
    .tel span.small {
        display: block;
        text-align: center;
        margin-bottom: 12px;
        font-size: 14px;
        color: rgba(0,0,0,.4);
    }
    .tel {
        webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        max-width: 200px;
        margin: 0 auto;
        margin-top: 42px;
    }
    a.mPhone {
        line-height: 24px;
        margin-bottom: 8px;
        color: rgba(0,0,0,1);
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        text-align: center;
        font-size: 20px;
        display: block;
        font-weight: 600;
    }
    .category {
        width: 100%;
        height: 243px;
        margin-bottom: 16px;
    }
    .categories_blocks {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-gap: 16px;
    }
    .cat_img {
        max-height: 156px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cat_img img {
        max-width: 100%;
        max-height: 100%;
    }
    section.bread_crumbs {
        padding-top: 20px;
    }
    .ab_blocks {
        flex-direction: column;
        width: 250px;
        margin: 25px auto 0;
    }
    .time_block {
        margin: 0 0 35px;
    }
    .money_block {
        margin: 0 0 35px;
    }
    .af2 {
        padding-left: 100px;
        font-size: 12px;
    }
    .af2:before {
        width: 88px;
        height: 88px;
        top: -26px;
        left: 0;
    }
    .af1:before {
        width: 88px;
        height: 88px;
        background-size: contain;
        left: 18px;
        top: -29px;
    }
    .af1 {
        font-size: 12px;
    }
    .af1 {
        margin-bottom: 69px;
    }
    .akcii_flex {
        margin-top: 80px;
    }
    .radioFlex {
        flex-wrap: wrap;
    }
    .sendOrder {
        margin-top: 30px;
    }
    .summ {
        margin-top: 30px;
    }
    section.categories:hover {
        top: auto;
    }
    .catProducts {
        justify-content: center;
    }
    .product_item {
        margin: 15px 10px;
    }
    .top_cat_item {
        width: 66px;
    }
    .subCategories ul {
        min-width: 650px;
    }
    .subCategories ul li {
        padding: 15px 10px;
    }

    .subCategories {
        overflow: scroll;
    }

    .top_header_block {
        padding-top: 25px;
    }

    section.top_rolls {
        padding-bottom: 20px;
    }
    .alert-success {
        top: 10px;
    }
    .order_success {
        width: calc(100% - 30px);
    }
}
@media only screen and (max-width: 575px){
    .is_text_block:after {
        width: 200px;
        height: 226px;
    }
    .is_text_block:before {
        width: 113px;
        height: 109px;
    }
    footer {
        padding-top: 40px;
        padding-bottom: 115px;
    }
    .fi_stroke a {
        font-size: 13px;
    }
    .foot_phone a {
        font-size: 16px;
    }
    .fi_title {
        font-size: 12px;
    }
    .now {
        font-size: 12px;
    }
    .now:before {
        top: 9px;
    }
    .graf {
        font-size: 12px;
    }
    .foot_phone {
        padding: 7px 0;
    }
    .payments img {
        width: 100px;
    }
    section.zona_dostavki {
        padding-bottom: 0;
    }
    .zd_title {
        font-size: 32px;
        margin-top: 0px;
    }
    .zd_descr {
        font-size: 14px;
    }
    .top_position_title {
        font-size: 28px;
    }
    .order_item .product_price {
        font-size: 18px;
    }
    .order_item {
        margin: 10px 0px 10px 0;
    }
    .order_contain .ctrl {
        width: 120px;
    }
    .close_oItem {
        width: 30px;
        height: 30px;
    }
    .order_img {
        width: 100px;
        height: 115px;
    }
    .order_info {
        padding: 15px 0 15px 13px;
    }
    .os_title {
        font-size: 28px;
    }
    .order_success {
        padding: 20px;
    }
    .os_desc {
        font-size: 18px;
    }
    .slide img {
        width: 100%;
    }
}