@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*, ul {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}
:root {
    --fontPrimary: "Philosopher", sans-serif;
    --fontSecondary: "Open Sans", sans-serif;
    --themePrimary: #C49C4A;
    --themeSecondary: #734E1B;
    --whiteColor: #ffffff;
    --themeBrown: #2B2B2B;
    --paraColor: #3E3E3E;
    --titleFontColor: #2B2B2B;
    --cutiveMono: "Cutive Mono", monospace;
    --notosans: "Noto Serif", serif;
    --themeYellow: #FFD553;
}
body {
    font-family: var(--fontPrimary) !important;
    background-color : var(--whiteColor) !important;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
h1, h2 {
        font-family: var(--fontPrimary) !important;
}
strong {
     font-family: var(--fontPrimary) !important;
}
p {
    font-family: var(--fontSecondary);
    color: var(--paraColor);
    font-size: 16px;
    line-height: 35px;
    letter-spacing: -0.03em;
}
/* =====header section start=== */
.headerArea {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: 0.5s;
}
.headerArea.hederFixed {
    top: 0;
    transition: 0.5s;
    background: #221e1f;
}

.headerArea .navbar-brand {
    display: none;
}
.headerArea .navBrandlogo {
    margin: 0 50px;
}
.headerArea .navBrandlogo img {
    transition: 0.5s;
    max-width: 157px;
}
.headerArea.hederFixed .navBrandlogo img {
    max-width: 100px;
    transition: 0.5s;
}
.headerArea .mr-auto {
    margin: auto;
    align-items: center;
    gap: 30px;
}
.headerArea .navbar {
    padding: 0;
}
.headerArea .navbar-light .navbar-nav .nav-link {
    font-family: var(--fontSecondary);
    color: var(--whiteColor);
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.04em;
    padding: 5px;
    transition: 0.5s;
}
.headerArea .navbar-light .navbar-nav .nav-link:hover, .headerArea .navbar-light .navbar-nav .nav-link.active {
    color: var(--themePrimary);
    transition: 0.5s;
}
/* =====header section close=== */
/* =====hero section start==== */
.heroSection {
    background: url(../images/herobg.png) no-repeat;
    /* padding: 248px 0 200px; */
    padding: 118px 0 300px;
    background-size: cover;
    position: relative;
    background-position: 50% 50%;
    margin-bottom: 200px;
}
.bgText {
    position: absolute;
    left: 0;
    text-transform: uppercase;
    bottom: -20px;
    font-size: 16vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    opacity: 0.02;
    text-align: center;
    width: 100%;
    /* background: linear-gradient(180deg, #FFFFFF -38.04%, rgba(255, 255, 255, 0) 100%); */
    color: var(--whiteColor);
    background-clip: text;
}
.herotext, .heroAdditional {
    position: relative;
    z-index: 3;
}
.herotext strong {
    font-size: 26px;
    font-weight: 400;
    line-height: 57.43px;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--whiteColor);
}
.herotext h1 {
    font-size: 58px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--themePrimary);
}
.heroAdditional {
    text-align: center;
}
.brandtag img {
    animation: rotate-animation 10s infinite linear;
}
@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.heroAdditional p {
    max-width: 381px;
    margin: 130px auto 0;
    color: var(--whiteColor);
    line-height: 35px;
}
.heroImg {
    position: absolute;
    bottom: -140px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
    text-align: center;
}
.iceCube {
    position: absolute;
    top: 50%;
    left: 66%;
    transform: translate(-50%, -50%);
    animation: move 5s infinite alternate;
    z-index: -1;
    max-width: 143px;
}
@keyframes move {
    0% {
        top: 40%;
        transition: 0.5s;
    }
    100% {
        top: 60%;
        transition: 0.5s;
    }
}
/* =====hero section close==== */

/* =====about section start==== */
.aboutSec {
    padding: 0px 0 80px;
    position: relative;
    z-index: 1;
}
.sectionTitle h2 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    color: var(--titleFontColor);
    text-transform: uppercase;
}
.aboutContent {
    max-width: 873px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.aboutContent p {
    text-align: center;
    margin-bottom: 42px;
}
.primaryBtn {
    display: inline-flex;
    justify-content: center;
    gap: 15px;
    border-radius: 10px;
    background: var(--themeBrown);
    color: var(--whiteColor) !important;
    align-items: center;
    font-family: var(--fontSecondary);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    padding: 15px 40px;
}
.primaryBtn span {
    transition: 0.5s;
}
.primaryBtn:hover span {
    transform: translateX(8px);
    transition: 0.5s;
}
.aboutImg {
    border-radius: 30px;
    overflow: hidden;
    max-width: 430px;
    margin: auto;
}
.aboutimg1 {
    transform: translateY(-50px);
}
.aboutimg2 {
    position: absolute;
    right: 2%;
    top: -30px;
    max-width: 220px;
    z-index: 3;
}
.glassShape {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: -1;
    max-width: 539px;
    opacity: 0.5;
}
/* =====about section close==== */

/* =====superior section start==== */
.superiorSec {
    background: url(../images/supiriorbg.png) #FFECC7 no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    padding: 78px 0 0;
}
.superiorTitle {
    max-width: 300px;
    padding-top: 50px;
    position: relative;
}
.arrowShape {
    text-align: right;
    margin-top: 30px;
}
.superiorTitle strong, .superiorContent strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    color: var(--titleFontColor);
}
.superiorContent p {
    margin-top: 15px;
}
.superiorSec .row .col-sm-12:last-child {
    display: grid;
    place-content: center;
}
.missionVisionWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.mVText {
    background: #231F20;
    padding: 40px 90px;
    display: grid;
    place-content: center;
}
.sectionTitle.text-white h2{
    color: var(--whiteColor);
}
/* =====superior section close==== */

/* =====mission vision sec start==== */
.mVText  p {
    margin-top: 15px;
    color: var(--whiteColor);
}
.missionVision .missionVisionWrap:nth-child(even) .mvImg{
    order: -1;
}
.mvImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =====mission vision sec close==== */

/* =====blog sec start==== */
.blogSec {
    padding: 120px 0 50px;
}
.blogSec .sectionTitle p {
    margin-bottom: 80px;
}
.blogItem {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}
figure.blogImg {
    width: 45%;
    margin: 0;
}
figure.blogImg a {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
}
figure.blogImg a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.blogItem:hover .blogImg a img {
    transform: scale(1.3);
    transition: 0.5s;
}
.blogContent {
    width: calc(100% - (45% + 30px));
}
.blogContent a.blogTitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.02em;
    display: block;
    color: var(--titleFontColor);
    text-transform: uppercase;
    text-decoration: none;
}
.blogTiming {
    display: flex;
    gap: 10px;
    margin: 5px 0 8px;
}
.blogContent p {
    line-height: 22px;
    font-size: 14px;
    margin-bottom: 8px;
}
.blogTiming {
    color: #3E3E3E;
}
.blogTiming span {
    color: var(--themeSecondary);
}
.readmoreBTn {
    font-family: var(--fontSecondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--themeSecondary) !important;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.readmoreBTn span {
    transition: 0.5s;
}
.readmoreBTn:hover span{
    transform: translateX(8px);
    transition: 0.5s;
}
.blogSec .primaryBtn {
    margin-top: 60px;
}
/* =====blog sec close==== */

/* ====fixed section====== */
.fixedSocial {
    position: fixed;
    top: 50%;
    gap: 50px;
    transform: translateY(-50%) rotate(180deg);
    right: 2%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
}
.fixedSocial li a {
    writing-mode: vertical-lr; /* Makes the text vertical */
    text-orientation: mixed;
    color: var(--themePrimary);
    font-family: var(--fontSecondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: .5s;
}
.fixedWhatsapp {
    background: #4CAF50;
    color: var(--whiteColor) !important;
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 54px;
    display: block;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border-radius: 10px 0 0 10px;
    font-size: 30px;
    text-decoration: none;
    transition: 0.5s;
    z-index: 9;
}
.fixedWhatsapp:hover {
    transform: scale(1.2);
    transition: 0.5s;
}
/* ====fixed section====== */

/* =====footer sec start== */
.footerArea {
    background: url(../images/footerBg.png) no-repeat;
    background-size: cover;
    padding: 100px 0 30px;
    background-position: 50% 50%;
    position: relative;
    z-index: 3;
}
.footerNav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
}
.footerArea .navBrandlogo {
    margin: 0 70px;
}
.footerArea .navBrandlogo img {
    max-width: 200px;
}
.footerArea  .nav-link:hover {
    color: var(--themePrimary);
    transition: 0.5s;
}
.footerArea  .nav-link {
    font-family: var(--fontSecondary);
    color: var(--whiteColor);
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.04em;
    padding: 5px;
    transition: 0.5s;
}
nav.footerNav {
    margin-bottom: 46px;
}
.quickActions {
    border-top: 1px solid #f9d06461;
    border-bottom: 1px solid #f9d06461;
}
.actionItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    position: relative;
}
.actionItem::after {
    width: 1px;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    background: #f9d06461;
}
.actionIcon {
    width: 45px;
    aspect-ratio: 1;
    display: grid;
    border-radius: 50%;
    background: linear-gradient(149.47deg, #E4CB8A 13.46%, #734E1B 89.76%);
    background-clip: border-box;
    position: relative;
    place-content: center;
}
.actionIcon::after {
    position: absolute;
    top: 1px;
    left: 1px;
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: #231f20;
    border-radius: 50%;
    z-index: 1;
    transition: .5s;
}
.actionContent {
    max-width: calc(100% - 55px);
}
.actionIcon span {
    position: relative;
    z-index: 2;
    color: var(--whiteColor);
    transition: 0.5s;
}
a.actionIcon:hover span {
    color: var(--themeBrown);
    transition: 0.5s;
}
.actionContent p{
    color: var(--whiteColor);
}
.actionContent p {
    color: var(--whiteColor);
    font-size: 12px;
    line-height: 18px;
}
.socialBar {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 13px;
}
.socialBar .actionIcon {
    width: 35px;
}
.socialBar .actionIcon:hover::after {
    background: var(--themePrimary);
    transition: 0.5s;
}
.lst.actionItem::after {
    display: none;
}
.copyrightBAr {
    margin-top: 45px;
}
.copyrightBAr p {
    color: var(--whiteColor);
    font-size: 14px;
}
.gstNO {
    text-align: right;
}
/* =====footer sec close== */


/* =====================================
cooming soon page start
======================================== */
.comingSoonHeader {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 9;
}
.comingSoonWrapper {
    min-height: 100vh;
    display: flex;
    background: #201C1B;
    position: relative;
    z-index: 1;
    align-items: end;
    overflow: hidden;
}
.comingSoonWrapper::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/coomingsoon/coomingsoonbg.png) no-repeat;
    background-size: cover;
    opacity: 0.1;
}
.comingSoonWrapper .container {
    position: relative;
    z-index: 3;
}
.heroCoomingSoon h1 {
    font-family: var(--notosans);
    font-size: 104.55px;
    font-weight: 400;
    line-height: 121.73px;
    letter-spacing: -0.04em;
    color: var(--themeYellow);
    text-transform: uppercase;
}
.heroCoomingSoon h1 span {
    font-size: 151.99px;
    line-height: 102.75px;
}
.comingsoonContent strong {
    display: block;
    font-family: var(--notosans);
    color: var(--themeYellow);
    font-size: 28px;
    font-weight: 400;
    line-height: 75.9px;
    letter-spacing: -0.04em;
}
.comingsoonContent p {
    font-family: var(--cutiveMono);
    color: var(--themeYellow);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.1em;
    margin-top: 20px;
}
.smoketop {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    max-width: 30%;
    opacity: 0.3;
}
.comingimgWrapper {
    position: relative;
    text-align: center;
    z-index: 1;
}
.comingImg {
    position: relative;
    z-index: 2;
}
.comingsoonContent , .heroCoomingSoon {
    position: relative;
    z-index: 4;
}
.smokeWrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.smokebottom1, .smokebottom2, .smokebottom3 {
    filter: blur(5px);
    transform-origin: 50% 50%;
}
.smokebottom1 {
    animation: smoke1 8s linear infinite;
    animation-delay: .5s;
}
.smokebottom2 {
    animation: smoke1 8s linear infinite;
    animation-delay: 2s;
}
.smokebottom3 {
    animation: smoke2 8s linear infinite;
    animation-delay: 2.5s;
    max-width: 380px;
    opacity: 0;
}
.smoketopImg {
    animation: smoke1 8s linear infinite;
    animation-delay: .5s;
    filter: blur(5px);
    transform-origin: 50% 50%;
}
@keyframes smoke1 {
    0% {
        filter: blur(0px);
        transform:  translateY(0px) scale(-1, 1);
        opacity: 0;
    }
    25% {
        filter: blur(3px);
        transform:  translateY(-10px) scale(-1, 1.05);
        opacity: 0.5;
    }
    50% {
        filter: blur(5px);
        transform:  translateY(-20px) scale(-1, 1.1);
        opacity: 0.1;
    }
    75% {
        filter: blur(5px);
        transform:  translateY(-30px) scale(-1, 1.15);
        opacity: 0.5;
    }
    100% {
        filter: blur(7px);
        transform:  translateY(-40px) scale(-1, 1.2);
        opacity: 0;
    }
}
@keyframes smoke2 {
    0% {
        filter: blur(3px);
        transform:  translateY(0px) scale(1);
        opacity: 0;
    }
    25% {
        filter: blur(5px);
        transform:  translateY(-10px) scale(1.05);
        opacity: 0.2;
    }
    50% {
        filter: blur(8px);
        transform:  translateY(-20px) scale(1.1);
        opacity: 0.4;
    }
    75% {
        filter: blur(10px);
        transform:  translateY(-30px) scale(1.15);
        opacity: 0.1;
    }
    100% {
        filter: blur(12px);
        transform:  translateY(-40px) scale(1.2);
        opacity: 0;
    }
}
.comingbgText {
    font-family: var(--notosans), sans-serif;
    font-size: 14vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
    background: linear-gradient(180deg, #ffffff -55.7%, rgba(35, 31, 32, 0) 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    text-transform: uppercase;
    width: 100%;
    left: 0;
    bottom: -27px;
    z-index: 2;
    opacity: 0.4;
    background-color: rgba(255, 255, 255, 0.1);
    color: #d3d3d3;
}
/* =====================================
cooming soon page close
======================================== */

/* =====================================
brand page start
======================================== */
/* ====brand banner start==== */
.heroBrandSection {
    /*background: url(../images/brand/brandbanner.png) no-repeat;*/
    background-size: cover;
    padding: 250px 0 112px;
    background-position: 50% 50%;
}
.brandvideo {
    position: relative;
    max-height: 530px;
    overflow: hidden;
    padding: 0;
}
.brandvideo .brandBannerText {
    position: absolute;
    width: 100%;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.brandvideo::after {
    width: 100%;
    height: 100%;
    background: #00000094;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
}
.heroBrandSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brandBannerText h1 {
    font-size: 58px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--themePrimary);
    text-transform: capitalize;
}
.brandBannerText p {
    color: var(--whiteColor);
    margin-top: 15px;
}
.brandBannerText h6{
    font-size: 30px;
    font-weight: 400;
    line-height: 47.43px;
    letter-spacing: -0.02em;
    display: block;
    text-align: center;
    color: var(--whiteColor);
}
.brandBannerText .breadcrumb {
    margin: 10px 0 0;
    justify-content: center;
    font-family: var(--fontSecondary);
}
.brandBannerText .breadcrumb-item {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.04em;
}
.brandBannerText .breadcrumb-item.active {
    color: var(--themePrimary);
    font-weight: 700;
}
.brandBannerText .breadcrumb-item a {
    text-decoration: none;
    color: var(--whiteColor);
}
.brandBannerText .breadcrumb-item::before {
    width: 30px;
    height: 23px;
    background: url(../images/arrow-right.png) no-repeat;
    content: "";
    background-size: contain;
    padding: 0 15px;
    top: -3px;
    position: relative;
}
.breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}
/* ====brand banner close==== */
/* ====brandAbout sec start==== */
section.brandAbout {
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.brandAboutImage {
    width: 100%;
    max-width: 437px;
    border-radius: 30px;
    overflow: hidden;
}
/* .brandAboutContent {
    padding: 0 80px;
} */
.brandAboutShape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.brandAboutShape {
    animation: leftRight 2s infinite alternate;
}
@keyframes leftRight {
    0% {
        transform: translateX(50px);
        transition: 0.5s;
    }
    100% {
        transform: translateX(0px);
        transition: 0.5s;
    }
}

.heroBrandSection video {
    display: block;
    width: 100%;
}
/* ====brandAbout sec close==== */

/* ====malt in Black sec start==== */
.maltInBlackSec {
    padding: 120px 0 80px;
    position: relative;
    background: #FFECC7;
}
.maltInImg img {
    transform: scale(1.5);
}
.maltInBlackContent strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    color: var(--titleFontColor);
    margin-bottom: 20px;
}
.maltInBlackContent {
    padding-top: 120px;
}
/* ====malt in Black sec close==== */

/* ====newArrivalSec sec start==== */
.newArrivalSec {
    /*background: url(../images/brand/newarrival.png) no-repeat center/cover;*/
    padding: 380px 0 180px;
    background-position: top left;
    position: relative;
    z-index: 2;
    margin-top: -160px;
    margin-bottom: -60px;
}
.newArrivalContent {
    text-align: right;
}
.newArrivalContent .sectionTitle h2{
    margin: 0;
}
.newArrivalContent strong {
    font-family: var(--fontPrimary);
    font-size: 102px;
    font-weight: 400;
    line-height: 81.9px;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 30px;
}
.newArrivalContent h3 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    color: var(--whiteColor);
    text-transform: uppercase;
    margin: 0;
}
/* ====newArrivalSec sec close==== */

/* =====================================
brand page start
======================================== */

/* =====================================
career page start
======================================== */
.career-link {
    text-decoration: none;
    color: inherit; /* Optional: Ensures the link uses the same color as the parent element */
}
.career-link:hover {
    text-decoration: none; /* Ensure the underline doesn't appear on hover */
}
.career-link:hover {
    color: var(--themePrimary);
    transition: 0.5s;
}
.brandAboutContent {
    margin-bottom:15px;
}
.button-themebutton {
    background: var(--themePrimary);
    color: #000;
    border: 1px solid var(--themePrimary);
}
.button-themebutton:hover{
    background:black;
    border: 1px solid #000;
    transition: 0.5s;
    color: white;  
}
.careerItem {
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 60px rgba(34,34,34,.25);
    margin-top: 30px;
}
.careerItem .sectionTitle h2 {
    margin-bottom: 15px;
}
.careerItem .button-themebutton {
    margin-top: 20px;
}
/* =====================================
career page close
======================================== */

/* =====================================
career detail  page close
======================================== */
.careerpage.entry-header .entry-title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 0;
}
header.entry-header.alignwide.careerpage {
    padding-bottom: 0;
    margin-top: 80px;
    margin-bottom: 0;
}
.careerSinglePage .container{
    max-width: 1140px;
}
.career-form {
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 60px rgba(34,34,34,.25);
    margin-top: 30px;
    text-align: center;
}
.career-form  label {
    text-align: left;
}
.career-form p label {
	width: 100%;
}
.career-form p label input {
	height: 45px;
	margin-top: 6px;
	border: 1px solid #ccc;
	border-radius: 2px;
	width: 100%;
	padding: 0 15px;
}
.wpcf7-form-control-wrap input {
    
}
.career-form .wpcf7-submit.has-spinner {
    background: var(--themePrimary) !important;
    color: #000 !important;
    border-radius: 8px;
    border: 1px solid var(--themePrimary);
    height: 44px;
    padding: 6px 24px;
}
.career-form .wpcf7-submit.has-spinner:hover {
    background: #000 !important;
    color: var(--themePrimary)  !important;
    border-radius: 8px;
    border: 1px solid #000 !important;
}
.meta-nav:hover, .post-title:hover {
    color: var(--themePrimary) !important;
    transition: 0.5s;
}
/* =====================================
career page start
======================================== */
.career-link {
    text-decoration: none;
    color: inherit; 
}
.career-link:hover {
    text-decoration: none;
}
.career-link:hover {
    color: var(--themePrimary);
    transition: 0.5s;
}
.brandAboutContent {
    margin-bottom:15px;
}
.button-themebutton {
    background: var(--themePrimary) !important;
    color: #000;
    border: 1px solid var(--themePrimary);
}
.button-themebutton:hover{
    background:black;
    border: 1px solid #000;
    transition: 0.5s;
    color: white;  
}
.careerItem {
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 60px rgba(34,34,34,.25);
    margin-top: 30px;
}
.careerItem .sectionTitle h2 {
    margin-bottom: 15px;
}
.careerItem .button-themebutton {
    margin-top: 20px;
}
.careerItem .sectionTitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.careerItem p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}
.careerlist {
    padding-left: 18px !important;
    max-height: 60px;
    overflow: hidden;
}
.careerlist li {
    font-size: 14px;
    list-style: disc;
}
.careerItem .sectionTitle h2 {
    font-size: 24px;
    margin: 0;
}
.jobicon {
    width: 40px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    background: #221e1f7d;
    color: #221e1f;
    border-radius: 8px;
}
/* =====================================
career page close
======================================== */

/* =====================================
career detail  page close
======================================== */
.careerpage.entry-header .entry-title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 0;
}
.carrerDEtail {
    padding: 50px 0;
}
header.entry-header.alignwide.careerpage {
    padding-bottom: 0;
    margin: 0;
    margin-bottom: 0;
    margin-left: 15px;
}
.careerpage h1 {
    margin: 0;
    max-width: 100% !important;
    font-size: 24px;
}
.entry-content p {
    max-width: 100% !important;
    margin-top: 10px;
}
.careerpage h3, .careerpage h4 {
    padding: 0;
    margin: 0;
    max-width: 100% !important;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
}
.careerpage ul {
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}
.careerpage ul li {
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    padding-left: 30px;
    margin-top: 8px;
}
.careerpage ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--themeBrown);
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 50%;
}
.careerSinglePage .container{
    max-width: 1140px;
}
.carrerDEtail .career-form {
    padding: 30px;
    background: #221e1f1c;
    box-shadow: none;
    margin-top: 30px;
    text-align: left;
    position: sticky;
    border-radius: 8px;
    top: 100px;
}
.nav-links {
    justify-content: center !important;
}
.career-form h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.career-form .wpcf7-validates-as-required {
    border: none;
}
.career-form  label {
    text-align: left;
}
.career-form p label {
	width: 100%;
}
.career-form p label input {
	height: 45px;
	margin-top: 6px;
	border: 1px solid #ccc;
	border-radius: 2px;
	width: 100%;
	padding: 0 15px;
    outline: none !important;
}
.wpcf7-form-control-wrap input {
    padding: 0 !important;
    height: auto !important;
    margin-bottom: 30px;
}
.nav-previous:hover {

}
.career-form .wpcf7-submit.has-spinner {
    background: var(--themePrimary) !important;
    color: #000 !important;
    border-radius: 8px;
    border: 1px solid var(--themePrimary);
    height: 44px;
    padding: 6px 24px;
}
.career-form .wpcf7-submit.has-spinner:hover {
    background: #000 !important;
    color: var(--themePrimary)  !important;
    border-radius: 8px;
    border: 1px solid #000 !important;
}
.meta-nav:hover, .post-title:hover {
    color: var(--themePrimary) !important;
    transition: 0.5s;
}

.contactFormWrapper  label {
    text-align: left;
}
.contactFormWrapper p label {
	width: 100%;
}
.contactFormWrapper p label input {
    min-height: 45px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 100%;
    padding: 0 15px !important;
    outline: none !important;
}

.contactFormWrapper .wpcf7-submit.has-spinner {
    background: var(--themePrimary) !important;
    color: #000 !important;
    border-radius: 8px;
    border: 1px solid var(--themePrimary);
    height: 44px;
    padding: 6px 24px;
}
.contactFormWrapper .wpcf7-submit.has-spinner:hover {
    background: #000 !important;
    color: var(--themePrimary)  !important;
    border-radius: 8px;
    border: 1px solid #000 !important;
}
.contactFormWrapper {
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 60px rgba(34,34,34,.25);
}
.contactSec {
    padding: 80px 0;
}
.mapWrapper {
    position: sticky;
    top: 120px;
}
.bloglist .status-publish {
    width: 45%;
    margin: 30px 15px;
    float: left;
    padding: 30px;
    box-shadow: 0 0 60px rgba(34,34,34,.25);
}
.bloglist .status-publish .entry-header {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
}
.bloglist .status-publish .entry-header .post-thumbnail {
    margin-top: 0;
    margin-bottom: 15px;
}
.bloglist .status-publish .entry-header .post-thumbnail img {
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
}
.bloglist .status-publish  .entry-title {
    margin: 0;
}
.bloglist .status-publish  .entry-title a {
    text-decoration: none !important;
    font-size: 24px;
    text-align: left;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bloglist .status-publish  .entry-title a:hover {
    color: var(--themeSecondary);
    transition: 0.5s;
}
.bloglist .status-publish .entry-content  p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-blog-details {
    background: var(--themePrimary);
    color: #000;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px !important;
    display: inline-block;
}
.btn-blog-details:hover {
    color: #fff;
    background: var(--themeSecondary);
    transition: 0.5s;
}
.bloglist .status-publish .post-taxonomies {
    display: none;
}
.bloglist .status-publish .entry-content {
    margin: 15px 0 15px !important;
}
.bloglist .status-publish .entry-footer {
    margin: 0;
}
.bloglist {
    padding: 80px 0;
}
.bloglist .pages {
    border: none;
    margin-right: 15px;
}
.bloglist .wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bloglist .current, .bloglist .page.larger, .bloglist .nextpostslink, .bloglist .page.smaller, .bloglist .previouspostslink {
    width: 30px;
    display: inline-grid;
    height: 30px;
    font-size: 14px;
    border-radius: 50%;
    place-content: center;
    background: #221e1f;
    color: #fff;
    transition: 0.5s;
}
.bloglist .nextpostslink, .bloglist .previouspostslink  {
    padding-bottom: 5px;

}
.bloglist .current, .bloglist .page.larger:hover, .bloglist .nextpostslink:hover {
    background : var(--themePrimary);
    border: 1px solid var(--themePrimary);
    color: #221e1f;
    transition: 0.5s;
}
.brandBannerText .breadcrumb-item::before {
    width: 30px;
    height: 23px;
    background: url(../images/arrow-right.png) no-repeat;
    content: "";
    background-size: contain;
    padding: 0 15px;
    top: -3px;
    position: relative;
}
.breadcrumb .breadcrumb-item:first-child::before {
    display: none;
}
.bloglist #block-4, .bloglist #block-5, .bloglist #block-6 {
    display: none;
} 
.bloglist #block-2 input {
    min-height: 45px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 100%;
    padding: 0 15px !important;
    outline: none !important;
    margin-top: 0;
}
.bloglist .wp-block-search__inside-wrapper  button.wp-block-search__button.wp-element-button, .bloglist .wp-block-search .wp-block-search__button:not(:hover):not(:active):not(.has-background) {
    background: var(--themePrimary);
    color: #000;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    border-radius: 0;
    border: none !important;
}
.bloglist .wp-block-search__inside-wrapper  button.wp-block-search__button.wp-element-button:hover, .bloglist .wp-block-search .wp-block-search__button:not(:hover):not(:active):not(.has-background):hover {
    color: #fff;
    background: var(--themeSecondary);
    transition: 0.5s;
}
.bloglist #block-2 form {
    margin-top: 30px;
}
.bloglist #block-3 {
    margin-top: 30px;
}
.bloglist h2.wp-block-heading  {
    margin-bottom: 10px;
}
.bloglist #block-3 .wp-block-latest-posts__list.wp-block-latest-posts {
    margin-top: 0;
}
.bloglist #block-3 .wp-block-latest-posts__list.wp-block-latest-posts li {
    border-bottom: 1px solid #929191;
    margin: 0 !important;
    padding: 0;
    height: auto !important;
    line-height: 1;
}
.bloglist #block-3 .wp-block-latest-posts__list.wp-block-latest-posts li a.wp-block-latest-posts__post-title {
    text-decoration: none;
    font-size: 16px;
    color: var(--themeSecondary);
    transition: 0.5s;
    display: block;
    padding: 10px 0;
}
.bloglist #block-3 .wp-block-latest-posts__list.wp-block-latest-posts li a.wp-block-latest-posts__post-title:hover {
    color: #000;
    transition: 0.5s;
}

/* ===blog details==== */
.blogSingle  {
    padding: 80px 0;
}
.blogSingle .status-publish  .entry-header h1 {
    text-decoration: none !important;
    font-size: 40px;
    text-align: left;
    display: block;
}
.blogSingle .status-publish .post-thumbnail img {
    width: 100%;
    margin: 0;
    max-width: 100% !important;
    border-radius: 8px;
    height: 400px !important;
    object-fit: cover;
}
.blogSingle .entry-content p {
    margin: 0 0 15px !important;
    width: 100%;
    max-width: 100% !important;
}
.blogSingle .entry-footer {
    margin: 0 0 15px !important;
    width: 100%;
    max-width: 100% !important;
}
.blogSingle .entry-content h3 {
    margin: 0;
    max-width: 100% !important;
    margin-bottom: 10px;
    font-size: 24px;
}
.blogSingle .entry-content h4 {
    margin: 15px 0;
    max-width: 100% !important;
    font-size: 22px;
}
.blogSingle .list1 {
    padding: 0;
    margin: 0;
    max-width: 100% !important;
    font-size: 14px;
    margin-bottom: 30px;
}
.list1 li {
    padding-left: 30px;
    font-size: 16px;
    position: relative;
}
.list1 li::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--themeBrown);
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 50%;
}
.list2 {
    margin: 0;
    max-width: 100% !important;
}
.list2 {
    padding: 0;
}
.list2 h3 {
    font-size: 22px;
}
.list2 ol {
    padding: 0;
}
.list2 h3 {
    font-size: 22px !important;
    padding-left: 30px;
}
.list2 h3 span {
    margin-right: 15px;
}
.blogSingle .entry-footer {
    display: none;
}
div#comments {
    max-width: 80%;
    border-top: 1px solid #ccc;
    padding-top: 30px;
}
.comment-form-author {

}
#reply-title {
    font-size: 24px;
    line-height: 1;
}
.comment-form-author input , .comment-form-email input, .comment-form-url input, .comment-form-comment textarea{
    min-height: 45px;
    border: 1px solid #ccc !important;
    border-radius: 2px;
    width: 100%;
    padding: 0 15px !important;
    outline: none !important;
}
.comment-form-cookies-consent input {
    border: 1px solid #ccc !important;
}
#submit {
    background: var(--themePrimary) !important;
    color: #000 !important;
    border-radius: 8px;
    border: 1px solid var(--themePrimary);
    height: 44px;
    padding: 6px 24px;
}
.comment-list li {
    background: #221e1f1c;
    padding: 30px;
    border-radius: 8px;
}
.comment-list li  article {
    margin: 0;
}
.nav-previous a, .nav-next a {
    text-decoration: none !important;
}
/* ===blog details==== */

/* ===about change === */
.maltInBlackContent {
    padding-top: 0 !important;
}
.aboutImgnew {
    border-radius: 8px;
    overflow: hidden;
}
.aboutImgnew img {
    width: 100%;
}
.maltInBlackSec {
    padding: 80px 0 80px;
}
.comment-metadata a, .comment-reply-link {
    text-decoration: none;
}
.comment-metadata a:hover, .comment-reply-link:hover {
    text-decoration: none !important;
    color: var(--themePrimary);
    transition: 0.5s;
}

/* ====age modal=== */
#ageModal #dob{
    min-height: 45px;
    border: 1px solid #ccc !important;
    border-radius: 2px;
    width: 100%;
    padding: 0 15px !important;
    outline: none !important;
}
#ageModal .modal-title {
    color: var(--titleFontColor);
    font-family: var(--fontPrimary);
}
#ageModal label {
    margin-bottom: 0;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--titleFontColor);
}
span#doberr {
    margin-top: 10px;
    display: block;
}
#ageModal .btn-primary {
    background: var(--themePrimary);
    color: #000000;
    border: 1px solid var(--themePrimary);
    padding: 8px 30px;
    font-weight: 600;
}
#verifyBtn, #verifyBtn-1 {
  box-shadow: none !important;
}
#ageModal .btn-primary:hover {
    background : var(--themeBrown);
    border: 1px solid var(--themeBrown);
    color: var(--themePrimary);
    transition: 0.5s;
}
/* ====age modal=== */
.searchHeader h1 {
    font-size: 30px;
}
.searchHeader .page-header {
    padding: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}
.searchpage {
    padding: 30px 0 0;
}
.searchHeader, .searchpagebody .search-result-count {
    margin: 0 15px;
}
.searchpagebody .search-result-count {
    max-width: 100%;
}
.searchpagebody article {
    width: 45%;
    margin: 30px 15px;
    display: inline-block;
    padding: 30px;
    box-shadow: 0 0 60px rgba(34,34,34,.25);
}
.searchpagebody .status-publish .entry-header {
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
}
.searchpagebody .status-publish  .entry-title a {
    text-decoration: none !important;
    font-size: 24px;
    text-align: left;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 63px;
}
.searchpagebody .status-publish  .entry-title a:hover {
    color: var(--themeSecondary);
    transition: 0.5s;
}
.searchpagebody .status-publish .entry-header .post-thumbnail {
    margin-top: 0;
    margin-bottom: 15px;
}
.searchpagebody .status-publish .entry-header .post-thumbnail img {
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
}
.searchpagebody .status-publish .entry-content  p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.searchpagebody .status-publish .entry-content {
    margin: 0;
}
.searchpagebody .status-publish .entry-footer {
    margin: 15px 0 0;
}
.searchpagebody .status-publish .entry-footer .post-taxonomies {
    display: none;
}
#ageModal {
    background: #000000ed;
}

/* ===blog filter == */
.searchpagebody .pages {
    border: none;
    margin-right: 15px;
}
.searchpagebody .wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchpagebody .current, .searchpagebody .page.larger, .searchpagebody .nextpostslink, .searchpagebody .page.smaller, .searchpagebody .previouspostslink {
    width: 30px;
    display: inline-grid;
    height: 30px;
    font-size: 14px;
    border-radius: 50%;
    place-content: center;
    background: #221e1f;
    color: #fff;
    transition: 0.5s;
}
.searchpagebody .nextpostslink, .searchpagebody .previouspostslink  {
    padding-bottom: 5px;

}
.searchpagebody .current, .searchpagebody .page.larger:hover, .searchpagebody .nextpostslink:hover {
    background : var(--themePrimary);
    border: 1px solid var(--themePrimary);
    color: #221e1f;
    transition: 0.5s;
}
section.aboutcls {
    margin-bottom: -53px;
}

/* ====director page start==== */
section.director-details {
    padding: 0px 0 80px;
}
section.director-details .director-item:nth-child(2n) .row {
    flex-flow: row-reverse;
}
section.director-details .director-item:nth-child(2n) {
    background: #FFECC7 ;
}
section.director-details .director-item {
    padding: 50px 0;
}
.director-image {
    max-width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0px 0px 19px 0px rgb(196 156 74);
    margin: 0 auto 30px;
}
.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.director-item h3 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    color: var(--titleFontColor);
    text-transform: uppercase;
    font-family: var(--fontPrimary);
    text-align: center;
}
.director-item span {
    display: block;
    margin-bottom: 0;
    text-align: center;
    color: #6e6e6e;
}
.direction-content {
    position: relative;
    z-index: 1;
    padding-top: 50px;
}
/* .direction-content::before {
    font-family: "Font Awesome 6 Free";
    content: "\f10d";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 36px;
} */

/* ====director page start==== */
@media (min-width: 992px) { 
    .headerArea .mr-auto li:first-child a {
        margin-left: 92px;
    }
 }
@media (max-width: 767.98px) { 
    .bloglist .status-publish, .searchpagebody article {
        width: 100%;
        margin: 10px 0px;
        padding: 20px;
    }
    .footerNav ul {
        padding: 0;
    }
    .brandvideo.heroBrandSection {
        padding: 0;
        height: 400px;
    }
    .heroBrandSection video {
        height: 100%;
        object-fit: cover;
    }
    .brandBannerText h1 {
        font-size: 36px;
        line-height: 46px;
    }
    .blogSingle .status-publish  .entry-header h1 {
        font-size: 32px;
    }
    .blogSingle {
        padding: 0px 0;
    }
    .bloglist .status-publish .entry-header .post-thumbnail {
        margin: 0;
        margin-bottom: 15px;
        max-width: 100%;
        width: 100%;
    }
    .bloglist .status-publish .entry-header .post-thumbnail  img {
        width: 100%;
        max-width: 100%;
    }
    section.aboutcls {
    margin-bottom: -73px;
    }

    /* ==director== */
    section.director-details .director-item:nth-child(2n) .row {
        flex-flow: wrap;
    }
    .director-image {
        margin-bottom: 15px;
    }
 }

 @media (min-width: 768px) and (max-width: 991.98px) { 
    .bloglist .status-publish {
        width: 43%;
        margin: 30px 15px;
        padding: 15px;;
    }
    .bloglist .status-publish .entry-content  p {
        font-size: 14px;
    }
    .bloglist .status-publish  .entry-title a {
        font-size: 18px;
    }
    .bloglist .status-publish .posted-on {
        font-size: 12px;
    }
    .bloglist {
        padding: 0px 0;
    }
    section.director-details .director-item:nth-child(2n) .row {
        flex-flow: wrap;
    }
    .director-image {
        margin-bottom: 15px;
    }
  } 