/* ###ROOT### */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --text: #3C3B41;
    --back-to-top: #161616;
    --color-primary: #107DDA;
    --color-secondary: #FD5240;
    --bottombar-bg: #004886;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: var(--color-primary);
}

::selection {
    color: var(--bg);
    background-color: var(--color-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:focus, input:active,
select:focus, select:active,
textarea:focus, textarea:active {
    box-shadow: none !important;
    outline: none !important;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

.dropdown-toggle::after {
    display: none !important;
}

/* ###LENIS### */

/* html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
} */

/* ###FONTS### */

@font-face {
    font-family: 'ClashDisplay-Extralight';
    src: url('../fonts/ClashDisplay-Extralight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'ClashDisplay-Light';
    src: url('../fonts/ClashDisplay-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'ClashDisplay-Regular';
    src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'ClashDisplay-Medium';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'ClashDisplay-Semibold';
    src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'ClashDisplay-Bold';
    src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay-Variable';
    src: url('../fonts/ClashDisplay-Variable.woff2') format('woff2');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}

/* ###OWL### */

.owl-dot, .owl-next, .owl-prev {
    display: none !important;
}

/* ###COMMON### */

body {
    font-family: "Raleway", serif;
}

.custom-container {
    padding: 1rem 1.5rem;
}

/* ###BUTTONS### */

.br-web-btn {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: background-color .5s ease;
}

.br-web-btn-primary {
    background-color: var(--color-primary);
    color: var(--bg);
}

.br-web-btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--bg);
}

.br-web-btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.br-web-btn-outline:hover {
    border: 2px solid var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--bg);
}

.br-web-btn-secondary {
    background-color: var(--color-secondary);
    color: var(--bg);
}

.br-web-btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--bg);
}

/* ###LOADER### */

.preloader {
    height: 100vh;
    width: 100%;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1600;
    top: 0;
    left: 0;
}

.loader {
    width: 48px;
    height: 48px;
    background:var(--color-primary);
    border-radius: 9px;
    --c:radial-gradient(farthest-side,#000 92%,#0000);
    --s:18px 18px;
    -webkit-mask:
        var(--c) left  4px top    4px,
        var(--c) right 4px top    4px,
        var(--c) right 4px bottom 4px,
        var(--c) left  4px bottom 4px,
        linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    -webkit-mask-repeat:no-repeat;
    animation: cu4 1.5s infinite;
}

@keyframes cu4 {
    0%    {-webkit-mask-size:0    0  ,0    0  ,0    0  ,0    0  ,auto}
    12.5% {-webkit-mask-size:var(--s),0    0  ,0    0  ,0    0  ,auto}
    25%   {-webkit-mask-size:var(--s),var(--s),0    0  ,0    0  ,auto}
    37.5% {-webkit-mask-size:var(--s),var(--s),var(--s),0    0  ,auto}
    50%   {-webkit-mask-size:var(--s),var(--s),var(--s),var(--s),auto}
    62.5% {-webkit-mask-size:0    0  ,var(--s),var(--s),var(--s),auto}
    75%   {-webkit-mask-size:0    0  ,0    0  ,var(--s),var(--s),auto}
    87.5% {-webkit-mask-size:0    0  ,0    0  ,0   0   ,var(--s),auto}
    100%  {-webkit-mask-size:0    0  ,0    0  ,0   0   ,0   0   ,auto}
}


/* ###NAVBAR### */

.br-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.br-nav-logo a img{
    height: 5rem;
    width: 5rem;
    object-fit: contain;
    object-position: center;
}

.br-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.br-nav-links a {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

.br-nav-active {
    color: var(--color-primary) !important;
    font-weight: 600 !important;
}

.underline-animation {
    position: relative;
}

.underline-animation::after {
    content: '';
    background: var(--color-primary);
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.underline-animation:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.index-nav-options {
    flex-grow: 1;
    justify-content: space-between;
}

.index-nav-logo {
    display: none;
}

.nav-highlight {
    font-weight: 700 !important;
    font-style: italic;
    color: var(--color-secondary) !important;
}

/* ###INDEX### */

.br-hero {
    min-height: calc(100dvh - 8rem);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.br-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.br-title h1 {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    font-size: 10vw;
    margin: 0;
    color: var(--color-primary);
    line-height: 10rem;
}

.br-banner {
    pointer-events: none;
    height: calc(100dvh - 18vw);
    overflow: hidden;
    border-radius: 10px;
}

.br-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.br-carousel-inner, .br-carousel-item, .br-carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.br-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.cta-message {
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    padding: .5rem 2rem;
}

.cta-message h4 {
    margin: 0;
    font-size: 2rem;
}

.cta-btn {
    font-size: 1.5rem;
    flex-grow: 1;
}

.cta-btn a {
    width: 100%;
    padding: .6rem;
}

.company-message {
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.comapny-logo img {
    height: 8rem;
    width: 8rem;
    object-fit: contain;
    object-position: center;
}

.company-text {
    width: 60%;
    text-align: center;
    font-size: 2rem;
    color: var(--text);
    font-weight: 400;
}

.index-product-desc {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-slider {
    padding: .5rem 0;
    border-block: 3px dashed var(--color-primary);
    overflow-x: hidden;
}

.slider {
    width: 100%;
    height: calc(var(--heigth-slider) + 1rem);
}

.slider-list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width-slider) * var(--slider-quant));
    position: relative;
}

.slider-item {
    height: var(--heigth-slider);
    width: var(--width-slider);
    position: absolute;
    left: 100%;
    animation: autoRun 20s linear infinite;
    animation-delay: calc( (20s / var(--slider-quant)) * (var(--item-position) - 1) - 20s) !important;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes autoRun {
    from {
        left: 100%;
    }to {
         left: calc(var(--width-slider) * -1);
     }
}

.slider:hover .slider-item {
    animation-play-state: paused !important;
}

.product-category {
    min-height: 50dvh;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-category h5 {
    margin: 0;
    color: var(--color-primary);
    text-align: center;
    font-size: 2.8rem;
    font-family: "ClashDisplay-Regular", "Raleway", serif;
    text-wrap: pretty;
}

.product-cat-container {
    display: flex;
    align-items: start;
    justify-content: start;
    overflow-x: scroll;
    gap: 1rem;
}

.product-cat-container-collapse {
    display: flex;
    align-items: start;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-cat-card {
    max-height: 15rem;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.products-cat-image {
    border: 2px solid var(--text);
    border-radius: 50vw;
    height: 12rem;
    width: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.products-cat-image:hover {
    border: 2px solid var(--color-primary);
}

.products-cat-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: opacity .5s ease;
}

/*.products-cat-image:hover > img {*/
/*    opacity: 0;*/
/*}*/

.products-cat-tag a{
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    color: var(--color-secondary);
    font-size: 1rem;
}

.section-title {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    color: var(--color-secondary);
    font-size: 2rem;
}

.index-featured-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.index-product-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem 1rem;
    flex-wrap: wrap;
}

.index-product-card {
    height: 40rem;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.index-product-image {
    border: 2px solid var(--color-primary);
    height: 85%;
    width: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.index-product-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity .5s ease;
    position: absolute;
    background: white;
}

.hover-img {
    opacity: 0;
}

/*.product-img:hover {*/
/*    opacity: 0;*/
/*    scale: .8;*/
/*    display: none;*/
/*}*/

.hover-img:hover {
    opacity: 1;
}

.index-product-info {
    display: flex;
    align-items: end;
    height: 10%;
    width: 100%;
    justify-content: space-between;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    width: 80%;
}

.product-info span {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-family: "ClashDisplay-Regular", "Raleway", serif;
}

.product-info p {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    margin: 0;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.product-btn {
    font-size: 1.2rem;
}

.product-view-more {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    margin-left: auto;
    margin-top: 1rem;
}

.product-view-more span {
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}

.product-view-more svg {
    height: 1.2rem;
    width: 1.2rem;
    object-fit: contain;
}

.product-view-more a {
    color: var(--color-primary);
}

.index-services-section {
    height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-wrapper {
    display: flex;
    align-items: center;
    height: calc(100% - 5rem);
    overflow: hidden;
    border-radius: 10px;
}

.service-card {
    height: 100%;
    width: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-image: fill 0 linear-gradient(#0001, #000);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-inline: .5rem;
    padding-bottom: 1rem;
    color: var(--bg);
    transition: width 1.5s ease;
    filter: grayscale(100%);
}

.service-card:hover {
    width: 100%;
    filter: unset;
}

.services-wrapper:hover .service-card:not(:hover) > .service-text {
    opacity: 0;
}

.service-text {
    min-height: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 1;
    transition: opacity 1s ease;
}

.service-text h6 {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    font-size: 2rem;
    margin: 0;
}

.service-text p {
    font-family: "ClashDisplay-Regular", "Raleway", serif;
    margin: 0;
    font-size: 1.2rem;
}

.index-blogs-section {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blogs-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    overflow-x: hidden;
}

.blog-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 20rem;
    border-radius: 10px;
}

.overlay {
    display: flex;
    justify-content: start;
    align-items: end;
    position: absolute;
    padding: 1rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #000000 116.62%);
    top: 0;
    opacity: 0;
    transition: 1s opacity ease;
}

.overlay a {
    position: absolute;
    bottom: -20%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transition: opacity .6s ease;
}

.overlay a h6 {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    color: var(--bg);
    font-weight: 600;
    margin: 0;
    font-size: 1.5rem;
}

.overlay a p {
    margin: 0;
    font-family: "ClashDisplay-Regular", "Raleway", serif;
    color: var(--bg);
}

.overlay:hover {
    opacity: 1;
}

.overlay:hover a {
    bottom: 5%;
    transition: 1s bottom ease;
}

.blog-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.big-thumb {
    width: 58%;
}

.small-thumb {
    width: 40%;
}

.index-testimolials-section {
    min-height: 50dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-card {
    background-color: var(--color-primary);
    color: var(--bg);
    height: 20rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
}

.card-data {
    height: 80%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-data-head h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.card-data-body p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-rating svg {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.index-contact-section {
    min-height: 50dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.index-contact-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.index-contact-form input {
    width: 48%;
    padding: .5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    flex-grow: 1;
}

.index-contact-form textarea {
    width: 100%;
    padding: .5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    flex-grow: 1;
    height: 10rem;
    resize: none;
}

.index-contact-form button {
    margin-left: auto;
    font-style: italic;
    font-weight: 800;
    font-size: 1.2rem;
    min-width: 10rem;
}

.back-to-top {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    font-size: 3rem;
    background-color: var(--back-to-top);
    color: var(--bg);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 10px;
}

/* ###PRODUCTS### */

.products-page-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-page-top {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.products-page-title {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: auto;
}

.products-page-title h1 {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    margin: 0;
    font-size: 3rem;
    color: var(--color-primary);
}

.products-page-title p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 500;
}

.products-search {
    padding: .5rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
}

.products-search input {
    height: 100%;
    width: 80%;
    flex-grow: 1;
    border: none;
    font-size: 1.2rem;
}

.products-search button svg {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.store-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.store-top {
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.card-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.card-toggle button {
    border: none;
    background: transparent;
}

.store-banner {
    border-inline: 1px solid var(--color-primary);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 70%;
    flex-grow: 1;
}

.store-banner span {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

.filter {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
}

.filter a {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.rest-product {
    position: absolute;
    bottom: -30%;
    color: var(--color-primary) !important;
    font-size: .8rem !important;
}

.store-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-filers {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: scroll;
}

.filter-chip {
    padding: .5rem;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem;
}

.filter-chip span {
    color: var(--color-primary);
    font-weight: 500;
    text-wrap: nowrap;
}

.filter-chip button {
    background: transparent;
    border: none;
}

.store-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem 1rem;
    min-height: 100dvh;
    transition: grid-template-columns 0.3s ease-in-out;
}

.card-small {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.product-card-big {
    height: 30rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: .5rem;
}

.product-card-img {
    height: 80%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 10px;
    overflow: hidden;
}

.product-card-img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.main-image {
    z-index: 1;
    opacity: 0;
    transition: opacity .5s ease, scale .8s ease;
}

.main-image:hover {
    opacity: 1;
    scale: 1.2;
}

.product-information {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-info-text {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-info-text span {
    font-size: .8rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.product-info-text p {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.product-info-cta {
    border: 3px solid var(--color-primary);
    padding: .5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-cta svg path {
    fill: var(--color-primary);
}

.store-pagination {
    margin: 1rem auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.store-pagination a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.store-pagination a img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.next-page {
    transform: rotate(180deg);
}

/* ###OFFCANVAS### */

.br-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.br-offcanvas-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.br-offcanvas-title span {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

.br-offcanvas-close {
    border: none;
    background: transparent;
}

.br-offcanvas-body {
    padding-inline: 0 !important;
    position: relative;
}

.br-accordion {
    height: 60dvh;
    overflow-y: scroll;
}

.accordion-button {
    border-block: 3px solid var(--color-primary);
    box-shadow: none !important;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    border-top: none;
}

.filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-container span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-primary);
}

.filter-container input[type=checkbox] {
    height: 1.2rem;
    width: 1.2rem;
    accent-color: var(--color-secondary);
}

.apply-filter {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-block: 1rem;
    border-radius: 0;
    font-size: 1.1rem;
}

/* ###PRODUCT-DETAILS### */

.product-detail-head {
    border: 1px solid var(--color-primary);
    padding: 1rem;
    border-radius: 20px;
    height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.product-img-container {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.product-images {
    width: 100%;
    height: 78%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 10px;
}

.product-images::after {
    position: absolute;
    top: 0;
    right: 0;
    display: var(--ds-val);
    content: "";
    height: 100%;
    width: 40%;
    background-image: var(--img-url);
    background-size: 200%;
    background-position: var(--zoom-x) var(--zoom-y);
    background-repeat: no-repeat;
    z-index: 111;
    border-radius: 20px;
    pointer-events: none;
}

.product-images img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.image-arr-product {
    display: flex;
    width: 100%;
    height: 18%;
    align-items: center;
    gap: 1rem;
}

.image-arr-product img {
    height: 100%;
    width: 23%;
    object-fit: contain;
    border-radius: 10px;
    padding: .5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.image-thumbnail:hover {
    cursor: pointer;
    outline: 2px solid var(--color-secondary);
    outline-offset: 5px;
}

.product-detail-info {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0 1rem;
    justify-content: space-between;
}

.product-info-top {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-info-cat span {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.product-info-share button svg {
    height: 1.8rem;
    width: 1.8rem;
}

.product-info-title h1 {
    color: var(--color-primary);
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    font-size: 2rem;
}

.product-info-decs p {
    font-size: 1.2rem;
    font-family: "Raleway", serif;
    font-weight: 400;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
}

.product-info-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.info-bot-op {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
}

.info-bot-op img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.info-bot-op span {
    font-size: .6rem;
    color: var(--color-secondary);
}

.product-info-bot button {
    width: 48%;
    flex-grow: 1;
}

.product-detail-body {
    margin: 1.5rem 0;
    color: var(--color-primary);
}

.product-detail-body h6 {
    font-size: 1.5rem;
}

.similar-products-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.similar-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.similar-product-top h5 {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    color: var(--color-primary);
    font-size: 1.8rem;
    margin: 0;
}

.similar-product-top a {
    margin: 0;
}

.similar-products {
    padding: 0;
    min-height: fit-content;
}

/* ###ABOUT### */

.about-section {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-heading {
    width: 80%;
    margin: auto;
}

.about-heading p {
    margin: 0;
    font-size: 1.8rem;
    font-family: "ClashDisplay-Regular", "Raleway", serif;
    color: var(--color-primary);
    text-align: center;
}

.about-banner {
    height: 30rem;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-cards {
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-card {
    background-color: var(--color-primary);
    color: var(--bg);
    padding: 1rem;
    border-radius: 10px;
    width: 40%;
    height: 20rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-card-head h3 {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    margin: 0;
}

.about-card-body p,
.about-card-body ul li {
    text-align: justify;
}

.founder-story {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 80%;
    margin: auto;
}

.founder-story-head h3 {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    margin: 0;
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.founder-story-body p {
    margin: 0;
    font-family: "ClashDisplay-Regular", "Raleway", serif;
    font-size: 1.5rem;
    color: var(--text);
}

/* ###BLOGS### */

.blogs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
    margin: auto;
}

.article-auther {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-name {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1.2rem;
}

.blog-share-btn {
    height: 2.5rem;
    width: 2.5rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-share-btn svg {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.aritcle-title {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.aritcle-title h2 {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    color: var(--color-primary);
    font-size: 2rem;
    margin: 0;
    word-spacing: 1rem;
    text-align: justify;
}

.aritcle-title p {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0;
}

.article-banner {
    height: 30rem;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.article-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.article-body {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-body p,
.article-body ul li {
    font-size: 1.2rem;
    color: var(--text);
}

.article-body h4 {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* ###BRANDS### */

.brand-page-title {
    gap: 1rem;
}

.brand-page-title h3 {
    font-style: italic;
    margin: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.brand-container {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
}

.brand-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-name, .brand-all-products {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: .5rem;
    height: 4rem;
}

.brand-name {
    border-right: 1px solid var(--color-primary);
}

.brand-all-products {
    border-left: 1px solid var(--color-primary);
}

.brand-all-products a {
    margin: 0;
    color: var(--color-secondary);
}

.brand-name span {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    font-size: 1.8rem;
    color: var(--color-secondary);
}

.brand-description {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-block: 1px solid var(--color-primary);
}

.brand-text {
    text-align: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.brand-banner {
    height: 30rem;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.brand-banner img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.brand-products {
    padding: 2rem;
    min-height: fit-content;
}

.brand-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-footer a {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    font-size: 1.5rem;
    flex-grow: 1;
}

/* ###CONTACT### */

.contact-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    height: 100dvh;
    width: 100%;
}

.contact-image {
    width: 60%;
    height: 100%;
    background-image: url(../images/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-image: fill 0 linear-gradient(#0001, #000);
}

.contact-logo {
    height: 5rem;
    width: 5rem;
}

.contact-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.contact-socials {
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-ico svg{
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
    object-position: center;
}

.social span {
    color: var(--bg);
}

.contact-form-container {
    width: 40%;
    height: 100%;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.contact-form-container h1 {
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
    color: var(--color-primary);
    font-size: 2.8rem;
}

.contact-form-container p {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    overflow-y: scroll;
}

.contact-information {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact-information label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.contact-information input,
.contact-information textarea {
    padding: .5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: .5rem 0;
}

.contact-checkbox input[type=checkbox] {
    height: 1.5rem;
    width: 1.5rem;
    accent-color: var(--color-primary);
}

.contact-checkbox span {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-information button {
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 15px;
}

/* ###SUPPORTING-PAGES### */

.supporting-page-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.supporting-page-banner {
    height: 25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporting-page-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.supporting-page-data {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: auto;
}

.supporting-page-heading {
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    margin: 0;
    color: var(--color-primary);
}

.out-page-section {
    display: flex;
    align-items: start;
    justify-content: space-between;
    max-height: 100dvh;
    overflow: hidden;
}
.out-page-section > div {
    height: 100dvh;
    min-width: 50%;
    max-width: 50%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.out-page-text > div {
    width: 70%;
}
.out-page-title h2 {
    color: var(--color-primary);
    font-family: "ClashDisplay-Semibold", "Raleway", serif;
}
.out-page-desc p {
    font-size: 1.2rem;
    text-align: justify;
}
.out-page-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.out-page-btns a {
    flex-grow: 1;
}
.out-page-img {
    border-image: fill 0 linear-gradient(#0003,#000);
}
.out-page-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.out-page-img a {
    position: absolute;
    top: 2%;
    right: 2%;
}
.out-page-img a img {
    height: 4rem;
    width: 4rem;
    object-fit: contain;
    object-position: center;
}

.supporting-page-subheading {
    color: var(--color-primary) !important;
}

.supporting-page-data p,
.supporting-page-data ul li {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    color: var(--text);
}

.supporting-page-data h6 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-primary);
}

/* ###FOOTER### */

.footer-top {
    background-color: var(--color-primary);
    color: var(--bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.footer-title {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-title h1 {
    margin: 0;
    font-family: "ClashDisplay-Medium", "Raleway", serif;
    font-size: 5rem;
}

.footer-title p {
    margin: 0;
    font-size: 1.5rem;
}

.footer-data {
    height: 80%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.footer-reach {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reach {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reach-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reach-logo svg {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.reach-text a {
    color: var(--bg);
    font-size: 1rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links a {
    color: var(--bg);
    font-size: 1rem;
}

.footer-bot {
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bg);
    border-radius: 10px;
    margin-top: 1rem;
    font-size: .8rem;
}

.foot-support-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.foot-support-links a {
    color: var(--bg);
    font-size: .8rem;
}

.foot-underline::after {
    background-color: var(--bg);
}

/* ###MODAL### */

.share-modal-header {
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-modal-header h1 {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: "ClashDisplay-Medium", "Raleway", serif;
}

.modal-close-btn {
    padding: .2rem;
    border-radius: 50vw;
    background-color: var(--color-secondary);
    border: none;
}

.share-modal-body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.share-modal-body span {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.share-modal-url {
    display: flex;
    align-content: center;
    gap: 1rem;
}

.share-modal-url input {
    flex-grow: 1;
    padding: .5rem;
    font-size: .8rem;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
}

.share-modal-url button {
    background-color: var(--color-secondary);
    border: none;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2rem;
    border-radius: 50vw;
}

.share-modal-url button svg {
    height: 80%;
    width: 80%;
    object-fit: contain;
}

.enquiry-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enquiry-modal-body span {
    color: var(--color-primary);
}

.enquiry-from {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ###NOT-DISPLAY### */

.br-mob-nav-options {
    display: none;
}

.mob-cta-message {
    display: none;
}

.mobile-bottom-bar {
    display: none;
}

.contact-nav {
    display: none;
}

@media only screen and (max-width: 767px) and (min-width: 280px) {
    /* ###COMMON### */

    .custom-container {
        padding: 1rem .5rem;
    }

    /* ###NAVBAR### */

    .br-nav-links {
        display: none;
    }

    .br-nav-logo {
        display: flex !important;
    }

    .br-nav-logo a img {
        height: 4rem;
        width: 4rem;
    }

    .br-mob-nav-options {
        display: block;
    }

    .br-mob-nav-btn {
        border: none;
        background: transparent;
    }

    .br-mob-nav-btn svg {
        height: 2rem;
        width: 2rem;
        object-fit: contain;
    }

    .br-web-btn {
        padding: .5rem;
    }

    /* ###INDEX### */

    .br-title h1 {
        line-height: unset;
    }

    .br-banner {
        height: 50dvh;
    }

    .br-carousel {
        height: 100%;
    }

    .br-cta {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-message {
        overflow: hidden;
        padding: .5rem;
    }

    .cta-message h4 {
        display: none;
    }

    .mob-cta-message {
        display: block;
        font-size: 1.5rem;
        color: var(--text);
        font-weight: 500;
    }

    .company-message,
    .index-featured-products,
    .index-services-section,
    .index-blogs-section,
    .index-testimolials-section,
    .index-contact-section,
    .index-product-desc {
        height: fit-content;
        margin: 3rem auto;
    }

    .index-product-desc {
        gap: 2rem;
    }

    .comapny-logo img {
        height: 5rem;
        width: 5rem;
    }

    .company-text {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
    }

    .product-category {
        margin: 0;
        width: 100%;
        padding: .5rem;
    }

    .product-category h5 {
        font-size: 1.5rem;
    }

    /*.product-cat-container {*/
    /*    flex-wrap: wrap;*/
    /*    gap: 1rem;*/
    /*}*/

    .product-cat-card {
        width: 45%;
        height: fit-content;
        gap: 1rem;
    }

    .products-cat-tag a {
        font-size: .8rem;
        text-align: center;
    }

    .products-cat-image {
        height: 8rem;
        width: 8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .index-product-card {
        height: 30rem;
        width: 100%;
    }

    .product-info span {
        font-size: .8rem;
    }

    .product-info {
        flex-grow: 1;
        padding: 0;
    }

    .product-info p {
        font-size: 1rem;
    }

    .services-wrapper {
        flex-direction: column;
        border-radius: 0;
    }

    .service-card {
        width: 100%;
        height: 25rem;
    }

    .big-thumb, .small-thumb {
        width: 100%;
    }

    .overlay {
        opacity: 1;
    }

    .overlay a {
        bottom: 5%;
    }

    .back-to-top {
        font-size: 1.5rem;
        padding: .5rem 1rem;
    }

    /* ###STORE### */

    .products-page-title h1 {
        font-size: 2rem;
    }

    .products-page-title,
    .products-page-top,
    .article-body {
        width: 100%;
    }

    .products-page-title p {
        font-size: 1rem;
    }

    .products-search {
        padding: .5rem;
    }

    .store-top {
        height: fit-content;
    }

    .card-toggle,
    .filter  {
        width: fit-content;
        gap: .5rem;
        padding: 1rem .5rem;
    }

    .card-toggle button svg {
        height: 1.5rem;
        width: 1.5rem;
        object-fit: contain;
    }

    .store-banner span,
    .article-body h4 {
        font-size: 1.2rem;
    }

    .store-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .card-small {
        grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)) !important;
    }

    .product-card-big {
        height: 15rem;
    }

    .filter a {
        font-size: 1rem;
    }

    .filter-chip {
        padding: .2rem .5rem;
    }

    .filter-chip span {
        font-size: .8rem;
    }

    .filter-chip button img {
        height: 1.2rem;
        width: 1.2rem;
        object-fit: contain;
    }

    .product-detail-head {
        flex-direction: column;
        gap: 1rem;
        height: fit-content;
        padding: .5rem;
    }

    .product-img-container {
        width: 100%;
    }

    .product-detail-info {
        width: 100%;
        padding: 0;
    }

    .product-images::after {
        top: 40%;
        height: 15rem;
        width: 100%;
    }

    .product-info-title h1 {
        font-size: 1.8rem;
    }

    .product-info-decs p {
        font-size: 1rem;
    }

    .product-info-bottom {
        margin-top: 1rem;
    }

    .info-bot-op img {
        height: 1.5rem;
        width: 1.5rem;
    }

    .info-bot-op span {
        text-align: center;
    }

    .similar-product-top h5 {
        font-size: 1.2rem;
    }

    .product-info-text p {
        font-size: 1rem;
    }

    .product-info-cta svg {
        height: 1.2rem;
        width: 1.2rem;
    }

    .product-images {
        height: 20rem;
    }

    .image-arr-product img {
        height: 5rem;
    }

    /* ###BRANDS### */

    .brand-page-title h3 {
        font-size: 1.2rem;
    }

    .brand-heading {
        flex-direction: column;
        align-items: unset;
        justify-content: unset;
    }

    .brand-name, .brand-all-products {
        flex-direction: column;
        align-items: unset;
        justify-content: unset;
        width: 100%;
        padding: .5rem;
        height: fit-content;
        border: none !important;
    }

    .brand-description {
        flex-direction: column-reverse;
    }

    .brand-description, .brand-products {
        padding: .5rem;
    }

    .brand-text {
        text-align: justify;
        font-size: 1rem;
    }

    /* ###ABOUT### */

    .about-heading {
        width: 100%;
    }

    .about-heading p {
        font-size: 1rem;
    }

    .about-banner,
    .article-banner,
    .brand-banner {
        height: 20rem;
    }

    .about-cards {
        flex-direction: column;
    }

    .about-card,
    .article-header {
        width: 100%;
        height: fit-content;
    }

    .founder-story {
        width: 100%;
    }

    .founder-story-head h3 {
        font-size: 2rem;
    }

    .founder-story-body p,
    .brand-footer a {
        font-size: 1rem;
    }

    /* ###BLOGS### */

    .blog-share-btn {
        height: 1.5rem;
        width: 1.5rem;
    }

    .article-name {
        gap: .5rem;
        font-size: 1rem;
    }

    .aritcle-title h2 {
        font-size: 1.8rem;
        word-spacing: unset;
        text-align: center;
        margin-bottom: 1rem;
    }

    .aritcle-title p {
        font-size: 1rem;
        text-align: center;
    }

    /* ###CONTACT### */

    .contact-container {
        height: fit-content;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .contact-form-container {
        width: 100%;
        height: 100%;
        padding: .5rem;
        gap: 1.5rem;
    }

    .contact-form-container h1 {
        font-size: 1.5rem;
    }

    .contact-nav {
        display: flex;
    }

    .contact-form-container p {
        font-size: 1rem;
    }

    .contact-form {
        gap: 1rem;
        overflow-y: scroll;
    }

    .contact-image {
        width: 100%;
        height: 80dvh;
    }

    /* ###SUPPORTING-PAGES### */

    .supporting-page-banner {
        height: 5rem;
    }

    .supporting-page-data {
        width: 100%;
        padding: .5rem;
    }

    .supporting-page-heading {
        font-size: 1.5rem;
    }

    .supporting-page-subheading {
        color: var(--color-primary) !important;
    }

    .supporting-page-data p,
    .supporting-page-data ul li {
        font-size: 1rem;
    }

    .supporting-page-data h6 {
        font-size: 1.2rem;
    }

    .out-page-section > div {
        max-width: 100% !important;
    }
    .out-page-img {
        display: none !important;
    }
    .out-page-text > div {
        width: 90% !important;
    }

    /* ###FOOTER### */

    .footer-title h1 {
        font-size: 3rem;
    }

    .reach-logo svg {
        height: 1.2rem;
        width: 1.2rem;
    }

    .footer-title p,
    .reach-text a,
    .article-body p, .article-body ul li {
        font-size: 1rem;
    }

    .footer-links,
    .foot-support-links {
        display: none;
    }

    .foot-copyright {
        flex-grow: 1;
        text-align: center;
    }

    /* ###MOBILE-BOTTOM-BAR### */

    .mobile-bottom-bar {
        position: sticky;
        bottom: 0;
        width: 100%;
        z-index: 9;
        background-color: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .8rem .5rem;
        gap: .5rem;
    }

    .mobile-bottom-bar a {
        display: flex;
        flex-direction: column;
        gap: .2rem;
        align-items: center;
        width: 23%;
    }

    .mobile-bottom-bar a svg {
        height: 1.8rem;
        width: 1.8rem;
        object-fit: contain;
        object-position: center;
    }

    .mobile-bottom-bar a span {
        color: var(--bottombar-bg);
        font-size: .8rem;
        font-weight: 600;
    }

    .mob-op-active > svg path {
        fill: var(--bg) !important;
    }

    .mob-op-active > span {
        color: var(--bg) !important;
    }

    /* ###MODAL### */

    .share-modal-header h1 {
        font-size: 1.2rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

}
@media only screen and (max-width: 767px) and (min-width: 550px) {
    .index-product-card {
        height: 25rem;
        width: 48%;
    }

    .blog-thumb {
        height: 10rem;
        width: 48%;
    }

    .store-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .card-small {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }

    .supporting-page-banner {
        height: 10rem;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {

    .custom-container {
        padding: 1rem .5rem;
    }

    .br-nav-logo a img {
        height: 2.5rem;
        width: 2.5rem;
    }

    .br-nav-links {
        gap: 1.5rem;
    }

    .br-hero {
        min-height: fit-content;
    }

    .br-banner {
        height: 50dvh;
    }

    .br-carousel {
        height: 100%;
    }

    .cta-message {
        overflow: hidden;
        padding: .5rem;
    }

    .cta-message h4 {
        display: none;
    }

    .mob-cta-message {
        display: block;
        font-size: 1.5rem;
        color: var(--text);
        font-weight: 500;
    }

    .cta-btn a {
        width: 100%;
        text-wrap-mode: nowrap;
    }

    .company-message,
    .index-featured-products,
    .index-services-section,
    .index-blogs-section,
    .index-testimolials-section,
    .index-contact-section,
    .index-product-desc,
    .product-category {
        min-height: fit-content;
        height: fit-content;
        margin: 3rem auto;
    }

    .company-text {
        width: 100%;
    }

    /*.product-cat-container{*/
    /*    flex-wrap: wrap;*/
    /*    gap: 1rem;*/
    /*}*/

    .product-cat-card {
        width: 30%;
        gap: 1rem;
    }

    .index-product-card {
        height: 30rem;
    }

    .services-wrapper {
        flex-direction: column;
        gap: 1rem;
        border-radius: 0;
    }

    .service-card {
        width: 100%;
        height: 25rem;
    }

    .blog-thumb {
        flex-grow: 1;
    }

    .big-thumb {
        width: 57%;
    }

    .products-page-top,
    .founder-story {
        width: 100%;
    }

    .card-toggle, .filter {
        width: fit-content;
    }

    .about-heading {
        width: 100%;
        margin: auto;
    }

    .founder-story-head h3 {
        font-size: 1.5rem;
    }

    .about-card {
        width: 48%;
        height: 28rem;
        flex-grow: 1;
    }

    .about-heading p, .founder-story-body p {
        font-size: 1.2rem;
    }

    .contact-form-container {
        width: 60%;
        padding: 1rem;
    }

    .product-detail-head {
        flex-direction: column;
        gap: 1rem;
        height: fit-content;
        padding: .5rem;
    }

    .product-img-container {
        width: 100%;
    }

    .product-detail-info {
        width: 100%;
        padding: 0;
    }

    .product-images::after {
        top: 65%;
        height: 15rem;
        width: 100%;
    }

    .article-header, .supporting-page-data {
        width: 90%;
    }

    .aritcle-title h2 {
        text-align: center;
    }

    .out-page-section {
        flex-direction: column-reverse;
    }
    .out-page-section > div {
        max-width: 100%;
        min-width: 100%;
    }
    .out-page-img {
        height: 70dvh !important;
    }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .company-message,
    .index-featured-products,
    .index-services-section,
    .index-blogs-section,
    .index-testimolials-section,
    .index-contact-section,
    .index-product-desc,
    .product-category {
        min-height: fit-content;
        height: fit-content;
        margin: 3rem auto;
    }

    .br-hero {
        min-height: fit-content;
    }

    .br-banner {
        height: 50dvh;
    }

    .cta-message {
        overflow: hidden;
        padding: .5rem;
    }

    .cta-message h4 {
        display: none;
    }

    .mob-cta-message {
        display: block;
        font-size: 1.5rem;
        color: var(--text);
        font-weight: 500;
    }

    .cta-btn a {
        text-wrap: nowrap;
    }

    .company-text {
        width: 80%;
    }

    .product-cat-card {
        height: fit-content;
        width: 20%;
        display: flex;
        text-align: center;
        gap: 1rem;
    }

    .products-cat-image {
        height: 10rem;
        width: 10rem;
    }

    .index-product-card {
        height: 30rem;
    }

    .service-card {
        height: 25rem;
    }

    .service-text {
        min-height: 80%;
    }

    .service-text h6 {
        font-size: 1.5rem;
    }

    .products-page-top {
        width: 100%;
    }

    .about-card {
        width: 50%;
        height: 22rem;
    }

    .contact-form-container {
        padding: 1rem;
        width: 45%;
    }

    .contact-form-container h1 {
        font-size: 2.2rem;
    }

    .contact-form-container p {
        font-size: 1rem;
    }

    .article-header {
        width: 80%;
    }

    .aritcle-title h2 {
        text-align: unset;
    }

    .product-images::after {
        top: 10%;
        height: 80%;
    }

    .product-detail-head {
        height: fit-content;
    }

    .info-bot-op img {
        height: 2rem;
        width: 2rem;
    }

    .info-bot-op span {
        text-align: center;
    }

    .product-info-bot button {
        text-wrap: nowrap;
    }

    .out-page-section {
        flex-direction: column-reverse;
    }
    .out-page-section > div {
        max-width: 100%;
        min-width: 100%;
    }
    .out-page-img {
        height: 70dvh !important;
    }
}
@media only screen and (max-width: 1450px) and (min-width: 1200px) {
    .br-hero {
        min-height: fit-content;
    }

    .br-banner {
        height: 50dvh;
    }

    .cta-btn a {
        text-wrap: nowrap;
    }

    .cta-message h4 {
        font-size: 1.5rem;
    }

    .store-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    }

    .card-small {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    }
}
@media only screen and (max-width: 1750px) and (min-width: 1451px) {
    .store-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .card-small {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    }
}
@media only screen and (max-width: 1950px) and (min-width: 1751px) {
    .store-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .card-small {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    }
}
@media only screen and (min-width: 1950px) {

    header, main, footer {
        width: 80%;
        margin: auto;
    }

    .br-title h1 {
        font-size: 8vw;
    }

    .brand-slider {
        mask: linear-gradient(90deg, transparent, var(--bg) 10%, var(--bg) 90%, transparent);
        -webkit-mask: linear-gradient(90deg, transparent, var(--bg) 10%, var(--bg) 90%, transparent);
    }

    .store-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    }

    .card-small {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    }
}
