@import url("https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Spectral:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap");

:root {
    --font-main: "Work Sans", sans-serif;
    --font-secondary: "Spectral", serif;
    --bs-primary: var(--main);
}

@media (min-width: 1550px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1520px;
    }
}

html {
    scroll-behavior: smooth;
}

a,
button,
img,
input,
span,
.form-control,
.btn,
.btn:hover,
.card {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

*:focus {
    outline: none !important;
    box-shadow: none;
}

a {
    text-decoration: none;
    color: var(--link)
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a:focus,
a:hover,
.btn:focus,
.form-control:focus,
.form-check-input[type=checkbox],
.form_block input[type="checkbox"],
.btn:focus-visible,
.btn-close:focus,
input:focus-visible {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

button,
input[type="submit"] {
    cursor: pointer;
}

input[type="submit"] {
    border-width: 1px;
}

.pointer {
    cursor: pointer;
}

/* Global */
body {
    font: normal 400 16px/24px var(--font-main);
    color: var(--body-color);
    overflow-x: hidden;
    overflow-y: auto;
}

.bg-light {
    background-color: var(--grey-light) !important;
}

.bg-light-secondary {
    background-color: var(--bg-light-secondary-opacity) !important;
}

.text-color {
    color: var(--body-color) !important;
}

.text-light {
    color: var(--body-light) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-main {
    color: var(--main)
}

.text-secondary {
    color: var(--main-secondary) !important;
}

.text-green {
    color: var(--cta-green);
}

.bg-link-dark {
    background: var(--bg-dark)
}

hr.bg-light-secondary {
    border-color: var(--bg-light-secondary);
}

.link-color {
    color: var(--link)
}

b,
strong,
.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-300 {
    font-weight: 300 !important;
}

.invert_colors,
.invert_colors h5 {
    background: var(--main);
    color: #fff
}

.invert_colors a:not(.dropdown-item) {
    color: #fff
}

.invert_colors a:not(.dropdown-item):hover {
    color: var(--grey-border)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font: normal 400 var(--font-main);
    margin-top: 0;
    color: var(--grey-dark);
}

h1 {
    font-size: 36px;
    line-height: 42px;
}

h2 {
    font-size: 30px;
    line-height: 36px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

h5 {
    font-size: 14px;
    line-height: 18px;
}

h6 {
    font-size: 12px;
    line-height: 14px;
}

.page_title {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--dark);
    border-bottom: 1px dashed var(--body-light);
}

.section_title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    line-height: 64px;
    text-align: center;
}

.section_title.section_title-lg {
    font-size: 35px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .section_title {
        font-size: 28px;
        line-height: 34px;
    }

    .section_title.section_title-lg {
        font-size: 30px;
    }
}

/* forms */

textarea {
    resize: none;
}

.form-control,
.form-check-input[type=checkbox],
input[type=checkbox] {
    border-radius: 0;
}

.form-control::-webkit-input-placeholder {
    color: var(--body-color);
    font-size: 14px;
}

.form-control::-moz-placeholder {
    color: var(--body-color);
    font-size: 14px;
}

.form-control:-ms-input-placeholder {
    color: var(--body-color);
    font-size: 14px;
}

.form-control::placeholder {
    color: var(--body-color);
    font-size: 14px;
}

.search-overlay .form-control::-webkit-input-placeholder {
    font-size: inherit;
}

.search-overlay .form-control::-moz-placeholder {
    font-size: inherit;
}

.search-overlay .form-control:-ms-input-placeholder {
    font-size: inherit;
}

.search-overlay .form-control::placeholder {
    font-size: inherit;
}

.form-control {
    display: block;
    color: var(--grey-dark);
    width: 100%;
    border: 1px dashed transparent;
    transition: all .3s ease-in-out;
    background: transparent;
    border-bottom: 2px dashed var(--grey-border);
    padding: 9.5px 0;
}

.form-control:focus,
.form-control:active,
.form-control:hover {
    border: 1px dashed transparent;
    border-bottom: 2px solid var(--grey-dark);
    background: transparent;
}

.form-check-input:checked {
    background-color: var(--grey-dark);
    border-color: var(--grey-dark);
}

.form-check-input:focus {
    border-color: var(--grey-border);
}

/* search */
body.active-body-search-overlay {
    overflow: hidden;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(255 255 255 / 90%);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 999999;
}

.search-overlay.active-search-overlay {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.search-overlay .search-close-icon {
    position: absolute;
    top: 30px;
    right: 40px;
}

.search-overlay .search-close-icon {
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.search-overlay .search-close-icon a {
    font-size: 32px;
    color: var(--body-color);
}

@media(max-width: 767px) {
    .search-overlay .search-close-icon a {
        font-size: 25px;
    }
}

.search-overlay .search-close-icon:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.search-overlay .search-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search-overlay .form-control {
    font-size: 60px;
    font-weight: 300;
}

.search-overlay .btn.button-search {
    font-size: 40px;
}

@media (max-width: 1100px) {
    .search-overlay .form-control {
        font-size: 40px;
    }
}

@media(max-width: 768px) {

    .search-overlay .form-control,
    .search-overlay .btn.button-search {
        font-size: 30px;
    }
}

@media(max-width: 575px) {

    .search-overlay .form-control,
    .search-overlay .btn.button-search {
        font-size: 20px;
    }
}

@media(max-width: 479px) {
    .search-overlay .form-control {
        font-size: 14px;
    }
}

.search-overlay .btn.button-search {
    color: var(--main-secondary);
    border: 0;
    padding: 10px;
}

.search-overlay .btn.button-search,
.search-overlay .btn.button-search:hover,
.search-overlay .btn.button-search:focus {
    background: transparent !important;
}

.search-overlay .btn.button-search:hover,
.search-overlay .btn.button-search:focus {
    color: var(--body-color);
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    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;
}

/* buttons */
.btn,
[type=submit]:not(:disabled) {
    text-transform: uppercase;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 12px 35px;
}

.btn.btn-primary,
[type=submit]:not(:disabled) {
    background-color: var(--main);
    border-color: var(--main);
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
[type=submit]:not(:disabled):hover,
[type=submit]:not(:disabled):focus {
    background-color: #fff;
    color: var(--main);
}

.btn.btn-secondary {
    background-color: #fff;
    border-color: var(--main);
    color: var(--main);
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: var(--main);
    color: #fff;
}

.link_underline {
    font-weight: 700;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding-bottom: 3px;
    color: var(--grey-dark);
}

.link_underline:after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--grey-dark);
    opacity: 0.2;
    content: "";
}

.link_underline:hover:after {
    opacity: 1;
}

/* footer */
footer {
    line-height: 2.1
}

footer.bg-light,
footer.bg-light a {
    color: var(--body-color) !important;
}

footer.bg-light a:hover,
footer.bg-light a:focus {
    color: var(--main) !important;
}

footer,
footer h5 {
    font-size: 15px;
}

footer h5 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

footer.invert_colors .border-top {
    border-top: 1px dashed #dee2e64d !important;
}

footer.bg-dark {
    background: var(--bg-dark) !important;
}

footer.bg-dark,
footer.bg-dark a:not(.dropdown-item) {
    color: var(--grey-border);
}

footer.bg-dark a:not(.dropdown-item):hover,
footer.bg-dark a:not(.dropdown-item):focus,
footer.bg-dark a:not(.dropdown-item).active {
    color: #fff;
}

footer.bg-dark .border-top {
    opacity: 0.5;
}

/* lang dropdown */
.lang_swicher .dropdown-item {
    font-size: 14px;
    padding: 2px 18px;
}

.lang_swicher .dropdown-item:active {
    background: var(--grey-light);
}

/* card */
.card {
    border-radius: 0;
    border: 1px solid var(--grey-border);
}

.card:hover,
.card:focus {
    border: 1px solid var(--main-secondary);
    background-color: var(--bg-light-secondary-opacity)
}

.card h4,
.card.single-faq h5 a {
    font-size: 19px;
    font-weight: 500;
    border-bottom: 1px dashed var(--grey-border);
    padding-bottom: 15px;
    letter-spacing: 0.6px;
    color: var(--dark);
}

.card.single-faq h5 a {
    margin-bottom: 0;
    display: block;
    padding: 1rem;
}

.card.single-faq .card-header {
    padding: 0;
    border-bottom: 0;
    background-color: transparent;
}

.card h4.filter-title {
    font-size: 15px;
    font-weight: 600;
    border-bottom: 0;
    padding-bottom: 10px;
    text-transform: uppercase;
}

/* modals */
.modal-content {
    border-radius: 0
}

.modal-body {
    padding: 2rem;
}

.modal-dialog h4 {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px dashed var(--grey-border);
    padding-bottom: 15px;
    text-transform: capitalize !important;
    text-align: left !important;
}

.modal#added-modal .modal-dialog h4 {
    text-align: center !important;
    font-weight: 500;
}

#subscription_type [type=submit]:not(:disabled) {
    display: block;
    margin: 0 auto;
}

#cancel-modal-locked .modal-header {
    border: 0 !important
}

#cancel-modal-locked .modal-title {
    width: 100%;
    padding: 1rem;
}

#cancel-modal-locked .modal-footer {
    justify-content: center;
    padding: 0 0 1.8rem !important;
    border: 0;
}

/* static pages and custom changes */
.static_content.justify {
    text-align: justify;
}

.static_content h1 {
    display: none;
}

.faq .container.my-5 {
    margin: 0 !important;
}

/* cart */
.cart_page .subscribe-box {
    border: 0 !important;
    line-height: 18px;
}

.cart_page .subscribe-box h6 {
    font-size: 14px
}

/* filters block  */
@media(max-width: 991px) {
    .filters-block #filters {
        display: none;
    }
}

.filters-block .filter-list {
    position: relative;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.filters-block .checkbox {
    display: none;
}

.filters-block .checkmark {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--grey-border);
}

.filters-block .checkmark:after {
    content: '\2713';
    display: none;
    color: #fff;
    position: absolute;
    left: 2px;
    bottom: 4px;
    height: 14px;
    font-weight: bold;
}

.filters-block .checkbox:checked~.checkmark:after {
    display: block;
}

.filters-block .checkbox:checked~.checkmark {
    background: var(--grey-dark);
    border-color: var(--grey-dark);
}

.filters-block .filter-text {
    padding-left: 26px;
    padding-right: 38px;
    line-height: normal;
    cursor: pointer;
    color: var(--dark);
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 15px;
}

.filters-block .filter-text:hover {
    color: var(--body-color)
}

/* custom scroll */
.filter-list {
    position: relative;
    max-height: 475px;
    overflow-y: auto;
    overflow-x: hidden;
}

.filter-list::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.product-view #product-selection #color-option::-webkit-scrollbar-track,
.nav_overlay nav::-webkit-scrollbar-track {
    background: var(--grey-border);
    border-radius: 0;
}

.filter-list::-webkit-scrollbar,
.filter-list::-webkit-scrollbar-track,
body::-webkit-scrollbar,
.product-view #product-selection #color-option::-webkit-scrollbar,
.nav_overlay nav::-webkit-scrollbar {
    width: 8px;
    background: var(--grey-border);
}

body::-webkit-scrollbar {
    width: 10px;
}

.filter-list::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.product-view #product-selection #color-option::-webkit-scrollbar-thumb,
.product-view #product-selection #color-option::-webkit-scrollbar-thumb:hover,
.nav_overlay nav::-webkit-scrollbar-thumb {
    background-color: var(--grey-dark);
}

.filter-list,
.product-view #product-selection #color-option,
.nav_overlay nav {
    scrollbar-width: thin;
}

.product-view #product-selection #color-option,
.filter-list,
.nav_overlay nav {
    scrollbar-color: var(--grey-dark) var(--grey-border);
}

/* alert */
.alert {
    position: fixed;
    top: 1em;
    right: 1em;
    max-width: 70%;
    margin: auto 0 !important;
    border-radius: 0;
    z-index: 1000;
    animation: appear 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

/* nav 1 */
.nav_button {
    position: relative;
    height: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
}

.nav_button:hover {
    opacity: 0.7;
}

.nav_button.active .top {
    transform: translateY(10px) translateX(0) rotate(45deg);
}

.nav_button.active .middle {
    opacity: 0;
}

.nav_button.active .bottom {
    transform: translateY(-10px) translateX(0) rotate(-45deg);
}

.nav_button.active .top,
.nav_button.active .middle,
.nav_button.active .bottom,
.nav_button span {
    background: var(--body-color);
}

.nav_button span {
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}

.nav_button span:nth-of-type(2) {
    top: 10px;
}

.nav_button span:nth-of-type(3) {
    top: 20px;
}

.nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, width 0.35s;
    z-index: 50;
}

.nav_overlay:before,
.nav_overlay:after {
    content: "";
    background: #fff;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
}

.nav_overlay:before {
    left: -55%;
    transition: left 0.35s ease;
}

.nav_overlay:after {
    right: -55%;
    transition: all 0.35s ease;
}

.nav_overlay.open {
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}

.nav_overlay.open:before {
    left: 0;
}

.nav_overlay.open:after {
    right: 0;
}

.nav_overlay.open li {
    -webkit-animation: fadeInRight 0.5s ease forwards;
    animation: fadeInRight 0.5s ease forwards;
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}

.nav_overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.nav_overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
}

.nav_overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
}

.nav_overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.nav_overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: 0.85s;
    animation-delay: 0.85s;
}

.nav_overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: 0.90s;
    animation-delay: 0.90s;
}

.nav_overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95s;
}

.nav_overlay.open li:nth-of-type(9) {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95;
}

.nav_overlay nav,
.nav_overlay ul,
.nav_overlay ul li,
.nav_overlay ul li a {
    position: relative;
}

.nav_overlay nav {
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 100;
    overflow: auto;
}

.nav_overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
}

.nav_overlay ul li {
    display: block;
    opacity: 0;
}

.nav_overlay ul li a {
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    font-size: 32px;
    line-height: 57px;
}

@media(max-width: 768px) {
    .nav_overlay ul li a {
        font-size: 26px;
        line-height: 45px;
    }
}

.nav_overlay ul li a.nav-link,
.nav_overlay ul li a.nav-link:focus,
.nav_overlay ul li a.nav-link:hover {
    color: var(--text-dark);
}

.nav_overlay ul li a:hover:after,
.nav_overlay ul li a:focus:after,
.nav_overlay ul li a:active:after {
    width: 100%;
}

.nav_overlay ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    height: 2px;
    background: var(--main-secondary);
    transition: 0.35s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

nav .nav_more a {
    color: var(--text-dark);
    font-size: 20px
}

nav .nav_more a:hover,
nav .nav_more a:focus {
    color: var(--body-color)
}

nav .nav_more .badge {
    font-size: 11px
}

@media (max-width: 450px) {
    .navbar-brand {
        max-width: 120px;
    }
}

/* nav-1 */
nav.nav-1 .nav_overlay ul li a.nav-link {
    background: var(--main);
    padding: 0 15px;
    color: #fff;
}

nav.nav-1 .nav_overlay ul li a.nav-link:focus,
nav.nav-1 .nav_overlay ul li a.nav-link:hover {
    background: var(--main-secondary);
}

nav.nav-1 .nav_overlay ul li a:after {
    content: none
}

/* nav 2 */
nav.nav-2 .nav_button,
nav.nav-1 .nav_button {
    height: 25px;
    width: 25px;
}

nav.nav-2 .search-overlay {
    background-color: var(--bg-light);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    bottom: 0
}

nav.nav-2.nav_overlay ul li a {
    text-transform: uppercase;
    color: var(--bg-dark);
    font-weight: 600;
}

nav.nav-2 .nav_overlay:before,
nav.nav-2 .nav_overlay:after {
    background: var(--bg-light);
}

nav.nav-2 .nav_overlay ul li a:after {
    background: var(--main);
}

nav.nav-2 .nav_overlay ul li a.nav-link,
nav.nav-2 .nav_overlay ul li a.nav-link:focus,
nav.nav-2 .nav_overlay ul li a.nav-link:hover {
    color: var(--dark)
}

/* nav 3 */
nav.inner-dark .search-overlay {
    background-color: var(--main-secondary-light);
    opacity: 0.9;
}

nav.inner-dark .search-overlay .form-control,
nav.inner-dark .search-overlay a,
nav.inner-dark .search-overlay .btn.button-search,
nav.inner-dark .nav_overlay ul li a,
nav.inner-dark .nav_overlay ul li a:hover,
nav.inner-dark .nav_overlay ul li a:focus {
    color: #fff
}

nav.inner-dark .nav_overlay:before,
nav.inner-dark .nav_overlay:after {
    background: var(--main-secondary-light);
}

nav.inner-dark .nav_overlay ul li a {
    font-weight: 300;
    line-height: 50px;
    text-transform: uppercase;
}

.nav-3 .nav_overlay ul li a:after {
    background: #fff;
}

nav.inner-dark .nav_button span.middle {
    width: 80%;
}

.nav-3 .invert_colors {
    background: var(--main-secondary);
    color: #fff
}

.nav-3 .nav-hover {
    margin: auto auto;
}

.nav-3 .nav-hover:hover,
.nav-3 .nav-hover:focus {
    color: #fff !important;
    opacity: 0.8;
}

.nav-3 .nav-hover:hover {
    cursor: pointer;
}

.nav-3 .nav-effect {
    box-sizing: border-box;
    position: relative;
    padding: 0.75em;
}

.nav-3 .nav-effect::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
    border-top: 0.2em solid #fff;
    border-bottom: 0.2em solid #fff;
    transform: scale3d(0, 1, 1);
}

.nav-3 .nav-effect:hover::before {
    transform: scale3d(1, 1, 1);
    transition: transform 900ms;
}

/* nav 4 */
.nav-list a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.nav-list a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
}

.nav-list a:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-secondary);
    transform: scale(0);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.nav-list a:hover {
    color: #fff;
}

.nav-list a:hover:before {
    transform: scaleY(1);
    opacity: 1;
}

.nav-list a:hover:after {
    transform: scaleY(1);
    opacity: 1;
}


nav.inner-main .nav_button {
    height: 25px;
    width: 25px;
}

nav.inner-main .nav_button span.middle {
    width: 80%;
    left: auto;
    right: 0;
}

nav.inner-main .search-overlay {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    bottom: 0
}

/* home 1, 2 */
.single-category {
    height: 100%;
}

.single-category .holder_img {
    -webkit-transition: 0.8s;
    transition: 0.8s;
}

.single-category:hover .holder_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.single-category .holder_text {
    font-size: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 3;
}

.single-category .holder_text h2,
.single-category .holder_text p {
    display: block;
    position: relative;
    transition-property: top, opacity;
    transition-duration: 0.5s;
    transition-delay: 0s;
}

.single-category .holder_text h2 {
    line-height: 1;
    font-weight: 400;
    font-size: 32px;
}


@media (max-width: 991px) {
    .single-category .holder_text h2 {
        font-size: 25px;
    }
}

.single-category .holder_text p {
    line-height: 1.2;
    margin-top: 18px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--grey-dark);
    margin: 0
}

.single-category:hover .holder_text h2 {
    transition-delay: 0.25s;
    transition-duration: 0.5s;
    opacity: 1 !important;
}

.single-category:hover .holder_text p {
    transition-delay: 0.38s;
    transition-duration: 0.5s;
    opacity: 1 !important;
}

@media (max-width: 767px) {

    .single-category:before,
    .single-category .holder_text,
    .single-category .holder_text h2,
    .single-category .holder_text p {
        opacity: 1 !important;
    }
}

.single-category.clear_link .holder_text {
    position: absolute;
    bottom: 0;
    padding: 30px;
    height: 80%;
    width: 90%;
    top: 10%;
    left: 5%;
    border: 1px solid transparent;
}

.single-category.clear_link:hover .holder_text {
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    border: 1px solid #fff;
}

.single-category.clear_link .holder_text h2 {
    font-weight: 600;
}

.single-category.clear_link:before {
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    content: "";
    background: var(--bg-light-secondary-opacity);
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.single-category.clear_link:hover:before {
    opacity: 1;
}

@media (max-width: 767px) {
    .single-category.clear_link:before {
        opacity: 1;
    }

    .single-category.clear_link .holder_text {
        border: 1px solid #fff;
    }
}

.single-category .hover-shine {
    position: relative;
}

/* hover shine  */
.hover-shine:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.hover-shine:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* custom grid */
@media (min-width: 992px) {
    .main_collection .grid_lg {
        height: 420px;
    }

    .main_collection .grid_md {
        height: 250px;
    }
}

@media (min-width: 1200px) {
    .main_collection .grid_lg {
        height: 560px;
    }

    .main_collection .grid_md {
        height: 300px;
    }
}

@media (min-width: 1400px) {
    .main_collection .grid_lg {
        height: 620px;
    }
}

@media (max-width: 991px) {
    .main_collection .grid_lg {
        height: 400px;
    }

    .main_collection .grid_md {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .main_collection .grid_lg {
        height: 360px;
    }

    .main_collection .grid_md {
        height: 200px;
    }
}

/* collection */
.shop_product .hover-rotate img,
.hover-rotate-img img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.shop_product:hover .hover-rotate img,
.hover-rotate-img:hover img {
    -webkit-transform: rotate(15deg) scale(1.4);
    transform: rotate(15deg) scale(1.4);
}

.shop_product:hover .hover-rotate.border,
.hover-rotate-img.border:hover {
    border-color: var(--main-secondary) !important;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.shop_product .product_info {
    --c: var(--main-secondary);
    line-height: 1.2em;
    background: conic-gradient(from -135deg at 100% 50%, var(--c) 90deg, transparent 0) 0 var(--p, 0%),
        conic-gradient(from -135deg at 3.22em 50%, transparent 90deg, var(--c) 0) 100% var(--p, 0%);
    background-size: var(--s, 0%) 200%;
    background-repeat: no-repeat;
    transition: 0.4s ease-in, background-position 0s;
}

.shop_product:hover .product_info {
    --p: 100%;
    --s: calc(50% + 1.75em);
}

.shop_product .product_info .brand-name {
    color: var(--body-color)
}

.shop_product .product_info .product-name,
.shop_product .price {
    color: var(--grey-dark)
}

.shop_product:hover .product_info .brand-name,
.shop_product:hover .product_info .product-name {
    color: #fff;
    transition: all 0.3s ease-in-out
}

.shop_product:hover .price {
    color: var(--main-secondary);
}

.shop_product-1 .hover-action {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    top: 0;
    left: 0;
}

.shop_product-1:hover .hover-action {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.shop_product-2 .price {
    color: var(--main)
}

.shop_product-1 .product_img {
    -webkit-transition: 0.8s;
    transition: 0.8s;
}

.shop_product-1:hover .product_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.shop_product-2:hover {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-color: var(--main) !important;
}

/* tabs */
.product_details {
    color: var(--dark)
}

.product_details .tab-content>.active {
    opacity: 1;
}

.product_details .tab_title:not(.tab_title-sm) {
    opacity: 0.5;
    font-size: 30px;
    line-height: 1.2em;
    color: #0000;
    text-shadow:
        0 0 var(--grey-dark),
        0 1.2em var(--main-secondary);
    overflow: hidden;
    transition: .3s;
}

.product_details .tab_title:not(.tab_title-sm):hover {
    text-shadow:
        0 -1.2em var(--grey-dark),
        0 0 var(--main-secondary);
    opacity: 1;
}

.product_details .active.tab_title:not(.tab_title-sm):hover {
    text-shadow: none;
}

.product_details .tab_title.tab_title-sm {
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.product_details .active.tab_title.tab_title-sm {
    border-bottom: 1px solid var(--main);
}

.product_details .active.tab_title {
    color: var(--dark);
    opacity: 1;
    text-shadow: none;
}

@media (max-width: 1200px) {
    .product_details .tab_title:not(.tab_title-sm) {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .product_details .tab_title:not(.tab_title-sm) {
        font-size: 19px;
        line-height: 30px;
    }

    .product_details .tab_title.tab_title-sm {
        font-size: 17px;
        line-height: 45px;
    }
}


/* cta */
.cta_inner {
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.cta_inner .cta_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--bg-dark-opacity);
    overflow: hidden;
    width: 0;
    height: 100%;
    -webkit-transition: all .5s ease-in-out 0s;
    -o-transition: all .5s ease-in-out 0s;
    transition: all .5s ease-in-out 0s;
    z-index: 1;
    display: block;
}

.cta_inner:hover .cta_overlay {
    width: 100%;
    position: relative;
}

.cta_inner .cta_overlay .cta_text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
}

.cta_inner .cta_overlay .cta_text h4 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 1150px) {
    .cta_inner .cta_overlay .cta_text h4 {
        font-size: 25px;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .cta_inner .cta_overlay {
        width: 100%;
    }
}

.cta h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 35px;
}

.cta p {
    font-size: 19px;
    line-height: 1.7;
}

/* hero */

.hero .carousel-light p,
.hero .carousel-light h2 {
    color: #ffffff;
    text-align: center;
}

.hero p,
.hero h2 {
    font-family: var(--font-secondary);
    line-height: 1.1;
}

.hero.hero_products-md p,
.hero.hero_products-md h2 {
    font-family: var(--font-main);
    line-height: 1.3;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero.hero_products h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.hero.hero_products-md h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero.hero_products-md p {
    font-size: 17px;
    font-weight: 300;
}

@media (min-width: 1101px) {
    .hero .carousel-item {
        height: 650px;
    }

    .hero.hero_products .carousel-item {
        height: 550px;
    }

    .hero.hero_products-md .carousel-item {
        height: 330px;
    }
}

@media (max-width: 1100px) {
    .hero:not(.hero_products-md) .carousel-item {
        height: 580px;
    }

    .hero.hero_products .carousel-item {
        height: 500px;
    }

    .hero.hero_products:not(.hero_products-md) h2 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero.hero_products .carousel-item {
        height: auto;
    }

    .hero.hero_products .carousel-control-prev,
    .hero.hero_products .carousel-control-next {
        display: none;
    }
}

@media (max-width: 850px) {
    .hero .carousel-item {
        height: 500px;
    }

    .hero.hero_products:not(.hero_products-md) h2 {
        font-size: 33px;
        margin-bottom: 20px;
    }

    .hero.hero_products-md h2 {
        font-size: 25px;
    }
}

.hero .bg_content {
    background: var(--bg-main-opacity);
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.hero .bg_content p,
.hero .bg_content h2 {
    font-family: var(--font-main);
    color: #fff;
}

@media (max-width: 850px) {
    .hero .bg_content h2 {
        font-size: 38px;
    }

    .hero .bg_content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero .bg_content {
        height: auto;
    }

    .hero.hero-3 .carousel-indicators,
    .hero.hero_products-md .carousel-indicators {
        display: none;
    }
}

/* services */
.bg-dark.services_section {
    background: var(--main-secondary) !important;
}

.bg-dark.services_section .services_block h4,
.bg-dark.services_section .services_block p {
    color: var(--grey-border)
}

.bg-dark.services_section .services_block h4 {
    font-size: 25px;
    font-weight: 500;
}

.bg-dark.services_section .services_block.card {
    background: var(--bg-light-secondary-opacity);
}

.services_block h4,
.services_block p {
    color: var(--grey-dark);
    font-family: var(--font-secondary);
}

.services_block h4 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 10px;
}

.services_block p {
    font-size: 17px;
}

.services_list .col.mb-4 {
    margin-bottom: 0 !important
}

.services_list .services_block h4 {
    font-size: 21px;
    font-weight: 600;
}

/* cat grid */
.cat-grid {
    margin: 20px 0 10px;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
    width: 100%;
}

.cat-grid:after,
.cat-item:before {
    content: '';
    display: table;
}

.cat-grid:after {
    clear: both;
}

.cat-grid li {
    width: 300px;
    height: 300px;
    display: inline-block;
    margin: 20px;
}

@media (min-width: 1200px) {
    .cat-grid li {
        width: 330px;
        height: 330px;
    }
}

@media (max-width: 1050px) {
    .cat-grid li {
        width: 280px;
        height: 280px;
    }

    .cat-grid li {
        margin: 10px;
    }
}

/* cat grid animation 1 */
.cat-item {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    cursor: default;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cat-thumb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-shadow: inset 0 0 0 15px rgba(255, 255, 255, 0.5);

    -webkit-transform-origin: 95% 40%;
    -moz-transform-origin: 95% 40%;
    -o-transform-origin: 95% 40%;
    -ms-transform-origin: 95% 40%;
    transform-origin: 95% 40%;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cat-thumb:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    top: 40%;
    left: 95%;
    margin: -4px 0 0 0;
    background: var(--main);
}

.cat-img-1 {
    z-index: 12;
}

.cat-img-2 {
    z-index: 11;
}

.cat-img-3 {
    z-index: 10;
}

.cat-info {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--main) url(../f96c0d29-8d5b-44e6-a27d-b22f9a687571/noise.png);
    box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

.cat-info h3 {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    font-size: 18px;
    margin: 0 60px;
    padding: 22px 0 0 0;
    height: 85px;
    text-shadow:
        0 0 1px #fff,
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.cat-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0;

    -webkit-transition:
        -webkit-transform 0.3s ease-in-out 0.2s,
        opacity 0.3s ease-in-out 0.2s,
        background 0.2s linear 0s;
    -moz-transition:
        -moz-transform 0.3s ease-in-out 0.2s,
        opacity 0.3s ease-in-out 0.2s,
        background 0.2s linear 0s;
    -o-transition:
        -o-transform 0.3s ease-in-out 0.2s,
        opacity 0.3s ease-in-out 0.2s,
        background 0.2s linear 0s;
    -ms-transition:
        -ms-transform 0.3s ease-in-out 0.2s,
        opacity 0.3s ease-in-out 0.2s,
        background 0.2s linear 0s;
    transition:
        transform 0.3s ease-in-out 0.2s,
        opacity 0.3s ease-in-out 0.2s,
        background 0.2s linear 0s;

    -webkit-transform: translateX(60px) rotate(90deg);
    -moz-transform: translateX(60px) rotate(90deg);
    -o-transform: translateX(60px) rotate(90deg);
    -ms-transform: translateX(60px) rotate(90deg);
    transform: translateX(60px) rotate(90deg);

    -webkit-backface-visibility: hidden;
}

.cat-info a:hover {
    border-bottom: 3px solid #fff;
}

.cat-item:hover .cat-thumb {
    box-shadow: inset 0 0 0 15px rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-transform: rotate(-110deg);
    -moz-transform: rotate(-110deg);
    -o-transform: rotate(-110deg);
    -ms-transform: rotate(-110deg);
    transform: rotate(-110deg);
}

.cat-item:hover .cat-info a {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -moz-transform: translateX(0px) rotate(0deg);
    -o-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
}


/* cat grid animation 2 */
.cat-item-2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    cursor: default;
    -webkit-perspective: 900px;
    -moz-perspective: 900px;
    -o-perspective: 900px;
    -ms-perspective: 900px;
    perspective: 900px;
}

.cat-info-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.cat-info-2>div {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-position: center center;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    -o-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

.cat-info-2 .cat-info-front {
    box-shadow: inset 0 0 0 16px rgba(0, 0, 0, 0.3);
}

.cat-info-2 .cat-info-back {
    -webkit-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
    -moz-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
    -o-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
    transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
    background: var(--main-secondary);
    opacity: 0;
}

.cat-info-2 h3,
.cat-info-2 a {
    color: #fff;
}

.cat-info-2 h3 {
    letter-spacing: 2px;
    font-size: 23px;
}

.cat-info-2 a {
    display: block;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cat-item-2:hover .cat-info-front {
    -webkit-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
    -moz-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
    -o-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
    -ms-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
    transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
    opacity: 0;
}

.cat-item-2:hover .cat-info-back {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    -moz-transform: rotate3d(1, 0, 0, 0deg);
    -o-transform: rotate3d(1, 0, 0, 0deg);
    -ms-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
    opacity: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}

/* move */

.move {
    animation: MoveUpDown 2s linear infinite;
    position: absolute;
    left: 0;
    bottom: 0;
}

@keyframes MoveUpDown {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 30px;
    }
}

@-webkit-keyframes MoveUpDown {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 30px;
    }
}

#cancelModal .modal-title {
    font-size: 20px;
}

#cancelModal .text-main {
    color: var(--body-color) !important
}

.card_page #standardDelivery1 {
    margin-top: 5px !important;
    margin-right: 5px;
    padding: 5px;
    height: 15px;
    width: 15px;
}

.card_page .subscribe-box .subscribe-checkbox .checkmark {
    top: 5px !important;
    left: 2px !important
}

.giftcard-page .selectAmountActive,
.giftcard-page .btn.selectAmount:focus {
    color: #fff !important
}