.choices {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
}
.choices:focus {
    outline: 0;
}
.choices:last-child {
    margin-bottom: 0;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.choices.is-disabled .choices__item {
    cursor: not-allowed;
}
.choices [hidden] {
    display: none !important;
}
.choices[data-type*="select-one"] {
    cursor: pointer;
}
.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 7.5px;
}
.choices[data-type*="select-one"] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin: 0;
}
.choices[data-type*="select-one"] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: 0.5;
}
.choices[data-type*="select-one"] .choices__button:focus,
.choices[data-type*="select-one"] .choices__button:hover {
    opacity: 1;
}
.choices[data-type*="select-one"] .choices__button:focus {
    box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*="select-one"] .choices__item[data-value=""] .choices__button {
    display: none;
}
.choices[data-type*="select-one"]:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333 transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}
.choices[data-type*="select-one"].is-open:after {
    border-color: transparent transparent #333;
    margin-top: -7.5px;
}
.choices[data-type*="select-one"][dir="rtl"]:after {
    left: 11.5px;
    right: auto;
}
.choices[data-type*="select-one"][dir="rtl"] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0;
}
.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
    cursor: text;
}
.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
    position: relative;
    display: inline-block;
    margin: 0 -4px 0 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: 0.75;
    border-radius: 0;
}
.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover {
    opacity: 1;
}
.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #ddd;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden;
}
.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #b7b7b7;
}
.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px;
}
.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%;
}
[dir="rtl"] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}
.choices__list--single .choices__item {
    width: 100%;
}
.choices__list--multiple {
    display: inline;
}
.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #fff;
    word-break: break-all;
    box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}
[dir="rtl"] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191;
}
.choices__list--dropdown {
    visibility: hidden;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
    will-change: visibility;
}
.choices__list--dropdown.is-active {
    visibility: visible;
}
.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
}
[dir="rtl"] .choices__list--dropdown .choices__item {
    text-align: right;
}
@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }
    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }
    [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: 0.5;
}
.choices__item {
    cursor: default;
}
.choices__item--selectable {
    cursor: pointer;
}
.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.5;
}
.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: gray;
}
.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.choices__button:focus,
.choices__input:focus {
    outline: 0;
}
.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}
[dir="rtl"] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}
.choices__placeholder {
    opacity: 0.5;
}
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: 0;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:after,
.slick-track:before {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #3d3d3f;
    line-height: 1.78;
    overflow-x: hidden;
    padding-top: 166px;
}
@media (max-width: 1600px) {
    body {
        padding-top: 150px;
    }
}
@media (max-width: 1440px) {
    body {
        font-size: 16px;
    }
}
@media (max-width: 990px) {
    body {
        padding-top: 110px;
    }
}
@media (max-width: 760px) {
    body {
        padding-top: 100px;
    }
}
@media (max-width: 640px) {
    body {
        padding-top: 0;
    }
}
a {
    text-decoration: none;
    outline: 0;
    color: #e5342a;
}
a:hover {
    color: #b11c17;
}
p {
    margin: 0 0 15px;
}
img {
    max-width: 100%;
}
.page {
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
}
.container,
.header-infobar__wrapper.fixed-header-infobar > div.container.container--clear {
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 15px 0 115px;
}


@media (max-width: 1630px) {
    .container {
        padding-right: 30px;
    }
}
@media (max-width: 1440px) {
    .container,
    .header-infobar__wrapper.fixed-header-infobar > div.container.container--clear
    {
        padding-left: 50px;
    }
}
@media (max-width: 1200px) {
    .container,
    .header-infobar__wrapper.fixed-header-infobar > div.container.container--clear {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header.meow .container {
        padding-right: 0;
    }
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col {
    padding: 0 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 100%;
}
.col--1-3 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    min-width: 33.333%;
}
.col--2-3 {
    -ms-flex-preferred-size: 66.666%;
    flex-basis: 66.666%;
    min-width: 66.666%;
}
.header {
    background: #000;
    margin-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
@media (max-width: 760px) {
    .header {
        margin-bottom: 20px;
    }
}
@media (max-width: 640px) {
    .header {
        position: relative;
    }
}
.header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 136px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
@media (max-width: 1600px) {
    .header__wrap {
        height: 120px;
    }
}
@media (max-width: 990px) {
    .header__wrap {
        height: 80px;
    }
}
@media (max-width: 640px) {
    .header__wrap {
        height: auto;
        /*
        -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
         */
        justify-content: stretch;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -15px;
        max-width: 100%;
    }
}
.header__logo {
    margin-right: 35px;
    display: block;
    min-width: 270px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    -ms-flex-item-align: center;
    align-self: center;
}
.header__logo img {
    display: block;
}
@media (max-width: 1440px) {
    .header__logo {
        min-width: 180px;
        -ms-flex-preferred-size: 180px;
        flex-basis: 180px;
        margin-right: 25px;
    }
}
@media (max-width: 640px) {
    .header__logo {
        min-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding: 20px 0;
        margin-right: 0;
    }
    .header__logo img {
        max-width: 250px;
        margin: 0 auto;
    }
}
.header__nav-mobile {
    display: none;
    width: 70px;
    padding: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 0;
    margin-right: auto;
}
.header__nav-mobile > span {
    display: block;
    height: 3px;
    background: #ea423c;
    width: 28px;
    margin: 4px 0;
    border-radius: 10px;
}
@media (max-width: 990px) {
    .header__nav-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (max-width: 640px) {
    .header__nav-mobile {
        min-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    }
}
.header__nav {
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 15px 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media (max-width: 990px) {
    .header__nav {
        display: none;
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 0;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 8;
        background: #1a1a1a;
        margin-top: -1px;
    }
}
.header__nav a {
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    padding: 15px 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-transform: none;
    font-size: 15px;
}

@media screen and (min-width: 1280px) {
    .header__nav a {
        padding: 15px 13px;
    }
}

.header__nav a:hover {
    color: #e5342a;
}
.header__nav a.header__nav__item--mobile {
    display: none;
}
@media (max-width: 1200px) {
    .header__nav a {
        font-size: 14px;
    }
}
@media (max-width: 990px) {
    .header__nav a {
        display: block;
        font-size: 18px;
        padding: 12.5px 15px;
    }
}
@media (max-width: 760px) {
    .header__nav a {
        font-size: 16px;
    }
    .header__nav a.header__nav__item--mobile {
        display: block;
    }
}
.header__account {
    min-width: 150px;
}
@media (max-width: 640px) {
    .header__account {
        min-width: 25%;
        flex-basis: 25%;
    }
    .header__shop {
        min-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}

.header__shop {
    position: relative;
}
.header-account {
    position: relative;
}
@media (min-width: 991px) {
    .header-account:hover .header-account__menu {
        display: block;
    }
}
@media (max-width: 760px) {
    .header-account {
        position: static;
    }
}
.header-account__signin {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #0c0c0c;
}
.header-account__signin .icon {
    margin-right: 12px;
    display: block;
    -webkit-transition: inherit;
    transition: inherit;
    fill: #fff;
}
@media (min-width: 1024px) {
    .header-account__signin:hover {
        color: #fff;
    }
    .header-account__signin:hover .icon {
        margin-right: 20px;
    }
}
@media (max-width: 1600px) {
    .header-account__signin {
        font-size: 15px;
    }
    .header-account__signin .icon {
        margin-right: 10px;
    }
}
@media (max-width: 990px) {
    .header-account__signin {
        font-size: 14px;
    }
}
@media (max-width: 640px) {
    .header-account__signin {
        font-size: 0;
    }
    .header-account__signin .icon {
        height: 24px;
        width: 24px;
        margin-right: 0;
    }
}
.header-account__name {
    text-align: left;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #0c0c0c;
}
.header-account__name__icon {
    display: none;
}
.header-account__name__icon {
    height: 36px;
    width: 36px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    /* background: rgba(255, 255, 255, 0.1); */
}

.header-account__name__icon .icon {
    width: 16px;
    height: 16px;
    fill: #fff;
}
@media (max-width: 640px) {
    .user-icon-outer {
        display: flex;
        height: 36px;
        width: 36px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 100%;
        /* background: rgba(255, 255, 255, 0.1); */
    }

    .user-icon-outer .icon {
        width: 16px;
        height: 16px;
    }
}

.header-account__name:hover {
    color: #fff;
    line-height: 1.7;
}
@media (max-width: 1600px) {
    .header-account__name {
        font-size: 15px;
    }
}
@media (max-width: 1440px) {
    .header-account__name {
        font-size: 14px;
    }
}
@media (max-width: 640px) {
    .header-account__name {
        font-size: 0;
    }
    .header-account__name br {
        display: none;
    }
    .header-account__name__icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.header-account__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 9;
    background: #191919;
    padding: 24px 0;
    display: none;
}
@media (max-width: 1600px) {
    .header-account__menu {
        padding: 20px 0;
    }
}
@media (max-width: 760px) {
    .header-account__menu {
        left: -15px;
    }
}
.header-account__menu a {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
    display: block;
    text-align: center;
    padding: 12.5px 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 0;
    position: relative;
}
@media (max-width: 1440px) {
    .header-account__menu a {
        font-size: 13px;
        padding: 12.5px 10px;
    }
}
.header-account__menu a:hover {
    color: #fff;
    top: -5px;
}
.header-account a.header-account__signout {
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15px;
}
.header-account a.header-account__signout .icon {
    fill: #fff;
    display: block;
    margin-right: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.header-account a.header-account__signout:hover {
    color: #fff;
    top: 0;
}
.header-account a.header-account__signout:hover .icon {
    margin-right: 20px;
}
@media (max-width: 1600px) {
    .header-account a.header-account__signout {
        font-size: 15px;
    }
    .header-account a.header-account__signout .icon {
        height: 16px;
        width: 16px;
        margin-right: 10px;
    }
}
@media (max-width: 1440px) {
    .header-account a.header-account__signout {
        font-size: 14px;
    }
    .header-account a.header-account__signout .icon {
        height: 15px;
        width: 15px;
    }
}
.header-shop {
    background: #e5342a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}
@media (max-width: 640px) {
    .header-shop {
        padding: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}
.header-shop__link {
    letter-spacing: 0.02em;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
}
@media (max-width: 1600px) {
    .header-shop__link {
        margin-right: 10px;
        font-size: 16px;
    }
}
@media (max-width: 640px) {
    .header-shop__link {
        margin-right: 0;
        min-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header-shop__link:first-child {
        background: #b11c17;
    }
}
.header-shop__link:last-child {
    margin-right: 0;
}
@media (max-width: 640px) {
    .header-shop__link__text {
        display: none;
    }
}
.header-shop__link__text svg {
    margin-left: 18px;
    width: 16px;
    height: 16px;
    margin-right: 2px;
    fill: #fff;
    position: relative;
    top: 2px;
}
@media (max-width: 1840px) {
    .header-shop__link__text svg {
        margin-left: 12px;
    }
}
@media (max-width: 1600px) {
    .header-shop__link__text svg {
        height: 14px;
        width: 14px;
    }
}
.header-shop__link__icon {
    height: 42px;
    width: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* background: rgba(255, 255, 255, 0.1); */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1600px) {
    .header-shop__link__icon {
        height: 36px;
        width: 36px;
    }
}
.header-shop__link__icon svg {
    height: 20px;
    width: 20px;
    fill: #fff;
}
@media (max-width: 1600px) {
    .header-shop__link__icon svg {
        height: 18px;
        width: 18px;
    }
}
.header-shop__link:first-child .header-shop__link__icon svg {
    stroke: #fff;
    stroke-width: 0.4px;
}
.header-shop__link:hover {
    color: #fff;
}
.header-shop__link:hover:first-child .header-shop__link__icon svg {
    stroke: #e5342a;
}
.header-shop__link:hover .header-shop__link__icon {
    background: #fff;
}
.header-shop__link:hover .header-shop__link__icon svg {
    fill: #e5342a;
}
.header.header--scroll .header__wrap {
    height: 90px;
}
.footer {
    border-top: 8px solid #e5342a;
    background: #161616;
    margin-top: 90px;
}
@media (max-width: 1440px) {
    .footer {
        border-top-width: 34px;
        margin-top: 60px;
    }
}
@media (max-width: 990px) {
    .footer {
        margin-top: 30px;
    }
}
.footer__top {
    padding-top: 64px;
}
@media (max-width: 1200px) {
    .footer__top {
        padding-top: 50px;
    }
}
@media (max-width: 990px) {
    .footer__top {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer__top {
        padding-top: 40px;
    }
}
.footer__wrap {
    padding-top: 40px;
    padding-bottom: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1440px) {
    .footer__wrap {
        padding-bottom: 40px;
    }
}
@media (max-width: 1200px) {
    .footer__wrap {
        padding-bottom: 20px;
    }
}
@media (max-width: 990px) {
    .footer__wrap {
        display: block;
        padding-top: 30px;
    }
}
@media (max-width: 480px) {
    .footer__wrap {
        padding-bottom: 10px;
    }
}
@media (max-width: 1200px) {
    .footer__left {
        min-width: 50%;
    }
}
@media (max-width: 990px) {
    .footer__left {
        margin-bottom: 30px;
        min-width: 100%;
    }
}
@media (max-width: 480px) {
    .footer__left {
        margin-bottom: 30px;
    }
}
.footer__left__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 990px) {
    .footer__left__bottom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer__left__bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.footer__logo {
    display: inline-block;
}
.footer__logo img {
    display: block;
}
.footer__social {
    margin-right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
@media (max-width: 1440px) {
    .footer__social {
        margin-right: 25px;
    }
}
.footer__social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(229, 52, 42, 0.2);
    border-radius: 100%;
    margin-right: 30px;
    background: #161616;
}
.footer__social a:last-child {
    margin-right: 0;
}
.footer__social a .icon {
    fill: #e5342a;
}
.footer__social a:hover {
    background-color: #fff;
    border-color: #fff;
}
@media (max-width: 1200px) {
    .footer__social a {
        margin-right: 15px;
        height: 34px;
        width: 34px;
    }
    .footer__social a .icon {
        height: 14px;
        width: 14px;
    }
}
.footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 37px;
}
@media (max-width: 990px) {
    .footer__nav {
        margin-bottom: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 760px) {
    .footer__nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
}
.footer__nav a {
    color: #fff;
    margin-right: 35px;
    display: block;
    line-height: 1.2;
    letter-spacing: 0.02em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1440px) {
    .footer__nav a {
        margin-right: 30px;
    }
}
@media (max-width: 1200px) {
    .footer__nav a {
        font-size: 14px;
    }
}
@media (max-width: 990px) {
    .footer__nav a {
        margin: 0 15px !important;
    }
}
@media (max-width: 760px) {
    .footer__nav a {
        font-size: 16px;
        margin: 0 15px 10px !important;
    }
}
.footer__nav a:hover {
    color: #e5342a;
}
.footer__nav a:last-child {
    margin-right: 0;
}
@media (max-width: 1200px) {
    .footer__right {
        padding-left: 30px;
    }
}
@media (max-width: 990px) {
    .footer__right {
        padding-left: 0;
    }
}
.footer__right__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 2px;
    margin-bottom: 23px;
}
@media (max-width: 1200px) {
    .footer__right__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 0;
        padding-top: 0;
    }
}
@media (max-width: 990px) {
    .footer__right__top {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.footer__right__top a,
.footer__right__top span {
    color: #fff;
    margin-right: 25px;
    line-height: 1.2;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer__right__top a:last-child,
.footer__right__top span:last-child {
    margin-right: 0;
}
.footer__right__top a .icon,
.footer__right__top span .icon {
    fill: #fff;
    margin-right: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1440px) {
    .footer__right__top a,
    .footer__right__top span {
        font-size: 14px;
        margin-right: 25px;
    }
    .footer__right__top a .icon,
    .footer__right__top span .icon {
        height: 15px;
        width: 15px;
        margin-right: 9px;
    }
}
@media (max-width: 1200px) {
    .footer__right__top a,
    .footer__right__top span {
        margin-bottom: 15px;
    }
}
@media (max-width: 760px) {
    .footer__right__top a,
    .footer__right__top span {
        font-size: 16px;
    }
}
@media (max-width: 990px) {
    .footer__right__top a,
    .footer__right__top span {
        margin: 0 12.5px 15px;
    }
    .footer__right__top a:last-child,
    .footer__right__top span:last-child {
        margin-right: 12.5px;
    }
}
.footer__right__top a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.footer__right__top a:hover {
    color: #fff;
}
.footer__right__top a:hover .icon {
    fill: #fff;
}
.footer__right__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 990px) {
    .footer__right__bottom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.footer__right__bottom .icon {
    height: 74px;
    width: 74px;
    margin-right: 64px;
}
@media (max-width: 1440px) {
    .footer__right__bottom .icon {
        margin-right: 20px;
        height: 60px;
        width: 60px;
    }
}
@media (max-width: 480px) {
    .footer__right__bottom .icon {
        margin-right: 15px;
    }
}
.footer__right__bottom .icon:last-child {
    margin-right: 0;
}
.footer__bottom {
    background: rgba(229, 52, 42, 0.1);
    padding: 60px 0;
}
@media (max-width: 1440px) {
    .footer__bottom {
        padding: 40px 0;
    }
}
@media (max-width: 990px) {
    .footer__bottom {
        padding: 30px 0;
    }
}
@media (max-width: 480px) {
    .footer__bottom {
        padding: 20px 0 10px;
    }
}
.footer__bottom__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 990px) {
    .footer__bottom__wrap {
        display: block;
    }
}
.footer__copyright {
    color: #fff;
    line-height: 1;
    font-weight: 400;
}
@media (max-width: 1440px) {
    .footer__copyright {
        font-size: 14px;
    }
}
@media (max-width: 990px) {
    .footer__copyright {
        margin-bottom: 15px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer__copyright {
        line-height: 1.3;
        margin-bottom: 20px;
    }
}
.footer__docs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 990px) {
    .footer__docs {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer__docs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.footer__docs a {
    color: #e5342a;
    line-height: 1;
    text-decoration: underline;
    display: block;
    margin-right: 50px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1440px) {
    .footer__docs a {
        margin-right: 40px;
        font-size: 14px;
    }
}
@media (max-width: 760px) {
    .footer__docs a {
        margin-right: 15px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .footer__docs a {
        margin-bottom: 15px;
        margin-right: 20px;
    }
}
.footer__docs a:hover {
    text-decoration: none;
    color: #fff;
}
.footer__docs a::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: #fff;
    top: 50%;
    left: 100%;
    margin-left: 15px;
    margin-top: -1px;
}
@media (max-width: 1440px) {
    .footer__docs a::after {
        width: 10px;
        height: 1px;
    }
}
@media (max-width: 760px) {
    .footer__docs a::after {
        height: 10px;
        width: 1px;
        margin-left: 7px;
        margin-top: -5px;
    }
}
@media (max-width: 480px) {
    .footer__docs a::after {
        margin-left: 9.5px;
    }
}
.footer__docs a:last-child {
    margin-right: 0;
}
.footer__docs a:last-child::after {
    content: none;
}
.icon {
    height: 18px;
    width: 18px;
    fill: #3d3d3f;
}
.btn {
    display: inline-block;
    background: #e5342a;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.2;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    border: 0;
    outline: 0;
    padding: 15px 33px;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    min-height: 50px;
    text-align: center;
}
.btn:hover {
    background: #b11c17;
    color: #fff;
}
.btn .icon {
    fill: #fff;
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.btn--sm {
    padding: 15px 25px;
}
.btn__line {
    margin-left: 24px;
    height: 1.5px;
    width: 26px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
}
.input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #303030;
    font-family: Roboto, sans-serif;
    padding: 15px 25px;
    color: #3d3d3f;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-size: 16px;
    outline: 0;
    font-weight: 400;
    height: 50px;
}
.input::-webkit-input-placeholder {
    color: rgba(48, 48, 48, 0.4);
    font-weight: 300;
}
.input::-moz-placeholder {
    color: rgba(48, 48, 48, 0.4);
    font-weight: 300;
}
.input:-ms-input-placeholder {
    color: rgba(48, 48, 48, 0.4);
    font-weight: 300;
}
.input::-ms-input-placeholder {
    color: rgba(48, 48, 48, 0.4);
    font-weight: 300;
}
.input::placeholder {
    color: rgba(48, 48, 48, 0.4);
    font-weight: 300;
}
.choices {
    z-index: 2;
}
.choices__inner {
    padding: 0 !important;
    background: #fff;
    border: 1px solid #303030;
    font-family: Roboto, sans-serif;
    color: #303030;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-size: 16px;
    outline: 0;
    border-radius: 0;
    font-weight: 400;
}
.choices__list--single {
    padding: 14.5px 50px 14.5px 25px;
    position: relative;
    min-height: 48px;
    display: block;
}
.choices__list--single::before {
    content: attr(data-placeholder);
    position: absolute;
    left: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.choices__list--single.is-changed {
    padding-top: 22px;
    padding-bottom: 7px;
}
.choices__list--single.is-changed .choices__item {
    font-weight: 500;
}
.choices__list--single.is-changed::before {
    font-size: 12px;
    top: 9px;
    -webkit-transform: none;
    transform: none;
}
.choices__placeholder {
    opacity: 1;
}
.choices[data-type*="select-one"]:after {
    background-image: url(../img/arrow-select.svg);
    border: 0;
    height: 7px;
    width: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -3.5px;
    right: 20px;
}
.choices.is-open[data-type*="select-one"]:after {
    border: 0;
    margin-top: -3.5px;
    background-image: url(../img/arrow-select-top.svg);
}
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
    border-radius: 0;
    border: 1px solid #303030;
}
.choices__list--dropdown {
    border: 1px solid #303030 !important;
    background: #fff;
    border-radius: 0 !important;
}
.choices__list--dropdown .choices__placeholder {
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0 !important;
    border: 0 !important;
}
.choices__list--dropdown .choices__item {
    border-bottom: 1px solid rgba(48, 48, 48, 0.1);
    padding: 5px 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1, 2;
    letter-spacing: 0.02em;
    color: #303030;
}
.choices__list--dropdown .choices__item:last-child {
    border-bottom: 0;
}
.choices__list--dropdown .choices__list {
    max-height: 234px;
    scrollbar-width: 10px;
    scrollbar-color: #e5342a rgba(48, 48, 48, 0.06);
}
.choices__list--dropdown .choices__list::-webkit-scrollbar {
    width: 10px;
}
.choices__list--dropdown .choices__list::-webkit-scrollbar-track {
    background: rgba(48, 48, 48, 0.06);
}
.choices__list--dropdown .choices__list::-webkit-scrollbar-thumb,
.choices__list--dropdown .choices__list::-webkit-scrollbar-thumb:hover {
    background: #e5342a;
}
.search {
    position: relative;
}
.search .input {
    border-color: #e5342a;
    width: 100%;
    padding-right: 75px;
}
.search button {
    background: #e5342a;
    border: 0;
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.search button:hover {
    background: #b11c17;
}
.search button .icon {
    fill: #fff;
    height: 16px;
    width: 16px;
}
.h1-like,
h1 {
    color: #3d3d3f;
    font-weight: 500;
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0 0 50px;
}
@media (max-width: 1440px) {
    .h1-like,
    h1 {
        font-size: 46px;
        margin-bottom: 35px;
    }
}
@media (max-width: 760px) {
    .h1-like,
    h1 {
        font-size: 38px;
        margin-bottom: 30px;
    }
}
.h2-like,
h2 {
    color: #303030;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 30px;
}
@media (max-width: 1440px) {
    .h2-like,
    h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
}
@media (max-width: 760px) {
    .h2-like,
    h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
}
.h3-like,
h3 {
    color: #303030;
    font-weight: 300;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0 0 30px;
}
@media (max-width: 1440px) {
    .h3-like,
    h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
}
@media (max-width: 760px) {
    .h3-like,
    h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.slick-slide {
    outline: 0;
}
.header-infobar {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1200px) {
    .header-infobar {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 760px) {
    .header-infobar {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .header-infobar {
        margin-bottom: 15px;
    }
}
.header-infobar__search {
    min-width: 570px;
    margin-right: 30px;
}
@media (max-width: 1600px) {
    .header-infobar__search {
        min-width: 400px;
    }
}
@media (max-width: 1440px) {
    .header-infobar__search {
        min-width: 300px;
    }
}
@media (max-width: 1200px) {
    .header-infobar__search {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        min-width: 85%;
        margin-right: 0;
    }
}
@media (max-width: 990px) {
    .header-infobar__search {
        min-width: 80%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
    }
}
@media (max-width: 760px) {
    .header-infobar__search {
        min-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.header-infobar__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1200px) {
    .header-infobar__info {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        min-width: 100%;
        margin-top: 30px;
        padding-left: 5px;
    }
}
@media (max-width: 760px) {
    .header-infobar__info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .header-infobar__info {
        margin-top: 20px;
    }
}
.header-infobar__info a,
.header-infobar__info span {
    font-size: 16px;
    color: #303030;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-right: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-infobar__info a:last-child,
.header-infobar__info span:last-child {
    margin-right: 0;
}
.header-infobar__info a svg,
.header-infobar__info span svg {
    margin-right: 17px;
    fill: #e5342a;
}
@media (max-width: 1440px) {
    .header-infobar__info a,
    .header-infobar__info span {
        font-size: 14px;
    }
    .header-infobar__info a svg,
    .header-infobar__info span svg {
        height: 16px;
        width: 16px;
    }
}
@media (max-width: 760px) {
    .header-infobar__info a,
    .header-infobar__info span {
        margin-bottom: 15px;
    }
}
.header-infobar__info a:hover {
    color: #b11c17;
}
.header-infobar__help {
    margin-left: 25px;
}
@media (max-width: 1200px) {
    .header-infobar__help {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
@media (max-width: 990px) {
    .header-infobar__help {
        margin-left: 0;
        padding-left: 15px;
        min-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
    .header-infobar__help .btn {
        width: 100%;
    }
}
@media (max-width: 760px) {
    .header-infobar__help {
        display: none;
    }
}
.home-categories {
    padding: 70px 0;
}
@media (max-width: 1440px) {
    .home-categories {
        padding: 30px 0;
    }
}
@media (max-width: 990px) {
    .home-categories .col--1-3,
    .home-categories .col--2-3 {
        min-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}
@media (max-width: 760px) {
    .home-categories {
        padding: 15px 0;
    }
}
@media (max-width: 425px) {
    .home-categories .col--1-3,
    .home-categories .col--2-3 {
        min-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}
.home-categories__item {
    position: relative;
    padding-top: 60px;
    display: block;
    margin-bottom: 30px;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1600px) {
    .home-categories__item {
        padding-top: 55px;
    }
}
@media (max-width: 1440px) {
    .home-categories__item {
        padding-top: 52px;
    }
}
@media (max-width: 760px) {
    .home-categories__item {
        padding-top: 0px;
        margin-bottom: 20px;
    }
}
.home-categories__item h3 {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    background: #303030;
    display: block;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    padding: 18px 20px 18px 38px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin: 0;
    z-index: 1;
    color: #fff;
}
.home-categories__item h3::before {
    content: "";
    background: #e5342a;
    width: 33px;
    height: 1.6px;
    position: absolute;
    left: -17px;
    top: 50%;
    margin-top: -1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1600px) {
    .home-categories__item h3 {
        font-size: 16px;
    }
}
@media (max-width: 1440px) {
    .home-categories__item h3 {
        font-size: 14px;
    }
}
@media (max-width: 760px) {
    .home-categories__item h3 {
        padding: 15px;
    }
    .home-categories__item h3::before {
        width: 25px;
    }
}
.home-categories__item__img {
    height: 345px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
@media (max-width: 1600px) {
    .home-categories__item__img {
        height: 300px;
    }
}
@media (max-width: 1200px) {
    .home-categories__item__img {
        height: 230px;
    }
}
@media (max-width: 760px) {
    .home-categories__item__img {
        height: 160px;
    }
}


.home-categories__item:hover {
    /*left:-15px;top:-15px;*/
    -webkit-box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.0482987),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.0389404),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.0310596),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.0217013);
    box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.0482987),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.0389404),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.0310596),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.0217013);
}
.home-categories__item:hover .home-categories__item__img::before {
    opacity: 1;
}
.home-categories__item:hover h3 {
    padding-left: 73px;
    color: #fff;
}
@media (max-width: 760px) {
    .home-categories__item:hover h3 {
        padding-left: 40px;
    }
}
.home-categories__item:hover h3::before {
    left: 18px;
}
@media (max-width: 760px) {
    .home-categories__item:hover h3::before {
        left: 7px;
    }
}
.home-categories__all {
    height: 405px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 1600px) {
    .home-categories__all {
        height: 355px;
    }
}
@media (max-width: 1440px) {
    .home-categories__all {
        height: 350px;
    }
}
@media (max-width: 1200px) {
    .home-categories__all {
        height: 280px;
    }
}
@media (max-width: 760px) {
    .home-categories__all {
        height: 205px;
    }
    .home-categories__all .btn {
        padding: 15px 25px;
    }
}
@media (max-width: 425px) {
    .home-categories__all {
        height: auto;
        padding: 30px 0;
    }
}
.home-categories__all h3 {
    margin-bottom: 48px;
}
@media (max-width: 1200px) {
    .home-categories__all h3 {
        margin-bottom: 30px;
        font-size: 24px;
    }
}
.home-about {
    padding: 70px 0 100px;
    position: relative;
}
@media (max-width: 1440px) {
    .home-about {
        padding: 30px 0;
    }
}
@media (max-width: 990px) {
    .home-about {
        padding: 20px 0;
    }
}
@media (max-width: 760px) {
    .home-about {
        padding: 15px 0;
    }
}
.home-about::after,
.home-about::before {
    content: "";
    display: table;
    clear: both;
}
.home-about__goals,
.home-about__start {
    width: 33.333%;
    float: left;
}
@media (max-width: 990px) {
    .home-about__goals,
    .home-about__start {
        float: none;
        width: 100%;
    }
}
.home-about__company-today,
.home-about__end {
    width: 66.666%;
    float: right;
    padding-left: 40px;
    padding-right: 40px;
}
@media (max-width: 1440px) {
    .home-about__company-today,
    .home-about__end {
        padding-right: 0;
        padding-left: 30px;
    }
}
@media (max-width: 990px) {
    .home-about__company-today,
    .home-about__end {
        float: none;
        width: 100%;
        padding-left: 0;
    }
}
.home-about__start {
    padding: 50px 0 0 50px;
    margin-bottom: 100px;
    letter-spacing: 0.02em;
}
@media (max-width: 1440px) {
    .home-about__start {
        padding: 30px 0 0 30px;
        margin-bottom: 50px;
    }
}
@media (max-width: 990px) {
    .home-about__start {
        padding: 0 0 0 30px;
        margin-bottom: 30px;
    }
}
@media (max-width: 760px) {
    .home-about__start {
        padding-left: 15px;
    }
}
.home-about__end {
    padding-right: 100px;
    padding-bottom: 70px;
    position: relative;
}
@media (max-width: 1440px) {
    .home-about__end {
        padding-right: 60px;
    }
}
@media (max-width: 990px) {
    .home-about__end {
        padding: 0 30px 30px;
    }
}
@media (max-width: 760px) {
    .home-about__end {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.home-about__end::after {
    content: "";
    background: rgba(252, 235, 234, 0.8);
    position: absolute;
    bottom: 0;
    right: 40px;
    left: -310px;
    top: -360px;
    z-index: -1;
}
@media (max-width: 1600px) {
    .home-about__end::after {
        right: 50px;
    }
}
@media (max-width: 1440px) {
    .home-about__end::after {
        right: 0;
    }
}
.home-about__end::before {
    content: "";
    position: absolute;
    height: 370px;
    width: 370px;
    background: url(../img/bg-icon.svg) no-repeat center;
    background-size: cover;
    right: -110px;
    top: -100px;
    z-index: -1;
}
.company-today {
    background: #fff;
    -webkit-box-shadow:
            0 80px 27px rgba(0, 0, 0, 0.07),
            0 23.4719px 18.0923px rgba(0, 0, 0, 0.0565233),
            0 11.3377px 16.053px rgba(0, 0, 0, 0.0472863),
            0 5.99357px 14.8581px rgba(0, 0, 0, 0.0395849),
            0 3.00727px 13.1379px rgba(0, 0, 0, 0.031853),
            0 1.17339px 9.48593px rgba(0, 0, 0, 0.0220261);
    box-shadow:
            0 80px 27px rgba(0, 0, 0, 0.07),
            0 23.4719px 18.0923px rgba(0, 0, 0, 0.0565233),
            0 11.3377px 16.053px rgba(0, 0, 0, 0.0472863),
            0 5.99357px 14.8581px rgba(0, 0, 0, 0.0395849),
            0 3.00727px 13.1379px rgba(0, 0, 0, 0.031853),
            0 1.17339px 9.48593px rgba(0, 0, 0, 0.0220261);
    margin-bottom: 60px;
    padding: 64px 40px 64px 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1440px) {
    .company-today {
        padding: 30px;
    }
}
@media (max-width: 990px) {
    .company-today {
        margin-bottom: 30px;
    }
}
@media (max-width: 760px) {
    .company-today {
        display: block;
    }
}
.company-today__left {
    min-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-top: 3px;
}
@media (max-width: 760px) {
    .company-today__left {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 100%;
        padding-top: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 1440px) {
    .company-today__left h2 {
        font-size: 30px;
        padding-top: 20px;
    }
}
@media (max-width: 760px) {
    .company-today__left h2 {
        padding-top: 0;
        font-size: 24px;
        margin-bottom: 15px;
    }
}
.company-today__left p {
    margin-bottom: 35px;
    line-height: 2.33;
    letter-spacing: 0.02em;
}
@media (max-width: 1440px) {
    .company-today__left p {
        font-size: 15px;
        line-height: 1.9;
    }
}
@media (max-width: 760px) {
    .company-today__left p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.company-today__right {
    min-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-left: 50px;
}
@media (max-width: 1440px) {
    .company-today__right {
        padding-left: 30px;
    }
}
@media (max-width: 760px) {
    .company-today__right {
        padding-left: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 100%;
    }
}
.company-today__right img {
    display: block;
    max-width: none;
    -webkit-box-shadow:
            0 100px 118px rgba(0, 0, 0, 0.15),
            0 33.4024px 43.0719px rgba(0, 0, 0, 0.103497),
            0 16.1404px 20.9106px rgba(0, 0, 0, 0.0834436),
            0 8.07075px 10.2508px rgba(0, 0, 0, 0.0665564),
            0 3.27597px 4.05317px rgba(0, 0, 0, 0.0465028);
    box-shadow:
            0 100px 118px rgba(0, 0, 0, 0.15),
            0 33.4024px 43.0719px rgba(0, 0, 0, 0.103497),
            0 16.1404px 20.9106px rgba(0, 0, 0, 0.0834436),
            0 8.07075px 10.2508px rgba(0, 0, 0, 0.0665564),
            0 3.27597px 4.05317px rgba(0, 0, 0, 0.0465028);
}
@media (max-width: 1440px) {
    .company-today__right img {
        max-height: 300px;
    }
}
@media (max-width: 760px) {
    .company-today__right img {
        width: 100%;
        max-height: none;
    }
}
.goals {
    background: #fff;
    -webkit-box-shadow:
            0 23.4719px 18.0923px rgba(0, 0, 0, 0.0565233),
            0 11.3377px 16.053px rgba(0, 0, 0, 0.0472863),
            0 5.99357px 14.8581px rgba(0, 0, 0, 0.0395849),
            0 3.00727px 13.1379px rgba(0, 0, 0, 0.031853),
            0 1.17339px 9.48593px rgba(0, 0, 0, 0.0220261);
    box-shadow:
            0 23.4719px 18.0923px rgba(0, 0, 0, 0.0565233),
            0 11.3377px 16.053px rgba(0, 0, 0, 0.0472863),
            0 5.99357px 14.8581px rgba(0, 0, 0, 0.0395849),
            0 3.00727px 13.1379px rgba(0, 0, 0, 0.031853),
            0 1.17339px 9.48593px rgba(0, 0, 0, 0.0220261);
}
@media (max-width: 990px) {
    .goals {
        margin-bottom: 30px;
    }
}
.goals__slider {
    padding: 55px 70px 140px 55px;
}
@media (max-width: 1440px) {
    .goals__slider {
        padding: 30px 30px 100px;
    }
}
@media (max-width: 990px) {
    .goals__slider {
        padding-bottom: 70px;
    }
}
@media (max-width: 760px) {
    .goals__slider {
        padding-bottom: 50px;
    }
}
.goals__slider__item h3 {
    margin-bottom: 35px;
}
@media (max-width: 1440px) {
    .goals__slider__item h3 {
        margin-bottom: 25px;
    }
}
.goals__slider__item p {
    letter-spacing: 0.02em;
    line-height: 1.9;
    font-size: 22px;
}
@media (max-width: 1440px) {
    .goals__slider__item p {
        font-size: 18px;
        line-height: 1.7;
    }
}
@media (max-width: 760px) {
    .goals__slider__item p {
        font-size: 16px;
    }
}
.goals__slider__arrow {
    position: absolute;
    background: 0 0;
    border: 0;
    bottom: 60px;
    outline: 0;
    cursor: pointer;
}
@media (max-width: 1440px) {
    .goals__slider__arrow {
        bottom: 40px;
    }
}
@media (max-width: 990px) {
    .goals__slider__arrow {
        bottom: 25px;
    }
}
@media (max-width: 760px) {
    .goals__slider__arrow {
        bottom: 15px;
    }
}
.goals__slider__arrow .icon {
    fill: #e5342a;
    width: 30px;
    height: 30px;
}
.goals__slider__arrow.slick-disabled .icon {
    fill: rgba(229, 52, 42, 0.5);
}
.goals__slider__arrow--prev {
    right: 114px;
}
.goals__slider__arrow--prev .icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.goals__slider__arrow--next {
    right: 62px;
}
.home-news {
    padding: 130px 0 105px;
    position: relative;
}
@media (max-width: 1440px) {
    .home-news {
        padding: 50px 0 30px;
    }
}
@media (max-width: 990px) {
    .home-news {
        padding: 30px 0;
    }
}
@media (max-width: 760px) {
    .home-news {
        padding: 15px 0;
    }
}
.home-news::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3000px;
    right: 100%;
    margin-right: 40px;
    background: #fff;
    z-index: 2;
}
@media (max-width: 760px) {
    .home-news::before {
        content: none;
    }
}
.news-slider {
    position: relative;
}
.news-slider .slick-list {
    overflow: visible;
}
.news-slider .slick-slide {
    outline: 0;
}
.news-slider__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 35px 100px 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 380px;
    width: 680px;
    margin-right: 40px;
}
@media (max-width: 1440px) {
    .news-slider__item {
        width: 480px;
        height: 280px;
        padding: 30px 40px;
    }
}
@media (max-width: 760px) {
    .news-slider__item {
        width: 400px;
        height: 240px;
        padding: 30px 15px;
        margin-right: 15px;
    }
}
@media (max-width: 480px) {
    .news-slider__item {
        width: 290px;
        height: 180px;
    }
}
.news-slider__item::before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.news-slider__item > * {
    z-index: 2;
    position: relative;
}
.news-slider__item > time {
    position: absolute;
    opacity: 0;
    letter-spacing: 0.04em;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-weight: 700;
    top: 80px;
    left: -10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 1440px) {
    .news-slider__item > time {
        left: -15px;
        top: 60px;
        font-size: 14px;
    }
}
@media (max-width: 760px) {
    .news-slider__item > time {
        top: 50px;
        left: -20px;
    }
}
@media (max-width: 480px) {
    .news-slider__item > time {
        font-size: 12px;
        left: -15px;
        top: 40px;
    }
}
.news-slider__item > time::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1.5px;
    background: #fff;
    top: 50%;
    margin-top: -1px;
    left: -50px;
}
@media (max-width: 760px) {
    .news-slider__item>time::before {
        width: 25px;
        left: -40px;
    }
}
.news-slider__item h4 {
    margin: auto 0 15px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.2;
    font-size: 58px;
}
@media (max-width: 1440px) {
    .news-slider__item h4 {
        font-size: 36px;
    }
}
@media (max-width: 760px) {
    .news-slider__item h4 {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .news-slider__item h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
}
.news-slider__item h4 b {
    display: block;
}
.news-slider__item p {
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 100%;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
    max-height: 0;
    visibility: hidden;
}
@media (max-width: 760px) {
    .news-slider__item p {
        max-width: 80%;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .news-slider__item p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 5px;
    }
}
.news-slider__item .btn {
    margin-top: 25px;
    margin-bottom: auto;
}
@media (max-width: 1440px) {
    .news-slider__item .btn {
        margin-top: 1px;
    }
}
@media (max-width: 760px) {
    .news-slider__item .btn {
        font-size: 14px;
        padding: 12px 25px;
        min-height: 40px;
    }
}
@media (max-width: 480px) {
    .news-slider__item .btn {
        padding: 8px 20px;
        font-size: 13px;
        min-height: 30px;
    }
}
.news-slider__item .btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.news-slider__item:hover {
    -webkit-box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.06),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.05),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.1),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.3);
    box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.06),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.05),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.1),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.news-slider__item:hover::before {
    background: rgba(229, 52, 42, 0.5);
}
.news-slider__item:hover p {
    max-height: 200px;
    visibility: visible;
}
.news-slider__item:hover time {
    opacity: 1;
}
.news-slider__item:hover .btn {
    background: #fff;
    color: #e5342a;
}
.news-slider__item:hover .btn__line {
    background: #e5342a;
}
.home-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
    position: relative;
}
@media (max-width: 990px) {
    .home-slider {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 990px) {
    .home-slider {
        padding-bottom: 45px;
    }
}
.home-slider::after {
    content: "";
    width: 370px;
    height: 370px;
    position: absolute;
    background: url(../img/bg-icon.svg) no-repeat center;
    background-size: cover;
    right: -205px;
    bottom: -95px;
    z-index: -1;
}
.home-slider__left {
    min-width: 80%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    padding-right: 15px;
}
@media (max-width: 990px) {
    .home-slider__left {
        min-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }
}
.home-slider__main {
    -webkit-box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.0482987),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.0389404),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.0310596),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.0217013);
    box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.0482987),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.0389404),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.0310596),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.0217013);
}
@media (max-width: 640px) {
    .home-slider__main .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.home-slider__main .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 65px;
    left: 100px;
}
@media (max-width: 1200px) {
    .home-slider__main .slick-dots {
        bottom: 40px;
    }
}
@media (max-width: 990px) {
    .home-slider__main .slick-dots {
        bottom: 25px;
        left: 70px;
    }
}
@media (max-width: 760px) {
    .home-slider__main .slick-dots {
        left: 40px;
    }
}
.home-slider__main .slick-dots li {
    margin-right: 20px;
}
@media (max-width: 990px) {
    .home-slider__main .slick-dots li {
        margin-right: 15px;
    }
}
.home-slider__main .slick-dots button {
    font-size: 0;
    background: #fff;
    width: 12px;
    height: 12px;
    border: 1px solid #e5342a;
    cursor: pointer;
    border-radius: 100%;
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.home-slider__main .slick-dots button:hover {
    background: #e5342a;
}
.home-slider__main .slick-dots .slick-active button {
    background: #e5342a;
}
.home-slider__main__item {
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-color: #fff;
    height: 600px;
    padding: 85px 80px;
}
@media (max-width: 1440px) {
    .home-slider__main__item {
        height: 480px;
        padding: 50px 70px;
    }
}
@media (max-width: 1200px) {
    .home-slider__main__item {
        height: 420px;
    }
}
@media (max-width: 990px) {
    .home-slider__main__item {
        height: 380px;
        padding: 30px 50px;
    }
}
@media (max-width: 760px) {
    .home-slider__main__item {
        padding: 30px 30px 80px;
        height: auto;
    }
}
@media (max-width: 640px) {
    .home-slider__main__item {
        position: relative;
    }
    .home-slider__main__item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0; /*background-color:rgba(255,255,255,.7);*/
        z-index: 1;
    }
    .home-slider__main__item > * {
        position: relative;
        z-index: 2;
    }
    .btn {
        font-size: 14px;
        padding: 7px 16px;
        min-height: 25px;
    }
}
.home-slider__main__item h1 {
    text-transform: uppercase;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.home-slider__main__item h1::first-letter {
    font-size: 58px;
}
@media (max-width: 1440px) {
    .home-slider__main__item h1 {
        font-size: 34px;
        margin-bottom: 30px;
    }
    .home-slider__main__item h1::first-letter {
        font-size: 46px;
    }
}
@media (max-width: 760px) {
    .home-slider__main__item h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .home-slider__main__item h1::first-letter {
        font-size: 40px;
    }
}
.home-slider__main__item p {
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    margin-bottom: 55px;
    max-width: 300px;
}
@media (max-width: 1440px) {
    .home-slider__main__item p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}
@media (max-width: 760px) {
    .home-slider__main__item p {
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 240px;
    }
}
@media (max-width: 640px) {
    .home-slider__main__item p {
        font-weight: 400;
    }
}
.home-slider__right {
    min-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding-left: 15px;
    margin-top: -20px;
}
@media (max-width: 990px) {
    .home-slider__right {
        min-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: -22.5px;
    }
}
.home-slider__right__item {
    height: 290px;
    background-color: #fff;
    background-position: right top;
    background-size: 80%;
    background-repeat: no-repeat;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 400;
    color: #303030;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.0482987),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.0389404),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.0310596),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.0217013);
    box-shadow:
            0 51px 133px rgba(0, 0, 0, 0.07),
            0 18.6158px 48.0795px rgba(0, 0, 0, 0.0482987),
            0 9.03764px 23.572px rgba(0, 0, 0, 0.0389404),
            0 4.43042px 11.7665px rgba(0, 0, 0, 0.0310596),
            0 1.7518px 4.75497px rgba(0, 0, 0, 0.0217013);
    margin: 20px 0;
}
@media (max-width: 1440px) {
    .home-slider__right__item {
        height: 230px;
        background-size: 90%;
    }
}
@media (max-width: 1200px) {
    .home-slider__right__item {
        height: 200px;
        font-size: 18px;
        padding: 20px;
    }
}
@media (max-width: 990px) {
    .home-slider__right__item {
        min-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        margin: 0 7.5px;
        position: relative;
        background-size: 60%;
        height: 160px;
    }
}
.home-filter {
    margin-bottom: 80px;
}
@media (max-width: 1440px) {
    .home-filter {
        margin-bottom: 30px;
    }
}
@media (max-width: 990px) {
    .home-filter {
        margin-bottom: 20px;
    }
}
@media (max-width: 760px) {
    .home-filter {
        margin-bottom: 15px;
    }
}
@media (max-width: 425px) {
    .home-filter {
        margin-bottom: 5px;
    }
}
.home-filter__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 990px) {
    .home-filter__form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.home-filter__form h3 {
    margin-bottom: 0;
    font-weight: 500;
    color: #3d3d3f;
    margin-right: 30px;
    padding-left: 30px;
}
@media (max-width: 1840px) {
    .home-filter__form h3 {
        padding-left: 15px;
    }
}
@media (max-width: 1200px) {
    .home-filter__form h3 {
        padding-left: 0;
        margin-right: 20px;
    }
}
@media (max-width: 990px) {
    .home-filter__form h3 {
        margin-right: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}
.home-filter__btn {
    margin: 0;
}
@media (max-width: 990px) {
    .home-filter__btn {
        min-width: 100%;
        text-align: center;
    }
}
@media (max-width: 760px) {
    .home-filter__btn {
        min-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding: 0 7.5px;
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .home-filter__btn {
        padding: 0 3px;
    }
}
.home-filter__btn .btn {
    min-width: 110px;
}
@media (max-width: 990px) {
    .home-filter__btn .btn {
        min-width: 31%;
    }
}
@media (max-width: 760px) {
    .home-filter__btn .btn {
        min-width: 100%;
    }
}
.home-filter__make,
.home-filter__model,
.home-filter__year {
    margin-right: 20px;
}
@media (max-width: 990px) {
    .home-filter__make,
    .home-filter__model,
    .home-filter__year {
        margin-right: 0;
        padding: 0 7.5px;
        margin-bottom: 15px;
    }
    .home-filter__make:last-child,
    .home-filter__model:last-child,
    .home-filter__year:last-child {
        padding-right: 0;
    }
}
@media (max-width: 480px) {
    .home-filter__make,
    .home-filter__model,
    .home-filter__year {
        padding: 0 3px;
    }
}
.home-filter__year {
    min-width: 18.4%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18.4%;
    flex: 0 0 18.4%;
    margin-left: auto;
    z-index: 3;
}
@media (max-width: 1600px) {
    .home-filter__year {
        min-width: 15%;
        -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    }
}
@media (max-width: 990px) {
    .home-filter__year {
        min-width: 33.333%;
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    }
}
@media (max-width: 760px) {
    .home-filter__year {
        min-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}
.home-filter__make,
.home-filter__model {
    min-width: 22%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
}
@media (max-width: 1840px) {
    .home-filter__make,
    .home-filter__model {
        min-width: 21%;
        -ms-flex-preferred-size: 21%;
        flex-basis: 21%;
    }
}
@media (max-width: 1600px) {
    .home-filter__make,
    .home-filter__model {
        min-width: 19%;
        -ms-flex-preferred-size: 19%;
        flex-basis: 19%;
    }
}
@media (max-width: 990px) {
    .home-filter__make,
    .home-filter__model {
        min-width: 33.333%;
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
    }
}
@media (max-width: 760px) {
    .home-filter__make,
    .home-filter__model {
        min-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}
.scroll-wrap {
    position: relative;
}
.scroll-menu {
    position: fixed;
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
    z-index: 10;
    display: none;
}
@media (max-width: 1200px) {
    .scroll-menu {
        display: none !important;
    }
}
.scroll-menu[data-state="is-top"] .scroll-menu__inner::before {
    width: 60px;
}
.scroll-menu__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    position: relative;
}
.scroll-menu__inner::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 1.5px dashed rgba(48, 48, 48, 0.4);
    top: 50%;
    margin-top: -1px;
    right: 100%;
    margin-right: -8px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.scroll-menu a {
    display: block;
    margin-left: 58px;
    color: #303030;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}
.scroll-menu a::before {
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 50%;
    width: 1.5px;
    background: #e5342a;
    height: 0;
    top: -55px;
    margin-left: -1px;
}
.scroll-menu a:hover {
    color: #e5342a;
}
.scroll-menu a[data-state="is-active"] {
    color: #e5342a;
}
.scroll-menu a[data-state="is-active"]::before {
    height: 30px;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    color: transparent !important;
}
.home-slider__main .slick-dots {
    bottom: 40px;
}
@media (max-width: 1440px) {
    .home-slider__main .slick-dots {
        bottom: 15px;
    }
}
@media (max-width: 1200px) {
    .home-slider__main .slick-dots {
        bottom: 15px;
    }
}
@media (max-width: 990px) {
    .home-slider__main .slick-dots {
        bottom: 3px;
    }
}
@media (max-width: 760px) {
    .home-slider__main .slick-dots {
        bottom: 15px;
    }
}
.home-slider__main__item p {
    min-height: 54px;
}
@media (max-width: 760px) {
    .header-infobar__info {
        display: none;
    }

    .header-infobar__wrapper .container.container--clear {
        width: 100%;
    }
    .header-infobar__wrapper {
        background: transparent !important;
    }
}

.col:has(.home-categories__item):hover .home-categories__item {
    left: -15px;
    top: -15px;
}

.wpce-widget-layout-h .wpce-field {
	display: block !important;
}

.filter__search-wrapper {
	margin-bottom: 10px;
}

.footer__bottom {
	background: none;
}

/* preloader */
.preloader {
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	position: fixed;
	top: 0;
	z-index: 10000;
}
.preloader:after {
	width: 50px;
	height: 50px;
	content: '';
	border: 3px solid transparent;
	border-bottom: 3px solid #e5342a;
	border-left: 3px solid #e5342a;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 10001;
	transform: translate(-50%, -50%);
	animation: animate 1s infinite linear;
}

/* cart */
.cart-sx {
	padding: 0 2px;
	width: auto !important;
	min-width: 20px;
	box-sizing: border-box;
}

@keyframes animate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 760px) {
  .header {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 640px) {

  .product-thumb-wrapper img {
  	width: auto !important;
  	height: auto !important;
  }

  body.header-fixed .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
  }
  body.header-fixed .header__logo {
    display: none;
  }

  body.header-fixed .header-infobar__search {
    padding: 10px 15px 0;
    width: 100%;
  	background-color: #fff;
  	position: fixed;
  	left: 0;
  	z-index: 50;
  }

  .header-infobar__wrapper {
  	padding-top: 0 !important;
  }

  .header__nav {
  	z-index: 51;
  }

  .header__nav-mobile,
  .header__account {
  	min-width: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
  .header__nav-mobile,
  .header-account__name,
  .header-account__signin {
    background-color: #e5342a;
  }
  .header__nav-mobile {
  	padding-top: 10px;
  	padding-bottom: 10px;
  }
  .header__nav-mobile > span {
    background-color: #fff;
  }
  .wishlist_products_counter .wishlist_products_counter_number {
    margin-left: 8px;
    width: 20px !important;
    height: 20px !important;
    top: 9px !important;
    right: auto !important;
    left: 50%;
  }
  .header-shop {
  	min-width: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
  .header-shop__wishlist-wrapper {
  	min-width: 66.6%;
    -ms-flex-preferred-size: 66.6%;
    flex-basis: 66.6%;
  }
  .mygarage__wrapper,
  a.wishlist_products_counter {
  	display: flex;
    flex-basis: 50%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .mygarage,
  .wishlist_products_counter .wishlist_products_counter_text {
  	margin-right: 0 !important;
  }
  .sho {
  	min-width: 37%;
    -ms-flex-preferred-size: 37%;
    flex-basis: 37%;
  }
  .header-shop__link {
  	min-width: 100% !important;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
  }
  .cart-sx {
  	margin-left: 4px;
  	left: 50% !important;
  }
  .header-shop__link__icon {
  	left: -4px !important;
  }
}

.footer__social {
    margin-right: 0 !important;
}

.home-categories__all {
    display: none;
}

.add_to_cart_button {
    text-transform: capitalize;
}

.header.meow .container {
    padding-right: 0;
}

/* Fix a lot of space on the products page at bottom */

.single.single-product .footer {
    margin-top: 0;
}

.single.single-product #secondary {
    display: none;
}

.single.single-product #primary {
    margin-bottom: 0;
}

/* Remove PayPal block */

.single.single-product [data-partner-attribution-id="Woo_PPCP"] {
    display: none !important;
}


/* Fix giant gallery bug (moved to functions.php) */
/*
@media only screen and (max-width: 9999px) {
    div.woo-variation-product-gallery {
        width: 720px;
        max-width: 100% !important;
    }
}
 */

/* Control sizes on product page */

.single-product .quantity input.qty {
    border: 1px solid #3d3d3f;
}

.variations .value select {
    min-height: 50px;
}

/* Hide old Filters button on brands pages */
body.archive.tax-pwb-brand .show-sidebar-filter {
    display: none !important;
}

/* Add more spacing to the warehouse selector */
.stock-selector select.wpce-field-term {
    padding: 0.6180469716em 1.41575em !important;
    font-size: 18px;
    min-height: 52px;
}

/* Add spacing under search bar on categories pages */
@media screen and (max-width: 768px) {
    .archive .header-infobar .dgwt-wcas-search-wrapp {
        margin-bottom: 15px;
    }
}