:root {

    /* Colours */
    --color-primary: #21533A;
    --color-secondary: #E5EFE2;
    --color-light: #D4E5CF;
    --color-white: #fff;
    --color-black: #000;
    --color-near-black: #1e1e1e;
    --color-border: #D9D9D9;
    --color-error: #d9534f;
    --color-success: #5cb85c;
    --color-warning: #ce0000;
    --color-golden: #A48254;

    --color-gray: #393939;
    --color-light-gray: #eee;
    --color-gray-100: #f9f9f9;
    --color-gray-200: #bfbfbf;
    --color-gray-300: #e2e2e2;
    --color-gray-400: #AEAEAE;
    --color-gray-500: #f3f3f3;
    --color-gray-600: #CBD5E1;
    --color-green: #829623;
    --color-green-10: #70a672;
    --color-green-20: #21533a;
    --color-green-30: #778b20;
    --color-green-40: #F3F5E9;
    --color-green-50: #1C586E;
    --color-green-dark: #616a38;
    --color-blue: #708297;
    --color-blue-20: #475569;
    --color-blue-30: #64748B;
    --color-blue-40: #006CBA;
    --color-dark-blue: #334155;
    --color-orage: #d1937a;
    --color-orage-light: #daab98;
    --color-meganta: #5c469a;
    --color-red: #AE0D3A;
    --color-red-100: #B50009;
    --color-yellow: #C88B07;
    --color-input: var(--color-primary);

    /* Link Style */
    --link-color-base: inherit;
    --link-decoration-base: underline;
    --link-hover-color-base: inherit;
    --link-hover-decoration-base: none;

    /* Transitions */
    --speed-fast: .125s;
    --speed-default: .25s;
    --speed-slow: .5s;
    --speed-sluggish: 1s;
    --speed-snail: 2s;
    --cubic-bezier: cubic-bezier(.05, .69, .14, 1);
    --cubic-bezier-2: cubic-bezier(.215, .61, .355, 1);

    /* Body Style */
    --body-bg: var(--color-white);
    --font-family-base: 'Segoe UI', sans-serif;
    --text-color-base: var(--color-black);

    /* Headings Style */
    --heading-font-family: 'Tenor Sans', sans-serif;
    --heading-margin: 0 0 20px 0;
    --heading-font-weight: 400;
    --heading-color: inherit;

    /* Icons Style */
    --icons-font-family: 'vault-icons';
    --icon-angle-down: "\e900";
    --icon-angle-left: "\e901";
    --icon-angle-right: "\e902";
    --icon-bag: "\e903";
    --icon-bell: "\e904";
    --icon-calender: "\e905";
    --icon-check-square: "\e906";
    --icon-check: "\e907";
    --icon-email: "\e908";
    --icon-facebook: "\e909";
    --icon-heart: "\e90a";
    --icon-instagram: "\e90b";
    --icon-minus-circle: "\e90c";
    --icon-minus: "\e90d";
    --icon-plus-circle: "\e90e";
    --icon-plus: "\e90f";
    --icon-quote-bottom: "\e910";
    --icon-quote-top: "\e911";
    --icon-search: "\e912";
    --icon-share: "\e913";
    --icon-tel: "\e914";
    --icon-truck: "\e915";
    --icon-twitter: "\e916";
    --icon-user: "\e917";
    --icon-chevron-down: "\e918";

    /* Font sizes */
    --font-size-h1: 22px;
    --font-size-h2: 20px;
    --font-size-h3: 18px;
    --font-size-h4: 16px;
    --font-size-h5: 15px;
    --font-size-h6: 14px;
    --font-size-base: 14px;
    --font-size-small: 12px;
    --font-size-btn: var(--font-size-base);

    /* Line heights */
    --line-height-base: 1.3;
    --heading-line-height: 1.1;

    /* Paddings */
    --py-section: 50px;
    --py-section-small: 55px;
    --py-section-medium: 55px;
    --py-section-large: 55px;
    --px-form-control: 13px;
    --py-form-control: 15px;
    --px-gutter-base: 15px;

    /* Heights */
    --height-btn: 40px;
    --height-btn-sm: 40px;
    --height-form-control: 48px;
    --height-header-base: 88px;

    /* Widths */
    --width-base: 1360px;
    --width-small: 1032px;
    --width-medium: 1440px;

    /* Sizes */
    --size-bullet: 5px;
    --size-btn-play: 60px;
    --size-radius-btn: 4px;
    --size-form-check-indicator: 16px;
    --size-accordion-indicator: 10px;
}

/*
VARIABLES
CORE
HEADER
FOOTER
*/

@media (min-width: 768px) {
    :root {
        --py-section: 80px;
    }
}


/*******************************************************************************************
HEADER
*******************************************************************************************/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
*,
*:before,
*:after {
    box-sizing: inherit;
}

*:focus {
    outline: none;
}

html {
    box-sizing: border-box;
}

body {
    line-height: var(--line-height-base);
    color: var(--text-color-base);
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    margin: 0;
    font-weight: 400;
    background: var(--color-white);
}

body.is-active {
    overflow: clip;
}

/* CORE > Global */
img {
    height: auto;
    display: block;
    max-width: 100%;
}

main {
    overflow: clip;
}

.clear:after {
    display: block;
    clear: both;
    content: '';
}

/* CORE > Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-weight: 400;
    color: var(--heading-color);
    font-family: var(--heading-font-family);
    line-height: var(--heading-line-height);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

p {
    margin: 0 0 20px;
}

ul {
    list-style: none;
}

strong {
    font-weight: bold;
}

/* CORE > Form */
label {
    font-weight: 400;
    margin-bottom: 5px;
    display: inline-block;
}

input,
select,
textarea {
    padding: 10px 12px;
    display: block;
    width: 100%;
    height: 45px;
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray);
    border: 1px solid var(--color-input);
    border-radius: 0;
    background: var(--color-white);
}

input::placeholder,
textarea::placeholder {
    color: var(--color-gray);
}

body a.woocommerce-remove-coupon {
    display: none !important;
}

input:disabled,
select:disabled,
textarea:disabled {
    opacity: .8;
    color: var(--color-border);
    background-color: var(--color-white);
}

input[type='checkbox'] {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-green);
    border-radius: 0;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
}

input[type='checkbox']:checked:before {
    color: var(--color-green);
    display: block;
    font-size: 8px;
    font-family: var(--icons-font-family), sans-serif;
    content: var(--icon-check);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type='radio'] {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
}

input[type='radio']:checked:before {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--color-primary);
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type='submit'],
input[type='reset'],
input[type='button'] {
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

select {
    background-image: url('data:image/png;base64,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');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: auto 5px;
    appearance: none;
    padding-right: 30px;
}

textarea {
    width: 100%;
    height: 120px;
}

/* CORE > Links and Buttons */
a {
    color: var(--link-color-base);
    text-decoration: var(--link-decoration-base);
}

a:hover,
a:focus {
    color: var(--link-hover-color-base);
    text-decoration: var(--link-hover-decoration-base);
}

a,
button,
.button {
    cursor: pointer;
    transition: all 0.3s;
}

.button {
    font-family: var(--heading-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    padding: 0 20px;
    border-radius: 0;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-primary);
    cursor: pointer;
    height: 40px;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.button:hover,
.button:focus {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}

.button.outline {
    color: var(--color-primary);
    background-color: transparent;
    border-color: var(--color-primary);
}

.button.outline:hover,
.button.outline:focus {
    color: var(--color-white);
    background-color: var(--color-primary);
}

@media (min-width: 768px) {
   .button {
       font-size: 16px;
       height: 58px;
   }
}

/* CORE > Layout */
.container,
.container-wide,
.container-narrow {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--px-gutter-base);
    padding-right: var(--px-gutter-base);
    max-width: calc(var(--width-base) + calc(var(--px-gutter-base) * 2));
}

.container-narrow {
    max-width: calc(var(--width-small) + calc(var(--px-gutter-base) * 2));
}

.container-wide {
    max-width: calc(var(--width-medium) + calc(var(--px-gutter-base) * 2));
}

.container .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.section {
    margin-top: var(--py-section);
    margin-bottom: var(--py-section);
}

.section[class^="bg-"] {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: var(--py-section);
    padding-bottom: var(--py-section);
}

.section-heading {
    margin: 0 70px 24px;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--font-size-h6);
}

.section-inner {
    position: relative;
}

.section-arrows {
    position: absolute;
    top: -4px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60px;
}

.section-arrows.is-right {
    right: 0;
    left: auto;
}

.section-arrows button {
    position: static;
}

.section-view-more {
    position: absolute;
    top: -1px;
    right: 0;
    font-size: 14px;
    font-family: var(--heading-font-family);
}

.section-view-more a {
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.3s;
}

.section-view-more a:focus,
.section-view-more a:hover {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .section-heading {
        margin-bottom: 44px;
        margin-right: 150px;
        margin-left: 150px;
        font-size: var(--font-size-h1);
    }

    .section-arrows {
        top: 0;
        width: 106px;
    }

    .section-view-more {
        top: 2px;
        font-size: 20px;
    }
}

@media (min-width: 1025px) {
    .section-heading {
        margin-right: 200px;
        margin-left: 200px;
    }
    .section-arrows.is-right {
        right: 69px;
    }
}

/* CORE > Utility Classes */
.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-transition {
    transition: none !important;
}

.no-min-height {
    min-height: 0;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.block {
    display: block !important;
}

.full-width {
    width: 100%;
}

.center,
.align-center,
.text-center {
    text-align: center;
}

.right,
.align-right,
.text-right {
    text-align: right;
}

.text-label {
    padding: 10px 30px;
    font-size: 12px;
    color: var(--color-white);
    background: var(--color-primary);
}

.uppercase {
    text-transform: uppercase;
}

.hide {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.visually-hidden {
    border: none !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.flex-container {
    display: flex;
    align-items: center;
}

.flex-align-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align-horizontal {
    display: flex;
    justify-content: center;
    text-align: center;
}

.small-text {
    font-size: 0.9rem;
}

.larger-text {
    font-size: 1.2rem;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.small-margin-left {
    margin-left: 10px;
}

.small-margin-right {
    margin-right: 10px;
}

.no-background {
    background: none !important;
}

.transition-all {
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .hide-for-medium {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hide-for-large {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
    .show-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .show-for-large {
        display: none !important;
    }
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
    position: relative;
    z-index: 9;
    width: 100%;
    background-color: var(--color-white);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.09));
}

/* HEADER > Offer Slider */
.header-offer {
    font-size: 10px;
    line-height: 1.1;
    padding-top: 4px;
    padding-bottom: 4px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-primary);
}

.header-offer .swiper-slide {
    width: auto;
}

/* HEADER > Logo */
.header-logo {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 110px;
    align-self: center;
    transform: translateX(-50%);
}

.header-logo img {
    width: 100%;
    display: block;
}

@media screen and (min-width: 768px) {
    .header-logo {
        position: inherit;
        width: 180px;
        transform: translateX(0);
    }
}

@media screen and (min-width: 1025px) {
    .header-logo {
        width: 220px;
    }
}

/* HEADER > Main Menu */
.header-menu {
    background-color: var(--color-white);
}

.header-menu-inner {
    display: flex;
    height: 50px;
}

.header-menu .block-cart {
    position: fixed;
    top: 93px;
    right: 0;
    width: 100%;
    height: calc(100vh - 93px);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: var(--speed-default) ease-in-out;
}

.header-menu .block-cart.is-active {
    opacity: 1;
    visibility: visible;
}

/* HEADER > Main Toggle */
.header-toggle {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 0;
    border: 0;
    height: 30px;
    border-radius: 0;
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    align-self: center;
    transition: var(--speed-default);
}

.header-toggle-bar {
    display: flex;
    margin-right: 8px;
    position: relative;
    width: 15px;
    height: 2px;
    border-radius: 50px;
    background: var(--color-primary);
}

.header-toggle-bar:before,
.header-toggle-bar:after {
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 50px;
    background: var(--color-primary);
    content: '';
}

.header-toggle-bar:before {
    top: -5px;
    width: 20px;
}

.header-toggle-bar:after {
    bottom: -5px;
    width: 11px;
}

.header-toggle-text {
    font-size: 16px;
    font-family: var(--heading-font-family);
    color: var(--color-gray);
}

.header-toggle:focus,
.header-toggle:hover {
    background: transparent;
    color: var(--color-primary);
}

.header-toggle.active .header-toggle-bar {
    transform: scaleX(-1);
}

/* HEADER > Nav Menu */
.header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    overflow-y: scroll;
    background-color: var(--color-white);
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav > ul > li > a {
    line-height: 50px;
    position: relative;
    display: inline-flex;
    font-size: 14px;
    font-family: var(--heading-font-family);
    font-weight: 400;
    align-items: center;
    color: var(--color-gray);
    text-decoration: none;
}

.header-nav > ul > li > a:before {
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 0;
    height: 5px;
    position: absolute;
    background-color: var(--color-primary);
    transition: width var(--speed-default) ease-in-out;
}

.header-nav > ul > li > a:hover,
.header-nav > ul > li > a:focus {
    font-weight: bold;
}

.header-nav > ul > li > a:hover:before,
.header-nav > ul > li > a:focus:before {
    width: 100%;
}

.header-nav > ul > li:hover .header-mega-menu,
.header-nav > ul > li:focus .header-mega-menu {
    opacity: 1;
    visibility: visible;
}

/* HEADER > Mega Menu */
.header-mega-menu {
    padding: 0 15px 15px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.09);
}

.header-mega-right {
    order: 1;
    width: 100%;
}

.header-mega-nav ul {
    padding-left: 0;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.header-mega-nav ul > li {
    margin-bottom: 18px;
}

.header-mega-nav ul > li.is-active > ul {
    display: block;
}

.header-mega-nav ul > li.is-active > a:after {
    display: block;
    font-size: 2px;
    content: var(--icon-minus);
}

.header-mega-nav ul > li > a {
    padding: 19px 30px;
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--heading-font-family);
    color: var(--color-black);
    text-transform: uppercase;
    background-color: var(--color-secondary);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.header-mega-nav ul > li > a:after {
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 14px;
    font-family: var(--icons-font-family);
    transform: translateY(-50%);
    content: var(--icon-plus);
}

.header-mega-nav ul > li > ul {
    padding: 20px;
    display: none;
    background-color: var(--color-secondary);
}

.header-mega-nav ul > li > ul > li {
    margin-bottom: 10px;
}

.header-mega-nav ul > li > ul > li:last-of-type {
    margin-bottom: 0;
}

.header-mega-nav ul > li > ul > li > a {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    display: block;
    text-transform: inherit;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: none;
}

.header-mega-nav ul > li > ul > li > a:after {
    display: none;
}

.header-mega-nav ul > li > ul > li > a:focus:after,
.header-mega-nav ul > li > ul > li > a:hover:after {
    width: 100%;
}

.header-mega-block {
    margin-bottom: 20px;
    display: block;
    width: 200px;
}

.header-mega-block-link {
    display: block;
    text-decoration: none;
    font-size: 16px;
}

.header-mega-block-link img {
    width: 100%;
}

.header-mega-block-link span {
    margin: 12px 0 7px;
    display: block;
    font-size: 16px;
    font-family: var(--heading-font-family);
}

.header-mega-block .swiper-pagination {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    margin-top: 0;
    text-align: left;
}

.header-mobile {
    position: absolute;
    top: 69px;
    left: -100%;
    padding: 15px;
    width: 100%;
    height: calc(100vh - 69px);
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    transition: all 0.3s;
    background-color: var(--color-white);
}

.header-mobile.is-active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.header-mobile-holder {
    position: relative;
}

.header-mobile-all {
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    font-family: var(--heading-font-family);
    text-align: center;
}

.header-mobile ul {
    margin: 0 0 20px 0;
    padding: 0 15px;
    background-color: var(--color-white);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.header-mobile ul > li {
    position: relative;
    border-bottom: 1px solid var(--color-secondary);
}

.header-mobile ul > li:last-of-type {
    border-bottom: 0;
}

.header-mobile ul > li > a {
    padding: 28px 10px;
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: var(--heading-font-family);
    color: var(--color-black);
    text-decoration: none;
}

.header-mobile ul > li .js-arrow-submenu {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    z-index: 5;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--icons-font-family);
    font-size: 10px;
    transform: translateY(-50%);
    content: var(--icon-angle-right);
}

.header-mobile ul > li:has(ul) .js-arrow-submenu {
    display: flex;
}

.header-mobile ul > li.is-active .header-mobile-submenu {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.header-mobile ul > li > ul {
    margin-bottom: 0;
}

.header-mobile-submenu {
    padding: 15px;
    position: fixed;
    top: 69px;
    left: -100%;
    z-index: 6;
    width: 100%;
    height: calc(100vh - 69px);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    background-color: var(--color-white);
    transition: all 0.3s;
}

.header-mobile-submenu-heading {
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    font-family: var(--heading-font-family);
    text-align: center;
}

.header-mobile-submenu-heading .back-btn {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    font-family: var(--font-family-base);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark-blue);
    border: 0;
    border-radius: 0;
    background-color: transparent;
    transform: translateY(-50%);
}

.header-mobile-submenu-heading .back-btn i {
    margin-top: 2px;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.header-mobile-submenu-item {
    position: relative;
    margin-bottom: 20px;
    background-color: var(--color-light);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.header-mobile-submenu-item:has(ul) .js-plus-btn {
    display: flex;
}

.header-mobile-submenu-item .js-plus-btn {
    position: absolute;
    top: 16px;
    width: 30px;
    height: 30px;
    right: 15px;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: var(--icons-font-family);
    content: var(--icon-plus);
}

.header-mobile-submenu-title {
    padding: 22px 31px 20px;
    position: relative;
    display: block;
    width: 100%;
    font-family: var(--heading-font-family);
    font-size: 14px;
    color: var(--color-black);
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    background-color: var(--color-light);
    text-align: left;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.header-mobile-submenu-title:hover,
.header-mobile-submenu-title:focus {
    color: var(--color-black);
    background-color: var(--color-secondary);
}

.header-mobile-submenu ul {
    margin-bottom: 0;
    padding: 20px 20px 28px;
    display: none;
    box-shadow: none;
    background-color: transparent;
}

.header-mobile-submenu ul > li {
    margin-bottom: 22px;
    border-bottom: 0;
}

.header-mobile-submenu ul > li:last-of-type {
    margin-bottom: 0;
}

.header-mobile-submenu ul > li > a {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    display: block;
    text-transform: inherit;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: none;
    text-decoration: none;
}

.header-mobile-submenu ul > li > a:after {
    display: none;
}

.header-mobile-submenu-item.is-active .header-mobile-submenu-title {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.header-mobile-submenu-item.is-active .js-plus-btn {
    color: var(--color-white);
}

.header-mobile-submenu-item.is-active .js-plus-btn i {
    display: none;
}

.header-mobile-submenu-item.is-active .js-plus-btn:after {
    display: block;
    font-size: 1px;
    font-family: var(--icons-font-family);
    color: var(--color-white);
    content: var(--icon-minus);
}

.header-mobile-submenu-item.is-active ul {
    display: block;
}

.header-mobile-account > li.is-active .header-mobile-account-nav {
    left: 0;
    opacity: 1;
    visibility: visible;
}

ul.header-mobile-account {
    width: 100%;
    height: 100%;
    background: var(--color-white) url('../images/mobile-account-bg.jpg') no-repeat;
    background-size: cover;
    box-shadow: none;
}

.header-mobile-account > li {
    border-bottom: 0 !important;
}

.header-mobile-account > li > a {
    padding: 40px 10px !important;
    z-index: 1;
}

.header-mobile-account-nav {
    padding: 15px;
    position: fixed;
    top: 69px;
    left: -100%;
    z-index: 6;
    width: 100%;
    height: calc(100vh - 69px);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 0.3s;
    background-color: var(--color-white);
}

.header-mobile-account-heading {
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    font-family: var(--heading-font-family);
    text-align: center;
}

.header-mobile-account-heading .back-btn {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    font-family: var(--font-family-base);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark-blue);
    border: 0;
    border-radius: 0;
    background-color: transparent;
    transform: translateY(-50%);
}

.header-mobile-account-heading .back-btn i {
    margin-top: 2px;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.header-mobile-account ul > li > ul {
    margin: 0;
    padding: 45px 0 15px;
    background-color: var(--color-white);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.header-mobile-account-nav ul {
    margin-bottom: 0;
    padding: 10px 0;
}

.header-mobile-account-nav ul > li {
    margin-bottom: 7px;
    border-bottom: 0;
}

.header-mobile-account-nav ul > li > a {
    padding: 11px 32px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
}

.header-mobile-account-nav ul > li > a picture {
    margin-right: 6px;
    display: inline-block;
    width: 43px;
}

.header-mobile-account-nav ul > li > a img {
    margin: 0 auto;
}

.header-mobile-account-nav ul > li > a:after {
    display: none;
}

.header-mobile-account-nav ul > li > a:focus,
.header-mobile-account-nav ul > li > a:hover {
    background-color: var(--color-secondary);
}

/* HEADER > Side Menu */
.header-icons {
    display: flex;
    margin-left: auto;
}

.header-icons-link {
    border: 0;
    padding: 0;
    height: auto;
    display: flex;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    align-items: center;
    text-decoration: none;
    font-size: 17px;
    color: var(--color-black);
    background-color: transparent;
}

.header-icons-link:before {
    left: 0;
    bottom: 0;
    content: '';
    display: block;
    width: 0;
    height: 5px;
    position: absolute;
    background-color: var(--color-primary);
    transition: width var(--speed-default) ease-in-out;
}

.header-icons-link:hover,
.header-icons-link:focus {
    color: var(--color-primary);
    background-color: transparent;
}

.header-icons-link.is-active:before,
.header-icons-link:hover:before,
.header-icons-link:focus:before,
.header-icons-menu > li:hover .header-icons-link:before,
.header-icons-menu > li:focus .header-icons-link:before {
    width: 100%;
}

.header-icons-link img {
    width: auto;
    height: 30px;
}

.header-icons .has-sub-menu .header-icons-link:after {
    font-size: 30%;
    margin-left: 5px;
    content: var(--icon-angle-down);
    font-family: var(--icons-font-family), sans-serif;
}

.header-icons-menu {
    margin: 0;
    padding: 0;
    display: flex;
}

.header-icons-menu li {
    position: relative;
}

.header-icons-menu > li {
    display: flex;
    margin-left: 14px;
}

.header-icons-menu > li ul {
    margin: 0;
    padding: 4px 0;
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    width: 225px;
    visibility: hidden;
    transition: all 0.3s;
    border-radius: 0 0 4px 4px;
    background-color: var(--color-white);
}

.header-icons-menu > li li a {
    padding: 11px 20px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    justify-content: space-between;
}

.header-icons-menu > li li picture {
    margin-left: -12px;
    margin-right: 8px;
    display: flex;
    width: 43px;
    align-items: center;
    justify-content: center;
}

.header-icons-menu > li li img {
    width: 100%;
    height: 30px;
    object-fit: contain;
    object-position: center center;
}

.header-icons-menu > li li span {
    flex: 1;
}

.header-icons-menu > li li a:focus,
.header-icons-menu > li li a:hover,
.header-icons-menu > li li:focus > a,
.header-icons-menu > li li:hover > a {
    background-color: var(--color-secondary);
}

.header-icons-menu .menu-item-has-children > a:after {
    content: var(--icon-angle-right);
    font-family: var(--icons-font-family), sans-serif;
    font-size: 10px;
    margin-left: 5px;
}

.header-icons-menu ul ul {
    top: 0;
    left: 100%;
    right: auto;
    width: 175px;
    border-radius: 0 4px 4px 0;
}

.header-icons-menu > li:hover > ul,
.header-icons-menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 768px) {
    .header-top {
        min-height: 50px;
    }

    .header-top li {
        margin-right: 50px;
    }

    .header-top li a {
        font-size: 18px;
    }

    .header-top li a:after {
        width: 7px;
        height: 4px;
    }

    .header-offer {
        font-size: 12px;
        font-weight: 700;
    }

    .header-menu .block-cart {
        top: 135px;
        width: 570px;
        height: calc(100vh - 135px);
    }

    .header-all-menu {
        margin-top: -8px;
    }

    .header-toggle {
        font-size: 15px;
    }

    .header-nav {
        flex: 1;
        position: inherit;
        top: auto;
        left: auto;
        display: block;
        width: auto;
        height: 100%;
        overflow-y: inherit;
        background-color: transparent;
        box-shadow: none;
    }

    .header-nav > ul {
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .header-nav > ul > li {
        height: 100%;
        margin-right: 15px;
    }

    .header-nav > ul > li > a {
        height: 100%;
        line-height: normal;
    }

    .header-icons-menu > li {
        margin-left: 10px;
    }

    .header-nav > li > a {
        padding: 0;
        display: inline-block;
        font-weight: 400;
        text-decoration: none;
        text-transform: capitalize;
    }

    .header-mega-menu {
        padding: 0;
        position: absolute;
        top: 100%;
        left: 50%;
        width: 768px;
        display: flex;
        background-color: var(--color-white);
        transform: translateX(-50%);
    }

    .header-mega-right {
        padding: 20px 15px 20px 15px;
        position: relative;
        z-index: 1;
        display: flex;
        order: 2;
        width: 100%;
    }

    .header-mega-nav {
        padding-top: 13px;
        width: 80%;
    }

    .header-mega-nav ul {
        display: flex;
        flex-wrap: wrap;
        box-shadow: none;
    }

    .header-mega-nav ul > li {
        margin-bottom: 35px;
        padding-right: 15px;
        width: 25%;
    }

    .header-mega-nav ul > li > a {
        margin-bottom: 13px;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }

    .header-mega-nav ul > li > a:after {
        display: none;
    }

    .header-mega-nav ul > li > ul {
        padding: 0;
        display: block;
        background-color: transparent;
    }

    .header-mega-nav ul > li > ul > li {
        padding-right: 0;
        width: 100%;
    }

    .header-mega-nav ul > li > ul > li > a {
        display: inline-block;
        position: relative;
    }

    .header-mega-nav ul > li > ul > li > a:after {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        display: block;
        background-color: var(--color-green-30);
        transition: var(--speed-default);
        transform: translateY(0);
        content: '';
    }

    .header-mega-nav ul > li > ul > li > a:focus:after,
    .header-mega-nav ul > li > ul > li > a:hover:after {
        width: 100%;
    }

    .header-mega-block {
        margin-bottom: 0;
        width: 150px;
        display: block;
        flex: 0 0 auto;
    }

    .header-mega-block-link span {
        font-size: 14px;
    }

    .header-mobile {
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    .header-nav > ul > li {
        margin-right: 25px;
    }

    .header-nav > ul > li > a {
        font-size: 16px;
    }

    .header-icons-menu > li {
        margin-left: 24px;
    }

    .header-mega-menu {
        width: 927px;
    }

    .header-mega-right {
        padding-left: 17px;
        padding-right: 30px;
    }

    .header-mega-nav {
        width: 78%;
    }

    .header-mega-nav ul > li > a {
        font-size: 16px;
    }

    .header-mega-nav ul > li > ul > li > a {
        font-size: 16px;
    }

    .header-mega-block {
        width: 200px;
    }

    .header-mega-block-link span {
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) {
    .header-nav > ul > li {
        margin-right: 40px;
    }

    .header-menu .block-cart {
        top: 185px;
        height: calc(100vh - 185px);
    }
}

/*******************************************************************************************
FOOTER
*******************************************************************************************/
.footer {
    position: relative;
    color: var(--color-primary);
    background-color: var(--color-white);
}

.footer-logo {
    margin: 0 auto 37px;
    display: block;
    width: 221px;
    height: 40px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer a {
    color: var(--color-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:focus,
.footer a:hover {
    color: var(--color-golden);
}

.footer p {
    margin-bottom: 17px;
    font-size: 12px;
    color: var(--color-gray);
}

.footer-main {
    padding-top: 50px;
    padding-bottom: 10px;
}

.footer-column {
    margin-bottom: 27px;
}

.footer-column.active .footer-menu {
    display: block;
}

.footer-column:first-of-type .footer-title:after{
    display: none;
}

.footer-title {
    margin-bottom: 22px;
    position: relative;
    font-size: 14px;
    font-family: var(--heading-font-family);
    color: var(--color-golden);
}

.footer-title:after {
    position: absolute;
    top: 50%;
    right: 13px;
    font-size: 12px;
    font-family: var(--icons-font-family), sans-serif;
    transform: translateY(-50%);
    transition: var(--speed-default), ease-in-out;
    content: var(--icon-plus);
}

.footer-menu {
    margin: 0;
    padding: 0;
    display: none;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-social-icons {
    display: flex;
    font-size: 22px;
}

.footer-social-icons a {
    display: block;
    color: var(--color-golden);
    transition: all 0.3s;
}

.footer-social-icons a + a {
    margin-left: 20px;
}

.footer-social-icons a:focus,
.footer-social-icons a:hover {
    color: var(--color-primary);
}

.footer-copyright {
    padding-top: 11px;
    padding-bottom: 10px;
    font-size: 12px;
    font-family: var(--heading-font-family);
    height: 35px;
    background-color: var(--color-green-40);
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer-main {
        padding-top: 30px;
        padding-bottom: 45px;
    }

    .footer-logo {
        margin-bottom: 34px;
        width: 552px;
        height: 100px;
    }

    .footer p {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .footer-holder {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
    }

    .footer-menu {
        display: block;
    }

    .footer-title {
        margin-bottom: 25px;
        font-size: 20px;
    }

    .footer-title:after {
        display: none;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-menu li {
        margin-bottom: 16px;
    }

    .footer-menu li:last-of-type {
        margin-bottom: 0;
    }

    .footer-column {
        margin-bottom: 0;
    }

    .footer-copyright {
        padding-top: 7px;
        padding-bottom: 6px;
        font-size: 16px;
    }
}

@media screen and (min-width: 1025px) {
    .footer-main {
        padding-bottom: 80px;
    }
}

/*******************************************************************************************
SWIPER
*******************************************************************************************/
.swiper-button-prev,
.swiper-button-next {
    margin: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    z-index: 2;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    width: 8px;
    height: 13px;
    background: url('../../assets/images/prev-arrow.svg') no-repeat;
    background-size: contain;
    content: '';
}

.swiper-button-next:after {
    background: url('../../assets/images/next-arrow.svg') no-repeat;
    background-size: contain;
}

.swiper-pagination-bullet {
    margin: 0 3px 0 0!important;
    width: 8px;
    height: 8px;
    opacity: 1;
    background: var(--color-border);
}

.swiper-pagination-bullet-active {
    background: var(--color-black);
}

@media screen and (min-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        width: 11px;
        height: 18px;
    }
}
