@import "common.css";


/* =========================
   HEADER
========================= */

.lm-header {
    /* position: absolute; */
    /* top: 25px; */
    /* left: 0; */
    width: 100%;
    z-index: 99;
}

/* =========================
   HERO
========================= */

.lm-hero-section {
    /* min-height: 800px; */
    background: url('../images/banner-bg3.webp') center center;
    background-size: cover;
    overflow: hidden;
}

/* .lm-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .95) 0%,
            rgba(0, 0, 0, .85) 40%,
            rgba(0, 0, 0, .40) 100%);
} */
.lm-logo {
    width: 206px;
    height: 60px;
    background: url('../images/logo-bg.png') center center no-repeat;
    background-size: contain;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--lm-heading);
    color: #fff;
    position: relative;
}

.lm-logo span {
    position: relative;
    z-index: 2;
    font-size: 28px;
    line-height: 1;
    color: var(--lm-white);
    font-weight: 700;
    transition: .3s ease;
}

@media (min-width:1200px) {
    .lm-logo span {
        font-size: 32px;
    }
}

.lm-logo span:hover {
    color: var(--lm-red);
}

.lm-hero-content-wraper {
    margin-top: 80px;
    padding-bottom: 50px;
}

@media (max-width:768px) {
    .lm-hero-content-wraper {
        margin-top: 30px;
        padding-bottom: 20px;
    }
}

.lm-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.lm-hero-content h1 {
    font-family: var(--lm-heading);
    font-size: 80px;
    color: #fff;
    font-weight: 700;
}




.lm-hero-content h1 span {
    color: var(--lm-gold);
}

.lm-hero-content p {
    margin-top: 3rem;
    max-width: 550px;
}

@media (max-width:768px) {
    .lm-hero-content p {
        margin-top: 1rem;
        font-size: 18px;
    }

}

.lm-btn-group {
    margin-top: 3rem;
    display: flex;
    gap: 15px;
}

@media (max-width:768px) {
    .lm-btn-group {
        margin-top: 1rem;
        flex-direction: column;
        gap: 10px;
    }

}

.lm-primary-btn {
    width: fit-content;
    background: var(--lm-red);
    color: #fff;
    padding: 10px 24px;
    font-size: 15px;
    /* border-radius: 5px; */
    text-transform: uppercase;
}

@media (max-width:768px) {
    .lm-primary-btn {
        font-size: 13px;
    }
}

.lm-primary-btn:hover {
    background: var(--lm-red-dark);
    color: #fff;
}

.lm-outline-btn {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 10px 24px;
    font-size: 15px;
    /* border-radius: 5px; */
    /* margin-left: 2rem; */
    text-transform: uppercase;
}

@media (max-width:768px) {
    .lm-outline-btn {
        font-size: 13px;
    }
}

.lm-outline-btn:hover {
    border-color: var(--lm-gold);
    color: var(--lm-gold);
}

/* =========================
   COUNTER
========================= */

.lm-counter-row {
    margin-top: 3rem;
}

.lm-counter-row.mobile {
    background-color: #303030;
    padding: 20px 0px;
}

@media (max-width:768px) {
    .lm-counter-row {
        margin-top: 1rem;
    }
}

.lm-counter-row {
    margin-left: 0;
    margin-right: 0;
}

.lm-counter-row>div:first-child {
    padding-left: 0;
}

.lm-counter-card {
    position: relative;
    text-align: center;
    /* padding: 0 20px; */
    height: 100%;
}

.lm-counter-card.mobile {
    text-align: left;
    padding: 0 15px;
}

.lm-counter-row.mobile>div:first-child {
    padding-left: 14px;
}

.lm-counter-card h3 {
    font-family: var(--lm-heading);
    color: var(--lm-red);
    font-size: 48px;
    margin-bottom: 0px;
    line-height: 1.2;
}

@media (max-width:768px) {
    .lm-counter-card h3 {
        font-size: 32px;
    }
}

.lm-counter-card h6 {
    font-family: var(--lm-heading);
    color: var(--lm-gold);
    font-size: 24px;
    letter-spacing: 0px;
    margin-bottom: 8px;
}

@media (max-width:768px) {
    .lm-counter-card h6 {
        font-size: 18px;
    }
}

.lm-counter-card p {
    font-size: 17px;
    color: #fff;
    margin-top: 8px;
    line-height: 1.2;
    /* font-weight: 500; */
}

@media (max-width:768px) {
    .lm-counter-card p {
        font-size: 12px;
    }
}


.lm-counter-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: #fffcfc;
    opacity: .4;
}

.lm-counter-row>div:last-child .lm-counter-card::after {
    display: none;
}

@media (max-width: 767.98px) {
    .lm-counter-row>div:nth-child(even) .lm-counter-card::after {
        display: none;
    }
}




.lm-hero-image {
    top: 120px;
    right: -10px;
    width: 700px;
    height: 600px;
    overflow: hidden;
}

.lm-cliend-img-mobile img {
    width: 100%;
    margin-top: 15px;
}

@media(min-width:768px) {
    .lm-cliend-img-mobile {
        display: none;
    }
}

/* responsove */
@media (max-width:1399px) {
    .lm-hero-content h1 {
        font-size: 60px;
    }
}


@media (max-width:768px) {
    .lm-hero-content h1 {
        font-size: 40px;
    }
}

/* =========================
   BRANDS
========================= */

.lm-brand-section {
    background: #E2CBAA4D;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 8.7px 0px #00000026;
}

.lm-brand-slider img {
    max-height: 78px;
    max-width: 150px;
    margin: auto;
}

@media (max-width:768px) {
    .lm-brand-section {
        padding: 20px 0;
    }

    .lm-brand-slider img {
        max-height: 50px;
        max-width: 95px;
    }
}

/* @media (min-width:767px) { */

.lm-brand-section::before,
.lm-brand-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}



/* Left Fade */
.lm-brand-section::before {
    left: 0;
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            rgba(255, 255, 255, 0) 100%);
}

/* Right Fade */
.lm-brand-section::after {
    right: 0;
    background: linear-gradient(270deg,
            #FFFFFF 0%,
            rgba(255, 255, 255, 0) 100%);
}


/* } */

/* ==========================
   WORK TOGETHER
========================== */


.lm-work-slider .swiper-wrapper {
    align-items: stretch;
}

.lm-work-slider .swiper-slide {
    height: auto;
    display: flex;
}

.lm-section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

@media (max-width:768px) {
    .lm-section-heading {
        margin-bottom: 30px;
    }
}

.lm-section-heading h2 {
    color: #111;
}

.lm-section-heading h2 span {
    color: var(--lm-red);
}



.lm-work-card {
    background: #fff;
    /* border: 1px solid #d8c6aa; */
    /* border-radius: 8px; */
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: .4s;
}

.lm-work-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lm-work-content a {
    margin-top: auto;
}

.lm-work-card:hover {
    /* transform: translateY(-8px); */
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, .08); */
    box-shadow: 0px 4px 31.4px 0px #0000004D;

}







.lm-work-image {
    height: 220px;
    overflow: hidden;
}

.lm-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.lm-work-card:hover img {
    transform: scale(1.08);
}

.lm-work-content {
    position: relative;
    padding: 35px 15px 15px;
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-color: var(--2nd-Theme-Colour, #AC8133);
    /* border-radius: 0px 0px 8px 8px; */
}

.lm-work-icon {
    position: absolute;
    top: -18px;
    left: 25px;
    width: 46px;
    height: 46px;
    background: #B72032;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid #ffffff;
    /* border-radius: 50%; */
}

.lm-work-content h3 {
    font-family: var(--lm-heading);
    color: #741118;
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

@media (max-width:768px) {
    .lm-work-content h3 {
        font-size: 24px;
    }
}

.lm-work-content p {
    color: #333;
    line-height: 1.2;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
}

@media (max-width:768px) {
    .lm-work-content p {
        font-size: 18px;
    }
}

.lm-work-content a {
    color: var(--lm-red);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0px;
}

@media (max-width:768px) {
    .lm-work-content a {
        font-size: 14px;
    }
}

.lm-work-content a i {
    margin-left: 5px;
    transition: .3s;
}

.lm-work-content a:hover i {
    transform: translateX(5px);
}



@media (min-width:992px) {

    .lm-work-slider {
        overflow: visible;
    }

    .lm-work-slider .swiper-wrapper {
        transform: none !important;
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }

    .lm-work-slider .swiper-slide {
        width: calc(25% - 18px) !important;
        margin: 0 !important;
    }
}




/* ==========================
   CHALLENGES SECTION
========================== */

.lm-challenges-section {
    padding: 80px 0;
    background: #303030;
    position: relative;
}

/* .lm-challenges-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center,
            rgba(255, 255, 255, .06),
            transparent 60%);
} */

.lm-challenges-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

@media (max-width:768px) {
    .lm-challenges-heading {
        margin-bottom: 30px;
    }
}

.lm-challenges-heading h3 {
    font-family: var(--lm-heading);
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.4;
}

@media (max-width:768px) {
    .lm-challenges-heading h3 {
        font-size: 30px;
    }
}

.lm-challenges-heading h3 span {
    color: var(--lm-gold);
}

.lm-challenges-heading p {
    color: #e3e3e3;
    /* line-height: 1.8; */
}

.lm-challenge-card {
    background: transparent;
    border: 1px solid #FFFFFF4D;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    position: relative;
    backdrop-filter: blur(4px);
}

.lm-challenge-card-active {
    background: #fff;
    border: 2px solid var(--Red, #B72032);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.lm-challenge-card h3 {
    font-family: var(--lm-heading);
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lm-challenge-card-active h3 {
    color: #000;
}

.lm-challenge-card:not(.lm-challenge-card-active) h3 {
    color: #fff;
}

.lm-challenge-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lm-challenge-list li {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.lm-challenge-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lm-check-icon {
    min-width: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f8dfe2;
    color: var(--lm-red-dark);
    font-size: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 4px;
}

.lm-challenge-card-active h4 {
    color: #111;
}

.lm-challenge-card-active p {
    color: #666;
}

.lm-challenge-card:not(.lm-challenge-card-active) h4 {
    color: #fff;
}

.lm-challenge-card:not(.lm-challenge-card-active) p {
    color: #B0B0B0;
    font-weight: 350;
    font-size: 20px;
}

.lm-challenge-list h4 {
    font-size: 20px;
    font-weight: 800 !important;
    margin-bottom: 4px;
    line-height: 1.2;
}

@media (max-width:768px) {
    .lm-challenge-list h4 {
        font-size: 18px;
    }
}

.lm-challenge-list p {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
    font-weight: 350;
}

@media (max-width:768px) {
    .lm-challenge-list p {
        font-size: 18px;
    }
}

.lm-challenge-card:not(.lm-challenge-card-active) .lm-challenge-list li {
    border-top: 1px solid #9687884D;
}


@media(max-width:991px) {

    .lm-challenges-section {
        padding: 50px 0;
    }

    .lm-challenges-heading h2 {
        font-size: 36px;
    }

    .lm-challenge-card {
        padding: 25px;
    }

    .lm-challenge-card h3 {
        font-size: 25px;
        text-align: center;
    }
}


/* ==========================
   KEYNOTES SECTION
========================== */

.lm-keynotes-section {
    padding: 80px 0;
    background: #FFF8EF;
}

@media (max-width:768px) {
    .lm-keynotes-section {
        padding: 50px 0;
    }
}

.lm-keynotes-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

@media (max-width:768px) {
    .lm-keynotes-heading {
        margin-bottom: 30px;
    }
}

.lm-keynotes-heading h3 {
    color: #111;
}

.lm-keynotes-heading h3 span {
    color: var(--lm-red);
}



/* Card */

.lm-keynote-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lm-keynote-image {
    position: relative;
    overflow: hidden;
    /* border-radius: 6px; */
}

.lm-keynote-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .6s;
}

.lm-keynote-card:hover img {
    transform: scale(1.08);
}

.lm-keynote-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .05));
    z-index: 1;
}

.lm-keynote-overlay {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
}

.lm-keynote-overlay h4 {
    font-family: var(--lm-heading);
    color: #fff;
    font-size: 32px;
    line-height: 1.4;
    margin: 0;
}

@media (max-width:768px) {
    .lm-keynote-overlay h4 {
        font-size: 30px;
    }
}

.lm-keynote-content {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lm-keynote-content p {
    color: #303030;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
    font-weight: 700;
    font-size: 20px;
}

/* Event Tags */

.lm-event-tags {
    margin-top: 40px;
    padding: 18px 0px;
    border-top: 1px solid #d7cdbf;
    /* border-bottom: 1px solid #d7cdbf; */
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .lm-event-tags {
        margin-top: 20px;
        border-top: none;
        padding: 0px;
        flex-direction: column;
        align-items: flex-start;
        padding-left: calc(15% + 15px);
    }
}

.lm-event-tags .lm-event-title {
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.lm-event-title {
    font-family: var(--lm-heading);
    color: #111;
}

.lm-event-tags span {
    color: #6b7280;
    align-items: center;
    display: flex;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.lm-event-tags i {
    color: #B72032;
    margin-right: 6px;
}









/* ==========================
   BREAKTHROUGH
========================== */

.lm-breakthrough-section {
    padding: 80px 0;
    position: relative;
    background: url('../images/bottom-bg.png') center center;
    background-size: cover;
    overflow: hidden;
}

@media (max-width:768px) {
    .lm-breakthrough-section {
        padding: 50px 0;
    }
}

/* .lm-breakthrough-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .35));
} */

.lm-breakthrough-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    color: #fff;
}



.lm-breakthrough-content p {
    /* max-width: 600px; */
    margin: 0 auto 20px;
    /* line-height: 1.8; */
    color: #fff;
}

.lm-breakthrough-btn {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

.lm-breakthrough-meta {
    max-width: 700px;
    padding-top: 30px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* gap: 30px; */
    flex-wrap: wrap;
}

@media (max-width:768px) {
    .lm-breakthrough-meta {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        /* row-gap: 15px; */
    }
}


.lm-breakthrough-meta li {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
}

@media (max-width:768px) {
    .lm-breakthrough-meta li {
        font-size: 12px;
    }
}

.lm-breakthrough-meta li:nth-child(even):not(:last-child)::after {
    content: "•";
    position: absolute;
    /* right: -18px; */
}

/* ==========================
   TESTIMONIAL
========================== */

.lm-testimonial-section {
    background: #8f0e1c;
    padding: 80px 0;
}

@media (max-width:768px) {
    .lm-testimonial-section {
        padding: 50px 0;
    }
}

.lm-testimonial-content {
    max-width: 900px;
    margin: auto;
    color: #fff;
}

.lm-testimonial-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.lm-testimonial-avatar img {
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    object-fit: cover;
}

.lm-testimonial-avatar span {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1;
}

.lm-testimonial-content blockquote {
    font-family: var(--lm-heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
}

@media (max-width:768px) {
    .lm-testimonial-content blockquote {
        font-size: 25px;
    }
}

.lm-testimonial-author {
    font-size: 20px;
    letter-spacing: 1px;
    color: #f5f5f5;
    /* font-weight: 700; */
}

.lm-testimonial-pagination {
    position: relative !important;
    margin-top: 30px;
}

.lm-testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffffa8;
    opacity: .8;
    margin: 0 6px !important;
}

.lm-testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--lm-white);
    opacity: 1;
}

/* ==========================
   ABOUT
========================== */

.lm-about-section {
    background: #E2CBAA;
}

.lm-about-image {
    height: 100%;
}

.lm-about-image img {
    width: 100%;
    height: 100%;
    /* min-height: 600px; */
    object-fit: cover;
}

.lm-about-content {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width:991px) and (max-width:1600px) {
    .lm-about-content {
        padding: 20px 20px;
    }
}

@media(min-width: 1600px) {
    .lm-about-content {
        padding: 80px;
    }
}

.lm-about-content h3 {
    font-family: var(--lm-heading);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #303030;
}

@media (max-width:768px) {
    .lm-about-content h3 {
        font-size: 30px;
    }
}

.lm-about-content h3 span {
    color: var(--lm-red-dark);
}

.lm-about-content h6 {
    font-weight: 900 !important;
    line-height: 1.2;
    font-size: 22px;
    margin-bottom: 20px;
    color: #000000;
}

@media (max-width:768px) {
    .lm-about-content h6 {
        font-size: 18px;
    }
}

.lm-about-content p {
    font-size: 20px;
    font-weight: 800 !important;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 30px;
}

@media (max-width:768px) {
    .lm-about-content p {
        font-size: 16px;
    }
}

.lm-video-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.lm-video-poster,
.lm-video-player {
    position: absolute;
    inset: 0;
}

.lm-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lm-video-player {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 10;
}

.lm-video-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.lm-video-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    z-index: 20;
    font-size: 20px;
}

.lm-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1;
    pointer-events: none;
}

.lm-video-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: auto;
}

.lm-video-content h2 {
    font-family: var(--lm-heading);
    font-size: 48px;
    margin-bottom: 20px;
}

@media (max-width:768px) {
    .lm-video-content h2 {
        font-size: 30px;
    }
}

.lm-video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #C7AC85;
    color: #C7AC85;
    background: none;
    margin-top: 40px;
    font-size: 30px;
    transition: .3s;
}

.lm-video-play-btn:hover {
    background: #B72032;
    border-color: #B72032;
    color: #fff;
}


@media(max-width:991px) {

    .lm-video-showcase,
    .lm-video-content {
        height: 50vh;
    }

    .lm-video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 15px;
    }
}

/* marquee section  */
.lm-marquee-section {
    background: #d9c29d;
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
}

.lm-marquee-track {
    display: flex;
    width: max-content;
    animation: lmMarquee 30s linear infinite;
}

.lm-marquee-track span {
    margin-right: 80px;
    color: var(--lm-red-dark);
    font-weight: 900;
    letter-spacing: .5px;
    font-size: 22px;
}

/* Hover = Stop */
.lm-marquee-section:hover .lm-marquee-track {
    animation-play-state: paused;
}

@keyframes lmMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



.lm-waitlist-section {
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 80px 0;
}

@media (max-width:768px) {
    .lm-waitlist-section {
        padding: 50px 0;
    }
}

.lm-waitlist-pattern {
    position: absolute;
    inset: 0;
    background: url('../images/redlines.png') center center;
    background-size: cover;
    /* opacity: .28; */
    pointer-events: none;
}

.lm-waitlist-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.lm-coming-soon {
    color: var(--lm-gold);
    font-family: var(--lm-heading);
    font-size: 32px;
    font-weight: 700;
}

.lm-waitlist-content h2 {
    font-family: var(--lm-heading);
    font-size: 62px;
    margin: 10px 0 20px;
}

@media (max-width:768px) {
    .lm-waitlist-content h2 {
        font-size: 30px;
    }
}

.lm-waitlist-content p {
    color: #d7d7d7;
    margin-bottom: 30px;
    max-width: 560px;
}

.lm-waitlist-form {
    display: flex;
    overflow: hidden;
    /* max-width: 650px; */
    border-radius: 6px;
}

.lm-waitlist-form input {
    flex: 1;
    border: none;
    height: 58px;
    padding: 0 20px;
}

@media(max-width:500px) {
    .lm-waitlist-form input {
        width: 70%;
    }
}

.lm-waitlist-form button {
    background: var(--lm-red);
    color: #fff;
    border: none;
    padding: 0 28px;
    text-transform: uppercase;
    /* font-weight: 700; */
    font-size: 17px;
    transition: all .3s ease;
}

@media (max-width:768px) {
    .lm-waitlist-form button {
        font-size: 13px;
        padding: 0 18px;
    }
}

.lm-waitlist-form button:hover {
    background: var(--lm-red-dark);
}


@media (max-width:768px) {
    .lm-book-cover {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* .lm-book-cover img {
    max-width: 300px;
    transform: rotate(-15deg);
} */


@media(min-width:992px) {
    .lm-book-cover {
        /* bottom: -50px; */
        position: relative;
    }

    /* .lm-book-cover img {
        max-width: 500px;
    } */

}

.lm-waitlist-content small {
    display: block;
    margin-top: 5px;
    color: #9CA3AF;
    /* font-size: 12px; */
}




/* new right section css start*/

.lm-launch-content {
    color: #fff;
    /* max-width: 650px; */
    padding: 0px 20px;
}

.lm-launch-tag {
    display: inline-block;
    color: #C7AC85;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lm-launch-title {
    font-family: var(--lm-heading);
    font-size: 48px;
    line-height: 1;
    margin-bottom: 25px;
}

.lm-launch-title span {
    color: var(--lm-red-dark);
}

.lm-launch-intro {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 30px;
}

.lm-launch-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.lm-launch-card h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.lm-launch-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lm-launch-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .85);
}

.lm-launch-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lm-red-dark);
}

.lm-launch-highlight {
    border-left: 4px solid var(--lm-red-dark);
}

.lm-launch-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
}

.lm-launch-closing {
    /* margin: 30px 0; */
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
}

@media(max-width:991px) {

    .lm-launch-content {
        margin-top: 40px;
        text-align: center;
    }

    .lm-launch-title {
        font-size: 42px;
    }

    .lm-launch-card {
        text-align: left;
    }
}

/* new right section css end*/





.lm-insights-section {
    padding: 80px 0;
    background: #f7f4ef;
}


@media (max-width:768px) {
    .lm-insights-section {
        padding: 50px 0;
    }
}



.lm-insight-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: transform .4s ease, box-shadow .4s ease;
}

.lm-insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.lm-insight-image {
    position: relative;
}

.lm-insight-image img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* Black shadow from bottom up to ~80% */
.lm-insight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 30%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0) 80%);
    z-index: 1;
}

.lm-insight-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    z-index: 2;
    color: #fff;
}

.lm-insight-content p {
    color: #fff;
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.4;
    font-size: 20px;
    transition: all .3s ease;
}

@media (max-width:768px) {
    .lm-insight-content p {
        font-size: 18px;
    }
}

.lm-insight-card:hover .lm-insight-content p {
    color: var(--lm-red);
    /* or your brand color */
}

.lm-insight-content a {
    color: var(--lm-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
}

.lm-insight-content a i {
    transition: 0.3s ease;
}


.lm-insight-content a:hover i {
    transform: translateX(5px);
}



.lm-footer-cta {

    background: url('../images/cta-image.jpg') center/cover;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

@media(max-width:768px) {
    .lm-footer-cta {
        padding: 40px 0;
    }
}

.lm-footer-cta::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
}

.lm-footer-cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    align-items: center;
}


.lm-footer-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

@media(max-width:500px) {
    .lm-footer-cta-buttons {
        flex-direction: column;
    }
}

.lm-btn-primary {
    background: #B72032;
    color: #fff;
    padding: 14px 28px;
}

.lm-btn-outline {
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: 14px 28px;
}

.lm-footer-cta-image {
    position: absolute;
    right: 8%;
    bottom: 0;
    z-index: 2;
}

.lm-footer-cta-image img {
    max-height: 520px;
}




/* =================================
   FOOTER
================================= */

.lm-footer-section {
    background: #333333;
    color: #fff;
}

.lm-footer-section>.container {
    padding-top: 80px;
    padding-bottom: 80px;
}


@media(max-width:768px) {
    .lm-footer-section>.container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Logo */

.lm-footer-brand {
    /* max-width: 280px; */
    align-items: center;
    /* align-items: center; */
    /* margin-bottom: 25px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

.lm-footer-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
}

.lm-footer-logo:hover .lm-footer-logo-text {
    color: var(--lm-red);
}

.lm-footer-logo-bg {
    position: absolute;
    left: -40px;
    top: -20px;
    width: 280px;
    height: 80px;
    background: url('../images/logo-bg.png') center center no-repeat;
    background-size: contain;
    opacity: 1;
}

.lm-footer-logo-text {
    position: relative;
    z-index: 2;
    font-family: var(--lm-heading);
    font-size: 32px;
    color: var(--lm-white);
    line-height: 1;
    transition: .3s;
}



.lm-footer-brand p {
    color: var(--lm-white);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 800;
}

/* Headings */
@media(min-width:768px) {
    .lm-footer-links-wrapper {
        padding-left: calc(100% - 75%);
    }
}

.lm-footer-links-wrapper h4,
.lm-footer-contact h4 {
    font-family: var(--lm-heading);
    color: var(--lm-gold);
    font-size: 24px;
    margin-bottom: 15px;
    /* padding-bottom: 4px; */
    border-bottom: 1px solid var(--lm-gold);
    display: inline-block;

}

.lm-footer-contact {
    margin-left: auto;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media(max-width:768px) {
    .lm-footer-contact {
        margin-left: 0;
        width: 100%;
        align-items: flex-start;
    }
}

/* Links */

.lm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lm-footer-links li {
    margin-bottom: 10px;
}

.lm-footer-links a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-size: 20px;
    font-weight: 800;
}

.lm-footer-links a:hover {
    color: var(--lm-red);
}

/* Email */

.lm-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 32px;
    font-size: 20px;
}

.lm-footer-email:hover {
    color: var(--lm-red);
}

/* Social */

.lm-footer-social {
    display: flex;
    gap: 30px;
}

.lm-footer-social a {
    color: #fff;
    font-size: 28px;
    transition: .3s;
}

.lm-footer-social a:hover {
    color: var(--lm-red);
}

/* Bottom */

.lm-footer-bottom {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.lm-footer-bottom .container {
    padding-top: 22px;
    padding-bottom: 22px;
}

.lm-footer-bottom-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #666;
}



@media(max-width:768px) {
    .lm-footer-bottom-top {
        flex-direction: column;
        text-align: center;
    }
}

.lm-footer-copyright {
    font-size: 13px;
    color: #d7d7d7;
}

.lm-footer-policy-links {
    display: flex;
    /* gap: 18px; */
    flex-wrap: wrap;
}

.lm-footer-policy-links a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 13px;
    padding-right: 14px;
    margin-right: 14px;
    position: relative;
}

.lm-footer-policy-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #ffffff;
}

.lm-footer-policy-links a:hover {
    color: var(--lm-red);
}

.lm-footer-disclaimer {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}




.lm-mobile-offcanvas {
    width: 100%;
    background: #000;
}

.lm-mobile-offcanvas .offcanvas-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.lm-mobile-offcanvas .btn-close {
    opacity: 1;
}





@media(min-width:992px) {
    .lm-mobile-offcanvas {
        display: none;
    }
}

.navbar-toggler {
    color: #fff;
}

.typed-cursor {
    display: none;
}






/* new */

.lm-cce-section {
    background: linear-gradient(to right,
            #cdc2b2bd 0%,
            #f6f2ec 40%,
            #ffffff 100%);
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {

    .lm-cce-section {
        background: linear-gradient(to bottom,
                #cdc2b2bd 0%,
                #f6f2ec 40%,
                #ffffff 100%);
    }

}

.lm-cce-content {
    /* max-width: 580px; */
    padding: 60px 0;
    position: relative;
    z-index: 2;
    /* margin-top: 39px; */
    /* padding-top: 30px; */
}

.lm-cce-content::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 60px;
    height: 6px;
    background: #b72032;
}

.lm-cce-subtitle {
    display: block;
    /* margin-top: 40px; */
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 3px;
    color: #b72032;
    font-weight: 600;
}

.lm-cce-title {
    font-family: var(--lm-heading);
    font-size: 75px;
    line-height: 0.9;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.lm-cce-title span {
    color: var(--lm-red-dark);
}

.lm-cce-desc {
    /* font-family: "Avenir", sans-serif; */
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    max-width: 500px;
    margin-bottom: 20px;
}

.lm-cce-boxes {
    border-top: 1px solid #d8d1c8;
    /* border-left: 1px solid #d8d1c8; */
}

.lm-cce-box {
    padding: 15px 15px;
    border-right: 1px solid #d8d1c8;
    border-bottom: 1px solid #d8d1c8;
    height: 100%;
}

.lm-cce-boxes .col-6:nth-child(even) .lm-cce-box {
    border-right: none;
}

.lm-cce-box h6 {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--lm-red-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.lm-cce-box h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: var(--lm-red-dark);
    border-radius: 50%;
}

.lm-cce-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #444;
    padding-left: 18px;
}

.lm-cce-image-wrapper {
    position: relative;
    height: 100%;
}

.lm-cce-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}


@media(min-width:991px) {

    /* White Shadow Overlay */
    .lm-cce-image-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: -30px;
        width: 271px;
        height: 100%;
        background: linear-gradient(to right,
                #f6f2ec 0%,
                rgba(246, 242, 236, 0.95) 20%,
                rgba(246, 242, 236, 0.7) 50%,
                rgba(246, 242, 236, 0) 100%);
        z-index: 2;
        pointer-events: none;
    }
}

/* Responsive */

@media(max-width:1399px) {

    .lm-cce-title {
        font-size: 62px;
    }

    .lm-cce-desc {
        font-size: 18px;
    }
}

@media(max-width:991px) {

    .lm-cce-content {
        padding: 30px 0px;
    }

    .lm-cce-title {
        font-size: 45px;
    }

    .lm-cce-desc {
        font-size: 18px;
    }

    .lm-cce-image-wrapper {
        min-height: 500px;
    }


}

@media(max-width:576px) {

    .lm-cce-title {
        font-size: 38px;
    }

    .lm-cce-box {
        padding: 20px;
    }

    .lm-cce-box p {
        font-size: 15px;
    }
}