@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------------------*/


/* GLOBAL SETTINGS */


/*-------------------------------------------------------------------------------------------------------------------------------*/

html {
    height: auto;
}

body {
    height: auto;
    overflow: visible;
}

body ::selection {
    color: #fff;
    background: #000;
}

body ::-moz-selection {
    color: #fff;
    background: #000;
}

.swiper-slide:not(:first-child) {
    display: block;
}

html.overflow-menu,
html.overflow-menu body {
    overflow: hidden;
}

.row-0,
.no-padd .row {
    margin-left: 0;
    margin-right: 0;
}

.row-0 div,
.no-padd .row div[class^="col"] {
    padding-left: 0;
    padding-right: 0;
}

.row-16 {
    margin-left: -6px;
    margin-right: -6px;
}

.row-16 div[class^="col"] {
    padding-left: 6px;
    padding-right: 6px;
}

.row-50 {
    margin-left: -25px;
    margin-right: -25px;
}

.row-50 div[class^="col"] {
    padding-left: 25px;
    padding-right: 25px;
}

.separator {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: #d3d3d3;
}

.fl-jus-sb {
    display: flex;
    justify-content: space-between;
}

.align-content>* {
    margin: 0 auto;
}

.upper {
    text-transform: uppercase;
}

.no-padd {
    padding: 0;
}

.section {
    position: relative;
}

.section.full-height {
    height: 100vh;
}

@media (max-width: 767px) {
    .row-50 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row-50 div[class^="col"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*-----------------------------------------------------------------------------------------------------------------------*/


/* FORM ELEMENTS */


/*-----------------------------------------------------------------------------------------------------------------------*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000000;
    opacity: 0.7;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #000000;
    opacity: 0.7;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #000000;
    opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #000000;
    opacity: 0.7;
}

textarea {
    display: block;
    resize: none;
    overflow: auto;
}

input[type="submit"],
input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 0;
}

input[type=search]::-ms-reveal,
input[type=search]::-ms-clear,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration,
select::-ms-expand,
input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.input-field-wrapp.fail .input {
    color: #ef3434;
    border-color: #ef3434;
}

.input-field-wrapp.fail input::placeholder {
    color: #ef3434;
}

.input:focus {
    border-color: #BB1316;
}


/*input type number*/

.custom-input-number {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background: #fff;
}

.custom-input-number .input-field {
    line-height: 50px;
    padding: 0 50px;
    font-size: 15px;
    color: #000;
    text-align: center;
    height: 50px;
    max-width: 168px;
    width: 168px;
    pointer-events: none;
    border: none;
    font-style: italic;
    letter-spacing: 0.5px;
}

.custom-input-number .increment,
.custom-input-number .decrement {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    display: inline-block;
    z-index: 2;
    padding: 0;
    cursor: pointer;
}


/*checkbox radio*/

.radiobox-wrapper {
    position: relative;
}

.radiobox-wrapper .radiobox-item {
    margin-bottom: 20px;
    display: block;
    font-size: 0;
}

.radiobox-wrapper .radiobox-item:last-child {
    margin-bottom: 0;
}

.radiobox-inline .radiobox-item {
    margin-right: 35px;
    display: inline-block;
    font-size: 0;
}

.radiobox-inline .radiobox-item:last-child {
    margin-right: 0;
}


/*-------------------------------------------------------------------------------------------------------------------------------*/


/* SIMPLE PAGE */


/*-------------------------------------------------------------------------------------------------------------------------------*/

.simple-page {
    position: relative;
}

.simple-page p,
.simple-page a {
    position: relative;
    margin-bottom: 25px;
}

.simple-page a {
    position: relative;
    text-decoration: underline;
}

.simple-page a:hover {
    color: var(--light-brown-hover);
}

.simple-page ul li,
.simple-page ol li {
    position: relative;
    font-size: 18px;
    line-height: 27px;
    color: var(--brown);
    font-weight: 400;
    padding-left: 30px;
}

.simple-page ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brown);
}

.simple-page ol {
    counter-reset: number;
}

.simple-page ol li:before {
    color: var(--brown);
    font-size: 15px;
    font-weight: 700;
    counter-increment: number;
    content: "0" counter(number) ".";
    position: absolute;
    top: 1px;
    left: 0;
}

.simple-page ul li:last-child,
.simple-page ol li:last-child {
    margin-bottom: 0;
}

.simple-page ul li span,
.simple-page ol li span {
    color: var(--brown);
}

.simple-page>*:last-child {
    margin-bottom: 0;
}

.simple-page h1,
.simple-page h2,
.simple-page h3,
.simple-page h4,
.simple-page h5,
.simple-page h6 {
    margin-bottom: 35px;
}

.simple-page>.simple-slider,
.simple-page>blockquote,
.simple-page>iframe,
.simple-page .simple-video {
    margin: 40px 0;
}

.simple-page>ul,
.simple-page>ol,
.simple-page img {
    margin: 25px 0;
}

.simple-page>img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin: 40px 0;
}

.simple-page>iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 500px;
    max-height: calc(56.3vw - 30px);
    margin: 40px 0;
    border: 0;
}


/*media*/

@media (min-width: 1200px) {
    .simple-page a:hover:before {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .simple-page p,
    .simple-page a {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .simple-page>img,
    .simple-page>figure,
    .simple-page>blockquote,
    .simple-page>iframe {
        margin: 20px 0;
    }
}


/*-------------------------------------------------------------------------------------------------------------------------------*/


/* POPUPS */


/*-------------------------------------------------------------------------------------------------------------------------------*/

.popup-wrapper {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
}

.popup-wrapper.active {
    left: 0;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.popup-wrapper .bg-layer {
    position: absolute;
    left: 0;
    top: -100px;
    right: 0;
    bottom: -100px;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.popup-wrapper.active .bg-layer {
    opacity: 1;
}

.popup-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
    text-align: center;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    padding: 15px;
    letter-spacing: 0;
}

.popup-content.active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.popup-content:after {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    content: "";
}

.popup-content .layer-close {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10000px;
}

.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: inline-block;
    cursor: pointer;
    z-index: 1;
    background: #f7f7f7;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.btn-close span {
    height: 13px;
    width: 13px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-close span:before,
.btn-close span:after {
    content: "";
    height: 1px;
    width: 17px;
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #666666;
}

.btn-close span:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.popup-container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
    background: #fff;
    max-width: 720px;
    z-index: 1;
}

.popup-align {
    overflow: hidden;
    position: relative;
    padding: 50px 40px 70px;
}


/*media*/

@media (min-width: 1200px) {
    .btn-close:hover {
        background: #000;
    }

    .btn-close:hover span:before,
    .btn-close:hover span:after {
        background: #fff;
    }
}

@media (max-width: 767px) {
    .popup-align {
        padding: 50px 15px 30px;
    }
}

.footer {
    background-color: #091219;
    padding: 150px 0 50px;
    border-top: 10px solid #33A749;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1470px) {
    .footer {
        padding: 80px 0 30px;
    }
}

@media (max-width: 1200px) {
    .footer {
        padding: 50px 0 30px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0;
    }
}

.footer:before {
    content: '';
    height: 500px;
    width: 500px;
    border-radius: 50%;
    border: 2px dashed #D5DF40;
    position: absolute;
    left: -300px;
    top: -200px;
}

@media (max-width: 576px) {
    .footer:before {
        height: 370px;
        width: 370px;
    }
}

.footer__main {
    width: 100%;
    max-width: 1440px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    .footer__main {
        padding: 0;
    }
}

.footer .footer-form__title {
    max-width: 460px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 30px;
}

@media (max-width: 992px) {
    .footer .footer-form__title {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer .footer-form__title {
        text-align: center;
        font-size: 24px;
        letter-spacing: 0;
        max-width: 305px;
        margin: 0 auto;
    }
}

.footer .footer-form__group {
    margin-top: 15px;
    position: relative;
}

.footer .footer-form__group .input {
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    width: 100%;
    max-width: 430px;
    border-radius: 26px;
    height: 50px;
    padding: 0 25px;
}

@media (max-width: 992px) {
    .footer .footer-form__group .input {
        max-width: 100%;
    }
}

.footer .footer-form__group .input::placeholder {
    color: #000000;
}

.footer .footer-form__group .footer-btn {
    max-width: 150px;
    background-color: #33a749;
    border: 2px solid #33a749;
    position: absolute;
    right: 70px;
    top: 0;
    color: #fff;
}

@media (max-width: 1200px) {
    .footer .footer-form__group .footer-btn {
        right: 0;
    }
}

@media (max-width: 360px) {
    .footer .footer-form__group .footer-btn {
        position: relative;
        margin-top: 15px;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .footer .footer-form__group .footer-btn:hover {
        background: #C5874E;
        border: 2px solid #C5874E;
    }
}

.footer .footer-nav {
    display: flex;
}

@media (max-width: 992px) {
    .footer .footer-nav {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .footer .footer-nav {
        display: block;
    }
}

.footer .footer-nav__list {
    margin-left: 30px;
}

@media (max-width: 992px) {
    .footer .footer-nav__list {
        margin-left: 0;
        margin-right: 100px;
    }
}

@media (max-width: 992px) and (max-width: 576px) {
    .footer .footer-nav__list {
        margin-right: 0;
    }
}

.footer .footer-nav__list:last-child {
    margin-left: 160px;
}

@media (max-width: 1470px) {
    .footer .footer-nav__list:last-child {
        margin-left: 60px;
    }
}

@media (max-width: 992px) {
    .footer .footer-nav__list:last-child {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .footer .footer-nav__list:last-child {
        margin-top: 15px;
    }
}

.footer .footer-nav__link {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: 0.15px;
    line-height: 32px;
    display: block;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .footer .footer-nav__link {
        margin-bottom: 20px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .footer .footer-nav__link {
        margin-bottom: 15px;
    }
}

@media (min-width: 1200px) {
    .footer .footer-nav__link:hover {
        color: #d4dc67;
    }
}

.footer .footer-nav__link:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .footer .footer-contact {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .footer .footer-contact {
        margin-top: 15px;
    }
}

.footer .footer-contact li {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: 0.15px;
    line-height: 32px;
}

.footer .footer-contact li a {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: 0.15px;
    line-height: 32px;
}

@media (min-width: 1200px) {
    .footer .footer-contact li a:hover {
        opacity: .7;
    }
}

.footer .footer-contact__links {
    display: flex;
}

@media (max-width: 1200px) {
    .footer .footer-contact__links {
        display: block;
    }
}

@media (max-width: 992px) {
    .footer .footer-contact__links {
        display: flex;
    }
}

.footer .footer-contact__links span {
    margin: 0 8px;
}

.footer .footer-contact__links .color-yellow {
    color: #D5DF40;
}

@media (max-width: 1200px) {
    .footer .footer-contact__links .color-yellow {
        display: block;
    }
}

.footer .footer-soc-title {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: 0.15px;
    line-height: 32px;
    margin-bottom: 10px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .footer .footer-soc-title {
        margin-top: 30px;
    }
}

.footer .footer-soc {
    display: flex;
}

.footer .footer-soc a {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid #C5874E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.footer .footer-soc a:last-child {
    margin-right: 0;
}

.footer .footer-soc a svg {
    height: 22px;
    width: 22px;
    fill: #fff;
}

@media (min-width: 1200px) {
    .footer .footer-soc a:hover {
        background: #C5874E;
    }
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

@media (max-width: 576px) {
    .footer__bottom {
        display: block;
        margin-top: 30px;
    }
}

.footer__bottom .website-by {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15px;
}

.footer__bottom .website-by:hover {
    color: var(--yellow);
}

.footer .copy {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 18px;
    color: #fff;
}

@media (max-width: 1200px) {
    .footer .copy {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .footer .copy {
        display: block;
        max-width: 70%;
    }
}

.footer .copy a {
    text-decoration: underline;
    color: #fff;
    margin-left: 75px;
}

@media (max-width: 576px) {
    .footer .copy a {
        display: inline;
        margin-left: 0;
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .footer .copy a:hover {
        opacity: 0.7;
    }
}

.top-banner {
    padding: 160px 0 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

@media (max-width: 1470px) {
    .top-banner {
        padding: 120px 0 20px;
    }
}

@media (max-width: 992px) {
    .top-banner {
        padding: 120px 0 50px;
    }
}

@media (max-width: 767px) {
    .top-banner {
        padding: 120px 0 40px;
    }
}

.top-banner:before {
    content: '';
    background: url("../img/products/decor1.png") center no-repeat;
    background-size: contain;
    height: 880px;
    width: 690px;
    position: absolute;
    right: -30px;
    top: -180px;
}

@media (max-width: 1470px) {
    .top-banner:before {
        height: 800px;
        width: 600px;
    }
}

@media (max-width: 992px) {
    .top-banner:before {
        height: 750px;
        width: 490px;
    }
}

@media (max-width: 576px) {
    .top-banner:before {
        height: 530px;
        width: 330px;
        right: -130px;
        top: -60px;
    }
}

.top-banner:after {
    content: '';
    height: 620px;
    width: 620px;
    border: 2px dashed #D5DF40;
    border-radius: 50%;
    position: absolute;
    right: 80px;
    top: -100px;
    z-index: 0;
}

@media (max-width: 1470px) {
    .top-banner:after {
        height: 570px;
        width: 570px;
    }
}

@media (max-width: 1200px) {
    .top-banner:after {
        display: none;
    }
}

.top-banner__content {
    max-width: 630px;
}

@media (max-width: 992px) {
    .top-banner__content {
        max-width: 75%;
    }
}

@media (max-width: 576px) {
    .top-banner__content {
        max-width: 85%;
    }
}

.top-banner__title {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .top-banner__title {
        margin-bottom: 15px;
        font-size: 28px;
    }
}

.top-banner__img {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .top-banner__img {
        margin-top: 30px;
    }

    .products-page .top-banner__img {
        margin-top: 55px;
    }
}

@media (max-width: 767px) {
    .top-banner__img {
        margin-top: 15px;
    }
}

.top-banner__img img {
    max-width: 540px;
    max-height: 445px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

@media (max-width: 1200px) {
    .top-banner__img img {
        max-width: 470px;
        max-height: 390px;
    }
}

@media (max-width: 576px) {
    .top-banner__img img {
        max-width: 100%;
        max-height: 300px;
    }
}

.back-link {
    position: absolute;
    left: 40px;
    top: 40px;
}

@media (max-width: 1470px) {
    .back-link {
        left: 20px;
        top: 30px;
    }
}

.back-link svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@media (min-width: 1200px) {
    .back-link:hover {
        transform: translateX(-5px);
    }
}

.block-double {
    display: flex;
}

@media (max-width: 576px) {
    .block-double {
        flex-direction: column-reverse;
    }
}

.block-double__item {
    height: 540px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 2100px) {
    .block-double__item {
        height: 620px;
    }
}

@media (max-width: 1200px) {
    .block-double__item {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .block-double__item {
        height: 420px;
        padding: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .block-double__item {
        width: 100%;
        height: auto;
        padding: 30px 15px;
    }
}

.block-double__item .block-double-decor-img {
    position: absolute;
}

.block-double__item.left {
    background: #242C32;
}

.block-double__item.left .block-double-decor-img {
    max-height: 330px;
    max-width: 100%;
    right: 0;
    bottom: 0;
}

@media (max-width: 1200px) {
    .block-double__item.left .block-double-decor-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .block-double__item.left .block-double-decor-img {
        display: none;
    }
}

.block-double__item.right {
    background: #39B63E;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.block-double__item.right .block-double-decor-img {
    max-height: 330px;
    max-width: 100%;
    left: 0;
    bottom: 0;
}

@media (max-width: 1200px) {
    .block-double__item.right .block-double-decor-img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .block-double__item.right .block-double-decor-img {
        display: none;
    }
}

.block-double__item.custom-cursor {
    cursor: url(../img/button.png), auto;
}

.block-double__item__content {
    width: 495px;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .block-double__item__content {
        width: 77%;
    }
}

@media (max-width: 576px) {
    .block-double__item__content .text .h3 {
        font-weight: bold;
    }
}

.block-double__item__content .text p {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.15px;
    line-height: 32px;
}

@media (max-width: 576px) {
    .block-double__item__content .text p {
        font-size: 18px;
        line-height: 1.2;
    }
}

.block-double__item__content .btn {
    max-width: 245px;
    border: 2px solid #FFFFFF;
    margin: 50px auto 0;
}

@media (max-width: 576px) {
    .block-double__item__content .btn {
        margin: 30px auto 0;
    }
}

@media (min-width: 1200px) {
    .block-double__item__content .btn:hover {
        background: transparent;
        border: 2px solid #FFFFFF;
    }
}

@media (max-width: 576px) {
    .block-double .home-double-recipe {
        height: 210px;
    }
}

.block-double .home-double-recipe .block-double-btn {
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
    text-align: center;
    height: 190px;
    width: 190px;
    background-color: #39B63E;
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transform: scale(0);
}

.block-double .home-double-recipe .block-double-btn:before {
    content: '';
    height: 220px;
    width: 220px;
    border: 2px dashed #39B63E;
    border-radius: 50%;
    position: absolute;
    transition: .3s all ease;
}

@media (min-width: 1200px) {
    .block-double .home-double-recipe .block-double-btn:hover:before {
        transform: rotate(360deg);
    }
}

@media (min-width: 1200px) {
    .block-double .home-double-recipe:hover .block-double-btn {
        transform: scale(1);
    }
}

.block-double .double-where-to-buy {
    text-align: center;
}

.block-double .double-where-to-buy__img {
    max-height: 155px;
    max-width: 275px;
    display: block;
    margin: 0 auto 30px;
}

@media (max-width: 767px) {
    .block-double .double-where-to-buy__title {
        font-size: 32px;
        font-weight: 500;
    }
}

.block-double .double-where-to-buy__text {
    max-width: 500px;
    margin: 20px auto 45px;
}

.block-double .double-where-to-buy__btn {
    margin: 0 auto;
    background: #33A749;
    border: 2px solid #33A749;
    color: #fff;
}

@media (min-width: 1200px) {
    .block-double .double-where-to-buy__btn:hover {
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
    }
}

.block-full {
    padding: 120px 0 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: #242C32;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1470px) {
    .block-full {
        padding: 100px 0;
        background-position-x: center;
    }
}

@media (max-width: 1200px) {
    .block-full {
        padding: 80px 0;
        background-position-x: center;
    }
}

@media (max-width: 767px) {
    .block-full {
        padding: 60px 0 240px;
        background: #242C32 !important;
    }
}

.block-full__main {
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .block-full__main .text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .block-full__main .text .h3 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .block-full__main .text p {
        font-size: 23px;
        line-height: 1.2;
        text-align: center;
    }
}

.block-full__main .btn {
    max-width: 245px;
    border: 2px solid #FFFFFF;
    margin: 35px 0 0;
}

@media (min-width: 1200px) {
    .block-full__main .btn:hover {
        background: transparent;
        border: 2px solid #FFFFFF;
    }
}

@media (max-width: 767px) {
    .block-full__main .btn {
        margin: 30px auto 0;
    }
}

.block-full .block-full-img-1 {
    display: none;
}

@media (max-width: 767px) {
    .block-full .block-full-img-1 {
        display: block;
        position: absolute;
        left: 50%;
        top: 20px;
        height: 450px;
        max-width: 450px;
        transform: translateX(-50%);
    }
}

.block-full .block-full-img-2 {
    position: absolute;
    right: -60px;
    bottom: 120px;
    height: 450px;
    max-width: 450px;
}

.btn {
    max-width: 245px;
    width: 100%;
    height: 70px;
    color: #000000;
    background: #fff;
    border: 2px solid #434b61;
    border-radius: 35px;
    font-family: "Jost", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: .3s all ease;
    position: relative;
    z-index: 2;
}

.btn.center {
    margin: 0 auto;
}

@media (max-width: 767px) {
    .btn {
        height: 50px;
    }
}

@media (min-width: 1200px) {
    .btn:hover {
        background: #C5874E;
        color: #fff;
        border: 2px solid #C5874E;
    }
}

.btn.orange {
    background-color: #C5874E;
    border-color: #C5874E;
    color: #fff;
}

.btn.black {
    background-color: #091219;
    border-color: #091219;
    color: #fff;
}

@media (min-width: 1200px) {
    .btn.orange:hover {
        background-color: #fff;
        color: #C5874E;
    }

    .btn.black:hover {
        background-color: #fff;
        color: #091219;
    }
}

.btn.white {
    background-color: #fff;
    border-color: #fff;
    color: #000000;
}

@media (min-width: 1200px) {
    .btn.white:hover {
        background-color: #000000;
        border-color: #000000;
        color: #fff;
    }
}

.btn.yellow {
    background: var(--yellow);
    border: 2px solid var(--yellow);
}

@media (min-width: 1200px) {
    .btn.yellow:hover {
        background: var(--puraGreen);
        color: #fff;
        border: 2px solid var(--puraGreen);
    }
}

.btn.btn-form {
    max-width: 460px;
    background-color: #091219;
    color: #fff;
    border: 2px solid #091219;
}

@media (min-width: 1200px) {
    .btn.btn-form:hover {
        background-color: transparent;
        color: #091219;
        border: 2px solid #091219;
    }
}

.btn.small {
    height: 50px;
}

.btn.big {
    max-width: 375px;
}

@media (max-width: 992px) {
    .swiper-entry .swiper-container {
        width: 100%;
        overflow: visible;
    }
}


/*-----------------------------------------------------------------------------------------------------------------------*/


/* POPUPS */


/*-----------------------------------------------------------------------------------------------------------------------*/

.popup-wrapper {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
}

.popup-wrapper.active {
    left: 0;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.popup-wrapper .bg-layer {
    position: absolute;
    left: 0;
    top: -100px;
    right: 0;
    bottom: -100px;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.popup-wrapper.active .bg-layer {
    opacity: 1;
}

.popup-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    padding: 15px;
    letter-spacing: 0;
}

.popup-content.active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.popup-content:after {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    content: "";
}

.popup-content .layer-close {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10000px;
}

.btn-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: inline-block;
    cursor: pointer;
    background: #F5F5F5;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media (max-width: 767px) {
    .btn-close {
        top: 0;
        right: 0;
        background: transparent;
    }
}

.btn-close span {
    height: 14px;
    width: 14px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-close span:before,
.btn-close span:after {
    content: "";
    height: 2px;
    width: 16px;
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #091219;
}

.btn-close span:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.popup-container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
    background: #fff;
    max-width: 1150px;
    min-height: 300px;
    z-index: 1;
    border-radius: 48px;
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .popup-container {
        border-radius: 26px;
    }
}

.popup-align {
    overflow: hidden;
    position: relative;
    padding: 70px 80px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .popup-align {
        padding: 30px 15px;
    }
}

.popup-align .popup-form {
    max-width: 100%;
}

.popup-align .popup-title {
    margin-bottom: 30px;
    text-align: left;
}

.popup-align a {
    margin: 30px auto 0;
}

.popup-align .popup-info {
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.popup-align .popup-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.popup-align .popup-links a {
    margin: 5px 10px;
}

.popup-align .btn-form {
    margin-top: 70px;
}

@media (max-width: 1200px) {
    .popup-align .btn-form {
        margin-top: 30px;
    }
}

.dropdown {
    position: relative;
    font-size: 14px;
    color: #333;
}

.dropdown .dropdown-list {
    padding: 25px 25px 15px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 2px;
    right: 2px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform .15s ease-in-out .15s;
    max-height: 210px;
    overflow: auto;
    z-index: 2;
}

.dropdown .dropdown-list:not(.touch-screen)::-webkit-scrollbar-track,
.dropdown .dropdown-list:not(.touch-screen) *::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 3.5px;
}

.dropdown .dropdown-list:not(.touch-screen)::-webkit-scrollbar-thumb,
.dropdown .dropdown-list:not(.touch-screen) *::-webkit-scrollbar-thumb {
    border-radius: 3.5px;
    background: #091219;
}

.dropdown .dropdown-option {
    padding: 8px 0;
    opacity: 0;
    transition: opacity .15s ease-in-out;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.dropdown .dropdown-label {
    display: block;
    cursor: pointer;
    border-radius: 26px;
    background-color: #F5F5F5;
    height: 50px;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    border: transparent;
    z-index: 22;
    position: relative;
}

.dropdown .dropdown-label:before {
    content: '▼';
    float: right;
}

.dropdown.on .dropdown-list {
    transform: scale(1, 1);
    transition-delay: 0s;
}

.dropdown.on .dropdown-list .dropdown-option {
    opacity: 1;
    transition-delay: .2s;
}

.dropdown.on .dropdown-label:before {
    content: '▲';
}

.dropdown [type="checkbox"] {
    position: relative;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    background: #33A749;
}

.form {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}

.form .text {
    margin-bottom: 15px;
}

.form .form-group {
    margin-bottom: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .form .form-group {
        margin-bottom: 15px;
    }
}

.form .form-group .select-label {
    position: absolute;
    top: -5px;
    left: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    z-index: 30;
    opacity: 0.5;
}

.form .sub-group {
    display: flex;
    margin: 0 -10px;
}

@media (max-width: 576px) {
    .form .sub-group {
        display: block;
        margin: 0;
    }

    .form .form-group .select-label {
        top: -7px;
    }
}

.form .sub-group .form-group {
    width: calc(50% - 20px);
    margin: 0 10px 25px;
}

@media (max-width: 767px) {
    .form .sub-group .form-group {
        width: 100%;
        margin: 0 0 15px;
    }
}

.field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.field label {
    order: -1;
    padding-left: 5px;
    transition: all 0.3s ease-in;
    top: 10px;
    pointer-events: none;
    position: absolute;
    left: 15px;
    font-size: 15px;
    opacity: 0.2;
    font-weight: 500;
}

.field input:focus+label {
    top: -7px;
    font-size: 13px;
    opacity: 0.5;
}

.field input:not(:focus):valid~label {
    top: -7px;
    font-size: 13px;
    opacity: 0.5;
}

.input-upload {
    display: flex;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .input-upload {
        display: block;
    }
}

.input-upload .file-input-container-img {
    position: relative;
}

@media (max-width: 767px) {
    .input-upload .file-input-container-img {
        margin-top: 15px;
    }
}

.input-upload .file-input-container-img .preview-img {
    height: 92px;
    width: 92px;
    border-radius: 8px;
    object-fit: cover;
}

.input-upload .file-input-container-img .remove-img {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 46px;
    height: 46px;
    display: inline-block;
    cursor: pointer;
    background: #F5F5F5;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media (max-width: 767px) {
    .input-upload .file-input-container-img .remove-img {
        top: 30px;
        right: 15px;
    }
}

.input-upload .file-input-container-img .remove-img span {
    height: 14px;
    width: 14px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.input-upload .file-input-container-img .remove-img span:before,
.input-upload .file-input-container-img .remove-img span:after {
    content: "";
    height: 2px;
    width: 16px;
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #091219;
}

.input-upload .file-input-container-img .remove-img span:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.file-input {
    display: flex;
    position: relative;
}

.file-input>[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.file-input>.button {
    height: 42px;
    width: 188px;
    border: 1.5px solid #000000;
    border-radius: 35px;
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
    text-align: center;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .file-input>.button {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }
}

.file-input:hover>.button {
    background: #263238;
    color: #fff;
}

.file-input>.label {
    color: #333;
    white-space: nowrap;
    opacity: .7;
    font-size: 13px;
}

.input,
.select,
.textarea {
    border-radius: 26px;
    background-color: #F5F5F5;
    height: 50px;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    transition: .3s all ease;
}

.input::placeholder,
.select::placeholder,
.textarea::placeholder {
    color: #303133;
    font-size: 15px;
}

@media (min-width: 1200px) {

    .input:hover,
    .select:hover,
    .textarea:hover {
        box-shadow: 0 0 2px #7799d0;
    }
}

.textarea {
    height: 150px;
}

.textarea.small {
    height: 80px;
}

@media (max-width: 767px) {
    .textarea {
        height: 120px;
    }
}

.checkbox-entry {
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
    min-width: 30px;
    min-height: 20px;
}

.checkbox-entry a {
    color: #599921;
}

.checkbox-entry input {
    display: none;
}

.checkbox-entry span {
    position: relative;
    padding-left: 30px;
    display: block;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    text-align: left;
}

.checkbox-entry span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border: 2px #091219 solid;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    border-radius: 6px;
}

.checkbox-entry span:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #091219;
    z-index: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.checkbox-entry input:checked+span:before {
    border-color: #091219;
}

.checkbox-entry input:checked+span:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

label strong {
    font-weight: 600;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

.label-file {
    position: relative;
    border: 1px dashed #E6E6E6;
    font-size: 15px;
    padding: 10px 15px;
    color: #303133;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.label-file .photo {
    margin-right: 15px;
    border-right: 1px solid #E6E6E6;
    padding-right: 15px;
}

.label-file .photo img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: contain;
}

.sumoselect-wrapp {
    position: relative;
}

.sumoselect-wrapp .select-label {
    position: absolute;
    top: -8px;
    left: 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    z-index: 30;
    opacity: 0.5;
}

.sumoselect-wrapp .SumoSelect {
    width: 75%;
    z-index: 12;
}

@media (max-width: 767px) {
    .sumoselect-wrapp .SumoSelect {
        width: 100%;
    }
}

.sumoselect-wrapp .SumoSelect .CaptionCont {
    border-radius: 26px;
    background-color: #F5F5F5;
    height: 50px;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    border: transparent;
    z-index: 22;
    position: relative;
}

.filter-wrapp .sumoselect-wrapp .SumoSelect .CaptionCont {
    color: #091219;
    font-weight: 500;
    font-size: 17px;
}

.sumoselect-wrapp .SumoSelect .CaptionCont label i {
    right: 30px;
}

.sumoselect-wrapp .SumoSelect .optWrapper {
    background-color: #F5F5F5;
    border-top: none;
    z-index: 1;
    border-radius: 26px;
}

@media (max-width: 1199px) {
    .products-sec .filter-wrapp .custom-select .current-select {
        border-radius: 100px;
        background-color: #F5F5F5;
        border: 0;
    }
}

@media (max-width: 767px) {
    .sumoselect-wrapp .SumoSelect .optWrapper {
        position: relative;
    }

    .products-sec .filter-wrapp .custom-select .current-select {
        justify-content: center;
    }

    .products-sec .filter-wrapp .sumoselect-wrapp {
        text-align: center;
    }

    .products-sec .filter-wrapp .SumoSelect>.CaptionCont>span {
        padding-right: 0;
    }

    .products-sec .filter-wrapp .sumoselect-wrapp {
        margin-top: 30px;
    }
}

.sumoselect-wrapp .SumoSelect.open .optWrapper {
    top: 0;
}

.SumoSelect>.CaptionCont>span.placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.recipes-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

@media (max-width: 1200px) {
    .recipes-list {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .recipes-list {
        margin: 0;
    }
}

.recipes-item {
    width: calc(33.3333% - 20px);
    margin: 0 10px 30px;
    background-color: #FFFFFF;
    box-shadow: 0 15px 29px 0 rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 470px;
    z-index: 2;
    transition: none !important;
}

@media (max-width: 992px) {
    .recipes-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .recipes-item {
        max-width: 570px;
        width: 100%;
        margin: 0 auto 30px;
    }
}

.recipes-item__img {
    position: relative;
    font-size: 0;
    height: 305px;
    overflow: hidden;
    transition: .3s all ease;
}

.recipes-item__img img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    object-fit: cover;
}

.recipes-item__caption {
    padding: 23px 35px;
    background: #fff;
    position: relative;
}

@media (max-width: 1200px) {
    .recipes-item__caption {
        padding: 0 15px 20px;
    }
}

@media (max-width: 576px) {
    .recipes-item__caption {
        padding: 10px 15px 20px;
    }
}

.recipes-item__caption:before {
    content: '';
    background: #fff;
    border-radius: 570px 570px 0px 0px / 60px 60px 0px 0px;
    position: absolute;
    left: 0;
    top: -29px;
    width: 100%;
    height: 30px;
}

.recipes-item__caption .h5 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .recipes-item__caption .h5 {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 767px) {
    .recipes-item__caption .h5 {
        font-size: 17px;
    }
}

.recipes-item__info {
    display: flex;
    margin-top: 2px;
}

.recipes-item__info__item {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 18px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .recipes-item__info__item {
        font-size: 11px;
        margin-top: 5px;
    }
}

.recipes-item__info__item svg {
    height: 12px;
    width: 12px;
    fill: rgba(0, 0, 0, 0.38);
    margin-right: 5px;
    border-radius: 50%;
    transition: .3s all ease;
}

.recipes-item__info span:before {
    content: '';
    height: 4px;
    width: 4px;
    background-color: #091219;
    margin-right: 5px;
    position: relative;
}

.recipes-item__text {
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

@media (max-width: 767px) {
    .recipes-item__text {
        min-height: 100%;
        font-size: 12px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }
}

.recipes-item__view {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
    width: 100%;
    background: #fff;
    padding: 0 30px 0;
    position: absolute;
    bottom: -70px;
    transition: .3s all ease;
}

@media (max-width: 767px) {
    .recipes-item__view {
        bottom: 0;
        position: relative;
        font-size: 13px;
        padding: 0 15px 25px;
        display: block;
        letter-spacing: 1.08px;
    }
}

@media (min-width: 1200px) {
    .recipes-item:hover {
        transform: translateY(-20px);
    }

    .recipes-item:hover .recipes-item__img {
        height: 230px;
    }

    .recipes-item:hover .recipes-item__view {
        bottom: 50px;
    }
}

.about-page .top-banner {
    padding-top: 220px;
}

@media (max-width: 1470px) {
    .about-page .top-banner {
        padding-top: 160px;
    }
}

@media (max-width: 992px) {
    .about-page .top-banner {
        padding-top: 120px;
    }
}

.about-page .top-banner:before {
    content: '';
    background: url("../img/about/decor.png") center no-repeat;
    background-size: contain;
    height: 900px;
    width: 660px;
    position: absolute;
    right: 0;
    top: -150px;
    z-index: 1;
}

@media (max-width: 1470px) {
    .about-page .top-banner:before {
        height: 750px;
        width: 520px;
    }
}

@media (max-width: 1200px) {
    .about-page .top-banner:before {
        right: -300px;
        top: -200px;
    }
}

@media (max-width: 576px) {
    .about-page .top-banner:before {
        height: 410px;
        width: 210px;
        right: -110px;
        top: -50px;
    }
}

.about-page .top-banner:after {
    content: '';
    height: 1820px;
    width: 1820px;
    border: 2px dashed #579659;
    border-radius: 50%;
    position: absolute;
    right: 110px;
    top: -840px;
    z-index: -1;
}

@media (min-width: 2000px) {
    .about-page .top-banner:after {
        width: 1950px;
    }
}

@media (min-width: 2200px) {
    .about-page .top-banner:after {
        height: 2030px;
        width: 2520px;
        right: 130px;
        top: -1110px;
    }
}

@media (max-width: 1640px) {
    .about-page .top-banner:after {
        right: -100px;
    }
}

@media (max-width: 1470px) {
    .about-page .top-banner:after {
        height: 1750px;
        width: 1750px;
        right: -170px;
        top: -840px;
    }
}

@media (max-width: 1200px) {
    .about-page .top-banner:after {
        display: block;
        height: 1300px;
        width: 1300px;
        right: -110px;
        top: -570px;
    }
}

@media (max-width: 992px) {
    .about-page .top-banner:after {
        right: -280px;
    }
}

@media (max-width: 576px) {
    .about-page .top-banner:after {
        height: 1200px;
        width: 1200px;
        right: -420px;
        top: -470px;
    }
}

.about-page .top-banner__content {
    max-width: 790px;
}


@media (max-width: 576px) {
    .about-page .top-banner__content {
        max-width: 65%;
    }
}

.about-page .top-banner__img {
    position: absolute;
    right: 70px;
    bottom: -150px;
    z-index: 2;
}

@media (min-width: 2100px) {
    .about-page .top-banner__img {
        right: 50px;
        bottom: -210px;
    }
}

@media (max-width: 1470px) {
    .about-page .top-banner__img {
        right: 80px;
        bottom: -90px;
    }
}

@media (max-width: 1200px) {
    .about-page .top-banner__img {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 992px) {
    .about-page .top-banner__img {
        right: 0;
    }
}

@media (max-width: 576px) {
    .about-page .top-banner__img {
        right: -100px;
        bottom: 60px;
    }
}

.about-page .top-banner__img img {
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
}

@media (min-width: 2100px) {
    .about-page .top-banner__img img {
        max-width: 530px;
        max-height: 530px;
    }
}

@media (max-width: 1470px) {
    .about-page .top-banner__img img {
        max-width: 350px;
        max-height: 350px;
    }
}

@media (max-width: 992px) {
    .about-page .top-banner__img img {
        max-width: 270px;
        max-height: 270px;
    }
}

@media (max-width: 576px) {
    .about-page .top-banner__img img {
        max-width: 230px;
        max-height: 230px;
    }
}

.about-page .about-title {
    color: #39B63E;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .about-page .block-double {
        flex-direction: column;
    }
}

.about-page .block-double .block-double__item.left:before {
    content: '';
    position: absolute;
    left: -860px;
    bottom: -860px;
    height: 1285px;
    width: 1285px;
    border: 2px dashed #39B63E;
    border-radius: 50%;
}

@media (max-width: 1840px) {
    .about-page .block-double .block-double__item.left:before {
        left: -930px;
        bottom: -930px;
    }
}

@media (max-width: 1200px) {
    .about-page .block-double .block-double__item.left:before {
        display: none;
    }
}

@media (min-width: 1921px) {
    .about-page .block-double .block-double__item.right {
        background-position: 100% 85%;
    }
}

.our-mission {
    padding-top: 160px;
    position: relative;
}

@media (max-width: 1200px) {
    .our-mission {
        padding-top: 50px;
    }
}

@media (max-width: 576px) {
    .our-mission {
        padding-top: 30px;
    }
}

.our-mission .our-mission-decor {
    height: 400px;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 2100px) {
    .our-mission .our-mission-decor {
        height: 500px;
        top: 0;
    }
}

@media (min-width: 2200px) {
    .our-mission .our-mission-decor {
        height: 580px;
        top: -50px;
    }
}

@media (max-width: 1470px) {
    .our-mission .our-mission-decor {
        top: 200px;
        left: 0;
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .our-mission .our-mission-decor {
        position: relative;
        top: 0;
        left: 0;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .our-mission .our-mission-decor {
        height: 220px;
        top: 30px;
        left: -60px;
    }
}

.our-mission__main {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.our-story {
    padding: 200px 0 150px;
}

@media (max-width: 1200px) {
    .our-story {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .our-story {
        padding: 30px 0;
    }
}

.our-story .row {
    margin-bottom: 100px;
}

@media (max-width: 1200px) {
    .our-story .row {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .our-story .row {
        margin-bottom: 40px;
    }
}

.our-story .row:last-child {
    margin-bottom: 0;
}

.our-story__main-img {
    position: relative;
}

@media (max-width: 1200px) {
    .our-story__main-img {
        margin-bottom: 30px;
    }
}

.our-story__main-img:before {
    content: '';
    background: url("../img/about/decor2.png") center no-repeat;
    background-size: contain;
    height: 350px;
    width: 350px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 576px) {
    .our-story__main-img:before {
        height: 318px;
        width: 239px;
    }
}

.our-story__main-img img {
    max-height: 390px;
    max-width: 520px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .our-story__main-img img {
        max-height: 315px;
        max-width: 230px;
    }
}

@media (max-width: 992px) {
    .our-story__content {
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .our-story__content {
        margin-bottom: 30px;
        text-align: left;
    }
}

.about-difference {
    padding: 120px 0 90px;
    background-color: #F3EFE8;
    border-radius: 1100px 1100px 0px 0px / 60px 60px 0px 0px;
    position: relative;
}

@media (max-width: 1200px) {
    .about-difference {
        padding: 50px 0 50px;
    }
}

@media (max-width: 992px) {
    .about-difference .row {
        flex-direction: column-reverse;
    }
}

.about-difference__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-difference__item {
    margin: 40px 50px;
    width: calc(50% - 100px);
}

@media (max-width: 1200px) {
    .about-difference__item {
        margin: 30px;
        width: calc(50% - 60px);
    }
}

@media (max-width: 767px) {
    .about-difference__item {
        margin: 30px 15px;
        width: calc(50% - 30px);
    }
}

.about-difference__item__img {
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .about-difference__item__img {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-difference__item__img {
        margin-bottom: 15px;
    }
}

.about-difference__item__img img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

@media (max-width: 767px) {
    .about-difference__item__img img {
        height: 110px;
        width: 110px;
    }
}

.about-difference__item__title {
    color: #000000;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.15px;
    line-height: 32px;
    text-align: center;
}

@media (max-width: 1200px) {
    .about-difference__item__title {
        font-size: 22px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .about-difference__item__title {
        font-size: 16px;
    }
}

.open-product-page .back-link {
    top: 110px;
}

@media (max-width: 1200px) {
    .open-product-page .back-link {
        left: 15px;
        top: 90px;
    }
}

.open-product {
    padding: 240px 0 110px;
    background-color: #F3EFE8;
    position: relative;
}

@media (max-width: 1470px) {
    .open-product {
        padding: 180px 0 80px;
    }
}

@media (max-width: 992px) {
    .open-product {
        padding: 180px 0 50px;
    }
}

@media (max-width: 767px) {
    .open-product {
        padding: 150px 0 50px;
    }
}

.open-product:before {
    content: '';
    height: 1120px;
    width: 680px;
    background: url("../img/products/decor2.png");
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (min-width: 2200px) {
    .open-product:before {
        height: 1260px;
        width: 950px;
    }
}

@media (min-width: 1860px) and (max-width: 2200px) {
    .open-product:before {
        width: 920px;
    }
}

@media (max-width: 1200px) {
    .open-product:before {
        height: 100%;
        width: 520px;
    }
}

@media (max-width: 576px) {
    .open-product:before {
        width: 400px;
        right: -30px;
    }
}

.open-product .back-link {
    display: flex;
    align-items: center;
}

.open-product .back-link__arrow {
    height: 58px;
    width: 58px;
    background-color: #FFFFFF;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 576px) {
    .open-product .back-link__arrow {
        height: 40px;
        width: 40px;
    }
}

.open-product .back-link__arrow svg {
    fill: #091219;
    transition: .3s all ease;
}

.open-product .back-link__text {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
}

@media (max-width: 576px) {
    .open-product .back-link__text {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .open-product .row {
        flex-direction: column-reverse;
    }
}

.open-product__caption {
    max-width: 590px;
    float: right;
}

@media (max-width: 992px) {
    .open-product__caption {
        max-width: 100%;
        margin-top: 30px;
    }
}

.open-product__caption .text ul {
    max-width: 410px;
}

@media (max-width: 992px) {
    .open-product__caption .text ul {
        margin: 0 auto 20px;
        max-width: 100%;
        text-align: left;
    }
}

.open-product__caption .text ul li {
    display: flex;
    justify-content: space-between;
    padding-left: 7px;
}

.open-product__caption .text ul li.sub-li {
    margin-left: 30px;
}

.open-product__caption .text ul li.sub-li-2 {
    margin-left: 60px;
}

.open-product__caption .text ul li span:nth-child(2) {
    width: 30%;
    text-align: right;
}

.open-product__caption .text .strong {
    display: block;
    margin-top: 30px;
}

.open-product__title {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 38px;
}

@media (max-width: 576px) {
    .open-product__title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
}

.open-product__img {
    position: relative;
    margin-bottom: 50px;
}

@media (max-width: 576px) {
    .open-product__img {
        margin-bottom: 30px;
    }
}

.open-product__img img {
    max-width: 520px;
    max-height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

@media (max-width: 992px) {
    .open-product__img img {
        max-width: 460px;
        max-height: 550px;
    }
}

@media (max-width: 576px) {
    .open-product__img img {
        max-width: 100%;
        max-height: 320px;
    }
}

.open-product__link {
    margin: 10px auto 0;
    max-width: 265px;
}

.products-page .top-banner {
    padding: 170px 0 20px;
}

.products-page .top-banner__content .btn {
    margin-top: 50px;
    max-width: 210px;
}

@media (max-width: 767px) {
    .products-page .top-banner {
        padding: 120px 0 40px;
    }

    .products-page .top-banner__content .btn {
        margin-top: 25px;
        /* padding: 0 25px; */
        max-width: fit-content;
        max-width: 175px;
        height: 52px;
    }
}

.products-page .top-banner:before {
    right: -10px;
    top: -180px;
    height: 910px;
    width: 760px;
}

@media (max-width: 1470px) {
    .products-page .top-banner:before {
        height: 880px;
        width: 690px;
        right: -30px;
        top: -180px;
    }
}

@media (max-width: 1200px) {
    .products-page .top-banner:before {
        height: 800px;
        width: 510px;
    }
}

@media (max-width: 992px) {
    .products-page .top-banner:before {
        background-image: url(../img/products/decor-lime-mobile.png);
        height: 700px;
        width: 410px;
        right: -30px;
        top: 100px;
    }
}

@media (max-width: 765px) {
    .products-page .top-banner:before {
        height: 600px;
        width: 310px;
    }

    .products-page .top-banner__content .text,
    .products-page .top-banner__content .text p {
        font-size: 19px !important;
        line-height: 1.42em !important;
    }
}

@media (max-width: 576px) {
    .products-page .top-banner:before {
        height: 484px;
        width: 300px;
        right: -40px;
        top: 130px;

    }

    .products-page .top-banner__content {
        max-width: 100%;
    }
}

.products-page .top-banner:after {
    /* right: 180px; */
    right: -95px;
    top: -80px;
    background-image: url(../img/products/decor-dashed.png);
    background-repeat: no-repeat;
    width: 888px;
    height: 888px;
    /* transform: rotate(52deg); */
    border: 0;
    border-radius: 0;
}

.products-page .top-banner__content {
    margin-bottom: 70px;
}

@media (max-width: 1470px) {
    .products-page .top-banner:after {
        width: 788px;
        height: 620px;
        background-size: contain;
    }
}

@media (max-width: 1200px) {
    .products-page .top-banner__content {
        margin-bottom: 0;
    }
}

.products-page .top-banner__img {
    position: relative;
    /* top: 25px; */
    top: 0;
    right: -85px;
}

@media (max-width: 1680px) {
    .products-page .top-banner__img {
        right: -11px;
    }
}

@media (min-width: 2200px) {
    .products-page .top-banner__img {
        right: -405px;
    }
}

@media (max-width: 1470px) {
    .products-page .top-banner__img {
        top: 0;
        right: 0;
    }
}

.products-page .top-banner__img img {
    float: right;
    max-width: 600px;
    max-height: 520px;
}

@media (max-width: 1470px) {
    .products-page .top-banner__img img {
        max-width: 540px;
        max-height: 445px;
    }
}

@media (max-width: 1200px) {
    .products-page .top-banner__img img {
        max-width: 470px;
        max-height: 390px;
    }
}

@media (max-width: 992px) {
    .products-page .top-banner__img img {
        float: none;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .products-page .top-banner__img img {
        max-width: 296px;
        max-height: 250px;
    }
}

.products-advantages {
    padding: 0 0 70px;
}

@media (max-width: 1200px) {
    .products-advantages {
        /* padding: 30px 0 0; */
        padding: 30px 0;
    }
}

@media (max-width: 992px) {
    .products-advantages {
        padding: 0;
    }
}

.products-advantages__item {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .products-advantages__item {
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .products-advantages__item {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .products-advantages__item {
        align-items: flex-start;
    }
}

.products-advantages__item img {
    max-height: 75px;
    max-width: 80px;
    margin-right: 25px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .products-advantages__item img {
        height: 60px;
        width: 60px;
        margin-right: 15px;
    }

    .products-advantages__item__content .text {
        line-height: 1.21em;
    }
}

.products-advantages__item__content {
    max-width: 545px;
}

.products-advantages__item__title {
    font-weight: 500;
    letter-spacing: 0.15px;
    margin-bottom: 5px;
    /* text-transform: uppercase; */
}

.products-quote {
    position: relative;
    /* padding: 150px 0; */
    padding: 8% 0;
    max-width: 93%;
    margin: 0 0 0 auto;
}

@media (max-width: 1200px) {
    .products-quote {
        /* padding: 30px 0; */
        padding: 5% 0;
    }
}

.products-quote .products-quote-bg {
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -5%;
    left: 0;
}

@media (min-width: 1921px) and (max-width: 2720px) {
    .products-quote .products-quote-bg {
        background-position: right;
        top: 0;
        bottom: 0;
        right: -5%;
        left: 0;
    }
}

@media (max-width: 767px) {
    .products-quote {
        max-width: 100%;
    }

    .products-quote .products-quote-bg {
        right: 0;
        background-size: cover;
        background-position: 50% 50%;
        max-width: 100%;
    }
}

.products-quote__main {
    display: flex;
    align-items: center;
    padding-left: 15%;
    /* padding-left: 120px; */
    position: relative;
}

@media (min-width: 2200px) {
    .products-quote__main {
        padding-left: 260px;
    }
}

@media (max-width: 1470px) {
    .products-quote__main {
        background-color: transparent;
        /* padding: 60px 30px; */
        padding-left: 10%;
    }
}

@media (max-width: 1200px) {
    .products-quote__main {
        padding: 50px 15px 50px 15px;
    }
}

@media (max-width: 576px) {
    .products-quote__main {
        right: 0;
        background-size: cover;
        padding: 35px 0 35px 0;
    }
}

/* .products-quote__main:after */
.products-quote .products-quote-bg::after {
    content: '';
    height: 505px;
    width: 505px;
    border: 2px dashed #FB6E2E;
    border-radius: 50%;
    position: absolute;
    left: -60px;
    top: -50px;
    z-index: -1;
}

/* @media (min-width: 2200px) {
    .products-quote__main:after {
        top: -170px;
    }
} */

@media (max-width: 1200px) {

    /* .products-quote__main:after  */
    .products-quote .products-quote-bg::after {
        display: none;
    }
}

.products-quote__text {
    max-width: 1215px;
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0;
    /* line-height: 72px; */
    line-height: 1.43em;
}

@media (max-width: 1200px) {
    .products-quote__text {
        max-width: 100%;
        line-height: 1.2;
        font-size: 42px;
        padding-left: 90px;
    }
}

@media (max-width: 576px) {
    .products-quote__text {
        /* font-size: 32px; */
        /* text-align: center; */
        padding-left: 0;
        font-size: 28px;
        line-height: 1.42em;
    }
}

.products-list {
    padding-top: 100px;
    justify-content: center;
}

.related .products-list {
    padding-top: 0px;
}

@media (max-width: 1470px) {
    .products-list {
        padding-top: 50px;
    }
}

@media (max-width: 1200px) {
    .products-list {
        padding-top: 50px;
    }
}

@media (max-width: 992px) {
    .products-list {
        padding-top: 20px;
    }
}

@media (max-width: 576px) {
    .products-list {
        /* padding-bottom: 30px; */
        padding-top: 30px;
    }
}

.products-list__title {
    margin-bottom: 65px;
}

@media (max-width: 1200px) {
    .products-list__title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .products-list__title {
        font-size: 32px !important;
        font-weight: normal;
        margin-bottom: 40px !important;
    }
}

.products-list .products-item {
    min-height: 560px;
    padding: 50px 60px 90px;
    margin-bottom: 20px;
    display: block;
    transition: .3s all ease;
    overflow: hidden;
    position: relative;
    border-radius: 26px;
}

@media (max-width: 1366px) {
    .products-list .products-item {
        padding: 40px 15px 90px;
    }
}

@media (max-width: 1200px) {
    .products-list .products-item {
        /* padding: 40px 15px 90px; */
        margin-bottom: 0;
        min-height: 460px;
        padding-bottom: 40px;
    }

    .products-list .products-item__img img {
        max-width: 75% !important;
        /* width: 100%!important;
        height: 100%!important;
        max-height: 300px; */
    }

}

@media (max-width: 992px) {
    .products-list .products-item {
        margin-bottom: 30px;
        min-height: 100%;
        padding: 15px 15px 30px;
    }
}

@media (max-width: 767px) {
    .products-list .products-item {
        margin-bottom: 20px;
        padding: 15px 0 30px;
    }
}

.products-list .products-item__img {
    position: relative;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 310px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .products-list .products-item__img {
        height: 360px;
        width: 280px;
    }
}

@media (max-width: 992px) {
    .products-list .products-item__img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .products-list .products-item__img {
        width: 60%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .products-list .products-item__img {
        height: 190px;
        width: 130px;
    }
}

.products-list .products-item__img:before {
    content: '';
    /* height: 280px;
    width: 280px; */
    max-height: 340px;
    max-width: 340px;
    height: 100%;
    width: 100%;
    background-color: var(--yellow);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s all ease;
}

@media (max-width: 1200px) {
    .products-list .products-item__img:before {
        height: 70%;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .products-list .products-item__img:before {
        height: 67%;
        width: 100%;
    }
}

.products-list .products-item__img img {
    max-height: 80% !important;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: .3s all ease;
    backface-visibility: hidden;
}

.products-list .products-item__title {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.15px;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .products-list .products-item__title {
        letter-spacing: 0.8px;
        font-size: 13px;
    }
}

.products-list .products-item__view {
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
    width: 100%;
    padding: 0 30px 0;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: -70px;
    transition: .3s all ease;
}

@media (max-width: 992px) {
    .products-list .products-item__view {
        bottom: 20px;
        font-size: 18px;
        color: var(--puraGreen);
    }
}

@media (max-width: 576px) {
    .products-list .products-item__view {
        bottom: 10px;
        font-size: 15px;
        line-height: 1.15;
        font-weight: 500;
        letter-spacing: 1.5px;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .products-list .products-item:hover {
        background-color: rgba(213, 223, 64, 0.12);
    }

    .products-list .products-item:hover .products-item__img:before {
        opacity: 0;
    }

    .products-list .products-item:hover .products-item__img img {
        transform: scale(1.18);
    }

    .products-list .products-item:hover .products-item__view {
        bottom: 45px;
    }
}

.products-coming {
    position: relative;
}

.products-coming:after {
    content: '';
    height: 1160px;
    width: 1160px;
    border: 2px dashed #39B63E;
    z-index: 0;
    position: absolute;
    border-radius: 50%;
    left: -380px;
    top: -90px;
}

@media (max-width: 1470px) {
    .products-coming:after {
        height: 1100px;
        width: 1100px;
    }
}

@media (max-width: 1366px) {
    .products-coming:after {
        height: 900px;
        width: 900px;
        left: -15%;
        top: -5%;
    }
}

@media (max-width: 1200px) {
    .products-coming:after {
        display: none;
    }
}

@media (max-width: 576px) {
    .products-coming:after {
        display: block;
        height: 430px;
        width: 430px;
        left: -320px;
        top: -10px;
    }
}

.products-coming__title {
    margin: 45px 0;
}

@media (max-width: 576px) {
    .products-coming__title {
        font-size: 32px;
        font-weight: normal;
        margin: 30px 0;
    }
}

.products-coming__main {
    /* max-width: 1510px; */
    max-width: 84.5%;
    width: 100%;
    margin: 0 auto;
    padding: 65px 15px 95px;
    border-radius: 102px 102px 0px 0px / 102px 102px 0px 0px;
    background-color: var(--puraBlack);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1921px) {
    .products-coming__main {
        max-width: 1890px;
    }
}

@media (max-width: 1366px) {
    .products-coming__main {
        max-width: 85%;
    }
}

@media (max-width: 1200px) {
    .products-coming__main {
        padding: 45px 15px;
    }
}

@media (max-width: 767px) {
    .products-coming__main {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .products-coming__main {
        padding: 15px;
        border-radius: 52px 52px 0px 0px / 52px 52px 0px 0px;
    }
}

.products-coming__item {
    width: calc(33.3333% - 180px);
    margin: 0 45px;
}

@media (max-width: 1470px) {
    .products-coming__item {
        width: calc(33.3333% - 120px);
    }
}

@media (max-width: 1200px) {
    .products-coming__item {
        width: calc(33.3333% - 60px);
        margin: 0 30px;
    }
}

@media (max-width: 992px) {
    .products-coming__item {
        width: 100%;
        margin: 0 0 30px;
    }
}

@media (max-width: 992px) {
    .products-coming__item {
        max-width: 325px;
        margin: 0 auto 30px;
    }
}

.products-coming__item__img {
    height: 200px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .products-coming__item__img {
        height: 180px;
        width: 250px;
    }
}

@media (max-width: 576px) {
    .products-coming__item__img {
        height: 140px;
        width: 230px;
    }
}

.products-coming__item__img img {
    max-width: 100%;
    max-height: 100%;
}

.products-coming__item .text {
    text-align: center;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .products-coming__item .text {
        max-width: 350px;
        margin: 5px auto 0;
    }
}

@media (max-width: 576px) {
    .products-coming__item .text {
        font-size: 20px;
    }
}

.products-coming .products-coming-decor {
    position: absolute;
    right: -200px;
    top: -240px;
    height: 500px;
    width: 500px;
}

@media (max-width: 1200px) {
    .products-coming .products-coming-decor {
        right: -150px;
        top: -150px;
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 767px) {
    .products-coming .products-coming-decor {
        display: none;
    }
}

.home-main {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
    position: relative;
    padding: 140px 0 30px;
    z-index: 1;
}

@media (max-width: 1200px) {
    .home-main {
        height: 80vh;
    }
}

@media (max-width: 992px) {
    .home-main {
        height: 50vh;
    }
}

@media (max-width: 767px) {
    .home-main {
        height: auto;
    }
}

.home-main:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    transform: scaleX(-1);
    background: linear-gradient(180deg, #091219 0%, rgba(9, 18, 25, 0) 100%);
    z-index: 1;
}

@media (max-width: 1200px) {
    .home-main:before {
        height: 100%;
    }
}

.home-main:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    transform: scaleX(-1) scaleY(-1);
    background: linear-gradient(180deg, #091219 0%, rgba(9, 18, 25, 0) 100%);
    z-index: 1;
}

.home-main .home-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.home-main .home-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(270deg, rgba(9, 18, 25, 0) 0%, #091219 100%);
    z-index: 1;
}

.home-main__main {
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .home-main__main {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .home-main__main {
        text-align: left;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .home-main__main .h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .home-main__main .h2 span {
        display: block;
    }
}

.home-main__sub-title {
    font-family: "Jost", sans-serif;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 0.17px;
    line-height: 1.2;
    margin-top: 10px;
}

@media (max-width: 1470px) {
    .home-main__sub-title {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .home-main__sub-title {
        font-size: 22px;
    }
}

.home-main__links {
    margin-top: 40px;
    display: flex;
}

@media (max-width: 1199px) {
    .home-main__links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .home-main__links {
        flex-direction: column;
    }
}

.home-main__links .btn:first-child {
    margin-right: 40px;
}

@media (max-width: 767px) {
    .home-main__links .btn:first-child {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .home-main__links .btn {
        margin: 20px 0;
    }
}

.home-main .scroll-down {
    border: 2px solid #fff;
    border-radius: 16px;
    height: 40px;
    width: 24px;
    display: block;
    z-index: 10;
    opacity: .7;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    bottom: 70px;
    transition: all .3s;
    -webkit-transition: all .3s;
    cursor: pointer;
}

@media (max-width: 767px) {
    .home-main .scroll-down {
        display: none;
    }
}

.home-main .scroll-down .wheel {
    position: relative;
    border-radius: 10px;
    background: #fff;
    width: 2px;
    height: 6px;
    top: 4px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .home-main .scroll-down:hover {
        transform: translateY(10px);
    }
}

.home-introducing {
    padding: 40px 0 120px;
    background-color: var(--puraBlack);
    position: relative;
    transform: translateY(-2px);
    z-index: 3;
    border-radius: 0 0 1100px 1100px / 0px 0px 60px 60px;
}

@media (max-width: 1200px) {
    .home-introducing {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .home-introducing {
        padding: 40px 0;
    }
}

.home-introducing:before {
    content: '';
    height: 450px;
    width: 450px;
    border: 2px dashed var(--yellow);
    border-radius: 50%;
    transform: scaleX(-1) scaleY(-1);
    position: absolute;
    left: -300px;
    top: -10px;
}

@media (max-width: 1200px) {
    .home-introducing:before {
        height: 350px;
        width: 350px;
        left: -220px;
    }
}

@media (max-width: 767px) {
    .home-introducing:before {
        height: 220px;
        width: 230px;
        left: -200px;
        top: -100px;
    }
}

.home-introducing .text {
    max-width: 665px;
}

@media (max-width: 1200px) {
    .home-introducing .text {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .home-introducing .text {
        text-align: left;
    }
}

.home-introducing__img-info {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

@media (max-width: 1200px) {
    .home-introducing__img-info {
        margin-top: 0;
    }
}

.home-introducing__img-info__item {
    width: 100%;
    max-width: 300px;
    margin: 0 5px;
}

.home-introducing__img-info__item img {
    margin: 0 auto;
    display: block;
    height: 150px;
    width: 150px;
}

@media (max-width: 1470px) {
    .home-introducing__img-info__item img {
        height: 130px;
        width: 130px;
    }
}

@media (max-width: 767px) {
    .home-introducing__img-info__item img {
        height: 95px;
        width: 95px;
    }
}

.home-introducing__img-info__item__title {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 23px;
    letter-spacing: 0.15px;
    line-height: 1.2;
    text-align: center;
    margin-top: 45px;
    font-weight: 500;
}

@media (max-width: 1470px) {
    .home-introducing__img-info__item__title {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .home-introducing__img-info__item__title {
        font-size: 16px;
        margin-top: 15px;
    }
}

.home-introducing__img-info__img {
    height: 100px;
    width: 120px;
    object-fit: cover;
}

.home-slider__main {
    position: relative;
}

.home-slider .swiper-entry .swiper-container {
    max-height: 780px;
}

@media (max-width: 1470px) {
    .home-slider .swiper-entry .swiper-container {
        max-height: 700px;
    }
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .swiper-container {
        height: auto;
        max-height: 100%;
    }
}

.home-slider .swiper-entry .swiper-container .swiper-slide {
    transition: .3s all ease;
    opacity: 0 !important;
}

.home-slider .swiper-entry .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.home-slider .swiper-entry .swiper-button {
    top: 50%;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .swiper-button {
        top: auto;
        position: absolute;
        right: auto;
        transform: translateX(-50%);
        z-index: 3;
        bottom: 50px;
        left: 50%;
        display: flex;
    }
}

@media (max-width: 767px) {
    .home-slider .swiper-entry .swiper-button {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home-slider .swiper-entry .swiper-button {
        bottom: 50%;
    }
}

.home-slider .swiper-entry .swiper-button .swiper-button-prev,
.home-slider .swiper-entry .swiper-button .swiper-button-next {
    position: relative;
    right: auto;
    left: auto;
    background: #091219;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all ease;
}

@media (min-width: 1200px) {

    .home-slider .swiper-entry .swiper-button .swiper-button-prev:hover,
    .home-slider .swiper-entry .swiper-button .swiper-button-next:hover {
        opacity: 0.7;
    }
}

@media (max-width: 576px) {

    .home-slider .swiper-entry .swiper-button .swiper-button-prev,
    .home-slider .swiper-entry .swiper-button .swiper-button-next {
        position: absolute;
        top: -110px;
        margin-top: 0;
        left: -50px;
    }
}

.home-slider .swiper-entry .swiper-button .swiper-button-prev svg,
.home-slider .swiper-entry .swiper-button .swiper-button-next svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    transform: rotate(45deg);
}

@media (max-width: 1200px) {

    .home-slider .swiper-entry .swiper-button .swiper-button-prev svg,
    .home-slider .swiper-entry .swiper-button .swiper-button-next svg {
        transform: rotate(-45deg);
    }
}

@media (max-width: 1200px) {

    .home-slider .swiper-entry .swiper-button .swiper-button-prev:hover,
    .home-slider .swiper-entry .swiper-button .swiper-button-next:hover {
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .home-slider .swiper-entry .swiper-button .swiper-button-next {
        right: -50px;
        left: auto;
    }
}

.home-slider .swiper-entry .swiper-button .swiper-button-next svg {
    transform: rotate(-135deg);
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .swiper-button .swiper-button-next svg {
        transform: rotate(-225deg);
    }
}

.home-slider .swiper-entry .swiper-pagination {
    position: relative;
    top: auto;
    right: auto;
    margin: 40px 0 60px;
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .swiper-pagination {
        display: flex;
        margin: 0 30px;
    }
}

@media (max-width: 576px) {
    .home-slider .swiper-entry .swiper-pagination {
        bottom: -85px;
    }
}

.home-slider .swiper-entry .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 10px auto;
    height: 12px;
    width: 12px;
    opacity: 0.45;
    background: #091219;
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .swiper-pagination .swiper-pagination-bullet {
        margin: 0 10px;
    }
}

.home-slider .swiper-entry .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #091219;
    opacity: 1;
    position: relative;
}

.home-slider .swiper-entry .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: -4px;
    border: 1.5px solid #091219;
}

.home-slider .swiper-entry .mob-arr {
    position: absolute;
    top: 53%;
    left: 0;
    background: #091219;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: .3s all ease;
    display: none;
}

.home-slider .swiper-entry .mob-arr svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    transform: rotate(45deg);
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .mob-arr svg {
        transform: rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .home-slider .swiper-entry .mob-arr {
        display: flex;
    }
}

.home-slider .swiper-entry .mob-arr.swiper-button-next {
    right: 0;
    left: auto;
}

.home-slider .swiper-entry .mob-arr.swiper-button-next svg {
    transform: rotate(-135deg);
}

@media (max-width: 1200px) {
    .home-slider .swiper-entry .mob-arr.swiper-button-next svg {
        transform: rotate(-225deg);
    }
}

.home-slider .slider-product {
    padding: 75px 0 85px;
}

@media (max-width: 1200px) {
    .home-slider .slider-product {
        padding: 50px 0 100px;
    }
}

@media (max-width: 576px) {
    .home-slider .slider-product {
        padding: 100px 20px;
        flex-direction: column-reverse;
    }
}

.home-slider .slider-product .initial {
    position: relative;
}

@media (max-width: 576px) {
    .home-slider .slider-product .initial {
        position: initial;
    }
}

@media (max-width: 1200px) {
    .home-slider .slider-product__content {
        text-align: center;
        margin-bottom: 30px;
    }
}

.home-slider .slider-product__content__title {
    color: #39B63E;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.15px;
    line-height: 32px;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .home-slider .slider-product__content__title {
        position: absolute;
        top: 40px;
        text-align: center;
        width: 100%;
        transform: translateX(-5%);
    }
}

.home-slider .slider-product__content__name {
    margin: 25px 0 50px;
}

@media (max-width: 1200px) {
    .home-slider .slider-product__content__name {
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .home-slider .slider-product__content__name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 52px;
    }
}

.home-slider .slider-product__content .btn {
    max-width: 325px;
}

@media (max-width: 1200px) {
    .home-slider .slider-product__content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 370px) {
    .home-slider .slider-product__content .btn {
        max-width: 100%;
    }
}

.home-slider .slider-product__img {
    max-width: 500px;
    width: 100%;
    height: 520px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media (max-width: 1470px) {
    .home-slider .slider-product__img {
        max-width: 470px;
        height: 490px;
    }
}

@media (max-width: 1200px) {
    .home-slider .slider-product__img {
        height: 490px;
        align-items: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home-slider .slider-product__img {
        height: 320px;
        max-width: 100%;
    }
}

.home-slider .slider-product__img:before {
    content: '';
    height: 500px;
    width: 500px;
    background-color: #FDA02F;
    border-radius: 50%;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 1470px) {
    .home-slider .slider-product__img:before {
        height: 470px;
        width: 470px;
    }
}

@media (max-width: 1200px) {
    .home-slider .slider-product__img:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-slider .slider-product__img:before {
        display: block;
        height: 240px;
        width: 240px;
    }
}

.home-slider .slider-product__img:after {
    content: '';
    height: 450px;
    width: 450px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 48%;
    margin-left: -50%;
    margin-top: -50%;
    border: 2px dashed #C5874E;
    transform: scaleX(-1) scaleY(-1);
    z-index: 0;
}

@media (max-width: 1470px) {
    .home-slider .slider-product__img:after {
        height: 430px;
        width: 430px;
    }
}

@media (max-width: 1200px) {
    .home-slider .slider-product__img:after {
        display: none;
    }
}

.home-slider .slider-product__img img {
    max-width: 420px;
    max-height: 510px;
    margin-bottom: 6px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
}

@media (max-width: 1470px) {
    .home-slider .slider-product__img img {
        max-width: 430px;
        max-height: 490px;
        margin-bottom: 0;
    }
}

@media (max-width: 1200px) {
    .home-slider .slider-product__img img {
        max-height: 490px;
    }
}

@media (max-width: 576px) {
    .home-slider .slider-product__img img {
        max-width: 100%;
        max-height: 320px;
    }
}

.home-recipes {
    padding: 120px 0 90px;
    background-color: #e4e8e4;
    border-radius: 1100px 1100px 0px 0px / 60px 60px 0px 0px;
    position: relative;
}

@media (max-width: 1200px) {
    .home-recipes {
        padding: 50px 0;
    }
}

.home-recipes:before {
    content: '';
    height: 1060px;
    width: 1060px;
    border: 2px dashed #579659;
    border-radius: 50%;
    position: absolute;
    left: -500px;
    top: 200px;
    z-index: 1;
}

@media (max-width: 1200px) {
    .home-recipes:before {
        height: 720px;
        width: 720px;
        left: -480px;
    }
}

.home-recipes__title {
    margin-bottom: 55px;
}

@media (max-width: 1200px) {
    .home-recipes__title {
        text-align: center;
        margin-bottom: 30px;
    }
}

.home-recipes__text {
    color: var(--puraBlack);
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-recipes__btn {
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .home-recipes__btn {
        margin: 30px auto 0;
    }
}

.home-double .home-double-item {
    height: 730px;
    background: var(--puraBlack);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1470px) {
    .home-double .home-double-item {
        height: 640px;
    }
}

@media (max-width: 1200px) {
    .home-double .home-double-item {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .home-double .home-double-item {
        height: auto;
    }
}

.home-double .home-double-where-to-buy {
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-double .home-double-where-to-buy__img {
    max-height: 125px;
    max-width: 275px;
    display: block;
    margin: 0 auto 30px;
}

@media (max-width: 767px) {
    .home-double .home-double-where-to-buy__title {
        font-size: 32px;
        font-weight: 500;
    }
}

.home-double .home-double-where-to-buy__text {
    max-width: 500px;
    margin: 20px auto 45px;
}

.home-double .home-double-where-to-buy__btn {
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .home-double .home-double-where-to-buy__btn:hover {
        background: var(--puraBlack);
        border: 2px solid #fff;
    }
}

@media (max-width: 576px) {
    .home-double .home-double-recipe {
        height: 210px;
    }
}

.home-double .home-double-recipe__btn {
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
    text-align: center;
    height: 190px;
    width: 190px;
    background-color: #39B63E;
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transform: scale(0);
}

.home-double .home-double-recipe__btn:before {
    content: '';
    height: 220px;
    width: 220px;
    border: 2px dashed #39B63E;
    border-radius: 50%;
    position: absolute;
    transition: .3s all ease;
}

@media (min-width: 1200px) {
    .home-double .home-double-recipe__btn:hover:before {
        transform: rotate(360deg);
    }
}

@media (min-width: 1200px) {
    .home-double .home-double-recipe:hover .home-double-recipe__btn {
        transform: scale(1);
    }
}

.recipes-page .top-banner {
    padding: 220px 0 60px;
}

@media (max-width: 992px) {
    .recipes-page .top-banner {
        padding: 180px 0 50px;
    }
}

@media (max-width: 767px) {
    .recipes-page .top-banner {
        padding: 120px 0 40px;
    }
}

.recipes-page .top-banner:before {
    content: '';
    background: url("../img/recipes/decor-main.png") center no-repeat;
    background-size: contain;
    height: 650px;
    width: 690px;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 1;
}

@media (max-width: 1470px) {
    .recipes-page .top-banner:before {
        height: 520px;
        width: 550px;
    }
}

@media (max-width: 1200px) {
    .recipes-page .top-banner:before {
        height: 410px;
        width: 440px;
    }
}

@media (max-width: 992px) {
    .recipes-page .top-banner:before {
        height: 370px;
        width: 350px;
    }
}

@media (max-width: 576px) {
    .recipes-page .top-banner:before {
        height: 530px;
        width: 330px;
        right: -180px;
        top: -50px;
    }
}

.recipes-page .top-banner:after {
    content: '';
    height: 620px;
    width: 620px;
    border: 2px dashed #224123;
    z-index: 0;
    right: 50px;
    top: -130px;
}

@media (max-width: 1470px) {
    .recipes-page .top-banner:after {
        height: 540px;
        width: 540px;
    }
}

@media (max-width: 1200px) {
    .recipes-page .top-banner:after {
        display: none;
    }
}

@media (max-width: 576px) {
    .recipes-page .top-banner:after {
        display: block;
        height: 250px;
        width: 250px;
        right: -80px;
        top: -10px;
    }
}

.recipes-page .top-banner__img {
    position: absolute;
    right: 60px;
    bottom: -130px;
    z-index: 2;
}

@media (max-width: 1470px) {
    .recipes-page .top-banner__img {
        right: 80px;
        bottom: -90px;
    }
}

@media (max-width: 1200px) {
    .recipes-page .top-banner__img {
        right: 80px;
        bottom: -30px;
    }
}

@media (max-width: 992px) {
    .recipes-page .top-banner__img {
        right: 0;
    }
}

@media (max-width: 576px) {
    .recipes-page .top-banner__img {
        right: -120px;
        bottom: 0;
    }
}

.recipes-page .top-banner__img img {
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
}

@media (max-width: 1470px) {
    .recipes-page .top-banner__img img {
        max-width: 390px;
        max-height: 390px;
    }
}

@media (max-width: 992px) {
    .recipes-page .top-banner__img img {
        max-width: 300px;
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .recipes-page .top-banner__img img {
        max-width: 240px;
        max-height: 240px;
    }
}

.recipes-page .top-banner__content {
    max-width: 790px;
}

@media (max-width: 992px) {
    .recipes-page .top-banner__content {
        max-width: 60%;
    }
}

.recipes-page .top-banner__img:before {
    display: none;
}

.recipes-page .block-full {
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 1921px) {
    .recipes-page .block-full {
        background: #242C32;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1200px) {
    .recipes-page .block-full {
        background: #242C32;
        background-size: cover;
        background-position: center;
    }
}

.recipes {
    padding: 30px 0 90px;
}

@media (max-width: 1200px) {
    .recipes {
        padding: 30px 0 50px;
    }
}

@media (max-width: 767px) {
    .recipes {
        padding: 0 0 50px;
    }
}

.recipes .recipes-header {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
}

@media (max-width: 1200px) {
    .recipes .recipes-header {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .recipes .recipes-header {
        margin-bottom: 15px;
        justify-content: space-between;
    }
}

@media (max-width: 1200px) {
    .recipes .recipes-header .recipes-sort {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .recipes .recipes-header .recipes-sort {
        width: 47%;
    }
}

.recipes .recipes-header .recipes-sort__label {
    color: rgba(0, 0, 0, 0.38);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 18px;
    margin-bottom: 10px;
}

.recipes .recipes-header .recipes-sort__list {
    display: flex;
    margin-right: 80px;
}

@media (max-width: 1200px) {
    .recipes .recipes-header .recipes-sort__list {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .recipes .recipes-header .recipes-sort__list {
        display: none;
    }
}

.recipes .recipes-header .recipes-sort__link {
    color: #000000;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 24px;
    padding: 6px 14px;
    margin-right: 30px;
    border-radius: 18px;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .recipes .recipes-header .recipes-sort__link {
        margin-right: 5px;
    }
}

@media (max-width: 576px) {
    .recipes .recipes-header .recipes-sort__link {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

.recipes .recipes-header .recipes-sort__link.is-checked {
    background-color: #091219;
    color: #fff;
}

.recipes .recipes-list__more {
    max-width: 310px;
    margin: 60px auto 0;
}

@media (max-width: 1200px) {
    .recipes .recipes-list__more {
        margin: 30px auto 0;
    }
}

@media (max-width: 576px) {
    .recipes .recipes-list__more {
        margin: 20px auto 0;
    }
}

.custom-select {
    position: relative;
    height: 50px;
    cursor: pointer;
    z-index: 2;
    display: none;
}

@media (max-width: 576px) {
    .custom-select {
        display: block;
    }
}

.custom-select .current-select {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 15px;
    letter-spacing: 0.27px;
    line-height: 20px;
    z-index: 5;
    position: relative;
    padding: 0 30px 0 20px;
    text-overflow: ellipsis;
    background: #fff;
    height: 50px;
    width: 100%;
    border: 1.5px solid #000000;
    border-radius: 26px;
}

.custom-select .current-select:before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
    transition: all .3s ease-in-out;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}

.custom-select ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 4;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #fff;
    margin-top: 20px;
    border-radius: 26px;
    padding-top: 60px;
}

.custom-select ul li.active {
    background: #f5f5f5;
}

.custom-select.open-select {
    z-index: 4;
}

.custom-select.open-select ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.open-recipes-banner {
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    margin-top: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 0 1100px 1100px / 0px 0px 60px 60px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .open-recipes-banner {
        height: 100%;
        min-height: 360px;
        padding: 120px 0 30px;
    }
}

.open-recipes-banner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #091219 0%, rgba(9, 18, 25, 0) 100%);
    z-index: 1;
}

.open-recipes-banner .back-link {
    display: flex;
    align-items: center;
    z-index: 2;
}

.open-recipes-banner .back-link__arrow {
    height: 58px;
    width: 58px;
    background-color: transparent;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 576px) {
    .open-recipes-banner .back-link__arrow {
        height: 40px;
        width: 40px;
    }
}

.open-recipes-banner .back-link__arrow svg {
    fill: #fff;
    transition: .3s all ease;
}

.open-recipes-banner .back-link__text {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 20px;
}

@media (max-width: 576px) {
    .open-recipes-banner .back-link__text {
        font-size: 17px;
    }
}

.open-recipes-banner__content {
    max-width: 470px;
    z-index: 2;
    position: relative;
    margin-top: 85px;
}

@media (max-width: 576px) {
    .open-recipes-banner__content {
        max-width: 70%;
    }
}

@media (max-width: 576px) {
    .open-recipes-banner__content .h3 {
        font-size: 36px;
        letter-spacing: 0.21px;
    }
}

.open-recipes-header {
    padding: 30px 0;
}

.open-recipes-header__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 576px) {
    .open-recipes-header__list {
        display: block;
    }
}

.open-recipes-header__item {
    display: flex;
    align-items: center;
    margin-right: 50px;
    margin-bottom: 15px;
}

@media (max-width: 1470px) {
    .open-recipes-header__item {
        margin-right: 30px;
    }
}

@media (max-width: 1200px) {
    .open-recipes-header__item {
        margin-right: 30px;
    }
}

@media (max-width: 992px) {
    .open-recipes-header__item {
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    .open-recipes-header__item {
        margin-right: 0;
        margin-bottom: 25px;
    }
}

.open-recipes-header__item:last-child {
    margin-right: 0;
}

@media (max-width: 576px) {
    .open-recipes-header__item:last-child {
        margin-bottom: 0;
    }
}

.open-recipes-header__item svg {
    height: 35px;
    width: 35px;
    fill: #000;
    margin-right: 10px;
    transition: .3s all ease;
}

@media (max-width: 1200px) {
    .open-recipes-header__item svg {
        margin-right: 10px;
    }
}

@media (max-width: 992px) {
    .open-recipes-header__item svg {
        height: 24px;
        width: 24px;
        margin-right: 5px;
    }
}

@media (max-width: 576px) {
    .open-recipes-header__item svg {
        margin-right: 15px;
    }
}

.open-recipes-header__item span {
    color: #000000;
    font-size: 20px;
    letter-spacing: 0.15px;
    line-height: 32px;
}

@media (max-width: 992px) {
    .open-recipes-header__item span {
        font-size: 18px;
        line-height: 1.2;
    }
}

.open-recipes {
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .open-recipes {
        margin-bottom: 50px;
    }
}

.open-recipes__ingredients {
    background-color: #F3EFE8;
    padding: 50px 90px;
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    position: relative;
    border-radius: 52px;
}

.open-recipes__ingredients:before {
    content: '';
    background-color: #F3EFE8;
    position: absolute;
    left: -100000px;
    top: 0;
    bottom: 0;
    right: 80%;
    z-index: -1;
}

@media (max-width: 576px) {
    .open-recipes__ingredients:before {
        right: -100000px;
    }
}

@media (max-width: 1470px) {
    .open-recipes__ingredients {
        padding: 50px 30px;
    }
}

@media (max-width: 1200px) {
    .open-recipes__ingredients {
        padding: 30px 15px;
    }
}

@media (max-width: 992px) {
    .open-recipes__ingredients {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .open-recipes__ingredients {
        padding: 30px 15px;
    }
}

.open-recipes__ingredients .h5 {
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .open-recipes__ingredients__list {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}

@media (max-width: 576px) {
    .open-recipes__ingredients__list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.open-recipes__ingredients__item {
    color: #000000;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin-bottom: 15px;
}

.open-recipes__instruction {
    padding: 50px 0;
    max-width: 740px;
}

@media (max-width: 1200px) {
    .open-recipes__instruction {
        padding: 30px 0 0;
    }
}

.open-recipes__instruction__title {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .open-recipes__instruction__title {
        max-width: 290px;
        margin: 0 auto 30px;
    }
}

.open-recipes .recipes-instruction__item {
    margin-bottom: 35px;
    display: flex;
}

@media (max-width: 767px) {
    .open-recipes .recipes-instruction__item {
        flex-direction: column;
        max-width: 320px;
        margin: 0 auto 30px;
    }
}

.open-recipes .recipes-instruction__item__img {
    height: 320px;
    width: 360px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .open-recipes .recipes-instruction__item__img {
        height: 290px;
        width: 290px;
    }
}

@media (max-width: 767px) {
    .open-recipes .recipes-instruction__item__img {
        margin: 0 auto;
        display: block;
        width: 320px;
        height: 320px;
    }
}

.open-recipes .recipes-instruction__item__caption {
    margin-left: 40px;
    max-width: 440px;
}

@media (max-width: 1200px) {
    .open-recipes .recipes-instruction__item__caption {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .open-recipes .recipes-instruction__item__caption {
        margin: 30px auto 0;
        max-width: 320px;
    }
}

.open-recipes .recipes-instruction__item__caption:first-child {
    margin-left: 0;
    max-width: 800px;
}

@media (max-width: 767px) {
    .open-recipes .recipes-instruction__item__caption:first-child {
        max-width: 320px;
    }
}

.open-recipes .recipes-instruction__item__title {
    color: #000000;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 24px;
    font-weight: bold;
}

.open-recipes .recipes-instruction__item__text {
    color: #000000;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin-bottom: 15px;
}

.open-recipes .recipes-instruction__item__text:last-child {
    margin-bottom: 0;
}

.open-recipes .open-recipes-share {
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 10px;
}

@media (max-width: 992px) {
    .open-recipes .open-recipes-share {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .open-recipes .open-recipes-share {
        max-width: 320px;
        margin: 20px auto 0;
    }
}

.open-recipes .open-recipes-share__links {
    display: flex;
    margin-top: 10px;
}

.open-recipes .open-recipes-share__links a {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid #C5874E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.open-recipes .open-recipes-share__links a:last-child {
    margin-right: 0;
}

.open-recipes .open-recipes-share__links a svg {
    height: 22px;
    width: 22px;
    fill: #000;
    transition: .3s all ease;
}

@media (min-width: 1200px) {
    .open-recipes .open-recipes-share__links a:hover {
        background: #C5874E;
    }

    .open-recipes .open-recipes-share__links a:hover svg {
        fill: #fff;
    }
}

.open-recipes-slider {
    padding: 90px 0;
    background-color: #E4E8E4;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .open-recipes-slider {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .open-recipes-slider {
        padding: 30px 0;
    }
}

.open-recipes-slider:before {
    content: '';
    height: 1070px;
    width: 1070px;
    border: 2px dashed #579659;
    border-radius: 50%;
    position: absolute;
    left: -120px;
    top: 20px;
}

.open-recipes-slider .h2 {
    z-index: 2;
    position: relative;
}

.open-recipes-slider__main {
    margin-top: 40px;
    position: relative;
}

.open-recipes-slider__main .swiper-button .swiper-button-prev,
.open-recipes-slider__main .swiper-button .swiper-button-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #579659;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-recipes-slider__main .swiper-button .swiper-button-prev svg,
.open-recipes-slider__main .swiper-button .swiper-button-next svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: .3s all ease;
}

@media (min-width: 1200px) {

    .open-recipes-slider__main .swiper-button .swiper-button-prev:hover,
    .open-recipes-slider__main .swiper-button .swiper-button-next:hover {
        opacity: 0.7;
    }
}

.open-recipes-slider__main .recipes-item {
    height: auto;
}

.contact {
    position: relative;
}

.contact:before {
    content: '';
    height: 1300px;
    width: 1300px;
    border: 2px dashed #39B63E;
    position: absolute;
    right: -1100px;
    top: -380px;
    border-radius: 50%;
}

@media (min-width: 1921px) {
    .contact:before {
        right: -900px;
        top: -460px;
    }
}

@media (max-width: 1200px) {
    .contact:before {
        display: none;
    }
}

.contact:after {
    content: '';
    background: url("../img/contact/decor.png") center no-repeat;
    background-size: contain;
    height: 670px;
    width: 570px;
    position: absolute;
    left: -50px;
    bottom: -240px;
    z-index: -1;
}

@media (max-width: 1470px) {
    .contact:after {
        height: 590px;
        width: 410px;
        left: -20px;
    }
}

@media (max-width: 1200px) {
    .contact:after {
        height: 530px;
        width: 380px;
    }
}

@media (max-width: 1200px) {
    .contact:after {
        height: 450px;
        width: 280px;
    }
}

.contact__container {
    padding: 230px 0 120px;
    position: relative;
}

@media (max-width: 1200px) {
    .contact__container {
        padding: 140px 0 70px;
    }
}

@media (max-width: 1200px) {
    .contact__container {
        padding: 140px 0 380px;
    }
}

@media (max-width: 767px) {
    .contact__container {
        padding: 120px 0 300px;
    }
}

.contact__content {
    max-width: 640px;
    margin-bottom: 360px;
}

@media (max-width: 1200px) {
    .contact__content {
        margin-bottom: 300px;
    }
}

@media (max-width: 992px) {
    .contact__content {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact__content .h3 {
        font-size: 28px;
        font-weight: 500;
    }
}

.contact__content .text {
    margin: 20px 0 30px;
}

@media (max-width: 992px) {
    .contact__content .text {
        margin: 20px 0;
    }
}

.contact .initial {
    position: initial;
}

.contact__main {
    color: #000000;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.26;
}

@media (max-width: 767px) {
    .contact__main {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .contact__main a:hover {
        text-decoration: underline;
    }
}

.contact__soc {
    display: flex;
    margin-top: 45px;
}

@media (max-width: 992px) {
    .contact__soc {
        margin-top: 30px;
    }
}

.contact__soc a {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.contact__soc a:last-child {
    margin-right: 0;
}

.contact__soc a svg {
    height: 22px;
    width: 22px;
    fill: #000;
    transition: .3s all ease;
}

@media (min-width: 1200px) {
    .contact__soc a:hover {
        background: #C5874E;
        border: 2px solid #C5874E;
    }

    .contact__soc a:hover svg {
        fill: #fff;
    }
}

.contact .contact-img {
    object-fit: contain;
    max-width: 580px;
    max-height: 530px;
    display: block;
    position: absolute;
    bottom: -170px;
    left: -60px;
}

@media (max-width: 1470px) {
    .contact .contact-img {
        transform: scale(0.9);
    }
}

@media (max-width: 576px) {
    .contact .contact-img {
        max-width: 100%;
        max-height: 270px;
        transform: scale(1);
        bottom: -90px;
        left: -10px;
    }
}

@media (max-width: 992px) {
    .contact-form {
        margin-top: 30px;
    }
}

.contact-form .form .btn-form {
    margin-top: 40px;
}

.become-a-partner-page .top-banner:before {
    height: 700px;
}

@media (min-width: 2201px) {
    .become-a-partner-page .top-banner:before {
        transform: scale(1.3);
    }
}

@media (min-width: 1860px) and (max-width: 2200px) {
    .become-a-partner-page .top-banner:before {
        height: 660px;
        width: 810px;
    }
}

@media (max-width: 1200px) {
    .become-a-partner-page .top-banner:before {
        height: 470px;
        width: 470px;
        right: -80px;
        top: -80px;
    }
}

@media (max-width: 576px) {
    .become-a-partner-page .top-banner:before {
        max-width: 60%;
        top: -70px;
    }
}

.become-a-partner-page .top-banner:after {
    height: 530px;
    width: 540px;
    right: 190px;
    top: -100px;
}

@media (min-width: 2201px) {
    .become-a-partner-page .top-banner:after {
        right: 330px;
        top: -100px;
        transform: scale(1.3);
    }
}

@media (min-width: 1860px) and (max-width: 2200px) {
    .become-a-partner-page .top-banner:after {
        height: 650px;
        width: 690px;
        right: 250px;
        top: -220px;
    }
}

@media (max-width: 1470px) {
    .become-a-partner-page .top-banner:after {
        right: 80px;
    }
}

.become-a-partner-page .top-banner__img {
    position: absolute;
    top: -270px;
    left: 50px;
}

@media (min-width: 2201px) {
    .become-a-partner-page .top-banner__img {
        top: -220px;
        left: 390px;
        transform: scale(1.3);
    }
}

@media (min-width: 1860px) and (max-width: 2200px) {
    .become-a-partner-page .top-banner__img {
        top: -270px;
        left: 80px;
    }
}

@media (max-width: 1470px) {
    .become-a-partner-page .top-banner__img {
        top: -220px;
    }
}

@media (max-width: 1200px) {
    .become-a-partner-page .top-banner__img {
        position: relative;
        top: 0;
        left: 50px;
    }
}

@media (max-width: 992px) {
    .become-a-partner-page .top-banner__img {
        top: -70px;
        left: -180px;
    }
}

@media (max-width: 576px) {
    .become-a-partner-page .top-banner__img {
        position: absolute;
        top: -330px;
        left: auto;
        right: -420px;
    }
}

.become-a-partner-page .top-banner__img img {
    max-height: 520px;
    max-width: 770px;
    object-fit: contain;
}

@media (min-width: 1860px) and (max-width: 2200px) {
    .become-a-partner-page .top-banner__img img {
        max-height: 590px;
        max-width: 770px;
    }
}

@media (max-width: 1200px) {
    .become-a-partner-page .top-banner__img img {
        max-height: 450px;
        max-width: 650px;
    }
}

@media (max-width: 576px) {
    .become-a-partner-page .top-banner__img img {
        max-height: 430px;
        max-width: 580px;
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    .become-a-partner-page .top-banner__content {
        max-width: 60%;
    }
}

.become-a-partner {
    padding: 140px 0 200px;
    position: relative;
}

@media (max-width: 1470px) {
    .become-a-partner {
        padding: 140px 0 120px;
    }
}

@media (max-width: 1200px) {
    .become-a-partner {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .become-a-partner {
        padding: 40px 0 60px;
    }
}

.become-a-partner:after {
    content: '';
    height: 1300px;
    width: 1300px;
    border: 2px dashed #D5DF40;
    border-radius: 50%;
    position: absolute;
    left: -1100px;
    top: -380px;
    z-index: -1;
}

@media (min-width: 2000px) and (max-width: 2200px) {
    .become-a-partner:after {
        left: -1170px;
    }
}

@media (max-width: 1470px) {
    .become-a-partner:after {
        display: none;
    }
}

.become-a-partner__item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

@media (max-width: 1470px) {
    .become-a-partner__item {
        padding-left: 0;
    }
}

@media (max-width: 1200px) {
    .become-a-partner__item {
        margin-bottom: 40px;
    }
}

.become-a-partner__item img {
    max-width: 74px;
    margin-right: 25px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .become-a-partner__item img {
        max-width: 60px;
        margin-right: 15px;
    }
}

.become-a-partner__item__content {
    max-width: 500px;
}

.become-a-partner__item__title {
    margin-bottom: 5px;
    text-transform: uppercase;
    position: relative;
}

.become-a-partner__item__title span {
    font-size: 14px;
    position: absolute;
}

.where-to-buy-page .top-banner {
    padding: 210px 0 120px;
}

@media (max-width: 1470px) {
    .where-to-buy-page .top-banner {
        padding: 200px 0 120px;
    }
}

@media (max-width: 992px) {
    .where-to-buy-page .top-banner {
        padding: 120px 0 50px;
    }
}

.where-to-buy-page .top-banner:before {
    height: 720px;
    width: 830px;
    background: url(../img/where/decor.png) center no-repeat;
    background-size: contain;
    z-index: 2;
    right: 0;
}

@media (max-width: 1470px) {
    .where-to-buy-page .top-banner:before {
        height: 660px;
        width: 600px;
    }
}

@media (max-width: 1200px) {
    .where-to-buy-page .top-banner:before {
        height: 470px;
        width: 470px;
        right: -80px;
        top: -80px;
    }
}

@media (max-width: 992px) {
    .where-to-buy-page .top-banner:before {
        right: -270px;
    }
}

@media (max-width: 576px) {
    .where-to-buy-page .top-banner:before {
        height: 390px;
        width: 370px;
        top: -30px;
        right: -180px;
    }
}

.where-to-buy-page .top-banner:after {
    height: 580px;
    width: 580px;
    right: 240px;
    top: -120px;
    border: 2px dashed #338236;
}

@media (max-width: 1470px) {
    .where-to-buy-page .top-banner:after {
        height: 460px;
        width: 460px;
        right: 130px;
        top: -80px;
    }
}

.where-to-buy-page .top-banner__img {
    position: absolute;
    top: -230px;
    right: 10px;
}

@media (min-width: 2200px) {
    .where-to-buy-page .top-banner__img {
        top: -240px;
        right: -230px;
    }
}

@media (max-width: 1200px) {
    .where-to-buy-page .top-banner__img {
        top: -200px;
        left: 50px;
    }
}

@media (max-width: 992px) {
    .where-to-buy-page .top-banner__img {
        top: -140px;
        left: -20px;
    }
}

@media (max-width: 576px) {
    .where-to-buy-page .top-banner__img {
        position: absolute;
        top: -160px;
        left: auto;
        right: -25px;
    }
}

.where-to-buy-page .top-banner__img img {
    max-height: 490px;
    max-width: 540px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .where-to-buy-page .top-banner__img img {
        max-height: 390px;
        max-width: 410px;
    }
}

@media (max-width: 992px) {
    .where-to-buy-page .top-banner__img img {
        max-height: 280px;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .where-to-buy-page .top-banner__img img {
        max-height: 230px;
        max-width: 240px;
    }
}

.where-to-buy-page .top-banner__content {
    max-width: 690px;
}

@media (max-width: 576px) {
    .where-to-buy-page .top-banner__content {
        max-width: 50%;
    }
}

.where-to-buy-page .block-full {
    background-size: cover;
    background-position: center;
}

@media (max-width: 767px) {
    .where-to-buy-page .block-full {
        background: #F5F5F5 !important;
    }
}

.where-to-buy-page .block-full__main {
    max-width: 680px;
}

@media (max-width: 1200px) {
    .where-to-buy-page .block-full__main {
        max-width: 100%;
    }
}

.where-to-buy-page .block-full__main .btn {
    max-width: 245px;
}

.where-to-buy {
    padding: 40px 0 40px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .where-to-buy {
        padding: 40px 0;
        margin-bottom: 0;
    }
}

.where-to-buy .where-to-buy-header {
    margin: 0 auto 40px;
    max-width: 1520px;
}

@media (max-width: 1199px) {
    .where-to-buy .where-to-buy-header .sumoselect-wrapp {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .where-to-buy .where-to-buy-header .sumoselect-wrapp {
        margin-bottom: 20px;
    }
}

.where-to-buy .where-to-buy-header .sumoselect-wrapp .SumoSelect {
    width: 100%;
}

@media (max-width: 992px) {

    .where-to-buy .where-to-buy-header select,
    .where-to-buy .where-to-buy-header input {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {

    .where-to-buy .where-to-buy-header select,
    .where-to-buy .where-to-buy-header input {
        margin-bottom: 20px;
    }
}

.where-to-buy .where-to-buy-header__btn {
    max-width: 140px;
}

@media (max-width: 576px) {
    .where-to-buy .where-to-buy-header__btn {
        max-width: 100%;
    }
}

.where-to-buy .mob-filter {
    display: none;
}

@media (max-width: 767px) {
    .where-to-buy .mob-filter {
        color: #000000;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 1.5px;
        line-height: 20px;
        margin-bottom: 20px;
        display: block;
        position: relative;
    }

    .where-to-buy .mob-filter .arrow {
        position: absolute;
        right: 15px;
        top: 7px;
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transition: .3s all ease;
    }

    .where-to-buy .mob-filter.active .arrow {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }
}

#map-locations-align {
    position: relative;
    overflow: hidden;
    height: 720px;
    background: grey;
    border-radius: 26px;
}

@media (max-width: 1470px) {
    #map-locations-align {
        height: 600px;
    }
}

@media (max-width: 767px) {
    #map-locations-align {
        height: 420px;
    }
}

#map-locations {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.location-text-entry br {
    display: none;
}

.location-text-entry {
    margin-bottom: 10px;
    cursor: pointer;
    display: none;
}

@media (min-width: 1200px) {
    .location-text-entry:hover:hover {
        color: #aaa;
    }
}


/*popup*/

.map-popup {
    position: fixed;
    left: -100%;
    width: 100%;
    top: -100px;
    bottom: -100px;
    transition: left 0s .3s;
    -webkit-transition: left 0s .3s;
    z-index: 98;
}

.map-popup.active {
    left: 0;
    transition: left 0s;
    -webkit-transition: left 0s;
}

.map-popup:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    content: "";
    transition: .3s;
    -webkit-transition: .3s;
}

.map-popup.active:before {
    background: rgba(255, 255, 255, 0.5);
}

.map-popup-content {
    position: absolute;
    left: 0;
    top: 100px;
    right: 0;
    bottom: 100px;
    padding: 15px;
    font-size: 0;
    text-align: center;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    opacity: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: .3s;
    -webkit-transition: .3s;
}

.map-popup.active .map-popup-content {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
}

.map-popup-align {
    display: inline-block;
    max-width: 100%;
    padding: 60px 100px 60px 100px;
    background-color: #579659;
    vertical-align: middle;
    position: relative;
}

.map-popup-content:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.map-popup-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.button-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.map-popup-text {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}


/*autocomplete*/

.pac-container * {
    font-family: 'Century Gothic';
}

.pac-container {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}

.pac-logo:after {
    display: none;
}

.pac-icon {
    display: none;
}

.si-content-wrapper {
    padding: 60px 50px 80px;
    max-width: 430px;
    border-radius: 26px;
}

@media (max-width: 767px) {
    .si-content-wrapper {
        padding: 30px;
    }
}

.si-content-wrapper .si-close-button {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 15px;
    font-size: 34px;
    border-radius: 50%;
    border: 1px solid #F5F5F5;
    opacity: 1;
    color: #091219;
}

@media (max-width: 767px) {
    .si-content-wrapper .si-close-button {
        height: 30px;
        width: 30px;
        top: 0;
        right: 0;
    }
}

.si-shadow-frame {
    box-shadow: none;
}

.si-has-border .si-content-wrapper {
    border: none;
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
}

.si-shadow-wrapper-top {
    border: transparent;
}

.info-map-box img {
    max-height: 135px;
    max-width: 240px;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
}

@media (max-width: 767px) {
    .info-map-box img {
        margin: 0 auto 10px;
        max-width: 180px;
        max-height: 40px;
    }
}

.info-map-box .info-map-box-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 38px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .info-map-box .info-map-box-title {
        line-height: 1.2;
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.info-map-box .info-map-box-text {
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.27px;
    line-height: 20px;
    margin-bottom: 15px;
}

.info-map-box .info-map-box-text a {
    text-decoration: underline;
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.27px;
    line-height: 20px;
}

.info-map-box .info-map-box-text span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 18px;
}

.info-map-box .info-map-box-text ul {
    margin-bottom: 60px;
}

.info-map-box .info-map-box-text ul li {
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.27px;
    line-height: 20px;
    margin-bottom: 15px;
}

.map-locations-wrapper {
    display: none !important;
}

@media (max-width: 576px) {
    .map-locations-wrapper .location-text-entry {
        border-radius: 17px;
        background-color: #FFFFFF;
        box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
        max-width: 340px;
        margin: 0 auto;
    }
}

.map-locations-wrapper .location-text-entry img {
    max-height: 135px;
    max-width: 240px;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
}

@media (max-width: 767px) {
    .map-locations-wrapper .location-text-entry img {
        margin: 0 auto 10px;
        max-width: 180px;
        max-height: 40px;
    }
}

.map-locations-wrapper .location-text-entry .info-map-box-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 38px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .map-locations-wrapper .location-text-entry .info-map-box-title {
        line-height: 1.2;
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.map-locations-wrapper .location-text-entry .info-map-box-text {
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.27px;
    line-height: 20px;
    margin-bottom: 15px;
}

.map-locations-wrapper .location-text-entry .info-map-box-text a {
    text-decoration: underline;
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.27px;
    line-height: 20px;
}

.map-locations-wrapper .location-text-entry .info-map-box-text span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 18px;
}

.map-locations-wrapper .location-text-entry .info-map-box-text ul {
    margin-bottom: 60px;
}

.map-locations-wrapper .location-text-entry .info-map-box-text ul li {
    display: block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.27px;
    line-height: 20px;
    margin-bottom: 15px;
}

.thanks {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 1470px) {
    .thanks {
        height: 98vh;
    }
}

@media (max-width: 767px) {
    .thanks {
        min-height: 85vh;
        height: auto;
        padding: 120px 0 80px;
    }
}

.thanks:before {
    content: '';
    background: url("../img/thank/thank-decor.png") center no-repeat;
    background-size: contain;
    height: 880px;
    width: 610px;
    position: absolute;
    right: 0;
    top: -150px;
}

@media (max-width: 1470px) {
    .thanks:before {
        height: 800px;
        width: 600px;
    }
}

@media (max-width: 1200px) {
    .thanks:before {
        height: 690px;
        width: 430px;
    }
}

@media (max-width: 992px) {
    .thanks:before {
        height: 640px;
        width: 390px;
    }
}

@media (max-width: 576px) {
    .thanks:before {
        height: 430px;
        width: 260px;
        right: -150px;
        top: -80px;
    }
}

.thanks:after {
    content: '';
    height: 1820px;
    width: 1820px;
    border: 2px dashed #579659;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    left: -140px;
    bottom: -140px;
}

@media (max-width: 576px) {
    .thanks:after {
        display: none;
    }
}

.thanks__main {
    margin: 0 auto;
}

.thanks__caption {
    max-width: 660px;
}

@media (max-width: 1199px) {
    .thanks__caption {
        max-width: 50%;
    }

}

@media (max-width: 576px) {
    .thanks__caption {
        max-width: 60%;
    }
}

.thanks__caption .h2 {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.thanks__caption .h5 {
    margin-bottom: 60px;
    font-size: 30px;
    line-height: 1.43em;
}

.thanks__soc .h5 {
    margin-bottom: 35px;
    font-size: 23px;
    line-height: 1.43em;
}

@media (max-width: 576px) {
    .thanks__caption .h5 {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.thanks__links {
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .thanks__links {
        flex-direction: column;
    }
}

.thanks__links .btn {
    max-width: 250px;
    background: #091219;
    border: 2px solid #091219;
    color: #fff;
}

.thanks__links .btn:nth-child(1) {
    margin-right: 50px;
}

.thanks__links .btn:hover {
    background: #fff;
    color: #091219;
}

@media (max-width: 767px) {
    .thanks .thanks__links * {
        margin: 0 auto 30px;
    }

    .thanks__links .btn,
    .thanks__links .btn:nth-child(1) {
        margin-bottom: 10px;
        margin-right: 0;
        margin-left: 0;
    }
}

.thanks__soc .h4 {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .thanks__soc .h4 {
        margin-top: 40px;
    }
}

.thanks__soc__links {
    display: flex;
    margin-top: 30px;
}

.thanks__soc__links a {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #C5874E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.thanks__soc__links a:last-child {
    margin-right: 0;
}

.thanks__soc__links a svg {
    height: 24px;
    width: 24px;
    fill: #000;
    transition: .3s all ease;
}

.thanks__soc__links a:hover {
    background: #C5874E;
}

.thanks__soc__links a:hover svg {
    fill: #fff;
}

.thanks .thanks-img {
    height: 600px;
    width: 600px;
    position: absolute;
    right: -70px;
    top: 160px;
}

@media (max-width: 1470px) {
    .thanks .thanks-img {
        right: -100px;
    }
}

@media (max-width: 1200px) {
    .thanks .thanks-img {
        height: 360px;
        width: 360px;
        right: 0;
        top: 100px;
    }
}

@media (max-width: 992px) {
    .thanks .thanks-img {
        height: 300px;
        width: 300px;
        top: 70px;
    }
}

@media (max-width: 576px) {
    .thanks .thanks-img {
        height: 200px;
        width: 200px;
        top: 110px;
        right: 0;
    }
}

@media (max-width: 400px) {
    .thanks .thanks-img {
        height: 170px;
        width: 170px;
        right: -17px;
    }
}

.thanks .thanks-img img {
    max-width: 100%;
    max-height: 100%;
}

.thanks.thanks2 .thanks-img {
    height: 560px;
    width: 560px;
    position: absolute;
    right: 130px;
    top: 110px;
}

@media (max-width: 1200px) {
    .thanks.thanks2 .thanks-img {
        height: 460px;
        width: 460px;
        right: 0;
        top: 100px;
    }
}

@media (max-width: 992px) {
    .thanks.thanks2 .thanks-img {
        height: 400px;
        width: 400px;
        top: 70px;
    }
}

@media (max-width: 576px) {
    .thanks.thanks2 .thanks-img {
        height: 300px;
        width: 300px;
        top: 110px;
        right: -120px;
    }
}

.thanks.thanks2 .thanks-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.privacy-policy-content {
    padding: 160px 0 80px;
}

@media (max-width: 1200px) {
    .privacy-policy-content {
        padding: 120px 0 50px;
        margin-bottom: 0;
    }
    .woocommerce-account .privacy-policy-content{
        padding-top: 150px;
    }
}

.swiper-container:not(.swiper-no-swiping) .swiper-wrapper {
    cursor: url(../img/drag.png) 16 9, ew-resize;
}

.swiper-button-lock+.swiper-button-lock+.swiper-container .swiper-wrapper {
    cursor: inherit;
}

.woocommerce a.button.empty-cart {
    width: auto;
    display: inline-block;
    text-align: center;
    margin-left: 50%;
    transform: translate(-50%);
    line-height: 25px;
}

.woocommerce div.product form.cart .variations select {
    font-weight: 400;
    cursor: pointer;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    display: none;
}

/* .woocommerce-page .custom-single-product{
    margin-top: 140px;
} */

.single-product .detail-decor::before {
    content: '';
    max-width: 960px;
    max-height: 1044px;
    width: 100%;
    height: 100%;
    top: 0;
    left: -2%;
    display: block;
    background-image: url(../img/products/detail-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}

@media(max-width:1800px) {
    .single-product .detail-decor::before {
        left: -6%;
    }
}

@media(max-width:1700px) {
    .single-product .detail-decor::before {
        left: -9%;
    }
}

@media(max-width:1600px) {
    .single-product .detail-decor::before {
        left: -13%;
    }
}

@media(max-width:1500px) {
    .single-product .detail-decor::before {
        width: 65%;
        height: 65%;
        left: -19%;
    }

}

@media(max-width:992px) {
    .single-product .detail-decor::before {
        background-image: url(../img/products/detail-bg-2.png);
        left: 0;
        width: 100%;
        max-height: 100%;
        top: -5%;

    }
}

@media(max-width:767px) {
    .single-product .detail-decor::before {
        top: -5%;
    }
}

@media(max-width:576px) {
    .single-product .detail-decor::before {
        top: -2%;
    }
}

@media(max-width:476px) {
    .single-product .detail-decor::before {
        top: 0;
    }
}

.woocommerce div.product form.cart .sumoselect-wrapp {
    position: relative;
}

.woocommerce div.product form.cart .sumoselect-wrapp::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 35px;
    transition: all .3s ease-in-out;
    margin-top: -3px;
    width: 11px;
    height: 7px;
    background-image: url(../img/icon-input-1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    pointer-events: none;
    /* transform: rotate(180deg); */
    /* -webkit-transform: rotate(180deg); */
    /* border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #091219;
    border-radius: 5px; */
}

@media(max-width:413px) {
    .qauntity-size-wrapper>*:not(:last-child) {
        margin-right: 10px;
    }
}

@media(max-width: 992px) {
    .woocommerce-product-gallery__image {
        margin-bottom: 50px;
    }
}


/* btn all products */
.all-products-wrapper {
    position: relative;
    letter-spacing: 0.005em;
    font-size: 17px;
    line-height: 1.47em;
    color: #000;
    padding: 40px 40px 40px 120px;
    font-weight: 500;
    margin-top: 80px;
    margin-bottom: 50px;
    z-index: 2;
}

.all-products::before,
.all-products::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 100%;
    overflow: hidden;
    background-color: #fff;
}

.all-products::after {
    background-color: transparent;
    background-image: url(../img/arrow-return.svg);
    background-repeat: no-repeat;
    transition: all 0.3s;
}

@media(min-width: 1200px) {
    .all-products:hover::after {
        left: 30px;
    }
}

@media(max-width: 767px) {
    .all-products {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 90px;
        /* padding-left: 100px; */
    }

    .all-products::before,
    .all-products::after {
        left: 20px;
    }
}

/* checkout decor */
.checkout-decor,
.login-decor {
    position: relative;
}

.checkout-decor::after,
.checkout-decor::before,
.login-decor:before {
    content: '';
    width: 335px;
    height: 765px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/bg-checkout-1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.checkout-decor::after {
    left: auto;
    right: 0;
    bottom: 0;
    top: auto;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.login-decor:before {
    left: auto;
    right: 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

@media(max-width: 1470px) {

    .checkout-decor::after,
    .checkout-decor::before,
    .login-decor:before {
        width: 235px;
        height: 665px;
        background-size: contain;
    }
}

@media(max-width: 1200px) {

    .checkout-decor::after,
    .checkout-decor::before,
    .login-decor:before {
        content: none;
    }
}

@media(max-width: 767px) {
    .checkout-decor {
        padding-top: 110px;
    }
}

.woocommerce form .form-row .required {
    display: none;
}

.single_variation_wrap {
    position: relative;
}

.woocommerce-variation.single_variation {
    position: absolute;
    left: 23%;
    top: -65px;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
    font-weight: 500;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.015em;
    color: #091219;
    opacity: 0.5
}

.woocommerce div.product form.cart .button.disabled {
    background: #D8D8D8;
    color: rgba(9, 18, 25, 0.6);
    border-color: transparent;
}

.woocommerce-page .text.color2 h3,
.woocommerce-page .text.color2 .h3 {
    color: #fff;
}

@media(max-width: 1366px) {
    .woocommerce-variation.single_variation {
        left: 26%;
    }
}

@media(max-width: 1199px) {
    .woocommerce-variation.single_variation {
        left: 28%;
    }
}

@media(max-width: 991px) {
    .woocommerce-variation.single_variation {
        left: 145px;
    }
}

@media(max-width: 767px) {
    .woocommerce-variation.single_variation {
        top: -47px;
    }
}

@media(max-width: 575px) {
    .woocommerce-variation.single_variation {
        left: 135px;
    }
}

.woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    display: none;
}

.products-sec {
    margin-bottom: 150px;
}

@media(max-width: 991px) {
    .products-sec {
        margin-bottom: 90px;
    }
}

.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
    border-bottom: none !important;
}

@media(max-width: 575px) {

    #billing_country_field>label,
    #billing_state_field>label {
        top: -10px;
    }

    .woocommerce div.product form.cart .sumoselect-wrapp,
    .woocommerce div.product form.cart .variations select {
        width: 100% !important;
    }

}

@media(max-width: 400px) {

    .woocommerce-edit-account .woocommerce form .form-row label,
    .woocommerce-lost-password .woocommerce form .form-row label,
    .registration-page .woocommerce form .form-row label {
        font-size: 11px !important;
    }

    #billing_country_field>label,
    #billing_state_field>label {
        top: -6px;
        font-size: 12px;
    }

    .woocommerce div.product form.cart div.quantity {
        width: 110px !important;
    }
}

@media(min-width: 768px) {
    .custom-width {
        max-width: 34%;
        flex: 0 0 34%;
    }
}
.related.products h4, .woocommerce-message .button.wc-forward, .update_cart{
    text-transform: capitalize;
}
.woocommerce-cart .prod-wrapper .text{
    max-width: 85%;
}
@media(max-width:767px) {
    .woocommerce-cart .prod-wrapper .text{
        max-width: 100%;
    }
}
#user_update_pin .message{
    text-align: left;
    position: relative;
}
#user_update_pin .message::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 18px;
    width: 18px;
    height: 9px;
    border-left: 2px solid #091219;
    border-bottom: 2px solid #091219;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
#user_update_pin .success{
    width: 100%!important;
    max-width: 375px;
    text-align: center;
}
.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions .btn-apply.view{
    font-weight: 500!important;
}
.account-orders-history-table tr td{
    background: #fff;
}
.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: #fff;
}
