body {
    font-family: 'Almarai', sans-serif;
    background-color: var(--white);
    color: var(--theme-primary);
    font-weight: 300;
    overflow-x: hidden !important;
}

:root {
    --white: #ffffff;
    --theme-grey: #E9E9E9;
    --theme-grey-light: #EFEFEF;
    --theme-primary: #4D4D4D;
    --theme-primary-01: #808080;
    --theme-link-hover: #a71c21;
    --theme-counter-border: #C4C4C4;
    --theme-secondary-fonts: 'Roboto', sans-serif;
    --theme-header-border: #BEBEBE;
    --theme-primary-02: #979797;
}


/* Compare Bar Styling */
.compare-parent-box {
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    background: #fff !important;
    width: 100% !important;
    z-index: 9999 !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
}

.compare-box {
    position: relative;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #eee;
    height: 100%;
}

.remove-compare-item {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--theme-link-hover);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.remove-compare-item:hover {
    transform: scale(1.1);
    background: #d32f2f;
}

.compare_r_btn {
    background-color: var(--theme-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    font-size: 12px;
    padding: 8px 15px !important;
    white-space: nowrap;
}

.clearall {
    background-color: transparent !important;
    color: var(--theme-primary) !important;
    border: 1px solid var(--theme-primary) !important;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    font-size: 12px;
    padding: 8px 15px !important;
    white-space: nowrap;
}

.clearall:hover {
    background-color: var(--theme-primary) !important;
    color: white !important;
}

@media (max-width: 1199px) {
    .compare_r_btn, .clearall {
        font-size: 11px;
        padding: 8px 10px !important;
    }
}

@media (max-width: 991px) {
    .compare_r_btn, .clearall {
        font-size: 10px;
        padding: 6px 8px !important;
    }
}


a,
input,
button {
    transition: all .2s ease;
}

a,
input,
button {
    outline: none !important;
}

/* Responsive Single Line Caption */
.responsive-caption-text {
    display: inline-block !important;
    width: auto !important;
    margin: 0 auto !important;
    text-align: center;
    font-size: 1.3rem;
    color: #000;
    letter-spacing: 0.5px;
    font-family: 'Almarai', sans-serif;
    white-space: nowrap;
}

.caption-punchline {
    font-weight: 300 !important;
    margin-left: 4px;
}


@media (max-width: 1200px) { .responsive-caption-text { font-size: 1.1rem; } }
@media (max-width: 991px) { .responsive-caption-text { font-size: 0.9rem; } }

.collection-caption-area {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    pointer-events: none;
    padding-top: 3%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

@media (max-width: 767px) { 
    .collection-caption-area { padding-top: 8%; }
    .responsive-caption-text { font-size: 1.0rem; } 
}
@media (max-width: 576px) { 
    .collection-caption-area { padding-top: 12%; }
    .responsive-caption-text { font-size: 0.9rem; } 
}
@media (max-width: 400px) { .responsive-caption-text { font-size: 0.8rem; } }


a {
    color: var(--theme-primary);
}

a:hover,
a:focus {
    color: var(--theme-primary);
    text-decoration: none;
}

.store-name-26 {
    color: var(--theme-primary);
    padding: 5px 10px;
    border-radius: 28px;
    display: inline-block;
}

.store-name-26:hover {
    color: #fff;
    background-color: var(--theme-primary-01);
    padding: 5px 10px;
    border-radius: 28px;
}

::selection {
    background-color: var(--theme-primary);
    color: var(--white);
}

/* Global */

input:focus,
button:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn-link {
    font-size: 1.25rem;
    color: var(--theme-primary-01);
    font-weight: 700;
}

.btn-link img {
    height: 22px;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
    color: inherit;
}

hr {
    border-color: var(--theme-primary);
}

/* Typography */

.small {
    color: var(--theme-primary-02);
    font-size: 0.85rem;
}

.fw_700 {
    font-weight: 700;
}

.fw_500 {
    font-weight: 500;
}

.primary_color {
    color: var(--theme-primary);
}

.theme_heading {
    border-left: 3px solid var(--theme-primary);
    padding-left: 1rem;
    color: var(--theme-primary);
}

.color_red {
    color: var(--theme-link-hover);
}

/* colors */

.white_bg {
    background-color: var(--white);
}

.primary_light {
    color: var(--theme-primary-01);
}

.primary_light_02 {
    color: var(--theme-primary-02);
}

.secondary_bg {
    background-color: var(--theme-grey);
}

.light_bg {
    background-color: var(--theme-grey-light);
}

.sec_color {
    color: var(--theme-primary-01);
}

.primary_02 {
    background-color: var(--theme-primary-02);
}

.white_color {
    color: var(--white);
}

/* Figure & Figcaption */

figcaption {
    bottom: 0;
    background: rgb(0 0 0 / 36%);
    width: 100%;
    padding: .5rem;
}

.figure-caption {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Card */

.card {
    background-color: var(--white);
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

/* Dots Pagination */

.dots.active {
    background: #869791;
}

.dots {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    transition: all .2s ease;
    border-radius: 30px;
}

.dots:hover,
.dots:focus {
    background: #869791;
}

/* Buttons */

.link {
    color: var(--theme-primary-01);
    font-weight: 500;
}

.link:hover,
.link:focus {
    color: var(--theme-primary);
    text-decoration: none;
}

.link img {
    height: 20px;
}

.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--white);
}

.btn-secondary {
    font-size: 20px;
    font-weight: 400;
    color: var(--theme-primary-01);
    background-color: var(--theme-grey);
    border: 1px solid var(--theme-primary-01);
    padding: 0 6px;
}

.btn-outline-light {
    color: var(--theme-primary);
    background-color: var(--theme-grey);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--theme-primary);
    background-color: var(--theme-grey);
}

/* Footer */

footer ul,
.social_link ul {
    margin: 0;
    padding: 0;
}

footer ul li,
.social_link ul li {
    list-style: none;
    margin-bottom: .50rem;
}

.social_link ul li a img {
    height: 50px;
    width: auto;
    filter: brightness(100);
}

footer,
footer a {
    color: var(--theme-primary);
    font-size: 16px;
    font-weight: 400;
}

footer a:hover {
    color: var(--theme-link-hover);
    text-decoration: none;
}

footer h3 {
    font-weight: 600;
    color: var(--theme-primary-01);
}

footer h5 {
    color: var(--theme-primary-01);
}

.footer_head {
    /* border-left: 2.5px solid var(--theme-primary); */
    /* padding-left: 16px; */
    font-weight: 600;
    line-height: 22px;
}

.footer_social p,
.newsletter p {
    color: var(--theme-primary-01);
    font-weight: 700;
}

.footer_social li a img {
    height: 24px;
    width: auto;
}

.footer_social li {
    margin: 0 .5rem;
}

.newsletter .btn {
    font-size: 20px;
    font-weight: 400;
    padding: 0 1.5rem;
    outline: none;
}

.newsletter form {
    width: 100%;
}

.newsletter .form-control {
    color: var(--theme-primary);
    background-color: var(--white);
    border: 1px solid var(--theme-primary-01);
    border-radius: 0;
}


/* General */

.hues_section {
    background: url(/images/Hues_bg.png) top center no-repeat;
    background-color: var(--theme-grey);
    background-size: contain;
}

.impression-section .set1 {
    height: 220px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.impression-section .set2 {
    height: 270px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.impression-section .set3 {
    height: 300px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.counter_section {
    top: 70px;
    z-index: 99;
}

.counter_section .card {
    font-family: var(--theme-secondary-fonts);
    cursor: pointer;
}

.counter_section .card img {
    height: 30px;
    width: 30px;
}

.counter span {
    height: 3px;
    border-radius: 10px;
    width: 35%;
    margin: auto;
    background-color: var(--theme-counter-border);
}

.counter_section .card .primary_light,
.counter_section .card span,
.counter_section .card .d-flex {
    transition: all 0.3s ease;
}

.counter_section .card:hover .primary_light {
    color: var(--theme-primary);
}

.counter_section .card:hover .d-flex,
.counter_section .card:hover p.primary_light {
    transform: scale(1.1);
}

.counter_section .card:hover span {
    background-color: var(--theme-primary);
}

.feature_card img {
    height: 60px;
}

.cta_block .btn.btn-outline-light {
    border: 1px solid var(--white);
    color: var(--theme-primary);
    background-color: var(--theme-grey-light);
}

.cta_block .btn.btn-outline-light:hover,
.cta_block .btn.btn-outline-light:focus {
    text-decoration: none;
    background-color: var(--theme-primary);
    background-color: var(--theme-counter-border);
}

#intextgallery .carousel-item img {
    height: 420px;
}

#intextgallery .carousel-control-next,
#intextgallery .carousel-control-prev {
    background: var(--theme-primary-02);
    opacity: 1;
}

#intextgallery .carousel-control-prev {
    left: -60px;
}

#intextgallery .carousel-control-next {
    right: -60px;
}

#intextgallery .carousel-control-next,
#intextgallery .carousel-control-prev,
#intextgallery .carousel-control-next:focus,
#intextgallery .carousel-control-next:hover,
#intextgallery .carousel-control-prev:focus,
#intextgallery .carousel-control-prev:hover {
    background: var(--theme-primary-02);
    opacity: 1;
}

.right-overlay-img {
    position: relative;
    right: -135px;
    top: 0;
    /* height: 250px; */
}

.right-overlay-img.countries {
    right: -80px;
}

.left-overlay-img {
    position: relative;
    left: -135px;
    top: 0;
    /* height: 250px; */
}

.brick_impress {
    position: relative;
}

.brick_impress:after {
    content: "";
    position: absolute;
    background-color: var(--theme-grey);
    left: 0;
    right: 0;
    top: 500px;
    bottom: 0;
    z-index: -1;
    height: 44%;
}

/* History Timeline */

#history-tab.nav-pills .nav-link.active,
#history-tab.nav-pills .show>.nav-link,
#history-tab.nav-pills .nav-link {
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: var(--theme-primary);
}

#history-tab.nav-pills .nav-link {
    position: relative;
    font-size: 1.5rem;
    color: var(--theme-primary-02);
    padding-top: 1.25rem;
    z-index: 99;
}

#history-tab span:hover {

    background-color: transparent;
    color: var(--theme-primary);

}

#history-tab.nav-pills.nav-tabs {
    border-bottom: none;
    position: relative;
}

.history_section:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

.history_section:after:hover {
    color: var(--theme-primary);
}

#history-tab.nav-pills .nav-link:after {
    content: "";
    background-color: var(--theme-primary-02);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    transition: all 0.3s ease;
}

#history-tab.nav-pills .nav-link:hover:after {
    background-color: var(--theme-primary);
    transform: scale(1.5);
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--theme-primary);
    cursor: pointer;
}

#history-tab.nav-pills .nav-link.active:after {
    background-color: var(--theme-primary);
    transform: scale(1.5);
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--theme-primary);
}


/* Products */

.prod_section a.btn {
    color: var(--theme-primary-01);
    border: none;
    padding: 0;
    display: block;
    text-align: left;
    padding-left: 2.5rem;
    position: relative;
}

.prod_section a.btn span {
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    background-color: var(--theme-primary-01);
    height: 18px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod_section a.btn span:after {
    content: "-";
    color: var(--white);
    position: absolute;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 14px;
    top: 0;
    text-align: center;
}

.prod_section a.btn:hover,
.prod_section a.btn:focus {
    color: var(--theme-primary-01);
    text-decoration: none;
    box-shadow: none;
}

.prod_section a.btn.collapsed span:after {
    content: "+";
}

.prod_section .card {
    box-shadow: none;
}

.prod_section hr {
    border-color: #6C6C6C;
}

.prod_features_icon img {
    opacity: .5;
}

.prod_feature {
    position: absolute;
}

.prod_box {
    overflow: hidden;
    cursor: pointer;
}

.prod_feature {
    background-color: var(--white);
    padding: .5rem;
    border-radius: 4px;
    position: absolute;
    height: 36px;
    width: 36px;
}

.prod_box .prod_feature.favourite,
.prod_box .prod_feature.compare,
.prod_box .prod_feature.brick {
    right: -40px;
}

.prod_box:hover .prod_feature.favourite,
.prod_box:hover .prod_feature.compare,
.prod_box:hover .prod_feature.brick {
    right: 5px;
}

.prod_box .prod_feature.favourite:hover img,
.prod_box .prod_feature.compare:hover img,
.prod_box .prod_feature.brick:hover img {
    opacity: 1;
}

.prod_feature.favourite img,
.prod_feature.compare img,
.prod_feature.brick img {
    height: 20px;
    width: 20px;
    position: relative;
    top: -3px;
    right: 0;
    opacity: .75;
    transition: all .1s linear;
}

.prod_box a:hover,
.prod_box a:focus {
    text-decoration: none;
    cursor: pointer;
}

.prod_feature.favourite {
    top: 5px;
    right: 20px;
    transition: right .1s linear;
}

.prod_feature.compare {
    top: 45px;
    right: 20px;
    transition: right .1s linear;
}

.prod_feature.brick {
    top: 85px;
    right: 20px;
    transition: right .1s linear;
}

.pro_label {
    background-color: var(--theme-grey);
    color: var(--theme-primary-01);
    border-radius: 40px;
    padding: 0.25rem 0rem;
    width: 100%;
    max-width: 260px;
    display: block;
    text-align: center;
}

.prod_action .btn-primary {
    background-color: var(--theme-primary-02);
    border-color: var(--theme-primary-02);
}

.single_brick {
    position: absolute;
    top: -75px;
}

/* Breadcrumb */

.breadcrumb {
    background-color: var(--white);
    padding: 0;
}

li.breadcrumb-item a {
    font-size: 1.5rem;
    color: var(--theme-primary-02);
}

li.breadcrumb-item a:hover,
li.breadcrumb-item a:focus {
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-size: 1.5rem;
}

.breadcrumb-item.active {
    font-size: 1.5rem;
    color: var(--theme-primary);
}

/* Sliders */

#new_collection .display-3 {
    color: var(--theme-primary);
}

#new_collection p {
    color: var(--theme-primary-01);
    font-weight: 300;
}

#new_collection span {
    font-weight: 700;
}

#new_collection .carousel-item img {
    height: 450px;
}

#new_collection .carousel-caption {
    width: 40%;
    position: absolute;
    margin: auto;
    font-family: var(--theme-secondary-fonts);
    display: flex !important;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    top: 0;
    bottom: 0;
}

/* Harmony */

#harmony-tab.nav-pills .nav-item {
    margin: 0 .1rem;
}

#harmony-tab.nav-pills .nav-item .nav-link {
    background-color: var(--white);
    color: var(--theme-primary-01);
    font-size: 20px;
    border-top: 8px solid;
    border-color: var(--theme-primary-01);
    border-radius: 0;
}

#harmony-tab.nav-pills .nav-item .nav-link.active,
#harmony-tab.nav-pills .show>.nav-link {
    color: var(--theme-primary);
    background-color: var(--white);
}

#harmony-tab.nav-pills .nav-item .nav-link.classic {
    border-color: #A8672C;
    width: 100%;
}

#harmony-tab.nav-pills .nav-item .nav-link.multies {
    border-color: #B79B84;
    width: 100%;
}

#harmony-tab.nav-pills .nav-item .nav-link.darks {
    border-color: #A3A19C;
    width: 100%;
}

#harmony-tab.nav-pills .nav-item .nav-link.hamptons {
    border-color: #C8C2BD;
    width: 100%;
}

#harmony-tab.nav-pills .nav-item .nav-link.yellow {
    border-color: #C4AC5E;
    width: 100%;
}

#harmony-tab.nav-pills .nav-item .nav-link.rumbled {
    border-color: #C2C1B2;
    width: 100%;
}

#harmony-tab.nav-pills .nav-item .nav-link.reclimed {
    border-color: #B49891;
    width: 100%;
}

#harmony-tabContent .tab-pane h1 {
    position: absolute;
    bottom: 40px;
    left: 220px;
}

#harmony-tabContent a {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

/* Experience gallery */

.gallery {
    overflow-y: hidden;
}

.gallery:after {
    background-color: var(--theme-grey);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: -1;
}

.gallery .card {
    position: absolute;
    left: 15px;
    z-index: 99;
    top: 35px;
}

.gallery .card .btn-secondary {
    border-radius: 20px;
    width: 130px;
    padding: 0.2rem 0.4rem;
    font-size: 16px;
    background-color: var(--white);
}

.gallery .card .btn-secondary:hover,
.gallery .card .btn-secondary:focus {
    background-color: var(--theme-primary-01);
}

.gallery ul {
    list-style: none;
    margin-bottom: 0;
}

.gallery ul li {
    margin: 0 .25rem;
}

.gallery ul li a {
    color: var(--theme-primary);
    border-bottom: 1px solid var(--white);
    padding: 0.4rem .5rem;
}

.gallery ul li a:hover,
.gallery ul li a:focus {
    text-decoration: none;
    border-bottom: 1px solid var(--theme-primary);
}

/* Navbar  */

.nav-header {
    border-bottom: 1px solid var(--theme-header-border);
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--white);
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

.megamenu-li {
    position: static;
}

.megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 1px;
    border: none;
    background-color: var(--white);
    border-radius: 0;
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

a.menu_link {
    color: var(--theme-primary-01);
    display: flex;
    flex-direction: column;
}

a.menu_link:hover,
a.menu_link:focus {
    text-decoration: none;
    color: var(--theme-primary);
}

a.menu_link img {
    height: 70px;
}

.megamenu .nav-pills .nav-link.active {
    background-color: var(--theme-grey);
    color: var(--theme-primary);
}

.megamenu .tab-content {
    border-left: 1px solid var(--theme-header-border);
}



.navbar-brand img {
    height: 66px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--theme-primary);
}

.navbar {
    padding-bottom: 0;
}

.navbar .favourite {
    padding: .25rem .5rem;
    margin: 0 .25rem;
}

.navbar .search {
    border: 1px solid var(--theme-counter-border);
    border-radius: 25px;
    padding: .25rem .65rem;
    margin: 0 .25rem;
}

.navbar .xtra_menu {
    padding-top: .45rem;
}


.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .85rem;
    padding-left: .85rem;
    font-weight: 400;
}

.navbar-collapse .navbar-nav .nav-item.active .nav-link {
    color: var(--theme-link-hover);
    /* border-top: 1px solid var(--theme-header-border);
    border-left: 1px solid var(--theme-header-border);
    border-right: 1px solid var(--theme-header-border); */
}

.megamenu-li .megamenu .nav-pills .nav-link.mega-tab-link {
    text-align: left;
    padding: 1rem;
    border: none;
    border-radius: 0;
    margin-bottom: 1rem;
}

.navbar-form .form-control {
    border: 0;
}

.input-group {
    border-radius: 20px;
    background-color: transparent;
    overflow: hidden;
    border: 1px solid var(--theme-counter-border);
}

.navbar-form .input-group-text {
    background-color: transparent;
    border: 0;
    padding-left: 0;
}

/* Inspiration */

.inspiration-section {
    position: relative;
}

.inspiration-section .arrow_overlay {
    position: absolute;
    z-index: 999;
    width: 200px;
    right: -15px;
    top: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
}

.inspiration-section .arrow_overlay a {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

/* Accordion */

#faqs .card-header,
#faqs .card {
    background-color: var(--white);
    box-shadow: none;
    border-bottom: 1px solid var(--white);
    border-top: 1px solid var(--theme-primary);
}

#faqs .card-header,
#faqs .card-body {
    padding: 1rem;
}

#faqs .card-body {
    padding-left: 2rem;
    padding-right: 8rem;
}

#faqs .card-header .btn {
    padding-left: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    padding-right: 8rem;
    color: var(--theme-primary);
    position: relative;
}

#faqs .card-header .btn:hover,
#faqs .card-header .btn:focus,
#faqs .card-header .btn:active {
    text-decoration: none;
}

#faqs .card-header .btn img {
    transform: rotate(360deg);
    height: 26px;
    position: absolute;
    top: 15px;
    right: 0;
}

#faqs .card-header .btn.collapsed img {
    /* transform: rotate(180deg); */
    height: 26px;
    position: absolute;
    right: 0;
}

/* Video */

.video-box img {
    position: relative;
    border-radius: 16px;
}

.video-box a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 80px;
    height: 80px;
    margin: auto;
}

.quote {
    line-height: 40px;
}

/* Advance Search */

.adv_search .selct_option {
    background: var(--theme-grey);
    border: 1px solid var(--theme-primary-02);
    border-radius: 12px;
    padding: 0.5rem 1rem;
}

.adv_search .selct_option.selected {
    background: var(--white);
}

.adv_search .dropdown {
    background: var(--theme-grey);
    border: 1px solid var(--theme-primary-02);
    border-radius: 12px;
}


.filter .dropdown {
    background: var(--white);
    border: 1px solid var(--theme-grey);
    border-radius: 2px;
}

.store_search_filter .dropdown {
    background: var(--white);
    border: 1px solid var(--theme-primary-02);
    border-radius: 12px;
}

.filter .dropdown-item.active,
.filter .dropdown-item:active,
.adv_search .dropdown-item.active,
.adv_search .dropdown-item:active {
    color: var(--theme-primary);
    background-color: var(--theme-grey);
}

.adv_search .dropdown-item:focus,
.adv_search .dropdown-item:hover,
.filter .dropdown-item:focus,
.filter .dropdown-item:hover {
    color: var(--theme-primary);
    background-color: var(--theme-grey);
}

.adv_search .dropdown .btn {
    width: 100%;
    text-align: left;
}

.adv_search .dropdown-menu.show {
    width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.adv_search .dropdown-toggle::after {
    background: url(../images/arrow-down.svg) no-repeat;
    border: none;
    height: 18px;
    width: 18px;
    background-size: contain;
    right: 15px;
    position: absolute;
    top: 30%;
}

.adv_search .btn {
    font-size: 1rem;
    border-radius: 40px;
    padding: 0.35rem 1rem;
}

.adv_search .btn.btn-primary {
    background-color: var(--theme-primary-01);
    border-color: var(--theme-primary-01);
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

.adv_search .btn.btn-primary:hover,
.adv_search .btn.btn-primary:focus,
.adv_search .btn.btn-primary:active {
    background-color: var(--theme-primary-01);
    border-color: var(--theme-primary-01);
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.adv_search .btn.btn-secondary {
    background-color: var(--theme-counter-border);
    color: var(--theme-primary);
    border: none;
}

.adv_search .btn.btn-secondary:hover,
.adv_search .btn.btn-secondary:focus,
.adv_search .btn.btn-secondary:active {
    background-color: var(--theme-counter-border);
    color: var(--theme-primary);
    border: none;
}

.store_listing figcaption {
    background-color: var(--white);
    padding: 0;
}

.store_card:hover {
    -webkit-box-shadow: 0px 0 10px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0 10px 0px rgb(0 0 0 / 15%);
    box-shadow: 0px 0 10px 0px rgb(0 0 0 / 15%);
}

ul.store_tag {
    margin: 0;
    list-style: square;
}

.store_tag {
    font-weight: 700;
    color: var(--theme-primary-01);
}

/* Checkbox */

input[type=checkbox] {
    accent-color: var(--theme-primary);
}


/* All Bricks */

.allbricks_cat_img {
    width: 120px;
    position: absolute;
    right: 0;
    z-index: 1;
}

/* Fixed Header on Scroll */

.sticky {
    position: sticky;
    z-index: 999;
    top: 0;
    width: 100%;
    background-color: var(--white);
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

iframe {
    filter: grayscale(1);
}

.quick_links {
    position: relative;
    margin-bottom: -30px;
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.10);
}

.query_form .form-control {
    background-color: var(--theme-grey);
    border: none;
    padding-left: 0;
    border-radius: 0;
    font-size: 1.25rem;
    color: var(--theme-primary);
    border-bottom: 1px solid var(--theme-primary);
}

.query_form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.query_form .form-control-file {
    background-color: var(--theme-grey);
    border: none;
    padding-left: 0;
    border-radius: 0;
    font-size: 1.25rem;
    color: var(--theme-primary);
    border-bottom: 1px solid var(--theme-primary);
    padding: .22rem 0;
}

.quick_links a:after {
    content: "|";
    padding-left: 1rem;
}

.quick_links a:last-child:after {
    content: "";
}

.quick_links a {
    font-size: 1.15rem;
    padding: 0 1rem 0 0;
}

.quick_location_filter {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--theme-primary);
}

.quick_location_filter .form-control {
    border: none;
}

.quick_location_filter img {
    height: 24px;
}

.spe_heading {
    width: 100%;
    background: #e9e9e9;
    color: white;
}

.projects_block .spe_heading {
    margin-top: 3.5rem;
    padding-left: 1.5rem;
}

.projects_block .white_overlay {
    position: absolute;
    z-index: 999;
    width: 200px;
    right: -15px;
    top: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
}

.store_logohead img {
    height: 200px;
    width: auto;
}

.respurce_block figure img {
    position: relative;
    z-index: 1;
}

.respurce_block figure figcaption {
    background-color: var(--theme-grey);
    position: absolute;
    right: 0;
    width: 40%;
    height: 26%;
    display: flex;
    align-items: end;
    justify-content: start;
    padding-right: .75rem;
}

.respurce_block figure figcaption a {
    position: relative;
    z-index: 9;
}

.brochure-carousel {
    position: relative;
    margin-top: -130px;
}

.catalouges-section .figure {
    border: 2px solid var(--theme-header-border);
    padding: 2rem .5rem;
}

.img_options {
    position: absolute;
    left: 0;
    transition: bottom .1s linear;
}

.catalouges-section figure .img_options {
    bottom: -40px;
}

.catalouges-section figure:hover .img_options {
    bottom: 0px;
}

.blog_block:after {
    /* background-color: var(--theme-grey);
    content: ""; */
    height: 100%;
    width: 35%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.blog_block h2 {
    color: var(--theme-counter-border);
    position: relative;
    top: 120px;
    font-weight: 800;
    transform: rotate(270deg);
}

.event-date {
    width: auto;
    position: absolute;
    left: 16px;
    top: 16px;
}

.lt_block:after {
    /* content: ""; */
    position: absolute;
    left: 0;
    top: 0;
    width: 30vw;
    height: 70%;
    z-index: -1;
    /* background-color: var(--theme-grey); */
}

.rt_block:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 30vw;
    height: 70%;
    z-index: -1;
    background-color: var(--theme-grey);
}

.quick_tabs .action {
    width: 80px;
    height: 160px;
    position: absolute;
    bottom: 0;
    right: -90px;
}

.quick_tabs .action img {
    height: 36px;
    width: auto;
}

.quick_tabs .nav-pills .nav-link {
    text-align: left;
    background-color: var(--white);
    color: var(--theme-primary-02);
    font-size: 1.25rem;
    overflow: hidden;
}

.quick_tabs .nav-pills .nav-link.active,
.quick_tabs .nav-pills .show>.nav-link {
    position: relative;
    text-align: left;
    background-color: var(--white);
    color: var(--theme-primary);
    font-size: 2.15rem;
}

.quick_tabs .nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    background-color: var(--theme-primary);
    height: 2px;
    width: 100%;
    top: 50%;
    margin-left: 10px;
}

.quick_tabs .thumb-listing a {
    padding: .5rem;
    border: 1px solid var(--theme-counter-border);
}

.quick_tabs .thumb-listing a img {
    height: 150px;
}

.quick_tabs .thumb-listing a:hover,
.quick_tabs .thumb-listing a.active {
    border-color: var(--theme-primary);
}

.quick_tabs .arrow_overlay {
    position: absolute;
    width: 121px;
    right: 0px;
    top: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
    z-index: 0;
}


/* Responsive */

@media (min-width: 320px) and (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    .cta_block {
        overflow-x: hidden;
    }

    .store_logohead img {
        height: auto;
        width: auto;
    }

    .respurce_block .display-1 {
        font-size: 5rem;
    }

    .brochure-carousel {
        position: relative;
        margin-top: -70px;
    }

    .quick_tabs .action {
        right: 0;
    }

    .blog_block h2 {
        top: 0;
        transform: inherit;
    }

    .navbar-brand img {
        height: 55px;
    }

    .store_card .text-right {
        text-align: left !important;
    }

    .navbar-brand {
        position: unset;
    }

    .counter_section {
        top: 0;
    }

    .hues_section {
        background: none;
        background-color: var(--theme-grey);
    }

    #harmony-tab.nav-pills .nav-item {
        width: 100%;
    }

    #harmony-tabContent .tab-pane h1 {
        position: unset;
    }

    #harmony-tabContent a {
        position: absolute;
        right: 0px;
        bottom: 0px;
    }

    #harmony-tabContent a img {
        height: 50px;
    }

    .impression-section .set2,
    .impression-section .set1,
    .impression-section .set3 {
        width: 100%;
        height: auto;
    }

    .gallery .card {
        position: unset;
    }

    .footer_social p {
        text-align: center;
    }

    .newsletter form {
        width: 100%;
    }

    .newsletter form .btn {
        margin-bottom: 0;
        margin-top: 0;
    }

    #new_collection .display-3 {
        font-size: 1.75rem;
    }

    .projects_block .spe_heading {
        padding-left: 0;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    #new_collection .carousel-caption {
        width: 50%;
        bottom: 0;
        top: 0;
        padding: 1rem;
    }

    #new_collection .carousel-item img {
        height: 140px;
    }

    #new_collection .btn-secondary {
        font-size: 14px;
    }

    #faqs .card {
        margin-bottom: 1rem;
    }

    #faqs .card-header,
    #faqs .card-body {
        padding: 0;
        padding-left: 1.25rem;
    }

    #faqs .card-body {
        padding-bottom: 1rem;
    }

    #faqs .card-header .btn {
        padding-left: 0;
        padding-right: 3rem;
        font-size: 1.25rem;
    }

    #intextgallery .carousel-item img {
        height: 220px;
    }

    .megamenu .tab-content {
        border-left: none;
    }

    .navbar-collapse .navbar-nav .nav-item.active .nav-link {
        border-top: none;
        border-left: none;
        border-right: none;
    }

    #intextgallery .carousel-control-prev {
        left: 0;
    }

    #intextgallery .carousel-control-next {
        right: 0;
    }

    .adv_search .selct_option {
        width: 100%;
    }

    .right-overlay-img,
    .left-overlay-img {
        position: static;
    }

    #history-tab.nav-pills .nav-link:after {
        height: 15px;
        width: 15px;
        top: -7px;
    }

    .all_bricks .allbricks_cat_img {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .footer_head {
        font-size: 1.5rem;
    }

    .gallery .card {
        top: 0;
    }

    .gallery .card p {
        font-size: 12px;
    }

    #harmony-tab.nav-pills .nav-item {
        width: 90px;
    }

    #harmony-tab.nav-pills .nav-item .nav-link {
        font-size: 16px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }

    #new_collection .carousel-item img {
        height: 300px;
    }

    #new_collection .display-3 {
        font-size: 3.5rem;
    }

    #new_collection .carousel-caption {
        top: 0;
        bottom: 0;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-image: none;
    }
}

.display-4 {
    font-size: 3.5rem;
}

@media (max-width: 1200px) {
    .display-4 {
        font-size: calc(1.525rem + 3.3vw);
    }
}

@media (max-width: 991px) {
    .gallery .card {
        position: unset !important;
        margin-bottom: 2rem;
    }

    .gallery:after {
        display: none !important;
    }

    .gallery .store_list .store-name-26 {
        display: block;
        background-color: #efefef;
        margin: 5px;
        padding: 10px 5px;
        border-radius: 4px;
        color: var(--theme-primary);
        font-weight: 500 !important;
    }
}

/* Harmony Section Zoom */
.harmony_section .set1 {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.harmony_section .set1 img {
    transition: transform 0.5s ease;
}

.harmony_section .set1:hover img {
    transform: scale(1.1);
}


/* Inspirations Section Hover Effect */
.inspiration-section .card .col-md-4 {
    overflow: hidden;
}

.inspiration-section .card .col-md-4 img {
    transition: transform 0.5s ease;
}

.inspiration-section .card:hover .col-md-4 img {
    transform: scale(1.1);
}

/* Brick Impressions Section Zoom */
.impression-section .set1 img,
.impression-section .set2 img,
.impression-section .set3 img {
    transition: transform 0.5s ease;
}

.impression-section .set1:hover img,
.impression-section .set2:hover img,
.impression-section .set3:hover img {
    transform: scale(1.1);
}

/* Custom Grid for 5 items per row */
@media (min-width: 768px) {
    .col-md-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Product Card Styling */
.product_card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product_img {
    text-align: center;
    margin-bottom: 15px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 10px;
}

.product_img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product_card:hover .product_img img {
    transform: scale(1.05);
}

.product_info {
    text-align: center;
}

.product_name .fc_product {
    display: block;
    color: var(--theme-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.product_name .fc_product:last-child {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--theme-primary-01);
}

.brick.d-flex {
    justify-content: center;
    margin-top: 10px;
}