
html {
    font-size: 100%;
}
body {
    font-size: 1rem; 
    color: #2C2C2C;
}


a {
	text-decoration: none;
	color: #ba0c2f;
}
.section {
    padding: 2.5rem 0;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.btn,
input[type="submit"].btn {
    padding: 15px 32px;
    border-radius: 245px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1rem;
    display: inline-block;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.btn-main,
input[type="submit"].btn-main {
    background-color: #BA0C2F;
    color: white;
}
.btn-bordered,
input[type="submit"].btn-bordered {
    background-color: white;
    border: 1px solid #BA0C2F;
    color: #BA0C2F;
    display: inline-block;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.btn-bordered:hover,
input[type="submit"].btn-bordered:hover {
    background-color: #BA0C2F;
    border: 1px solid #BA0C2F;
    color: white;
}
input[type="submit"].btn-form {
    padding: 15px 32px;
    width: 100%;
    text-align: center;
    text-transform: none;
    display: block;
}
.btn-form:hover,
input[type="submit"].btn-bordered:hover {
    background-color: #BA0C2F;
    color: white;
}
.section-title__box {
    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;
}
.section-title {
    margin: 0;
    font-family: Futura New Book !important;
    font-weight: 600;
    font-size: 2rem;
}
.section-title__more-link,
.section-title__more-link:focus,
.section-title__more-link:active {
    text-decoration: underline;
    font-size: 1.125rem;
}
@media screen and (max-width: 1200.99px) {
    .section {
        padding: 0;
        overflow: hidden;
    }
    .section-title__box {
        padding-right: 2rem;
    }
    .section-title {
        padding-left: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .section {
        padding: 0;
    }
    .section-title {
        font-size: 1.5rem;
        padding-left: 1rem;
    }
    .section-title__box {
        padding-right: 1rem;
    }
}

/* Slider */
.slider-button-prev,
.slider-button-next {
    position: absolute;
    top: calc(50% - 66px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 2px 25px rgba(133, 135, 138, 0.2);
            box-shadow: 0px 2px 25px rgba(133, 135, 138, 0.2);
    background-color: white;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.slider-button-next,
.slider-button-prev {
    opacity: 0;
}
.slider-button-next[role="button"],
.slider-button-prev[role="button"] {
    opacity: 1;
}
.splat-promo-button-next,
.splat-promo-button-prev {
    top: calc(50% - 26px);
}
.slider-button-prev:hover,
.slider-button-next:hover {
    -webkit-box-shadow: 0px 1px 15px rgba(133, 135, 138, 0.2);
            box-shadow: 0px 1px 15px rgba(133, 135, 138, 0.2);
}
.slider-button-prev {
    left: -105px;
}
.slider-button-next {
    right: -105px;
}
.slider-button-prev.swiper-button-disabled,
.slider-button-next.swiper-button-disabled {
    border: 1px solid #E8EBED;
    -webkit-box-shadow: 0px 2px 25px rgba(133, 135, 138, 0);
            box-shadow: 0px 2px 25px rgba(133, 135, 138, 0);
}
.slider-button-prev.swiper-button-disabled svg path,
.slider-button-next.swiper-button-disabled svg path {
    fill: #E8EBED;
}
.promo-pagination .swiper-pagination-bullet {
    width: 69px;
    height: 4px;
    opacity: 0.15;
    border-radius: 16px;
    flex: 1;
}
.promo-pagination .swiper-pagination-bullet-active {
    background: #BA0C2F;
    opacity: 1;
}
.promo-pagination .swiper-pagination-bullet {
    position: relative;
    overflow: hidden;
}
.promo-pagination .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.promo-pagination .swiper-pagination-bullet-active {
    background: rgba(161, 161, 161, 0.15);
}
.promo-pagination .swiper-pagination-bullet-active::before {
    background-color: #BA0C2F;
    -webkit-animation: slide-progress 2s cubic-bezier(0.3, 0, 0.3, 1) forwards;
            animation: slide-progress 2s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}
.swiper-paused .swiper-pagination-bullet-active::before {
    -webkit-animation-play-state: paused;
        animation-play-state: paused;
}
  
@-webkit-keyframes slide-progress {
    0% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@keyframes slide-progress {
    0% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}
@media screen and (max-width: 1439px) {
    .slider-button-prev[role="button"] {
        left: -25px;
    }
    .slider-button-next[role="button"] {
        right: -25px;
    }
}
@media screen and (max-width: 1200.99px) {
    .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
        display: none;
    }
    .slider-button-prev,
    .slider-button-next {
        height: 48px;
        width: 48px;
    }
    .slider-button-prev[role="button"] {
        left: calc(50% - 128px);
    }
    .slider-button-next[role="button"] {
        right: unset;
        left: calc(50% - 68px);
    }
    .splat-promo-button-next, 
    .splat-promo-button-prev {
        top: unset;
        bottom: 30px;
        z-index: 1;
    }
    .news-slider__box .slider-button-prev,
    .news-slider__box .slider-button-next {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .slider-button-next[role="button"] {
        right: 16px;
        left: unset;
    }
    .slider-button-prev[role="button"] {
        left: unset;
        right: 76px;
    }
}

/**
* Promo Section
**/
.promo-section {
    padding-top: calc(56px + 48px);
    padding-bottom: 2.5rem;
}
.promo-slider__box {
    position: relative;
}
.promo-slide__box {
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    background-position: center;
}
.promo-slide__info {
    padding: 3.75rem 4rem 2rem;
    max-width: calc(50% - 8rem);
    height: calc(100% - 5.75rem);
}
.promo-slide__tag {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: .925rem;
    line-height: 1.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #A5ACB3;
}
.promo-slide__title {
    margin: 0 0 0.75rem;
    font-family: Futura New Book !important;
    font-weight: 600;
    font-size: 2rem;
    line-height: 100%;
}
.promo-slide__text {
    margin-bottom: 24px;
    font-size: 1.25rem;
    line-height: 125%;
}
.promo-slide__btn {
    margin-top: 24px;
}
.promo-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: 48px;
    left: 64px;
    max-width: 240px;
    display: flex;
    z-index: 1;
}
@media screen and (max-width: 1200.99px) {
    .promo-section {
        padding: 3.5rem 0 4rem;
    }
    .promo-slide__box {
        border-radius: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 342px;
        background-size: cover;
    }
    .promo-slide__info {
        padding: 4.5rem 1rem 2rem 2rem;
        max-width: calc(50% - 3rem);
    }
    .promo-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -3px;
        left: -3px;
        max-width: 100vw;
    }
    .promo-pagination .swiper-pagination-bullet {
        width: 100%;
        height: 2px;
        border-radius: 0;
    }
    .promo-slide__btn {
        position: absolute;
        bottom: 32px;
        left: 32px;
    }
}
@media screen and (max-width: 767px) {
    .promo-section {
        padding: 3.5rem 0 3rem;
    }
    .promo-slide__box {
        background-position: top;
        height: calc(100vh - 56px - 20px);
        max-height: 150vw;
    }
    .promo-slide__info {
        padding: 2rem 1rem;
        margin-top: 80vw;
        max-width: 100%;
        height: auto;
    }
    .promo-slide__text {
        font-size: 1rem;
        line-height: 125%;
    }
    .promo-slide__btn {
        left: 16px;
    }
}
@media screen and (max-width: 375px) {
    .promo-slide__box {
        max-height: 155vw;
    }
}

/**
* Brands Section
**/
.brands-box {
    padding-top: 2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}
.brands-item {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    overflow: hidden;
}
.brands-item__title {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 12px;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}
.brands-item__icon {
    position: relative;
    bottom: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.brands-item:hover .brands-item__icon {
    bottom: -5px;
}
@media screen and (max-width: 1200.99px) {
    .brands-box {
        padding: 2rem 2rem 4rem;
        width: 100%;
        overflow-x: scroll;
    }
    .brands-box::-webkit-scrollbar {
            display: none;
    }
    .brands-item {
        width: 180px;
    }
}
@media screen and (max-width: 767px) {
    .brands-box {
        padding: 1.5rem 1rem 3rem;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
        max-width: -webkit-fill-available;
    }
    .brands-item__icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .brands-item {
        margin-right: 0;
        width: auto;
    }
    .brands-item__title {
        font-size: 1.125rem;
    }
}

/**
* Products Section
**/
.products-section {
    padding-bottom: 0;
}
.popular-products-slider {
    position: relative;
}
.popular-products__list {
    padding: 2rem 2rem .5rem; 
    margin-top: 0;
    margin-bottom: 0!important;
    margin-left: -2rem;
    margin-right: -2rem;
}
.popular-products__list ul.products li.product  {
    width: auto;
    min-height: 483px;
}
.popular-products__list ul.products li.product a:not(.woocommerce-loop-product__link) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.popular-products__list ul.products li.product img {
    margin-top: 0!important;
    max-width: 100%;
}
.popular-products__list ul.products.swiper-wrapper li.product>p {
    display: none;
}
.popular-products__list ul.products li.product>.price {
    width: 100%;
}
.popular-products__list ul.products li.product h2.woocommerce-loop-product__title {
    margin-bottom: 0 !important;
    font-size: 1.25rem!important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.popular-products__list li.product .splat-add-to-cart {
    padding-top: 24px;
    margin-top: 0;
}
.popular-products__list li.product .splat-add-to-cart .count-swith_number {
    -webkit-box-flex: 40%!important;
        -ms-flex: 40%!important;
            flex: 40%!important;
}
.popular-products__list ul.products.swiper-wrapper {
    width: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.popular-products__list ul.products.swiper-wrapper .splat-add-to-cart .splat-add-to-cart-btn {
    padding: 0;
}
.popular-products__list ul.products.swiper-wrapper .like svg,
.popular-products__list ul.products.swiper-wrapper .splat-add-to-cart svg  {
    position: relative;
} 
@media screen and (max-width: 1200.99px) {
    .popular-products__list {
        padding: 2rem 2rem 3rem; 
        overflow-x: scroll;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .popular-products__list::-webkit-scrollbar {
            display: none;
    }
    .popular-products__list ul.products {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }
    .popular-products__list ul.products li.product {
        min-width: 224px;
        width: 224px!important;
    }
    .popular-products__list ul.products li.product > p {
        display: none;
    }
    .popular-products__list ul.products li.product .count-switch {
        padding: 11px;
    }
    .popular-products__list ul.products li.product 
    .splat-add-to-cart-btn {
        padding: 0;
        height: 52px;
    }
}
@media screen and (max-width: 767px) {
    .popular-products__list {
        padding: 1.5rem 1rem 2rem; 
    }
    .popular-products__list ul.products li.product  {
        min-height: unset;
    }
    .popular-products__list ul.products li.product {
        -webkit-box-shadow: 0px 2px 30px rgb(0 0 0 / 10%);
        box-shadow: 0px 2px 30px rgb(0 0 0 / 10%);
        border-radius: 16px;
        min-width: 132px;
        width: 132px !important;
        margin-right: 12px !important;
    }
    .popular-products__list ul.products li.product > .price {
        margin-bottom: 12px;
        font-size: 1.25rem;
        line-height: 100%;
    }
    .popular-products__list ul.products li.product .loop-product-tags .tagged_as {
        font-size: .5rem;
        line-height: 10px;
    }
    .popular-products__list ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 1rem!important;
        line-height: 100%;
        max-height: 67.3px;
    }
    .popular-products__list ul.products li.product .splat-add-to-cart-btn {
        font-size: .875rem;
        line-height: 1.065rem;
        height: 40px;
    }
    .popular-products__list ul.products li.product .like {
        right: 12px;
        width: 20px;
        height: 20px;
    }
    .popular-products__list ul.products li.product .count-switch {
        padding: 6px;
    }
}

/**
* Promotion Section
**/
.sales-box {
    padding-top: 2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}
.sales-item {
    position: relative;
    top: 0;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.sales-item:hover {
    top: -5px;
    -webkit-box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.1);
}
.sales-item--ended,
.sales-item.sales-item--ended:hover  {
    background-color: #F2F4F5;
    -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0);
            box-shadow: 0px 2px 30px rgba(0, 0, 0, 0);
}
.sales-item__thumb {
    height: 200px;
    overflow: hidden;
}
.sales-item__info {
    padding: 1.5rem;
    min-height: 342px;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.sales-item__info-content {
    overflow: hidden;
}
.sales-item__date {
    margin-bottom: 8px;
    font-size: .875rem;
    line-height: 1.125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #A5ACB3;
}
.sales-item__status {
    padding: 4px 8px 3px;
    border-radius: 76px;
    background: #BA0C2F;
    color: white;
    font-weight: 700;
    display: inline;
    text-transform: uppercase;
    font-size: .625rem;
    line-height: .8125rem;
    letter-spacing: 0.04em;
    height: 20px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.sales-item--ended .sales-item__status {
    border: 1px solid #BA0C2F;
    color: #BA0C2F;
    background: transparent;
}
.sales-item__title {
    margin-top: 16px;
    margin-bottom: 12px;
    width: 100%;
}
.sales-item__title a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 110%;
    letter-spacing: 0.02em;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.sales-item__title a:hover {
    color: #BA0C2F;
}
.sales-item__excerpt {
    margin-bottom: 24px;
    font-size: 1.125rem;
    line-height: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.sales-item__readmore {
    padding: 7px 32px;
    width: -webkit-fill-available;
    display: block;
    text-align: center;
    font-weight: 600;
    line-height: 200%;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.sales-item--ended .sales-item__readmore {
    background: #E8EBED;
    border-color: #E8EBED;
    color: #2C2C2C;
}
.sales-item__readmore:hover,
.sales-item--ended .sales-item__readmore:hover {
    background: #BA0C2F;
    border-color: #BA0C2F;
    color: white;
}
@media screen and (max-width: 1200.99px) {
    .sales-box {
        padding: 2rem 2rem 4rem;
        margin-top: 0;
        overflow-x: scroll;
        grid-gap: 1rem;
    }
    .sales-box::-webkit-scrollbar {
        display: none;
    }
    .sales-item {
        width: 100%;
        min-width: 282px;
    }
    .sales-item__thumb {
        height: 146px;
    }
    .sales-item__info {
        min-height: 370px;
    }
}
@media screen and (max-width: 1023.99px) {
    .sales-box {
        grid-gap: 1rem;
    }
}
@media screen and (max-width: 767px) {
    .sales-box {
        padding: 1.5rem 1rem 3rem;
    }
    .sales-item {
        width: 255px;
    }
    .sales-item__thumb {
        height: 132px;
    }
    .sales-item__info {
        padding: 1.25rem;
        min-height: 320px;
    }
    .sales-item__date {
        font-size: .75rem;
        line-height: .9375rem;
    }
    .sales-item__title a {
        font-size: 1.125rem;
    }
    .sales-item__excerpt {
        margin-bottom: 24px;
        font-size: 1rem;
        line-height: 120%;
    }
    .sales-item__readmore {
        display: block;
        text-align: center;
        font-weight: 600;
        line-height: 200%;
    }
}

/**
* Articles Section
**/
.interesting-box {
    padding-top: 2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}
.interesting-item {
    position: relative;
    top: 0;
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.interesting-item:hover {
    top: -5px;
    -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.interesting-item__category {
    margin-bottom: 12px;
}
.interesting-item__category a {
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #A5ACB3;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.interesting-item__category a:hover  {
    color: #BA0C2F;
}
.interesting-item__info {
    margin-bottom: 16px;
}
.interesting-item__title {
    margin-bottom: 12px;
}
.interesting-item__title a {
    color: #252525;
    font-size: 1.5rem;
    line-height: 110%;
    font-weight: 600;
    letter-spacing: 0.02em;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.interesting-item__title a:hover {
    color: #BA0C2F;
}
.interesting-item__excerpt {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5rem;
}
.interesting-item__author {
    padding-left: 24px;
    background-image: url(../images/ico-user.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    line-height: 125%;
    letter-spacing: 0.02em;
}
.interesting-item__thumb {
    height: 134px;
    border-radius: 8px;
    overflow: hidden;
}
.interesting-box__categories {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1rem 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1rem;
}
.interesting-category {
    position: relative;
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    display: block;
    overflow: hidden;
}
.interesting-category__thumb {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.interesting-category:hover .interesting-category__thumb {
    bottom: -5px;
}
.interesting-category__expert {
    background: -o-linear-gradient(315.26deg, #50C9C3 0.15%, #B8EFEC 100%);
    background: linear-gradient(134.74deg, #50C9C3 0.15%, #B8EFEC 100%);
}
.interesting-category__useful {
    background: -o-linear-gradient(315.09deg, #EB3349 0%, #FF8773 100.15%);
    background: linear-gradient(134.91deg, #EB3349 0%, #FF8773 100.15%);
}
.interesting-category__title {
    font-size: 1.5rem;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: white;
    width: 50%;
}
@media screen and (max-width: 1200.99px) {
    .interesting-box {
        padding: 2rem; 
        -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1.5rem;
        overflow-x: scroll;
    }
    .interesting-item {
        width: 100%;
        min-width: 282px;
    }
    .interesting-box::-webkit-scrollbar {
        display: none;
    }
    .interesting-category__title {
        width: 70%;
    }
    .interesting-item__thumb {
        height: 100px;
    }
    .interesting-category {
        padding: 1.25rem;
    }
    .interesting-category__thumb {
        width: 160px;
        left: 0;
        margin: auto;
    }
}
@media screen and (max-width: 1023.99px) {
    .interesting-box {
        grid-gap: 1rem;
    }
    .interesting-box__categories {
        min-width: 282px;
    }
}
@media screen and (max-width: 767px) {
    .interesting-box {
        padding: 1.5rem 1rem;
        -ms-grid-columns: 1fr 1rem 1fr 1rem 166px;
        grid-template-columns: 1fr 1fr 166px;
        grid-gap: 1rem;
    }
    .interesting-item {
        padding: 1.5rem;
        width: 256px;
        -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
                box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }
    .interesting-item__title a {
        font-size: 1.125rem;
    }
    .interesting-box__categories {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 1fr .75rem 1fr;
        grid-template-rows: 1fr 1fr; 
        grid-gap: .75rem;
        min-width: unset;
    }
    .interesting-category {
        padding: 1.25rem;
    }
    .interesting-category__title {
        font-size: 1.125rem;
        line-height: 100%;
    }
    .interesting-category__thumb {
        width: 80%;
        left: 0;
        margin: auto;
    }
    .interesting-item__excerpt {
        font-size: 1rem;
        line-height: 125%;
    }
}

/**
* Main Section
**/
.splat-today__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}
.splat-today__info {
    margin-top: 2.5rem;
}
.splat-today__excerpt {
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.splat-today__excerpt p {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 120%;
}
.splat-today__numbers {
    margin-top: 4rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}
.splat-today__number-value {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 100%;
    color: #BA0C2F;
}
.splat-today__number-text { 
    margin-top: .75rem;
    line-height: 125%;
    letter-spacing: 0.02em;
}
.splat-today__number-text span{
    display: block;
}
@media screen and (max-width: 1200.99px) {
    .splat-today__box {
        padding: 2rem 2rem 4rem;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .splat-today__box .section-title {
        padding: 0;
    }
    .splat-today__sphere {
        display: none;
    }
    .splat-today__info {
        margin-top: 1rem;
    }
    .splat-today__excerpt {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .splat-today__numbers {
        margin-top: 3rem;
    }
}
@media screen and (max-width: 767px) {
    .splat-today__box {
        padding: 1.5rem 1rem 3rem;
    }
    .splat-today__info {
        display: -ms-grid;
        display: grid;
    }
    .splat-today__info .section-title {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .splat-today__excerpt {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .splat-today__excerpt p {
        margin-bottom: .5rem;
        font-size: 1.125rem;
    }
    .splat-today__numbers {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        margin-top: 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: 1fr 1.5rem 1fr 1.5rem 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-gap: 1.5rem;
    } 
    .splat-today__numbers > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .splat-today__numbers > *:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .splat-today__numbers > *:nth-child(3) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .splat-today__number {
        background-repeat: no-repeat;
        background-position: right;
    }
    .splat-today__number-value {
        font-size: 1.5rem;
        line-height: 100%;
        font-weight: 600;
        color: #252525;
    }
    .splat-today__number-text {
        margin-top: .5rem;
    }
    .splat-today__number-text span{
        display: none;
    }
    .splat-today__readmore {
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        padding: 11px 2rem;
        text-align: center;
        margin-top: 2rem;
    }
}

/**
* About Section
**/
.about-box {
    padding-top: 2rem;
    display: -ms-grid;
    display: grid;
    grid-gap: 1.5rem;
}
.about-box-3 {
    grid-template-columns: repeat(3, 1fr);
}
.about-box-4 {
    grid-template-columns: repeat(4, 1fr);
}
.about-box-5 {
    grid-template-columns: repeat(5, 1fr);
}
.about-box-6 {
    grid-template-columns: repeat(6, 1fr);
}
.about-item {
    border-radius: 16px;
    overflow: hidden;
}
.about-item__title {
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #2C2C2C;
    min-height: 92px;
}
.about-item__icon {
    position: relative; 
    bottom: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.about-item:hover .about-item__icon {
    bottom: -5px;
}
@media screen and (max-width: 1200.99px) {
    .about-box {
        padding: 2rem 2rem 4rem;
        grid-gap: 0.725rem;
        overflow-x: scroll;
    }
    .about-item {
        width: 282px;
    }
    .about-box::-webkit-scrollbar {
        display: none;
    }
}
@media screen and (max-width: 1023.99px) {
    .about-box {
        grid-gap: 0.725rem;
    }
}
@media screen and (max-width: 767px) {
    .about-box {
        padding: 1.5rem 1rem 3rem;
    }
    .about-item {
        width: 160px;
        height: 144px;
    }
    .about-item__title {
        padding: .75rem 1rem;
        font-size: 1.125rem;
        min-height: 54px;
    }
}

/* sphere */
.sphere-box,
.sphere-box__scene {
    height: 100%;
}
.sphere-box__loading {
    height: 100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center
}
.sphere-box__loading-box {
    width: 50px;
    height: 50px;
}

/**
* News Section
**/
.news-section {
    padding-bottom: 0;
}
.news-slider__box {
    position: relative;
}
.news-slider {
    padding: 2rem 2rem 0;
    margin: 0 -2rem;
}
.news-item {
    position: relative;
    top: 0;
    margin-bottom: 2.5rem;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    min-height: 380px;
    overflow: hidden;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-item:hover {
    top: -5px;
}
.news-item__info {
    padding: 1.25rem 1.5rem 1.5rem;
}
.news-item__thumb {
    max-height: 160px;
    height: 160px;
    overflow: hidden;
}
.news-item__thumb img {
    height: 160px;
    width: auto;
    max-width: unset;
}
.news-item__date {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #A5ACB3;
}
.news-item__title a {
    color: #252525;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 110%;
    letter-spacing: 0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-item__title a:hover {
    color: #BA0C2F;
}
.news-item__excerpt {
    margin-top: .75rem;
    font-size: 1.125rem;
    line-height: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1200.99px) {
    .news-slider {
        padding: 2rem 2rem 4rem;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: scroll;
    }
    .news-slider::-webkit-scrollbar {
        display: none;
    }
    .news-slide {
        -ms-flex-negative: 1;
            flex-shrink: 1;
    }
    .news-item {
        margin-right: 1rem;
        margin-bottom: 0;
        min-height: 410px;
        width: 282px;
    }
    .news-item__thumb,
    .news-item__thumb img {
        max-height: 118px;
        height: 118px;
    }
}
@media screen and (max-width: 767px) {
    .news-slider {
        padding: 1.5rem 1rem 3rem;
    }    
    .news-item {
        margin-right: 1rem;
        min-height: 320px;
        width: 256px;
    }
    .news-item__info {
        padding: 1rem 1.25rem 1.25rem;
    }
    .news-item__thumb,
    .news-item__thumb img {
        max-height: 107px;
        height: 107px;
    }
    .news-item__date {
        margin-bottom: 1rem;
        font-size: 0.75rem;
        line-height: .9375rem;
    }
    .news-item__title a {
        font-size: 1.125rem;
        line-height: 100%;
    }
    .news-item__excerpt {
        font-size: 1rem;
        line-height: 120%;
    }
}

/**
* Form Section
**/
.section-form__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 1.5rem 50%;
    grid-template-columns: 50% 50%;
    grid-gap: 1.5rem;
}
.section-form__text {
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 125%;
}
.section-form__item .name-phone-form-cooking {
    padding: 0 0px 1.5rem 0px;
}
.section-form__item .name-phone-form-cooking input,
.section-form__item .email-info-form-cooking input,
.section-form__item .info-form-cooking textarea {
    width: 100%;
    font-size: 1rem;
    max-width: 100%;
}
.section-form__item .wpcf7-response-output,
.section-form__item .section-form__hidden,
.section-form__item .sinfo-form-cooking {
    display: none;
}
.section-form__item .name-phone-form-cooking .name-form-cooking,
.section-form__item .name-phone-form-cooking .phone-form-cooking {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}
span.wpcf7-form-control-wrap.phonetext {
    width: 100%;
    display: inline-grid;
}
@media screen and (max-width: 1200.99px) {
    .section-form__box {
        display: block;
        padding: 0 2rem 3rem;
    }
    .section-form__box .section-title {
        padding: 0;
    }
    .section-form__text {
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 1.25rem;
        line-height: 125%;
    }
    .section-form__item .name-phone-form-cooking .phone-form-cooking {
        margin-top: 0;
    }
    .section-form__item .select-options {
        position: relative;
        top:-24px;
    }
    .name-phone-form-cooking .phone-form-cooking {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .section-form__box {
        display: block;
        padding: 0 1rem 2rem;
    }
    .section-form__text {
        margin-top: 1.25rem;
        margin-bottom: 0;
        font-size: 1rem;
        line-height: 125%; 
    }
    .section-form__item .name-phone-form-cooking .name-form-cooking,
    .section-form__item .name-phone-form-cooking .phone-form-cooking {
        width: 100%;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
    .section-form__item .name-phone-form-cooking .phone-form-cooking {
        margin-top: 24px;
    }
    .section-form__item .email-form-cooking {
        padding-top: 24px;
        padding-bottom: 0;
    }
    .section-form__item .select-options {
        top: 0;
    } 
    .section-form__item .phone-form-cooking input {
        padding-left: 70px;
    }
}

@media screen and (max-width: 380px) {
    .popular-products__list li.product .splat-add-to-cart {
        margin-top: 13.5px !important;
    }
}