:root {
    --font-main: "Exo 2", sans-serif;
    --font-secondary: var(--font-main);
    --bs-primary: var(--main);
    --grey-dark: var(--body-color);
    --bg-light: var(--main-lighter);
    --dark: var(--body-color);
    --bs-border-color: var(--grey-light) !important;
    --accent: #fcf1ef;
    --cta-green-dark: var(--cta-green);
    --bg-dark-opacity: rgb(34 34 34 / 84%);
    --hero-dark: rgb(34 34 34 / 30%);
    --hero-light: rgba(255, 255, 255, 0.35);
    --white: #fff;
}

@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(--main)
}

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,
.accordion-button:focus,
#cancelModal .close {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

button,
input[type="submit"] {
    cursor: pointer;
}

input[type="submit"] {
    border-width: 1px;
}

/* Global */
body {
    font: normal 300 1.08rem/1.6143 var(--font-main);
    color: var(--body-color);
    overflow-x: hidden;
    overflow-y: auto;
}

/* colors  */
.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-light {
    background-color: var(--grey-light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-dark-opacity {
    background-color: var(--bg-dark-opacity);
}

.bg-main {
    background: var(--main)
}

.bg-secondary {
    background: var(--main-secondary) !important;
}

.bg-main-lighter {
    background: var(--main-lighter)
}

.grey-light {
    background: var(--grey-bg);
}

.border-main {
    border: 1px solid var(--main)
}

.borderColor-main {
    border-color: var(--main) !important
}

/* sizes / fonts / titles */
.small,
small {
    font-size: .855em !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fw-700 {
    font-weight: 700 !important;
}

b,
strong,
.fw-600 {
    font-weight: 600;
}

.fw-500,
.cookies-title {
    font-weight: 500 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-100 {
    font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: var(--body-color);
    line-height: 1.2;
}

h1 {
    font-size: calc(1.5625rem + 3.75vw);
}

h2 {
    font-size: calc(1.3rem + 0.6vw);
}

h3 {
    font-size: calc(1.2875rem + 0.45vw);
}

@media (min-width: 1200px) {
    h1 {
        font-size: 4.075rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.625rem;
    }
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

.page_title {
    margin: 0;
    font-weight: 600;
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 10px;
}

.section_title {
    margin-bottom: 20px;
    font-size: 32px;
}

.section_title-lg {
    font-size: 53px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .section_title-lg {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .section_title {
        font-size: 26px;
    }
}

.hero_title {
    font-size: 65px;
    line-height: 1.2;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .hero_title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero_title {
        font-size: 55px;
    }
}

/* forms */
textarea {
    resize: none;
}

.form-control {
    border-radius: 0;
}

label {
    font-size: 15px;
}

.form-check-input[type=checkbox],
input[type=checkbox] {
    border-radius: 0;
    border: 1px solid var(--grey-light);
}

.form-control::-webkit-input-placeholder {
    color: var(--body-light);
}

.form-control::-moz-placeholder {
    color: var(--body-light);
}

.form-control:-ms-input-placeholder {
    color: var(--body-light);
}

.form-control::placeholder {
    color: var(--body-light);
}

.form-control {
    display: block;
    color: var(--body-color);
    width: 100%;
    border: 1px solid var(--main);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    padding: 15px;
    background: #fff;
}

.form-control:focus,
.form-control:active,
.form-control:hover {
    border: 1px solid var(--dark);
}

.form-check-input:checked {
    background-color: var(--dark);
    border-color: var(--dark);
}

.form-check-input:focus {
    border-color: var(--grey-light);
}

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) {
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.6px;
    font-size: 13px;
    text-transform: uppercase;
}

.btn.btn-primary,
[type=submit]:not(:disabled),
.btn.btn-secondary {
    color: #fff;
}

.btn.btn-primary,
[type=submit]:not(:disabled) {
    background-color: var(--main);
    border-color: var(--main);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
[type=submit]:not(:disabled):hover,
[type=submit]:not(:disabled):focus,
:not(.btn-check)+.btn:active {
    border-color: var(--main);
}

.btn.btn-secondary {
    background-color: var(--dark);
    border-color: var(--dark);
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    border-color: var(--dark);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
[type=submit]:not(:disabled):hover,
[type=submit]:not(:disabled):focus,
:not(.btn-check)+.btn:active,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    color: var(--body-color);
    background-color: #fff;
}

/* footer */
footer {
    line-height: 2;
}

footer.lh-sm {
    line-height: 1.5 !important;
}

footer h4 {
    margin-bottom: 22px;
    font-size: 25px;
}

footer .nav-link:focus,
footer .nav-link:hover,
footer .nav-link.active {
    color: var(--main);
}

footer.nav-inline .nav-link {
    display: inline;
}

/* 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: 0;
}

.card:not(.single-faq) {
    border: 1px solid var(--main)
}

.card:not(.single-faq) h4 {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey-light);
}

.card.single-faq {
    background: transparent;
    margin-bottom: 2px !important;
}

.card.single-faq h5 a {
    margin-bottom: 0;
    display: block;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    color: var(--main);
    border-bottom: 1px solid var(--grey-light);
}

.card.single-faq .card-body {
    padding: 1rem;
}

.card.single-faq .card-header {
    padding: 0;
    border-bottom: 0;
    background-color: transparent;
}

/* modals */
.modal-content {
    background-color: var(--main-lighter);
    border-radius: 0;
}

.modal-body {
    padding: 3rem;
}

.modal-dialog h4 {
    font-size: 24px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: 400;
}

#cancelModal .text-main {
    color: var(--body-color) !important;
}

#cancelModal .modal-header {
    padding: 1rem 2rem;
}

#cancelModal .modal-title {
    font-size: 24px;
    font-weight: 400;
}

#cancelModal .close {
    font-size: 30px;
    padding: 0;
    border: 0;
    background: transparent;
}

#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;
}

#subscription_id {
    background: transparent;
    padding: 0;
    margin: 1rem 0 0 0;
}

#subscription_id option.text-black {
    padding: 10px !important;
    cursor: pointer;
    border-bottom: 1px solid var(--grey-light) !important;
}

#subscription_id option.text-black:checked,
#subscription_id option.text-black:focus {
    background: transparent !important;
    font-weight: 600 !important;
}

/* static pages and custom changes */
.static_content.justify {
    text-align: justify;
}

@media (min-width: 1550px) {
    .static_content .container {
        max-width: 1320px;
    }
}

.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-weight: 400;
    margin-bottom: 5px;
}

.cart_page .cart-price-breakdown {
    padding: 0;
}

.cart_page .subscribe-box .subscribe-checkbox .checkmark {
    top: 5px !important;
}

.cart_page .delivery_block #standardDelivery1 {
    margin-right: 5px;
    padding: 5px;
    height: 15px;
    width: 15px;
}

/* filters block  */
.filter-title {
    height: 52px;
    margin: 0;
    padding: 12px 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--grey-light);
    color: var(--main);
    text-transform: uppercase;
    font-size: 14px;
}

.filter-header:not(:first-of-type) {
    margin-top: .5rem;
}

.filter-header {
    margin-bottom: .5rem;
}

.filters-block .link-filter {
    display: flex;
    padding: 5px 0 0 10px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filters-block .link-filter.brand-entry {
    padding: 10px 0 0 18px;
}

.filters-block .link-filter.suboption {
    padding-left: 1.2rem;
    transform: scale(0.9);
}

.filters-block .link-filter input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filters-block .link-filter span {
    display: inline-block;
    width: 17px;
    min-width: 17px;
    height: 17px;
    position: relative;
    margin-right: 10px;
    text-align: center;
    line-height: 16px;
    top: 3px;
    transition: all 0.2s;
    border: 1px solid var(--main);
    background: #fff;
    overflow: hidden;
}

.filters-block .link-filter label {
    cursor: pointer;
    color: var(--dark) !important;
    font-size: 16px;
    font-weight: 400;
}

.filters-block .checkbox {
    display: none;
}

.filters-block .checkmark {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--main);
}

.filters-block .checkmark:after {
    content: '\2713';
    display: none;
    color: #fff;
    position: absolute;
    left: 1px;
    bottom: 1px;
    height: 14px;
    font-weight: bold;
}

.filters-block .checkbox:checked~.checkmark:after {
    display: block;
}

.filters-block .checkbox:checked~.checkmark {
    background: var(--main);
    border-color: var(--main);
}

.filters-block .brand-filter,
.filters-block .filter-categories {
    max-height: 350px;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.4rem 0.5rem 0;
    background: #fff;
    border-bottom: 1px solid var(--main);
    overflow-y: scroll;
    background: var(--main-lighter);
}

@media (max-width: 767px) {

    .filters-block .brand-filter,
    .filters-block .filter-categories {
        max-height: 280px;
    }
}

.filters-block .btn {
    line-height: 1;
    height: 50px;
}

.filters-block .btn.btn-primary {
    align-items: center;
    justify-content: center;
    flex: auto;
}

/* 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,
.offcanvas-body::-webkit-scrollbar-track {
    background: var(--grey-light);
    border-radius: 0;
}

.filter-list::-webkit-scrollbar,
.filter-list::-webkit-scrollbar-track,
body::-webkit-scrollbar,
.product-view #product-selection #color-option::-webkit-scrollbar,
.offcanvas-body::-webkit-scrollbar {
    width: 8px;
    background: var(--grey-light);
}

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,
.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--grey-dark);
}

.filter-list,
.product-view #product-selection #color-option,
.offcanvas-body {
    scrollbar-width: thin;
}

.product-view #product-selection #color-option,
.filter-list,
.offcanvas-body {
    scrollbar-color: var(--grey-dark) var(--grey-light);
}

/* alert */
.alert {
    position: fixed;
    top: 1.5em;
    right: 1.5em;
    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;
    font-size: 16px;
    font-weight: 400;
}

/* nav */
.navbar .dropdown-item {
    line-height: 1.9;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--main);
    background: #fff;
}

.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-2 .nav_button.active .top,
.nav-2 .nav_button.active .middle,
.nav-2 .nav_button.active .bottom,
.nav-2 .nav_button span {
    background: #fff;
}

.nav-3 .nav_button.active .top,
.nav-3 .nav_button.active .middle,
.nav-3 .nav_button.active .bottom,
.nav-3 .nav_button span {
    background: var(--main);
}

.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: 8px;
}

.nav_button span:nth-of-type(3) {
    top: 16px;
}

/* .offcanvas.bg-dark .btn-close, */
.offcanvas.bg-dark-opacity .btn-close,
.offcanvas.bg-secondary .btn-close {
    filter: invert(1);
}

.overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
}

.overlay-menu ul li {
    display: block;
}

.overlay-menu ul li a {
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    line-height: 35px;
}

.overlay-menu .nav-lg {
    font-size: 25px;
}

.overlay-menu ul li a.nav-link,
.overlay-menu ul li.modalLink a.nav-link.active {
    color: var(--dark);
}

/* .overlay-menu ul li.modalLink a.nav-link {
    color: var(--dark);
} */
.offcanvas.bg-dark-opacity ul li a.nav-link,
.offcanvas.bg-dark-opacity ul li.modalLink a.nav-link.active {
    color: #fff;
}

.overlay-menu ul li a.nav-link:focus,
.overlay-menu ul li a.nav-link:hover,
.overlay-menu ul li a.nav-link.active,
nav .nav-list a.nav-link:focus,
nav .nav-list a.nav-link:hover,
nav .nav-list a.nav-link.active,
.overlay-menu ul li.modalLink a.nav-link.active:hover {
    color: var(--main);
}

nav .nav_more a {
    color: var(--dark);
    font-size: 20px;
}

nav.nav-4 .nav_more a {
    font-size: 15px;
}

nav .nav_more a:hover,
nav .nav_more a:focus {
    color: var(--body-color)
}

nav .nav_more .badge {
    font-size: 11px
}

nav.nav-2 .nav_more a {
    font-size: 17px;
    text-transform: uppercase;
}

nav.inner-dark .nav_button span.middle {
    width: 80%;
}

.nav-list a {
    position: relative;
    display: inline-block;
    transition: all 300ms ease-in-out;
    padding: 1rem 0.8rem;
}

nav.nav-1 .nav_button,
nav.inner-main .nav_button {
    width: 25px;
}

nav.inner-main .nav_button span.middle {
    width: 70%;
    right: auto;
    left: 15%;
}

/* animations */
.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine:before,
.hover-shine:after {
    transition: none;
}

.hover-shine.hover-dark:before,
.hover-shine.hover-dark:after {
    background-color: rgba(0, 0, 0, 0.041);
}

.hover-shine:before,
.hover-shine:after {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hover-shine:not(:hover):before {
    width: 0;
}

.hover-shine:not(:hover):after {
    height: 0;
}

.hover-shine:before,
.hover-shine:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    transition: all 0.5s ease;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.15);
}

.shop_product .hover-rotate img,
.hover-rotate-img img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.shop_product .hover-zoom img,
.hover-zoom-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.shop_product .hover-rotate img,
.hover-rotate-img img,
.shop_product .hover-zoom img,
.hover-zoom-img img {
    -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(5deg) scale(1.2);
    transform: rotate(5deg) scale(1.2);
}

.shop_product:hover .hover-zoom img,
.hover-zoom-img:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.shop_product:hover .hover-rotate.border,
.hover-rotate-img.border:hover,
.shop_product:hover .hover-zoom.border,
.hover-zoom-img.border:hover {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.shop_product .product_img {
    -webkit-transition: 0.8s;
    transition: 0.8s;
}

.shop_product:hover .product_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* collection */
@media (max-width: 1200px) {
    .product-view .product-info .section_title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .product-view .product-info {
        text-align: center;
    }
}

.shop_product .info_hover {
    visibility: hidden;
    opacity: 0;
}

.shop_product .info_hover,
.shop_product:hover .info_hover {
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.shop_product:hover .info_hover {
    visibility: visible;
    opacity: 1;
}

.shop_product .product_info .brand-name {
    font-size: 16px;
}

.shop_product .product_info .product-name {
    font-size: 17px;
    line-height: 23px;
}

.shop_product .product_info .brand-name,
.shop_product .product_info .product-name,
.shop_product .price span:not(.text-decoration-line-through) {
    color: var(--body-color);
}

.shop_product .price span:not(.text-decoration-line-through) {
    color: var(--main-secondary);
}

@media (max-width: 1410px) {
    .product_details .custom_w {
        width: 100% !important;
    }

    .product_details .custom_w.custom_mt {
        margin-top: 2.5rem;
    }
}

/* tabs */
.product_details .tab-content>.active {
    opacity: 1;
}

.product_details .tab_title {
    color: var(--body-color);
    font-weight: 400;
    border: 2px solid transparent;
    padding-bottom: 5px;
    font-size: 16px;
    cursor: pointer;
}

.product_details .active.tab_title {
    /* opacity: 1; */
    border-bottom: 2px solid var(--main);
    color: var(--body-color);
    font-weight: 600;
}

.product_details .tab_title.tab_title-lg {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 64px;
    letter-spacing: 1px;
    color: var(--body-color);
}

.product_details .active.tab_title.tab_title-lg {
    font-size: 37px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .product_details .tab_title.tab_title-lg {
        font-size: 22px;
        line-height: 50px;
    }

    .product_details .active.tab_title.tab_title-lg {
        font-size: 30px;
    }
}

/* cta */
.cta {
    z-index: 1;
    position: relative
}


.cta h2 {
    font-size: 55px;
    line-height: 1;
    margin-bottom: 35px;
}

.cta p {
    font-size: 17px;
    line-height: 1.56;
    margin-bottom: 45px;
}

/* hero */
.hero_overlay {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
}

.hero-dark {
    background-color: var(--hero-dark);
}

.hero-light {
    background-color: var(--hero-light);
}

.hero_intro {
    text-align: center;
}

@media (min-width: 1200px) {
    .hero_intro h1 {
        font-size: 3.255rem;
    }
}

@media (min-width: 992px) {
    .hero_intro {
        position: absolute;
        margin: 10% 30%;
        z-index: 1;
        text-align: center;
    }
}

@media (max-width: 1199px) {
    .hero_intro h1 {
        font-size: 2.955rem;
    }
}

@media (max-width: 991px) {
    .hero_intro h1 {
        font-size: 2.355rem;
    }
}

/* hero_products */
.hero.hero_products p.brand-name {
    font-size: 16px;
}

.hero.hero_products h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero.hero_products-md p {
    font-size: 17px;
    line-height: 1.3;
}

.hero .carousel-light p,
.hero .carousel-light h2 {
    color: #ffffff;
    text-align: center;
}

.hero.hero_products .carousel-item {
    height: auto;
}

.hero.hero_products .carousel-control-prev,
.hero.hero_products .carousel-control-next {
    display: none;
}

@media (min-width: 1101px) {
    .hero .carousel-item {
        height: 650px;
    }
}

@media (max-width: 1100px) {
    .hero.hero_products:not(.hero_products-md) h2 {
        font-size: 20px;
    }
}

@media (max-width: 850px) {

    .hero .carousel-item {
        height: 500px;
    }
}

/* services */
@media (min-width: 992px) {
    .services_sm .col {
        width: auto !important;
        max-width: 25%;
    }
}

@media (max-width: 575px) {
    .services_sm .services_block {
        margin-bottom: 20px;
    }
}

.services_sm .services_block {
    flex-direction: column;
}

.services_sm .services_block p {
    display: none;
}

.services_sm .services_block h4 {
    color: var(--body-light);
    font-weight: 400;
    font-size: 15px;
}

.services_sm .services_block .custom_icon {
    margin-bottom: 15px;
    color: var(--body-light);
    font-size: 35px;
}

.services_md .services_block {
    flex-direction: row;
}

.services_md .services_block p {
    font-size: 16px;
    line-height: 1.3;
}

.services_md .services_block h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services_md .services_block .custom_icon {
    font-size: 38px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    margin-top: 5px;
    justify-content: center;
}

.services_md .services_block .text {
    padding-left: 17px;
}

.services_md .services_block {
    margin-bottom: 10px;
}

.services_md.text-white .services_block h4 {
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 47%);
    padding-bottom: 8px;
}

.services_md.text-white .services_block .custom_icon {
    color: rgb(255 255 255 / 57%)
}

/* cat title */
.cat_title-shine {
    z-index: 100;
}

.giftcard-page .card-img-top {
    display: flex;
    margin: 0 auto 15px;
    text-align: center;
}