body p {
    margin-bottom: 10px;
}

.animatable {
    /* initially hide animatable objects */
    visibility: hidden;
    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-150px);
    }

    60% {
        -webkit-transform: translateX(0px);
    }

    80% {
        -webkit-transform: translateX(0px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
    }

    60% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    80% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        -webkit-transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }

    50% {
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

.animated.animationDelay {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

.animated.animationDelayMed {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.animated.animationDelayLong {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    animation-name: fadeBgColor;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    animation-name: moveUp;
}

/* Underline From Center */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #fdc22e;
    height: 3px;
    -webkit-transition-property: left, right;
    -o-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}

/*-------------------- BUTTONS------------------- */
.btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.btn {
    letter-spacing: 0.3px;
    outline: none;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    font-weight: 700;
    font-size: 12px;
    color: #000;
    padding-left: 32px;
    padding-right: 32px;
    height: 50px;
}

.btn-black {
    color: #fff;
    background-color: #242428;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.btn-black:hover {
    background-color: #0c0c0d;
}

.btn-white {
    color: #000;
    background-color: #fff;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.btn-white:hover {
    opacity: .7;
}

.btn-green {
    color: #fff;
    background-color: #0e8c40;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.btn-green:hover {
    background-color: #095e2b;
}

.btn-yellow {
    background-color: #fdc22e;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.btn-yellow:hover {
    background-color: #f6b002;
}

.menu-link-border {
    position: relative;
}

.menu-link-border:after {
    content: "";
    background-color: #fdc22e;
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*------------- FILTER ------------ */
.filter-arrow {
    cursor: pointer;
    position: relative;
}

.filter-arrow:after {
    position: absolute;
    top: 1px;
    right: -15px;
    content: url(../img/arrow-down.svg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

@media screen and (max-width: 750px) {
    .filter-arrow:after {
        top: 10px;
    }
}

.filter-arrow-active {
    position: relative;
}

.filter-arrow-active:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.fillter-bg {
    background-color: #fff;
    -webkit-transition: background-color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}

.fillter-bg-active {
    background-color: #fdc22e;
}

.season-mark {
    position: relative;
}

.season-mark:before {
    padding: 12px 26px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: 21px;
    left: 18px;
    content: "ХИТ";
    background-color: #f11351;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

@media screen and (max-width: 1260px) {
    .season-mark:before {
        top: 15px;
    }
}

@media screen and (max-width: 1260px) {
    .season-mark:before {
        padding: 8px 13px;
    }
}

.snowflake {
    position: relative;
}

.snowflake:after {
    content: url(../img/snowflake.svg);
    width: 33px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.summer {
    position: relative;
}

.summer:after {
    content: url(../img/sun.svg);
    width: 33px;
    position: absolute;
    top: 24px;
    right: 24px;
}

/* ------CATALOG SORT------------ */
.catalog-sort {
    margin-bottom: 10px;
}

.catalog-sort .sort-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalog-sort .sort-wrap .catalog-sort-title {
    padding: 12px 40px 12px 0;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 560px) {
    .catalog-sort .sort-wrap .catalog-sort-title {
        width: 100%;
    }
}

.catalog-sort .sort-wrap .sort-item {
    margin-right: 10px;
    position: relative;
}

.catalog-sort .sort-wrap .sort-title {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -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;
    font-weight: 600;
    font-size: 12px;
    background-color: #fff;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: 12px 22px;
}

.catalog-sort .sort-wrap .sort-title img {
    margin-left: 10px;
}

.catalog-sort .sort-wrap .current-sort {
    background-color: #fdc22e;
}

.catalog-sort .sort-wrap .sort-list {
    padding-left: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #f7f7f8;
    z-index: 100;
    background-color: #fff;
    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;
    position: absolute;
    top: 40px;
    left: 0;
    overflow: hidden;
    height: 0;
    -webkit-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
}

.catalog-sort .sort-wrap .sort-list .sort-item {
    padding: 15px 0;

}


.catalog-sort .sort-wrap .sort-list .sort-item .sort-link {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    position: relative;
    transition: .3s;
}

.catalog-sort .sort-wrap .sort-list .sort-item:hover .sort-link {
    color: #0e8c40;
}

.catalog-sort .sort-wrap .sort-list-active {
    height: 100px;
    width: 130px;
}

.map {
    position: relative;
}

.map #map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ------CONTACTS ----------*/
.map {
    color: #000;
    min-height: 800px;
    position: relative;
}

@media screen and (max-width: 750px) {
    .map {
        min-height: auto;
    }
}

.map #map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 750px) {
    .map #map {
        height: 300px;
    }
}

.map .map-content-wrap {
    padding-top: 50px;
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap {
        padding-top: 30px;
    }
}

.map .map-content-wrap .breadcrumbs-wrap {
    position: relative;
    z-index: 100;
}

.map .map-content-wrap .title-wrap {
    position: relative;
    z-index: 100;
}

.map .map-content-wrap .contacts-wrap {
    margin-top: -100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

@media screen and (max-width: 960px) {
    .map .map-content-wrap .contacts-wrap {
        margin-top: 50px;
    }
}

.map .map-content-wrap .contacts-wrap .contacts-wrap-block {
    position: relative;
    background-color: #fff;
    padding: 34px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
}

@media screen and (max-width: 1564px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        padding: 10px;
    }
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block .contacts-wrap-block-part {
        width: 45%;
    }
}

@media screen and (max-width: 560px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block .contacts-wrap-block-part {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block .second-contacts {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
}

@media screen and (max-width: 560px) {
    .map .map-content-wrap .contacts-wrap .contacts-wrap-block .second-contacts {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

.map .map-content-wrap .contacts-wrap .contacts-wrap-block .contacts-main-title {
    font-family: 'AlumniSans';
    font-size: 24px;
    margin-bottom: 14px;
}

.map .map-content-wrap .contacts-wrap .contacts-wrap-block .contacts-title-text {
    margin-bottom: 5px;
    font-weight: 700;
    opacity: .5;
    font-size: 12px;
    text-transform: uppercase;
}

.map .map-content-wrap .contacts-wrap .contacts-wrap-block .contacts-text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
}

.map .map-content-wrap .contacts-wrap .contacts-wrap-block .contacts-text a {
    text-decoration: none;
    color: #000;
}

/* --------- CONTENT --------------- */
.content-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.content-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(66.66667% - 30px);
    width: calc(66.66667% - 30px);
    margin-left: -webkit-calc(16.66667% + 15px);
    margin-left: calc(16.66667% + 15px);
}

@media screen and (max-width: 1564px) {
    .content-block {
        width: -webkit-calc(66.66667% - 30px);
        width: calc(66.66667% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .content-block {
        width: -webkit-calc(66.66667% - 30px);
        width: calc(66.66667% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .content-block {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .content-block {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .content-block {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .content-block {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 1564px) {
    .content-block {
        margin-left: -webkit-calc(16.66667% + 15px);
        margin-left: calc(16.66667% + 15px);
    }
}

@media screen and (max-width: 1400px) {
    .content-block {
        margin-left: -webkit-calc(16.66667% + 15px);
        margin-left: calc(16.66667% + 15px);
    }
}

@media screen and (max-width: 1260px) {
    .content-block {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 960px) {
    .content-block {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 750px) {
    .content-block {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 560px) {
    .content-block {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

.content-block .content-text-wrap {
    margin-top: 60px;
    margin-bottom: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
    margin-left: -webkit-calc(8.33333% + 15px);
    margin-left: calc(8.33333% + 15px);
}

@media screen and (max-width: 1564px) {
    .content-block .content-text-wrap {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .content-block .content-text-wrap {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .content-block .content-text-wrap {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .content-block .content-text-wrap {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .content-block .content-text-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .content-block .content-text-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 1564px) {
    .content-block .content-text-wrap {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 1400px) {
    .content-block .content-text-wrap {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 1260px) {
    .content-block .content-text-wrap {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 960px) {
    .content-block .content-text-wrap {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 750px) {
    .content-block .content-text-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 560px) {
    .content-block .content-text-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

.content-block .content-text-wrap .content-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.wrapper {
    position: relative;
    width: 20px;
    margin: 0 auto;
}

.bar {
    width: 10px;
    height: 20px;
    background: #eee;
    -webkit-border-radius: 25px;
    border-radius: 25px;
}

.progress__bar {
    position: absolute;
    top: 0;
    height: 100%;
    text-align: center;
    background: #0e8c40;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    /*   animation: process 0.8s linear forwards; */
}

@-webkit-keyframes process {
    0% {
        width: 0;
    }

    25% {
        width: 25%;
    }

    100% {
        width: 100%;
    }
}

@keyframes process {
    0% {
        width: 0;
    }

    25% {
        width: 25%;
    }

    100% {
        width: 100%;
    }
}

/*---------- MOBILE MENU ----------------------*/
.mobile-menu-wrap {
    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;
    background-color: #fff;
    z-index: 900;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    -webkit-transition: right .3s;
    -o-transition: right .3s;
    transition: right .3s;
}

@media screen and (max-width: 750px) {
    .mobile-menu-wrap {
        overflow-y: scroll;
    }
}

@media screen and (max-width: 560px) {
    .mobile-menu-wrap {
        overflow-y: auto;
    }
}

@media screen and (max-width: 750px) {
    .mobile-menu-wrap {
        height: 100%;
    }
}

@media screen and (max-width: 750px) {
    .mobile-menu-wrap {
        width: 100%;
    }
}

.mobile-menu-wrap .close {
    position: absolute;
    top: 14px;
    right: 16px;
}

.mobile-menu-wrap .mobile-menu-list {
    padding-left: 33px;
    padding-top: 38px;
}

@media screen and (max-width: 560px) {
    .mobile-menu-wrap .mobile-menu-list {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.mobile-menu-wrap .mobile-menu-list .mobile-menu-item {
    margin-bottom: 20px;
}

.mobile-menu-wrap .mobile-menu-list .mobile-menu-item .mobile-menu-item-link {
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    font-size: 12px;
}

.mobile-menu-wrap .mobile-menu-list .mobile-menu-item .mobile-sub-menu-list {
    margin-top: 20px;
    padding-left: 16px;
}

.mobile-menu-wrap .mobile-menu-list .mobile-menu-item .mobile-sub-menu-list .mobile-sub-menu-item {
    margin-bottom: 19px;
}

.mobile-menu-wrap .mobile-menu-list .mobile-menu-item .mobile-sub-menu-list .mobile-sub-menu-item .mobile-sub-menu-link {
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    color: #111111;
}

.mobile-menu-wrap .cart-wrap {
    min-height: 44px;
    padding-left: 33px;
    margin-bottom: 24px;
    background-color: #f2f4f7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-menu-wrap .cart-wrap .cart-button {
    color: #111;
    font-size: 11px;
    margin-right: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-menu-wrap .cart-wrap .cart-items {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    background-color: #fdc22e;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    width: 44px;
    height: 44px;
}

.mobile-menu-wrap .btn-wrap {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 100%;
}

.mobile-menu-wrap .btn-wrap .btn {
    width: 100%;
}

.mobile-menu-wrap-active {
    right: 0;
}

/* --------------MOBILE-FILTERS ----------------- */
.mobile-filters-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    width: 320px;
}

.mobile-filters-wrap .mobile-filters-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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
}

.mobile-filters-wrap .mobile-filters-head .mobile-filters-title {
    color: #0e8c40;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

/* -------------- RADIUS BUTTONS ------------------- */
.radius-link-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    width: 20%;
    margin-bottom: 10px;
    flex-wrap: wrap;
    width: 100%;
}

@media screen and (max-width: 560px) {
    .radius-link-wrap {
        width: 30%;
    }
}

.radius-link-wrap .radius-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    /* height: 32px;
    width: 32px;*/
    font-weight: 600;
    font-size: 10px;
    color: #000;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

/*----------------- TOP CATALOG --------------------*/
.top-catalog-wrap {
    z-index: 10;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: -300%;
    left: 0;
    padding-top: 48px;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    padding-bottom: 80px;
}

@media screen and (max-width: 750px) {
    .top-catalog-wrap {
        display: none;
    }
}

.top-catalog-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

@media screen and (max-width: 560px) {
    .top-catalog-list {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.top-catalog-list .top-catalog-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: calc(16.66667% - 30px);
}

.top-catalog-list .top-catalog-item:hover .top-catalog-title-wrap {
    color: #0e8c40;
}

.top-catalog-list .top-catalog-item .top-catalog-img-wrap {
    overflow: hidden;
}

.top-catalog-list .top-catalog-item .top-catalog-img-wrap img {
    transition: .3s;
}

.top-catalog-list .top-catalog-item:hover .top-catalog-img-wrap img {
    transform: scale(1.1);
}

@media screen and (max-width: 1564px) {
    .top-catalog-list .top-catalog-item {
        width: -webkit-calc(20% - 30px);
        width: calc(20% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .top-catalog-list .top-catalog-item {
        width: -webkit-calc(19.16667% - 30px);
        width: calc(19.16667% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .top-catalog-item {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .top-catalog-list .top-catalog-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .top-catalog-list .top-catalog-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .top-catalog-item {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

.top-catalog-list .top-catalog-item .top-catalog-img-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
}

.top-catalog-list .top-catalog-item .top-catalog-title-wrap {
    margin-bottom: 32px;
    text-align: center;
}

.top-catalog-list .top-catalog-item .top-catalog-title-wrap .top-catalog-title {
    font-family: 'AlumniSans';
    font-size: 20px;
    transition: .3s;
}

..top-catalog-list .top-catalog-item .top-catalog-title-wrap .top-catalog-title:hover {
    color: #0e8c40;
}

.top-catalog-list .top-catalog-item .top-catalog-radius-wrap {
    max-width: 200px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: distribute;
    justify-content: flex-start;
}

.top-catalog-list .top-catalog-item .top-catalog-radius-wrap .radius-link {
    background-color: #f2f4f7;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.top-catalog-list .top-catalog-item .top-catalog-radius-wrap .radius-link:hover {
    background-color: #d2d9e4;
}

.top-catalog-list .by-radius-block-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    /*margin-left: 15px;*/
    margin-right: 15px;
    word-wrap: break-word;
    width: calc(16.66667% - 30px);
    /*margin-left: calc(8.33333% + 15px);*/
    margin-top: 24px;
    background-color: #f2f4f7;
    padding: 22px 0;
    max-height: 150px;
}

@media screen and (max-width: 1564px) {
    .top-catalog-list .by-radius-block-wrap {
        width: -webkit-calc(16.66667% - 30px);
        width: calc(16.66667% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .top-catalog-list .by-radius-block-wrap {
        width: -webkit-calc(16.66667% - 30px);
        width: calc(16.66667% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .by-radius-block-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .top-catalog-list .by-radius-block-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .top-catalog-list .by-radius-block-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .by-radius-block-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 1564px) {
    .top-catalog-list .by-radius-block-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 1400px) {
    .top-catalog-list .by-radius-block-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .by-radius-block-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 960px) {
    .top-catalog-list .by-radius-block-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 750px) {
    .top-catalog-list .by-radius-block-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .by-radius-block-wrap {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .by-radius-block-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .by-radius-block-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap {
    width: 100%;
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap {
        width: 130px;
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap {
        width: 100%;
    }
}

.top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap .by-radius-title {
    margin-left: 35px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap .by-radius-title {
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap .by-radius-title {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 1400px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block-title-wrap .by-radius-title {
        margin-left: 17px;
    }
}

.top-catalog-list .by-radius-block-wrap .by-radius-block {
    width: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: distribute;
    justify-content: flex-start;
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block {
        width: 80%;
    }
}

@media screen and (max-width: 560px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block {
        width: 100%;
    }
}

@media screen and (max-width: 1260px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block .radius-link-wrap {
        width: 10%;
    }
}

@media screen and (max-width: 750px) {
    .top-catalog-list .by-radius-block-wrap .by-radius-block .radius-link-wrap {
        width: 20%;
    }
}

.top-catalog-list .by-radius-block-wrap .by-radius-block .radius-link-wrap .radius-link {
    background-color: #fff;
    padding: 8px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.top-catalog-list .by-radius-block-wrap .by-radius-block .radius-link-wrap .radius-link:hover {
    background-color: #e6e6e6;
}

/*----------------- TOP BRANDS --------------------*/
.top-brands {
    width: 100%;
    background-color: #fff;
    padding-bottom: 30px;
    position: absolute;
    top: -100%;
    left: 0;
    padding-top: 30px;
    margin-bottom: 100px;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 90;
}

@media screen and (max-width: 750px) {
    .top-brands {
        top: -175%;
    }
}

.brands-block {
    overflow: hidden;
}

.brands-block .brands-wrap {
    margin: -3px;
}

.brands-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.brands-list .brands-item {
    width: 16.66%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 38px 20px;
}

@media screen and (max-width: 1260px) {
    .brands-list .brands-item {
        width: 20%;
    }
}

@media screen and (max-width: 960px) {
    .brands-list .brands-item {
        width: 25%;
    }
}

@media screen and (max-width: 750px) {
    .brands-list .brands-item {
        width: 33.333%;
    }
}

@media screen and (max-width: 750px) {
    .brands-list .brands-item {
        padding: 20px;
    }
}

@media screen and (max-width: 560px) {
    .brands-list .brands-item {
        width: 50%;
    }
}

.brands-list .brands-item .brands-item-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    width: 100%;
    height: 100%;
}

.modal-active {
    top: 35px;
}

/* --------- MODAL BACK CALL ----------- */
.position-name {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-back-call {
    position: relative;
    background: #fff;
    padding: 50px 40px 40px;
    width: auto;
    max-width: 600px;
    margin: 20px auto;
}

.modal-back-call .modal-back-call-title {
    font-family: 'AlumniSans';
    font-size: 36px;
    margin-bottom: 30px;
}

.modal-back-call .form-wrap .form-control {
    padding: 5px 0 0;
    background-color: #f7f7f8;
}

.modal-back-call .form-wrap .form-control input {
    padding-left: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    box-shadow: none;
}

input {
    box-shadow: none;
}

.modal-back-call .form-wrap .form-control textarea {
    padding-top: 20px;
    height: 100px;
    padding-left: 34px;
    font-weight: 600;
    font-size: 12px;
    /*      text-transform: uppercase;*/
    border: none;
    width: 100%;
}

.modal-back-call .form-wrap .checkbox {
    margin-bottom: 30px;
}

.modal-back-call .form-wrap .checkbox input[type="checkbox"]+label::before {
    background-color: #f7f7f8;
}

/* --------- MODAL BACK CALL ----------- */
/* ----------------REVIEWS FORM-------------- */
.form {
    z-index: 20;
    /* -------------Стилизация CHEKBOX --------------------*/
}

.form .form-control {
    position: relative;
    margin-bottom: 20px;
}

.form .form-control .form-label {
    padding-left: 34px;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.form :focus {
    outline: none;
}

.form .effect-16 {
    z-index: 10;
    position: relative;
    color: #000;
    border: 0;
    padding: 4px 0;
    background-color: transparent;
}

.form .effect-16~.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0e8c40;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.form .effect-16:focus~.focus-border,
.form .has-content.effect-16~.focus-border {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.form .effect-16~label {
    z-index: 9;
    position: absolute;
    left: 0;
    width: 100%;
    top: 18px;
    color: #aaa;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.form .effect-16:focus~label,
.form .has-content.effect-16~label {
    top: 3px;
    font-size: 10px;
    color: #0e8c40;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.form .checkbox {
    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;
}

.form .checkbox .checkbox__text {
    line-height: 1.6;
    font-weight: 500;
    color: #242428;
    font-size: 12px;
}

.form .checkbox .checkbox__text a {
    color: #0e8c40;
    border-bottom: 1px solid #0e8c40;
}

.form .checkbox input[type="checkbox"] {
    display: none;
}

.form .checkbox input[type="checkbox"]+label {
    display: inline;
    position: relative;
}

.form .checkbox input[type="checkbox"]+label::before {
    display: inline-block;
    width: 18px;
    height: 18px;
    content: ' ';
    background-color: #fff;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    vertical-align: middle;
    margin-right: 15px;
    cursor: pointer;
    z-index: 10;
}

.form .checkbox input[type="checkbox"]:checked+label::after {
    width: 4px;
    height: 7px;
    border: 1px solid #000;
    border-left: none;
    border-top: none;
    content: ' ';
    position: absolute;
    left: 8px;
    bottom: 5px;
    -webkit-transform: rotatez(45deg);
    -ms-transform: rotate(45deg);
    transform: rotatez(45deg);
    cursor: pointer;
    z-index: 20;
}

.breadcrumbs {
    padding-top: 50px;
    margin-bottom: 25px;
}

.breadcrumbs-wrap {
    margin-bottom: 10px;
}

.breadcrumbs-wrap .breadcrumbs-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.breadcrumbs-wrap .breadcrumbs-list .breadcrumbs-item {
    font-family: 'Montserrat', sans-serif;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #111;
    position: relative;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.breadcrumbs-wrap .breadcrumbs-list .breadcrumbs-item:after {
    content: '/';
    position: absolute;
    top: 0;
    right: -12px;
}

.breadcrumbs-wrap .breadcrumbs-list .breadcrumbs-item:last-child:after {
    content: none;
}

.breadcrumbs-wrap .breadcrumbs-list .breadcrumbs-item:hover {
    color: #0e8c40;
}

.title-wrap {
    text-align: center;
}

.title-wrap .page-title {
    font-family: 'AlumniSans';
    font-size: 40px;
    color: #0e8c40;
}

.pagination {
    margin-top: 50px;
    margin-bottom: 50px;
}

.pagination .pagination-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 560px) {
    .pagination .pagination-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.pagination .pagination-wrap .pagination-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 560px) {
    .pagination .pagination-wrap .pagination-list {
        margin-bottom: 30px;
    }
}

.pagination .pagination-wrap .pagination-list .pagination-item {
    margin-right: 1px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    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;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.pagination .pagination-wrap .pagination-list .pagination-item:hover {
    background-color: #0e8c40;
    color: #fff;
}

.pagination .pagination-wrap .pagination-list .pagination-item-active {
    background-color: #0e8c40;
    color: #fff;
}

.pagination .pagination-wrap .btn-wrap .btn {
    height: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

@media screen and (max-width: 750px) {
    .pagination .pagination-wrap .btn-wrap .btn {
        padding: 0 20px;
    }
}

@media screen and (max-width: 750px) {
    .pagination .pagination-wrap .btn-wrap .btn {
        min-height: 50px;
    }
}

@media screen and (max-width: 560px) {
    .pagination .pagination-wrap .btn-wrap .btn {
        width: 100%;
    }
}

.top-options {
    margin-bottom: 13px;
}

.top-options .top-option {
    font-size: 16px;
    font-weight: 600;
    margin-right: 60px;
}

.top-options .top-articul {
    color: #aaaaaa;
    font-size: 16px;
    font-weight: 600;
}

.for-card-page .breadcrumbs-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.for-card-page .title-wrap {
    text-align: left;
}

.block-title-wrap {
    margin-bottom: 28px;
    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;
}

.block-title-wrap .block-title {
    font-family: 'AlumniSans';
    font-size: 36px;
}

@media screen and (max-width: 750px) {
    .block-title-wrap .block-title {
        font-size: 24px;
    }
}

.card {
    margin-bottom: 70px;
}

.card .card-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.card .card-left {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(41.66667% - 30px);
    width: calc(41.66667% - 30px);
}

@media screen and (max-width: 1564px) {
    .card .card-left {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .card .card-left {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .card .card-left {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .card .card-left {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .card .card-left {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .card .card-left {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.card .card-left .top-card-slider {
    background-color: #fff;
}

.card .card-left .top-card-slider .top-card-slider-list {
    /*  display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    margin-left: -15px;
    margin-right: -15px;
}

.card .card-left .top-card-slider .top-card-slider-list .top-card-slide {
    background-color: #fff;
    outline: none;
    /* display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;*/
    overflow: hidden;
    padding: 50px 0;
}

.card .card-left .top-card-slider .top-card-slider-list .top-card-slide .top-card-img {
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 495px;
}

.card .card-left .bottom-card-slider {
    margin-top: 10px;
}

.card .card-left .bottom-card-slider .slick-list {
    padding: 0 !important;
}

.card .card-left .bottom-card-slider .bottom-card-slider-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
    opacity: .5;
    cursor: pointer;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
}

.top-slider .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 40px;
    height: 40px;
}

.top-slider .slick-prev:before,
.top-slider .slick-next:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

.top-slider .slick-prev {
    left: 30px;
}

.top-slider .slick-prev:before {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 15px;
    right: 13px;
}

.top-slider .slick-next {
    right: 30px;
}

.top-slider .slick-next:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 15px;
    right: 16px;
}

@media screen and (max-width: 1564px) {
    .card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .card .card-left .bottom-card-slider .bottom-card-slider-list .bottom-card-slide {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

.card .card-left .bottom-card-slider .bottom-card-slider-list .slick-current {
    opacity: 1;
}

.card .card-right {
    padding-top: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
    margin-left: -webkit-calc(8.33333% + 15px);
    margin-left: calc(8.33333% + 15px);
}

@media screen and (max-width: 1564px) {
    .card .card-right {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .card .card-right {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .card .card-right {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .card .card-right {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .card .card-right {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .card .card-right {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 1564px) {
    .card .card-right {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 1400px) {
    .card .card-right {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 1260px) {
    .card .card-right {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 960px) {
    .card .card-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 750px) {
    .card .card-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 560px) {
    .card .card-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

.card .card-right .add-to-cart-right .product-counter {
    padding: 15px 0 37px;
}

.card .card-right .add-to-cart-right .product-counter .quantity__button {
    outline: none;
    border: none;
    background-color: #fff;
    width: 57px;
    height: 58px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.card .card-right .add-to-cart-right .product-counter .quantity__value {
    margin-right: -2px;
    margin-left: -2px;
    outline: none;
    background-color: #fff;
    border: none;
    width: 57px;
    height: 57px;
    text-align: center;
    padding: 0 37px;
    font-weight: 700;
    font-size: 14px;
}

.card .card-right .add-to-cart-right .button-one-click {
    letter-spacing: 1px;
    padding: 18px 35px;
    font-family: 'Raleway-ExtraBold', sans-serif;
    background-color: #111111;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

.card .card-right .final-price-wrap {
    margin-bottom: 32px;
}

.card .card-right .final-price-wrap .price-for-one {
    position: relative;
    font-size: 16px;
    opacity: .5;
    font-weight: 600;
    margin-bottom: 10px;
}

.card .card-right .final-price-wrap .price-for-one:after {
    content: '=';
    font-size: 16px;
    padding-left: 5px;
    opacity: .5;
    font-weight: 600;
}

.card .card-right .final-price-wrap .final-price {
    font-size: 32px;
    font-weight: 700;
}

.card .card-right .card-buttons-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
    .card .card-right .card-buttons-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 750px) {
    .card .card-right .card-buttons-wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media screen and (max-width: 560px) {
    .card .card-right .card-buttons-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.card .card-right .btn-wrap:first-child {
    margin-right: 40px;
}

@media screen and (max-width: 960px) {
    .card .card-right .btn-wrap:first-child {
        margin-bottom: 20px;
    }
}

.card .card-right .parameters-wrap {
    margin-top: 32px;
    margin-bottom: 44px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 32px;
}

.card .card-right .parameters-wrap .parameters-list .parameters-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.card .card-right .parameters-wrap .parameters-list .parameters-item .parameters-left {
    width: 206px;
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 560px) {
    .card .card-right .parameters-wrap .parameters-list .parameters-item .parameters-left {
        width: 160px;
    }
}

.card .card-right .parameters-wrap .parameters-list .parameters-item .parameters-right {
    font-size: 14px;
    font-weight: 600;
}

.card .card-right .description-wrap .description-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 9px;
}

.card .card-right .description-wrap .description-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
}

/* PAGES */
body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #f7f7f8;
    color: #000;
    outline: none;
}

body body,
body div,
body dl,
body dt,
body dd,
body ul,
body li,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body pre,
body code,
body form,
body fieldset,
body input,
body textarea,
body blockquote,
body th,
body td {
    margin: 0;
    padding: 0;
}

body table {
    border-collapse: collapse;
    border-spacing: 0;
}

body fieldset,
body img,
body abbr {
    border: 0;
}

body address,
body caption,
body cite,
body code,
body dfn,
body em,
body strong,
body th,
body var {
    font-style: normal;
    font-weight: normal;
}

body ul {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

body ol {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

body ul li {
    display: list-item;
    text-align: -webkit-match-parent;
}

body caption,
body th {
    text-align: left;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-size: 100%;
    font-weight: normal;
}

body sup {
    vertical-align: text-top;
}

body sub {
    vertical-align: text-bottom;
}

body input,
body textarea,
body select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

body legend {
    color: #000;
}

body article,
body aside,
body details,
body figcaption,
body figure,
body footer,
body header,
body hgroup,
body menu,
body nav,
body section,
body main {
    display: block;
}

body img {
    max-width: 100%;
    height: auto;
}

div {
    outline: none;
}

img {
    outline: none;
}

a {
    text-decoration: none;
    outline: none;
}

.container {
    max-width: 1564px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

div.main {
    overflow: hidden;
}

@media screen and (max-width: 1564px) {
    .container {
        padding-left: undefined;
        padding-right: undefined;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        padding-left: undefined;
        padding-right: undefined;
    }
}

@media screen and (max-width: 1260px) {
    .container {
        padding-left: undefined;
        padding-right: undefined;
    }
}

@media screen and (max-width: 960px) {
    .container {
        padding-left: undefined;
        padding-right: undefined;
    }
}

@media screen and (max-width: 750px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 560px) {
    .container {
        padding-left: undefined;
        padding-right: undefined;
    }
}

@media screen and (max-width: 750px) {
    .main {
        overflow: hidden;
    }
}

/* -------------TOP MENU -------------------------*/
header {
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    /* ---------------HEADER TOP------------------------- */
    /* -----------------HEADER BOTTOM----------------------- */
}

@media screen and (max-width: 750px) {
    header {
        /*    margin-bottom: 24px; */
    }
}

header .header-top {
    position: relative;
    z-index: 102;
    background-color: #242428;
}

header .header-top .header-top-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 44px;
}

header .header-top .header-top-wrap .header-top-menu {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-menu {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-menu {
        width: -webkit-calc(58.33333% - 30px);
        width: calc(58.33333% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    header .header-top .header-top-wrap .header-top-menu {
        width: -webkit-calc(58.33333% - 30px);
        width: calc(58.33333% - 30px);
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-menu {
        width: -webkit-calc(58.33333% - 30px);
        width: calc(58.33333% - 30px);
    }
}

@media screen and (max-width: 750px) {
    header .header-top .header-top-wrap .header-top-menu {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    header .header-top .header-top-wrap .header-top-menu {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-menu {
        display: none;
    }
}

header .header-top .header-top-wrap .header-top-menu .header-top-menu-link {
    font-size: 11px;
    letter-spacing: 0.2px;
    position: relative;
    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;
    height: 100%;
    margin-right: 55px;
    color: #fff;
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-menu .header-top-menu-link {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-menu .header-top-menu-link {
        margin-right: 30px;
    }
}

@media screen and (max-width: 1260px) {
    header .header-top .header-top-wrap .header-top-menu .header-top-menu-link {
        margin-right: 20px;
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-menu .header-top-menu-link {
        margin-right: 10px;
    }
}

header .header-top .header-top-wrap .header-top-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
    margin-left: -webkit-calc(16.66667% + 15px);
    margin-left: calc(16.66667% + 15px);
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-right {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-right {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    header .header-top .header-top-wrap .header-top-right {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-right {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    header .header-top .header-top-wrap .header-top-right {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    header .header-top .header-top-wrap .header-top-right {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-right {
        margin-left: -webkit-calc(8.33333% + 15px);
        margin-left: calc(8.33333% + 15px);
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 1260px) {
    header .header-top .header-top-wrap .header-top-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 750px) {
    header .header-top .header-top-wrap .header-top-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

@media screen and (max-width: 560px) {
    header .header-top .header-top-wrap .header-top-right {
        margin-left: -webkit-calc(0% + 15px);
        margin-left: calc(0% + 15px);
    }
}

header .header-top .header-top-wrap .header-top-right .header-top-phones {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    position: relative;
    margin-right: 56px;
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones {
        margin-right: 30px;
    }
}

@media screen and (max-width: 560px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones {
        margin-right: 0px;
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones {
        width: 100%;
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

header .header-top .header-top-wrap .header-top-right .header-top-phones .header-top-phone {
    color: #fff;
    font-size: 12px;
}

header .header-top .header-top-wrap .header-top-right .header-top-phones .header-top-phone:first-child {
    margin-right: 60px;
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones .header-top-phone:first-child {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones .header-top-phone:first-child {
        margin-right: 30px;
    }
}

@media screen and (max-width: 1260px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones .header-top-phone:first-child {
        margin-right: 20px;
    }
}

@media screen and (max-width: 960px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones .header-top-phone:first-child {
        margin-right: 10px;
    }
}

header .header-top .header-top-wrap .header-top-right .header-top-phones:after {
    content: "";
    position: absolute;
    top: 12px;
    right: -30px;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1564px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones:after {
        right: -20px;
    }
}

@media screen and (max-width: 1400px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones:after {
        right: -15px;
    }
}

@media screen and (max-width: 1260px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones:after {
        right: -10px;
    }
}

@media screen and (max-width: 560px) {
    header .header-top .header-top-wrap .header-top-right .header-top-phones:after {
        width: 0;
    }
}

header .header-top .header-top-wrap .header-top-right .cart-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
}

@media screen and (max-width: 560px) {
    header .header-top .header-top-wrap .header-top-right .cart-wrap {
        display: none;
    }
}

header .header-top .header-top-wrap .header-top-right .cart-wrap .cart-button {
    color: #fff;
    font-size: 11px;
    margin-right: 30px;
}

header .header-top .header-top-wrap .header-top-right .cart-wrap .cart-items {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    background-color: #fdc22e;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
    width: 44px;
    height: 44px;
}

header .header-bottom {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .header-bottom .header-bottom-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .header-bottom .header-bottom-wrap .logo-wrap {
    margin-left: 16px;
}

@media screen and (max-width: 750px) {
    header .header-bottom .header-bottom-wrap .logo-wrap {
        margin-left: 11px;
    }
}

@media screen and (max-width: 750px) {
    header .header-bottom .header-bottom-wrap .logo-wrap {
        width: 50%;
    }
}

@media screen and (max-width: 1260px) {
    header .header-bottom .header-bottom-wrap .header-bottom-menu {
        display: none;
    }
}

header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-item {
    margin-right: 24px;
}

header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-link {
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    color: #111111;
    font-size: 12px;
}

@media screen and (max-width: 1564px) {
    header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-item {
        margin-right: 18px;
    }
}

@media screen and (max-width: 1460px) {
    header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-item {
        margin-right: 12px;
    }
}

@media screen and (max-width: 1400px) {
    header .header-bottom .header-bottom-wrap .logo-wrap {
        width: 130px;
    }

    header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-item {
        margin-right: 8px;
    }

    header .header-bottom .header-bottom-wrap .btn-wrap .btn {
        padding-left: 12px;
        padding-right: 12px;
    }
}

header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-item:hover .header-bottom-menu-link {
    color: #0e8c40;
}

header .header-bottom .header-bottom-wrap .header-bottom-menu .header-bottom-menu-item:last-child {
    margin-right: 0;
}

header .header-bottom .header-bottom-wrap .btn-wrap {
    margin-right: 16px;
}

@media screen and (max-width: 1260px) {
    header .header-bottom .header-bottom-wrap .logo-wrap {
        width: auto;
    }

    header .header-bottom .header-bottom-wrap .btn-wrap {
        display: none;
    }
}

header .header-bottom .header-bottom-wrap .btn-wrap .btn {
    color: #fff;
}

/* -----------HUMBURGER ---------------*/
.hamburger-wrap {
    cursor: pointer;
    margin-right: 11px;
    max-height: 60px;
    -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;
    display: none;
}

@media screen and (max-width: 1260px) {
    .hamburger-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.hamburger-wrap .humburger {
    height: 30px;
    width: 30px;
    position: relative;
}

.hamburger-wrap .humburger .l1,
.hamburger-wrap .humburger .l2,
.hamburger-wrap .humburger .l3 {
    background-color: #000;
    position: absolute;
    display: block;
    margin: auto;
    top: 48%;
    left: 15%;
    height: 2px;
    width: 70%;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.hamburger-wrap .humburger .l1 {
    top: 23%;
}

.hamburger-wrap .humburger .l3 {
    top: 73%;
}

.hamburger-wrap .humburger.active .l1 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 48%;
}

.hamburger-wrap .humburger.active .l2 {
    opacity: 0;
}

.hamburger-wrap .humburger.active .l3 {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 48%;
}

/* --------------- TOP SLIDER ---------------------- */
.top-slider .temp_img {
    position: absolute;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.top-slider .move {
    left: 0 !important;
    top: 0 !important;
}

.top-slider .top-slider-item {
    position: relative;
    overflow: hidden;
    height: 68vh;
    min-height: 750px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
}

.top-slider .top-slider-item .top-slider-text-wrap {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 150px;
}

.top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(41.66667% - 30px);
    width: calc(41.66667% - 30px);
}

@media screen and (max-width: 1564px) {
    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
        width: -webkit-calc(41.66667% - 30px);
        width: calc(41.66667% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
        width: -webkit-calc(58.33333% - 30px);
        width: calc(58.33333% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block .top-slider-title {
    margin-bottom: 17px;
    font-family: 'AlumniSans';
    font-size: 64px;
    color: #fff;
}

.top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block .top-slider-text {
    line-height: 1.6;
    margin-bottom: 38px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.top-slider .top-slider-item .top-slider-control {
    z-index: 3;
    position: absolute;
    top: 150px;
    right: -200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.top-slider .top-slider-item .top-slider-control .top-slider-control-button {
    cursor: pointer;
    position: absolute;
    width: 60px;
    height: 50px;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
}

.top-slider .top-slider-item .top-slider-control .top-slider-control-item {
    cursor: pointer;
    margin-right: 32px;
}

.top-slider .top-slider-item .top-slider-control .top-slider-control-item:first-child {
    position: relative;
}

.top-slider .progress {
    width: 100%;
    height: 5px;
}

.top-slider .progress-wrap {
    -webkit-border-radius: 25px;
    border-radius: 25px;
    background: #0e8c40;
    overflow: hidden;
    position: relative;
}

.top-slider .progress-wrap .progress-bar {
    background: #383838;
    left: 0;
    position: absolute;
    bottom: 0;
}

/*---------------- FILTERS -------------------------*/
.filters {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

@media screen and (max-width: 560px) {
    .filters {
        border-bottom: none;
        padding-bottom: 10px;
    }
}

.filter-header {
    color: #000;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/*
@media screen and (max-width: 750px) {
    .filter-header {
        padding: 10px 0 20px;
    }
}

@media screen and (max-width: 750px) {
    .filter-header {
        padding-left: 20px;
    }
}*/

@media screen and (max-width: 750px) {
    .filter-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 750px) {
    .filter-header {
        width: 80%;
    }
}

.filters-wrap {
    height: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*  .filters-wrap .filter-type-wrap {
    padding: 31px 20px;
    position: relative;
    padding: 10px !important;
  }*/
.filters-wrap .filter-type-wrap .filter-list {
    position: absolute !important;
}

.filters-wrap .mobile-filer-wrap {
    width: 85%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: right .3s;
    -o-transition: right .3s;
    transition: right .3s;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        width: 320px;
    }

    .filters-wrap {
        overflow: hidden;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        z-index: 100;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        background-color: #fff;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        position: fixed;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        top: 0;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        right: -100%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 560px) {
    .filters-wrap .mobile-filer-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .mobile-filer-wrap {
        display: block;
    }
}

.filters-wrap .mobile-filer-wrap .mobile-filer-wrap-block {
    position: relative;
}

.filters-wrap .mobile-filer-wrap .mobile-filters-head {
    display: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .mobile-filters-head {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .mobile-filters-head {
        width: 100%;
    }
}

.filters-wrap .mobile-filer-wrap .mobile-filters-head .mobile-filters-title {
    padding: 16px;
    color: #0e8c40;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.filters-wrap .mobile-filer-wrap .mobile-filters-head .close-filter {
    padding: 16px;
}

.filters-wrap .mobile-filer-wrap .btn-wrap {
    padding-right: 20px;
    /* @include lg(flex-grow, 1); */
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap {
        padding: 0;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap {
        position: fixed;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap {
        bottom: 0;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .mobile-filer-wrap .btn-wrap .btn {
        width: 100%;
    }
}

.filters-wrap .filter-seasons-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-seasons-wrap {
        padding: 16px;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-seasons-wrap {
        padding: 0 16px;
    }
}

.filters-wrap .filter-seasons-wrap .filter-seasons-title {
    margin-bottom: 20px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: none;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-seasons-wrap .filter-seasons-title {
        display: block;
    }
}

.filters-wrap .filter-seasons-wrap .season-link {
    padding: 8px 18px;
    margin-right: 10px;
    font-size: 12px;
    color: #000;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    background-color: #f2f4f7;
    font-weight: 500;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-seasons-wrap .season-link {
        margin-bottom: 10px;
    }
}

.filters-wrap .filter-seasons-wrap .season-link-active {
    background-color: #fdc22e;
}

.filters-wrap .filter-brand-wrap {
    padding: 31px 20px;
    position: relative;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-brand-wrap {
        width: 80%;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-brand-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-brand-wrap {
        border-top: 1px solid #d7dadf;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-brand-wrap {
        padding: 10px 0px 0;
    }
}

.filters-wrap .filter-width-wrap {
    padding: 31px 20px;
    position: relative;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-width-wrap {
        padding-top: 0;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-width-wrap {
        width: 80%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-width-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-width-wrap {
        border-top: 1px solid #d7dadf;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-width-wrap {
        padding: 20px 0px 0;
    }
}

.filters-wrap .filter-height-wrap {
    padding: 31px 20px;
    position: relative;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-height-wrap {
        width: 80%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-height-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-height-wrap {
        padding-top: 0;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-height-wrap {
        border-top: 1px solid #d7dadf;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-height-wrap {
        padding: 20px 0px 0;
    }
}

.filters-wrap .filter-radius-wrap {
    padding: 31px 20px;
    position: relative;
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-radius-wrap {
        width: 80%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-radius-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 1260px) {
    .filters-wrap .filter-radius-wrap {
        padding-top: 0;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-radius-wrap {
        border-top: 1px solid #d7dadf;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-radius-wrap {
        padding: 20px 0px 0;
    }
}

@media screen and (max-width: 750px) {
    .filters-wrap .filter-radius-wrap {
        margin-bottom: 50px;
    }
}

.filter-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 240px;
    z-index: 100;
    background-color: #fff;
    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;
    position: absolute;
    top: 66px;
    left: 0;
    overflow: hidden;
    height: 0;
    -webkit-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
}

@media screen and (max-width: 1260px) {
    .filter-list {
        top: 56px;
    }
}

@media screen and (max-width: 1260px) {
    .filter-list {
        position: static;
    }
}

@media screen and (max-width: 1260px) {
    .filter-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 750px) {
    .filter-list {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .filter-list {
        margin-top: 0px;
    }
}

@media screen and (max-width: 750px) {
    .filter-list {
        border: none;
    }
}

.filter-list .filter-item {
    padding-left: 10px;
    border-bottom: 1px solid #d7dadf;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

@media screen and (max-width: 1260px) {
    .filter-list .filter-item {
        padding-left: 0;
    }
}

@media screen and (max-width: 750px) {
    .filter-list .filter-item {
        border: none;
    }
}

/*
@media screen and (max-width: 750px) {
    .filter-list .filter-item {
        padding-left: 35px;
    }
}*/

.filter-list .filter-item .filter-link {
    letter-spacing: 0.3px;
    padding: 18px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    position: relative;
}

@media screen and (max-width: 750px) {
    .filter-list .filter-item .filter-link {
        text-transform: lowercase;
    }
}

@media screen and (max-width: 750px) {
    .filter-list .filter-item .filter-link {
        padding: 10px;
    }
}

.filter-list .filter-item .filter-link:hover {
    color: #0e8c40;
}

.filter-list .filter-item .filter-link:hover:before {
    content: "";
    background-color: #0e8c40;
    width: 4px;
    height: 4px;
    position: absolute;
    top: 22px;
    left: -1px;
}

.filter-list .filter-item:hover {
    background-color: #f2f4f7;
}

.filter-list .filter-item:last-child {
    margin-bottom: 20px;
    border: none;
}

.filter-list::-webkit-scrollbar-track {
    background-color: #fff;
}

.filter-list::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.filter-list::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.filter-list-active {
    height: 200px;
    overflow-y: scroll;
}

@media screen and (max-width: 560px) {
    .filter-list-active {
        height: auto;
    }
}

@media screen and (max-width: 560px) {
    .filter-list-active {
        overflow-y: none;
    }
}

.mobile-filter-button {
    padding-right: 10px;
    cursor: pointer;
    display: none;
    -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;
}

@media screen and (max-width: 1260px) {
    .mobile-filter-button {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        z-index: 10;
    }
}

.mobile-filter-button img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.mobile-filter-button .filter-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.mobile-filter-active {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    right: 0px !important;
    padding: 0px;
    margin: 0px;
}

/* ---------------- PRODUCTS --------------- */
.products-list {
    margin-top: 50px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.products-list .product-item {
    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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    background-color: #fff;
    margin-bottom: 30px;
    position: relative;
}

@media screen and (max-width: 1564px) {
    .products-list .product-item {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .products-list .product-item {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .products-list .product-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .products-list .product-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .products-list .product-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .products-list .product-item {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.products-list .product-item .product-item-img-wrap {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 30px;
}

@media screen and (max-width: 560px) {
    .products-list .product-item .product-item-img-wrap {
        min-height: 220px;
    }
}

.products-list .product-item .product-item-img-wrap .product-item-img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.products-list .product-item .product-item-img-wrap .product-item-img-hover {
    display: none;
}

.products-list .product-item .product-item-img-wrap:hover .product-item-img {
    display: none;
}

.products-list .product-item .product-item-img-wrap:hover .product-item-img-hover {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.products-list .product-item .product-item-text-wrap {
    padding: 0 30px;
}

.products-list .product-item .product-item-text-wrap .product-title {
    margin-bottom: 15px;
    font-family: 'AlumniSans';
    font-size: 20px;
    color: #1e90f0;
}

.products-list .product-item .product-item-text-wrap .product-info {
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
    font-size: 16px;
}

.products-list .product-item .product-item-text-wrap .product-price {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.products-list .product-item .product-bottom-wrap {
    background-color: #f2f4f7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.products-list .product-item .product-bottom-wrap .product-radius-bottom-wrap {
    background-color: #f2f4f7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 50%;
    padding-left: 5%;
}

@media screen and (max-width: 1260px) {
    .products-list .product-item .product-bottom-wrap .product-radius-bottom-wrap {
        width: 40%;
    }
}

@media screen and (max-width: 960px) {
    .products-list .product-item .product-bottom-wrap .product-radius-bottom-wrap {
        width: 50%;
    }
}

@media screen and (max-width: 560px) {
    .products-list .product-item .product-bottom-wrap .product-radius-bottom-wrap {
        display: none;
    }
}

/*        .products-list .product-item .product-bottom-wrap .product-radius-bottom-wrap .radius-link-wrap {
          margin-bottom: 0; }*/
.products-list .product-item .product-bottom-wrap .product-radius-bottom-wrap .radius-link-wrap .radius-link {
    background-color: #fff;
}

.products-list .product-item .product-bottom-wrap .btn-wrap {
    width: 40%;
}

@media screen and (max-width: 1260px) {
    .products-list .product-item .product-bottom-wrap .btn-wrap {
        width: 50%;
    }
}

@media screen and (max-width: 960px) {
    .products-list .product-item .product-bottom-wrap .btn-wrap {
        width: 40%;
    }
}

@media screen and (max-width: 560px) {
    .products-list .product-item .product-bottom-wrap .btn-wrap {
        width: 100%;
    }
}

.products-list .product-item .product-bottom-wrap .btn-wrap .btn {
    padding: 0;
    width: 100%;
}

/*---------- READY BLOCK ---------------------*/
.ready {
    margin-top: 50px;
    padding-top: 12vh;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 12vh;
    /*  @include lg(padding-top, 25px);
 @include md(padding-top, 31vh);
 @include md(padding-bottom, 31vh);
 @include md(padding-top, 44vw);
 @include md(padding-bottom, 40vw);
 @include xs(padding-top, 25vh);
 @include xs(padding-top, 25vh); */
}

@media screen and (max-width: 1564px) {
    .ready {
        padding-top: 5vh;
    }
}

@media screen and (max-width: 1564px) {
    .ready {
        padding-bottom: 5vh;
    }
}

.ready .ready-img-block {
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ready .ready-img-block .ready-img-wrap {
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    width: 50%;
    /* @include sm(width, 100%);
       */
}

.ready .ready-img-block .ready-img-wrap .ready-img {
    width: 100%;
}

.ready .ready-center-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -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;
}

.ready .ready-center-wrap .ready-center {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
    text-align: center;
    padding: 66px 48px;
    background-color: #fff;
}

@media screen and (max-width: 1564px) {
    .ready .ready-center-wrap .ready-center {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .ready .ready-center-wrap .ready-center {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .ready .ready-center-wrap .ready-center {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .ready .ready-center-wrap .ready-center {
        width: -webkit-calc(66.66667% - 30px);
        width: calc(66.66667% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .ready .ready-center-wrap .ready-center {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .ready .ready-center-wrap .ready-center {
        width: -webkit-calc(83.33333% - 30px);
        width: calc(83.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .ready .ready-center-wrap .ready-center {
        padding: 30px;
    }
}

@media screen and (max-width: 1260px) {
    .ready .ready-center-wrap .ready-center {
        padding: 20px;
    }
}

@media screen and (max-width: 960px) {
    .ready .ready-center-wrap .ready-center {
        padding: 50px;
    }
}

@media screen and (max-width: 960px) {
    .ready .ready-center-wrap .ready-center {
        padding: 20px;
    }
}

.ready .ready-center-wrap .ready-center .ready-center-title {
    font-family: 'AlumniSans';
    font-size: 36px;
    margin-bottom: 36px;
}

@media screen and (max-width: 750px) {
    .ready .ready-center-wrap .ready-center .ready-center-title {
        font-size: 24px;
    }
}

.ready .ready-center-wrap .ready-center .ready-center-text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media screen and (max-width: 560px) {
    .ready .ready-center-wrap .ready-center .ready-center-text {
        display: none;
    }
}

.ready .ready-center-wrap .ready-center .btn-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*---------------------- BRANDS --------------*/
.brands {
    margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
    .brands {
        margin-bottom: 0px;
    }
}

/*---------------------- SEO SLDIER --------------*/
.seo-slider-main-block {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.seo-slider-wrap {
    position: relative;
    width: 50%;
}

@media screen and (max-width: 960px) {
    .seo-slider-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .seo-slider-wrap {
        display: none;
    }
}

.seo-slider-wrap .slick-dots {
    width: 5%;
    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;
    position: absolute;
    left: 0;
    top: 0;
}

.seo-slider-wrap .slick-dots li {
    margin-bottom: 20px;
    background-color: inherit;
    width: 20px;
    height: 20px;
}

.seo-slider-wrap .slick-dots .slick-active {
    background-color: inherit;
}

.seo-slider-item {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.seo-slider-item .seo-slider-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 10px;
}

.seo-slider-item .seo-slider-left .slider-paggination {
    width: 10%;
}

.seo-slider-item .seo-slider-left .slider-paggination .slider-paggination-list>li {
    margin-bottom: 24px;
}

.seo-slider-item .seo-slider-left .slider-paggination .slider-paggination-list>li>a {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.seo-slider-item.slick-active .seo-slider-left .slider-paggination .slider-paggination-list>.slick-active>a {
    color: #0e8c40;
}

.seo-slider-item .seo-slider-left .slider-img-block {
    width: 90%;
}

.seo-slider-item .seo-slider-left .slider-img-block .slider-bg-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.seo-slider-item .seo-slider-left .slider-img-block .slider-bg-wrap .progress-seo {
    width: 3px;
    height: 350px;
}

.seo-slider-item .seo-slider-left .slider-img-block .slider-bg-wrap .progress-wrap-seo {
    -webkit-border-radius: 25px;
    border-radius: 25px;
    background: #0e8c40;
    overflow: hidden;
    position: relative;
}

.seo-slider-item .seo-slider-left .slider-img-block .slider-bg-wrap .progress-wrap-seo .progress-bar-seo {
    background: #dbdfe3;
    left: 0;
    position: absolute;
    top: 0;
}

.seo-slider-item .seo-slider-left .slider-img-block .slider-bg-wrap .top-img-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 350px;
    width: 98%;
}

.seo-slider-item .seo-slider-left .slider-img-block .slider-wheel-wrap {
    margin-top: -175px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1260px) {
    .seo-slider-item .seo-slider-left .slider-img-block .slider-wheel-wrap img {
        width: 70%;
    }
}

@media screen and (max-width: 1260px) {
    .seo-slider-item .seo-slider-left .slider-img-block .slider-wheel-wrap img {
        height: 50%;
    }
}

@media screen and (max-width: 960px) {
    .seo-slider-item .seo-slider-left .slider-img-block .slider-wheel-wrap img {
        width: 35%;
    }
}

@media screen and (max-width: 960px) {
    .seo-slider-item .seo-slider-left .slider-img-block .slider-wheel-wrap img {
        height: 35%;
    }
}

.seo-slider-right {
    position: relative;
    width: 50%;
    margin-left: -80px;
    text-align: center;
    /*  padding-top: 50px;*/
}

@media screen and (max-width: 960px) {
    .seo-slider-right {
        margin-left: 0;
    }
}

@media screen and (max-width: 960px) {
    .seo-slider-right {
        width: 100%;
    }
}

.seo-slider-right .seo-brand {
    color: #0e8c40;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.seo-slider-right .seo-title {
    font-size: 36px;
    font-family: 'AlumniSans';
    /*margin-bottom: 50px;*/
}

@media screen and (max-width: 750px) {
    .seo-slider-right .seo-title {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 750px) {
    .seo-slider-right .seo-title {
        font-size: 24px;
    }
}

.seo-slider-right .seo-text-wrap {
    margin-bottom: 80px;
    width: 100%;
    background-color: #fff;
    text-align: left;
    padding-bottom: 50px;
}

.seo-slider-right .seo-text-wrap .seo-text-block .seo-text {
    padding: 40px 50px 0px;
    font-size: 12px;
    line-height: 1.8;
    font-weight: 400;
}

@media screen and (max-width: 750px) {
    .seo-slider-right .seo-text-wrap .seo-text-block .seo-text {
        line-height: 1.3;
    }
}

@media screen and (max-width: 750px) {
    .seo-slider-right .seo-text-wrap .seo-text-block .seo-text {
        padding: 20px;
    }
}

.seo-slider-right .seo-text-wrap .seo-text-block .seo-text-hide {
    display: none;
    padding: 0px 50px;
    font-size: 12px;
    line-height: 1.8;
    font-weight: 400;
}

@media screen and (max-width: 750px) {
    .seo-slider-right .seo-text-wrap .seo-text-block .seo-text-hide {
        line-height: 1.3;
    }
}

@media screen and (max-width: 750px) {
    .seo-slider-right .seo-text-wrap .seo-text-block .seo-text-hide {
        padding: 20px;
    }
}

.seo-slider-right .seo-text-wrap .button-more {
    cursor: pointer;
    text-align: left;
    padding-left: 50px;
    margin-top: 30px;
    color: #0e8c40;
    font-weight: 600;
    font-size: 12px;
}

/*---------------------- BANNERS --------------*/
.banners {
    margin-bottom: 80px;
}

.banners-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.banners-list .banner-item {
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1564px) {
    .banners-list .banner-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .banners-list .banner-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .banners-list .banner-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .banners-list .banner-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .banners-list .banner-item {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .banners-list .banner-item {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.banners-list .banner-item .banner-content {
    padding: 63px 63px 110px;
    width: 45%;
}

@media screen and (max-width: 1400px) {
    .banners-list .banner-item .banner-content {
        width: 50%;
    }
}

@media screen and (max-width: 1260px) {
    .banners-list .banner-item .banner-content {
        width: 75%;
    }
}

@media screen and (max-width: 960px) {
    .banners-list .banner-item .banner-content {
        padding: 20px;
    }
}

@media screen and (max-width: 750px) {
    .banners-list .banner-item .banner-content {
        width: 100%;
        max-width: calc(100% - 40px);
    }
}

.banners-list .banner-item .banner-content .banner-title {
    margin-bottom: 10px;
    font-family: 'AlumniSans';
    font-size: 36px;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .banners-list .banner-item .banner-content .banner-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 750px) {
    .banners-list .banner-item .banner-content .banner-title {
        font-size: 24px;
    }
}

.banners-list .banner-item .banner-content .banner-text {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 750px) {
    .banners-list .banner-item .banner-content .banner-text {
        font-size: 12px;
    }
}

.banners-list .first-banner {
    background-image: url(../img/banner1.png);
}

.banners-list .second-banner {
    background-image: url(../img/banner2.png);
}

/* --------------- NEWS -------------------- */
.news .news-block .news-block-title-wrap {
    margin-bottom: 28px;
    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;
}

.news .news-block .news-block-title-wrap .news-block-title {
    font-family: 'AlumniSans';
    font-size: 36px;
}

@media screen and (max-width: 750px) {
    .news .news-block .news-block-title-wrap .news-block-title {
        font-size: 24px;
    }
}

.news .news-block .news-block-title-wrap .news-botton-more {
    margin-left: 40px;
    color: #0e8c40;
    font-weight: 600;
    font-size: 14px;
}

.news .news-block .news-list {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.news .news-block .news-list .news-item {
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    margin-bottom: 30px;
}

@media screen and (max-width: 1564px) {
    .news .news-block .news-list .news-item {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .news .news-block .news-list .news-item {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .news .news-block .news-list .news-item {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .news .news-block .news-list .news-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .news .news-block .news-list .news-item {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .news .news-block .news-list .news-item {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.news .news-block .news-list .news-item .news-img-wrap {
    margin-bottom: 22px;
}

.news .news-block .news-list .news-item .news-item-title {
    padding-left: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
}

.news .news-block .news-list .news-item .news-text {
    padding-left: 24px;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.news .news-block .news-list .news-item .news-date {
    padding-top: 14px;
    padding-bottom: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 24px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    font-weight: 500;
}

.back-call {
    padding: 30px 0;
    background-color: #eff0f2;
}

.back-call .back-call-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.back-call .back-call-wrap .back-call-title-wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
}

@media screen and (max-width: 1564px) {
    .back-call .back-call-wrap .back-call-title-wrap {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .back-call .back-call-wrap .back-call-title-wrap {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .back-call .back-call-wrap .back-call-title-wrap {
        width: -webkit-calc(33.33333% - 30px);
        width: calc(33.33333% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .back-call .back-call-wrap .back-call-title-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .back-call-title-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .back-call .back-call-wrap .back-call-title-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.back-call .back-call-wrap .back-call-title-wrap .back-call-title {
    font-family: 'AlumniSans';
    font-size: 36px;
    margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .back-call-title-wrap .back-call-title {
        font-size: 24px;
    }
}

.back-call .back-call-wrap .back-call-title-wrap .back-call-sub-title {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    margin-bottom: 30px;
}

.back-call .back-call-wrap .form-wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(66.66667% - 30px);
    width: calc(66.66667% - 30px);
}

@media screen and (max-width: 1564px) {
    .back-call .back-call-wrap .form-wrap {
        width: -webkit-calc(66.66667% - 30px);
        width: calc(66.66667% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    .back-call .back-call-wrap .form-wrap {
        width: -webkit-calc(66.66667% - 30px);
        width: calc(66.66667% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    .back-call .back-call-wrap .form-wrap {
        width: -webkit-calc(66.66667% - 30px);
        width: calc(66.66667% - 30px);
    }
}

@media screen and (max-width: 960px) {
    .back-call .back-call-wrap .form-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .form-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    .back-call .back-call-wrap .form-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

.back-call .back-call-wrap .form-wrap form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.back-call .back-call-wrap .form-wrap .form-control {
    width: 59%;
    padding-left: 34px;
    background-color: #fff;
    margin-right: 20px;
    padding-top: 10px;
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .form-wrap .form-control {
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .form-wrap .form-control {
        width: 100%;
    }
}

.back-call .back-call-wrap .form-wrap .form-control input {
    width: 100%;
}

.back-call .back-call-wrap .form-wrap .checkbox {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .form-wrap .btn-wrap {
        width: 100%;
    }
}

.back-call .back-call-wrap .form-wrap .btn-wrap .btn {
    border: none;
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .back-call .back-call-wrap .form-wrap .btn-wrap .btn {
        width: 100%;
    }
}

footer {
    background-color: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 48px 0;
}

footer .footer-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

footer .footer-wrap .footer-logo-wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    padding-bottom: 28px;
}

@media screen and (max-width: 1564px) {
    footer .footer-wrap .footer-logo-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    footer .footer-wrap .footer-logo-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    footer .footer-wrap .footer-logo-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 960px) {
    footer .footer-wrap .footer-logo-wrap {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    footer .footer-wrap .footer-logo-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    footer .footer-wrap .footer-logo-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

footer .footer-wrap .footer-logo-wrap .footer-logo {
    margin-bottom: 30px;
}

footer .footer-wrap .footer-logo-wrap .footer-logo-text {
    color: rgba(0, 0, 0, 0.5);
}

footer .footer-wrap .footer-menu-wrap {
    padding-bottom: 28px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
}

@media screen and (max-width: 1564px) {
    footer .footer-wrap .footer-menu-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    footer .footer-wrap .footer-menu-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    footer .footer-wrap .footer-menu-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 960px) {
    footer .footer-wrap .footer-menu-wrap {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    footer .footer-wrap .footer-menu-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    footer .footer-wrap .footer-menu-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    footer .footer-wrap .footer-menu-wrap {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

footer .footer-wrap .footer-menu-wrap .footer-menu-block {
    width: 50%;
    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;
}

footer .footer-wrap .footer-menu-wrap .footer-menu-item {
    margin-bottom: 14px;
    color: #000;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

footer .footer-wrap .footer-menu-wrap .footer-menu-item:hover {
    color: #0e8c40;
}

footer .footer-wrap .footer-adress-wrap {
    margin-bottom: 20px;
    padding-bottom: 28px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
}

@media screen and (max-width: 1564px) {
    footer .footer-wrap .footer-adress-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    footer .footer-wrap .footer-adress-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    footer .footer-wrap .footer-adress-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 960px) {
    footer .footer-wrap .footer-adress-wrap {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    footer .footer-wrap .footer-adress-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    footer .footer-wrap .footer-adress-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 750px) {
    footer .footer-wrap .footer-adress-wrap {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

footer .footer-wrap .footer-adress-wrap .footer-adress {
    margin-bottom: 24px;
}

footer .footer-wrap .footer-adress-wrap .footer-phones-wrap .footer-phone {
    font-weight: 700;
    color: #000;
}

footer .footer-wrap .footer-adress-wrap .footer-phones-wrap .footer-phone:first-child {
    margin-right: 48px;
}

@media screen and (max-width: 1260px) {
    footer .footer-wrap .footer-adress-wrap .footer-phones-wrap .footer-phone:first-child {
        margin-right: 32px;
    }
}

@media screen and (max-width: 960px) {
    footer .footer-wrap .footer-adress-wrap .footer-phones-wrap .footer-phone:first-child {
        margin-right: 50px;
    }
}

footer .footer-wrap .footer-production-wrap {
    padding-bottom: 28px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
}

@media screen and (max-width: 1564px) {
    footer .footer-wrap .footer-production-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1400px) {
    footer .footer-wrap .footer-production-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 1260px) {
    footer .footer-wrap .footer-production-wrap {
        width: -webkit-calc(25% - 30px);
        width: calc(25% - 30px);
    }
}

@media screen and (max-width: 960px) {
    footer .footer-wrap .footer-production-wrap {
        width: -webkit-calc(50% - 30px);
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 750px) {
    footer .footer-wrap .footer-production-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

@media screen and (max-width: 560px) {
    footer .footer-wrap .footer-production-wrap {
        width: -webkit-calc(100% - 30px);
        width: calc(100% - 30px);
    }
}

footer .footer-wrap .footer-production-wrap .maxitop {
    display: block;
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
}

footer .footer-wrap .footer-production-wrap .maxitop span {
    color: #19ab58;
    font-weight: 700;
}

footer .footer-wrap .footer-production-wrap .unic {
    color: #111;
    font-weight: 600;
}

footer .footer-wrap .footer-production-wrap .unic span {
    color: #5454ac;
    font-weight: 700;
}

.brands-slider-wrap {
    display: none;
}

.brands-slider-wrap .slick-arrow {
    display: none !important;
}

@media screen and (max-width: 560px) {
    .brands-slider-wrap {
        display: block;
    }
}

.brands-slider-wrap .brands-list .brands-item {
    border: none;
}

.brands-slider-wrap .slick-dots {
    bottom: -25px;
}

.brands-slider-wrap .slick-dots li {
    width: 6px;
    height: 6px;
    background-color: #000;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.brands-slider-wrap .slick-dots li button {
    display: none;
}

.brands-slider-wrap .slick-dots .slick-active {
    background-color: #0e8c40;
}

.shopping-cart .image>a {
    display: block;
}

.shopping-cart .image>a>img {
    display: block;
    max-width: 100%;
}

@media screen and (max-width: 560px) {
    .main-page-brands {
        display: none;
    }
}

@media (min-width: 1600px) {
    .top-slider .top-slider-item {
        height: 75vh;
    }
}

/*.catalog-sort .container {
    padding-left: 0;
}*/

.home-top-text+.products .products-list {
    margin-top: 0
}

.home-top-text {
    margin: 20px 0
}

.home-top-text h1 {
    font-size: 25px
}

.video-b {
    max-width: 100%;
}

.mess_cart {
    padding: 10px 20px;
    background: #fff;
    display: inline-block
}


.card-tabs {
    margin-top: 30px;
}

.card-tabs__header {
    margin-bottom: 20px;
}

.card-tabs__header ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.card-tabs__header ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.card-tabs__header ul li a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease 0s;
}


.card-tabs__header ul li a:hover {
    opacity: 1;
}

.card-tabs__header ul li a.active {
    opacity: 1;
}

.card-tabs__header ul li a.active::before {
    opacity: 1;
}

.card-tabs__header ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    background-color: #0e8c40;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.card-tabs__body {}

.card-tabs__item {
    display: none;
}

.card-tabs__item.active {
    display: block;
}

.card-tabs__item .parameters-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 33%;
    margin-bottom: 10px;
    position: relative;
}

.card-tabs__item .parameters-item::before {
    content: '';
    border-bottom: 1px dashed #000;
    flex-grow: 1;
    order: 2;
    margin: 0 5px;
}

.card-tabs__item .parameters-left {
    background-color: #f7f7f8;
    padding-right: 5px;
}

.card-tabs__item .parameters-right {
    background-color: #f7f7f8;
    padding-left: 5px;
    font-weight: 600;
    order: 3;
}

.card-tabs__content {}

.card-tabs__spoiler {
    display: none;
}

@media (max-width: 1750px) {
    .top-slider .top-slider-item .top-slider-text-wrap {
        margin-left: 80px;
        margin-right: 80px;
    }
}

@media (max-width: 1200px) {
    .card-tabs__item .parameters-item {
        max-width: 50%;
    }

    .top-slider .top-slider-item .top-slider-text-wrap .top-slider-text-block .top-slider-title {
        font-size: 40px;
    }

    .top-slider .top-slider-item {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .card-tabs__item .parameters-item {
        max-width: 100%;
    }

    .card-tabs__header {
        justify-content: flex-start;
        overflow-x: scroll;
        white-space: wrap;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin: 0 -15px;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .card-tabs__header::-webkit-scrollbar {
        display: none;
    }

    .card-tabs__header ul li a {
        font-size: 16px;
        padding-bottom: 5px;
        white-space: nowrap;
    }

    .card-tabs__header ul li:last-child {
        padding-right: 15px;
    }

    .card-tabs {
        margin-top: 10px;
    }
}

@media (max-width: 755px) {
    .top-slider .top-slider-item .top-slider-text-wrap {
        margin-left: 30px;
        margin-right: 30px;
    }

    .top-slider .top-slider-item {
        min-height: 100%;
        height: auto !important;
    }

    .top-slider .top-slider-item .container {
        height: 100;
    }

    .top-slider .top-slider-item .top-slider-text-wrap {
        height: 100%;
        padding-top: 0 !important;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .top-slider .slick-track {
        display: flex !important;
    }
}