@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    --gold: #CB8918;
    --focus-ring: #CB8918;
    --focus-offset: 4px;
}

@font-face {
    font-family: "Scotch Display";
    src: url(fonts/ScotchDisplay-Medium.ttf) format("truetype");
}

@font-face {
    font-family: "Playfair";
    src: url(fonts/Playfair-VariableFont_opsz\,wdth\,wght-BigNumerals-CormorantAmp.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Playfair";
    src: url(fonts/Playfair-Italic-VariableFont_opsz\,wdth\,wght-BigNumerals-CormorantAmp.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* @font-face {
    font-family: "alchemy";
    src: url(fonts/AlchemyCustomFont-Bold.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "alchemy";
    src: url(fonts/AlchemyCustomFont-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
} */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    background: #fff;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Playfair", serif;
}

img {
    max-width: 100%;
}

a,
button {
    text-decoration: none;
    color: inherit;
    font-family: "IBM Plex Sans", sans-serif;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
    outline: none;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 10001;
    padding: 0.85rem 1rem;
    background: #111;
    color: #fff;
    border-radius: 0.4rem;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.placeholder-link[aria-disabled="true"] {
    opacity: 0.72;
    cursor: not-allowed;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 0.95rem;
    color: #282828;
    font-weight: 500;
}

.form-help {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #4b4b4b;
}

/* .menu-overlay[hidden],
.side-drawer[hidden],
.bottom-drawer[hidden],
.video-modal[hidden] {
    display: none !important;
} */


/* CONTAINER */
.hero-container {
    width: min(1400px, 92%);
    margin: auto;
    position: relative;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

/* HEADER */
.header {
    background: #282828;
    padding: 0;
    position: sticky;
    top: 0px;
    z-index: 8;
    box-shadow: 0 3px 0 #282828;
}

.logo {
    width: 120px;
    transition: width 0.3s ease;
    padding: 4px 0;
}

.header.fixed {}

.header.fixed .logo {
    width: 100px;
}

.header .nav-link,
.actions {
    transition: all 0.3s ease;
}

.header .search-box,
.header .actionlink {
    transition: all 0.3s ease;
}

.header.fixed .nav-link {
    font-size: 80%;
    padding: 10px 0;
}

.header.fixed .actions {
    transform: scale(80%);
    transform-origin: right center;
}

@media (max-width: 992px) {
    .header.fixed .logo {
        width: 70px;
    }

    .header.fixed .search-box,
    .header.fixed .actionlink {
        transform: unset;
    }
}

/* NAV */
.nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.nav-sec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* LOGO */
.logo span {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: white;
}

.logo small {
    display: block;
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    color: #aaa;
}

/* NAV LINKS */
.nav-items {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:focus-within::after {
    width: 100%;
}

.nav-link {
    color: #fff;
    font-size: clamp(0.8rem, 91vw, 0.95rem);
    cursor: pointer;
    position: relative;
    font-weight: 400;
    letter-spacing: 10%;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* RIGHT SIDE ACTIONS */
.actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.actionlink {
    background: #202020;
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 10%;
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.3s ease;
}

.actionlink:hover {
    background: #373737;
}

.actionlink.search {
    background: #313030;
}

.actionlink.search:hover {
    background: #404040;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #F5EFEC;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    z-index: 10;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown:focus-within .dropdown-menu {
    display: flex;
}

/* ITEMS */

.dropdown-item {
    display: block;
    border-left: 1px solid #A1A1A1;
    position: relative;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: all 0.4s ease;
}

.dropdown-item:hover::before {
    opacity: 1;
}


.dropdown-nav-link {
    display: block;
    padding: 8px 10px;
    color: #282828;
    font-weight: 300;
    transition: all 0.3s ease;
    font-size: clamp(.9rem, 1vw, 1rem);
}

/* ACTIVE */
.dropdown-nav-link.active,
.dropdown-nav-link:hover {
    color: #000;
    font-weight: 500;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border-radius: 50px;
    padding: 10px 20px;
    background: transparent;
    color: #000000;
    outline: none;
    border: solid 1px #D3D3D3;
    cursor: pointer;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border-radius: 5px;
    padding: 20px 22px;
    background: #000;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    letter-spacing: 10%;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-arrow.playvid {
    gap: 14px;
    padding: 15px;
    margin-top: 25px;
}

/* .btn-arrow.playvid img {
    width: 16px;
    height: 16px;
} */

.btn-arrow span {
    position: relative;
}

.btn-outline span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow img {
    width: 25px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-outline span img {
    display: none;
    width: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-outline.active span img {
    display: inline-block;
}

.btn-arrow::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--gold);
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--gold);
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.btn-outline:hover,
.btn-outline.active {
    border: solid 1px var(--gold);
    color: #fff !important;
}

.btn-arrow:hover::before {
    width: 100%;
}

.btn-outline:hover::before,
.btn-outline.active::before {
    width: 100%;
}

.btn-arrow:hover img {
    transform: translateX(6px);
    filter: brightness(100);
}

.hero {
    background: #282828;
    padding-top: 10px;
}

.hero-slide {
    position: relative;
}

.hero-img-box {
    width: 100%;
    height: calc(100vh - 285px);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.3);
    transition: transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE SLIDE → ZOOM OUT */
.slick-current .hero-img {
    transform: scale(1);
}

.hero-content {
    position: absolute;
    bottom: 11%;
    left: 5%;
    max-width: 390px;
    z-index: 2;
}

.hero-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    padding-left: 5%;
}

.hero-footer-left {
    max-width: 750px;
}

.hero-footer-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.7;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.custom-dots {
    display: flex;
    gap: 20px;
}

/* DOT BASE */
.custom-dots .dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.hero-content h2 {
    color: #fff;
    line-height: 1;
    font-family: "Playfair", serif;
    /* font-size: clamp(2.5rem, 4.25vw, 4.25rem); */
    font-size: clamp(2.5rem, 8vh, 4.25rem);
    font-weight: 500;
    letter-spacing: -5%;
    line-height: .9;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(60px);
    transition: all 2s ease 0.5s;
}

/* ACTIVE TEXT */
.slick-current .hero-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.hero-footer {
    opacity: 0;
    transition: all 2s ease 0.5s;
    z-index: -1;
    visibility: hidden;
    user-select: none;
    position: relative;
}

.slick-current .hero-footer {
    opacity: 1;
    visibility: visible;
    user-select: auto;
    z-index: 2;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img-wrapper::after,
.hero-video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(224.43deg, rgba(0, 0, 0, 0) 34.07%, #000 102.13%);
}

.slick-slide {
    transition: opacity 1s ease;
}

/* ACTIVE DOT */
.custom-dots .dot.active {
    background: #fff;
    transform: scale(1.1);
}

.btn-next {
    width: 6.5vw;
    height: 6.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next img {
    transition: all 0.3s ease;
}

.btn-next:hover {
    background: #000;
}

.btn-next:hover img {
    transform: translateX(5px);
}

.dots-arrows {
    position: absolute;
    bottom: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 100px;
}

/* SECTION BACKGROUND */
.advantage {
    background: #f3f3f3;
    padding: 100px 0;
}

/* GRID */
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* LEFT SIDE */
.heading1 {
    font-family: "Playfair", serif;
    font-size: clamp(3rem, 6vw, 6rem);
    color: #1B1B1B;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -5%;
    line-height: .9;
}

.heading1.alchemy {
    font-family: "alchemy", serif;
    font-weight: 400;
}

.heading1.font6 {
    font-size: clamp(5rem, 6vw, 6rem);
}

.heading1.adv {
    margin-bottom: 40px;
}

/* BREADCRUMB */
.breadcrumb {
    display: inline-flex;
    gap: 10px;
    font-size: 14px;
    color: #282828;
    margin-bottom: 20px;
    text-decoration: underline;
    cursor: pointer;
}

/* TEXT */
.adv-left p {
    color: #282828;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* RIGHT GRID */
.adv-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-disclaimer {
    width: 100%;
    text-align: right;
    padding-top: 30px;
    font-size: 1rem;
}

/* CARD */
.card {
    background: #fff;
    padding: 2.5vw clamp(20px, 2vw, 32px);
    text-align: left;
    box-shadow: 0px 0px 30px 0px #00000012;
}

/* ICON */
.card .icon {
    width: 40px;
    margin-bottom: 20px;
}

/* NUMBER */
.card h3 {
    font-family: "Playfair", serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    color: #EA8423;
    margin-bottom: 10px;
    letter-spacing: -5%;
    font-weight: 500;
}

/* TEXT */
.card p {
    font-size: 1rem;
    color: #282828;
}

/* SECTION */
.investment {
    background: #fff;
    padding: 100px 0 160px;
    position: relative;
}


.inv-top p {
    max-width: 600px;
    color: #282828;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* VISUAL */
.inv-visual {
    position: relative;
    margin-top: 40px;
    max-width: 100vw;
    overflow: hidden;
}

.inv-visual img {
    width: 100%;
    object-fit: cover;
}

/* CARDS */
.inv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    position: relative;
    margin-top: -154px;
    z-index: 2;
}

/* CARD */
.inv-card {
    background: #282828;
    color: #fff;
    padding: 60px 48px;
    position: relative;
}

.inv-card.one {
    background: #282828 url("../images/mask1.svg") no-repeat top center;
}

.inv-card.two {
    background: #282828 url("../images/mask2.svg") no-repeat top right;
}

/* HEADING */
.inv-card h3 {
    font-family: "Playfair", serif;
    font-size: clamp(3rem, 4.25vw, 5rem);
    line-height: .85;
    letter-spacing: -5%;
    font-weight: 500;
    max-width: 300px;
}

.inv-card h3.alchemy {
    font-family: "alchemy", serif;
}

/* BADGE */
.h3badge {
    display: inline-block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    border-radius: 5px;
    padding: 6px 8px;
    border: 1px solid #D2D2D2;
    top: -8px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0;
}

/* FOOTER */
.inv-footer-wrapper {
    position: relative;
    max-width: 70%;
}

.inv-footer-wrapper.active {
    background-color: #fff;
    border-radius: 5px 5px 0 0;
}

.inv-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #454545;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

button.inv-footer {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
}

.inv-footer span {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    letter-spacing: 10%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.inv-footer-wrapper.active .inv-footer span {
    color: #000;
}

.inv-footer-wrapper.active .inv-footer {
    border-bottom: 1px solid #fff;
}

.dowmbx {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform-origin: center center;
}

.dowmbx.rotate {
    transform: rotate(180deg);
    transform-origin: center center;
}

.inv-footer-dropdown {
    position: absolute;
    top: 100%;
    padding: 0 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 4px 8px 0px #00000014;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.4s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 3;
}

.inv-footer-wrapper.active .inv-footer-dropdown {
    max-height: 190px;
    /* adjust if needed */
    opacity: 1;
    transform: translateY(-1px);
}

.droptitle {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 6px;
}

.dropul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

.dropli {
    display: block;
    list-style-type: none;
    border-bottom: solid 1px #C9C9C9;
    transition: all 0.3s ease;
}

.dropli a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    padding: 14px 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.dropli:hover {
    border-bottom: solid 1px #000;
}

.dropli:hover a {
    font-weight: 600;
}

.gobtn {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropli:hover .gobtn {
    background: #CB8918;
}

.footer-section {
    background: linear-gradient(90deg, rgba(248, 248, 248, 1) 50%, rgba(246, 242, 240, 1) 50%);
}

.footer {
    font-family: "IBM Plex Sans", sans-serif;
}

/* ================= LINKS ================= */
.footer-links {
    background: #F8F8F8;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.footer-links a {
    font-size: 14px;
    letter-spacing: 10%;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    height: 36px;
    line-height: 1.2;
}

/* ================= RIGHT ================= */
.footer-right {
    background: #F6F2F0;
    padding: 30px 20px;
}

/* SUBSCRIBE */
.footer-right h4 {
    font-family: "Playfair", serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: -3%;
    padding-left: 16px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-box {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #DADADA;
    background: #fff;
}

.subscribe-box input {
    flex: 1;
    padding: 16px;
    border: none;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    font-weight: 400;
    color: #6D6D6D;
    letter-spacing: 10%;
    background: #fff;
    border-radius: 5px;
}

.subscribe-box button {
    padding: 0 15px;
    border: none;
    font-size: 18px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
}

.subscribe-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(203, 137, 24, 0.18);
}

/* SOCIAL */
.social {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.social p {
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
}

.icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.icons a {
    flex-shrink: 0;
}

/* ADDRESS */
.address {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
}

.phonelink {
    display: inline-block;
    margin-top: 24px;
    color: #000;
}

/* APPS */
.apps {
    margin-top: 36px;
}

.apps p {
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
    display: block;
}

.apps small {
    color: #CB8918;
    letter-spacing: 10%;
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.app-btn {
    padding: 7px 16px;
    background: transparent;
    border: 1px solid #CB8918;
    outline: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 10%;
    text-transform: uppercase;
}

/* BOTTOM */
.footer-bottom {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    padding: 20px;
}

.mob {
    display: none;
}

.desktop {
    display: block;
}

/* SECTION */
.faq {
    background: #fff;
    padding: 60px 0;
}

/* GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.faq-left {
    background: #F5EFEC;
    padding: 40px;
    margin-top: 20px;
}

.faq-left h2 {
    font-family: "Playfair", serif;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: clamp(2.5rem, 4.12vw, 5rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #282828;
}

.faq-left p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1rem, 1.35vw, 1.5rem);
    margin-bottom: 20px;
}

/* RIGHT */
.faq-right {
    display: flex;
    flex-direction: column;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #bbb;
    padding: 20px 0;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #282828;
}

/* ICON */
.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* transition: all 0.4s ease;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1); */
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    color: #000;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: unset;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* SECTION */
.contact {
    background: #fff;
    padding: 100px 0;
}

/* HEADING */
.contact h2 {
    font-family: "Playfair", serif;
    font-size: clamp(2rem, 3.25vw, 3.25rem);
    color: #282828;
    font-weight: 400;
    line-height: .9;
    letter-spacing: -5%;
    text-transform: unset;
}

.contact h2.alchemy {
    font-family: "alchemy", serif;
}

/* BOX */

.form-block,
.contact-box {
    background: #fff;
    border: 40px solid #F8F8F8;
    padding: 40px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.thanks-block {
    text-align: center;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-block h5 {
    color: #282828;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
}

.thanks-block h2,
.thanks-block h3 {
    font-weight: 500;
    font-size: clamp(2.5rem, 3.75vw, 3.75rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: unset;
    max-width: 570px;
}

.thanks-block p {
    font-weight: 400;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.4;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 20px;
    max-width: 740px;
}

/* SUBTEXT */
.contact-sub {
    margin-bottom: 30px;
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
}

/* FORM */
.contact-form,
.career-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ROW */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

/* INPUT */
.input-field {
    padding: 22px 24px;
    background: #f8f8f8;
    font-size: 14px;
    outline: none;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    color: #282828;
    font-weight: 400;
}

.input-field:focus {
    border-color: #c8871a;
    box-shadow: none;
}

.input-field-file {
    background: #f8f8f8;
    outline: none;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    position: relative;
    padding: 20px 24px;
}

.input-field-file input {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.input-field-file:focus {
    border-color: #c8871a;
    box-shadow: none;
}

.input-field-file .field-label {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    color: #828282;
    font-size: 14px;
    font-weight: 400;
    pointer-events: none;
}

/* SELECT */
.custom-select {
    padding: 22px 50px 22px 24px;
    /* extra right space */
    background: #f8f8f8 url("../images/chev-down.svg") no-repeat right 18px center;
    background-size: 14px;

    font-size: 14px;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    color: #282828;
    font-weight: 400;
    cursor: pointer;

    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select:focus {
    border-color: #c8871a;
    box-shadow: none;
}

.custom-select::-ms-expand {
    display: none;
}

/* CAPTCHA */
.captcha-box {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    overflow: hidden;
    height: 63.2px;
}

.captcha-box img {
    width: 100%;
}

/* BOTTOM */
.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* CHECKBOX */
/* WRAPPER */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 16px;
    color: #282828;
}

/* HIDE DEFAULT */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

/* BOX */
.checkmark {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f2f2f2;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* CHECK ICON */
.checkmark::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 10px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: 0.2s;
}

/* ACTIVE */
.custom-checkbox input:checked+.checkmark {
    background: #fff;
    border-color: #c8871a;
}

.custom-checkbox input:checked+.checkmark::after {
    opacity: 1;
}

/* TEXT */
.label-text {
    line-height: 1.5;
}

/* SECTION */
.philosophy {
    background: #fff;
    padding: 0px 0 160px;
    position: relative;
    max-width: 100vw;
    overflow: hidden;
}

/* TOP */
.philo-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.philo-top h2 {
    font-family: "Playfair", serif;
    font-size: clamp(3rem, 6vw, 6rem);
    color: #282828;
    line-height: .8;
    letter-spacing: -5%;
    font-weight: 400;
}

.philo-top h2.alchemy {
    font-family: "alchemy", serif;
}

.philo-top h2.font6 {
    font-size: clamp(5rem, 6vw, 6rem);
}

.sub {
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
    margin-top: 20px;
    color: #282828;
    line-height: 1.5;
}

.small {
    font-size: 16px;
    color: #282828;
}

.philo-image-wrapper {
    display: flex;
}

.textbx {
    width: 44%;
}

/* IMAGE */
.philo-image {
    position: relative;
    flex: 1;
    width: calc(100% - 45%);
}

.philo-image img {
    height: 420px;
    object-fit: cover;
    width: 125%;
    max-width: unset;
}

/* CARDS WRAPPER */
.philo-cards {
    display: flex;
    gap: 30px;
    position: relative;
    margin-top: -230px;
    z-index: 2;
}

/* CARD */
.philo-card {
    background: #F5EFEC;
    padding: 30px 24px;
    min-height: 400px;
    position: relative;
    max-width: 325px;
}

/* NUMBER */
.philo-card .num {
    display: inline-flex;
    padding: 10px;
    margin-bottom: 80px;
    font-family: "Playfair", serif;
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    width: 60px;
    height: 70px;
    align-items: end;
    color: #282828;
    font-weight: 500;
    font-size: clamp(3.8rem, 3.8vw, 4rem);
    line-height: 50px;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.philo-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #282828;
}

/* TEXT */
.philo-card p {
    font-size: 14px;
    color: #282828;
    line-height: 1.6;
    font-weight: 400;
}

/* SECTION */
.market {
    background: #282828;
    padding: 150px 0 100px;
    color: #fff;
}

/* GRID */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.heading2 {
    font-family: "Playfair", serif;
    font-size: clamp(4rem, 4.25vw, 5rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.heading2.alchemy {
    font-family: "alchemy", serif;
}

.secp {
    margin: 20px 0;
    color: #fff;
    font-weight: 300;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.4;
    letter-spacing: 0%;
}

.market .grid1 p,
.news .news-left p,
.leadership .lead-left p {
    margin: 20px 0;
    color: #fff;
    font-weight: 300;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.4;
    letter-spacing: 0%;
}

.grid1>.heading2,
.news-left>.heading2,
.lead-left>.heading2 {
    max-width: 230px;
}

/* RIGHT */
.girid2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.market-card {
    position: relative;
    background: #E19B35;
    padding: 20px;
}

/* IMAGE */
.market-img {
    position: relative;
    bottom: -40px;
    margin-top: -23%;
    margin-inline: auto;
    display: table;
}

/* DATE */
.market-card .date {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #000;
    font-weight: 400;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    line-height: 1.4;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* WATCH BUTTON */
.watch-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 5px;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    z-index: 2;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.download-btn {
    border-radius: 5px;
    background: #fff;
    color: #000;
    border: none;
    padding: 20px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ICON CIRCLE */
.watch-btn .play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.35s ease;
}

.download-btn .downicon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.download-btn span {
    position: relative;
}

/* BACKGROUND SLIDE EFFECT */
.watch-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.blog-download {
    display: flex;
    justify-content: end;
    margin-top: 30px;
}

/* HOVER STATE */
.watch-btn:hover {
    color: #fff;
}

.download-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

/* HOVER STATE */
.download-btn:hover {
    color: #fff;
}

.watch-btn:hover::before {
    transform: translateX(0);
}

.download-btn:hover::before {
    transform: translateX(0);
}

/* ICON ANIMATION */
.watch-btn:hover .play {
    background: #fff;
    transform: translateX(4px);
}

/* TABS */
.market-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 20px;
}

.market-tabs span {
    padding: 8px 14px;
    border-radius: 3px;
    cursor: pointer;
    color: #ccc;
    border: 0.5px solid #595959;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0%;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.market-tabs span:hover {
    background: #000;
    color: #fff;
}

/* ACTIVE TAB */
.market-tabs .active {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* SECTION */
.news {
    background: #242424;
    padding: 100px 0;
    color: #fff;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}


/* RIGHT */
.news-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.news-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    transition: 0.3s;
}

/* ACTIVE CARD (CENTER) */
.news-card.active,
.news-card:hover {
    background: #1B1B1B;
}

/* LOGO BOX */
.news-logo {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.news-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DATE */
.news-card .date {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0%;
}

/* TITLE */
.news-card h4 {
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: 0%;
    margin-bottom: 40px;
}

/* LINK */
.news-link {
    margin-top: auto;
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

/* HOVER */

/* SECTION */
.leadership {
    background: #282828;
    padding: 100px 0;
    color: #fff;
}

/* GRID */
.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* RIGHT */
.lead-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.lead-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: 0.3s;
    border: 1px solid #444444;
    align-items: flex-start;
}

/* TAG */
.tag {
    display: inline-block;
    background: #fff;
    color: #CB8918;
    padding: 8px 10px;
    font-weight: 500;
    border-radius: 2px;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
}

/* TITLE */
.lead-card h4 {
    font-weight: 300;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: 0%;
    color: #fff;
}

/* IMAGE */
.lead-img {
    margin-top: auto;
    aspect-ratio: 1/1;
    width: 100%;
}

.lead-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER */
.lead-card:hover {
    background: #1B1B1B;
}

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

/* ACTIVE */
.video-modal.active {
    opacity: 1;
    visibility: visible;
}

/* BACKDROP */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

/* CONTENT */

.video-content {
    position: relative;
    aspect-ratio: 16/9;
    transform: scale(0.9);
    transition: 0.4s ease;
    z-index: 2;
    height: 59vh;
    max-width: 900px;
}

/* SCALE IN */
.video-modal.active .video-content {
    transform: scale(1);
}

/* IFRAME */
.video-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* CLOSE BUTTON */
.video-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.video-close:hover {
    opacity: 1;
}

.no-scroll {
    overflow: hidden;
}

/* HAMBURGER */
.hamburger {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

/* OVERLAY */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);

    opacity: 0;
    /* visibility: hidden; */
    transition: 0.3s;
    z-index: 999;
}

/* DRAWER */
.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    min-width: 320px;
    width: 50%;
    height: 100vh;
    background: #F5EFEC url(../images/mask3.svg) no-repeat bottom right;
    padding: 40px 60px;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    background-size: 40%;
}

/* ACTIVE STATES */
.side-drawer.active {
    right: 0;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-content {
    padding-top: 22px;
}

/* CONTENT */
.drawer-content h2 {
    font-size: clamp(2rem, 3vw, 3.125rem);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #282828;
    line-height: 1;
    display: flex;
    padding: 0;
}

.drawer-content h2 a {
    font-family: "Scotch Display";
    text-transform: uppercase;
}

.drawer-content ul {
    list-style: none;
    padding: 0;
    display: inline-block;
}

.drawer-content li {
    padding: 12px 0;
    border-bottom: 1px solid #CBCBCB;
    font-size: clamp(0.875rem, 1.2vw, 1.25rem);
    color: #000000;
}

.drawer-content li:last-child {
    border-bottom: none;
}

/* DIVIDER */
.drawer-content hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #CBCBCB;
    width: 70%;
}

/* CLOSE */
.drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #CB8918;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid 1px #CB8918;
}

/* WRAPPER */
.bottom-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.bottom-drawer.active {
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */
.bottom-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.panel-inner {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
}

.bottom-drawer-content {
    padding-top: 22px;
    display: block;
    padding-bottom: 0px;
}

/* PANEL */
.bottom-drawer-panel {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 500px;
    background: #ebe7e4;
    padding: 40px 0;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-top: solid 8px #CB8918;
}

.bottom-drawer-panel.pms {
    padding: 20px 0;
    border-top: solid 4px #CB8918;
}

.drawer-card {
    flex: 1;
    display: flex;
    gap: 12px;
    background: #f8f8f8;
    padding: 12px;
    border: 1.5px solid #DEDEDE;
    min-width: 500px;
}

.drawer-card1 {
    min-width: 500px;
}

.bottom-drawer-img-box {
    width: 160px;
    height: 230px;
    flex-shrink: 0;
    overflow: hidden;
}

.bottom-drawer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-drawer-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drawer-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-sub {
    color: #9E9E9E;
    font-weight: 400;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.drawer-title {
    font-weight: 500;
    font-size: clamp(2rem, 3vw, 3.125rem);
    line-height: .9;
    letter-spacing: -5%;
    text-transform: uppercase;
    color: #282828;
}

.bottom-drawer-text-box h4 {
    color: #282828;
    font-weight: 500;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.bottom-drawer-text-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #282828;
}

.knowmore-btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 10%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: underline;
    color: #282828;
}

/* OPEN */
.bottom-drawer.active .bottom-drawer-panel {
    bottom: 0;
}

/* CLOSE BUTTON */
.bottom-drawer-close {
    background: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 26px;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.search-drawer-close {
    background: #f2f2f2;
    border: none;
    padding: 16px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 26px;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
    margin-left: auto;
    border-radius: 5px;
}

/* SECTION */
.inner-banner {
    background: #282828;
    padding: 60px 0 0;
    color: #fff;
}

/* GRID */
.inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT */
.inner-left {
    padding-bottom: 24px;
}

.inner-left h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: .9;
    margin: 16px 0;
    letter-spacing: -5%;
    font-weight: 500;
    text-transform: uppercase;
    max-width: 500px;
}

.inner-left h1 span {
    font-family: "Abhaya Libre", serif;
}

.inner-subtitle {
    color: #fff;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.3;
    letter-spacing: 0%;
    margin-top: 20px;
}

.subtitle {
    color: #fff;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 20px;
}

/* BREADCRUMB */
.page-breadcrumb {
    display: inline-block;
    color: #ccc;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.page-breadcrumb span {
    transform: translateY(3px);
    display: inline-flex;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb .active {
    color: #c8871a !important;
}

/* RIGHT IMAGE */
.inner-right {
    position: relative;
    overflow: hidden;
    width: 600px;
    height: 350px;
}

.inner-right img {
    width: 100%;
    will-change: transform;
    object-fit: cover;
}

.inttertape-section {
    position: sticky;
    top: 86px;
    z-index: 4;
}

.field-error {
    color: red;
    font-size: 14px;
    margin-top: 4px;
}

.inttertape {
    background: #282828;
    color: #fff;
}

.inttertape ul {
    display: flex;
    list-style-type: none;
    padding: 10px 20px;
    gap: 1%;
}

.inttertape ul li {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.inttertape ul li a {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    position: relative;
    gap: 16px;
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 10%;
    transition: all 0.3s ease;
}

.inttertape ul li a::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    transition: all 0.3s ease;
}

/* .inttertape ul li:last-child a::before {
    display: none;
} */

.inttertape ul li a:hover,
.inttertape ul li a.active {
    color: #CB8918;
}

.inttertape ul li a:hover::before,
.inttertape ul li a.active::before {
    background: #CB8918;
}

/* inttertape 111111 */
.inttertape1 {
    background: #282828;
    color: #fff;
}

.inttertape1 ul {
    display: flex;
    list-style-type: none;
    padding: 10px 20px;
    gap: 30px;
}

.inttertape1 ul li {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.inttertape1 ul li a {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    position: relative;
    gap: 16px;
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 10%;
    transition: all 0.3s ease;
}

.inttertape1 ul li a::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    transition: all 0.3s ease;
}

/* .inttertape ul li:last-child a::before {
    display: none;
} */

.inttertape1 ul li a:hover,
.inttertape1 ul li a.active {
    color: #CB8918;
}

.inttertape1 ul li a:hover::before,
.inttertape1 ul li a.active::before {
    background: #CB8918;
}

/* SECTION */
.snapshot {
    padding: 100px 0;
    background: #fff;
}

/* TOP TEXT */
.snapshot-top-text {
    max-width: 820px;
    margin: 0 auto;
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
}

/* TITLE */
.snapshot-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 80px 0 0px;
    font-weight: 500;
    line-height: .7;
    letter-spacing: -5%;
    position: relative;
    z-index: 1;
}

/* GRID */
.snapshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #F8F8F8;
}

/* LEFT */
.snapshot-left {
    background: #F8F8F8;
    padding: 20px;
}

/* LIST */
.snapshot-list {
    list-style: none;
    padding: 0;
}

.snapshot-list li {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E2E2E2;
    font-size: 14px;
    transition: all 0.3s ease;
}

.snapshot-list li:hover {
    background: #F5EFEC;
}

.snapshot-list li:hover>.arrow {
    transform: translateX(20px);
}

.snapshot-list li:hover>span:last-child {
    transform: translateX(20px);
}

.snapshot-list li span {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

/* BULLET DOT */
.snapshot-list li span:first-child::before {
    content: " ";
    background: #CB8918;
    margin-right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ARROW */
.snapshot-list .arrow {
    margin: 0 10px;
    color: #aaa;
    transition: all 0.4s ease;
}

/* NOTE */
.snapshot-note {
    font-size: 10px;
    color: #282828;
    margin-top: 20px;
}

/* RIGHT */
.snapshot-right {
    position: relative;
    overflow: hidden;
}

.snapshot-right>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.65s linear;
}

.snapshot-right>img:hover {
    transform: scale(1.10);
}

/* WRAPPER */
.inttertape {
    position: relative;
}

/* DESKTOP */
.inttertape-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 10px 20px;
}


/* ================= MOBILE SELECT ================= */

.inttertape-select {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #1f1f1f;
    color: #d89b2b;
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 10%;
    cursor: pointer;
}

.select-arrow img {
    width: 20px;
    transition: transform 0.3s ease;
}

/* ACTIVE */
.inttertape.active .select-arrow img {
    transform: rotate(180deg);
}

/* DROPDOWN */
.inttertape-list {
    transition: all 0.3s ease;
}

/* SECTION */
.fm-section {
    background: #fff;
    padding: 100px 0;
}

.fmcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TITLE */
.fm-title {
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: .58;
    letter-spacing: -5%;
    text-align: center;
    color: #282828;
    z-index: 1;
}

/* WRAPPER */
.fm-wrapper {
    padding: 50px 80px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 80px;
    /* background: #F5F8FB url(../images/shapbg.png) no-repeat top center; */
    background: #F5F8FB;
    background-size: cover;
    justify-content: center;
}

/* CARD */
.fm-card {
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex: 1;
    max-width: 450px;
    min-width: 350px;
}

.fm-img {
    width: 250px;
    height: 250px;
    overflow: hidden;
    background: #fff;
}

/* IMAGE */
.fm-img img {
    width: 250px;
    object-fit: cover;
}

/* CONTENT */
.fmname {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
    line-height: 1;
    letter-spacing: 0%;
    color: #000;
}

.fm-role {
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
}

.fm-desc {
    color: #282828;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
}

/* SOCIAL */
.fm-social {
    display: flex;
    gap: 30px;
}

.fm-social img {
    width: 28px;
    height: 28px;
}

/* SECTION */
.alchemy-request {
    padding: 80px 0;
    background: #fff;
}

/* BOX */
.alchemy-request-content {
    background: #1f1f1f;
    color: #fff;
    padding: max(5vw, 30px);
    display: flex;
    gap: 40px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    max-width: 940px;
    margin: 0 auto;
}

/* SUBTLE DOT PATTERN */
.alchemy-request-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 4px, transparent 4px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

/* CONTENT */
.alchemy-request-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* BUTTON WRAPPER */
.alchemy-request-action {
    position: relative;
    z-index: 1;
}

/* BUTTON */
.alchemy-request-btn {
    background: #fff;
    color: #000;
    padding: 14px 22px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.alchemy-request-btn:before {
    background: #CB8918;
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.35s ease;
}

.alchemy-request-btn>* {
    position: relative;
    z-index: 1;
}

.reqest-title {
    font-size: clamp(4rem, 5vw, 5rem);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.reqest-title span {
    font-family: "Abhaya Libre", serif;
}

.reqest-subtitle {
    font-size: 16px;
    line-height: 1.53;
    letter-spacing: 0%;
    max-width: 370px;
    font-weight: 300;
}

/* ICON */
.alchemy-request-btn img {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CB8918;
}

/* HOVER */
.alchemy-request-btn:hover {
    color: #fff;
}

.alchemy-request-btn:hover::before {
    width: 100%;
}

.alchemy-request-btn:hover img {
    transform: translate-x(4px);
    background: #000;
}

/* SECTION */
.video-slider-section {
    padding: 20px 0;
    background: #fff;
    max-width: 100vw;
    overflow-x: hidden;
}

/* SLIDER */
.video-slide {
    padding: 0 20px;
}

/* CARD */
.video-card {
    position: relative;
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
}

.video-slider-img-box {
    background: #fff;
    position: relative;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

/* IMAGE */
.video-slider-img {
    width: 100%;
}

/* TITLE */
.video-slider-img-box h4 {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.124vw, 1.125rem);
    color: #000;
    max-width: 330px;
    padding: 10px;
    background: #fff;
    display: none;
}


/* CENTER ACTIVE EFFECT */
.slick-center .video-card {
    opacity: 1;
    transform: scale(1);
}

.video-slide.slick-slide.slick-current.slick-active .video-card {
    opacity: 1;
    transform: scale(1);
}

.video-card {
    transition: all 0.5s ease;
}

.video-slide:not(.slick-center) .video-card {
    /* transform: scale(0.9); */
    opacity: 0.5;
}

/* CONTROLS */
.video-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
}

.video-dots {
    margin-left: 44%;
}

/* DOTS */
.video-dots .slick-dots {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.video-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    font-size: 0;
    cursor: pointer;
}

.video-dots .slick-active button {
    background: #c8871a;
}

/* NEXT BUTTON */
.video-next {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #B0B0B0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.video-next img {
    width: 22px;
}

.left-aligned {
    margin-left: calc((100vw - 1280px) / 2);
}

.left-aligned-min {
    margin-left: calc((100vw - 800px) / 2);
}

.performance-section {
    padding: 80px 0;
    background: #fff;
}

.performancegraph-block {
    background: #F8F8F8;
    background: linear-gradient(90deg, rgba(248, 248, 248, 1) 50%, rgba(245, 239, 236, 1) 50%);
}

.perf-title {
    color: #282828;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 70px;
    letter-spacing: -5%;
}

.perf-top {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 70px;
    color: #282828;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0%;
}

.perf-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* LEFT */
.perf-left {
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

.perf-chart-box {
    width: 800px;
    position: relative;
}

.perf-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
}

.perf-btn.primary {
    background: #000;
    color: #fff;
}

.btngroup {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 364px);
    margin-top: 10px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.btngroup .snapshot-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #000;
    font-size: clamp(0.85rem, 0.85vw, 0.875rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 8%;
    text-transform: uppercase;
    box-shadow: none;
    overflow: visible;
    text-decoration: none;
}

/* .btngroup .snapshot-btn.grow1-2 {
    flex-shrink: 0;
    flex-grow: 1.2;
} */
.btngroup .snapshot-btn {
    flex: 1;
}

.btngroup .snapshot-btn::after {
    content: "";
    width: 86%;
    height: 1px;
    border-top: #A3A3A3 solid 1px;
    position: absolute;
    top: 100%;
    left: 6.5%;
}

.btngroup.inline .snapshot-btn::after {
    content: "";
    width: 1px;
    height: 44%;
    border-left: #A3A3A3 solid 1px;
    position: absolute;
    top: 28%;
    left: 100%;
    border-top: none;
}

.btngroup .snapshot-btn img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-left: auto;
    filter: none;
    transform: none;
    transition: transform 0.25s ease;
}

.btngroup .snapshot-btn:hover,
.btngroup .snapshot-btn:focus-visible {
    color: #111;
}

.btngroup .snapshot-btn:hover img {
    filter: none;
    transform: translateY(2px);
}

.btngroup .placeholder-link[aria-disabled="true"] {
    opacity: 1;
}

.snapshot-right .btngroup.inline {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    flex-direction: row;
    width: auto;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(40, 40, 40, 0.12);
}

.performancetext {
    max-width: 356px;
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0%;
}

/* RIGHT */
.perf-chart-box {
    background: #F5EFEC;
    padding: 40px;
    position: relative;
}

.perf-chart-box h4 {
    position: absolute;
    top: -40px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 300;
    font-size: clamp(1.4rem, 1.25vw, 1.5rem);
    line-height: 1;
    letter-spacing: 0%;
}

/* ===== MEGA MENU ===== */

.nav-item.mega-parent {
    position: unset;
}

.nav-item.mega-parent::after {
    display: none;
}

.nav-item.mega-parent .nav-link {
    position: relative;
}

.nav-item.mega-parent .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.nav-item.mega-parent:hover .nav-link::after {
    width: 100%;
}

/* CONTAINER */
.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 1200px;
    max-width: 98vw;
    display: none;
    background: #F8F8F8;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
    flex-direction: column;
    /* transform: translateX(-50%); */
    height: 520px;
}

/* SHOW */
.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.mega-parent:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    display: flex;
}

/* LEFT PANEL */
.mega-left {
    width: 320px;
    background: #F5EFEC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.invest-category {
    padding: 30px 0;
    position: relative;
    height: 100%;
}

.invest-category-lists {
    height: 100%;
}

.invest-category-list {
    color: #282828;
    cursor: pointer;
    display: block;
    padding-left: 20px;
}

.mega-dropdown-item-link {
    display: block;
    padding: 16px 16px;
    position: relative;
    color: #282828;
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
    transform-origin: left;
}

.invest-category-list:hover>.mega-dropdown-item-link,
.invest-category-list.active>.mega-dropdown-item-link {
    color: #000;
    font-weight: 500;
}

.mega-dropdown-item-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #A1A1A1;
    opacity: 1;
    transition: all 0.4s ease;
}

.mega-dropdown-item-link::after {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: all 0.4s ease;
}


.invest-category-list:hover>.mega-dropdown-item-link::after {
    opacity: 1;
}

.invest-category-list.active>.mega-dropdown-item-link::after {
    opacity: 1;
}

/* BOTTOM */
.mega-bottom {
    display: block;
    margin-top: 40px;
}

.product-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    background: #fff;
    color: #282828;
    font-weight: 600;
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1;
    letter-spacing: 0%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.product-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 0%;
    inset: 0;
    background: #caa34d;
    transition: width 0.3s ease;
}

.product-button:hover::before {
    width: 100%;
}

/* RIGHT */
.mega-cols {
    position: absolute;
    display: flex;
    gap: 40px;
    padding: 40px 40px 0;
    left: 100%;
    top: 0;
    width: calc(1200px - 320px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background: #F8F8F8;
    height: 100%;
    cursor: default;
}

.mega-cols.active {
    visibility: visible;
    opacity: 1;
}

.mega-col {
    flex: 1;
}

.cols-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    font-style: italic;
}

.cols-footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.for-subscription {
    display: inline-block;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50%;
    background: #C7C7C7;
    margin-left: 10px;
    flex-shrink: 0;
}

/* .invest-category-list:hover .mega-cols {
    visibility: visible;
    opacity: 1;
} */

.invest-category-list.active .mega-cols {
    visibility: visible;
    opacity: 1;
}

.invest-category-list:focus-within .mega-cols {
    visibility: visible;
    opacity: 1;
}

/* COLUMN */
.mega-col h4 {
    margin-bottom: 0;
    position: relative;
    font-weight: 600;
    font-size: clamp(.8rem, 1.125vw, 1.25rem);
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding-bottom: 16px;
}

.mega-col h4::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #caa34d;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* MAKE WHOLE CARD CLICKABLE */
.mega-item {
    display: flex;
    padding: 0 10px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
    text-rendering: optimizespeed;
    height: 56px;
    align-items: center;
}

/* TEXT */
.mega-item h5 {
    font-weight: 400;
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.4;
    letter-spacing: -2%;
    transform-origin: left;
    transition: transform 0.3s ease;
    display: block;
    color: #2a2a2a;
}

.mega-item span {
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
}

/* HOVER EFFECT */
.mega-item:hover {
    background: #F1F1F1;
}

.mega-item:hover h5 {
    color: #000;
    /* font-weight: 500; */
    transform: scale(1.04);
}

.ftr-bottomsec {
    padding-left: 16px;
}

.search-wrapper {
    width: 156px;
}

.search-box {
    width: 100%;
    display: flex;
    border-radius: 5px;
    background: #313030;
    overflow: hidden;
}

.searchinput {
    display: block;
    width: 100%;
    padding: 10px 0 10px 16px;
    font-weight: 400;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #fff;
    border: none;
    outline: none;
    background: #313030;
}

.searchinput::placeholder {
    color: #fff;
}

.searchbtn {
    background: #313030;
    border: none;
    outline: none;
    padding: 0 14px 0 12px;
    cursor: pointer;
}

.mobilenav-header {
    display: none;
    align-items: baseline;
    padding: 0 16px 0;
    background: #282828;
}

.mom-logo {
    width: 90px;
}

.mobmenu-close {
    margin-left: auto;
    top: -6px;
    position: relative;
    cursor: pointer;
    transform: rotate(-180deg);
}

.mobmenu-close1 {
    margin-left: auto;
    top: -6px;
    position: relative;
    cursor: pointer;
    transform: rotate(-180deg);
}

.mobmenu-close2 {
    margin-left: auto;
    top: -6px;
    position: relative;
    cursor: pointer;
    transform: rotate(-180deg);
}

.mobmenu-close3 {
    margin-left: auto;
    top: -6px;
    position: relative;
    cursor: pointer;
}

.headtext-mob {
    display: none;
    align-items: center;
    background: #282828;
    color: #fff;
}

.headtext-mob span {
    display: block;
    position: relative;
    padding: 12px 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 10%;
    font-size: 14px;
}

.headtext-mob span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background: #c8871a;
    bottom: 0px;
}

.why-alchemy-section {
    padding: 0 0 100px;
}

.whycta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.why-alchemy-list {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.why-alchemy-item {
    display: flex;
    align-items: center;
}

.why-alchemy-icon {
    flex-shrink: 0;
    width: 180px;
    position: relative;
    bottom: -20px;
}

.why-alchemy-icon img {
    width: 100%;
    display: block;
}

.why-alchemy-content {
    flex: 1;
    padding: 60px 0;
    border-bottom: solid 1px #D5D5D5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-alchemy-content h3 {
    margin-bottom: 9px;
    color: #000;
    font-weight: 700;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: uppercase;
    font-family: "IBM Plex Sans", sans-serif;
}

.why-alchemy-content h4 {
    margin-bottom: 15px;
    color: #000;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1;
    letter-spacing: -5%;
}

.why-alchemy-content p {
    color: #282828;
    max-width: 720px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
}

.why-alchemy-item.no-border .why-alchemy-content {
    border-bottom: none;
}

.committee-section {
    background: #F8F8F8;
    padding: 50px 0;
}

.csrtop {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.csrtop .heading3 {
    margin-bottom: 16px;
}

.csrtop p {
    margin-top: 20px;
    color: #282828;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
}

.committee-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.initiatives-section {
    padding: 60px 0 80px;
}

.csr .leadpost {
    margin-bottom: 0;
}

.csr .new-leader-image {
    height: 17vw;
}

.initiatives-container p {
    margin-top: 20px;
    color: #282828;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
}

.initiatives-container .heading3 {
    margin-bottom: 16px;
}

.initiatives {
    width: 100%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
}

.initiative-card {
    display: flex;
    position: relative;
    cursor: pointer;
}

.initiative-image {
    width: 43%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
}

.initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.initiative-content {
    background: #F8F8F8;
    padding: 34px 46px 20px;
    flex: 1;
    margin-left: -32px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
    bottom: -30px;
}

.initiative-content:hover {
    background: #F6F2F0;
}

.initiative-content h2 {
    margin-bottom: 18px;
    font-weight: 300;
    font-size: clamp(1.75rem, 2.65vw, 2.65rem);
    line-height: 1.1;
    letter-spacing: -5%;
    color: #000;
}

.initiative-meta {
    margin-bottom: 14px;
}

.initiative-meta-label {
    display: block;
    margin-bottom: 2px;
    font-weight: 400;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #000;
}

.initiative-meta-value {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: clamp(1rem, 1.1vw, 1rem);
    line-height: 1;
    letter-spacing: -5%;
}

.initiative-meta p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    margin-top: 10px;
}

.orgbar {
    display: flex;
    align-items: center;
    gap: 22px;
}

.orglogo {
    max-width: 80px;
}

.orglogo img {
    max-height: 80px;
}

.orgname h3 {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.125rem, 2.375vw, 2.375rem);
    line-height: 1;
    letter-spacing: -5%;
}

.field {
    font-weight: 400;
    font-size: clamp(.7rem, 1.1vw, 1.1rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #000;
}

.field span {
    font-weight: 500;
}

.impact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 8px;
    padding-inline: 22px;
    margin-bottom: 22px;
    height: 400px;
}

.grid-left {
    height: 400px;
}

.grid-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 400px;
}

.small-image {
    height: 196px;
}

.grid-left img,
.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-side-drawer.csr {
    padding: 0
}

.team-side-drawer.csr .team-drawer-top {
    padding-inline: 16px;
}

.team-side-drawer.csr .team-drawer-description {
    padding-inline: 22px;
    margin-bottom: 22px;
}

.contact-btn {
    margin-top: 40px;
}

.contact-section {
    position: relative;
    overflow: hidden;
    margin-top: -118px;
}

.contact-section-top {
    width: 100vw;
    overflow: hidden;
}

.contact.inner {
    padding-top: 60px;
}

.contact-top-left {
    position: relative;
}

.contact-top-left::before {
    position: absolute;
    content: "";
    height: 100%;
    right: 100%;
    top: 0;
    width: 100vw;
    background: #fff;
    /* background: linear-gradient(0deg, rgb(92, 141, 218) 0%, rgb(86, 132, 217) 100%); */
}

#investment-team {
    padding: 50px 0 70px;
}

.contact-top-left img {
    height: 100%;
}

.contact-top-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
}

.contact-top-right {
    padding: 30px;
    padding-top: 22%;
}

.contact-top-right h2 {
    color: #282828;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -5%;
    display: inline-block;
    position: relative;
}

.contact-top-right h2:after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 2px;
    left: 102%;
    top: 50%;
    background: #F5EFEC;
}

.contact-top-right param {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.1;
    letter-spacing: -5%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

/* Cards */

.contact-card {
    background: #F5EFEC;
    padding: 30px 22px 24px;
    display: flex;
    flex-direction: column;
}

.contact-card.gbp {
    background: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.contact-card.gbp iframe {
    width: 100%;
    height: 100%;
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content p,
.card-content a,
.card-content h4 {
    color: #000;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    line-height: 1.3;
    letter-spacing: -5%;
}

.card-content p {
    margin-bottom: 18px;
}

.card-content h4 {
    margin-bottom: 10px;
}

.card-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fax {
    margin-top: 8px;
}

.spacing {
    margin-top: 6px;
}

.partner-text {
    margin-bottom: 18px;
}

/* Directions Link */

.direction-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.direction-link img {
    width: 26px;
    height: 26px;
}

.blog-main {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-heading-strip {
    background: #fff;
    padding: clamp(1.2rem, 1.75vw, 1.86rem) 0 0;
    border-bottom: solid 1px #e7e7e7;
}

.page-heading-strip.dark {
    background: #fff;
}

.over {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -4%;
    color: #282828;
    margin-top: 20px;
}

.container-about p {
    margin-top: 20px;
    color: #282828;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
}

.container-about h2 {
    margin-top: 20px;
}

.container-about ul {
    margin: 0;
    margin-top: 20px;
    padding-left: 16px;
}

.container-about ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #D5D5D5;
    color: #282828;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
}

.container-about ul li::marker {
    color: #CB8918;
    font-size: 1.2em;
}

.page-title1 {
    margin: 15px 0;
    color: #282828;
    font-weight: 400;
    font-size: clamp(2rem, 3.25vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -5%;
    max-width: 800px;
}

.page-title {
    font-size: clamp(2rem, 3.125vw, 3.124rem);
    line-height: 0.92;
    color: #282828;
    font-weight: 400;
    letter-spacing: -5%;
    display: inline-block;
    padding-bottom: 16px;
    position: relative;
}

.page-title span {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2.125rem);
    line-height: 1;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c8871a;
    z-index: 1;
}

/* .page-heading-strip.dark .page-title {
    color: #000;
} */

.blog-feature-section {
    padding: clamp(2rem, 4vw, 3.25rem) 0 2rem;
}

.blog-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.blog-filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.blog-select {
    position: relative;
    min-width: 168px;
}

.blog-select select {
    width: 100%;
    appearance: none;
    border: none;
    border-radius: 5px;
    background: #F2F2F2;
    color: #282828;
    font: inherit;
    padding: 1rem 3.25rem 1rem 1.25rem;
    cursor: pointer;
    box-shadow: none;
    font-weight: 300;
}

.blog-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.2rem;
    width: 12px;
    height: 12px;
    background: url(../images/arrow-down.svg) no-repeat center center;
    pointer-events: none;
    transform: translateY(-50%);
}

.blog-feature-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 1.1fr);
    align-items: start;
    position: relative;
}

.blog-feature-wrap.prr {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(340px, 1.1fr);
    align-items: start;
}

.blog-feature-media {
    position: relative;
    z-index: 1;
}

.bog-right {
    position: relative;
    z-index: 0;
    margin-left: -90px;
}

.blog-feature-card {
    position: relative;
    min-height: 532px;
    padding: 115px 4rem 4.25rem 135px;
    background: #F5EFEC;
    cursor: pointer;
}

.blog-feature-card.media {
    padding: 50px 4rem 4.25rem 135px;
    cursor: default;
}

.blog-feature-pin {
    position: absolute;
    top: -30px;
}

.blog-feature-label {
    display: inline-flex;
    padding: 0.625rem 0.85rem;
    background: #ffffff;
    color: #CB8918;
    font-size: 0.75rem;
    border-radius: 2px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.blog-feature-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;

    overflow: hidden;
    text-overflow: ellipsis;

    margin-top: 1.25rem;
    max-width: 650px;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    line-height: 0.9;
    color: #282828;
    font-weight: 400;
    letter-spacing: -0.05em;
    /* Better than -5% */
    font-family: "Playfair", serif;
}

.blog-feature-copy {
    margin-top: 1.25rem;
    max-width: 530px;
    color: #282828;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.blog-feature-meta {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.blog-meta-divider {
    color: #CACACA;
}

.blog-share-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.blog-share-icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}

.why-al-section {
    background: #F5EFEC;
    padding: 60px 0 85px;
}

.why-al-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-al-title {
    text-align: center;
    margin-bottom: 60px;
    color: #282828;
    font-weight: 500;
    font-size: clamp(2.5rem, 4.8vw, 5rem);
    line-height: 1;
    letter-spacing: -5%;
    font-weight: 400;
}

.why-al-title span {
    font-family: "Abhaya Libre", serif;
}

/* GRID */
.why-al-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* ITEM */
.why-al-item {
    flex: 1;
    min-height: 120px;
    padding: 0 20px;
    position: relative;
    display: flex;
    gap: 8px;
}


/* ICON (top-left) */
.why-al-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

/* TEXT (bottom-right) */
.why-al-text {
    color: #000;
    max-width: 200px;
    font-weight: 400;
    font-size: clamp(1.12rem, 1.125vw, 1.125rem);
    line-height: 1.2;
    letter-spacing: 0%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

/* DIVIDER */
.why-al-divider {
    width: 1px;
    background: #d6a85a;
    margin: 0 10px;
}

.breadcrumbsec {
    background: #282828;
    padding: 16px;
}

.why-al-blog {
    background: #fff;
    padding: 60px 0;
}

/* FILTERS */
.why-al-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 10px;
    justify-content: center;
    width: min(100%, 750px);
    margin: 0 auto 70px auto;
    padding-bottom: 60px;
    position: relative;
}

.why-al-filters::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 1px;
    border-top: 1px solid #000000;
    transform: translateX(-50%);
}

.why-al-filters::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 66%;
    transform: translateX(-50%);
    height: 1px;
    border-top: 1px solid #EEEEEE;
}

.why-al-pill {
    padding: 10px 20px;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #DCDCDC;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #646464;
}

.why-al-pill.active {
    background: #CB8918;
    color: #fff;
    border: solid #CB8918 1px;
}

/* GRID */
.why-al-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

/* CARD */
.why-al-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

/* IMAGE */
.why-al-img {
    width: 45%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
}

/* CONTENT */
.why-al-content {
    flex: 1;
}

.why-al-date {
    color: #000;
    background: #F8F8F8;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 2px;
}

.why-al-title-sm {
    margin: 15px 0;
    line-height: .95;
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 2.2rem);
    letter-spacing: -5%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.why-al-meta {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    position: relative;
}

.why-al-meta .blog-share-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.why-al-meta .blog-share-link {
    gap: 0.25rem;
}

/* LOAD MORE */
.why-al-load-wrap {
    text-align: center;
    margin-top: 50px;
}

.why-al-load-btn {
    padding: 10px 30px;
    border: 1px solid #C4C4C4;
    background: transparent;
    cursor: pointer;
    font-weight: 400;
}

.market-view-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.market-view-section::after {
    content: "";
    width: min(1280px, 92%);
    height: 1px;
    border-top: 1px solid #D5D5D5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.market-view-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* LEFT */
.market-view-main-video {
    position: relative;
    z-index: 1;
    height: 380px;
    overflow: hidden;
}

.market-view-main-video img {
    object-fit: cover;
    height: 100%;
}

.market-view-main-video img {
    width: 100%;
    display: block;
}

.market-view-play-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d6a85a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

/* THUMBS */
.market-view-thumbs {
    display: inline-flex;
    gap: 20px;
    margin-top: -130px;
    position: relative;
    z-index: 1;
}

.market-view-thumb {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 30px;
}

.market-view-thumb img {
    width: 100%;
}

.market-year-play.thumbbtn {
    margin-top: auto;
}

/* .market-view-thumb p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.4;
    letter-spacing: 0%;
    margin-bottom: 20px;
} */

.market-view-thumb p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.1;
    letter-spacing: -5%;
    font-family: "Playfair", serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tvbox {
    position: absolute;
    right: 16px;
    top: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.tvbox-img {
    max-width: 100%;
    object-fit: cover;
}

/* RIGHT */
.market-view-right {
    background: #F5EFEC;
    padding: 105px 50px 40px 220px;
    margin-left: -200px;
    min-height: 500px;
    margin-top: 60px;
    position: relative;
    z-index: 0;
}

.market-view-date {
    font-size: 12px;
    color: #c28b2c;
    font-weight: 600;
}

.market-view-title {
    margin: 15px 0;
    color: #282828;
    font-weight: 400;
    font-size: clamp(2.5rem, 3.25vw, 3.25rem);
    line-height: 1;
    letter-spacing: -5%;
    max-width: 440px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.market-view-desc {
    font-size: 14px;
    color: #282828;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0%;
}

.market-view-play-main {
    margin-top: 20px;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.market-year-section {
    padding: 60px 0;
    background: #fff;
}

.market-year-container {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin: auto;
    align-items: start;
}

/* LEFT YEARS */
.market-year-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: sticky;
    top: 0;
    background: #fff;
    align-items: flex-end;
}

.market-year-item {
    color: #C6C6C6;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Playfair", serif;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 4.375rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: uppercase;
    position: relative;
}

.market-year-item.active {
    color: #EA8423;
    font-weight: 600;
    font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.market-year-item.active::before {
    content: "";
    position: absolute;
    right: 104%;
    width: 500px;
    height: 1px;
    background: #EA8423;
    top: 60%;
}

/* LIST */
.market-year-card {
    padding: 20px;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
}

.market-year-card:hover {
    background: #F5EFEC;
}

.market-year-date {
    color: #000;
    background: #F8F8F8;
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 2px;
}

.market-year-title {
    margin: 10px 0;
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.1;
    letter-spacing: -5%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.market-year-title.itn {
    margin: 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.market-year-play {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0%;
    color: #000;
}

.market-year-play img {
    width: 16px;
    height: 16px;
}

.tl-hero {
    background: #282828;
    background: linear-gradient(180deg, rgba(40, 40, 40, 1) 70%, rgba(255, 255, 255, 1) 70%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 36px 0 0;
}

.tl-hero-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 140px;
    position: relative;
}

.tl-hero-content {
    max-width: 700px;
}

.tl-hero-date {
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
    background: #383838;
    border-radius: 2px;
    padding: 10px 10px;
    position: relative;
}

.tl-hero-date::before {
    width: 500px;
    content: "";
    position: absolute;
    height: 1px;
    border-top: 1px solid #515151;
    top: 50%;
    right: calc(100% + 34px);
}

.tl-hero-title {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -5%;
}

.tl-hero-meta {
    font-size: 12px;
    color: #b8b8b8;
    display: flex;
    gap: 10px;
    font-weight: 400;
    align-items: center;
}

.tl-hero-meta a {
    color: #bbb;
    text-decoration: underline;
}

.btbar {
    display: flex;
    align-items: center;
}

.tl-hero-actions {
    margin-left: auto;
}

.tl-hero-share {
    background: #202020;
    color: #fff;
    padding: 18px 20px;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tl-hero-scroll {
    position: absolute;
    right: 70px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-hero-image {
    margin-top: 30px;
    position: relative;
}

.tl-hero-image img {
    width: 100%;
    display: block;
}

.bellow-conent1 {
    width: 90%;
    max-width: 960px;
    padding: 50px 0 0;
}

.bellow-conent {
    color: #282828;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    margin: 0 auto;
}

.bellow-conent p {
    margin-bottom: 20px;
}

.bellow-conent i {
    font-weight: 700;
    font-style: italic;
}

.tl-insight {
    padding: 80px 0;
    color: #000;
    width: 100vw;
    overflow-x: hidden;
}

.tl-insight-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* Left */
.tl-insight-intro {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    margin-bottom: 30px;
}

.tl-insight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.tl-insight-list li {
    position: relative;
    padding-left: 44px;
    margin-bottom: 18px;
    font-weight: 400;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.5;
    letter-spacing: 0%;
    color: #000;
}

/* Arrow bullet */
.tl-insight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 20px;
    background: url("../images/arrows_slide_right.svg") no-repeat center center;
}

/* Source */
.tl-insight-source {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    margin-bottom: 6px;
    line-height: 1.5;
}

.tl-insight-source strong {
    font-weight: 500;
    font-style: italic;
}

/* Footer */
.tl-insight-footer {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.5;
}

/* Right Card */
.tl-insight-right {
    display: flex;
    align-items: flex-start;
}

.tl-insight-card {
    background: #F8F8F8;
    padding: 50px;
    position: relative;
}

.tl-insight-card::after {
    background: #F8F8F8;
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 700px;
}

.tl-insight-card h2 {
    color: #282828;
    font-weight: 400;
    font-size: clamp(2.5rem, 3.125vw, 3.25rem);
    line-height: .9;
    letter-spacing: -5%;
}

.tl-media {
    padding: 100px 0 0;
}

.tl-media-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: flex-end;
}

/* Left text */
.tl-media-text h2 {
    color: #282828;
    font-weight: 400;
    font-size: clamp(2.5rem, 3.125vw, 3.25rem);
    line-height: .9;
    letter-spacing: -5%;
    max-width: 370px;
}

/* Right media */
.tl-media-visual {
    position: relative;
    margin-left: -120px;
    top: -80px;
}

.tl-media-card {
    position: relative;
    overflow: hidden;
}

.tl-media-card img {
    width: 100%;
    display: block;
}

/* Overlay */
.tl-media-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    cursor: pointer;
}

.tl-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tl-play-text {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
}

.tl-media-text {
    position: relative;
    padding: 60px 60px 60px 0;
    background: #F8F8F8;
}

.tl-media-text::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 600px;
    height: 100%;
    background: #F8F8F8;
    z-index: -1;
}

.tl-case {
    padding: 80px 0 0;
    background: #ffffff;
    color: #222;
}

.thought-leadership-main .tl-case {
    padding: 10px 0 0;
    background: #ffffff;
    color: #222;
}

.tl-case ul {
    margin-left: 15px;
}

.screen2bx {
    padding: 11px 60px;
    background: #f8f8f8;
    text-align: center;
}

.chartttx {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.625rem);
    line-height: 1;
    letter-spacing: -5%;
    text-align: center;
    position: relative;
    z-index: 1;
    bottom: -30px;
}

/* Content */
.tl-case-content {
    width: min(900px, 90%);
    margin-bottom: 30px;
}

.tl-case-content.ccnt1 {
    margin: 0 auto;
}

.tl-case-eyebrow {
    color: #EA8423;
    font-family: "Playfair", serif;
    font-weight: 500;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    line-height: 1;
    letter-spacing: -5%;
}

.tl-case-headline {
    font-family: "Playfair", serif;
    font-weight: 500;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #000;
    margin-bottom: 30px;
}


.text18 {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.5;
    margin-bottom: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.tl-case-source {
    font-size: 14px;
    color: #666;
}

/* Chart */
.tl-case-chart {
    margin-top: 40px;
}

.tl-chart-card {
    background: #F8F8F8;
    padding: 70px 40px;
}

.tl-chart-title {
    font-size: 28px;
    margin-bottom: 30px;
}

#tlTariffChart {
    width: 100%;
    height: 200px;
}

.tl-table-sec {
    padding: 0;
}

.tl-table-heading {
    margin-bottom: 40px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(1.25rem, 1.725vw, 1.625rem);
    line-height: 1;
    letter-spacing: -5%;
    text-align: center;
}

/* Table */
.tl-table-wrap {
    overflow-x: auto;
}

.tl-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* Header */
.tl-table thead {
    background: #F9EBD1;
}

.tl-table th {
    text-align: left;
    padding: 18px 16px;
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

/* Body */
.tl-table td {
    padding: 18px 16px;
    font-size: 14px;
    color: #000;
}

/* Zebra rows */
.tl-table tbody tr:nth-child(odd) {
    background: #FAFAFA;
}

/* Total row */
.tl-total-row {
    background: #F5EFEC !important;
    font-weight: 700;
}

.tl-timeline {
    background: #1f1f1f;
    color: #fff;
    padding: 0;
}

.secppd {
    padding: 30px 0;
}

.secppd1 {
    padding: 30px 0;
}

.tl-timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Image */
.tl-timeline-image img {
    width: 100%;
    display: block;
}

/* Content */
.tl-timeline-content {
    width: 100%;
}

/* Header */
.tl-timeline-head {
    display: grid;
    grid-template-columns: 120px 1fr;
    background: #5a5a5a;
    padding: 18px 20px;
    font-family: "Playfair", serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -5%;
}

/* Rows */
.tl-timeline-list {
    margin-top: 20px;
}

.tl-timeline-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Dot */
.tl-timeline-year {
    position: relative;
    padding-left: 18px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0%;
}

.tl-timeline-year::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #CB8918;
    border-radius: 50%;
}

/* Arrow */
.tl-timeline-event {
    position: relative;
    padding-left: 34px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0%;
}

.tl-timeline-event::before {
    content: "";
    position: absolute;
    left: 0;
    background: url(../images/arrows_slim_right3.svg) center center no-repeat;
    width: 24px;
    height: 22px;
}

.tl-disclosure-sec {
    padding: 0;
    background: #fff;
}



/* Top layout */
.tl-disclosure-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Author card */
.tl-author-card {
    display: flex;
    gap: 20px;
    background: #F8F8F8;
    padding: 25px;
    position: relative;
}

.tl-author-card::before {
    content: "";
    width: 800px;
    background: #F8F8F8;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
}

.tl-author-img img {
    width: 170px;
    height: auto;
    display: block;
}

.tl-author-by {
    font-weight: 400;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1.76;
    letter-spacing: 0%;
}

.tl-author-name {
    margin-bottom: 30px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1;
    letter-spacing: 0%;
}

.tl-author-role {
    font-size: 1rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tl-author-source {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    margin-top: 12px;
}

/* Disclosure */
.tl-disclosure-title {
    margin-bottom: 20px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1.3;
    letter-spacing: 0%;
    color: #000;
}

.tl-disclosure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tl-disclosure-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1.3;
    letter-spacing: 0%;
    color: #000;
}

/* Arrow bullets */
.tl-disclosure-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 20px;
    background: url("../images/arrows_slide_right.svg") no-repeat center center;
}

/* Divider */
.tl-divider {
    height: 1px;
    background: #E1E1E1;
    margin: 50px 0;
}

/* Bottom disclaimer */
.tl-disclaimer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: solid 1px #E1E1E1;
}

.tl-disclaimer-left h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
}

.tl-disclaimer-note {
    margin-top: 16px;
    font-size: 1rem;
    padding-left: 45px;
}

.tl-disclaimer-note strong {
    font-weight: 600;
    font-style: italic;
}

.tl-readmore {
    margin-top: 80px;
    padding: 60px 0;
    background: #F8F8F8;
}

.font16 {
    font-size: 1rem !important;
}

/* Title */
.tl-readmore-title {
    text-align: center;
    margin-bottom: 36px;
    color: #282828;
    font-weight: 400;
    font-size: clamp(2.25rem, 3.5vw, 3.25rem);
    line-height: 1;
    letter-spacing: -5%;
}

/* Grid */
.tl-readmore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.tl-article-card {
    display: flex;
    flex-direction: column;
}

.tl-article-img img {
    width: 100%;
    display: block;
}

/* Meta */
.tl-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
}

.tl-article-date {
    background: #F5EFEC;
    padding: 8px 10px;
    border-radius: 2px;
    color: #CB8918;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.tl-article-share {
    font-size: 16px;
    color: #CB8918;
}

.tl-article-img {
    height: 170px;
    overflow: hidden;
}

.tl-article-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Title */
.tl-article-title {
    margin-bottom: 20px;
    color: #282828;
    font-family: IBM Plex Sans;
    font-weight: 400;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.5;
    letter-spacing: 0%;
}

/* Link */
.tl-article-link {
    margin-top: auto;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.tl-article-link span {
    margin-left: 6px;
}

/* HERO */
.container-about {
    width: min(1140px, 94%);
    margin: 0 auto;
}

.tl-inner-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    color: #fff;
    overflow: hidden;
}

.tl-inner-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-inner-hero-bg {
    position: absolute;
    inset: 0;
}

.tl-inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.6)); */
}

/* Content */
.tl-inner-hero-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.tl-inner-eyebrow {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.tl-inner-title {
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: clamp(2.5rem, 4.7vw, 4.5rem);
    letter-spacing: -5%;
}

.tl-inner-subtext {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0%;
}

/* Scroll icon */
.tl-inner-scroll {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    background: #d08a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    z-index: 2;
}

/* INTRO */
.tl-inner-intro {
    padding: 20px 0 40px;
}

.tl-inner-intro.pageintro {
    padding: 20px 0;
}

.tl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Lead text */
.tl-inner-intro-lead {
    margin-bottom: 50px;
    max-width: 900px;
    font-weight: 300;
    font-size: clamp(1.75rem, 2.8vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -5%;
    font-family: "Playfair", serif;
}

/* Grid */
.tl-inner-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


.tl-inner-intro-left p,
.tl-inner-intro-right p {
    font-size: clamp(1rem, 1.325vw, 1.125rem);
    line-height: 1.7;
    color: #282828;
}

/* CTA */
.tl-inner-cta {
    margin-top: 30px;
    background: #F8F8F8;
    padding: 30px 50px;
}

.planbtn {
    display: inline-flex;
    align-items: center;
    gap: max(8px, 2vw);
    margin-top: 30px;
    background: #F5EFEC;
    padding: 15px 20px;
    border-radius: 5px;
    color: #000;
    font-weight: 400;
    font-size: clamp(0.75rem, 1vw, .875rem);
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.planbtn>* {
    z-index: 2;
}

.planbtn.whitebg {
    background: #fff;
}


.planbtn:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: #000;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    z-index: 1;
}

.planbtn:hover {
    color: #fff;
}

.planbtn:hover:before {
    width: 100%;
}

.tl-inner-cta-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 18px;
}

.tl-inner-cta-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
}

.tl-inner-cta-link span {
    margin-left: auto;
}

/* Highlight */
.tl-inner-highlight {
    margin-top: 30px;
    font-weight: 300;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -5%;
}

.tl-milestones {
    background: #282828;
    color: #fff;
    padding: 100px 0;
}

.tl-milestones-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    align-items: center;
}

/* Left */
.tl-milestones-title {
    margin-bottom: 10px;
    font-weight: 300;
    font-size: clamp(2.75rem, 4vw, 3.75rem);
    line-height: .8;
    letter-spacing: -5%;
}

.tl-milestones-sub {
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1;
}

.tl-milestones-left {
    position: relative;
}

/* List */
.tl-milestones-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 50px;
    position: relative;
}

.tl-milestones-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 50px;
    position: relative;
    border-left: solid 1px #3F3F3F;
}

.tl-milestone {
    position: relative;
    padding: 6px 0;
}

/* Dot */
.tl-milestone::before {
    content: "";
    position: absolute;
    left: -51px;
    width: 1px;
    height: 100%;
    background: transparent;
}

.tl-milestone.active::before {
    background: #fff;
}

/* Year */
.tl-milestone-year {
    color: #EA8423;
    margin-bottom: 6px;
    font-family: "Playfair", serif;
    font-weight: 500;
    font-size: clamp(2.75rem, 3.8vw, 3.75rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: uppercase;
}

/* Text */
.tl-milestone p {
    font-size: 0.9375rem;
    line-height: 1.75;
    font-weight: 300;

}

.tl-milestone p.sep {
    border-top: solid 1px #3F3F3F;
    padding-top: 6px;
    margin-top: 6px;
}

/* Right image */
.tl-milestones-right img {
    width: 100%;
    display: block;
}

.tl-vme {
    padding: 200px 0 100px;
    background: #fff;
    text-align: center;
}


/* Wrapper */
.tl-vme-wrap {
    position: relative;
}

.tl-vme-image {
    position: relative;
}

/* Image */
.tl-vme-image img {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Vision */
.tl-vme-vision {
    position: absolute;
    left: 17.7%;
    top: -16px;
    max-width: 238px;
    text-align: right;
}

.tl-vme-vision h3 {
    font-weight: 500;
    font-size: clamp(1rem, 3.8vw, 3.75rem);
    line-height: 1;
    letter-spacing: -5%;
    text-align: right;
    position: relative;
}

.tl-vme-vision h3::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 54%;
    width: 50px;
    height: 100px;
    background: url(../images/line.svg) no-repeat center top;
    z-index: 0;
}

.tl-vme-vision p {
    font-size: clamp(.5rem, 1vw, 1rem);
    color: #282828;
}

/* Mission */
.tl-vme-mission {
    position: absolute;
    right: 7%;
    top: -100px;
    max-width: 452px;
    text-align: left;
}

.tl-vme-mission h3 {
    font-weight: 500;
    font-size: clamp(1rem, 3.8vw, 3.75rem);
    line-height: 1;
    letter-spacing: -5%;
    text-align: left;
    position: relative;
}

.tl-vme-mission h3::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 54%;
    width: 50px;
    height: 100px;
    background: url(../images/line.svg) no-repeat center top;
    transform: scaleX(-1);
    z-index: 0;
}

.tl-vme-mission p {
    font-size: clamp(.5rem, 1vw, 1rem);
    color: #282828;
}

/* Ethos */
.tl-vme-ethos {
    position: absolute;
    right: 5%;
    top: 33%;
    max-width: 225px;
    text-align: left;
    z-index: 0;
}

.tl-vme-ethos-label {
    display: block;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -5%;
    font-size: clamp(1rem, 3.3vw, 3.25rem);
}

.tl-vme-ethos p {
    font-weight: 400;
    font-size: clamp(.5rem, 1vw, 1rem);
    line-height: 1;
    position: relative;
}

/* Yellow blob */
.tl-vme-ethos p::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: #CB8918;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0px 4px 4px 0px #00000040;
    transform: translate(-44%, -44%);
}

/* Footer */
.tl-vme-footer {
    width: min(670px, 100%);
    margin-left: auto;
    margin-right: auto;
    border-bottom: 2px solid #333;
    padding: 36px 40px;
    background: #F8F8F8;
    position: absolute;
    height: 360px;
    display: flex;
    align-items: end;
    bottom: 0;
    transform: translateX(-50%) translateY(40%);
    left: 50%;
}

.tl-vme-footer p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.7rem, 1vw, 1rem);
    line-height: 1.6;
    letter-spacing: 0%;
    text-align: center;
}

.tl-values {
    padding: 100px 0;
}


/* Layout */
.tl-values-grid {
    display: grid;
    grid-template-columns: .5fr 1.5fr;
    align-items: center;
}

/* Image */
.tl-values-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Content */
.tl-values-title {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: clamp(2.75rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -5%;
}

.tl-values-desc {
    color: #282828;
    margin-bottom: 10px;
    max-width: 520px;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.25vw, 1.125rem);
    line-height: 1.5;
    letter-spacing: 0%;
    padding-left: 40px;
}

.tl-values-content {
    background: #F5EFEC;
    padding: 30px 30px 40px 50px;
}

/* Value grid */
.tl-values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Item */
.tl-value-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tl-value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-14px);
}

.tl-value-item p {
    color: #000;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.2;
    letter-spacing: 0%;
}

.team-main {
    background: #f8f8f8
}

#main-content:has(.leadership-section) {
    background: #f8f8f8
}

.leadership-section,
.board-section {
    padding: 50px 0 0;
    width: 100vw;
    overflow: hidden;
}

.investment-section {
    padding: 50px 0 70px;
}

.heading3 {
    color: #000;
    margin-bottom: 46px;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -5%;
}

.heading3 span {
    font-family: "Abhaya Libre", serif;
}

.pointer {
    cursor: pointer !important;
}

.text-center {
    text-align: center;
}

.new-leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 30px;
}

.new-leader-card {
    background: #fff;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.new-leader-image {
    padding: 30px 20px 0;
    background: url('../images/pattern.svg') no-repeat center;
    background-size: 70%;
    min-height: 250px;
}

.new-leader-image img {
    display: table;
    height: 250px;
    margin: 0 auto;
}

.new-leader-content {
    padding: 24px;
    background: #F5EFEC;
    position: relative;
    transform-style: preserve-3d;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.new-leader-content:hover {
    background: #f8f8f8;
}

.new-leader-content::after {
    position: absolute;
    content: "";
    width: 90%;
    height: 16px;
    background: #666;
    top: -5px;
    left: 5%;
    filter: blur(8px);
    opacity: .5;
    z-index: -1;
    transition: 0.3s ease;
    transform: translateZ(-1px);
    pointer-events: none;
    border-radius: 50%;
}

.new-leader-content h5 {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: uppercase;
    color: #000;
}

.leadpost {
    display: block;
    font-size: clamp(0.875rem, 1vw, 1rem);
    margin-bottom: 14px;
    letter-spacing: -5%;
    color: #000;
}

.new-leader-content p {
    font-size: clamp(0.875rem, 1vw, .95rem);
    line-height: 1.4;
    margin-bottom: 16px;
    color: #282828;
}

.new-leader-content-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.ftr-social {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.section-divider {
    border: none;
    height: 1px;
    background: #D5D5D5;
    margin: 70px 0 0;
    position: relative;
}

.section-divider::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background: #000;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.readmore {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.readmore img {
    height: 14px;
    width: 14px;
    flex-shrink: 0;
}

.ms-auto {
    margin-left: auto;
}

.ms-auto1 {
    margin-left: auto;
}

.tl-case-content.conc {
    margin-bottom: 0;
    margin-top: 80px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 100%;
}

.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

iframe>#document>html>body .fullscreen-action-menu {
    display: none !important;
}

.animated-icon {
    width: 66px;
    height: 66px;
    margin-left: -20px;
    margin-top: -10px;
}

.faq-alchemy {
    padding: 0 0 80px;
}

.genttl {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.75rem, 2.375vw, 2.375rem);
    line-height: 1.2;
    letter-spacing: -5%;
}

.filter-bar-sec {
    display: flex;
    align-items: center;
    padding: 50px 12px 12px;
}

.expand-btn {
    border: none;
    border-radius: 5px;
    background: #F2F2F2;
    color: #282828;
    padding: 12px 18px;
    cursor: pointer;
    box-shadow: none;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-size: 1rem;
    transition: all 0.1s ease;
}

.expand-btn img {
    transition: all 0.1s ease;
}

.expand-btn.expanded img {
    transform: rotate(180deg);
}

.faq-box .faq-question h4 {
    font-family: "Playfair", serif;
    color: #282828;
    font-weight: 400;
    font-size: clamp(1rem, 1.75vw, 1.75rem);
    line-height: 1.1;
    letter-spacing: -5%;
}

.complaints-section {
    padding: 60px 0;
}

.complaints-header {
    margin-bottom: 40px;
}

.complaints-header h2 {
    margin-bottom: 20px;
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.375vw, 2.375rem);
    line-height: 1.1;
    letter-spacing: -5%;
}

.complaints-header p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
}

.complaints-card {
    background: #F5EFEC;
    padding: 20px;
    margin-bottom: 36px;
    border-bottom: 1px solid #000;
}

.complaints-step-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #F8F8F8;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 10%;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.complaints-intro,
.complaints-text {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 16px;
}

.complaints-divider {
    height: 1px;
    background: #B9B9B9;
    margin: 20px 0;
}

.complaints-grid {
    display: grid;
    grid-template-columns: 180px 220px 1fr;
    gap: 40px;
}

.complaints-grid-small {
    grid-template-columns: 180px 220px;
}

.complaints-info span {
    display: block;
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.complaints-info strong {
    display: block;
    font-weight: 500;
}

.complaints-email {
    margin-top: 30px;
}

.complaints-option {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.complaints-number {
    min-width: 40px;
    font-weight: 700;
    color: #222;
}

.complaints-content {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
}

.complaints-content a {
    color: #d4972a;
    text-decoration: underline;
    font-weight: 600;
}

.complaints-or {
    margin: 35px 0;
}

.complaints-or span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 44px;
    height: 24px;
}

.compliance-section {
    padding: 0 0 60px;
}

.compliance-header {
    margin-bottom: 50px;
}

.compliance-header h2 {
    margin-bottom: 20px;
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.375vw, 2.375rem);
    line-height: 1.1;
    letter-spacing: -5%;
}

.career-title {
    margin-bottom: 20px;
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.375vw, 2.375rem);
    line-height: 1.1;
    letter-spacing: -5%;
}

.compliance-header p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.compliance-card {
    background: #F5EFEC;
    min-height: 140px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    background: #f8f8f8;
}

.compliance-card h4 {
    font-weight: 400;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1;
    letter-spacing: 0%;
    color: #282828;
}

.compliance-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.compliance-card h3 {
    margin: 0;
    color: #343434;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 90%;
}

.compliance-header {

    margin-top: 60px;
}

.career-header p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

.job-opening-section {
    padding: 60px 0;
}

.job-opening-header {
    text-align: center;
    margin-bottom: 60px;
}


.job-list {
    max-width: 1100px;
    margin: 0 auto;
}

.job-card {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid #cecece;
}

.job-content {
    flex: 1;
}

.job-meta {
    display: flex;
    gap: 80px;
    margin-bottom: 18px;
}

.job-meta-item {
    width: min(350px, 100%);
    flex-shrink: 0;
}

.job-meta-item span {
    display: block;
    color: #919191;
    font-weight: 400;
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.4;
}

.job-meta-item h4 {
    margin: 0;
    color: #000;
    font-weight: 400;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.4;
}

.job-content p {
    max-width: 650px;
    margin: 0;
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.4;
    color: #282828;
}

.job-apply-btn {
    flex-shrink: 0;
    width: 128px;
    height: 44px;
    background: #F2F2F2;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #282828;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
}


.job-apply-btn .arrimg {
    width: 16px;
    height: 16px;
}

.job-apply-btn:hover {
    background: #eae6e2;
}

.job-load-more-wrap {
    text-align: center;
    margin-top: 50px;
}

.job-load-more-btn {
    min-width: 110px;
    height: 38px;
    border: 1px solid #C4C4C4;
    background: transparent;
    font-size: 13px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-load-more-btn:hover {
    background: #F6F2F0;
}



@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.abt-milestone {
    padding: 50px 0 70px;
    background: #F5EFEC;
    overflow: hidden;
}

.abt-title {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #000;
}

.abt-slider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.abt-slider {
    margin: 0 -16px;
}

.abt-slide {
    padding: 0 16px;
    width: 25%;
}

.abt-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    margin-bottom: 30px;
    height: 240px;
}

.abt-card-top {
    display: flex;
    align-items: first baseline;
    justify-content: space-between;
}

.abt-card-top h3 {
    font-weight: 500;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.abt-card-top img {
    width: 20px;
}

.abt-card p {
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.4;
    margin: 0;
    margin-top: auto;
}

.ntf {
    padding: 140px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ntf h1 {
    color: #F5EFEC;
    font-weight: 700;
    font-size: clamp(8.5rem, 20.5vw, 20.5rem);
    line-height: 100%;
    letter-spacing: 0%;
    font-family: "IBM Plex Sans", sans-serif;
    text-align: center;
}

.bblb {
    transform: translateY(-87%);
}

.bblb h2 {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.75rem, 3.75vw, 3.75rem);
    line-height: 1.4;
    letter-spacing: -5%;
    text-align: center;
}

.bblb p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 2;
    letter-spacing: 0%;
    text-align: center;
}

.container-pms {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.pms-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 100px;
}

.pms-controls {
    display: flex;
}

.pms-controls.show {
    display: flex;
}

.pms-dots .slick-dots {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pms-dots .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #d9d9d9;
    font-size: 0;
    padding: 0;
    cursor: pointer;
}

.pms-dots .slick-dots li.slick-active button {
    background: #d28b13;
}

.pms-next {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #bdb7b2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pms-next img {
    width: 28px;
}

.abt-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 40px;
    gap: 100px;
}

.abt-controls {
    display: none;
}

.abt-controls.show {
    display: flex;
}

.abt-dots .slick-dots {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.abt-dots .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #d9d9d9;
    font-size: 0;
    padding: 0;
}

.abt-dots .slick-dots li.slick-active button {
    background: #d28b13;
}

.abt-next {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #bdb7b2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.abt-next img {
    width: 28px;
}

.pms-section {
    padding: 12px 0 120px 0;
    background: #fff;
}

.pms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.pms-card {
    display: flex;
    background: #F8F8F8;
    min-height: 210px;
    transition: 0.3s ease;
    padding: 8px;
    position: relative;
    transform-style: preserve-3d;
}

.pms-card::before,
.new-leader-content::before {
    position: absolute;
    content: "";
    width: 84%;
    height: 16px;
    background: #666;
    bottom: -4px;
    left: 8%;
    filter: blur(8px);
    opacity: .5;
    z-index: -1;
    transition: 0.3s ease;
    transform: translateZ(-1px);
    pointer-events: none;
    border-radius: 50%;
}

.pms-image {
    width: 190px;
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
}

.pms-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pms-content {
    padding: 18px 2px 18px 22px;
    display: flex;
    flex-direction: column;
}

.pms-content h3 {
    font-size: clamp(1rem, 2.2vw, 2rem);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.05em;
    /* 2-line ellipsis */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1em * 2);
}

.status-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #282828;
    margin-bottom: 6px;
    margin-top: 12px;
}

.pms-content p {
    font-size: clamp(.8rem, 1.2vw, 1.125rem);
    line-height: 1.5;
    margin: 0 0 12px;
    color: #282828;
    max-width: 420px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-item .pms-card .pms-image {
    width: 160px;
}

.wrrap {
    min-height: calc(1.4em * 4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.slider-item .pms-card .pms-content p {
    font-size: clamp(.8rem, 1vw, 1rem);
    line-height: 1.4;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-item .pms-card .pms-content .status-label {
    display: none;
}

.crdftr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.pms-link {
    margin-top: auto;
    font-size: 0.8rem;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 600;
    color: #282828;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.crdftr .pms-link {
    margin-top: 0;
}

.labelpill {
    display: inline-block;
    padding: 12px 12px 12px 28px;
    background: #CB8918;
    color: #fff;
    border-radius: 40px 0 0 40px;
    position: relative;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    letter-spacing: -2%;
}

.labelpill.labelpill1 {
    border-radius: 0 40px 40px 0;
}

.labelpill.in-active {
    background: #BDBDBD;
}

.labelpill::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.labelpill.labelpill1::before {
    width: 6px;
    height: 6px;
    background: #000;
}

.pms-slider {
    margin: 0 -12px;
}

.pms-slider .slick-slide {
    padding: 0 12px;
    box-sizing: border-box;
    padding-bottom: 30px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.media-card {
    background: #F8F8F8;
    display: grid;
    grid-template-columns: 260px 1fr;
    transition: .3s ease;
    min-height: 190px;
    cursor: pointer;
    padding: 8px;
}

.media-card:hover {
    transform: translateY(-4px);
}

.media-image {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.media-card:hover img {
    transform: scale(1.05);
}

.media-content {
    padding: 4px 4px 8px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    color: #282828;
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.media-card-title {
    color: #282828;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: .9;
    letter-spacing: -5%;
}

.media-card-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.75rem, .9vw, 0.875rem);
    color: #000;
    font-weight: 400;
}

.media-card-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #d89b17;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    flex-shrink: 0;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    width: 280px;
    background: #fff;
    cursor: pointer;
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-content {
    padding: 20px;
}

.team-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Overlay */
.team-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 998;
}

.team-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Side Drawer */
.team-side-drawer {
    position: fixed;
    top: 0;
    right: -750px;
    width: 750px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: .4s ease;
    padding: 20px 32px;
}

#csrSideDrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 1000px !important;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

#csrSideDrawer.open {
    transform: translateX(0);
}

.team-side-drawer.active {
    right: 0;
}

.team-drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}

.team-drawer-top h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -5%;
    position: relative;
}

.team-drawer-top h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #CB8918;
    z-index: 1;
}

.socials {
    display: flex;
    gap: 24px;
    margin-top: auto
}

.socials a img {
    width: 28px;
    height: 28px;
}

.close-btn {
    border: none;
    background: #F2F2F2;
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    letter-spacing: 10%;
    transition: .3s;
}

.close-btn:hover {
    background: #ddd;
}

.team-drawer-profile {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.team-drawer-img-box {
    width: 150px;
    height: 150px;
    background: #F5EFEC url('../images/pattern.svg') no-repeat center;
    background-size: 100%;
}

.team-drawer-img {
    width: auto;
    height: 100%;
    display: table;
    margin: 0 auto;
}

.team-drawer-info {
    display: flex;
    flex-direction: column;
}

.team-drawer-info h5 {
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.team-drawer-info h6 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
    line-height: 100%;
    letter-spacing: -5%;
}

.subtitletext {
    font-weight: 400;
    font-size: clamp(1.85rem, 2.3vw, 2.3rem);
    line-height: 1.1;
    letter-spacing: -5%;
    margin-bottom: 24px;
}

.team-drawer-description p {
    font-size: clamp(.9rem, 1vw, 1rem);
    margin-bottom: 20px;
    line-height: 1.5;
    color: #282828;
}

.w-100 {
    width: 100% !important;
    max-width: 100% !important;
}

.inner-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.inner-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.alchemy-life {
    padding: 50px 0 80px;
    background: #f8f8f8;
    overflow: hidden;
}

.alchemy-container {
    width: 100%;
}

.alchemy-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 50px;
}

.alchemy-marquee {
    overflow: hidden;
    width: 100%;
}

.alchemy-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: alchemyScroll 40s linear infinite;
}

.alchemy-track:hover {
    animation-play-state: paused;
}

.alchemy-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alchemy-card {
    width: 220px;
    overflow: hidden;
    background: #fff;
}

.alchemy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.h180 {
    height: 180px;
}

.h220 {
    height: 220px;
}

.h420 {
    height: 414px;
}

.glossary-section {
    padding: 0 0 80px;
    background: #fff;
}

.content-glossary {
    padding-top: 60px
}

.glossary-masonry {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.glossary-item {
    position: relative;
    width: calc(33.333% - 20px);
    padding: 20px;
    border-bottom: 1px solid #D5D5D5;
    background: #fff;
    border-left: solid 1px #D5D5D5;
}

.glossary-item.disabled {
    filter: blur(4px);
    opacity: .4;
}

.glossary-item::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #282828;
    bottom: -5px;
    left: -5px;
    z-index: 1;
}

.character {
    font-weight: 400;
    font-size: clamp(2rem, 4.7vw, 5rem);
    line-height: .8;
    letter-spacing: -5%;
    color: #282828;
}

.words {
    padding: 16px 0;
    border-bottom: solid 1px #D5D5D5;
}

.words:last-child {
    border-bottom: none;
}

.word {
    font-weight: 500;
    font-size: clamp(.7rem, 1vw, 1rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #000;
    margin-bottom: 8px;
}

.definition {
    font-weight: 400;
    font-size: clamp(.7rem, 1vw, 1rem);
    line-height: 1.4;
    letter-spacing: 0%;
    color: #282828;
}

.filter-items {
    display: flex;
    justify-content: space-between;
    background: #202020;
    align-items: center;
    padding: 12px 22px;
    position: sticky;
    top: 86px;
    z-index: 4;
}

.search-filter-wrapper {
    position: relative;
}

.searchdrop {
    position: absolute;
    top: 140%;
    right: -20px;
    background: #202020;
    width: 315px;
    padding: 24px 18px;
    display: block;
    z-index: 2;
    max-height: 400px;
    overflow-y: auto;
}

.suggestion-title {
    font-weight: 400;
    font-size: clamp(.7rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    color: #ffffff82;
    margin-bottom: 12px;
}

.search-suggestions-list-title {
    font-weight: 400;
    font-size: clamp(.7rem, 1vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0%;
    color: #ffffff82;
    margin-bottom: 12px;
}

.search-suggestions-list {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0%;
    display: block;
    list-style-type: none;
}

.suggestion-content p {
    position: relative;
    padding-right: 12px;
    border-right: 1px solid #8C8C8C
}

.suggestion-highlight {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -5%;
    margin-bottom: 10px;
}

.search-suggestions-list li {
    border-bottom: 1px solid #474747;
}

.search-suggestions-list li:last-child {
    border-bottom: none;
}

.search-suggestions-list li a {
    display: flex;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.not-found {
    color: #AEAEAE;
}

.suggestion-list {
    padding-left: 12px;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0%;
}

.suggestion-list li a {
    display: flex;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.search-filter {
    background: #313030;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
}

.filter-search {
    background: transparent;
    border: 0;
    color: #fff;
    padding: 10px;
    width: 200px;
}

.alphabet-filter {
    display: flex;
    align-items: center;
    gap: 20px 40px;
    padding: 0 20px;
    background: #202020;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 3;
}

.alphabet-filter__item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #fff;
    transition: all .3s ease;
}

.alphabet-filter__item .dot {
    width: 5px;
    height: 5px;
    background: #fff;
    transition: all .3s ease;
}

.alphabet-filter__item.active,
.alphabet-filter__item:hover {
    color: #CB8918;
}

.alphabet-filter__item.active .dot,
.alphabet-filter__item:hover .dot {
    background: #CB8918;
}

.site-map-section {
    padding: 80px 0;
    background: #fff;
}

.site-map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.site-map-column h4 {
    margin: 0 0 20px;
    color: #000;
    font-weight: 500;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    line-height: 1;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.site-map-block {
    margin-top: 40px;
}

.site-map-list,
.site-map-sub-list,
.site-map-inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-map-list {
    margin: 0 0 0 20px;
}

.site-map-category {
    margin: 0 0 0 20px;
}

.site-map-sub-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 20px;
}

.site-map-list>li,
.site-map-sub-list>li {
    margin-bottom: 18px;
}

.site-map-inner-list {
    margin-top: 10px;
    padding-left: 28px;
}

.site-map-inner-list li {
    margin-bottom: 12px;
}

.site-map-list>li>a,
.site-map-heading-link {
    position: relative;
    padding-left: 18px;
    display: inline-block;
    color: #000;
    text-decoration: none;
    transition: .3s;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    line-height: 1.4;
    letter-spacing: 0%;
}

.site-map-sub-list>li>a {
    position: relative;
    padding-left: 18px;
    display: inline-block;
    color: #000;
    text-decoration: none;
    transition: .3s;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.125vw, 1.125rem);
    line-height: 1;
    letter-spacing: 0%;
}

.site-map-list>li>a::before,
.site-map-sub-list>li>a::before,
.site-map-heading-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: url('../images/arrow-btn.svg') no-repeat center;
    background-size: 100%;
}

.site-map-sub-list>li>a::before {
    top: 3px;
}

.site-map-inner-list a {
    color: #000;
    text-decoration: none;
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.5;
    transition: .3s;
}

.site-map-list a:hover,
.site-map-sub-list a:hover,
.site-map-inner-list a:hover {
    color: #d8a047;
}

.share-popup {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    z-index: 999;
}

.share-popup.active {
    display: grid;
}

.share-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    font-weight: 300;
    transition: .3s;
    width: 20px;
}

.share-card:hover {
    transform: translateY(-2px);
}

.copy-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #c8871a;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

#listenButton.active-listening,
.tl-hero-listen.active-listening {
    opacity: 0.7;
}

#listenButton.active-listening img,
.tl-hero-listen.active-listening img {
    animation: pulse 1s infinite;
}

.tl-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.tl-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.tl-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
}

.tl-video-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1100px, 90vw);
    transform: translate(-50%, -50%);
}

.tl-video-close {
    position: absolute;
    right: -10px;
    top: -50px;
    width: 40px;
    height: 40px;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

.tl-video-body {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.tl-video-body video,
.tl-video-body iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: 0;
}

.search-panel {
    position: fixed;
    z-index: 10;
    background: #FAFAFA;
    width: 100vw;
    height: 100vh;
    padding: 40px;
    display: none;
    flex-direction: column;
}

.search-panel.show {
    display: flex;
}

.search-header {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.search-body {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
}

.search-submit {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: none;
    outline: none;
    padding: 0 14px 0 12px;
    cursor: pointer;
}

.search-submit img {
    width: 34px;
}

.search-input {
    background: #fff;
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #D2D2D2;
    outline: none;
    padding: 12px 60px 12px 30px;
    height: 100px;
    font-weight: 300;
    font-size: clamp(1.25rem, 1.8vw, 1.8rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #949494;
}

.search-input::placeholder {
    font-weight: 300;
    font-size: clamp(1.25rem, 1.8vw, 1.8rem);
    line-height: 1;
    letter-spacing: -5%;
    color: #949494;
}

.search-results-wrapper {
    padding: 24px;
    height: 325px;
    border-bottom: 3px solid #CB8918;
    overflow-y: auto;
}

.search-results {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-results li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all .3s ease;
}

.search-results li a:hover {
    color: #cc8c1f;
}

.arr {
    flex-shrink: 0;
}

.search-results-section {
    padding: 50px 0;
    background: #fff;
}

.search-result-heading {
    margin-bottom: 26px;
    color: #000;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -5%;
}

.search-result-list {
    display: flex;
    flex-direction: column;
}

.search-result-item {
    padding: 0 0 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #cfcfcf;
}

.search-result-title {
    display: inline-block;
    margin-bottom: 2px;
    color: #282828;
    text-decoration: none;
    transition: color .3s ease;
    font-family: "Playfair", serif;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.75vw, 1.75rem);
    line-height: 1.1;
    letter-spacing: -5%;
}

.search-result-title:hover {
    color: #CB8918;
}

.search-result-desc {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.8;
    color: #282828;
}

.search-result-desc strong {
    font-weight: 600;
    color: #111;
}

.search-result-url {
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: #CB8918;
    text-decoration: none;
    word-break: break-word;
}

.search-result-url:hover {
    text-decoration: underline;
}

.search-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.search-loadmore-btn {
    min-width: 140px;
    height: 52px;
    border: 1px solid #cfcfcf;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
}

.search-loadmore-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.top-row {
    padding: 24px 22px 32px;
    border-top: 3px solid #CB8918;
    background: #FAFAFA;
    margin-bottom: 12px;
}

.pms-calculator {
    padding: 60px 0 60px;
    background: #fff;
}

.toptext {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
    width: min(762px, 90%);
    padding-bottom: 50px;
    margin-left: 60px;
}

.pms-title {
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -5%;
}

.pms-input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pms-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
}

.pms-field input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #D2D2D2;
    border-radius: 5px;
}

.pms-field input:read-only {
    background: #FAFAFA;
}

.input-with-suffix {
    position: relative;
}

.input-with-suffix span {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    background: #fff;
}

.table-wrapper {
    overflow-x: auto;
}

.pms-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
}

.pms-table th,
.pms-table td {
    padding: 14px;
    border: 1px solid #D2D2D2;
    font-size: 14px;
    vertical-align: middle;
}

.pms-table td {
    background: #FAFAFA;
}

.pms-table td.white-bg {
    background: #fff;
    padding: 6px 14px;
}

.pms-table th {
    background: #fff;
    text-align: left;
    font-weight: 600;
    min-width: 140px;
}

.pms-table th>.regular {
    font-weight: 400;
}

.fixed-col small {
    display: block;
    margin-top: 4px;
    font-weight: 400;
}

.year-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.year-input input {
    width: 80px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #D2D2D2;
    border-radius: 5px;
}

.num {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.pms-notes {
    margin-top: 40px;
}

.pms-notes h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -5%;
}

.pms-notes ul {
    margin: 0;
    padding-left: 12px;
}

.pms-notes li {
    margin-bottom: 12px;
    line-height: 1.4;
    color: #282828;
    letter-spacing: -5%;
    font-size: 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

table td,
table th {
    margin: 0px;
    padding: 18px 16px;
    box-sizing: border-box;
    text-align: left;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

table td {
    font-weight: 400;
}

table.bordered td,
table.bordered th {
    border: 1px solid #ddd;
}

table.striped tbody tr:nth-child(2n) {
    background-color: #fafafa;
}

.imgscreenbx {
    display: flex;
    justify-content: center;
}

.text-email {
    padding: 30px 0 80px 0;
    text-align: center;
}

.text-email h4 {
    color: #000;
    font-weight: 400;
    font-size: clamp(1.125rem, 2vw, 2rem);
    line-height: 1.3;
    letter-spacing: -5%;
    margin-bottom: 20px;
}

.mediamail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mediamail img {
    height: 60px;
    width: 60px;
    flex-shrink: 0;
}

.slick-track {
    margin-left: unset !important;
}

.upip {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.upip span {
    font-weight: 600;
    color: #CB8918;
    font-style: italic;
}

.knowacc {
    color: #000;
    font-weight: 400;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 60px;
}

.accbx-wrapper {
    width: 98%;
    max-width: 715px;
    margin: 0 auto;
    margin-top: 50px;
}

.accbx {
    padding: 60px;
    border: 5px solid #F8F8F8;
    background: #fff;
    display: block;
    width: 100%;
}

.accform {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accinput {
    border: 1px solid #DCDCDC;
    display: block;
    width: 100%;
    background: #f8f8f8;
    border-radius: 5px;
    padding: 18px 24px;
}

.showbtn {
    display: flex;
    width: 140px;
    height: 53px;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border: 0;
    outline: none;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
    gap: 20px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.showbtn span {
    position: relative;
    z-index: 1;
}

.showbtn img {
    height: 14px;
    transition: all 0.3s;
}

.showbtn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    background: #c8871a;
    z-index: 0;
}

.showbtn:hover::before {
    transform: translateX(0%);
}

.showbtn:hover img {
    filter: brightness(1000%) saturate(0%);
    transform: translateX(4px);
}

.informbx {
    display: flex;
    align-items: start;
    gap: 28px;
    margin-top: 45px;
}

.ifop {
    font-size: 14px;
}

.incase {
    margin-top: 34px;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
}

.incase a {
    text-decoration: underline;
}

.paymen-faq {
    padding: 80px 0;
}

.payment-faq-heading {
    color: #282828;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -5%;
    text-align: center;
    margin-bottom: 40px;
}

.ac-info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.acc-info-btn {
    flex-shrink: 0;
    cursor: pointer;
}

.ac-info-modal.show {
    display: flex;
}

.acmodalbx {
    width: 96%;
    max-width: 900px;
    background: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mod-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mod-headp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mod-headp img {
    filter: grayscale(1) saturate(0) contrast(4);
    flex-shrink: 0;
}

.upi-result-container {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.upi-bank-text {
    color: #000;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.3;
    text-align: center;
}

.upi-card {
    background: #fff;
    padding: 50px 40px;
    border: 5px solid #F8F8F8;
}

.upi-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #000;
}

.upi-qr-box {
    width: 260px;
    height: 260px;
    margin: 0 auto 45px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.12);
}

.upi-qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.upi-id-block {
    max-width: 320px;
    margin: 0 auto;
}

.upi-label {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.upi-id-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #F7F7F7;
    border-radius: 5px;
    padding: 14px 20px;
}

.upi-id-box span {
    color: #c78f2c;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.copy-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.copy-btn img {
    width: 20px;
    height: 20px;
}

.upi-back-btn {
    margin-top: 40px;
    min-width: 140px;
    height: 50px;
    border: 0;
    background: #F5EFEC;
    color: #838383;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    letter-spacing: 10%;
}

.upi-back-btn:hover {
    opacity: 0.8;
}

.qr-block {
    display: none;
}

.qr-block.show {
    display: block;
}

.input-block.hide {
    display: none;
}

.thumbbtn {
    cursor: pointer;
    margin-top: auto;
}

.market-view-thumb-video {
    height: 160px;
    overflow: hidden;
}

.market-view-thumb-video>img {
    height: 100%;
    object-fit: cover;
}

.market-view-thumb>img {
    height: 160px;
    min-width: 100%;
}

.ham {
    display: none;
}

@media(max-width:992px) {

    .pms-input-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ham {
        display: block;
    }

    .drawer-content h2 a {
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 10%;
    }
}

@media(max-width:768px) {
    .market-view-thumb>img {
        height: 190px;
    }

    .hero-content h2 {
        font-size: clamp(2.5rem, 8vh, 3rem);
    }

    .market-view-main-video {
        height: unset;
    }

    .pms-calculator {
        padding: 50px 0;
    }

    .pms-title {
        font-size: 28px;
    }

    .pms-input-grid {
        grid-template-columns: 1fr;
    }

    .pms-table th,
    .pms-table td {
        padding: 10px;
        font-size: 13px;
    }

    .acmodalbx {
        padding: 40px 12px;
    }

    .accbx {
        padding: 30px 16px;
    }

    .accform {
        flex-direction: column;
    }

    .showbtn {
        width: 100%;
    }

    .upi-card {
        padding: 50px 12px;
    }
}

@media (max-width: 768px) {
    .search-results-section {
        padding: 50px 0;
    }

    .search-result-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .search-result-title {
        font-size: 24px;
    }

    .search-result-desc {
        font-size: 14px;
    }

    .toptext {
        margin-left: 6px;
    }
}

@keyframes pulse {
    50% {
        transform: scale(1.1);
    }
}

/* ================= RESPONSIVE ================= */
@media (min-width: 992px) {
    .footer {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        padding: 60px 60px 30px 0;
    }

    .footer-right {
        padding: 40px 50px;
    }

    .footer-bottom {
        grid-column: span 3;
        padding: 20px 0px 0;
        border-top: 1px solid #E5E5E5;
    }

}

/* Responsive */
@media (max-width: 640px) {
    .snapshot-right .btngroup.inline {
        right: 16px;
        bottom: 16px;
        left: 16px;
        flex-direction: column;
    }

    .btngroup.inline .snapshot-btn::after {
        content: "";
        width: 86%;
        height: 1px;
        border-top: #A3A3A3 solid 1px;
        position: absolute;
        top: 100%;
        left: 6.5%;
    }

    .inttertape {
        position: relative;
        width: unset;
    }

    .search-panel {
        padding: 20px 0 0 0;
    }

    .search-input {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .btngroup {
        width: 100%;
    }

    .btngroup .snapshot-btn {
        min-height: 66px;
    }
}

@media (max-width: 1200px) {
    .contact-wrapper {
        width: 100%;
        padding: 0 24px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:992px) {
    .committee-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        margin-top: -70px;
    }
}

@media (max-width: 992px) {
    .inttertape-section {
        top: 60px;
    }

    .filter-items {
        top: 62px;
    }

    .mobilenav-header {
        display: flex;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        width: 100vw;
        left: 105%;
        background: #282828;
        height: 100vh;
        z-index: 5;
        transition: left 0.3s ease;
    }

    .nav-bar.show {
        left: 0;
    }

    .nav-items {
        gap: 0;
        flex-direction: column;
        padding: 8px 0;
    }

    .drawer-content {
        padding-top: 4px;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link {
        padding: 12px 20px;
        justify-content: space-between;
        font-weight: 300;
    }

    .nav-link img {
        transform: rotate(-90deg);
        transition: transform 0.3s ease;
    }

    .nav-item.mega-parent .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        position: fixed;
        top: 0;
        left: 104%;
        width: 100vw;
        z-index: 3;
        height: 100vh;
        display: flex;
        opacity: unset;
        transition: all 0.3s ease;
        visibility: unset;
        padding: 0;
    }

    .dropdown-menu.show {
        left: 0;
    }

    .mega-menu {
        position: fixed;
        top: 0;
        left: 104%;
        width: 100vw;
        display: flex;
        opacity: unset;
        visibility: unset;
        transform: unset;
        height: 100vh;
    }

    .mega-menu.show {
        left: 0;
    }

    .dropdown-item::before {
        display: none;
    }

    .dropdown-item {
        border-left: none;
        border-bottom: 1px solid #ddd;
    }

    .mega-left {
        width: 100%;
        height: 100%;
    }

    .dropdown-nav-link {
        padding: 8px 18px;
    }

    .mega-cols {
        position: relative;
        display: flex;
        gap: 0;
        padding: 8px;
        left: unset;
        top: unset;
        width: 95%;
        visibility: unset;
        opacity: unset;
        transition: all 0.3s ease;
        background: #ECECEC;
        flex-direction: column;
    }

    .col-links {
        background: #f8f8f8;
        display: none;
    }

    .col-links.active {
        display: block;
    }

    .headtext-mob {
        display: flex;
    }

    .mega-dropdown-item-link::before,
    .mega-dropdown-item-link::after {
        display: none;
    }

    .mega-dropdown-item-link {
        padding: 16px 0px;
    }

    .mega-col h4::after {
        display: none;
    }

    .mega-col {
        border-bottom: 1px solid #CBCBCB;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-col h4 {
        padding: 12px 0;
        font-weight: 400;
        cursor: pointer;
    }

    .cols-footer {
        padding: 20px 0px 12px;
        font-size: 12px;
        flex-direction: column;
        gap: 6px;
        position: static;
    }

    .cols-footer-item:last-child span {
        margin: 0;
    }

    .invest-category {
        padding: 0px 0;
        position: relative;
    }

    .nav-item.active .mega-menu {
        left: 0%;
    }

    .nav-item.active .dropdown-menu {
        left: 0%;
    }

    .nav-item::after {
        display: none;
    }

    .drawer-close {
        display: none;
    }

    .side-drawer {
        width: 100%;
        position: unset;
        padding: 12px;
    }

    .drawer-content hr {
        margin: 10px 0;
        width: 100%;
    }

    .drawer-content li {
        padding: 10px 0;
    }

    .logo {
        width: 70px;
    }

    .actionlink span {
        display: none;
    }

    .card {
        padding: 2.5vw 1.75vw;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .adv-left h2 {
        font-size: 2.5rem;
    }

    .inv-cards {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .inv-card {
        padding: 40px 30px;
    }

    .footer-section {
        background: linear-gradient(180deg, rgba(248, 248, 248, 1) 50%, rgba(246, 242, 240, 1) 50%);
    }

    .footer-section>.container {
        width: 100%;
    }

    .footer-bottom {
        background: rgba(248, 248, 248, 1);
    }

    .philo-cards {
        overflow-x: auto;
        padding-bottom: 30px;
        gap: 16px;
        margin-right: -10%;
        padding-right: 40px;
    }

    .philo-image-wrapper {
        display: flex;
        margin-left: 14%;
    }

    .philosophy {
        padding: 0px 0 40px;
    }

    .philo-card {
        flex-shrink: 0;
    }

    .philo-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .philo-image img {
        height: 300px;
    }

    .two-col-section {
        grid-template-columns: 1fr;
    }

    .market-card img {
        position: relative;
        width: 100%;
        height: auto;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-right {
        grid-template-columns: 1fr;
    }

    .lead-grid {
        grid-template-columns: 1fr;
    }

    .lead-right {
        grid-template-columns: 1fr;
    }

    .mob {
        display: block;
    }

    .desktop {
        display: none;
    }

    .bottom-drawer-panel {
        padding: 30px 0px;
    }

    .bottom-drawer-img-box {
        width: 120px;
        height: 170px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .bottom-drawer-text-box p {
        font-size: 12px;
        line-height: 1.4;
    }

    .knowmore-btn {
        font-size: 12px;
    }

    .drawer-card {
        min-width: 312px;
        flex-shrink: 0;
    }

    .bottom-drawer-content {
        padding-top: 12px;
        gap: 6px;
    }

    .bottom-drawer-panel {
        height: 580px;
    }

    .inv-card h3 {
        line-height: 1;
    }

    .market-tabs {
        max-width: 90vw;
    }

    .market {
        padding: 70px 0 40px;
    }

    .news {
        padding: 50px 0;
    }

    .leadership {
        padding: 50px 0;
    }

    .inner-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .inner-right {
        width: unset;
        height: 220px;
    }

    .inner-banner {
        background: #282828;
        padding: 32px 0 0;
        color: #fff;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-right {
        height: 300px;
    }

    .snapshot-title {
        text-align: left;
        line-height: 1;
    }

    .inttertape-select {
        display: flex;
    }

    .inttertape-list {
        width: 100%;
        background: #1f1f1f;
        gap: 0 !important;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        flex-direction: column;
    }

    .inttertape ul li a {
        padding: 12px 14px;
    }

    .inttertape.active .inttertape-list {
        max-height: 400px;
        padding: 10px 0;
    }

    .inttertape-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .snapshot-left {
        background: #F8F8F8;
        padding: 12px 12px;
    }

    .snapshot-list li {
        font-size: 12px;
    }

    .fm-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    .fm-card {
        flex-direction: column;
        width: 100%;
        min-width: unset;
    }

    .fm-img img {
        width: 100%;
        height: auto;
    }

    .alchemy-request-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .alchemy-request-action {
        width: 100%;
    }

    .alchemy-request-btn {
        width: 100%;
        justify-content: space-between;
    }

    .left-aligned,
    .left-aligned-min {
        margin-left: 0;
    }

    .abt-slider {
        display: flex;
        flex-direction: column;
        padding-inline: 10px;
    }

    .m-order1 {
        order: 1;
    }

    .m-order2 {
        order: 2;
    }

    .m-order3 {
        order: 3;
    }

    .m-order4 {
        order: 4;
    }

    .m-order5 {
        order: 5;
    }

    .m-order6 {
        order: 6;
    }

    .m-order7 {
        order: 7;
    }

    .m-order8 {
        order: 8;
    }

    .m-order8 {
        order: 8;
    }

    .m-order8 {
        order: 8;
    }

    .m-order8 {
        order: 8;
    }

    .m-order8 {
        order: 8;
    }

    .m-order8 {
        order: 8;
    }

    .m-order8 {
        order: 8;
    }

    .tl-media-visual {
        margin-left: 0;
    }
}

/* Optional responsiveness */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-section {
        margin-top: 40px;
    }

    .contact-top-wrapper {
        grid-template-columns: 1fr;
    }

    .filter-bar-sec {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

}

@media (max-width: 768px) {
    .impact-grid {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .orgbar {
        gap: 4px;
    }

    .orglogo {
        width: 48px;
    }

    .grid-right {
        flex-direction: row;
        height: unset;
    }

    .grid-left {
        height: 250px;
    }

    .small-image {
        height: 140px;
        width: 50%;
    }
}

@media (max-width: 768px) {
    .initiatives {
        width: 100%;
        padding: 20px;
    }

    .initiative-card {
        flex-direction: column;
    }

    .initiative-image {
        width: 100%;
        height: 240px;
    }

    .initiative-content {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        bottom: 0;
        padding: 20px;
    }
}

@media(max-width:768px) {
    .committee-slider {
        grid-template-columns: 1fr;
    }

    .why-alchemy-section {
        padding: 0 20px 60px;
    }

    .tl-inner-intro.why-alchemy-intro {
        padding-bottom: 0;
    }

    .why-alchemy-item {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 30px;
    }

    .why-alchemy-content {
        padding: 40px 0;
    }

    .why-alchemy-icon {
        width: 90px;
    }

    .why-alchemy-content h4 {
        font-size: 20px;
    }

    .why-alchemy-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}

@media (max-width: 768px) {
    .actions {
        gap: 6px;
    }

    .actionlink {
        padding: 10px 10px;
    }

    .heading1.adv {
        margin-bottom: 20px;
    }

    .slider-arrows {
        display: none;
    }

    .card {
        padding: 24px 20px;
    }

    .card .icon {
        margin-bottom: 0;
    }

    .inv-footer-wrapper {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-left {
        text-align: center;
    }

    .contact-box {
        padding: 0;
        border: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bottom-drawer-content {
        overflow-x: auto;
        padding-bottom: 30px;
    }

    .investment {
        background: #fff;
        padding: 100px 0 80px;
    }

    .contact h2 {
        margin-bottom: 30px;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .snapshot-btn {
        padding: 12px 14px;
        font-size: 12px;
    }

    .snapshot {
        padding: 30px 0;
    }

    .reqest-title {
        margin-bottom: 0;
    }

    .video-slider-img-box {
        padding-top: 60px;
    }

    .video-slider-img-box h4 {
        max-width: unset;
        left: 0;
        text-align: center;
        right: 0;
    }

    .perf-wrapper {
        flex-direction: column;
    }

    .performancegraph-block {
        background: #F8F8F8;
    }

    .perf-left {
        width: 100%;
        gap: 15px;
    }

    .perf-chart-box {
        width: unset;
        padding: 10px;
        margin-inline: -4%;
    }

    .video-dots {
        margin-left: 0;
    }

    .video-next {
        display: none;
    }

    .perf-top {
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .ddt {
        display: none;
    }

    #performanceChart {
        height: 320px;
    }

    .perf-icon {
        width: 40px;
    }

    .performance-section {
        padding: 50px 0px 0;
        background: #fff;
    }

    .actionlink:nth-child(2) {
        order: 1;
    }

    .search-wrapper {
        order: 2;
        width: 112px;
        flex-shrink: 0;
    }

    .actionlink:nth-child(3) {
        order: 3;
    }

    .ham {
        order: 4;
        height: 36px;
    }

    .searchinput {
        font-size: 13px;
        padding: 10px 0 10px 10px;
    }

    .searchbtn {
        padding: 0 6px 0 4px;
        flex-shrink: 0;
    }
}

@media (max-width: 991px) {

    .compliance-section {
        padding: 0 0 70px;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .compliance-header h2 {
        font-size: 42px;
    }

    .compliance-header p {
        font-size: 16px;
    }

    .compliance-card {
        min-height: 160px;
    }

    .compliance-card h4 {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {

    .compliance-header h2 {
        font-size: 34px;
    }

    .compliance-card {
        padding: 18px;
        min-height: 140px;
    }
}

@media (max-width: 991px) {

    .complaints-grid,
    .complaints-grid-small {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .complaints-option {
        flex-direction: column;
        gap: 10px;
    }

    .complaints-header h2 {
        font-size: 40px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-values-grid {
        grid-template-columns: 1fr;
    }

    .tl-values-list {
        grid-template-columns: 1fr;
    }

    .tl-values-title {
        font-size: 30px;
    }
}

/* Responsive */
@media (max-width: 900px) {

    .tl-vme-vision {
        left: 9.7%;
        top: 0;
        max-width: 90px;
    }

    .tl-vme-mission {
        max-width: 150px;
        text-align: left;
        top: -50px;
        right: 2%;
    }

    .tl-vme-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: min(440px, 100%);
        margin: 0 auto;
    }

    .tl-vme-ethos p::before {
        display: none;
    }

    .tl-vme-ethos {
        max-width: 70px;
    }

    .tl-vme-footer {
        padding: 12px 8px;
        height: 150px;
        transform: translateX(-50%) translateY(45%);
        left: 50%;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-milestones-grid {
        grid-template-columns: 1fr;
    }

    .tl-milestones-title {
        font-size: 32px;
    }

    .tl-milestones-left {
        padding-left: 0;
    }

    .tl-milestone::before {
        display: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-inner-title {
        font-size: 40px;
    }

    .tl-inner-intro-lead {
        font-size: 22px;
    }

    .tl-inner-intro-grid,

    .tl-inner-scroll {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .tl-readmore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tl-readmore-grid {
        grid-template-columns: 1fr;
    }

    .tl-readmore-title {
        font-size: 32px;
    }
}

/* Responsive */
@media (max-width: 900px) {

    .tl-disclosure-top,
    .tl-disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tl-author-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-author-img img {
        width: 120px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-timeline-grid {
        grid-template-columns: 1fr;
    }

    .tl-timeline-head {
        font-size: 20px;
    }

    .tl-timeline-row {
        grid-template-columns: 100px 1fr;
    }

    .new-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tl-hero-share {
        padding: 8px 12px;
        font-size: 12px;
        line-height: 1;
        gap: 14px;
    }

    .tl-hero-share img {
        height: 14px;
        width: 15px;
    }

    .tl-insight {
        padding: 0;
    }

    .hero-img-box {
        height: 400px;
    }

    .hero-footer {
        padding: 20px 8px 32px;
        padding-left: 0px;
    }

    .bellow-conent1 {
        padding: 50px 0 0;
    }

    .hero-footer-left .btn-arrow {
        gap: 4px;
        padding: 10px 8px;
        font-size: 10px;
    }

    .hero-footer-left .btn-arrow img {
        width: 14px;
    }

    .dots-arrows {
        bottom: 4px;
        right: 4%;
    }

    .hero {
        padding-bottom: 20px;
    }

    .custom-dots {
        gap: 12px;
    }

    .tl-media {
        padding: 54px 0 0;
        margin-bottom: -70px;
    }

    .market-view-thumbs {
        margin-top: 20px;
        flex-direction: column;
    }

    .market-view-thumb {
        width: 100%;
    }

    .tl-table-heading {
        font-size: 26px;
    }

    .tl-table th,
    .tl-table td {
        padding: 12px;
        font-size: 14px;
    }

    .screen2bx {
        padding: 12px;
    }

    .chartttx {
        bottom: -10px;
    }

    .new-leadership-grid {
        grid-template-columns: 1fr;
        column-gap: 12px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tl-case-headline {
        font-size: 30px;
    }

    .tl-case-eyebrow {
        font-size: 22px;
    }

    .tl-chart-card {
        padding: 20px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-media-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-media-text h2 {
        font-size: 30px;
    }

    .tl-media-text::before {
        display: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .tl-insight-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tl-insight-card {
        padding: 30px;
    }

}

/* Responsive */
@media (max-width: 768px) {
    .tl-hero-title {
        font-size: 34px;
    }

    .tl-hero-inner {
        padding: 0 20px;
    }

    .tl-hero-actions {
        position: static;
        margin-top: 20px;
    }

    .tl-hero-scroll {
        display: none;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .market-year-container {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .market-year-sidebar {
        flex-direction: row;
        overflow-x: auto;
        align-items: center;
        gap: 16px;
        padding: 10px 0;
        height: 60px;
    }

    .market-year-item {
        font-size: 28px;
    }

    .market-year-item.active::before {
        display: none;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .market-view-container {
        grid-template-columns: 1fr;
    }

    .market-view-section {
        padding: 26px 0;
    }

    .market-view-right {
        margin-top: 0px;
    }

    .market-view-modal iframe {
        height: 250px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-al-blog-grid {
        grid-template-columns: 1fr;
    }

    .why-al-card {
        flex-direction: column;
    }

    .why-al-img {
        width: 100%;
        height: 180px;
    }

    .why-al-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin: 0 auto 30px auto;
        padding-bottom: 30px;
        position: relative;
    }
}

/* RESPONSIVE */
@media (max-width: 1210px) {
    .market-view-thumbs {
        margin-top: 20px;
    }
}

@media (max-width: 900px) {
    .why-al-grid {
        flex-direction: column;
        gap: 40px;
    }

    .why-al-divider {
        display: none;
    }

    .why-al-item {
        min-height: 70px;
    }

    .why-al-text {
        position: static;
        text-align: left;
        margin-top: 20px;
        max-width: 260px;
    }

    .why-al-icon {
        position: static;
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
    }

    .fm-section {
        padding: 70px 0;
    }

    .faq {
        padding: 0px 0;
    }

    .blog-feature-wrap {
        grid-template-columns: 1fr;
    }

    .blog-feature-wrap.prr {
        grid-template-columns: 1fr;
    }

    .bog-right {
        margin-left: 0;
    }

    .blog-toolbar {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-feature-wrap {
        padding-top: 80px;
    }

    .blog-feature-media {
        margin-bottom: 20px;
    }

    .bog-right {
        position: static;
    }

    .blog-toolbar {
        justify-content: flex-end;
        margin-bottom: 2rem;
        position: absolute;
        top: -20px;
        right: 0;
    }

    .blog-select {
        flex: 1 1 220px;
        min-width: 0;
    }

    .blog-feature-title {
        font-size: clamp(2.1rem, 8vw, 3.1rem);
    }

    .blog-feature-copy {
        font-size: 1rem;
    }

    .blog-feature-card {
        padding: 109px 1rem 3rem 1rem;
    }

    .blog-feature-card.media {
        padding: 16px 16px 40px;
    }

    .download-btn {
        padding: 12px 12px;
    }

    .mob-none {
        display: none;
    }

    .tl-hero-meta {
        font-size: 10px;
        color: #b8b8b8;
        display: flex;
        gap: 4px;
        font-weight: 400;
        align-items: center;
    }

    .blog-feature-media img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-select {
        flex-basis: 100%;
    }

}

@media(max-width:991px) {
    .site-map-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .site-map-column h3 {
        font-size: 26px;
    }

    .site-map-list>li>a,
    .site-map-sub-list>li>a,
    .site-map-heading-link {
        font-size: 18px;
    }

    .site-map-inner-list a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .alphabet-filter {
        gap: 32px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .alphabet-filter {
        gap: 8px 16px;
        padding: 8px;
    }

    .alphabet-filter__item {
        font-size: 12px;
    }

    .filter-items {
        align-items: unset;
        padding: 10px;
        flex-direction: column;
    }

    .searchdrop {
        right: 0;
        width: 100%;
    }
}

@keyframes alchemyScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media(max-width:991px) {

    .alchemy-title {
        font-size: 42px;
    }

    .alchemy-card {
        width: 180px;
    }

    .h180 {
        height: 150px;
    }

    .h220 {
        height: 190px;
    }

    .h420 {
        height: 354px;
    }

    .video-content {
        height: unset;
    }
}

@media(max-width:768px) {
    .glossary-masonry {
        position: static;
        height: auto !important;
    }

    .glossary-item {
        position: relative !important;
        width: 100% !important;
    }

    .inner-header {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .job-card {
        flex-direction: column;
    }

    .inner-header-right {
        gap: 10px;
        margin-left: unset;
        margin-bottom: 12px;
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-outline {
        padding: 6px 12px;
    }

    .team-section {
        padding: 30px 20px;
    }

    .team-side-drawer {
        width: 100%;
        padding: 25px;
    }

    .team-drawer-profile {
        flex-direction: column;
    }

    .team-drawer-info h3 {
        font-size: 30px;
    }

    .team-drawer-top h2 {
        font-size: 34px;
    }

    .inttertape1 {
        width: 100%;
    }

    .form-block,
    .contact-box {
        border: 10px solid #F8F8F8;
        padding: 10px;
        min-height: 500px;
    }

    .thanks-block h2,
    .thanks-block h3 {
        margin-bottom: 4px;
        font-size: 32px;
    }
}

@media(max-width:900px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:640px) {

    .media-card {
        grid-template-columns: 1fr;
    }

    .media-image {
        height: 240px;
    }

    .media-card-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 992px) {

    .pms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pms-card {
        flex-direction: column;
    }

    .pms-image {
        width: 100%;
        height: 220px;
    }

    .slider-item .pms-card .pms-image {
        width: 100%;
    }

    .pms-content {
        padding: 22px;
    }

    .pms-content h3 {
        font-size: 32px;
    }

    .slider-item .pms-card .pms-content h3 {
        font-size: 1.25rem;
    }

    .container-pms {
        display: none;
    }

    .menu-overlay {
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
}

@media (max-width: 992px) {
    .tl-inner-intro {
        padding-top: 30px;
    }

    .abt-controls {
        margin-top: 0;
    }

    .abt-milestone {
        padding: 60px 0 40px;
    }

    .abt-title {
        margin-bottom: 20px;
    }

    .abt-slide {
        padding: 0 8px;
        width: 100%;
    }

    .abt-card {
        min-height: 220px;
        padding: 20px;
    }

    .abt-card-top h3 {
        font-size: 42px;
    }

    .abt-card p {
        font-size: 18px;
    }

    .abt-next {
        width: 70px;
        height: 70px;
    }

}

@media (max-width: 450px) {
    .tl-vme-vision {
        left: -0.3%;
    }

    .tl-vme-mission {
        max-width: 108px;
    }

    .tl-vme-wrap {
        max-width: min(340px, 100%);
    }

    .tl-vme-ethos p::before {
        display: none;
    }

    .tl-vme-ethos {
        right: 0;
        top: 23%;
    }

    .tl-vme-footer {
        transform: translateX(-50%) translateY(70%);
    }

    .tl-vme {
        padding: 125px 0 100px;
    }

    .close-btn {
        padding: 6px 8px;
        gap: 10px;
        font-size: 12px;
    }
}

.accessibility-panel {
    position: fixed;
    top: 100px;
    right: -560px;
    width: min(96%, 530px);
    height: 80vh;
    background: #F8F8F8;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
    transition: .4s;
    z-index: 9999;
    overflow: auto;
    padding: 16px;
    border-bottom: 4px solid #CB8918
}

.accessibility-panel.active {
    right: 30px;
}

.accessibility-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.accessibility-overlay.active {
    opacity: 1;
    visibility: visible;
}

.accessibility-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.accessibility-title {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.75vw, 1.75rem);
    line-height: 1;
    letter-spacing: -5%;
}

.accessibility-sec-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0%;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 16px 0 32px;
}

.tool-grid button {
    height: 48px;
    border: 1px solid #B8B8B8;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 8px;
    border-radius: 6px;
    gap: 10px;
}

.tool-grid button img {
    height: 28px;
    flex-shrink: 0;
}

.accessibility-footer {
    margin-top: 30px;
}

.reset-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 6px;
    background: #d49418;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

.tool-grid button.active {
    background: #D89C2B;
    color: #fff;
    border-color: #D89C2B;
}

.reset-btn:hover {
    background: #b67b10;
}

body.high-contrast {
    filter: contrast(180%) brightness(90%);
}

.invert {
    filter: invert(1);
}

.highlight-links a {
    background: yellow;
    color: red !important;
    text-decoration: underline;
}

.saturation {
    filter: saturate(180%);
}

.letter-spacing {
    letter-spacing: 2px;
}

.line-height {
    line-height: 2;
}

.hide-images img {
    visibility: hidden;
}

.big-cursor,
.big-cursor * {
    cursor: url(../images/big-cursor.png), auto;
}

.accessibility-btn {
    background: #F8F8F8;
    border: solid 1px #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}

.contact h2.titlecase {
    text-transform: inherit;
}

.btn-arrow.back img {
    transform: scaleX(-1);
}

.backtotop {
    position: fixed;
    bottom: -60px;
    right: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, .5);
    border-radius: 5px;
    border: 1px solid #00000024;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1;
    letter-spacing: 8%;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.backtotop.active {
    bottom: 60px;
}

#readingLine {
    position: fixed;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0f62fe;
    pointer-events: none;
    display: none;
    z-index: 999999;
}

body.reading-line #readingLine {
    display: block;
}

#readingMask {
    position: fixed;
    inset: 0;
    pointer-events: none;
    display: none;
    z-index: 999999;
}

body.reading-mask #readingMask {
    display: block;
}

.reading-window {
    position: absolute;
    left: 0;
    width: 100%;
    height: 140px;
    background: transparent;

    box-shadow:
        0 -100vh 0 100vh rgba(0, 0, 0, .65),
        0 100vh 0 100vh rgba(0, 0, 0, .65);
}

.highlight-hover {
    outline: 3px solid #D89C2B !important;
    outline-offset: 4px;
    border-radius: 6px;
    background: rgba(216, 156, 43, .08);
}

@media (max-width:992px) {
    .accessibility-btn {
        width: 36px;
        height: 36px;
        order: 4;
    }
}

@media (max-width:768px) {
    .accessibility-panel.active {
        right: 8px;
    }

    .accessibility-panel {
        padding: 16px 8px;
    }

    .tool-grid {
        gap: 6px;
    }

    .backtotop.active {
        bottom: 20px;
    }

    .backtotop span {
        display: none;
        height: 40px;
        width: 40px;
    }

    .backtotop {
        height: 34px;
        width: 34px;
    }
}

@media (max-width:520px) {
    .job-meta {
        display: flex;
        gap: 10px;
        margin-bottom: 18px;
        flex-direction: column;
    }
}