@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lexend:wght@100..900&display=swap");
@import url("./vendors/bootstrap.min.css");
@import url("./vendors/bootstrap-icons.min.css");
@import url("./vendors/aos.css");
@import url("./vendors/animsition.min.css");
@import url("./vendors/jarallax.min.css");
@import url("./vendors/splide.min.css");
@import url("./vendors/swiper-bundle.min.css");
@import url("./vendors/intl-tel-input/intlTelInput.min.css");
@import url("./vendors/fancybox/fancybox.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-primary-color: #199fa0;
    --theme-secondary-color: #c19d45;
    --menu-icon-color: white;
    --alt-font: "Great Vibes", serif;
    --primary-font: "Lexend", serif;
}

*,
* button:focus {
    outline: 0;
    margin: 0;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

html {
    font-size: 16px;
    scroll-padding-top: 150px;
}

html::-webkit-scrollbar {
    height: 20px;
    width: 10px;
    background: #f1f1f1;
    border-radius: 0;
}

html::-webkit-scrollbar-thumb {
    background: var(--theme-primary-color);
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--theme-secondary-color);
}

html::-webkit-scrollbar-corner {
    background: var(--theme-primary-color);
    border-radius: 10px;
}

body {
    position: relative;
    font-family: var(--primary-font);
    text-decoration: none;
    color: #2c2c2c;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden !important;
    font-optical-sizing: auto;
}

/* ::selection {
    background-color: #ffc808;
    color: white;
} */

main {
    position: relative;
    min-height: 100vh;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px;
    padding: 0;
    letter-spacing: 0;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

h1 {
    font-size: 4.375rem;
}

h2 {
    font-size: 3.438rem;
}

h3 {
    font-size: 2.375rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.35rem;
}

h6 {
    font-size: 1.15rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

b,
strong {
    font-weight: 700;
}

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

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

.text-theme-color {
    color: var(--theme-color);
}

.parallax-bg {
    background-size: cover;
    background-position: center top;
    will-change: background-position;
    background-attachment: fixed !important;
}

/* Preloader  */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    background-image: url(../images/loader-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f7f7f7;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: 0.3s;
}

.loader {
    /* transform: rotateZ(45deg);
    perspective: 1000px; */
    position: relative;
    border-radius: 50%;
    width: 180px;
    height: 150px;
    color: var(--theme-secondary-color);
    background-image: url(../images/logos/joz-logo-xconcept.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: -10px;
    bottom: -20px;
    overflow: hidden;
}

.loader-text {
    font-family: var(--alt-font);
    color: var(--theme-secondary-color);
    text-transform: capitalize;
    font-size: 2rem;
    text-align: center;
    animation: loader-logo-animation 2s linear infinite;
}

.loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.685) 46%,
            rgba(0, 0, 0, 0) 60%);
    transform: skewX(-25deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes loader-logo-animation {
    0% {
        -webkit-transform: scale3d(1, 1, 1) translateZ(0);
        transform: scale3d(1, 1, 1) translateZ(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
        transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1) translateZ(0);
        transform: scale3d(1, 1, 1) translateZ(0);
        opacity: 1;
    }
}

.scroll-top {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 15px;
    padding: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    color: white;
    cursor: pointer;
    background-color: var(--theme-primary-color);
    border-radius: 50%;
    border: 1px solid white;
    transition: transform 0.8s cubic-bezier(0.05, 0.82, 0.165, 1),
        background-color 0.4s ease;
    transform: scale(0) translateZ(0);
}

.scroll-top i {
    line-height: normal;
}

.scroll-top.show {
    transform: scale(1) translateZ(0);
}

.scroll-top:hover {
    background-color: var(--theme-secondary-color);
    color: #ffffff;
}

.standard-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: auto;
    padding: 14px 25px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: normal;
    color: white;
    /* color: var(--theme-primary-color); */
    border-radius: 8px;
    border: none;
    background-color: var(--theme-primary-color);
    /* background-color: transparent; */
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* box-shadow: 5px 5px 0 var(--theme-primary-color); */
    box-shadow: 5px 5px 0 rgba(25, 160, 160, 0.36);
}

.standard-btn i {
    color: var(--theme-primary-color);
    font-size: 1.1em;
    margin-left: 0.4em;
    transition: color 0.2s ease-in-out;
}

.download-btn {
    font-size: 1.08rem;
    padding: 15px 25px;
    color: #000000;
    border-radius: 14px;
}

.standard-btn span {
    position: relative;
    display: block;
}

.standard-btn:active {
    transform: scale(0.95);
}

.standard-btn:hover {
    color: white;
    background-color: var(--theme-secondary-color);
    box-shadow: 5px 5px 0 rgba(193, 158, 69, 0.36);
    /* background-color: var(--theme-primary-color);
    box-shadow: 5px 5px 0 var(--theme-secondary-color); */
}

.standard-btn:hover i {
    color: white;
}

@media screen and (max-width: 575px) {
    .standard-btn {
        font-size: 0.8rem;
    }
}

/* Main Header Style starts  */

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 0 60px;
    display: flex;
    z-index: 999;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.4s ease,
        backdrop-filter 0.4s ease box-shadow 0.4s ease;
}

.main-header::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: white;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.main-header.transparent:not(.sticky-header)::before {
    background-color: rgba(179, 179, 179, 0.452);
    backdrop-filter: blur(16px);
}

.main-header.transparent {
    background-color: transparent;
    border-color: transparent;
}

.main-header.sticky-header {
    animation: slideBottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-fill-mode: none;
    background-color: white;
    box-shadow: 0 10px 35px rgba(25, 25, 25, 0.077);
    backdrop-filter: none;
    border-color: transparent;
}

.main-header .header-inner {
    margin: 0;
    width: 100%;
}

.menu-button {
    display: flex;
    align-items: center;
    font-size: 2rem;
    padding: 0;
    color: rgb(63, 63, 63);
    border: none;
    background-color: transparent;
    outline: none;
    z-index: 2;
}

.main-header.transparent:not(.sticky-header) .menu-button {
    color: #ffffff;
}

.main-header .logo-container {
    position: relative;
}

.main-header .navbar-brand {
    position: relative;
    width: 186px;
    height: 100px;
    display: block;
    background-color: transparent;
    background-image: url("../images/logos/main-logo.png");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

.main-header.transparent .navbar-brand {
    filter: grayscale(1) invert(1) brightness(100);
}

.main-header.sticky-header .navbar-brand {
    filter: none;
}

.main-header .overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.184);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 9;
}

.main-header .overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* HEADER MENU ------- */

.menu-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

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

.menu-wrapper .menu-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.menu-wrapper .menu-close {
    display: none;
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-wrapper .menu-close small {
    font-size: 0.5em;
    text-transform: uppercase;
    line-height: 0;
}

.menu-wrapper nav .standard-btn {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform;
}

.menu-wrapper nav ul.menu-list {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 0;
    margin: 0;
    gap: 26px;
}

.menu-wrapper nav:last-child ul.menu-list {
    justify-content: flex-end;
}

.menu-wrapper nav ul li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 0.9rem;
    font-family: var(--primary-font);
    letter-spacing: 0.2px;
    font-weight: 300;
    text-transform: capitalize;
}

.menu-wrapper nav ul li.has-mega-menu {
    position: static;
}

.menu-wrapper nav ul li a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgb(63, 63, 63);
    z-index: 2;
    transition: color 0.3s ease;
}

.menu-wrapper nav ul li.active>a {
    color: var(--theme-primary-color) !important;
}

@media screen and (min-width: 992px) {
    .main-header.transparent.sticky-header .menu-wrapper nav ul li a {
        color: rgb(63, 63, 63);
    }

    .main-header.transparent .menu-wrapper nav ul li a {
        color: #ffffff;
    }

    .main-header.transparent .menu-wrapper nav ul li.active>a {
        color: #ffffff !important;
    }

    .main-header.transparent.sticky-header .menu-wrapper nav ul li.active>a {
        color: var(--theme-primary-color) !important;
    }
}

.menu-wrapper nav ul li a::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 1px;
    border-radius: 8px;
    background-color: var(--theme-secondary-color);
    transition: width 0.4s ease;
}

.menu-wrapper nav ul li.active a::before {
    width: 100%;
}

.menu-wrapper nav ul li:hover a::before {
    width: 100%;
}

.menu-wrapper nav ul li.has-children>a,
.menu-wrapper nav ul li.has-mega-menu>a {
    padding-right: 15px;
}

.menu-wrapper nav ul li.has-children>a::after,
.menu-wrapper nav ul li.has-mega-menu>a::after {
    content: "\f105";
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 0.85rem;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    line-height: 0;
    transform-origin: center;
    transform: translateY(-50%) translateZ(0) rotate(0deg);
    transition: transform 0.3s ease;
}

.menu-wrapper nav ul li.has-children:hover>a::after,
.menu-wrapper nav ul li.has-mega-menu:hover>a::after {
    transform: translateY(-50%) translateZ(0) rotate(90deg);
}

.main-header.transparent:not(.sticky-header) .menu-wrapper nav ul .sub-menu {
    background-color: rgba(179, 179, 179, 0.452);
    /* backdrop-filter: blur(16px); */
    border: none;
}

.menu-wrapper nav ul .sub-menu {
    position: absolute;
    top: 100%;
    left: -30px;
    min-width: 230px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    white-space: nowrap;
    padding: 6px 0;
    border-radius: 0 0 8px 8px;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid #f0f0f0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%) translateZ(0);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 30px 0px rgba(0, 0, 0, 0.062);
}

.menu-wrapper nav ul li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px) translateZ(0);
}

.menu-wrapper nav ul .sub-menu.mega-menu {
    min-width: 900px;
    left: 0;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    background-color: rgba(255, 255, 255, 0.675);
    backdrop-filter: blur(12px);
}

.menu-wrapper nav ul .sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.menu-wrapper nav ul .sub-menu li a {
    width: 100%;
    padding: 6px 20px;
    display: block;
}

.menu-wrapper nav ul .sub-menu a::before {
    display: none !important;
}

.menu-wrapper nav ul .sub-menu li.has-children>a::after {
    display: block;
    right: 20px;
    transform: translateY(-50%);
}

.main-header:not(.transparent) .menu-wrapper nav ul li.has-children:hover>a::after,
.main-header:not(.transparent) .menu-wrapper nav ul li.has-mega-menu:hover>a::after {
    color: var(--theme-primary-color) !important;
}

.main-header.sticky-header .menu-wrapper nav ul li.has-children:hover>a::after,
.main-header.sticky-header .menu-wrapper nav ul li.has-mega-menu:hover>a::after {
    color: var(--theme-primary-color) !important;
}

.menu-wrapper nav ul .sub-menu .sub-menu {
    left: 100%;
    top: -15px;
}

.menu-wrapper nav ul .sub-menu li a:hover {
    color: var(--theme-primary-color) !important;
}

/* Megamenu Categories List  */

.cat-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cat-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(40px) translateZ(0);
    opacity: 0;
}

.sub-menu.opened .cat-list .cat-item {
    transition-delay: var(--delay) !important;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

.cat-item img {
    max-width: 150px;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transform: translateZ(0) scale(1);
}

.cat-item:hover img {
    transform: translateZ(0) scale(1.1);
}

.cat-item .cat-name {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    color: rgb(36, 36, 36);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 400;
    background-color: white;
    margin: 0;
    z-index: 2;
    transition: color 0.4s ease;
}

.cat-item:hover .cat-name {
    color: var(--theme-primary-color);
}

/* Header Rsponsive styles  */
/* @media screen and (max-width: 1400px) {
    .main-header .header-inner {
        padding: 0;
    }

    .menu-wrapper {
        padding: 0;
    }
} */

@media screen and (max-width: 575px) {
    .main-header .navbar-brand {
        width: 133px;
    }
}

@media screen and (max-width: 1200px) {
    .main-header {
        padding: 0 15px;
    }

    .main-header .navbar-brand {
        width: 170px;
        height: 90px;
    }

    .menu-wrapper nav ul.menu-list {
        gap: 18px;
    }

    .menu-wrapper nav ul li {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .main-header {
        padding: 0 8px;
    }

    .main-header::after {
        display: none;
    }

    .main-header .header-inner {
        padding: 12px 0;
    }

    .main-header .logo-container {
        padding: 0;
    }

    .main-header .navbar-brand {
        height: 60px;
    }

    .menu-wrapper {
        display: none;
    }

    .menu-wrapper.mobile-menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        top: 0;
        bottom: 0;
        right: 0;
        width: 90%;
        max-width: 410px;
        height: 100dvh;
        background-color: rgb(255, 255, 255);
        padding: 0;
        overflow-x: hidden;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.61, 0.41, 0.38, 0.96);
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.138);
        opacity: 1;
    }

    .menu-wrapper.mobile-menu .top-wrapper {
        width: 100%;
        height: 60px;
        padding: 0 25px;
        background-color: var(--theme-secondary-color);
        background-image: url(../images/logos/white-logo-icon.png);
        background-position: calc(100% - 25px) 50%;
        background-repeat: no-repeat;
        background-size: 40px auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .menu-wrapper .standard-btn {
        width: 100%;
        background-color: var(--theme-secondary-color);
        color: white;
        box-shadow: 5px 5px 0 #f0f0f0;
    }

    .menu-wrapper .standard-btn:active {
        background-color: var(--theme-primary-color);
    }

    .menu-wrapper .footer-social {
        gap: 8px;
        margin-top: 40px;
    }

    .menu-wrapper .footer-social ul li {
        will-change: transform;
    }

    .menu-wrapper .footer-social ul li a {
        color: var(--theme-secondary-color);
    }

    .menu-wrapper .menu-inner {
        height: 100%;
        width: 100%;
        flex-direction: column;
        padding: 12px 25px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .menu-wrapper.menu-open {
        transform: translateX(0);
    }

    .menu-wrapper .menu-close {
        display: flex;
    }

    .menu-wrapper .menu-inner nav {
        width: 100%;
    }

    .menu-wrapper nav ul.menu-list {
        display: block;
    }

    .menu-wrapper nav ul li {
        font-size: 0.85rem;
        display: block;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-wrapper nav ul li a {
        width: auto;
        height: auto;
        padding: 10px 0 !important;
        display: block;
        color: #1e1e1e;
    }

    /* .menu-wrapper nav ul li.active {
        border-color: var(--theme-secondary-color);
    } */

    .menu-wrapper nav ul li a:hover {
        color: var(--theme-primary-color) !important;
    }

    .menu-wrapper nav ul li a::before {
        display: none;
    }

    .menu-wrapper nav ul li.has-children>a::after {
        display: block;
        right: 15px;
        color: #1e1e1e;
        transform: translateY(-50%) rotate(0deg) !important;
    }

    .menu-wrapper nav ul li.has-children.open>a::after,
    .menu-wrapper nav ul li.has-children.active>a::after {
        color: var(--theme-secondary-color) !important;
        transform: translateY(-50%) rotate(90deg) translateZ(0) !important;
    }

    .menu-wrapper nav ul li.has-children.has-mega-menu>a::after {
        display: none;
    }

    .menu-wrapper nav ul .sub-menu.mega-menu {
        display: none;
    }

    .menu-wrapper nav ul .sub-menu {
        position: relative;
        top: auto !important;
        left: auto !important;
        min-width: auto;
        white-space: nowrap;
        padding: 0;
        height: 0;
        padding-left: 15px;
        border-radius: 0;
        border-top: 0;
        z-index: 10;
        background-color: transparent !important;
        filter: none !important;
        visibility: visible;
        opacity: 1;
        transform: none !important;
        transition: 0.5s;
        box-shadow: none;
        overflow: hidden;
    }

    .menu-wrapper nav ul .sub-menu li {
        border: none;
    }

    .menu-wrapper nav ul li.has-children.active>.sub-menu {
        height: auto;
        display: block;
    }

    .menu-wrapper nav ul li.has-children:last-child {
        margin-bottom: 15px;
    }
}

/* Main Header Style starts Ends  */

section {
    position: relative;
    padding: 60px 60px;
    overflow: hidden;
}

.container-fluid {
    max-width: 1600px;
}

.container {
    width: 100% !important;
    max-width: 1400px !important;
}

.sec-title {
    position: relative;
    width: 100%;
    font-size: 2.6rem;
    font-family: var(--primary-font);
    line-height: 1.6;
    margin-bottom: 1.2em;
    font-weight: 200;
    text-transform: uppercase;
    text-align: center;
    color: #0e0e0e;
}

.sec-title-2 {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--alt-font);
    color: var(--theme-secondary-color);
    margin-bottom: 0.6em;
}

.sec-title::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 3px;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    border-radius: 10px;
    background-color: var(--theme-secondary-color);
}

.sec-description {
    font-size: 1.1rem;
    text-align: center;
    padding: 0 10px;
}

.page-title-sec {
    background-color: #f5f5f5;
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-title-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 3.6rem;
}

.page-title-wrapper .sub-title {
    font-size: 0.26em;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.page-title-wrapper .sub-title b {
    color: var(--theme-one);
    font-weight: 600;
}

.page-title-wrapper .main-title {
    position: relative;
    font-size: 1em;
    font-family: var(--alt-font);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
    padding-top: 0.2em;
    color: var(--theme-secondary-color);
    text-transform: capitalize;
}

/* .page-title-wrapper .main-title::first-letter {
    color: var(--theme-primary-color);
} */

@media screen and (max-width: 1200px) {
    section {
        padding: 40px 15px;
    }

    .page-title-wrapper {
        font-size: 3rem;
    }

    .sec-title {
        font-size: 2rem;
        margin-top: 15px;
    }

    .sec-title-2 {
        font-size: 2.5rem;
    }

    .sec-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 991px) {
    section {
        padding: 40px 8px;
    }

    .page-title-wrapper {
        font-size: 2.8rem;
    }

    .sec-title {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .sec-title-2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 575px) {
    .sec-title {
        font-size: 1.6rem;
    }

    .sec-description {
        font-size: 0.9rem;
    }

    .sec-title-2 {
        font-size: 1.8rem;
    }

    .page-title-wrapper {
        font-size: 2.5rem;
    }
}

/* Inner Pages Styles Starts  */

.breadcrumb-content {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.breadcrumb-content .breadcrumb {
    margin-bottom: 0;
    justify-content: center;
    row-gap: 10px;
}

.breadcrumb-content .breadcrumb-item::before {
    display: none;
}

.breadcrumb-content .breadcrumb-item {
    position: relative;
    line-height: normal;
    padding: 0;
    padding: 0 0.8em;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #464646;
    display: block;
}

.breadcrumb-content .breadcrumb-item::after {
    content: "\f111";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-25%) translateX(50%);
    width: auto;
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    font-size: 0.315em;
    color: var(--theme-secondary-color);
}

.breadcrumb-content .breadcrumb-item:first-child {
    padding-left: 0;
}

.breadcrumb-content .breadcrumb-item:last-child {
    border: none;
    padding-right: 0;
}

.breadcrumb-content .breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-content .breadcrumb-item a {
    transition: color 0.4s ease;
}

.breadcrumb-content .breadcrumb-item.current {
    font-weight: 400;
    color: var(--theme-primary-color);
    max-width: 250px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumb-content .breadcrumb-item a:hover {
    color: var(--theme-primary-color);
}

@media screen and (max-width: 1025px) {
    .breadcrumb-container {
        margin-left: auto;
    }
}

@media screen and (max-width: 991px) {
    .breadcrumb-container {
        margin-left: auto;
        margin-top: 25px;
    }

    .breadcrumb-content .breadcrumb-item {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 575px) {
    .breadcrumb-content .breadcrumb {
        row-gap: 6px;
    }

    .breadcrumb-content .breadcrumb-item {
        font-size: 0.7rem;
    }
}

/* Common component in inner pages  */

.page-text-content .left-side {
    padding-right: 60px;
}

.page-text-content .sub-title-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a7a7a;
}

.page-text-content .sub-title-text.colored {
    color: var(--theme-secondary-color);
}

.page-text-content .title-text {
    font-size: 3.25rem;
    margin-bottom: 0.4em;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: normal;
    font-family: var(--alt-font);
    color: var(--theme-secondary-color);
}

.page-text-content .title-style-two {
    font-size: 2rem;
    font-weight: 500;
    color: var(--theme-secondary-color);
    letter-spacing: normal;
    font-family: var(--alt-font);
    line-height: 1.2em;
    margin-top: 2em;
}

.page-text-content .title-style-two span {
    display: block;
}

.page-text-content .title-style-two span:nth-child(1) {
    margin-right: 5rem;
}

.page-text-content .title-style-two span:nth-child(2) {
    margin-left: 5rem;
}

.page-text-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8em;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.page-text-content h3 b {
    font-weight: inherit;
    color: var(--theme-primary-color);
}

.page-text-content h3.alt-text {
    font-family: var(--alt-font);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.2;
    color: var(--theme-secondary-color);
    max-width: 16em;
}

.page-text-content h3.alt-text span {
    font-family: var(--primary-font);
    font-size: 0.5em;
    font-weight: 400;
    display: block;
    color: #585858;
    /* text-align: right; */
}

.page-text-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    color: #7a7a7a;
}

.page-text-content p.heading-para {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: #2b2b2b;
    letter-spacing: -0.02em;
    text-align: start;
}

.page-text-content p.heading-para b {
    font-weight: 500;
    color: var(--theme-primary-color);
}

.page-text-content p:last-child {
    margin-bottom: 0;
}

.page-text-content .img-box {
    width: 100%;
    height: auto;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

.page-text-content .img-box img {
    width: 100%;
    max-height: 100%;
    aspect-ratio: 3/2.25;
    object-fit: cover;
    object-position: center;
}

.page-text-content .img-box.v-large img {
    aspect-ratio: 3/3;
}

.page-text-content .standard-btn {
    margin-top: 40px;
}

.img-wrapper img {
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 1200px) {
    .page-text-content .title-text {
        font-size: 2.6rem;
    }

    .page-text-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 991px) {
    .page-text-content {
        padding: 0 4px;
    }

    .page-text-content .sub-title-text {
        font-size: 0.8rem;
    }

    .page-text-content .title-text {
        font-size: 3rem;
    }

    .page-text-content .img-box,
    .page-text-content .img-wrapper {
        margin-bottom: 30px;
    }

    .page-text-content .left-side {
        padding-right: 12px;
    }

    .page-text-content h3 {
        font-size: 1.4rem;
    }

    .page-text-content p.heading-para {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 575px) {
    .page-text-content .sub-title-text {
        font-size: 0.7rem;
    }

    .page-text-content .title-style-two {
        font-size: 1.5rem;
        text-align: center;
    }

    .page-text-content .title-text {
        font-size: 2rem;
    }

    .page-text-content h3.alt-text {
        font-size: 1.8rem;
    }

    .page-text-content p {
        font-size: 0.85rem;
    }

    .page-text-content p.heading-para {
        font-size: 1rem;
    }

    .page-text-content ul li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Inner Pages Styles Ends */

/* Main Content Styles  */

/* >>> Hero Section  */

.hero-section {
    overflow: visible;
}

.hero-section svg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
}

.hero-section .hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 720px;
    padding-top: 100px;
    overflow: hidden;
}

.hero-section .hero-banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.527);
    left: 0;
    top: 0;
    z-index: 2;
}

.hero-section .hero-banner .banner-video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.hero-section .hero-banner .text-wrapper {
    display: block;
    position: absolute;
    top: 57%;
    left: 50%;
    width: 95%;
    height: auto;
    padding: 0;
    max-width: 1920px;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .hero-banner .text-wrapper .title-text {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
    word-spacing: 0.15em;
    color: white;
    text-align: center;
    font-family: var(--alt-font);
    z-index: 2;
}

@media screen and (max-width: 1300px) {
    .hero-section .hero-banner .text-wrapper .title-text {
        font-size: 2.8rem;
    }
}

.hero-section .hero-banner .text-wrapper p {
    width: 100%;
    max-width: 1100px;
    font-size: 1.8rem;
    color: white;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--primary-font);
    margin: 0;
}

@media screen and (max-width: 991px) {
    .hero-section .hero-banner {
        max-height: 720px;
        min-height: auto;
    }

    .hero-section .hero-banner .text-wrapper {
        width: 92%;
    }

    .hero-section .hero-banner .text-wrapper .inner {
        padding: 50px 26px;
    }

    .hero-section .hero-banner .text-wrapper .title-text {
        font-size: 2.5rem;
    }

    .hero-section .hero-banner .text-wrapper p {
        font-size: 1.2rem;
        font-weight: 600;
        max-width: 700px;
    }
}

@media screen and (max-width: 767px) {
    .hero-section .hero-banner .text-wrapper .title-text {
        top: 35%;
        font-size: 2rem;
    }

    .hero-section .hero-banner .text-wrapper p {
        font-size: 1rem;
        max-width: 600px;
    }
}

@media screen and (max-width: 575px) {
    .hero-section .hero-banner .text-wrapper .title-text {
        font-size: 1.6rem;
    }

    .hero-section .hero-banner .text-wrapper .title-text br {
        display: none;
    }

    .hero-section .hero-banner .text-wrapper p {
        font-size: 0.9rem;
        max-width: 600px;
    }
}

/* >>> Hero Section  */

/* >>> Intro Section Start*/

.intro-sec .text-wrapper .title-text {
    font-size: 1.8rem;
    margin-top: 25px;
}

.intro-sec .img-wrapper {
    position: relative;
}

.intro-sec .image-boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}

.image-boxes-wrapper .inner-box {
    position: relative;
    width: 70%;
    height: auto;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.image-boxes-wrapper .inner-box img {
    width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1.05;
    object-fit: cover;
    object-position: center;
}

.image-boxes-wrapper .inner-box.image-small {
    width: 50%;
    margin-top: -42%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.11);
    margin-right: auto;
    margin-left: 4.5rem;
}

@media screen and (max-width: 1200px) {
    .intro-sec .image-boxes-wrapper {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .image-boxes-wrapper .inner-box {
        width: 80%;
        margin-left: 1px !important;
    }
}

/* >>> Intro Section End */

/* >>> About Sec  */
.about-sec {
    background-color: var(--theme-primary-color);
    overflow: visible;
    z-index: 2;
    padding-bottom: 0;
}

.about-sec .page-text-content .title-text {
    color: white;
}

.about-sec .page-text-content p {
    color: white;
}

.about-sec .page-text-content {
    position: relative;
    padding-bottom: 10%;
}

.about-sec .page-text-content .img-box {
    position: absolute;
    right: 0;
    width: 52%;
    min-width: 540px;
    top: 80%;
    transform: translateY(-50%);
    aspect-ratio: 3/2;
}

.about-sec .standard-btn {
    box-shadow: 5px 5px 0 white;
    color: var(--theme-secondary-color);
    background-color: white;
    box-shadow: 5px 5px 0 var(--theme-secondary-color);
}

.about-sec .standard-btn:hover {
    background-color: var(--theme-secondary-color);
    color: white;
    box-shadow: 5px 5px 0 white;
}

.about-sec .images-col {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 240px;
    width: 22.5%;
    gap: 15px;
    margin-bottom: -100px;
}

.about-sec .images-col .item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.about-sec .images-col .item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 991px) {
    .about-sec {
        margin-bottom: 15vw;
    }

    .about-sec .images-col {
        margin-bottom: 20px;
        width: 280px;
    }

    .about-sec .page-text-content {
        position: relative;
        padding-bottom: 60vw;
    }

    .about-sec .page-text-content .img-box {
        top: 85%;
        width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width: 767px) {
    .about-sec .images-col {
        margin-bottom: 20px;
        width: 240px;
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .about-sec .page-text-content .img-box {
        top: 80%;
        width: 100%;
        min-width: auto;
        margin-top: 40px;
        margin-bottom: 0;
    }
}

/* >>> About Sec End */


/* >>> Jewelry Making Start  */

.making-sec .images-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 95%;
    margin: auto;
}

.making-sec .images-grid .item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}

.making-sec .images-grid .item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.making-sec .images-grid .item.small-type {
    transform: scale(0.4);
}

.making-sec .images-grid .item.small-type.aos-animate {
    transform: scale(0.8);
}

.making-sec .images-grid .item.small-type.bottom-right {
    transform-origin: bottom right;
}

.making-sec .images-grid .item.small-type.bottom-left {
    transform-origin: bottom left;
}

.making-sec .images-grid .item.small-type.top-left {
    transform-origin: top left;
}

.making-sec .images-grid .item.small-type.top-right {
    transform-origin: top right;
}

@media screen and (max-width: 991px) {
    .making-sec .images-grid {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .making-sec .images-grid {
        width: 100%;
        gap: 10px;
    }

    .making-sec .images-grid .item {
        border-radius: 9px;
    }
}

/* >>> Jewelry Making End  */


/* >>> Packaging Sec Start  */

.packaging-sec .title-style-two {
    text-align: center;
    max-width: 500px;
    display: block;
}

.packaging-sec .image-wrapper {
    position: relative;
    display: block;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
}

.packaging-sec .image-wrapper img {
    object-fit: contain;
}

/* >>> Packaging Sec End  */



/* >>> Products Collection (Categorise Showcase) Sec Start  */
.collection-sec {
    background-color: var(--theme-secondary-color);
}

.collection-sec .page-text-content .sub-title-text {
    color: white;
    margin-bottom: 40px;
}

.collection-heading-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.collection-sec .collection-heading-list li {
    position: relative;
    display: inline-block;
    max-width: fit-content;
    font-size: 2.5rem;
    font-family: var(--primary-font);
    padding: 0;
    font-weight: 300;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
}

.collection-sec .collection-heading-list li::before {
    content: url("../images/arrow.svg");
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    clip-path: inset(0 100% 0 0);
    transition: opacity 0.3s ease, all 0.3s ease;
}

.collection-sec .collection-heading-list li:hover::before {
    clip-path: inset(0 0 0 0);
}

@media screen and (max-width: 991px) {
    .collection-heading-list {
        margin-bottom: 40px;
    }

    .collection-sec .collection-heading-list li {
        font-size: 1.8rem;
    }
}

.collection-sec .collection-heading-list li:hover {
    transform: translateX(10px);
}

.products-show-case.page-text-content .img-box {
    position: relative;
    aspect-ratio: 1/0.9;
    max-width: 550px;
    border-radius: 0;
}

@media screen and (max-width: 991px) {
    .products-show-case.page-text-content .img-box {
        max-width: 100%;
    }
}

.products-show-case .img-box .inner-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.92) translateZ(0);
    clip-path: inset(0 100% 0 0);
    transition: all 0.6s ease, transform 0.6s ease;
    opacity: 0;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

.products-show-case .img-box .inner-wrapper .caption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin: 0;
    background-color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #2c2c2c;
    font-weight: 400;
    z-index: 2;
}

.products-show-case .img-box .inner-wrapper.active {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1) translateZ(0);
    z-index: 1;
    transition-delay: 0s;
}

.category-showcase-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 25px;
}

.category-showcase-grid .item {
    width: 48%;
}

.category-showcase-grid .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-showcase-grid h3 {
    position: relative;
    display: inline-block;
    max-width: fit-content;
    font-size: 1.2rem !important;
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0 !important;
    font-weight: 300;
    color: white !important;
}

.category-showcase-grid .img-box {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px !important;
}

.category-showcase-grid .img-box img {
    aspect-ratio: 1/0.8 !important;
}

@media screen and (max-width: 575px) {
    .category-showcase-grid {
        gap: 12px;
        row-gap: 18px;
    }

    .category-showcase-grid .item {
        width: 47%;
    }

    .category-showcase-grid .img-box {
        border-radius: 6px !important;
    }

    .category-showcase-grid h3 {
        font-size: 0.8rem !important;
    }
}


/* >>> Products Collection (Categorise Showcase) Sec End  */

.slider-nav-wrapper {
    position: absolute;
    width: 95%;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
}

.slide-btn {
    position: absolute;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 0;
    background-color: var(--theme-primary-color);
    border-radius: 8px;
    margin: 0;
    top: 50%;
    left: auto;
    right: auto;
    transform: translateY(-50%) translateZ(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (max-width: 575px) {
    .slide-btn {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
}

.slide-btn:hover,
.slide-btn:active {
    background-color: var(--theme-secondary-color);
}

.slide-btn::after {
    position: absolute;
    content: "\F138";
    font-family: bootstrap-icons;
    font-weight: 400;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    transform-origin: center;
    color: white;
}

@media screen and (max-width: 575px) {
    .slide-btn::after {
        font-size: 1.2rem;
    }
}

.slide-btn.swiper-button-prev::after {
    transform: translate(-50%, -50%) rotate(-180deg);
}

.slide-btn.swiper-button-prev {
    left: 0;
    transform: translateY(-50%) translateX(50%) translateZ(0);
}

.slide-btn.swiper-button-next {
    left: auto;
    right: 0;
    transform: translateY(-50%) translateX(-50%) translateZ(0);
}

.slider-container:hover .slide-btn {
    transform: translateY(-50%) translateX(0) translateZ(0);
    opacity: 1;
}






/* >>>> Products related elements Styles  */

.products-list {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.products-list .slider-nav-wrapper {
    width: 98%;
    top: 40%;
}

.product-card-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

.product-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card a {
    display: block;
}

.product-card .product-img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 320px;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    overflow: hidden;
    background-color: var(--theme-primary-color);
}

.product-card-wrapper:nth-child(even) .product-card .product-img {
    background-color: var(--theme-secondary-color);
}

.product-card .product-img a {
    width: 100%;
    height: 100%;
    display: flex;
}

.product-card .product-img img {
    position: relative;
    min-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    aspect-ratio: 1/1.2;
    max-width: 600px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateZ(0) scale(1.01);
}

.product-card .title-text {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.4em;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.product-card .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card .category-text {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--theme-secondary-color);
    margin-bottom: 0.4em;
    text-transform: uppercase;
}

.product-card .title-text:hover {
    color: var(--theme-primary-color);
}

.product-card .price-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #494949;
    display: none;
}

.product-card:hover .product-img img {
    transform: scale(0.925) translateZ(0);
}

@media screen and (max-width: 1200px) {
    .product-card .product-img {
        min-height: 280px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .products-static-list:not(.view-2) .product-card .product-img {
        border-radius: 8px;
        min-height: auto;
    }

    .products-static-list:not(.view-2) .product-card .title-text {
        font-size: 0.75rem;
    }

    .products-static-list:not(.view-2) .product-card .category-text {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 767px) {
    .product-card .title-text {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-card .category-text {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 575px) {
    .product-card .product-img {
        border-radius: 8px;
        min-height: auto;
    }

    .products-static-list.view-2 .product-card .product-img {
        border-radius: 8px;
        min-height: auto;
    }

    .products-static-list.view-2 .product-card .title-text {
        font-size: 0.75rem;
    }

    .products-static-list.view-2 .product-card .category-text {
        font-size: 0.65rem;
    }

    .products-static-list.view-1 .product-card .product-img {
        border-radius: 10px;
    }

    .products-static-list.view-1 .product-card .title-text {
        font-size: 0.85rem;
    }

    .products-static-list.view-1 .product-card .category-text {
        font-size: 0.7rem;
    }
}


.products-static-list.view-5 .product-card .product-img {
    border-radius: 10px;
    min-height: auto;
}

.products-static-list.view-5 .product-card .title-text {
    font-size: 0.75rem !important;
}

.products-static-list.view-5 .product-card .category-text {
    font-size: 0.65rem !important;
}



.products-static-list {
    position: relative;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 14px;
    row-gap: 30px;
    overflow: hidden;
}

/* additional css  */
.products-static-list .product-card {
    transform: translateY(0) translateZ(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
    transition-delay: var(--delay);
}

.products-static-list .product-card.animating {
    transform: translateY(40px) translateZ(0);
    opacity: 0;
}

/* additional end  */


.products-static-list.view-5 {
    grid-template-columns: repeat(5, 1fr);
}

.products-static-list.view-4 {
    grid-template-columns: repeat(4, 1fr);
}

.products-static-list.view-3 {
    grid-template-columns: repeat(3, 1fr);
}

.products-static-list.view-2 {
    grid-template-columns: repeat(2, 1fr);
}

.products-static-list.view-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media screen and (max-width: 1440px) {
    .products-static-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1280px) {
    .products-static-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .products-static-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .products-static-list {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
}

/* additional css */
/* .cstm-dd {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding-block: 4px;
} */

.projects-filters-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 8px;
}

.projects-filters-wrapper .title-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c2c2c;
}

.projects-filters-wrapper .select-wrapper {
    min-width: 220px;
    max-width: 220px;
}

.projects-filters-wrapper .select-wrapper .nice-select {
    border: 1px solid #dddddd;
    font-size: 0.8rem;
    height: 45px !important;
}

@media screen and (max-width: 767px) {
    .projects-filters-wrapper .title-text {
        font-size: 0.85rem;
    }

    .projects-filters-wrapper .select-wrapper {
        min-width: 220px;
        max-width: 220px;
    }
}

@media screen and (max-width: 457px) {
    .projects-filters-wrapper .title-text {
        font-size: 0.9rem;
    }

    .projects-filters-wrapper {
        width: 100%;
    }

    .projects-filters-wrapper .select-wrapper {
        width: 100%;
        min-width: 180px;
        max-width: none;
    }
}

#no-results {
    position: relative;
    height: 40vh;
    width: 100%;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}

/* additional css end */
.products-toolbar {
    position: relative;
    padding: 12px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    gap: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.grid-settings {
    display: flex;
    gap: 15px;
}

.grid-settings button {
    position: relative;
    border: none;
    outline: none;
    background: transparent;
    background-color: transparent;
    color: #a1a1a1;
    width: auto;
    height: 35px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-settings button svg {
    height: 13px;
    width: auto;
    line-height: 0;
}

.grid-settings button.active {
    color: var(--theme-primary-color);
}

.grid-settings button.grid-1 {
    display: none;
}

.grid-settings button.grid-2 {
    display: none;
}


@media screen and (max-width: 1400px) {
    .grid-settings button.grid-5 {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .grid-settings {
        display: flex;
        gap: 8px;
    }

    .grid-settings button svg {
        height: 15px;
    }

    .grid-settings button.grid-1 {
        display: none;
    }

    .grid-settings button.grid-2 {
        display: flex;
    }

    .grid-settings button.grid-4 {
        display: none;
    }

}

@media screen and (max-width: 575px) {
    .products-toolbar {
        padding: 10px;
        border-radius: 8px;
    }

    .grid-settings button svg {
        height: 13px;
    }

    .grid-settings button.grid-1 {
        display: flex;
    }

    .grid-settings button.grid-3 {
        display: none;
    }
}

.sticky-toolbar {
    position: fixed;
    display: none;
    right: 0;
    top: calc(50% + 90px);
    /* bottom: 5%; */
    /* height: ; */
    /* max-height: 50vh; */
    transform: translateY(-50%) translateZ(0);
    padding: 12px;
    background-color: white;
    border-radius: 8px 0 0 8px;
    z-index: 997;
    box-shadow: 8px 0 29px rgba(0, 0, 0, 0.094);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-toolbar .gem-type-list {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.gem-type-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    border: none;
}

.gem-type-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.icon-wrapper .icon {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #a5a5a5;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    transition: background-color 0.3s ease;
    pointer-events: none !important;
}

.gem-type-item:hover .icon-wrapper .icon {
    background-color: var(--theme-secondary-color);
}

.gem-type-item.active .icon-wrapper .icon {
    background-color: var(--theme-secondary-color);
}

.gem-type-item.active .icon-wrapper {
    border-color: var(--theme-secondary-color);
}

.gem-type-item .desc {
    position: relative;
    font-size: 0.8rem;
    margin: 0;
    margin-top: 4px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    color: #7a7a7a;
    transition: color 0.3s ease;
}

.gem-type-item.active .desc {
    color: #1a1a1a;
}

.gem-type-item .count {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    transform: translate(25%, -25%);
    line-height: 1;
    border: 1px solid #f0f0f0;
    background-color: white;
    color: #7e7e7e;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.gem-type-item.active .count {
    border-color: var(--theme-secondary-color);
    color: var(--theme-primary-color);
}

@media screen and (max-width: 991px) {
    .gem-type-item .icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 6px;
    }

    .gem-type-item .desc {
        font-size: 0.65rem;
        margin-top: 4px;
    }

    .gem-type-item .count {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 767px) {
    .static-toolbar {
        display: none;
    }

    .gem-type-item .desc {
        display: none;
    }

    .sticky-toolbar {
        display: block;
    }


    .gem-type-item .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .gem-type-item .count {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }
}

@media screen and (max-width: 424px) {
    .gem-type-list {
        gap: 12px;
    }

    .gem-type-item .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .gem-type-item .count {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
}


/* >>>> GemStone Page Filter Tabs and Product Card */

.gemstone-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-item {
    position: relative;
    display: flex;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transform: translateY(40px) translateZ(0);
    opacity: 0;
    transition-delay: var(--delay) !important;
    transition: transform 1s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
}

.tab-pane.show .product-item {
    transform: translateY(0) translateZ(0);
    opacity: 1;
}

.product-item .item-image {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    min-width: 160px;
}

.product-item .item-image img {
    position: relative;
    max-width: 160px;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    aspect-ratio: 1/1;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease;
}

.product-item .item-image img:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(1) translateZ(0);
    opacity: 0;
    display: none;
}

.product-item .item-image img:nth-child(2) {
    display: block;
    pointer-events: none;
}

.product-item:hover .item-image img:nth-child(2) {
    opacity: 1;
    transform: scale(1.5) translateZ(0);
}

.product-item .text-wrapper {
    padding: 8px 20px;
}

.product-item .text-wrapper h2 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6em;
}

.product-item .text-wrapper p {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--theme-secondary-color);
    text-transform: uppercase;
}

.product-item .text-wrapper p.label {
    font-size: 0.8rem;
}

.product-item .text-wrapper p.label span {
    text-transform: capitalize;
    color: #585858;
}

@media screen and (max-width: 1380px) {
    .gemstone-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .gemstone-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-item .item-image {
        min-width: 120px;
        max-width: 120px;
    }

    .product-item .text-wrapper h2 {
        font-size: 0.9rem;
    }

    .product-item .text-wrapper p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 767px) {
    .gemstone-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-item .item-image {
        min-width: 140px;
        max-width: 140px;
    }

    .product-item .text-wrapper h2 {
        font-size: 1.1rem;
    }

    .product-item .text-wrapper p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 575px) {
    .gemstone-list {
        gap: 14px;
    }

    .product-item {
        padding: 8px;
        border-radius: 10px;
    }

    .product-item .item-image {
        min-width: 100px;
        max-width: 100px;
        border-radius: 6px;
    }

    .product-item .text-wrapper {
        padding: 8px 15px;
    }

    .product-item .text-wrapper h2 {
        font-size: 0.8rem;
    }

    .product-item .text-wrapper p {
        font-size: 0.7rem;
    }
}

.tooltip {
    font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
    .tooltip {
        display: none !important;
    }
}


/* >>>> GemStone Page Filter Tabs and Product Card */

/* Product Inner pages elements styles */

.product-images-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-images-carousel .main-carousel {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.product-images-carousel .main-carousel .splide__slide img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.product-images-carousel .main-carousel::before {
    position: absolute;
    content: "\f00e";
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-family: "Font Awesome 6 Pro";
    font-size: 1.1rem;
    font-weight: 300;
    color: white;
    background-color: var(--theme-secondary-color);
    transform: translateX(20px) translateZ(0);
    transition: all 0.4s ease;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.product-images-carousel:hover .main-carousel::before {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

.product-images-carousel .thumb-carousel {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 10px;
    height: auto;
    width: calc(100% - 20px);
    transform: translateX(-50%);
    transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    padding: 8px;
    background-color: transparent;
    border-radius: 8px;
}

.product-images-carousel:hover .thumb-carousel {
    background-color: rgba(255, 255, 255, 0.856);
    backdrop-filter: blur(4px);
}

.product-images-carousel:hover .thumb-carousel .splide__track--nav>.splide__list>.splide__slide {
    --transform-y: 0;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transition-delay: var(--delay) !important;
}

.thumb-carousel .splide__track--nav>.splide__list>.splide__slide {
    position: relative;
    --transform-y: 60px;
    border: none;
    border-radius: 6px;
    opacity: 0;
    overflow: hidden;
    transform: translateY(var(--transform-y));
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    transition-delay: 0s;
}

.thumb-carousel .splide__track--nav>.splide__list>.splide__slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background-color: rgba(193, 158, 69, 0.507); */
    background-color: rgba(255, 255, 255, 0.466);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.thumb-carousel .splide__track--nav>.splide__list>.splide__slide.is-active::before {
    opacity: 1;
}

.thumb-carousel .splide__track--nav>.splide__list>.splide__slide img {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    transform: scale(1) translateZ(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumb-carousel .splide__track--nav>.splide__list>.splide__slide:hover img {
    transform: scale(1.1) translateZ(0);
}

/* --- Products details  */

.product-details-box {
    padding-left: 40px;
}

.product-details .product-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.product-details .product-meta-category {
    font-size: 0.9rem;
    margin-bottom: 0.6em;
    font-weight: 400;
    color: var(--theme-secondary-color);
    text-transform: capitalize;
}

.product-details .product-meta-category:hover {
    color: var(--theme-primary-color);
}

.product-details .product-desc p {
    font-size: 0.9rem;
    margin-bottom: 0.8em;
    font-weight: 300;
    color: #7a7a7a;
    text-align: justify;
}

.product-details .product-desc p strong {
    color: #272727;
    font-weight: 500;
}

.product-additional-info {
    margin-top: 30px;
}

.product-additional-info .title-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6em;
}

.product-additional-info ul {
    list-style: none !important;
}

.product-additional-info ul li {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 300;
    margin-bottom: 6px;
    display: flex;
    line-height: 1.6;
}

.product-additional-info ul li:last-child {
    margin-bottom: 0;
}

.product-additional-info ul li .meta-label {
    display: inline-block;
    min-width: 120px;
    margin-right: 8px;
}

.product-additional-info ul li .meta-value {
    color: #0e0e0e;
    font-weight: 400;
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(83, 83, 83, 0.082);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: white;
}

tbody {
    border-radius: 8px;
}

table,
th,
td {
    border: none;
}

th:not(:last-child) {
    border-right: 1px solid var(--theme-secondary-color);
}

td:not(:last-child) {
    border-right: 1px solid #ececec;
}

tr td:first-child,
tr th:first-child {
    padding-left: 20px;
}

th,
td {
    padding: 8px 12px;
    text-align: left;
    white-space: nowrap;
}

tr:not(:last-child):not(thead tr) {
    border-bottom: 1px solid #ececec;
}

th {
    font-weight: 300;
    background-color: var(--theme-secondary-color);
    white-space: nowrap;
    color: white;
}

.material-images {
    display: flex;
}

.material-images img {
    width: 40px;
    height: 35px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .product-details-box {
        padding-left: 30px;
    }
}

@media screen and (max-width: 991px) {
    .product-images-carousel .main-carousel {
        border-radius: 10px;
    }

    .product-images-carousel .thumb-carousel {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        width: 100%;
        background-color: white;
        backdrop-filter: none;
        padding: 8px 0;
    }

    .thumb-carousel .splide__track--nav>.splide__list>.splide__slide {
        transform: none;
        opacity: 1;
    }

    .product-details-box {
        padding: 30px 16px;
    }

    .product-details .product-title {
        font-size: 1.6rem;
    }

    .product-details .product-meta-category {
        font-size: 0.85rem;
    }

    .product-details .product-desc p {
        font-size: 0.85rem;
    }

    .product-additional-info .title-text {
        font-size: 1.1rem;
    }

    .product-additional-info ul li {
        font-size: 0.85rem;
    }

    .table-wrapper {
        margin-top: 10px;
    }

    table {
        font-size: 0.85rem;
    }

    .material-images img {
        width: 40px;
        height: 30px;
    }
}

@media screen and (max-width: 575px) {
    .product-images-carousel .main-carousel {
        border-radius: 8px;
    }

    .product-details .product-title {
        font-size: 1.4rem;
    }

    .product-additional-info ul li {
        font-size: 0.8rem;
    }

    table {
        font-size: 0.8rem;
    }
}

/* Product Inner pages elements ends */



/* Who we are page   */


.about-img-pres {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-imgs-pres {
    position: relative;
}

.map-imgs-pres .img-wrapper img {
    max-height: 680px;
}

.map-imgs-pres .imgs-cols {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 240px;
    max-width: 240px;
    width: 40%;
    gap: 12px;
}

.map-imgs-pres .imgs-cols .item {
    position: relative;
    overflow: hidden;
}

.map-imgs-pres .imgs-cols .item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.map-imgs-pres .imgs-cols .item:nth-child(2) {
    transform: scale(0.85);
    transform-origin: left bottom;
}

.map-imgs-pres .imgs-cols .item:nth-child(3) {
    transform: scale(0.85);
    transform-origin: top right;
}


@media screen and (max-width: 575px) {
    .map-imgs-pres .imgs-cols {
        min-width: 200px;
        max-width: 200px;
        gap: 10px;
    }

    .map-imgs-pres .imgs-cols .item img {
        border-radius: 10px;
    }
}

.about-owener-box {
    position: relative;
    max-width: 1200px;
    width: 97%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.about-owener-box .img-wrapper {
    position: relative;
    width: 25%;
    margin-right: -30px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

.about-owener-box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--theme-primary-color);
    width: calc(100% - 12.5%);
    height: 100%;
    border-radius: 10px;
    z-index: 2;
}

.about-owener-box .text-wrapper {
    position: relative;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 60px;
    color: white;
    z-index: 2;
}

.about-owener-box .heading {
    margin-bottom: 30px;
    width: fit-content;
}

.about-owener-box .heading h3 {
    display: block;
    color: white;
    font-family: var(--alt-font);
    font-size: 3.25rem;
    font-weight: 500;
    margin-bottom: 0;
}

.about-owener-box .heading span {
    font-size: 1.05rem;
    font-weight: 400;
    display: block;
}

.about-owener-box .text-wrapper p {
    font-size: 0.95rem;
    text-align: justify;
}

.about-owener-box .stones-img {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(0, 50%);
    z-index: 2;
    mix-blend-mode: multiply;
}

.about-owener-box .stones-img img {
    max-width: 150px;
}

@media screen and (max-width: 991px) {
    .about-owener-box .img-wrapper {
        border-radius: 10px;
    }

    .about-owener-box .text-wrapper {
        border-radius: 10px;
        padding: 30px 60px;
    }

    .about-owener-box .heading h3 {
        font-size: 2.6rem;
    }

    .about-owener-box .heading span {
        font-size: 0.95rem;
    }

    .about-owener-box .text-wrapper p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 767px) {
    .about-owener-box {
        flex-direction: column;
        margin-bottom: 40px;
        padding: 0;
    }

    .about-owener-box .img-wrapper {
        width: 90%;
        margin: 0;
    }

    .about-owener-box::before {
        width: 100%;
        height: calc(100% - 5%);
    }

    .about-owener-box .text-wrapper {
        padding: 30px;
        width: 100%;
    }

    .about-owener-box .text-wrapper p {
        font-size: 0.85rem;
    }
}

.teams-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    padding-right: 40px;
}

.teams-images-wrapper .inner-box {
    position: relative;
    width: 90%;
    height: auto;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

.teams-images-wrapper .inner-box:nth-child(2) {
    width: 60%;
    margin-top: -12%;
    margin-left: auto;
}

.teams-images-wrapper .inner-box img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 991px) {
    .teams-images-wrapper {
        padding: 0;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 575px) {
    .teams-images-wrapper .inner-box {
        border-radius: 8px;
    }
}

/* About Tanzanite Page  */

.about-tanzanite-block .images-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-left: 60px;
}

.about-tanzanite-block .images-container .inner-col {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}

.about-tanzanite-block .images-container .inner-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-tanzanite-block .inner-col .img-wrapper {
    position: relative;
    height: auto;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.about-tanzanite-block .inner-col .img-wrapper.small-type {
    transform: scale(0);
    border-radius: 20px;
}

.about-tanzanite-block .inner-col .img-wrapper.small-type.aos-animate {
    transform: scale(0.4);
}

.about-tanzanite-block .inner-col .img-wrapper.small-type.bottom-left {
    transform-origin: bottom left;
}

.about-tanzanite-block .inner-col .img-wrapper.small-type.top-left {
    transform-origin: top left;
}

.about-tanzanite-block .inner-col .img-wrapper.small-type.top-right {
    transform-origin: top right;
}

.about-tanzanite-block .images-row {
    max-width: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.about-tanzanite-block .images-row .img-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

/* .about-tanzanite-block .images-container .inner-col:nth-child(1) {
    margin-bottom: 60px;
}

.about-tanzanite-block .images-container .inner-col:nth-child(2) {
    margin-top: 60px;
} */

.raw-tanzanite-sec {
    background-color: var(--theme-primary-color);
}

.raw-tanzanite-sec .page-text-content p {
    color: white;
}

.raw-tanzanite-sec .page-text-content p.heading-para {
    font-size: 1.6rem;
}

/* >>> Tanzanite Hero Sec  */

.tanzanite-hero-sec .content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 500px;
}

.tanzanite-hero-sec .stone-img {
    max-width: 200px;
}

.tanzanite-hero-sec h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.tanzanite-hero-sec .sub-title-text {
    font-size: 1.4rem;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--theme-primary-color);
}

.tanzanite-hero-sec p {
    font-size: 0.95rem;
    color: #7a7a7a;
}

@media screen and (max-width: 991px) {
    .tanzanite-hero-sec .stone-img {
        max-width: 160px;
    }

    .tanzanite-hero-sec h3 {
        font-size: 1.4rem;
    }

    .tanzanite-hero-sec .sub-title-text {
        font-size: 1.1rem;
    }

    .tanzanite-hero-sec p {
        font-size: 0.85rem;
    }

    .raw-tanzanite-sec .page-text-content p.heading-para {
        font-size: 1.4rem;
    }

    .about-tanzanite-block .images-container {
        padding-left: 0;
        margin-top: -8%;
    }
}

@media screen and (max-width: 575px) {
    .raw-tanzanite-sec .page-text-content p.heading-para br {
        display: none;
    }

    .about-tanzanite-block .images-container {
        gap: 8px;
    }

    .about-tanzanite-block .images-container .inner-col {
        gap: 8px;
    }

    .about-tanzanite-block .inner-col .img-wrapper {
        border-radius: 8px;
    }

    .about-tanzanite-block .inner-col .img-wrapper.small-type {
        border-radius: 15px;
    }
}


/* >>> Tanzanite Map Sec  */

.tanzanite-map-pres {
    position: relative;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.tanzanite-map-pres .map-wrapper {
    position: relative;
    display: block;
}

.tanzanite-map-pres .map-wrapper img {
    object-fit: contain;
    object-position: center;
}

.tanzanite-map-pres .map-wrapper span {
    position: absolute;
    font-size: 0.9rem;
    font-weight: 500;
    top: 54%;
    left: 77.25%;
}

.tanzanite-map-pres .map-wrapper .line {
    position: absolute;
    top: 56.25%;
    right: 30%;
    left: auto;
    background-color: var(--theme-primary-color);
    width: 0;
    height: 1px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.3s !important;
}

.tanzanite-map-pres .map-wrapper .line::before {
    position: absolute;
    content: "\f192";
    font-family: "Font Awesome 6 Pro";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: var(--theme-primary-color);
    opacity: 0;
    transition: opacity 0.4s ease !important;
    transition-delay: 0.5s !important;
}

.tanzanite-map-pres .map-wrapper .line.aos-animate::before {
    opacity: 1;
}

.tanzanite-map-pres .map-wrapper .line.aos-animate {
    width: 600px;
}

.tanzanite-map-pres .highlight-box {
    position: absolute;
    max-width: 380px;
    top: 45%;
    left: 8%;
}

.tanzanite-map-pres .highlight-box .img-wrapper {
    position: relative;
    max-width: 30%;
    height: auto;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 15px;
}

.tanzanite-map-pres .highlight-box .img-wrapper img {
    width: 100%;
}

.tanzanite-map-pres .highlight-box .title-text {
    font-size: 1.1rem;
    margin-bottom: 0.4em;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--theme-secondary-color);
}

.tanzanite-map-pres .highlight-box p {
    font-size: 0.85rem;
    font-weight: 300;
    color: #2c2c2c;
}

.tanzanite-map-pres .highlight-box p b {
    font-weight: 600;
}

@media screen and (max-width: 1400px) {
    .tanzanite-map-pres .map-wrapper .line {
        position: absolute;
        top: 56%;
        right: 30%;
    }

    .tanzanite-map-pres .map-wrapper .line.aos-animate {
        width: 49%;
    }
}

@media screen and (max-width: 991px) {
    .tanzanite-map-pres {
        padding-bottom: 35px;
    }

    .tanzanite-map-pres .highlight-box {
        top: 38%;
        left: 5%;
    }
}

@media screen and (max-width: 767px) {
    .tanzanite-map-pres .map-wrapper {
        display: none;
    }

    .tanzanite-map-pres .highlight-box {
        position: relative;
        max-width: 380px;
        bottom: auto;
        left: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tanzanite-map-pres .highlight-box .img-wrapper {
        border-radius: 10px;
        max-width: 100%;
    }

    .tanzanite-map-pres .highlight-box .title-text {
        font-size: 1rem;
    }

    .tanzanite-map-pres .highlight-box p {
        font-size: 0.8rem;
    }
}


/* Jewelry Making Page Styles  */

/* >>> banner  */

.jm-banner {
    position: relative;
    width: 100%;
    height: 56vw;
    min-height: 500px;
    max-height: 800px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.jm-banner .swiper-slide img,
.fade-slider .swiper-slide img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.jm-banner .desc-text,
.fade-slider .desc-text {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 30px;
    padding: 6px 14px;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: #2c2c2c;
    white-space: nowrap;
    z-index: 2;
}

.jm-banner .desc-text span,
.fade-slider .desc-text span {
    color: #7e7e7e;
}

@media screen and (max-width: 991px) {
    .jm-banner {
        min-height: 400px;
    }

    .jm-banner .desc-text,
    .fade-slider .desc-text {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 767px) {
    .jm-banner {
        height: 60vw;
        border-radius: 10px;
    }
}

@media screen and (max-width: 575px) {
    .jm-banner {
        min-height: 320px;
        border-radius: 8px;
    }

    .jm-banner .desc-text,
    .fade-slider .desc-text {
        font-size: 0.7rem;
        padding: 4px 12px;
        bottom: 10px;
    }
}

/* Contact Us Page Styles  */
.map-container {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    min-height: 600px;
}

.contact-details-sec .left-side {
    border-right: 1px solid var(--theme-secondary-color);
    padding-right: 30px;
}

.contact-details-sec .right-side {
    padding-left: 30px;
}

.contact-details-box {
    margin-bottom: 30px;
}

.contact-widget .widget-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.6em;
    text-transform: capitalize;
}

.contact-widget address {
    display: flex;
}

.contact-widget p {
    font-size: 0.9rem;
    color: #5c5c5c;
}

.contact-widget p:last-child {
    margin-bottom: 0;
}

.contact-widget p b {
    color: #2c2c2c;
    font-weight: 400;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item b {
    font-weight: 400;
    color: #d6d6d6 !important;
}

.contact-widget a {
    color: #5c5c5c;
}

.contact-widget a:hover {
    color: var(--theme-primary-color);
}

.contact-widget .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 35px;
    height: 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-right: 12px;
    background-color: var(--theme-primary-color);
    color: white;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.4em;
    font-weight: 500;
}

.form-desc {
    line-height: 1.4;
    font-size: 0.9rem;
    color: #3b3b3b;
}

.form-desc span {
    font-size: 1.3em;
    color: var(--theme-primary-color);
    padding-left: 0.1em;
}

.contact-form {
    margin-top: 30px;
}

.input-wrapper {
    margin-bottom: 20px;
}

.contact-form .form-control {
    outline: none;
    font-weight: 300;
    border: 1px solid #dfdfdf;
    background: transparent;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1;
    transition: border-color 0.3s ease !important;
}

form .form-control:focus {
    border-color: var(--theme-primary-color);
    box-shadow: none !important;
}

.contact-form .form-control::placeholder {
    color: #858585;
}

.invalid-feedback {
    font-size: 0.8rem;
}

.contact-form .button-wrapper {
    display: flex;
    justify-content: flex-end;
}

.form-submit-btn[data-loading="true"] .spinner-border {
    display: block;
}

.form-submit-btn[data-loading="true"] span::after {
    display: none;
}

.form-submit-btn .spinner-border {
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
    border-width: 0.15em;
    color: var(--theme-secondary-color);
    margin-left: 6px;
    display: none;
    line-height: 0;
}

.form-submit-btn:hover .spinner-border {
    color: #ffffff;
}

.iti {
    width: 100%;
}

.iti__dropdown-content {
    border-radius: 8px;
}

.iti__selected-country-primary {
    padding-left: 14px;
}

.iti__search-input {
    border-radius: 6px;
    font-size: 0.85rem;
    padding: 8px 10px;
    border: 1px solid rgb(218, 218, 218);
}

.iti__country-name,
.iti__dial-code {
    font-size: 0.85rem;
    font-weight: 300;
}

.iti .iti__selected-dial-code {
    line-height: normal !important;
    font-size: 0.9rem;
}

@media screen and (max-width: 1200px) {
    .map-container iframe {
        min-height: 420px;
    }

    .contact-widget .widget-title {
        font-size: 1rem;
    }

    .contact-widget p {
        font-size: 0.85rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-desc {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 991px) {
    .contact-details-sec .left-side {
        border: none;
        border-bottom: 1px solid var(--theme-secondary-color);
        padding: 0 12px;
        padding-bottom: 20px;
    }

    .contact-details-sec .right-side {
        padding: 0 12px;
    }

    .contact-widget address {
        padding-right: 10px;
    }

    .form-container {
        margin: 40px 0;
    }

    .contact-form .form-control {
        font-size: 0.85rem;
    }

    .iti .iti__selected-dial-code {
        font-size: 0.85rem;
    }

    .input-wrapper {
        margin-bottom: 14px;
    }
}

@media screen and (max-width: 575px) {
    .map-container iframe {
        min-height: 340px;
        max-height: 340px;
    }
}

/* Footer  */
.main-footer {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.footer-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 60px;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-logo.africab {
    margin-bottom: 0;
}

.footer-logo.africab img {
    max-width: 240px;
}

.footer-social ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    gap: 15px;
    margin: 0;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--theme-secondary-color);
    border-radius: 8px;
    background-color: white;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.footer-social ul li a i {
    margin-top: 0.1em;
}

.footer-social ul li a:hover {
    color: white;
    background-color: transparent;
}

header .footer-social ul li a:hover {
    color: var(--theme-primary-color);
    background-color: transparent;
    border-color: var(--theme-secondary-color);
}

.main-footer .footer-nav {
    width: 100%;
    display: block;
}

.main-footer .footer-nav .nav-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.6em;
    line-height: 1.2;
    color: #1a1a1a;
}

.main-footer .footer-nav p {
    font-size: 0.9rem;
    color: #7a7a7a;
}

.main-footer .footer-nav .nav-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.main-footer .footer-nav .nav-item {
    position: relative;
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    text-transform: capitalize;
    margin: 0;
    line-height: normal;
}

.main-footer .footer-nav .nav-item:last-child {
    border: none;
}

.main-footer .footer-nav .nav-item a {
    color: #7a7a7a;
    transition: color 0.4s ease;
}

.main-footer .footer-nav .nav-item a:hover {
    color: var(--theme-primary-color);
}

.footer-bottom {
    padding: 20px 60px;
    background-color: var(--theme-secondary-color);
}

.copyright-text {
    font-size: 0.8rem;
    color: #ffffff;
    margin-left: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 0;
    font-family: var(--primary-font);
    cursor: default;
}

.copyright-text span {
    text-transform: uppercase;
    font-weight: 500;
}

.credit-text {
    font-size: 0.8rem;
    color: #ffffff;
    margin-left: auto;
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 0;
    font-family: var(--primary-font);
}

.copyright-text a {
    color: white;
    font-weight: 500;
    transition: color 0.4s ease;
}

.copyright-text a:hover {
    color: black;
}

@media screen and (max-width: 1200px) {
    .footer-inner {
        padding: 50px 15px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 991px) {
    .footer-inner {
        padding: 50px 8px;
        padding-bottom: 30px;
    }

    .footer-logo.africab {
        margin-left: -4px;
    }

    .footer-social ul {
        gap: 18px;
    }

    .main-footer .footer-nav .nav-list {
        justify-content: center;
    }

    .main-footer .footer-nav .nav-item {
        width: auto;
        font-size: 0.85rem;
    }

    .main-footer .footer-nav .nav-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .main-footer .footer-nav p {
        font-size: 0.85rem;
        max-width: none;
    }


    .copyright-text {
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .credit-text {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 25px 8px;
    }
}

@media screen and (max-width: 575px) {
    .footer-social ul {
        gap: 18px;
    }

    .main-footer .footer-nav .nav-item {
        font-size: 0.8rem;
    }

    .footer-logo.africab img {
        max-width: 200px;
    }

    .copyright-text {
        font-size: 0.7rem;
    }

    .main-footer .footer-nav p {
        font-size: 0.8rem;
    }

    .credit-text {
        font-size: 0.7rem;
    }
}

/* Animations */

.slideBottom {
    -webkit-animation: slideBottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slideBottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slideBottom {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

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

@keyframes slideBottom {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

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

/* contact us showroom section  */
.fade-slider {
    position: relative;
}

.fade-slider .swiper-wrapper {
    overflow: hidden;
}

.fade-slider .swiper-slide {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.fade-slider .swiper-slide img {
    width: 100%;
    height: 60vw;
    min-height: 500px;
    max-height: 800px;
    object-fit: cover;
    object-position: center;
}

.fade-slider .slide-btn.swiper-button-next,
.fade-slider .slide-btn.swiper-button-prev {
    opacity: 1;
}


@media(max-width: 991px) {
    .fade-slider .swiper-slide img {
        min-height: 400px;
    }
}

@media(max-width:575px) {
    .fade-slider .swiper-slide img {
        min-height: 320px;
    }
}