.wow {
    visibility: hidden;
}

@-webkit-keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade_top {
    -webkit-animation-name: fade_top;
    animation-name: fade_top;
}

.swiper-pagination-progressbar {
    background: rgb(0 0 0 / 3%);
}

@-webkit-keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

@keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

.slide_left {
    -webkit-animation-name: slide_left;
    animation-name: slide_left;
}

@-webkit-keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

@keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

.slide_right {
    -webkit-animation-name: slide_right;
    animation-name: slide_right;
}

.title-font-family {
    font-family: "Bricolage Grotesque";

    font-style: normal;
    font-weight: bold;

}


@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/poppins/Poppins-Black.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* colors */
    --primary-color: #000000;
    --secondary-color: #FF003C;
    --green-color: #009439;
    --black-color: #000000;
    --color-black: #000000;
    --white-color: #FFFFFF;
    --pure-black-color: #231f1f;
    --highlight-color: #e1e4e8;
    --background-smoke: #fafbfc;
    --background-gray: #F5F5F5;
    --secondary-highlight-color: #0366D6;
    /* font-sizes */
    --banner-title-font-size: 4rem;
    --section-title-font-size: 2.375rem;
    --section-subtitle-font-size: 1.25rem;
    --font-size-2rem: 2rem;
    --font-size-25rem: 2.5rem;
    --mini-title: 1.6rem;
    --small-content-font: 1.5rem;
    --paragraph-font-size: 1.25rem;
    --content-font-size: 1.125rem;
    --content-small-font: 1rem;
    --link-font-size: 1rem;
    --link-font-size-small: 0.8rem;
    /* font-families */
    --light-font-family: "Poppins-Light";
    --regular-font-family: "Poppins-Regular";
    --title-font-family: "Poppins-Bold";
    --medium-font-family: "Poppins-Medium";
    --semibold-font-family: "Poppins-SemiBold";
    --bold-font-family: "Poppins-Bold";
    --black-font-family: "Poppins-Black";
    /* other */
    --common-transition: all 0.6s ease;
    --web-border-radius: 0.625rem;
    --mobile-border-radius: 0.6rem;
    --common-gap-size: 1rem;
    --font-size-3rem: 3rem;
    --small-gap-size: 1.5rem;
    --medium-gap-size: 3rem;
    --big-gap-size: 60px;
}

.regular-font {
    font-family: var(--regular-font-family);
}

/* Custom scrollbar for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 4px;
    /* Width of the vertical scrollbar */
    height: 4px;
    /* Height of the horizontal scrollbar */
}

/* Remove the up/down arrow buttons on the scrollbar */
::-webkit-scrollbar-button {
    display: none;
}

/* The scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background-color: transparent;
    /* Transparent background */
}

/* The draggable part of the scrollbar (thumb) */
::-webkit-scrollbar-thumb {
    background-color: var(--highlight-color);
    /* Color of the scrollbar thumb */
    border-radius: 2px;
    /* Rounded corners */
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--highlight-color);
    /* Darker color when hovered */
}

/* Custom scrollbar for Firefox */
* {
    scrollbar-width: thin;
    /* Thin scrollbar */
    scrollbar-color: var(--highlight-color) transparent;
    /* Thumb color and track color */
}

.semibold-fonts {
    font-family: var(--semibold-font-family);
}

.bold-fonts {
    font-family: var(--bold-font-family) !important;
}

.medium-font,
.medium-fonts {
    font-family: var(--medium-font-family) !important;
}

.black-color-bg {
    color: var(--black-color);
    background-color: var(--black-color);
}

.pdtb5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pdtb10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pdtb15 {
    padding-top: 15px;
    padding-bottom: 15px;
}


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: var(--regular-font-family);
    color: var(--primary-color);
}

html {
    height: auto;
    font-size: 16px;
    scroll-behavior: smooth;
}

* {
    line-height: 1.2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 1.2;
    width: 100%;
}

body.no-scroll-body {
    overflow-y: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    background-color: transparent;
    color: unset;
    outline: none;
    text-decoration: none;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

a:focus,
a:hover {
    outline: 0;
    text-decoration: unset;
    color: unset;
}

img {
    max-width: 100%;
    transition: var(--common-transition);
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.relative {
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.text-center {
    text-align: center;
}

.p0 {
    padding: 0 !important;
}

.main-container-fluid {
    width: 95%;
    max-width: 113.5rem;

    margin: 0 auto;
}

.main-container {
    width: 85%;
    max-width: 113.5rem;
    margin: 0 auto;
}

.mini-container {
    width: 75%;
    max-width: 93.75rem;
    margin: 0 auto;
}

.content_accordian {
    display: none;
}

.section-padding {
    padding: 10rem 0;
}

.section-padding-half {
    padding: 60px 0;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.section-padding-four {
    padding: 4rem 0 0rem 0;
}

.section-padding-small {
    padding: 2rem 0;
}

.hover-enable {
    display: none;
}

.hover-disable {
    display: inline-block;
}

.mobile-image {
    display: none;
}

.web-image {
    display: block;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
    outline: none;
    border: none;
}

.border-radius50 {
    border-radius: 50%;
}

.visible-tab-mobile {
    display: none !important;
}



.visible-mobile-only {
    display: none !important;
}

.m0auto {
    margin: 0 auto;
}

.mlauto {
    margin-left: auto;
}

.mrauto {
    margin-right: auto;
}

.ale {
    align-items: end;
}

.als {
    align-items: start;
}

.alc {
    align-items: center;
}

.wfc {
    width: fit-content;
}

.w100 {
    width: 100% !important;
}

.h100 {
    height: 100%;
}

.j-c-sb {
    justify-content: space-between;
}

.j-c-c {
    justify-content: center;
}

.inner-flex {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flex-row {
    display: flex;
    gap: 0.5rem;
}

.inner-flex-small {
    gap: var(--small-gap-size);
}

.inner-flex-zero {
    gap: 0;
}

.inner-flex-smallest {
    gap: 0.25rem;
}

.inner-flex-medium {
    gap: var(--medium-gap-size);
}

.inner-flex-big {
    gap: var(--big-gap-size);
}

.big-gap {
    gap: var(--big-gap-size) !important;
}

.inner-flex-large {
    gap: 10rem;
}

.inner-flex-common {
    gap: var(--common-gap-size);
}

.inner-flex-center {
    text-align: center;
    align-items: center;
}

.white-color {
    color: var(--white-color) !important;
}

.black-color {
    color: var(--pure-black-color) !important;
}

.highlight-color {
    color: var(--highlight-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.secondary-highlight-color {
    color: var(--secondary-highlight-color) !important;
}

/* fonts css */

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

.banner-title h1,
.banner-title h1 span,
.banner-title h2,
.banner-title h2 span {
    font-size: var(--banner-title-font-size);
    font-family: var(--medium-font-family);
}

.banner-title-small h1,
.banner-title-small h2,
.banner-title-small h2 span {
    font-size: var(--banner-title-font-size);

}

.section-title h1,
.section-title h1 span,
.section-title h2,
.section-title h2 span {
    font-size: var(--section-title-font-size);
    /* font-family: var(--title-font-family); */
    /* font-weight: bold; */
}

.section-title h1 span,
.section-title h2 span {
    color: var(--secondary-color);
}

.section-content p,
.section-content p span {
    font-size: var(--content-font-size);
    line-height: 1.5;
}

.section-content-small p,
.section-content-small p span {
    font-size: var(--content-small-font);
    line-height: 1.5;
}

/* .section-content p span {
    color: var(--secondary-color);
} */

.section-paragraph p,
.section-paragraph p span {
    font-size: var(--paragraph-font-size);
    line-height: 1.5;
}

.section-paragraph-2rem p,
.section-paragraph-2rem p span {
    font-size: var(--font-size-2rem);
    line-height: 1.5;
}

.section-paragraph p span {
    color: var(--secondary-color);
}

.section-text p,
.section-text span,
.section-text p span {
    font-size: 1rem !important;
    line-height: 1.25;
}

.section-text p span {
    color: var(--secondary-color);
}

.section-subtitle h4,
.section-subtitle h4 span {
    font-size: var(--section-subtitle-font-size);
    font-family: var(--semibold-font-family);
    color: var(--primary-color);
}

.section-subtitle h4 span {
    color: var(--secondary-color);
}

.smallest-font p {
    font-size: 0.85rem;
}

.link-font-size a p,
.link-font-size a p span.material-symbols-outlined,
.link-font-size p {
    font-size: var(--link-font-size);
}

.master-template-button,
.brillex-button,
.mansi-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    transition: var(--common-transition);
    border-radius: 1.5rem;
    width: fit-content;
    justify-content: center;
}

.brillex-button p,
.brillex-button span,
.mansi-button p,
.mansi-button span,
.master-template-button p,
.master-template-button span {
    line-height: 1 !important;
    font-size: 1rem;
}

.catalog-button .button-style-primary:hover,
.button-style-primary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.catalog-button .button-style-primary:hover p,
.button-style-primary span,
.button-style-primary p {
    color: var(--white-color);
    transition: var(--common-transition);
    /* font-size: 1.15rem; */
}

.button-style-primary:hover {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--white-color);
    transition: var(--common-transition);
}

.button-style-primary:hover span,
.button-style-primary:hover p {
    color: var(--white-color);
    transition: var(--common-transition);
}


.button-style-secondary {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.button-style-secondary span,
.button-style-secondary p {
    color: var(--white-color);
    transition: var(--common-transition);
    /* font-size: 1.15rem; */
}

.button-style-secondary:hover {
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-secondary:hover span,
.button-style-secondary:hover p {
    color: var(--secondary-color);
    transition: var(--common-transition);
}

.button-style-green {
    border: 1px solid var(--green-color);
    background-color: var(--green-color);
}

.button-style-green span,
.button-style-green p {
    color: var(--white-color);
    transition: var(--common-transition);
    /* font-size: 1.15rem; */
}

.button-style-green:hover {
    border: 1px solid var(--green-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-green:hover span,
.button-style-green:hover p {
    color: var(--green-color);
    transition: var(--common-transition);
}


.button-style-white {
    border: 1px solid var(--white-color);
    background-color: var(--white-color);
}

.button-style-white span,
.button-style-white p {
    color: var(--primary-color);
    transition: var(--common-transition);
    /* font-size: 1.15rem; */
}

.button-style-white:hover {
    border: 1px solid var(--white-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-white:hover span,
.button-style-white:hover p {
    color: var(--white-color);
    transition: var(--common-transition);
}

/*button*/

/*button*/

.contact_btn {

    border: 1px solid var(--secondary-color);
    border-radius: 40px;
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    font-family: var(--regular-font-family);
    font-size: var(--header-font-size);
    transition: var(--common-transition);
}

.contact_btn p {
    color: var(--white-color);
    font-size: 1rem;
}

@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8, 1.8);
        opacity: 0;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    z-index: 999;
}

.whatsappbutton .circle {
    position: absolute;
    top: 0;
    left: 0;
    /* -webkit-transform: translate(-50%, -50%); */
    /* transform: translate(-50%, -50%); */
    width: 3rem;
    height: 3rem;
    background-color: #c7c8cc;
    color: #fff;
    border-radius: 50%;
    opacity: .5;
    z-index: -1;
}

.whatsappbutton .circle::after {
    background: rgba(200, 199, 204);
}

.whatsappbutton .circle::before {
    background: rgba(200, 199, 204);
    /* -webkit-animation-delay: -.5s; */
    animation-delay: -.5s;
}

.whatsappbutton .circle::after,
.whatsappbutton .circle::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    z-index: -1;
    /* -webkit-animation: 1s ease-in-out infinite grow; */
    animation: 1s ease-in-out infinite grow;
}

/* CSS STarts here */



.common-header-wrapper.webmenu_hidden .common-header-web-container {
    top: -100% !important;
}

.header-flex {
    display: flex;
    justify-content: center;
    gap: var(--small-gap-size);
    align-items: center;
    padding: 2rem 0;
}

.header-links-ul ul {
    display: flex;
    align-items: center;
    gap: var(--medium-gap-size);
}

.active_page a p {
    color: #ff003c !important;
}

.header-links-ul ul li a,
.header-links-ul ul li span,
.header-links-ul ul li p {
    color: var(--primary-color);
    font-size: 1rem;
    /* font-family: var(--title-font-family); */
    /* font-weight: bold; */
}



.header-links-ul ul li a {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--primary-color);
}

.header-logo {
    width: 5.5rem;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.nav-toggle {
    cursor: pointer;
    display: none;
}

.mob-link-font-size {
    display: none;
}

.mobile-navigation-wrapper {
    display: none;
}

.form-input-icon.form-input-icon-left {
    left: 1rem;
}

.form-title-label {
    margin-bottom: 0.5rem;
}

.form-input-icon.form-input-icon-right {
    right: 1rem;
}

.form-control-master-template {
    padding: 1rem 2rem 1rem 3.5rem;
    border: 1px solid var(--highlight-color);
    resize: none;
    background-color: var(--white-color);
    margin: 0 !important;
    outline: none;
    line-height: 1;
    font-size: 1rem;
    width: 100%;
    font-family: var(--medium-font-family);
    border-radius: 0.5rem;
}

.form-control-master-template.form-control-master-template-search {
    padding: 1rem 3.5rem 1rem 2rem;
}

.form-input-icon {
    height: 24px;
    width: 24px;
    font-size: 24px;
    line-height: 24px;
    position: absolute;
    top: 1rem;
    transform: unset;
}

.form-input-icon.form-input-icon-search {
    right: 1rem;
}

.form-control-master-template:focus,
.form-control-master-template:focus-visible {
    border-color: var(--primary-color);
}

/*header- css */
.common-header-wrapper .web-logo {
    display: block;
    width: 12rem;
}

.common-header-wrapper .common-header-web-container {
    position: fixed;
    /* background-color: var(--background-smoke); */
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    top: 0;
    border-bottom: 0px solid var(--primary-color);
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 999;
}

.common-header-wrapper .common-header-mobile-container {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
    border-bottom: 0px solid var(--primary-color);
    width: 30%;
    z-index: 99998;
}

.common-header-wrapper .header-flex.mobile-header-flex .header-links-ul ul {
    display: flex;
    align-items: flex-start;
    gap: var(--medium-gap-size);
    flex-direction: column;
}

.common-header-wrapper .header-flex.mobile-header-flex .header-links-ul {
    width: 100%;
    height: 100%;
}

.common-header-wrapper .header-flex.mobile-header-flex {
    background-color: #fff;
    padding: 1rem;

    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0;
    overflow: scroll;
    scrollbar-width: none;
    right: -100%;
    width: 30%;
    height: 100vh;
    z-index: 99;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 80%;
    height: 100svh;
    overflow: scroll;
    scrollbar-width: none;
    z-index: 99;
}

.common-header-wrapper .header-flex.show-mobile-menu {
    /* transform: translateX(0); */
    right: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100svh;
    overflow: scroll;
    width: 80%;
    background-color: #ffffff;
    padding: 1.5rem;
    z-index: 99;
}

.common-header-wrapper .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--background-smoke);
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.common-header-wrapper .mobile-logo img {
    width: 5rem;
}

.common-header-wrapper .mobile-menu-icon {
    font-size: 2rem;
    cursor: pointer;
}

/* Toggle menu visibility */
/* .common-header-wrapper .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease-in-out;
} */
.common-header-wrapper .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0rem;
    transition: all 0.3s ease-in-out;

    margin: 0 auto;
}

.common-header-wrapper .header-sub-nav-img {
    width: 10rem;
}

.header-sub-nav {
    background-color: var(--background-gray);
}



.common-header-wrapper .arrow_down.active {
    transform: rotate(180deg);
}

.common-header-wrapper .header-flex.mobile-header-flex .content_accordian {
    padding: 1rem 0;
}

.common-header-wrapper .header-flex.mobile-header-flex .header-links-ul ul li {
    width: 100%;
    padding: 0.5rem 0;
}

.common-header-wrapper .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-header-wrapper .accordian-icon {
    width: unset;
    min-width: 1.5rem;
    flex-basis: unset;
}

.common-header-wrapper .accordian-icon {
    display: flex;
    justify-content: center;
    width: calc(5% - 1rem);
    flex-basis: calc(5% - 1rem);
}

.common-header-wrapper .accordion_click.active .minusimg,
.common-header-wrapper .accordion_click .plusimg {
    display: block;
}

.common-header-wrapper .accordion_click .minusimg,
.common-header-wrapper .accordion_click.active .plusimg {
    display: none;
}

.display-none {
    display: none;
}

.display-none.display-block {
    display: block;
}

.two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {}

/*header- css end */

.overlay,
.click-overly {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    pointer-events: none;
}

.overlay.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.click-overly.active {
    pointer-events: all;
    opacity: 1;
    z-index: 999;
    visibility: visible;
}

.overflow_hidden,
.ohidden {
    overflow: hidden;
}

.three_column_grid {
    column-gap: 0rem;
    row-gap: 4rem;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.two_column_grid {
    column-gap: 0rem;
    row-gap: 4rem;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.six_column_grid {
    column-gap: 0rem;
    row-gap: 4rem;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}



.hover_div a:hover .tumbImg img {
    transform: scale(1.1);
    transition: var(--common-transition);
}

.hover_div_scale a:hover .tumbImg img {
    transform: scale(1.1);
    transition: var(--common-transition);
}

.hover_div a:hover .service-overly::after {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.hover_div:hover .section-title h2 {
    color: var(--white-color);
}





.swiper-common-btn {
    display: flex !important;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.swiper-common-btn>div.swiper-button-prev,
.swiper-common-btn>div.swiper-button-next {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    margin: 0;
    transform: unset;
    background-image: unset;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background-color: #b5191c;
    display: flex;
    align-items: center;
    transition: var(--common-transition);
    opacity: 1;
    justify-content: center;
}

.swiper-common-btn>div img {
    width: 1.5rem;
    height: 1.5rem;
}

.swiper-common-btn>div:hover img {
    filter: invert(1);
}


.swiper-common-btn>div.swiper-button-prev:hover,
.swiper-common-btn>div.swiper-button-next:hover {
    background-color: #b5191c;
    transition: var(--common-transition);
}

/**/
.img_text_abs_bottoml5 {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 99;
}

.hover_div:hover .img_text_abs_bottoml5 {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 99;
    display: none;
}

.listing_wrapper_web_section .img_text_abs_bottom_home_title {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 99;

}

.listing_wrapper_web_section .hover_div:hover .img_text_abs_bottom_home_title {
    column-gap: 1rem;
    row-gap: 4rem;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.listing_wrapper_web_section .hover_div:hover .img_text_abs_bottom_home_title {
    display: none;
    opacity: 0;

}

.white-color .white-color {
    color: var(--white-color)
}

/**/

.listing_wrapper .img_text_abs_bottom {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 90%;
    z-index: 99;
}

.img_text_abs_centers {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99;
    top: 50%;
    display: none;
    width: 100%;
}

.hover_div:hover .img_text_abs_centers {
    z-index: 999;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99;
    top: 50%;

}


.hover_div:hover .img_text_abs_bottom {
    column-gap: 1rem;
    row-gap: 4rem;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hover_div:hover .img_text_abs_bottom {
    display: none;
    opacity: 0;
}

.hover_div:hover .img1 {
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.5s;
}

.hover_div .right_arrow {
    display: none;
    width: 2.5rem;
}

.hover_div:hover .right_arrow {
    display: block;
    width: 2.5rem;
}

.hover_div .img2 {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease-in-out 0.5s;

}

.hover_div:hover .img2 {
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.5s;
}



/*marquee*/


.text-marquee .marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 170px;
    overflow-x: hidden;
}

.text-marquee .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 100s linear infinite;
}

.text-marquee .content {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px #000;
}

.text-marquee h6 {
    font-size: 140px;
    margin: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/**/
.white-color {

    color: var(--white-color);
}

.four_column_grid {
    column-gap: 2rem;
    row-gap: 4rem;
    justify-content: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.blackborder_shadow_div {
    border: 2px solid var(--color-black);
    border-radius: var(--web-border-radius);
    box-shadow: 7px 7px 0 0 var(--color-black);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.website_web_container {
    width: 70%;
    margin: 0 auto;
}

.gapbottom0 {
    row-gap: 0;
}

/*home-swiper*/
/* .home-swiper-wrapper .home-swiper-wrapper {
        position: relative;
        width: 100%;
        
        margin: 0 auto;
        padding: 40px 0;
    }

    .home-swiper-wrapper .swiper-container {
        width: 100%;
        height: auto;
    }

    .home-swiper-wrapper .slide-content {
        text-align: center;
    }

    .home-swiper-wrapper .slide-content img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 10px;
    }

    .home-swiper-wrapper .slide-content h3 {
        margin-top: 10px;
        font-size: 20px;
        color: #333;
    }

    .home-swiper-wrapper .swiper-button-next.custom-swiper-button-next,
    .home-swiper-wrapper .swiper-button-prev.custom-swiper-button-prev {
        color: #000;
    }

    .home-swiper-wrapper .swiper-pagination-bullet {
        left: 50%;
        background-color: #1e1e1e;
        width: max-content;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .home-swiper-wrapper .swiper-button-prev,
    .home-swiper-wrapper .swiper-button-next {
        background-image: unset !important;
    }

    .home-swiper-wrapper .custom-swiper-button-prev .arrow-icon {
        width: 2rem;
    }

    .home-swiper-wrapper .custom-swiper-button-prev .arrow-icon img {
        transform: scaleX(-1);
    } */
/*home-swiper*/

.website-container90 {
    width: 95%;
    margin: 0 auto;
}

.inner-flex-small {

    gap: var(--small-gap-size);
}

.inner-flex-medium {

    gap: var(--medium-gap-size);
}

.section-medium-title h4 {
    /* color: var(--black-color); */
    font-size: var(--mini-title);
    font-family: var(--title-font-family);
    font-weight: bold;

}

.product_img {
    width: 100%;
}

.homepage-product-flex {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.mobile-font p {
    font-size: var(--link-font-size-small);
    /* font-family: var(--medium-font-family); */
}

.colgap1 {
    column-gap: 0.5rem;
}

.medium-font-family p {
    font-family: var(--medium-font-family);
    font-size: var(--link-font-size-small);
}

.link-font-size p {
    font-size: var(--link-font-size-small);
}

.mr0auto {
    margin: 0 auto;
}

.services_swiper_home .swiper-slide {
    background: transparent;
}

.swiper-slide {
    background-color: transparent;
}

/**/
.submenu-dropdown-web ul {
    display: grid;
    flex-direction: row;
    width: 100%;
    grid-template-columns: repeat(7, 1fr);
    margin-left: auto;
    gap: 1rem;
    align-items: center;
    justify-content: unset;
}

.submenu-dropdown-web.show_dropdown .dropdown_project_list {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
}

.projectListTag.statusTag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1e1e1ea3;
}

.statusTag {
    padding: 4px 8px;
    background: rgba(192, 192, 192, 0.5);
    border-radius: 4px;
    backdrop-filter: blur(20px);
}

.dropdown_project_info_list {
    display: flex;
    row-gap: 0.5rem;
    column-gap: 1rem;
    flex-direction: column;
}

.dropdown_project_info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown_project_content .dropdown_project_img {
    width: 1.3rem;
}

.submenu-dropdown-web {
    padding: 1rem;
}

.header_project_thum img {
    width: 100%;
}

.mobile_flex_menu .header_project_thum {
    width: 6rem;
    min-width: 6rem;
}

.mobile_flex_menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/*footer*/


.footer-wrapper {
    /* background-color: var(--background-gray); */
    background-image: url(https://wholesale.aksclothings.com/cdn/shop/files/footer_bg_img.webp?v=1682746272);
    padding: 40px 0px 8rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.footer-wrapper .footer-wrapper_grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    margin: auto;
}

.footer-wrapper .footer-wrapper_column h4 {
    font-size: var(--content-font-size);
    font-weight: bold;
    margin-bottom: 0;
    border-top: 1px solid #221f1f2b;
    border-bottom: 1px solid #221f1f2b;
    padding: 10px 0;
    text-transform: uppercase;
}

.footer-wrapper .footer-wrapper_column ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.footer-wrapper .footer-wrapper_column ul li {
    margin-bottom: 8px;
}

.footer-wrapper .footer-wrapper_column ul li a {
    text-decoration: none;
    color: #000;
    font-size: var(--link-font-size-small);
    transition: color 0.3s;
    text-transform: capitalize;
}

.footer-wrapper .footer-wrapper_column ul li a:hover {
    color: #ff6600;
}

/*footer*/



.accordion-container .accordion {
    padding: 1rem 0;
    border-bottom: 1px solid #bcbcbc;
}

.accordion-container .accordion-header {
    cursor: pointer;
}

.accordion-container .accordion-title {
    width: calc(95% - 1rem);
    flex-basis: calc(95% - 1rem);
}

.accordion-container .accordion-title p {
    font-size: 18px;
    font-weight: 400;
}

.accordion-container .accordion-content p {
    font-size: 16px;
    font-weight: 400;
}

.accordion-container .accordian-icon {
    display: flex;
    justify-content: center;
    width: calc(5% - 1rem);
    flex-basis: calc(5% - 1rem);
}

.accordion-container .accordion_click.active .minusimg,
.accordion-container .accordion_click .plusimg {
    display: block;
}

.accordion-container .accordion_click .minusimg,
.accordion-container .accordion_click.active .plusimg {
    display: none;
}

.accordion-container .accordian-icon img {
    height: 1.5rem;
    width: 1.5rem;
}

.accordion-container .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-container .accordion-content {
    padding-top: 1rem;
}

.style_swiper .swiper-slide {
    background-color: #f7f6f3 !important;
    background: #f7f6f3 !important;
}



.style_swiper .swiper-scrollbar {
    height: 2px;
}

.style_swiper .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1);
    margin-bottom: 2.5rem;
}

.style_swiper .swiper-scrollbar-drag {
    background: var(--secondary-color);
}

.style_swiper .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0;

}

.footer-flex-strip {}

/* .footer-flex-strip:nth-child(1) {
        width: 40%;
    } */
.footer-flex-strip {
    border-top: 1px solid #221f1f2b;
    padding: 1.5rem 0;
}

.footer-width div:nth-child(1) {}





/*Testtimonial */
.testimonial-section {
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.header .stars {
    font-size: 1.5rem;
    color: #ffc107;
}

.header .title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.testimonial-card {
    /* border: 2px solid var(--black-color);
    border-radius: 12px; */
    padding: 30px;
    /* box-shadow: 6px 6px 0 var(--background-gray); */
    background-color: #fff;
    position: relative;

}

.quote-icon {
    background-color: black;
    color: #00e676;
    border-radius: 50%;
    font-size: 24px;
    width: 36px;
    height: 36px;
    position: absolute;
    top: -20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-weight: bold;
    font-size: 14px;
    margin: 40px 0 20px;
}

.testimonial-text {
    font-weight: bold;
    font-size: 14px;
    margin: 40px 0 20px;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.user-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h4 {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
}

.left-arrow {
    border: 2px solid var(--color--black);
    background-color: var(--color--white);
    box-shadow: 4px 4px 0 0 var(--color--light-salmon);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    display: flex;
}

.right-arrow {
    border: 2px solid var(--color--black);
    background-color: var(--color--white);
    box-shadow: 4px 4px 0 0 var(--color--light-salmon);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    display: flex;
}



.testimonial_swiper_wrapper .swiper-button-next,
.testimonial_swiper_wrapper .swiper-container-rtl .swiper-button-prev {
    background-image: none;
    right: 10px;
    left: auto;
}

.testimonial_swiper_wrapper .swiper-button-prev,
.testimonial_swiper_wrapper .swiper-container-rtl .swiper-button-next {
    background-image: none;
    left: unset;
    right: unset;
    top: 50%;
    left: 21%;
    transform: translate(10px, 10px);

}

.testimonial-quote {
    z-index: 1;
    background-color: var(--black-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    display: flex;
    position: absolute;
    inset: -30px 10% auto auto;
}

/* .testimonial-quote-text {
    color: var(--secondary-color);
    justify-content: center;
    align-items: center;
    margin-top: 23px;
    font-size: 50px;
    font-weight: 600;
} */

.testimonial-quote-text {
    color: red;
    justify-content: center;
    align-items: center;
    margin-top: 23px;
    font-size: 50px;
    font-weight: 600;
}

.testimonial_swiper_wrapper .swiper-button-next,
.testimonial_swiper_wrapper .swiper-container-rtl .swiper-button-prev {
    background-image: none;
    right: unset;
    left: auto;
    top: 50%;
    left: 77%;
}




.left-arrow {
    border: 2px solid var(--color--black);
    background-color: var(--color--white);
    box-shadow: 4px 4px 0 0 var(--color--light-salmon);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    display: flex;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden;
    text-align: left;
    font-family: var(--black-color);
}

/*Testtimonial */

.testimonial-section .swiper-common-btn>div.swiper-button-prev,
.testimonial-section .swiper-common-btn>div.swiper-button-next {
    background-color: transparent;

}

.video-wrapper video {
    width: 100%;
}

.bg-white {
    background-color: var(--white-color);
}

.header-container {
    width: 85%;
    margin: 0 auto;
}

.tesimonial_style_swiper_scroll {
    height: 2px;
}


.testimonial-section .swiper-slide {
    padding-top: 10px;
    padding-bottom: 10px;
}


.t-quat {
    width: 5rem;
    position: relative;
    top: 0%;
}

.swiper-border {
    border: 1px solid var(--black-color);
    border: 2px solid transparent;
    border-radius: 12px;
}

.content-font-size p {
    font-family: var(--regular-font-family);
    font-size: var(--content-font-size);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.productlist-fivegrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.product-card {
    /* padding: 1rem; */
    box-shadow: 0px 0px 18px 4px #00000000;
    transition: var(--common-transition);

}



.product-name h4 {
    transition: var(--common-transition);
}

.product-card-text {
    /* padding: 1rem; */
    overflow: hidden;
}

.product-card-text>div:nth-child(1) {
    align-items: center;
    padding: 1rem 0rem;
    border-bottom: 1px solid #00000030;
    /* transform: translateX(-2.5rem); */
    transform: translateX(0) !important;
    transition: var(--common-transition);
}

.product-card-text>div:nth-child(2) {
    padding: 1rem 0.5rem;

}

.catagory-right-arrow {
    width: 2.5rem;
    /* margin-right: 0.5rem; */

}

.catalog-button {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    /* margin: auto; */
    display: flex;
    align-items: center;
    opacity: 0;
    transition: var(--common-transition);
    justify-content: center;
    backdrop-filter: blur(10px);
}



.tab-header {
    display: flex;
    margin-bottom: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    list-style: none;
    width: 100%;
    overflow: scroll;
    scrollbar-width: none;
    /* align-items: center;
    justify-content: center; */
    gap: 2rem;
}

.tab-header li {
    /* padding: 0.5rem 0rem; */
    cursor: pointer;
    position: relative;
    width: max-content;
    min-width: max-content;
    transition: all 0.3s ease;
}

.tab-header li:hover p {
    color: var(--secondary-color);
}

.tab-header li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), #FF003C);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-header li:hover::after {
    width: 100%;
}

.tab-header li.active p {
    color: var(--secondary-color);
    font-weight: 600;
}

.tab-header li.active::after {
    width: 100%;
    background: linear-gradient(to right, var(--secondary-color), #FF003C);
}

.category-title-abs {
    position: absolute;
    left: 5rem;
    bottom: 5rem;
    width: fit-content;
}

.megamenu-wrapper {
    position: fixed;
    padding-top: 9rem;
    z-index: 99;
    background-color: #ffffff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* width: 100%; */
    height: fit-content;
    backdrop-filter: blur(40px);
}

.megamenugrid {
    padding: 1rem 3rem 3rem 3rem;
    display: grid;
    grid-template-columns: 100%;
    justify-content: space-between;
    align-items: end;
}

.megamenuContent {
    display: flex;
    gap: 1.5rem;
    /* justify-content: end; */
    flex-wrap: wrap;
}

.megamenuContent .megamenuItem {
    flex-basis: calc(100% / 6 - 1.25rem);
}

.megamenuTitle {
    padding-bottom: 2.2rem;
}

.megamenu-category-img {
    overflow: hidden;
}

.megamenu-category-img img {
    aspect-ratio: 1;
    /* object-fit: contain; */
    transition: var(--common-transition);
}

.megamenuItem a:hover .megamenu-category-img img {
    transform: scale(1.1);
    transition: var(--common-transition);
}

.megamenu-category-font p {
    transition: var(--common-transition);
}

.megamenuItem.active a .megamenu-category-font p,
.megamenuItem a:hover .megamenu-category-font p {
    color: var(--secondary-color);
    transition: var(--common-transition);
}

.megamenu-category-font {
    width: fit-content;
    position: relative;
    /* margin: 0 auto; */
}

.megamenu-category-font::after {
    width: 0%;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--common-transition);
}

.down-arrow {
    filter: brightness(0);
}

.down-arrow.active {
    transform: rotate(180deg);
    filter: unset;
}

/* .megamenuItem a:hover .megamenu-category-font::after {
  transition: var(--common-transition);
  width: 100%;
} */
.megamenu-overlay {
    height: 100%;
    width: 100%;
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff40;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.megamenu-overlay.active {
    display: block;
}

.ellips1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bar {
    width: 1.5rem;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--common-transition);
}

.menubar {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    height: 1.5rem;
    z-index: 9999;
    /* margin: auto; */
    justify-content: center;
}

.menubar.active .bar {
    background-color: var(--primary-color) !important;
}

.menubar.active .bar.bar-top {
    transform: translateY(4px) rotate(-45deg);
}

.menubar.active .bar.bar-bottom {
    transform: translateY(-6px) rotate(45deg);
}

.menubar.active .bar.bar-middle {
    opacity: 0;
}

.category-banner-wrapper>div:nth-child(1),
.category-banner-wrapper>div img {
    height: 77svh;
}

.fancybox-container * {
    color: #FFFFFF !important;
}

.color-swatch {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    /* margin: 4px; */
    border: 1px solid #E8E8E1;
    cursor: pointer;
    box-sizing: border-box;

    /* transform: scale(0.74); */

    /* border-radius: 50%; */
    overflow: hidden;
    transition: all 0.3s ease;
}

.color-swatch:hover {
    /* transform: scale(1.1); */
    border-color: var(--primary-color);
    /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); */
}

.selected-color {
    border: 1px solid var(--primary-color);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); */
}

.color-swatch>div {
    width: 100%;
    height: 100%;
    transform: scale(0.74);
    cursor: pointer;

    /* border-radius: 50%; */
}

.selected-color>div {
    transform: scale(0.74);
    border-color: var(--primary-color);

}

.product-card-imgs {
    box-shadow: 0px 0px 8px #00000010;
    transition: var(--common-transition);
    margin: 0.5rem;
}



/* form css */
.FormWrapper form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    /* grid-template-areas: "one two""three four""five five""six six"; */
    grid-template-areas: "one two""three four""five six""sevan sevan""eight eight";

}

.FormWrapper.header-inquiry-form form {
    display: flex;
    flex-direction: column;
}

.FormWrapper.career-form form {
    grid-template-areas: "one two""three four""five six""sevan sevan""eight eight";
}

.FormWrapper form>div:nth-child(1) {
    grid-area: one;
}

.FormWrapper form>div:nth-child(2) {
    grid-area: two;
}

.FormWrapper form>div:nth-child(3) {
    grid-area: three;
}

.FormWrapper form>div:nth-child(4) {
    grid-area: four;
}

.FormWrapper form>div:nth-child(5) {
    grid-area: five;
}

.FormWrapper form>div:nth-child(6) {
    grid-area: six;
}

.FormWrapper form>div:nth-child(7) {
    grid-area: sevan;
}

.FormWrapper form>div:nth-child(8) {
    grid-area: eight;
}

.FormWrapper.contact-form-wrapper form {
    grid-template-areas: unset;
}

.FormWrapper.contact-form-wrapper form>div {
    grid-area: unset;
}

.contact-label {
    position: relative;
}

.form-control {
    width: 100%;
    height: auto;
    padding: 0.6rem 1rem;
    box-shadow: unset !important;
    border: 1px solid #c5c5c5;
    border-radius: unset;
    outline: none !important;
    color: var(--primary-color);
    /* font-family: var(--semibold-font-family); */
    font-size: 1rem;
    resize: none;
}

.form-control::placeholder {
    color: #a4a4a4;
    font-family: var(--regular-font-family);
}

label.error {
    display: none !important;
}

.md-lebel {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-control.error::placeholder,
.contact-label:has(.form-control.error) .md-lebel,
.form-control.error {
    color: red;
}

.form-control.error {
    color: red;
    border-color: red;
}

.submitButton {
    width: fit-content;
    margin-top: 2rem;
}

.form-control:focus,
.form-control:focus-visible {
    border-color: var(--primary-color);
}

.conatct_number_input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem;
}

.display_country_code {
    width: 45px;
}

.display_country_name {
    font-size: 0.875rem;
}

.country_code_data {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    font-size: 1.25rem;
}

.country_code_list_data ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.country_code_list_data ul li {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: all ease 0.2s;
}

.country_code_list_data ul li:hover {
    background-color: #dddddd;
}

.country_code_list_data li>div {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.country_code_list_data {
    position: absolute;
    top: 100%;
    left: 0;
    height: 40vh;
    overflow-y: scroll;
    width: 350px;
    z-index: 99999;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
    border: 1px solid #999999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.search_c-code {
    padding: 0 1rem;
    padding-bottom: 0.5rem;
}

.search_c-code input {
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid #999999;
    width: 100%;
    padding: 0.7rem;
}

.country_code_overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: none;
}

.country_code_overlay.code_overlay {
    display: block;
}

.country_code_list_data {
    display: none;
}

.country_code_list_data.active {
    display: block;
}

.contact_country_flag img,
.country_code_list_data img {
    border-radius: 5px;
    width: 25px !important;
}

.form-control.contact-number {
    padding-left: 11rem;
}

.contactDataGrid {
    display: grid;
    grid-template-columns: calc(100% - 60% - 1.5rem) calc(100% - 40% - 1.5rem);
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.contactInfoItem>span {
    flex-basis: 24px;
    transform: translateY(2px);
}

.contactInfoItem a {
    transition: var(--common-transition);
}

.contactInfoItem>p {
    flex-basis: calc(100% - 10px - 24px);
}

.contactinfoFlex {
    gap: 1.25rem;
}

.contactIframe {
    width: 100%;
}

.contactIframe iframe {
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 16/7.5;
}


/* New Arrival Badge (Modern Ribbon Style) */
.new-arrival-badge span {
    color: #FFFFFF;
}

.new-arrival-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #28a745;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    /* transform: rotate(-45deg); */
    transform-origin: left top;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 15;
}

/* Out of Stock Overlay (Semi-transparent with Red Badge) */
.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(50, 50, 50, 0.6);
    z-index: 14;
    display: flex;
    align-items: center;
    justify-content: center;
}

.out-of-stock-overlay span {
    background-color: #e53935;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* If product is out of stock, dim the image */
.product-card .relative img {
    transition: 0.3s ease;
    /* max-height: 28.313rem; */
    /* min-height: 28.313rem; */
}

.product-card .product-card-img {
    overflow: hidden;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
    transition: 0.3s ease;

}

.product-card:hover .product-name p {
    color: var(--secondary-color);
}

.product-card .out-of-stock-overlay~img {
    filter: grayscale(100%) brightness(0.6);
}

/* Price Styling */
.line-through {
    text-decoration: line-through;
    color: #999;
}

.discount-price {
    color: #e53935;
    font-weight: bold;
    margin-left: 5px;
}

.mr5 {
    margin-right: 5px;
}

.formdetailpage.FormWrapper form {
    display: flex;
    flex-direction: column;

}

.banner-overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000099;
}

.common-icon {
    /* width: 1.5rem; */
    object-fit: contain;
    /* min-width: 1.5rem; */
    height: 1.5rem;
    min-height: 1.5rem;
}

.banner-title-abs {
    position: absolute;
    bottom: 3rem;
    left: 5rem;
    width: 58%;
}

.banner-img,
.banner-img img {
    height: 83svh;
}
.swiper-button-prev.homeSwiperPrev, .swiper-button-next.homeSwiperNext{cursor: pointer;}

.home-banner-strip {
    background-color: var(--black-color);
    /* border-top: 1px solid var(--white-color); */
    border-bottom: 1px solid var(--white-color);
}

.home-banner-strip-text>div {
    text-align: center;
    padding: 0.6rem;
}

.home-banner-strip-text>div:nth-child(2) {
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.home-banner-strip>div:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* padding-top: 1rem; */
    /* padding-bottom: 1rem; */

}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}



.border-redius12 {
    /* border-radius: 0.75rem; */
    overflow: hidden;
}

.export-service a .tumbImg img {
    transition: var(--common-transition);
}

.export-service a:hover .tumbImg img {
    transform: scale(1.1);
}

.service-overly {
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    transition: var(--common-transition);
    pointer-events: none;
}

.service-overly::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(181, 25, 28, 0) 0%,
            rgba(181, 25, 28, 0.7) 88%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-overly::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(30, 30, 30, 0) 0%,
            rgba(30, 30, 30, 0.9) 88%);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.service-text-abs {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 1.125rem 1.5rem;
    width: 100%;
}

.designChhoseGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.designChhoseGrid-img {
    border-radius: 50%;
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    /* border: 2px solid #ccc; */
    position: relative;
}

.designChhoseGrid-img::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: translate(-50%, -50%);
    border: 2px solid #CCC;
}

.designChhoseGrid-img img {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
}

.ellipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-by-category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.shop-by-category>div {
    overflow: hidden;
}

.shop-by-category>div:hover img {
    transform: scale(1.1);
    transition: var(--common-transition);
}

.catagory-thumb-flex {
    display: flex;
    justify-content: center;
    overflow: scroll;
    scrollbar-width: none;
    gap: 1.5rem;
    /* gap: var(--font-size-3rem); */
}

.catagory-thumb-flex .magical-img-wrapper {
    background: transparent;
    box-shadow: 0 0 8px #00000050;
    margin-top: 0.5rem;
    overflow: hidden;
    height: 5rem;
    width: 5rem;
    transition: var(--common-transition);
}

.section-content-small.magical-tab-content p {
    font-size: 0.875rem;
}

.catagory-thumb-flex .catagory-thumb-div.magical-active .magical-tab-content p {
    color: var(--secondary-color);
    transition: var(--common-transition);
}

.catagory-thumb-flex .catagory-thumb-div.magical-active .magical-img-wrapper {
    background: transparent;
    box-shadow: 0 0 8px #FF003C;
    overflow: hidden;
    transition: var(--common-transition);
}

.product-card.outOfStock {
    pointer-events: none;
}


.homeSwiperPagination {
    bottom: 1.25rem;
    display: flex;
    gap: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.homeSwiperPagination .swiper-pagination-bullet {
    /* background-color: #FFFFFF; */
    background-color: var(--secondary-color);
}

.home-banner-title-abs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 58%; */
}

.product-card .product-card-img {
    position: relative;
    overflow: hidden;
}

.section-catagory-img.animated::after,
.product-card.animated .product-card-img::after,
.export-service.animated::after {
    /* animation: slideOutOverlay 2s ease forwards; */
    bottom: -100%;
    transition: all 2s ease;

}

.section-catagory-img::after,
.product-card .product-card-img::after,
.export-service::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    transition: all 2s ease;
    background-color: #333333;
    z-index: 2;
}

@keyframes slideOutOverlay {
    0% {
        bottom: 0;
    }

    100% {
        bottom: -100%;
    }
}

.section-content-small .sku-price-flex p {
    font-size: 0.9rem;
}

.section-catagory-img {
    overflow: hidden;
    position: relative;
}

.section-catagory-img>a:hover img {
    transform: scale(1.1);
    transition: var(--common-transition);
}

.social-icon,
.social-icon img {
    width: 1.5rem !important;
    min-width: 1.5rem;

}

[role=button] {
    cursor: default;
}

.catagory-title-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
}

.fonts14 p {
    font-size: 0.875rem;
}

.size-box {
    min-width: 2.1rem;
    /* height: 2.1rem; */
    padding: 0.3rem;
    border: 1px solid #E8E8E1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: var(--common-transition);

}



.brand-box {
    padding: 0.813rem 0.875rem;
    background-color: #FFC7D4;
    width: fit-content;
}

.highlights-flex {
    display: grid;
    grid-template-columns: 4rem auto;
    align-items: center;
    gap: 0.875rem;
}

.price-gird {
    display: grid;
    grid-template-columns: 45% 55%;
    padding: 0.813rem 0.5rem;
}

.location-box {
    background-color: #F5F5F5;
    padding: 0.813rem;

}

.sticky-div {
    height: fit-content;
    position: sticky;
    top: 4rem;
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.catalogue-img {
    overflow: hidden;
}

.headerInquiryForm {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    padding-top: 3rem;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0;
    overflow: scroll;
    scrollbar-width: none;
    right: -100%;
    width: 25%;
    height: 100vh;
    z-index: 1000;

}

.headerInquiryForm.active {
    transition: var(--common-transition);
    right: 0%;
}

.common-icon,
.common-icon img,
.common-img,
.common-img img {
    object-fit: contain;
    /* width: 2rem; */
    min-width: 1.6rem;
    height: 1.6rem;
}

.common-img {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.common-banner,
.common-banner img {
    height: 77svh;
    object-position: bottom;
}

.about-banner,
.about-banner img {
    height: 65.044svh;
    /* border-bottom-right-radius: 7rem; */
    max-height: 34.375rem;
}

.about-banner-text-abs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.highlights-grid {
    display: grid;
    grid-column-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.gray-bg {
    background-color: #9c7f7f0d;
}

.font-48 {
    font-size: 3rem;
}

.border-radius {
    border-radius: 12px;
}

.about-values-box {
    padding: 3rem;
    max-width: 36.563rem;
    background-color: #FFFFFF;
    margin-left: auto;
}

.experience-ul {
    margin-top: 0.6rem;
}

.experience-img {
    padding: 0 2rem;
}

.meet-team-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; */
     display: flex;
    justify-content: center;     
    align-items: center;         
    gap: 40px;                  
    flex-wrap: wrap;                     
    margin: 0 auto;              
    text-align: center;
}

.share-btn span {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--common-transition);
}

.share-btn:hover span {
    color: var(--secondary-color);
    transition: var(--common-transition);
}

.history-swiper-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.history-swiper-line {
    position: absolute;
    top: 8.3rem;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #D5BD79;
}

.history-swiper-img {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #D5BD79; /* just for visibility */
   display: flex;
   justify-content: center; /* horizontal center */
   align-items: center;     /* vertical center */
}

.history-swiper-circal {
    width: 2.5rem;
    border-radius: 50%;
    background-color: #FAF2DC;
    height: 2.5rem;
    border: 1px solid #D5BD79;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.history-swiper-circal>div:nth-child(1) {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #D5BD79;
}

.font-20 {
    font-size: 1.25rem;
}

.swiper-button-prev.testimonials-prev,
.swiper-button-next.testimonials-next,
.swiper-button-next.history-next,
.swiper-button-prev.history-prev {
    background-image: unset;
    height: fit-content;
}

.swiper-pagination.testimonialsPagination,
.swiper-pagination.historyPagination {
    position: relative;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    margin-top: 4.5rem;
    gap: 1.5rem;
    transition: var(--common-transition);
}

.about-main-wrapper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.about-main-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000000;
    width: 1rem;
    transition: var(--common-transition);

    border-radius: 6px;
}

.swiper-button-next.history-next {
    top: 28.66rem;
    right: 7rem;
}

.swiper-button-prev.history-prev {
    top: 28.66rem;
    left: 7rem;
}

.testimonials-box {
    display: grid;
    grid-template-columns: calc(30% - 1.25rem) calc(70% - 1.25rem);
    padding: 5rem 4.5rem;
    background-color: #FBF3E0;
    border-radius: 0.813rem;
    gap: 2.5rem;
    max-width: 55.5rem;
}

.testimoniaal-star {
    width: 5.5rem;
}

.testimonials-img {
    width: 13.75rem;
    height: 13.75rem;
    border-radius: 50%;
    overflow: hidden;
}

.meet-team-grid .inner-flex img {
    transition: transform 0.3s ease, filter 0.3s ease;
}


.about-values-box {
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



@media screen and (min-width: 1152px) {
    .aboutSectGrid {
        grid-template-columns: 45% 50%;
    }

    .whyBrillexItem {
        padding: 2rem;
    }

}



@media screen and (max-width: 991px) {
    .contactDataGrid {
        grid-template-columns: 100%;
    }

    .whyBrillexGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .aboutSectGrid {
        grid-template-columns: 100%;
        gap: 3rem;
    }

    .whyBrillexContent {
        width: 100%;
    }



    .FormWrapper.contact-form-wrapper form {
        grid-template-columns: repeat(1, 1fr) !important;

    }

    .FormWrapper form>div {
        grid-area: unset;
    }





    .contactIframe iframe {
        aspect-ratio: 1;
    }
}

/* only hover css */

@media only screen and (min-width: 919px) {



    .meet-team-grid .inner-flex:hover img {
        transform: scale(1.05);

    }

    .about-values-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .contactInfoItem a:hover {
        color: var(--secondary-color);
    }

    .catalogue-img a img {
        transition: var(--common-transition);

    }

    .header-links-ul ul li a:hover p {
        color: #ff003c;
    }

    a:hover {
        color: #ff003c;
    }

    .catalogue-img a:hover img {
        transform: scale(1.1);
        transition: var(--common-transition);
    }

    .size-box:hover {
        border: 1px solid #000000;
        transition: var(--common-transition);
    }

    .contact_btn:hover {
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

    .contact_btn:hover p {
        color: var(--white-color);
    }

    .catagory-thumb-flex .catagory-thumb-div:hover .magical-img-wrapper {
        background: transparent;
        box-shadow: 0 0 8px #FF003C;
        overflow: hidden;
        transition: var(--common-transition);
    }

    .catagory-thumb-flex .catagory-thumb-div:hover .magical-tab-content p {
        color: var(--secondary-color);
        transition: var(--common-transition);
    }

    .product-card:hover {
        transition: var(--common-transition);
        /* box-shadow: 0px 0px 18px 4px #00000020; */
    }

    .product-card:hover .product-card-text>div:nth-child(1) {
        transform: translateX(0);
        transition: var(--common-transition);
    }

    .product-card:hover .product-name h4 {
        color: var(--secondary-color);
        transition: var(--common-transition);

    }

    .product-card:hover .catalog-button {
        opacity: 1;
        transition: var(--common-trFansition);
    }

    .product-card-imgs:hover {
        box-shadow: 0px 0px 8px #00000030;
        transition: var(--common-transition);
        margin: 0.5rem;
    }

    .section-catagory-img a:hover .service-overly::before,
    .export-service a:hover .service-overly::before {
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .section-catagory-img a:hover .service-overly::after,
    .export-service a:hover .service-overly::after {
        opacity: 1;
        transition: opacity 0.4s ease;
    }
}

@media only screen and (min-width: 1990px) {
    html {
        font-size: 24px;
    }

}

.swiper-button-next.homeSwiperNext {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23e31e24'/%3E%3C/svg%3E")!important;
}
.swiper-button-prev.homeSwiperPrev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23e31e24'/%3E%3C/svg%3E")!important;
}
.swiper-button-next.homeSwiperNext:hover {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23000000'/%3E%3C/svg%3E")!important;
    transition:  0.4s ease;
}
.swiper-button-prev.homeSwiperPrev:hover {
    transition:  0.4s ease;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23000000'/%3E%3C/svg%3E")!important;
}
