@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;
}

/* Global */
body {
    font: normal 400 16px/24px var(--font-main);
    color: var(--body-color);
}

.bg-light {
    background-color: var(--grey-light) !important;
}

.text-color {
    color: var(--body-color) !important;
}

.text-main {
    color: var(--main)
}

.text-green {
    color: var(--cta-green);
}

.bg-link-dark {
    background: var(--bg-dark)
}

.bg-light-opacity {
    background: var(--bg-light-opacity)
}

.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
}

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: 48px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .page_title {
        font-size: 40px;
        line-height: 1;
    }
}

.section_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 38px;
    line-height: 64px;
}

@media (max-width: 767px) {
    .section_title {
        font-size: 33px;
        line-height: 44px;
    }
}

/* 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 solid transparent;
    transition: all .3s ease-in-out;
    background: transparent;
    border-bottom: 2px solid var(--grey-border);
    padding: 9.5px 0;
}

.form-control:focus,
.form-control:active,
.form-control:hover {
    border: 1px solid transparent;
    border-bottom: 2px solid var(--main);
    background: transparent;
}

.form-check-input:checked {
    background-color: var(--main);
    border-color: var(--main);
}

.form-check-input:focus {
    border-color: var(--main);
}

/* 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;
}

.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);
    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;
}

.hero-2 .link_underline {
    color: #fff;
}

.hero-2 .link_underline:after {
    background-color: #fff;
}

/* 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(--grey-dark);
}

.card h4,
.card.single-faq h5 a {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px dashed var(--grey-border);
    padding-bottom: 15px;
}

.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;
}

#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;
}

#cancelModal .modal-title {
    font-size: 20px;
}

#cancelModal .text-main {
    color: var(--body-color) !important
}

/* 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(--main);
}

.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(--main);
}

.filters-block .filter-text {
    padding-left: 26px;
    padding-right: 38px;
    line-height: normal;
    cursor: pointer;
    color: var(--body-color);
    display: inline-flex;
    flex-wrap: wrap;
}

.filters-block .filter-text:hover {
    color: var(--main);
}

/* 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-light);
    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-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,
.nav_overlay nav::-webkit-scrollbar-thumb {
    background-color: var(--main);
}

.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(--main) var(--grey-light);
}

/* alert */
.alert {
    position: fixed;
    top: 1em;
    right: 1em;
    max-width: 70%;
    margin: auto 0 !important;
    border-radius: 0;
    z-index: 999;
    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(--main);
}

.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);
    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(--main);
    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 2 */
nav.bg-light .nav_button {
    height: 25px;
    width: 25px;
}

nav.bg-light .search-overlay {
    background-color: var(--bg-light-opacity);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    bottom: 0
}

nav.bg-light .nav_overlay ul li a {
    text-transform: uppercase;
    color: var(--bg-dark);
    font-weight: 600;
}

nav.bg-light .nav_overlay:before {
    background: var(--bg-light-opacity);
}

/* nav 3 */
nav.inner-dark .search-overlay {
    background-color: var(--bg-main-opacity);
}

nav.inner-dark .search-overlay .form-control,
nav.inner-dark .search-overlay a,
nav.inner-dark .search-overlay .btn.button-search {
    color: #fff
}

nav.inner-dark .nav_overlay:before,
nav.inner-dark .nav_overlay:after {
    background: var(--bg-light-opacity);
}

nav.inner-dark .nav_overlay ul li a {
    font-weight: 600;
    font-size: 28px;
    line-height: 50px;
}

nav.inner-dark .nav_button span.middle {
    width: 80%;
}

/* nav 4 */
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: 30px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.single-category:not(.circle_link):not(.clear_link) .holder_text,
.single-category:not(.circle_link):not(.clear_link) .holder_text h2,
.single-category:not(.circle_link):not(.clear_link) .holder_text p {
    opacity: 0;
}

.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:not(.circle_link):not(.clear_link):before {
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.8) 100%);
    width: 100%;
    height: 80%;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    transition-property: top, opacity;
    transition-duration: 0.5s;
}

.single-category:not(.clear_link):hover:before,
.single-category:not(.clear_link):hover .holder_text {
    opacity: 1;
    top: 50%;
}

.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:before,
    .single-category:not(.clear_link) .holder_text {
        top: 50% !important;
    }
}

.single-category.circle_link .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 10rem;
    height: 10rem;
    line-height: 10rem;
    top: 70%;
    margin-top: -5rem;
    margin-left: -5rem;
    border-radius: 50%;
    background: #fff;
    transform: rotate(-180deg) translate(-10rem) rotate(180deg);
    transition: all 0.7s cubic-bezier(0.55, 0, 0.1, 1);
}

@media (min-width: 768px) {
    .single-category.circle_link:hover .circle {
        transform: rotate(-45deg) translate(0px) rotate(-315deg);
        background: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.2rem;
        line-height: 20rem;
        height: 15rem;
        width: 15rem;
        top: 5px;
        left: 5px;
        margin-top: 0;
        margin-left: 0;
        transition: all 0.7s cubic-bezier(0.55, 0, 0.1, 1), letter-spacing 1.5s ease-out;
    }

    .single-category.circle_link:hover .circle p {
        font-size: 18px;
        font-weight: 600;
        transition: all 0.7s;
    }
}

@media (min-width: 1201px) {
    .single-category.circle_link:hover .circle {
        height: 20rem;
        width: 20rem;
    }
}

@media (max-width: 767px) {
    .single-category.circle_link .circle {
        background: rgba(255, 255, 255, 0.5);
        height: 10rem;
        width: 10rem;
        top: 50%;
        margin-left: -8rem;
    }
}

.single-category.clear_link.border {
    border-color: #fff !important
}

.single-category.clear_link .holder_text {
    padding: 20px;
}

.single-category.clear_link .holder_text:after {
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    width: 0px;
    position: absolute;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    z-index: -1;
}

.single-category.clear_link:hover .holder_text:after {
    width: 100%;
    background: var(--main-secondary);
}

.single-category.clear_link:hover .holder_text p {
    color: #fff
}

/* 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: 330px;
    }
}

@media (min-width: 1400px) {
    .main_collection .grid_lg {
        height: 620px;
    }

    .main_collection .grid_md {
        height: 400px;
    }
}

@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;
    }
}

/* hero */
.hero_clear h1,
.hero_clear p {
    color: var(--grey-dark);
    font-weight: 600;
}

.hero_clear h1 {
    line-height: 90px;
    font-size: 68px;
    max-width: 900px;
}

@media (max-width: 1200px) {
    .hero_clear h1 {
        font-size: 50px;
        line-height: 60px;
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    .hero_clear h1 {
        line-height: 40px;
        font-size: 35px;
        max-width: 700px;
        text-align: center;
    }

    .hero_clear p {
        display: none;
    }
}

@media (max-width: 460px) {
    .hero_clear h1 {
        font-size: 30px;
        line-height: 30px;
    }
}

/* collection */
.shop_product:before {
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0.9) 80%);
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    transition-property: top, opacity;
    transition-duration: 0.7s;
}

.shop_product .product_info {
    top: 0;
}

.shop_product .product_info .brand-name,
.shop_product .product_info .product-name {
    opacity: 1;
}

.shop_product:hover:before,
.shop_product:hover .product_info .brand-name,
.shop_product:hover .product_info .product-name {
    opacity: 1;
    top: 0;
    z-index: 3;
}

.shop_product:hover .product_info .brand-name {
    transition-delay: 0.25s;
    transition-duration: 0.10s;
}

.shop_product:hover .product_info .product-name {
    transition-delay: 0.38s;
    transition-duration: 0.18s;
}


@media (max-width: 767px) {

    .shop_product:before,
    .shop_product .product_info .brand-name,
    .shop_product .product_info .product-name {
        opacity: 1 !important;
    }

    .shop_product .product_info .brand-name,
    .shop_product .product_info .product-name {
        z-index: 3 !important;
    }

    .shop_product:before,
    .shop_product .product_info {
        top: 0 !important;
    }

    .shop_product .product_info {
        font-size: 15px
    }
}

.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-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);
}

/* tabs */
.product_details .tab-content>.active {
    opacity: 1;
}

.product_details .tab_title {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 64px;
    color: var(--body-color);
    opacity: 0.7;
    font-weight: 600;
}

.product_details .tab_title.tab_title-sm {
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
}

.product_details .active.tab_title {
    color: var(--grey-dark);
    opacity: 1;
}

@media (max-width: 767px) {
    .product_details .tab_title {
        font-size: 20px;
        line-height: 30px;
    }
}

/* cta */
.cta {
    font-family: var(--font-secondary);
}

.cta h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 35px;
}

.cta p {
    font-size: 19px;
    line-height: 1.7;
}

/* hero */
.hero {
    background: var(--main-secondary);
}

.hero p,
.hero h2 {
    font-family: var(--font-secondary);
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.1;
}

.hero:not(.hero-2) p {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
}

.hero h2 {
    font-size: 50px;
    font-weight: 500;
}

.hero .carousel-indicators {
    justify-content: left;
    margin-left: 0;
    left: -1rem;
    bottom: -3.2rem;
}

.hero.hero-2 .carousel-indicators {
    left: 0;
    justify-content: center;
}

.hero:not(.hero-2) .carousel-indicators [data-bs-target] {
    background-color: #fff;
}

.hero-2 .carousel-indicators [data-bs-target] {
    background-color: var(--bg-dark);
}

.hero-2 .carousel-indicators [data-bs-target] {
    width: 35px;
    height: 4px
}

.hero.hero-2 .hero-text {
    position: absolute;
    background: var(--bg-dark);
    right: 0;
    bottom: 0;
}

.hero.hero-2 .carousel-item {
    height: 600px;
}

.hero.hero-2 p,
.hero.hero-2 h2 {
    margin-bottom: 20px;
}

.hero.hero-2 p {
    font-weight: 300;
}

.hero.hero-2 h2 {
    font-size: 25px;
    font-weight: 700;
}

.hero-2 .hero-text {
    overflow: hidden;
}

.hero-2 .hero-text::after {
    content: "";
    position: absolute;
    height: 100px;
    width: 100px;
    left: -50px;
    top: -50px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    background: var(--bg-light);
    display: block;
}

/* service */
.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;
}

@media (min-width: 992px) {
    .services_block .img_holder {
        min-height: 580px;
    }
}

@media (min-width: 1100px) {
    .services_block .img_holder {
        min-height: 620px;
    }
}

@media (max-width: 991px) {
    .services_block .img_holder {
        min-height: 350px;
    }
}