/** Shopify CDN: Minification failed

Line 3397:20 Expected ":"

**/
@font-face {
    font-family: 'Didot';
    src: url('https://cdn.shopify.com/s/files/1/0722/3302/5583/files/Didot.woff2?v=1764225110') format('woff2'),
        url('https://cdn.shopify.com/s/files/1/0722/3302/5583/files/Didot.woff?v=1764225111') format('woff');
}

@font-face {
    font-family: 'Adelia';
    src: url('https://cdn.shopify.com/s/files/1/0722/3302/5583/files/adelia.woff2?v=1764225111') format('woff2'),
        url('https://cdn.shopify.com/s/files/1/0722/3302/5583/files/adelia.woff?v=1764225111') format('woff');
}

:root {
    /* --primary_clr: #a77c69; */
    --primary_clr: #b79f93;
    --secondary_clr: #183525;
    --text_clr: #121212;
    --white_clr: #ffffff;
    /* --light_clr: #faf5f1; */
    --light_clr: #f1ede7;
    /* --heading_font: "Playfair Display", serif; */
    --heading_font: "Didot", serif;
    --body_font: "Poppins", sans-serif;
    --accent_clr: #b79f93;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html {
    font-size:16px;
}
body {
    font-family: var(--body_font);
    color: var(--text_clr);
    position: relative;
    letter-spacing:0px;
}

h1,
h2 {
    font-family: 'Didot' !important;
}

a {
    text-decoration: none;
}

.bg_primary {
    background-color: var(--primary_clr);
}
.text_primary {
    color: var(--primary_clr);
}


.bg_light {
    background-color: var(--light_clr);
}

.font_40 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--bs-body-bg);
}

.font_25 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.font_18 {
    font-size: 18px !important;
    line-height: 25px;
}

.font_16 {
    font-size: 16px;
    line-height: 25px;
}

.text-para {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.5px;
}
.grid_content p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .5px;
    margin-bottom:10px;
}

.primary-btn {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    color: var(--primary_clr);
    border: 2px solid var(--primary_clr);
    cursor: pointer;
    z-index: 0;
    overflow: hidden;
    transition: color 0.4s ease;
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    min-width:auto;
    min-height:auto;
}

.primary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary_clr);
    transition: width 0.4s ease;
    z-index: -1;
}

.primary-btn:hover::after {
    width: 100%;
}

.primary-btn:hover {
    color: var(--white_clr);
}

.secondary_btn {
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--white_clr);
    color: var(--primary_clr);
    border: 2px solid var(--white_clr);
    cursor: pointer;
    z-index: 0;
    overflow: hidden;
    transition: color 0.4s ease;
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.secondary_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary_clr);
    transition: width 0.4s ease;
    z-index: -1;
}

.secondary_btn:hover::after {
    width: 100%;
}

.secondary_btn:hover {
    color: var(--white_clr);
}

.py-80 {
    padding: 80px 0px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.my-80 {
    margin: 80px 0px;
}

header {
    width: 100%;
    background-color: var(--accent_clr);
}

.topbar {
    background: #000;
    padding: 25px 0;
}

.main_logo_top {
    text-align: center;
}

.main_logo_top a {
    text-align: center;
    /* max-width: 775px; */
    max-width: 550px;
    display: inline-block;
    margin: 0 auto;
    text-decoration: none !important;
}

header .navbar-brand {
    width: 200px;
}

header .navbar  {
    padding:8px;
}



header .nav-link {

    font-size: 18px;

    line-height: 25px;

    font-weight: 600;

    color: var(--text_clr);

    letter-spacing: 0.8px;

    text-transform: uppercase;
    padding:8px !important;

}

header .nav-link:focus-visible{
    box-shadow:none;
    outline:none;
}



header .nav-link:hover,

header .navbar .nav-link.active {
    color: var(--white_clr);
}

header .dropdown-item.active,
header .dropdown-item:active {
    background-color: var(--primary_clr);
}
.dropdown-menu > li {
    font-size: 16px;
}



header .navbar-collapse {

    justify-content: flex-end;

}



header .navbar-nav {
    column-gap: 30px;
    flex: 2;
    justify-content: center;
    padding-left: 5rem;

}


header .header_icons_wrapper {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 0px;
}

header .header_icon {
    width: 25px;
    height: 25px;
    display: inline-flex;
    position: relative;
}
.cart-count-bubble {
    filter: invert(1);
    position: absolute;
    left: auto;
    width: 20px;
    font-size: 14px;
    height: 20px;
    right: -5px;
}


header .header_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

header .header_icon img:hover {
    filter: invert(1);
}


/* .hero_wrapper .carousel-inner {
    height: 100vh; 
} */




.hero_wrapper .carousel-inner .carousel-item {

    height: 100%;

}
.hero_wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}
.hero_wrapper .carousel-control-next, .hero_wrapper .carousel-control-prev {
    width: 50px;
    height: 50px;
    background-color: #000 !important;
    color: #fff !important;
    position: absolute;
    top: 45%;
    transform: translate(0%, -50%);
    border-radius: 50% !important;
    /* border: 1px solid var(--white_clr); */
    box-shadow: 0px 0px 8px 2px #f8f8f8;
    padding: 0px !important;
}



.hero_wrapper .carousel-control-next {

    right: 20px;

}



.hero_wrapper .carousel-control-prev {

    left: 20px;

}


.rotating-banner {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--accent_clr);
    color: var(--white_clr);
    padding: 15px 0px;
}

.horizontal-scrolling-items {
    display: flex;
    font-size: 40px;
    width: 2600px;
    animation-name: infiniteScroll;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.horizontal-scrolling-items__item {
    white-space: nowrap;
    font-size: 25px;
}

.horizontal-scrolling-items__item span {
    display: inline-block;
    padding: 0px 25px;
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}



.img-text-grid {
    position: relative;
}



.grid_img_wrapper {

    height: 620px;

    width: 100%;

    overflow: hidden;

    border-radius: 10px;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.3s ease-in-out;
}

.grid_img_wrapper:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 8px 8px;
}



.grid_img_wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: 90% 50%;

    transition: all 0.3s ease-in-out;

}



.grid_img_wrapper img:hover {
    filter: grayscale(1);
    transform: rotate(3deg) scale(1.08);

}

.welcome_text .grid_img_wrapper img {
    object-position: 100% 40%;
}


.grid_text_wrapper {

    padding: 10px;

    display: flex;

    flex-direction: column;

    row-gap: 10px;

    align-items: flex-start;
    padding-right: 20px;

}

.grid_text_wrapper h3 {
    color: var(--text_clr);
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.5px;
}

.grid_heading {
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0px;
    color: var(--accent_clr);
    text-transform: capitalize;
}
.grid_heading p{
    margin-bottom:0px;
}

.grid_heading strong {
    font-size: 16px;
    font-weight: 500;
    vertical-align: super;
}

sup {
    top: -15px;
    font-size: 16px;
}


.grid_content strong {
    font-size: 16px;
}





.section_heading {

    font-size: 45px;

    line-height: 1.3;

    /* font-weight: 700; */

    margin-bottom: 20px !important;

    letter-spacing: 0.3px;


    color: var(--accent_clr);

    text-transform: capitalize;

}



.clip_box {

    background-color: var(--light_clr);

    padding: 14px;

    border-radius: 10px;

    /* box-shadow: 0px 2px 4px 2px #32202038; */

    transition: all 0.4s ease-in-out;

}



.clip_box:hover {

    transform: translateY(-5px);

    /* box-shadow: 0px 2px 4px 2px #32202085;

    background-color: var(--white_clr); */

}



.clip_box video {

    height: 440px;

    object-fit: cover;

    border-radius: 6px;

}



.clip_box .video_content {

    padding: 20px 0px 10px;

    text-align: center;

    border-top: 4px solid #1835256b;

    margin-top: 8px;

}



.clip_box .video_clip_heading {
    font-family: 'Adelia';

    font-size: 20px;

    line-height: 40px;

    font-weight: 600;

    letter-spacing: 0.3px;

    color: var(--text_clr);

    margin-bottom: 0px;

    transition: all 0.4s ease-in-out;

}



.clip_box:hover .video_clip_heading {

    letter-spacing: 1.3px;

}




.product_box {
    background-color: #fff;
    padding: 0px 15px 15px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;

}



.product_box .product_img {
    width: 100%;
    height: 350px;
    /* height: auto; */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    display: flex;
    align-items: center;
}



.product_box .product_img .single-img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: all 0.6s ease-in-out;

}



.product_box:hover .product_img .single-img {
    transform: scale(1.05);
}

.thumbnail-list .thumbnail img  {
    object-fit:contain;
}



.product_box .product_content {

    padding: 15px 8px 0px;

    display: flex;

    flex-direction: column;

    row-gap: 10px;
    text-align: center;

}



.product_box .product_heading {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--heading_font);
    letter-spacing: 1.5px;
    color: var(--accent_clr);
    margin-bottom: 0px;
    transition: all 0.4s ease-in-out;
}

.product_box .product_link:focus-visible {
    outline: none;
}

.product_box .product_price {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    margin-bottom: 0px;

}

.product_box:hover .product_heading,
.product_box:hover .product_price {
    color: var(--primary_clr);
}

.product_box .product_link {

    text-decoration: none;

    color: var(--text_clr);

}



.product_box .primary-btn {
    font-weight: 500;
    min-width: 45px;
    height: 40px;
    height: 45px;
    display: flex;
    /* align-items: flex-end; */
    justify-content: center;
    position: absolute;
    bottom: 0px;
    transform: translate(-20%, -20%);
    transition: all 0.3s ease-in-out;
    right: 0%;
    border-radius: 30px;
    padding: 10px 10px;
    border: 1px solid var(--text_clr);
    background-color: var(--white_clr);
}

.product_box:hover .primary-btn {
    color: var(--text_clr);
    border-color: var(--text_clr);

}

.product_box .primary-btn:after {
    display: none;
}


.product_box .add-cart img {
    width: 18px;
    object-fit: contain;
}



.product_box:hover .primary-btn.add-cart {

    right: 0%;

}



.product_box .primary-btn span {

    font-size: 0px;

    transition: all 0.4s ease-in-out;

}



.product_box .primary-btn:hover span {

    font-size: 14px;

    margin-left: 5px;

}

.product_slider .slick-list {
    padding: 0px 10px;
}

.custom-arrow::before {
    display: none;
}


.custom-arrow,
.custom-arrow:focus {
    width: 40px;
    height: 40px;
    top: 50%;
    border-radius: 50%;
    background-color: var(--accent_clr);
    color: var(--white_clr);
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

.custom-arrow i {
    font-size: 16px;
    color: var(--white_clr);
}

.custom-arrow:hover {
    background-color: var(--primary_clr);
}



.sale-banner,
.footer_top {

    /* background-color: #a77c69; */
    background-color: #d9c4b6;

    background-image: url(../images/bg-shape.png);

    background-size: cover;

    background-repeat: no-repeat;

    background-position: 10% 35%;

    position: relative;

    overflow: hidden;

}
/*
.revelist-promo .revelist_inner {
     background-color: #d9c4b6;
    border-radius: 40px;
    padding: 30px 20px; 
    margin-inline: 0px;
}
    */


.sale-banner::before {

    content: '';

    position: absolute;

    left: 50%;

    bottom: 0%;

    transform: translateX(-50%);

    background-image: url(../images/bg3.png);

    background-repeat: no-repeat;

    background-size: cover;

    width: 100%;

    height: 100%;

}



.sale_content {

    width: 600px;

    margin-inline: auto;

    text-align: center;

    position: relative;

    z-index: 3;

}



.sale_counter {

    margin: 0px;

    padding: 0px;

    list-style: none;

    display: flex;

    align-items: center;

    justify-content: center;

    column-gap: 20px;

    margin-bottom: 30px;

}



.sale_counter li {

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    row-gap: 3px;

    background-color: #fff;

    padding: 10px;

    border-radius: 5px;

}



.sale_counter li h3 {

    font-size: 40px;

    line-height: 40px;

    font-weight: 700;

    margin-bottom: 0px;

    color: var(--secondary_clr);

}



.sale_counter li p {

    font-size: 16px;

    margin-bottom: 0px;

}



.sale_content button {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}
.sale_content button i {
    font-size: 0px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.sale_content button:hover i {
    font-size: 22px;
    opacity: 1;
}
.sale_content button:hover {
    background-color: var(--secondary_clr);
    border-color: var(--secondary_clr);
    gap: 10px;
}
.img-text-grid.reverse .row {
    flex-direction: row-reverse;
}
.gift-card {
    /* border-radius: 25px; */
    /* position: relative; */
    /* overflow: hidden; */
    height: auto;
    /* box-shadow: 0px 3px 3px 3px #06060638; */
    /* animation: float 3s ease-in-out infinite; */
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
}

.gift-card img{
    width: 70%;
}
.giftcard_text {
    padding: 15px 10px;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.giftcard_content .grid_text_wrapper {
    padding: 0px 40px;
    row-gap: 5px;
    max-width:430px;
}
/* .revelist-promo .grid_heading {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 25px;
} */
.revelist-promo .grid_heading {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 0;
}
.revelist-promo .secondary_btn {
    padding: 12px 26px;
    border-color: var(--primary_clr);
}





.giftcard_video {
  width:85%;
  height:800px;
  margin-inline:auto;
}
.giftcard_video video {
  width: 100%;
  height: 100%;
}





.main_footer {
    background-color: var(--accent_clr);
    color: var(--white_clr);
}
.newsletter_wrapper {
    width: 600px;
    margin-inline: auto;
    text-align: center;
}
.newsletter_wrapper form {
    width: 100%;
    margin-inline: auto;
    position: relative;
}
.newsletter_inner_block {
    display: flex;
    width: 100%;
}
.newsletter_wrapper form .form_group {
    width: 100%;
}
.newsletter_wrapper form input {
    padding: 12px 50px 12px 15px;
    border: 1px solid var(--white_clr);
    border-radius: 4px;
    font-family: var(--body_font);
    font-size: 16px;
}
.newsletter_main {
    background-color: var(--text_clr);
}
.newsletter_main .newsletter_icon i {
    font-size: 70px;
    line-height: 80px;
    color: var(--white_clr);
}

.newsletter_main .newsletter_icon {
    text-align: center;
    margin-bottom: 0;
}

.newsletter_main .form_accepting {
    font-size: 13px;
    color: var(--white_clr);
    margin-top: 10px;
    margin-bottom: 0;
}

.newsletter_main button {
    position: absolute;
    right: 6px;
    border-radius: 6px;
    border-color: var(--primary_clr);
    width: 35px;
    height: 35px;
    padding: 0;
    top: 6px;
}

p.thank_you_msg {
    color: #f9fff7;
    background-color: #b79f93;
    margin-top: 10px;
    border-radius: 6px;
    padding: 10px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary_clr);
    outline: 0;
    box-shadow: none
}




.footer_bottom {
    border-top: 1px solid #fff;
    padding: 30px 0px;
    text-align: center;
}

.footer_social .social_icons {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 20px;
    padding-left: 10px;
}

.footer_social .social_icons a {
    font-size: 20px;
    color: var(--white_clr);
    transition: all 0.3s ease-in-out;
}

.footer_social .social_icons a:hover {
    color: var(--text_clr);
}


.main_footer .footer_logo {
    width: 200px;
}

.main_footer .footer_heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--body_font);
    color: var(--white_clr);
    letter-spacing: 0.5px;
    line-height: 22px;
}

.main_footer .logo_icon_wrapper {
    padding: 10px 0px 0px;
}


.main_footer .footer_menu ul {
    margin: 0px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 5px;
}

.main_footer .footer_menu.footer_contact ul {
    row-gap: 20px;
}


.main_footer .footer_menu ul a {
    font-size: 16px;
    color: var(--white_clr);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.main_footer .footer_menu ul a:hover {
    /* color: var(--text_clr); */
    padding-left: 7px;
}

.main_footer .footer_menu ul a i {
    transition: all 0.3s ease-in-out;
}

/* .main_footer .footer_menu ul a:hover i {
    filter: invert(1);
} */

.main_footer .footer_menu ul a:focus-visible {
    outline: none;
}

.main_footer .footer_contact .footer_icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid var(--white_clr);
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

/* .main_footer .footer_contact a:hover .footer_icon {
    background-color: var(--primary_clr);
    border-color: var(--text_clr);
} */

.main_footer .footer_contact .footer_icon i {
    font-size: 14px;
    line-height: 14px;
    color: var(--white_clr);
}







/* about us */
.main_banner {
    /* background-image: url(../images/bg-texture1.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_banner::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.about_us {
    background-image: url(../images/about-banner.jpg);
    background-position: 0% 100%;
}


.banner_content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.banner_heading {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: var(--white_clr);
    text-shadow: 2px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb .breadcrumb-item {
    font-size: 16px;
    color: var(--white_clr);
}

.breadcrumb .breadcrumb-item a {
    color: var(--white_clr);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white_clr);
}


.policy_item {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
    padding: 18px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}


.policy_item:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.policy_icon {
    background-color: #a77c69;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy_icon i {
    font-size: 22px;
    line-height: 22px;
}

.policy_content .font_25 {
    font-size: 22px;
    line-height: 26px;
}

.policy_content p {
    margin-bottom: 0px;
}

.team_card {
    background-color: #fff;
    padding: 0px;
    border-radius: 9px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.team_card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 6px;
}

.team_card .team_img {
    height: 550px;
    overflow: hidden;
    position: relative;
}

.team_card .team_img img {
    width: 100%;
    object-fit: cover;
    object-position: 0% 15%;
}

.team_card .team_content {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    background-color: #f8f6f6;
    color: var(--text_clr);
}

.team_card .team_content h3 {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 5px;
}


.team_card:hover .team_content h3 {
    color: var(--primary_clr);
    column-gap: 10px;
}

.team_card .team_content h3 i {
    width: 30px;
    font-size: 25px;
    margin-left: 0;
    transform: rotate(-90deg);
    display: inline-block;
    height: 30px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.team_card:hover .team_content h3 i {
    opacity: 1;
}


.team_card .team_social {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translate(-10px, -50%);
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    transition: all 0.4s ease-in-out;
    z-index: 3;
}

.team_card:hover .team_social {
    right: 5px;
}

.team_card .team_social a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #a77c69;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.team_card .team_social a:hover {
    background-color: var(--white_clr);
    color: var(--primary_clr);
}

.team_card .team_social a i {
    font-size: 16px;
    line-height: 16px;
}

.team_card .overlay {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: width 0.4s ease-in-out;
    z-index: 2;
    display: block
}

.team_card:hover .overlay {
    width: 100%;
}

.mission_vision {
    background-image: url(../images/mission-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
    position: relative;
}

.mission_vision h2 {
    text-shadow: 1px 2px #424040;
}


.mission_vision .policy_item {
    background-color: #eaeaeac2;
}

.mission_vision .policy_item:hover {
    background-color: #eaeaeafa;
}

div.bg-overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
}

.mission_vision .policy_content .font_25 {
    font-size: 25px;
    line-height: 26px;
}


.mission_vision .container {
    position: relative;
    z-index: 3;
}

.testimonial-slider .slick-slide {
    padding: 0px 10px 14px;
}

.testimonial-card {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    /* margin: 0px 20px; */
    box-shadow: 0px 2px 4px #ddd;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-section .testimonial-card img {
    width: 100px;
    border-radius: 50%;
    margin: 0px auto 15px;
}

.testimonial-card h3 {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
}

.testimonial-content {
    font-size: 14px;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    font-size: 10px;
    color: var(--secondary_clr);
}

.slick-dots {
    bottom: -40px;
}


/* about us end*/


/* product page */

.product__info-container>*+* {
    margin: 5px 0px !important; 
}


.form__label, .quantity *{
    font-size: 18px;
}

.product_grid_wrapper .product-left {
    position: sticky;
    top: 10px;
}

.product_img_wrapper {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product .product__media img {
    object-fit:contain;
}



.gift_product .product_img_wrapper {
    height: auto;
}

.gift_product .product_img_wrapper img {
    height: auto;
}

.gift_line {
    font-family: var(--heading_font);
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--accent_clr);
}


.recipient-fields .field__label, .field__label {
    max-width: 100% !important;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0px;
     color: #b79f93;
}

 .field__label{
    top: 12px !important;
    left: 30px !important;
} 

.field__input:focus~.field__label, .field__input:not(:placeholder-shown)~.field__label, .field__input:-webkit-autofill~.field__label, .customer .field input:focus~label, .customer .field input:not(:placeholder-shown)~label, .customer .field input:-webkit-autofill~label {
   display:none;
}


.contact__button {
    margin-top: 2rem !important;
}

.cart__checkout-button {
    padding: 20px 20px;
    font-size: 20px;
    min-height: auto;
}

.recipient-fields .field input, .recipient-fields .text-area, .field__input {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400;
    flex: 2;
    padding: 10px 20px !important;
    color: var(--accent_clr) !important;
    border: 1px solid var(--accent_clr) !important;
    height:46px !important;
}

.recipient-fields input:focus, .recipient-fields .text-area:focus, .field__input:focus {
    outline:none !important;
    box-shadow:none !important;
    border: 2px solid var(--accent_clr) !important;
}

.recipient-fields input::-webkit-input-placeholder, .field__input::-webkit-input-placeholder{
    font-size:16px;
    line-height:24px;
    letter-spacing:0px;
}

.form-check-label {
    cursor:pointer;
}



.product-form__buttons button {
    min-height:auto !important;
    position:relative;
}
.product-form__buttons button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #b79f93;
    transition: width 0.5s ease;
    z-index: -1;
}

.product-form__buttons button:hover::after{
    width:100%;
}
.product-form__buttons button:hover span{
    color:#ffffff;
}

.customer .recipient-fields-date .field__label {
    display: none;
}

.product-form-variant-block {
   padding-top:0px !important;
}

.gift-card-wrapper-block {
    margin-top: 10px !important;
}





.field:after, .field:before, .recipient-fields .text-area{
    box-shadow: none !important;
}
.customer .recipient-confirmation {
    padding-left: 185px !important;
    padding-top: 2px !important;
    letter-spacing: 0 !important;
}

.recipient-form-field-label--space-between {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
}
.recipient-form ul {
    padding-left: 30px !important;
}
.recipient-form ul a {
    font-size: 16px !important;
    color: #b79f93 !important;
    text-decoration: none;
}

.form__message {
    font-size: 16px;
    line-height: 20px;
    margin-top: 1rem;
    color: #b79f93;
    font-family:"Poppins", sans-serif !important;
    letter-spacing:0;
}

/* gift card form */

.gift_tagline h3 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    font-family: var(--heading_font);
    color: var(--accent_clr);
    letter-spacing: 0.3px;
}

.hb-colour-options {
    width: 45%;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}


.custom-check input[type="radio"] {
    position: absolute;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    -o-opacity: 0;
}

.custom-check input[type="radio"]+label {
    position: relative;
    width: 25px;
    height: 25px;
    margin: 0 8px 8px 0;
    text-indent: 40px;
    color: var(--accent_clr);
    cursor: pointer;
}

.custom-check input[type="radio"]+label:before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 25px;
    width: 25px;
    background: transparent;
    border: 2px solid var(--accent_clr);
    transition: all 0.5s ease;
    /* border: 1px solid #cccccc; */
}

.custom-check input[type="radio"]:checked+label:before {
    background-color: var(--accent_clr);

}

.custom-check input[type="radio"]:checked+label:after {
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    top: 0px;
    left: 6px;
    content: '\f00c';
    font-size: 16px;
    color: var(--white_clr);
    z-index: 99;
    text-indent: 0;
    margin: 0;
}

/* ---------------------------------- */
.gift-card-design-wrapper {
    display: flex;
    gap: 20px;
    margin: 15px 0 25px;
}

.gift-card-design-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all .25s;
  border: 2px solid transparent;
  position: relative;
}

.gift-card-design-item img {
  width: 170px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.gift-card-design-item input {
  display: none;
}

.gift-card-design-item input:checked + img,
.gift-card-design-item.checked img {
  border: 3px solid rgb(172, 110, 72); 
}

/* ---------------------------------- */

.customer .form-check {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    column-gap: 10px;
    color: #b79f93;
    padding-left: 0;
}
.form-check .form-check-label {
    font-size: 16px;
}
.form-check .form-check-input{
    margin-left: 0;
}
.customer input:focus {
    box-shadow: none;
    border-color: var(--accent_clr);
}

.customer input:focus-visible, 
.customer textarea:focus-visible {
    outline: 1px solid var(--accent_clr);
}

.customer .form-check-input[type=checkbox] {
    border-radius: 0px;
    width: 25px;
    height: 25px;
    border-width: 2px;
    border-color: var(--accent_clr);
    cursor: pointer;
}

.customer .form-check-input:checked {
    background-color: var(--accent_clr);
    border-color: var(--accent_clr);
}


.recepient-detail {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.recepient-detail .form-group {
    display: flex;
    column-gap: 15px;
}

.recepient-detail .form-group label {
    width: 135px;
    color: var(--accent_clr) !important;
}

.recepient-detail .form-group input,
.gift-note textarea {
    flex: 2;
    padding: 10px 20px;
    color: var(--accent_clr);
    border: 1px solid var(--accent_clr);
}


.recepient-detail .form-group div {
    flex: 2;
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.gift-note {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--accent_clr);
}

.gift-design-images {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;

}

.gift-design-images img {
    width: 130px;
}
.product__title {
    margin-bottom: 0px !important;
}



/* gift card form end */




.product_thumbnail .slick-slide {
    padding: 0px 8px;
}

.product_thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.product_thumbnail .custom-arrow {
    width: 30px;
    height: 30px;
}

.product_thumbnail .custom-arrow i {
    font-size: 14px;
}

.product_thumbnail .slick-next {
    right: -10px;
}

.product_thumbnail .slick-prev {
    left: -10px;
}

.product_content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-left: 20px;
}

.product_content .product_title {
    font-size: 35px;
    line-height: 40px;
    font-weight: 600;
    color: var(--text_clr);
    margin-bottom: 0px;
}


.product-cut-off {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.product-cut-off .product_price {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary_clr);
}

.color_variant {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.color_variant input {
    display: none;
}

.color_variant span {
    background-color: #eeeeee;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
}

.color_variant input:checked+span {
    background-color: var(--primary_clr);
    color: var(--white_clr);
}



.quantity_wrapper {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    background-color: #ffffff;
    border: 1px solid #000;
    padding: 7px 15px;
}

.quantity_wrapper button {
    border: none;
    background-color: transparent;
}

.quantity_wrapper input {
    border: none;
    background-color: transparent;
    text-align: center;
    width: 100px;
}

.quantity_wrapper input:focus-visible {
    border: none;
    box-shadow: none;
    outline: none;
}

.product_buttons {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    margin-bottom: 10px;
}

.product_buttons .secondary_btn {
    border: 2px solid var(--primary_clr);
}

.product_buttons .primary-btn {
    background-color: var(--primary_clr);
    color: var(--white_clr);
}

.product_buttons .primary-btn:hover {
    color: var(--primary_clr);
}

.product_buttons .primary-btn::after {
    background-color: var(--white_clr);
}

.accordion-button:not(.collapsed) {
    color: var(--text_clr);
    background-color: var(--light_clr);
    font-weight: 600;
    box-shadow: none;
}


.product_share a {
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: var(--text_clr);
    padding-left: 5px;
}

.product_share a:hover {
    color: var(--primary_clr);
}

.related_product .product_box {
    padding: 0;
}


.product_shippping .policy_item {
    box-shadow: none;
}



/* product page end*/


/* OUr Founder*/

.founder_banner {
    background-image: url(../images/founder-bg1.jpg);
    background-position: 0% 65%;
}

.partner_slider {
    padding: 10px 0px;
}

.partner_slider .partner_img {
    max-width: 100px;
    width: 100%;
}

.partner_slider .slick-slide {
    text-align: center;
}
.slick-slide img {
    display: block;
    width: 100%;
}

.partner_slider .partner_img img {
    width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    scale: 0.9;
}

.partner_slider .partner_img img:hover {
    filter: grayscale(0%);
    opacity: 1;
    scale: 1;
}


.founder_modal video {
    height: 46vh;
    width: 100%;
    object-fit: cover;
}


.cta_banner {
    position: relative;
    background-image: url(../images/cta-bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0px;
    color: var(--white_clr);
    background-position: 0% 5%;

}

.comunity_cta {
    background-image: url(../images/cta_banner2.jpg);
}

.cta_banner .cta_content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}

.cta_banner .cta_content button:hover {
    border-color: var(--primary_clr);
}

.cta_banner .cta_content p {
    text-shadow: 0px 2px #3f3f3f;
}



.co-founder_img {
    width: 70%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 80px;
    margin-inline:auto;
}

.contact_textbox {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
    padding: 5px 20px;
    margin-top: 10px;
    border-radius: 10px;
    /* border: 1px dashed #000; */
}

.founder_contact_btn a {
    padding: 16px 40px;
    font-size: 22px;
}

.co-founder_details {
    width: 80%;
    margin-inline: auto;
}


/* OUr Founder end*/


/* purpose */
.purpose_banner {
    background-image: url(../images/purpose_banner.jpg);
    background-position: 0% 60%;
}

.purpose_mission .policy_item:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80% 100%;
    background-color: var(--primary_clr);
    z-index: -1;
}

.purpose_mission .policy_item * {
    color: var(--white_clr);
}

.purpose_mission .policy_item .policy_icon {
    border: 2px solid var(--white_clr);
    transition: all 0.3s ease-in-out;
}

.purpose_mission .policy_item:hover .policy_icon {
    transform: rotateY(180deg);
}


.impact_card {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    margin-top: 10px;
}

.impact_card .impact_icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text_clr);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.impact_card .impact_icon i {
    font-size: 25px;
    line-height: 25px;
}

.impact_card:hover .impact_icon {
    transform: rotateY(180deg);
}

.impact_card .impact_content h3 {
    font-size: 32px;
    line-height: 36px;
}


.collection_card {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.3s ease-in-out;
}

.collection_card::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #A77C69;
    background: linear-gradient(0deg, rgb(16 3 3 / 75%) 20%, rgb(0 0 0 / 0%) 50%);
    z-index: 3;
}

.collection_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}


.collection_card:hover img {
    transform: scale(1.10);

}

.collection_card .collection_content {
    position: absolute;
    bottom: 30px;
    left: 35px;
    z-index: 4;
}


.collection_card * {
    color: var(--white_clr);
}

.collection_link {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.collection_link:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 00%;
    height: 2px;
    background-color: var(--white_clr);
    transition: all 0.4s ease-in-out;
}

.collection_link:hover:before {
    width: 100%;
}

/* purpose end*/
/* Community */
.community_banner {
    background-image: url(../images/community-banner.jpg);
    background-position: 0% 50%;
}

.community_team .team_card .team_img {
    height: 210px;
}

.community_team .team_card .team_content {
    padding: 15px;
    text-align: center;
}

.community_team .team_card .team_content h3 {
    margin-bottom: 2px;
    cursor: default;
    justify-content: center;
}

.community_team .team_card .team_content p {
    font-style: italic;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
}

.gallery_slider .gallery_img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* .gallery_slider .gallery_img::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    background-color: rgb(185 149 134 / 49%);
    transition: all 0.5s ease-in-out;
}

.gallery_slider .gallery_img:hover:before {
    width: 90%;
    height: 90%;
} */

.gallery_img .gallery_link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light_clr);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}


.gallery_img:hover .gallery_link {
    width: 70px;
    height: 70px;
}

.gallery_img .gallery_link img {
    width: 25px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.gallery_img:hover .gallery_link img {
    opacity: 1;
}

.hot_topics {
    width: 700px;
    margin-inline: auto;
}


.hot_topics ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 0px;
}

.hot_topics.show-more ul {
    margin-bottom: 20px;

}

.hot_topics ul li {
    padding: 15px 20px 15px 30px;
    background-color: #b99586;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    position: relative;
}

.hot_topics ul li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 0px;
    height: 0px;
    background-color: #ffffff;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.hot_topics ul li:hover::before {
    width: 8px;
    height: 8px;
}

.hot_topics ul li p {
    margin-bottom: 0px;
}

.hot_topics .extra {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0px;
}

.hot_topics.show-more .extra {
    max-height: 60px;
    padding: 15px 20px 15px 30px;
    opacity: 1;
    overflow: visible;
}

/* Community end*/


/* modal */

.newletter_modal .modal-dialog {
    max-width: 600px;
    width: 100%;
    position: relative;
}

.newletter_modal .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 3;
}

.newletter_modal .modal-body {
    padding: 40px 30px 35px;
}

.newletter_modal .newsletter_wrapper {
    width: 100%;
}

.newletter_modal form {
    column-gap: 8px;
}

.newletter_modal .newsletter_heading {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.newletter_modal form .form_group {
    width: auto;
    flex: 2;
}

.newletter_modal .newsletter_wrapper form input {
    border: 2px solid var(--primary_clr);
    border-radius: 5px;
    padding-right: 120px;
}



.newletter_modal .newsletter_wrapper button {
    width: auto;
    padding: 12px 20px;
    text-transform: capitalize;
}

.newletter_modal .newsletter_icon i {
    font-size: 60px;
}

/* modal end*/


/* story page */
.story_banner {
    background-image: url(../images/story-banner.jpg);
    background-position: 0% 70%;
}

.share_story .text-para {
    margin-bottom: 5px;
}


.story_form {
    box-shadow: rgb(205 205 205) 0px 2px 6px 0px;
    border-radius: 10px;
    padding: 30px 30px 40px;
    background-color: var(--white_clr);
}


.story_form .form-label {
    font-size: 15px;
    margin-bottom: 4px;
}

.story_form .story-tip {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
}

.story_form .form-check-label {
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.story_form button {
    /* width: 90%; */
    margin-inline: auto;
    padding: 15px 50px;
    margin-top: 15px;
    font-size: 20px;
    text-transform: capitalize;
}



/* story page end*/


/* mission page */
.mission_banner {
    position: relative;
}

/* .mission_banner::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
} */

.mission_banner .banner_content {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    max-width: 30vw;
    width: 100%;
    text-align: left;
}

.mission_banner .mission_heading {
    font-size: 5vw;
    line-height: 5.5vw;
    font-style: italic;
    color: var(--accent_clr);
}

.mission_banner .mission_img {
    width: 100%;
}

.mission_content {
    max-width: 770px;
    width: 100%;
    margin-inline: auto;
}

.mission_purpose .mission_label {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.mission_purpose .mission_label span {
    font-family: 'Adelia';
    font-weight: 600;
}
 
.quotes_box .product_img {
    box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 10px;
    padding: 15px;
    margin: 20px 10px;
    border-radius: 6px;
    background-color:#ffffff;
    transition:all 0.3s ease-in-out;
}


.quotes_box .product_img:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 10px;
       /* transform:scale(1.06); */
       transform:translateY(-10px);
}
.fancybox-is-open .fancybox-bg {
    display: block;
    background-color: rgba(0,0,0,0.7);
}



.mission_wrapper{
    background: transparent;
}

.mission_wrapper .grid_img_wrapper {
    height: auto;
}

 .mission_wrapper .grid_text_wrapper {
    align-items: center;
}


.mission-about .grid_img_wrapper {
    height: 85%;
    box-shadow:none;
}
.mission-about .grid_img_wrapper img{
    object-fit:contain;
    object-position:50% 45%;
    width:90%;
}

.mission-about .align-items-center {
    align-items: normal !important;
}

 .mission_wrapper .grid_img_wrapper img:hover {
    transform: rotate(0deg) scale(1);
}
.mission-about  {
    padding-top: 0px;
}
 .mission_wrapper .grid_heading {
    font-weight: 600;
    letter-spacing: 1px;
}

.related-products__heading {
    margin: 0 0 1.5rem !important;
    text-align: center;
}


/* mission page end*/


/* explore rest */
.key_facts {
    /* background-image: url(../images/explore_rest.jpg); */
    background-attachment: scroll;
    height: 100%;
    background-position: 100% 85%;
    background-size: cover;
}

.key_fact_item {
    width: 800px;
    margin-inline: auto;
}

.key_points {
    width: 220px;
    height: 220px;
    background-color: var(--accent_clr);
    color: var(--white_clr);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    transform-origin: center;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
    transform: scale(1.3);
}

.key_points:hover {
    transform: scale(1.35);
    box-shadow: 0px 0px 15px 15px rgb(248, 248, 248);
}

.key_points h3 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0.3px;
}


.key_fact_item ul li:nth-child(even) .key_points {
    margin-left: auto;

}


.key_points svg {
    position: absolute;
    width: 240px;
    height: 240px;
    top: -10px;
    left: -10px;
    transform: rotate(-90deg);
}

.key_points circle {
    fill: none;
    stroke: var(--white_clr);
    stroke-width: 2;
    stroke-dasharray: 690;
    stroke-dashoffset: 690;
}
.key_points h3{
    color: var(--white_clr);
}
/* explore rest end*/


/* cart page */
    .product-option {
        font-size: 16px !important;
        font-weight: 500;
        color: #000;
    }
    .product-option dt {
        font-weight: 600;
        padding-right: 2px;
    }
    .cart-items th {
        font-weight: 600 !important;
        opacity: 1 !important;
        color: #b79f93 !important;
    }
    .cart__checkout-button{
        background-color:rgb(183 159 147);   
    }
    .totals>h2 {
        font-family: "Poppins", sans-serif !important;
    }
    .totals *{
        font-size: 25px !important;
    }
    .tax-note {
        font-size: 16px;
    }
    .main-page-title{   
        margin-bottom:1rem !important;
    }   
    .title--primary, .main-page-title, .collection-hero__title, .template-search__header .h2{
        font-size: 45px;
        line-height: 55px;
        font-family: "Didot", serif;;
    }



/* cart page end*/


.collection-list {
    margin-bottom: 80px !important;
}

 .card__information {
    padding: 15px !important;
}

.collection-list h3.card__heading {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.product-card-wrapper .price * {
    font-size: 16px !important;
}

.product-card-wrapper .card__heading {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
}
.facets__form *{
    font-size: 16px !important;
    font-family:"Poppins", sans-serif !important;
    color: var(--text_clr) !important;
}
.facet-filters__sort:focus-visible, .focus-offset:focus-visible {
     outline: none !important;
    box-shadow: none !important;  
}
div#predictive-search-results * {
    font-family:var(--body_font) !important;
}

.card-wrapper .card {
    overflow: hidden;
}
.card__inner {
    aspect-ratio: 1/1;
    overflow: hidden;
}


.testimonial-section .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.testimonial-section  .slick-dots li button {
    width: 30px;
    height: 30px;
    padding: 0px !important;
}

.card-wrapper .badge {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 15px;
}


.search__button.field__button, .reset__button {
    min-height: auto;
    min-width: auto;
    height: 35px;
    width: 40px;
    display: inline-flex;
    background-color: #b79f93 !important;
    color: #ffffff;
    font-size: 20px;
    border-radius: 5px;
    right: 6px;
    top: 6px;
}

.reset__button {
    top: 6px !important;
    right: 60px !important;
    background-color: transparent !important;
    color: #000 !important;
}

.search__button.field__button>.svg-wrapper, .reset__button>.svg-wrapper{
    height: 25px;
    width: 25px;
}
.search__button .icon {
    height: 100%;
    width: 100%;
    /* font-size: 5px; */
}

.predictive-search * {
    font-size:16px;
}


.accordion summary {
    padding: 10px 0px !important;
}
.accordion summary:focus-visible {
    outline: none;
    box-shadow: none;
}

.accordion {
    margin-bottom: 10px !important;
}
.benefits-one-row-section {
    background-color:var(--primary_clr);
}

 .benefits-one-row {
    padding: 20px 0;
    overflow: hidden;
  }
  .benefits-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 20px 40px;
    margin:auto;
  }
  .benefit-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items:baseline;
  }
 .icon-wrap {
    /* width: 45px;
    height: 45px;
    background: #a77c69;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; */
    margin-bottom: 12px;
}
.svg-inner i {
   font-size:30px;
   line-height:30px;
   color: #ffffff;
}

.benefit-title {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 4px 0;
    /* font-family: "Poppins", sans-serif; */
    letter-spacing: 00;
    text-transform: uppercase;
}

.benefit-desc {
    font-size: 15px;
    color: #fff;
    margin: 0;
    line-height: 22px;
    text-align: left;
    letter-spacing: 0;
    width: 80%;
}

.header_social .list-social {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.header_social ul li {
    display: flex;
    align-items: center;
    justify-content:center;
}
.header_social ul .list-social__link {
    line-height: 0.6;
}

.header_social ul .svg-wrapper {
    width: 25px;
    height: 25px;
}

.header_social .svg-wrapper>svg {
    height: 100%;
    width: 100%;
}

.header_social .svg-wrapper>svg:hover {
    filter: invert(1);
}


.collection-hero__description {
    max-width: 100% !important;
}

.collection-hero__inner .collection-hero__description p {
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    color: #c39d81;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.member-input-subtext {
    color: #121212;
    text-align: center;
    font-style: italic;
}


   
.home-charts {
  padding: 60px 0;
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.chart-box {
  border: 1px solid #ddd;
  padding: 18px 18px 24px;
  background: #fff;
}

.chart-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}



.product__accordion .metafield-rich_text_field p {
    white-space: pre-wrap;
}


.newsletter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  font-family: inherit;
}

.newsletter-modal.active {
  display: block;
}

.newsletter-modal.active .newsletter-overlay {
  position: absolute;
  inset: 0;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  background: rgba(0, 0, 0, 0.7);
  display:block !important;
}

.newsletter-content {
  position: relative;
  max-width: 800px;
  height: 95vh;
  margin: auto;
  background: #000;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.newsletter-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 1px solid #555;
  color: #aaa;
  padding: 4px 8px;
  cursor: pointer;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  height: 100%;
  overflow:hidden;
}

.newsletter-image {
    height: 100%;
    overflow: hidden;
}
.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-text {
  padding: 80px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-grid .newsletter-heading {
    font-size: 22px;
    color: #fff;
    font-family: var(--body_font) !important;
    text-align:center;
}

.newsletter-description {
    margin: 15px 0 10px;
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
}
.newsletter-description p{
    margin-bottom:0px;
}

.newsletter-form {
    display: flex;
    border: 1px solid #555;
    padding: 5px 6px;
    background-color: #fff;
    border-radius: 4px;
}

.newsletter-form input {
    flex: 1;
    padding: 0px 15px;
    background: transparent;
    border: none;
    color: var(--primary_clr);
}

.newsletter-form input:focus, .newsletter-form button:focus {
    box-shadow:none;
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 0;
    cursor: pointer;
    border: 2px solid var(--primary_clr);
    width: 35px;
    height: 35px;
}

.newsletter-form button i{
    font-size:14px;
    color: var(--primary_clr);
}
.newsletter-form button:hover i{
    color: var(--white_clr);
}


.newsletter-consent {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 14px;
}

.newsletter-brand {
    margin-top: 80px;
    text-align: center;
}

.newsletter-brand img{
    max-width: 160px;
    width: 100%;
    margin-bottom: 30px;
}
.newsletter-brand .brand-text {
    font-size:14px;
}

.attribute-item .custom-control-input:checked~.custom-control-label::before {
    border-color: #b79f93 !important;
    background-color: #b79f93 !important;
}


/* coming soon home */
.coming-soon-rest .grid_text_wrapper {
    row-gap: 15px;
    align-items: center;
    padding: 10px 30px;
}
.coming-soon-rest .primary-btn {
    background-color: var(--white_clr);
    outline: 7px solid var(--white_clr);
}


@media only screen and (min-width: 992px) {
    a.navbar-brand {
        display: none;
    }
    .navbar-collapse {
        justify-content: center !important;
    }

}
@media only screen and (max-width: 1399px) {
    .giftcard_video {
        height:700px;
   }
}
@media only screen and (max-width: 1199px) {
    .recipient-fields-block .recipient-fields__field {
        grid-template-columns: 150px calc(100% - 150px) !important;
    }
    .gift-card-design-item img {
        width: 100%;
        height: 7vw;
    }
    .gift-card-design-wrapper {
        gap: 10px;
    }
    .page-width--narrow {
        padding-inline: 20px;
    }
    .cart-item>td+td {
        padding-left: 2rem !important;
    }

    .cart-item__name, .cart-item__price-wrapper .price {
        font-size: 18px !important;
        line-height: 30px !important;
    }
    .totals * {
        font-size: 20px !important;
    }


    .icon-wrap {
        width: 55px !important;
        height: 55px !important;
    }

    .benefit-title {
        font-size: 18px !important;
    }
}

 @media (max-width: 1024px) {
    .benefits-wrapper {
      justify-content: center;
    }
    .charts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  }


@media only screen and (max-width: 991px) {
    .topbar {
        display: none;
    }
    header .navbar-nav {
        padding-left: 0px !important;
        margin-bottom:0px; 
    }
    header .nav-link {
        font-size: 16px;
        line-height: 22px;
        color: #ffffff;
    }


    .navbar-collapse{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 15px;
        margin: 10px 0px 20px;
    }
    .navbar-collapse.show{
        display: flex;
    }
    header .header_icons_wrapper, .header_social {
        padding-left: 10px;
    }


    .cart-count-bubble {
        filter: invert(0);  
    }


    .navbar-toggler {
        filter: invert(1);
        padding: 5px 10px !important;
        border-color#000 !important; 
    }
    .navbar-toggler:focus {
        box-shadow:none;
    }
    header .header_icon img, .header_social .svg-wrapper>svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all .3s ease-in-out;
        filter: invert(1);
    }


    .key_points {
        transform: scale(1);
    }

    .key_points:hover {
        transform: scale(1.05);
    }

    .key_fact_item {
        width: 100%;
        margin-inline: auto;
    }
    .grid_text_wrapper {
        padding: 20px 10px 0px;
    }
    .video_clip_wrapper .row {
        row-gap: 20px;
    }
    .team_card {
        margin-bottom: 30px;
    }
    .giftcard_content .grid_text_wrapper {
        padding: 20px 10px;
        row-gap: 5px;
        max-width:390px;
    }
    .footer_middle .row{
        row-gap: 25px;
    }
    .main_footer .footer_heading {
        font-size: 20px;
        line-height: 22px;
    }

    .mission_purpose .mission_label span {
        font-size: 14px;
    }

    .gift-card-right h2 {
        font-size: 30px !important;
    }
    .product__info-wrapper {
        padding: 0 0 0 2rem !important;
    }
    .customer .recipient-confirmation {
        padding-left: 150px!important;
        font-size: 14px !important;
    }
    .recipient-fields__field {
        margin: 0 0 1rem !important;
    }

    .recipient-form {
        margin-bottom: 1.5rem !important;
    }
    .revelist-gift-banner {
        padding: 0px 20px !important;
    }

    .gift-card img {
        width: 100%;
    }
    .gift-card {
        margin-bottom: 40px;
    }
    .giftcard_video {
        height: auto;
        width: 100%;
    }




   .section-template--20096380698671__cart-items-padding .page-width {
        padding: 0 2rem;
    }
    .cart-item>td+td {
        padding-left: 1rem !important;
    }

    .cart-items .cart-items__heading--quantity, .cart-item .cart-item__quantity, .cart-item__quantity--info quantity-popover>* {
        padding-left: 1rem !important;
    }

    .cart-item__quantity-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .totals *{
        font-size: 20px !important;
    }
    .tax-note {
        font-size: 14px;
    }

    .facets__form {
        gap: 0 1rem !important;
    }
    .title--primary, .collection-hero__title {
        margin: 2rem 0px !important;
    }
    .collection-list {
        row-gap: 20px;
    }
    #product-grid {
        row-gap: 15px !important;
    }
    .grid--1-col-tablet-down .grid__item {
        width: 49%;
        max-width: 100%;
    }
    .facets__form * {
        font-size: 14px !important;
    }

    .custom-form-section__content {
        width: 100%;
    }

    .benefits-wrapper {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .benefit-block {
        flex: auto !important;
        width: 48%;
    }
    .benefit-title {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    .icon-wrap {
        width: 50px !important;
        height: 50px !important;
    }
    .clip_box video {
        height: 85vh;
    }

    .collection-hero__inner .collection-hero__description p {
        font-size: 22px;
        line-height: 30px;
    }
     .mission_wrapper .row {
        row-gap: 20px;
    }
    .mission-about .grid_img_wrapper {
        height: 100%;
        padding-top: 5%;
    }


    

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        max-width: 100%;
    }


    .coming-soon-rest .grid_text_wrapper {
        padding: 30px 15px;
    }


}

@media only screen and (max-width: 767px) {
    .font_40, .title--primary, .main-page-title, .collection-hero__title, .template-search__header .h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .banner_heading {
        font-size: 40px;
        line-height: 50px;
    }

    .font_25 {
        font-size: 18px;
        line-height: 24px;
    }
    .py-80 {
        padding: 50px 0;
    }
    .pt-80 {
        padding-top: 50px;
    }
    .pb-80 {
        padding-bottom: 50px;
    }
    
    .hero_wrapper .carousel-inner {
        height: auto;
    }
    
    .section_heading {
        font-size: 35px;
        line-height: 45px;
        margin-bottom:15px !important;
    }
    .grid_heading {
        font-size: 35px;
        line-height: 45px;
        margin-bottom:0px;
    }
    .grid_text_wrapper h3 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .key_points h3 {
        font-size: 25px;
        line-height: 30px;
    }
    
    .key_points {
        transform: scale(0.9);
    }

    .key_points:hover {
        transform: scale(1);
    }
    
    .font_16 {
        font-size: 14px;
        line-height: 20px;
    }
    .hero_wrapper .carousel-control-next, .hero_wrapper .carousel-control-prev {
        width: 35px;
        height: 35px;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    .slick-next {
        right: 0px;
    }
    .slick-prev {
        left: 0px;
    }
    
    .rotating-banner {
        padding: 10px 0;
    }
    
    .horizontal-scrolling-items__item {
        font-size: 18px;
    }
    
    .newsletter_wrapper {
        width: 100%;
    }
    .grid_img_wrapper {
        height: auto;
    }
    .founder_contact_btn a {
        padding: 12px 30px;
        font-size: 18px;
    }
    .co-founder_details {
        width: 100%;
    }
    /* .product_box .product_img {
        height: 100%;
        min-height:300px;
    } */
        
    .mission_content {
        max-width: 100%;
    }
    .mission_purpose .mission_label {
        flex-direction: column;
        row-gap:10px;
    }
    .grid--peek.slider .grid__item:first-of-type {
        margin-left: 0px !important;
        padding: 0px 15px !important;
    }
    .grid--peek.slider:after {
        display:none;
    }
    .product__info-wrapper {
        padding:3rem 0rem!important;
    }

    .related-products .grid {
        row-gap:20px;
    }


    .gift-card-design-item img {
        height: auto;
    }
    .gift-card-design-item {
        flex: 1;
    }
    .gift-card-left {
        width: 100%;
    }
    .product__info-container .product-form {
        margin-top: 0 !important;
        margin-bottom: 0px !important;
    }
    .section-template--20143310209071__main-padding {
        padding-bottom: 0px !important;
    }


    /* cart */
    .cart-item__quantity-wrapper {
        align-items: flex-start;
    }

    .benefits-wrapper {
      flex-wrap: wrap;
      overflow-x: auto;
      padding-bottom: 10px;
    }
    .benefit-block {
      min-width: 170px;
    }
    .co-founder_img {
        width: 80%;
        margin-bottom:50px;
    }
    
    .clip_box video {
        height: 480px;
    }
    .collection-hero__inner .collection-hero__description p {
        font-size: 18px;
        line-height: 25px;
    }
    .mobile-facets__open-label {
        font-size: 14px;
    }
    .facets-container {
        margin-bottom: 10px;
    }



    .chart-box canvas {
        width:100% !important;
    }

 .newsletter-content {
    max-width: 100%;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    overflow-y:auto;
  }

  .newsletter-text {
    padding: 30px 15px;
  }
  .newsletter-grid .newsletter-heading {
    font-size: 18px;
    text-align: center;
}
  .newsletter-image {
        height: 350px;
    }

    .newsletter-image img{
        object-position: 20% 20%;
    }




}

@media only screen and (max-width: 576px) {

    .recipient-fields-block .recipient-fields__field {
        grid-template-columns: 1fr !important;
        gap: 5px;
    }
    .product-form-variant-block {
        grid-template-columns: 110px calc(100% - 110px) !important;
    }
    .gift-card-right h2 {
        font-size: 25px!important;
    }

    .customer .recipient-confirmation {
        padding-left: 0px!important;
    }
    .recipient-fields .field__label, .field__label {
        font-size: 14px;
        line-height: 20px;
    }
    .recipient-fields .field input, .recipient-fields .text-area, .field__input{
        font-size: 14px!important;
        line-height: 20px!important;
        padding: 10px 10px!important;
        height: 40px!important;
    }
    
    .recipient-fields input::-webkit-input-placeholder {
        font-size: 14px!important;
        line-height: 20px!important;
    }
    .form-check .form-check-label {
        font-size: 14px;
    }
    .field__label {
        top: 10px!important;
        left: 28px!important;
    }

    .revelist-gift-banner__title, .template-search__header .h2{
        font-size: 35px !important;
        line-height: 40px !important;
    }

    .revelist-gift-banner__text {
        font-size: 14px;
        line-height: 20px;
    }
    p.thank_you_msg {
        font-size: 15px;
        line-height: 20px;
    }



    /* cart */
    

    .cart-item__quantity-wrapper {
        flex-direction: row;
    }
    .cart-item__name {
        font-size: 20px;
        line-height: 25px;
    }
    .cart-items .price {
        font-size: 18px;
    }
    .product-option {
        font-size: 14px!important;
    }
    .totals__total-value {
        font-size: 20px !important;
        line-height: 30px !important;
    }
    .cart-item__media {
        grid-row: 1 / 1 !important;
        grid-column: 1/4 !important; 
    }

    .cart-item  .cart-item__details {
        grid-column: 1 / 5 !important;
        grid-row: 2/2 !important;
        padding-left:0px !important;
    }
    .cart-item__quantity {
        grid-column: 1/5 !important;
        padding-left: 0px !important;
    }

   .cart-item__quantity-wrapper {
        flex-direction: row;
        flex-wrap: nowrap!important;
        align-items: center;
    }
    cart-remove-button .button {
        min-width: auto !important;
        min-height: auto !important;
        margin: 0px !important;
    }

    .cart-item__totals {
        align-items:center !important;
    }





    .totals * {
        font-size: 18px!important;
    }

    .title--primary {
        font-size: 30px;
        line-height: 35px;
    }
    .cart-items thead tr {
        margin-bottom: 2rem !important;
    }
    .form__label, .quantity *{
        font-size: 16px;
    }
    .title--primary, .collection-hero__title {
        margin: 2rem 0 1rem !important;
    }
    .grid--1-col-tablet-down .grid__item {
        width: 100%;
        max-width: 100%;
    }

    .search__button.field__button, .reset__button {
        height: 30px;
        width: 35px;
        right: 6px;
        top: 6px;
    }
    .search__button.field__button>.svg-wrapper, .reset__button>.svg-wrapper {
        height: 20px;
        width: 20px;
    }

    .reset__button {
        right: 50px !important;
    }



    .benefit-block {
        width: 100%;
        align-items: center !important;
    }

    .benefits-wrapper {
        padding: 0px 20px 80px !important;
        row-gap: 40px !important;
    }
    .benefit-desc {
        font-size: 14px !important;
        line-height: 20px !important;
        text-align: center !important;
    }

    /* .revelist-promo .revelist_inner {
        border-radius: 30px;
        padding: 15px 0px 10px;
    } */

    .collection-hero__inner .collection-hero__description p {
        font-size: 16px;
        line-height: 20px;
    }


    .gift-card {
        row-gap: 20px;
        margin-bottom:30px;
    }
    .revelist-promo .grid_heading {
        font-size: 30px;
        line-height: 40px;
        text-align: center;
    }
    .coming-soon-rest .grid_text_wrapper {
        padding: 30px 10px;
    }
.newsletter-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: black;
    border: 1px solid #555;
    color: #aaa;
    padding: 4px 8px;
    cursor: pointer;
}

}
@media only screen and (max-width: 440px) {
    .horizontal-scrolling-items__item {
        font-size: 16px;
    }
    .section_heading, .grid_heading  {
        font-size: 30px;
        line-height: 40px;
    }

     .font_40, .title--primary, .main-page-title, .collection-hero__title, .template-search__header .h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .grid_text_wrapper h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .text-para, .grid_content.ps-1 p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0;
        margin-bottom:0px;
    }
    .navbar-collapse {
        row-gap: 10px;
    }

    header .navbar-nav {
        padding-left: 0px;
    }

    header .nav-link {
        font-size: 16px;
        line-height: 24px;
        color: var(--white_clr);
        padding: 5px!important;
    }
    header .header_icon, .header_social ul .svg-wrapper {
        width: 20px;
        height: 20px;
    }
    header .header_icon img{
        filter:invert(1);
    }
    .navbar-toggler{
        width:40px;
        height:40px;
        filter:invert(1);
        padding:0px !important;
    }

    .navbar-toggler-icon{
        width:25px;
        height:25px;
    }
    .newsletter_main .newsletter_icon i {
        font-size: 50px;
        line-height: 60px;
    }
    .primary-btn {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 16px;
    }
    /* .revelist-promo .grid_heading {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    } */
    .main_footer .footer_heading {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 20px;
    }
    .main_footer .footer_menu ul a {
        font-size: 14px;
    }
    .main_footer .footer_contact .footer_icon {
        width: 30px;
        height: 30px;
    }

    .main_footer .footer_contact .footer_icon i {
        font-size: 12px;
        line-height: 14px;
    }
    .grid_text_wrapper {
        padding: 20px 0px 0px;
    }
    .clip_box .video_clip_heading {
        font-size: 16px;
        line-height: 30px;
    }
    .co-founder_content>p, .rte p {
        font-size: 14px;
    }
    .co-founder_img {
        width: 100%;
    }

    .team_card .team_img {
        height: auto;
    }

    .collection-list h3.card__heading {
        font-size: 18px;
        line-height: 30px;
    }

    .giftcard_content .grid_text_wrapper {
        max-width: 260px;
    }
    .custom-arrow, .custom-arrow:focus {
        width: 35px;
        height: 35px;
        top: 55%;
    }



}


.become-a-member .custom-subscribe-button {
    position: relative;
    width: auto;
    background: black !important;
    color: white !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 5px;
    height:46px;
}
.become-a-member form#contact_form {
    border: none !important;
}
.become-a-member .newsletter-form__field-wrapper .field {
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.newsletter-form__message {
    color: #b79f93 !important;
}
svg.icon.icon-success path {
    fill: #b79f93 !important;
}