:root {
    --global-font: "Instrument Sans", sans-serif;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: var(--global-font);
}

body.mobile-menu-open {
    overflow: hidden;
}

figure {
    margin: 0;
}
html body a:hover {
    color: inherit;
}
i {
    line-height: 0;
    vertical-align: middle;
}

/* img {
  opacity: 0.02;
} */

img,
iframe {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
    font-family: var(--global-font);
}
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body a,
html body button,
html body h6 {
    font-family: var(--global-font);
}
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.lw-container {
    padding: 0 15px;
    margin: 0 auto;
    width: clamp(320px, 100%, 1280px);
}
.lw-container--tab {
    padding: 0 15px;
    margin: 0 auto;
    width: clamp(320px, 100%, 1070px);
}

.lw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    gap: 6px;
    text-decoration: none;
}
html body .lw-newsletter input.lw-btn--gold[type=submit]{
    max-width: 100%;
    font-size: 18px;
    height: auto;
}
html body input.lw-btn--gold[type=submit],
.lw-btn--gold {
    color: #15171a;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.lw-courses .lw-btn--gold:hover {
    box-shadow: 0 6px 18px rgba(251, 191, 36, 0.4);
}
html body input.lw-btn--gold[type=submit]:hover {
        color: #15171a;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
}
.lw-btn--outline {
    background: #fff;
    border: 1px solid #dee2e6;
    color: #1a1a1a;
}

.lw-btn--outline:hover {
    background: #f8f9fa;
}

@media (max-width: 575px) {
    .lw-container {
        width: 100%;
    }

    .lw-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* ********* Floating Dots *********** */
.lw-dots-floating-section {
    /* height: 100%;
  width: 100%; */
    background-color: #15171a;
    position: relative;
    overflow: hidden;
}

.lw-dots-floating--light {
    background-color: #f6f8fa;
}

.lw-dots-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lw-dots-floating .lw-dot {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: lw-float 15s infinite ease-in-out;
}

.lw-dots-floating .lw-dot.lw-yellow {
    background-color: #ffd700;
    opacity: 0;
}

@keyframes lw-float {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(0.4);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(0.5);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) translateX(-10px) scale(0.8);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-20px) translateX(5px) scale(0.4);
        opacity: 0.9;
    }
}

/* ********* Gradient Circle *********** */
.lw-gradient-circle-wrap {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    min-height: 115px;
    z-index: -1;
}

.lw-gradient-circle,
.lw-gradient-circle-border {
    position: absolute;
    height: 600px;
    width: 130%;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.lw-gradient-circle {
    /* background-color: rgba(21, 23, 26, 0.48); */
    /* height: 500px; */
}

.lw-gradient-circle::before,
.lw-gradient-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    border-radius: 50%;
}

.lw-gradient-circle::before {
    background: radial-gradient(
        circle closest-side,
        rgb(36, 39, 75) 0%,
        rgba(36, 39, 75, 0) 100%
    );
    z-index: -1;
    height: 1000px;
}

.lw-gradient-circle::after {
    background: radial-gradient(
        circle closest-side,
        rgba(243, 236, 152, 0.2) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    background-color: rgba(21, 23, 26, 0.48);
    height: 100%;
    z-index: 9;
}

.lw-gradient-circle-border {
    z-index: 9;
    padding: 1px;
    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.lw-gradient-circle-border::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2000px;
    width: 2000px;
    z-index: -1;
    /* border-radius: 50%; */
    /* Border thickness */
    background: conic-gradient(
        transparent 0%,
        transparent 10%,
        #f3ec98 25%,
        transparent 40%,
        transparent 60%,
        #f3ec98 75%,
        transparent 90%,
        transparent 100%
    );
    animation: lw-gradient-spin 18s linear infinite;
    transform-origin: 50% 50%;
}

@keyframes lw-gradient-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1023px) {
    .lw-gradient-circle-wrap {
        min-height: 100px;
    }
}

@media (max-width: 767px) {

    .lw-gradient-circle-wrap {
        min-height: 75px;
    }
}

/* ********* Gradient shape *********** */
.lw-gradient-shape {
    position: relative;
    z-index: 1;
    background-color: #15171a;
    overflow: hidden;
    padding: 90px 0 0;
}

.lw-light {
    position: absolute;
    top: 0;
    width: 45%;
    max-width: 652px;
    aspect-ratio: 1.14/1;
    z-index: -1;
    pointer-events: none;
}

.lw-light--left {
    left: 0;
}

.lw-light--right {
    right: 0;
}

.lw-gradient-shape .lw-gradient-circle-wrap {
    padding: 80px 0 120px;
    z-index: 99;
    text-align: center;
    position: relative;
    margin-top: -60px;
}

.lw-gradient-shape .lw-gradient-circle {
    background-color: #15171a;
}

.lw-gradient-shape .lw-gradient-circle,
.lw-gradient-shape .lw-gradient-circle-border {
    height: 600px;
    min-width: 800px;
}

.lw-gradient-shape .lw-container {
    /* max-width: 860px; */
    z-index: 99;
    position: relative;
}

.lw-gradient-shape .lw-gradient-shape__thumbs {
    display: flex;
    justify-content: center;
}

.lw-gradient-shape .lw-gradient-shape__thumb {
    width: 320px;
    aspect-ratio: 0.91/1;
    max-width: 50%;
    object-fit: contain;
    object-position: center;
}

.lw-gradient-shape .lw-gradient-shape__thumb--left {
    transform: translateX(50px) rotate(-6deg);
}

.lw-gradient-shape .lw-gradient-shape__thumb--right {
    transform: translateX(-50px) rotate(6deg);
}

/* Player nav (prev/next) beneath the video player */
.lw-player-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 920px;
    padding: 0 12px;
    gap: 12px;
}
.lw-player-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.lw-player-nav__btn.lw-btn{
    margin: 0 !important;
}

.lw-player-nav__btn.lw-btn--outline {
    /* ensure outline variant looks like other outline buttons */
    background: #fff;
    border: 1px solid #dee2e6;
    color: inherit;
}
.lw-player-nav__btn.lw-btn--gold {
    /* rely on existing .lw-btn--gold but ensure smaller padding */
    padding: 8px 14px;
}
.lw-player-nav__btn--disabled {
    opacity: 0.56;
    pointer-events: none;
}

@media (max-width: 480px) {
    .lw-player-nav { padding: 0 8px; gap: 8px; }
    .lw-player-nav__btn { padding: 8px 10px; font-size: 13px; }
}

.lw-gradient-shape .lw-gradient-circle__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto 30px;
    color: #f5f5f5;
}

@media (max-width: 1023px) {
    .lw-gradient-shape .lw-gradient-circle__text {
        font-size: 18px;
    }

    .lw-gradient-shape .lw-gradient-circle-wrap {
        padding: 70px 0 80px;
    }
}

@media (max-width: 767px) {
    .lw-gradient-shape .lw-gradient-circle__text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .lw-gradient-shape {
        padding: 40px 0 0;
    }

    .lw-gradient-shape .lw-gradient-circle-wrap {
        padding: 60px 0 60px;
    }
}

@media (max-width: 575px) {
    .lw-gradient-shape {
        padding: 40px 0 0;
    }

    .lw-gradient-shape .lw-gradient-circle-wrap {
        padding: 50px 0;
    }
}

/* ********* Hero Section *********** */
.lw-hero-wrapper {
    padding: 50px 0 110px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.lw-hero-wrapper--alt {
    padding: 70px 0 180px;
}

.lw-hero {
    position: relative;
    z-index: 1;
}

.lw-hero::before,
.lw-hero::after {
    content: "";
    height: 70px;
    width: 400px;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    position: absolute;
    z-index: -1;
    filter: blur(120px);
}

.lw-hero::before {
    top: 250px;
    right: 100%;
    transform: translateX(50%);
}

.lw-hero::after {
    bottom: 250px;
    left: 100%;
    transform: translateX(-50%);
}

.lw-hero .lw-hero__logo {
    width: 200px;
    display: block;
    margin: 0 auto 24px;
}

.lw-home-hero .lw-hero .lw-hero__content {
    max-width: 824px;
}

.lw-hero .lw-hero__content {
    max-width: 910px;
    margin: 0 auto;
    text-align: center;
}

.lw-hero .lw-hero__heading {
    font: 700 69px/1.08 var(--global-font);
    background: linear-gradient(
        -180deg,
        rgb(255, 255, 255) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0 0 16px;
    text-align: center;
}

.lw-hero .lw-hero__description {
    font: 400 16px/1.55 var(--global-font);
    color: #f5f5f5;
    margin: 0 auto 24px;
    max-width: 605px;
}

.lw-hero__cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lw-hero .lw-hero__cta {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    color: #15171a;
    border-radius: 100px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    font-family: inherit;
    display: inline-block;
    z-index: 2;
}

.lw-hero .lw-hero__cta--primary {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
}

.lw-hero .lw-hero__cta--primary:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}
.lw-hero .lw-hero__cta--primary:focus {
    outline: none;
    color: #15171a;
}
.lw-hero .lw-hero__cta--secondary {
    color: #fff;
    background: linear-gradient(
        145.54deg,
        rgba(219, 219, 219, 0.185),
        rgba(217, 217, 217, 0.123),
        rgba(215, 215, 215, 0.089),
        rgba(212, 212, 212, 0.055)
    );
}

.lw-hero .lw-hero__earth-wrapper {
    position: relative;
    height: 480px;
    z-index: 1;
}

.lw-hero .lw-hero__earth {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1035px;
    height: auto;
    z-index: 1;
    pointer-events: none;
      display: none;
}

/* .lw-hero .lw-hero__earth::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle at center, #b8e5ff31, transparent 70%);
  inset: 0;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: blur(1px);
} */

.lw-hero .lw-hero__earth-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1023px) {
    .lw-hero-wrapper {
        padding: 50px 0 100px;
    }

    .lw-hero-wrapper--alt {
        padding: 70px 0 150px;
    }

    .lw-hero .lw-hero__heading {
        font-size: 62px;
    }
}

@media (max-width: 991px) {
    .lw-hero-wrapper {
        padding: 50px 0 80px;
    }

    .lw-hero-wrapper--alt {
        padding: 60px 0 120px;
    }

    .lw-hero .lw-hero__logo {
        width: 150px;
        margin: 0 auto 20px;
    }

    .lw-hero .lw-hero__heading {
        font-size: 56px;
    }

    .lw-hero .lw-hero__description {
        margin: 0 auto 20px;
    }

    .lw-hero .lw-hero__earth-wrapper {
        height: 320px;
    }

    .lw-hero::before,
    .lw-hero::after {
        height: 50px;
        width: 300px;
    }

    /*

.lw-hero .lw-hero__content {
  max-width: 824px;
}

.lw-hero .lw-hero__earth {
  max-width: 1035px;
}

  */
}

@media (max-width: 767px) {
    .lw-hero-wrapper {
        padding: 50px 0 60px;
    }

    .lw-hero-wrapper--alt {
        padding: 48px 0 130px;
    }

    .lw-hero .lw-hero__logo {
        width: 120px;
        margin: 0 auto 16px;
    }

    .lw-hero .lw-hero__heading {
        font-size: 48px;
    }

    .lw-hero .lw-hero__description {
        font-size: 14px;
        margin: 0 auto 16px;
    }

    .lw-hero .lw-hero__cta {
        padding: 12px 24px;
        font-size: 16px;
    }

    .lw-hero .lw-hero__earth-wrapper {
        height: 250px;
    }

    .lw-hero::before,
    .lw-hero::after {
        height: 40px;
        width: 200px;
    }

    .lw-hero::before {
        top: 0;
    }

}

@media (max-width: 575px) {
    .lw-hero-wrapper {
        padding: 48px 0;
    }

    .lw-hero-wrapper--alt {
        padding: 52px 0 130px;
    }

    .lw-hero .lw-hero__logo {
        width: 100px;
        margin: 0 auto 12px;
    }

    .lw-hero .lw-hero__heading {
        font-size: 40px;
        margin: 0 0 12px;
    }

    .lw-hero .lw-hero__earth-wrapper {
        height: 192px;
    }
}

/* *************************** */
/* ******** Roadmap ********** */
/* *************************** */
.lw-roadmap {
    position: relative;
    z-index: 9;
    /* background-image: radial-gradient(
      1px 1px at 20px 30px,
      #ffffff,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1.5px 1.5px at 50px 160px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 80px 120px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 110px 210px, #ffffff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 300px 300px; */
}

/* Header Section */
.lw-roadmap__header {
    text-align: center;
    margin-bottom: 40px;
}

html body h2.lw-roadmap__title {
    font-size: 54px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #f5f5f5;
}

.lw-roadmap__subtitle {
    color: #f5f5f5;
    font-size: 16px;
    /* max-width: 400px; */
    margin: 0;
}

/* Grid Layout */
.lw-roadmap__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card Component */
.lw-roadmap__card {
    background: linear-gradient(rgb(32, 32, 31) 0%, rgb(44, 44, 38) 90%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lw-roadmap__card--kits {
    grid-column: span 2;
    box-shadow:
        inset 0 2px 8px 0 rgba(245, 245, 245, 0.4),
        inset 0 -2px 6px 0 rgba(21, 23, 26, 0.25);
}

/* Media Section */
.lw-roadmap__card-media {
    width: 100%;
    aspect-ratio: 1.47/1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.lw-roadmap__card--kits .lw-roadmap__card-media {
    aspect-ratio: 3.06/1;
    padding-left: 150px;
    position: relative;
    overflow: visible;
}

.lw-roadmap__card-media__video-thumb {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transition: 0.3s;
}

.lw-roadmap__card:hover .lw-roadmap__card-media__video-thumb,
.lw-roadmap__card:hover .lw-roadmap__card-play-button {
    opacity: 0;
}

.lw-roadmap__card-media__video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.lw-roadmap__card-media__thumb,
.lw-roadmap__card-media img {
    width: 100%;
    height: 100%;
}

.lw-roadmap__card-media img {
    object-fit: cover;
}

.lw-roadmap__card-media .lw-roadmap__card-img {
    height: 210px;
    width: 210px;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 0 auto;
    transition: 0.3s;
}

.lw-roadmap__card--img-01 {
    transform: translateY(25px);
}

.lw-roadmap__card--img-02 {
    position: absolute;
    top: 100%;
    left: 60%;
    transform: translateY(-25px);
}

.lw-roadmap__card:hover .lw-roadmap__card--img-01 {
    transform: translateY(25px) rotate(15deg);
}

.lw-roadmap__card:hover .lw-roadmap__card--img-02 {
    transform: translateY(-25px) rotate(-15deg);
}

.lw-roadmap__book-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    width: 40%;
}

.lw-roadmap__book-cover svg {
    max-width: 100%;
    overflow: visible;
}

/* Book SVG hover: show/animate book image placed between covers */
.lw-book-svg {
    /* opacity: 0; */
    transform-box: fill-box;
    transform-origin: 50% 50%;
    transform: translateY(30px);
    transition:
        opacity 0.4s ease,
        transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
    pointer-events: none;
}

.lw-roadmap__card:hover .lw-book-svg,
.lw-roadmap__card:focus-within .lw-book-svg {
    /* opacity: 1; */
    transform: translateY(10%) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .lw-book-svg {
        transition: none;
    }
}

.lw-roadmap__card-play-button {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 44px;
    width: 44px;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}

/* Course specific styles */
.lw-roadmap__video-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    padding: 10px 0;
}

.lw-roadmap__duration {
    font-size: 0.75rem;
    color: #a1a1aa;
}

/* Content Section */
.lw-roadmap__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    box-shadow:
        inset 0 2px 8px 0 rgba(245, 245, 245, 0.4),
        inset 0 -2px 6px 0 rgba(21, 23, 26, 0.25);
}

.lw-roadmap__card--kits .lw-roadmap__card-content {
    max-width: 60%;
    box-shadow: none;
}

.lw-roadmap__tag {
    display: inline-block;
    /* background-color: #939393; */
    background-image: linear-gradient(
        rgba(50, 55, 61, 0.418) 0%,
        rgba(59, 65, 73, 0.521) 90%
    );
    color: #939393;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
    width: fit-content;
}

html body  main h3.lw-roadmap__card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #f5f5f5;
    letter-spacing: initial;
}

html body  main .lw-roadmap__card-title a {
    font: inherit;
    color: inherit;
}

.lw-roadmap__card-desc {
    color: #f5f5f5;
    font-size: 14px;
    margin: 0 0 16px;
}

/* Buttons & Actions */
.lw-roadmap__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
}

.lw-roadmap__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 12px 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 8px;
    cursor: pointer;
    border: none;
    background: linear-gradient(
        145.54deg,
        rgba(219, 219, 219, 0.185),
        rgba(217, 217, 217, 0.123),
        rgba(215, 215, 215, 0.089),
        rgba(212, 212, 212, 0.055)
    );
    color: #ffffff;
}

/* Special hover state for the first card button */
.lw-roadmap__button:hover {
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    color: #000000;
}

.lw-roadmap__icon-circle {
    width: 20px;
    height: 20px;
    background: #ffffff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon circle color change on featured button hover */
.lw-roadmap__button:hover .lw-roadmap__icon-circle {
    background: #000000;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .lw-roadmap__grid {
        gap: 12px;
    }
}

@media (max-width: 1080px) {
    .lw-roadmap__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    html body h2.lw-roadmap__title {
        font-size: 48px;
    }

    .lw-roadmap__actions {
        gap: 12px;
    }
}

@media (max-width: 991px) {
    html body h2.lw-roadmap__title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    html body h2.lw-roadmap__title {
        font-size: 33px;
        margin: 0 0 12px;
    }

    .lw-roadmap__subtitle {
        font-size: 14px;
    }

    .lw-roadmap__tag {
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .lw-roadmap__card-title {
        font-size: 18px;
    }

    .lw-roadmap__button {
        padding: 8px 12px 8px 20px;
    }
}

@media (max-width: 575px) {
    .lw-roadmap__grid {
        grid-template-columns: 1fr;
    }

    .lw-roadmap__card--kits {
        grid-column: span 1;
    }

    .lw-roadmap__actions {
        gap: 8px;
    }

    .lw-roadmap__button {
        color: #000000;
        background: radial-gradient(
            ellipse at center,
            #f7ef9c 0%,
            #f5e58a 25%,
            #e6c768 55%,
            #c99832 80%,
            #a56e26 100%
        );
    }

    .lw-roadmap__button .lw-roadmap__icon-circle {
        background: #000000;
        color: #fff;
    }

    .lw-roadmap__card-content {
        padding: 16px;
    }

    .lw-roadmap__card--kits .lw-roadmap__card-media {
        padding: 0;
        aspect-ratio: 1.81 / 1;
    }

    .lw-roadmap__card-media {
        aspect-ratio: 1.81 / 1;
    }

    .lw-roadmap__card .lw-roadmap__card-img {
        width: 50%;
        aspect-ratio: 1/1;
        height: auto;
        object-fit: cover;
    }

    .lw-roadmap__card--img-01 {
        transform: translate(20%, 20px) rotate(-15deg);
    }

    .lw-roadmap__card--img-02 {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(-20%, 35px) rotate(10deg);
    }

    .lw-roadmap__card:hover .lw-roadmap__card--img-01 {
        transform: translate(20%, 20px) rotate(10deg);
    }

    .lw-roadmap__card:hover .lw-roadmap__card--img-02 {
        transform: translate(-20%, 35px) rotate(-10deg);
    }

    .lw-roadmap__card--kits .lw-roadmap__card-content {
        max-width: 100%;
    }
}

/* ********* Testimonials Section *********** */
.lw-testimonials {
    padding: 120px 0;
    position: relative;
    background: #f6f8fa;
}

.lw-dots-floating--light .lw-dots-floating .lw-dot,
.lw-testimonials .lw-dots-floating .lw-dot {
    background-color: #15171a;
}

.lw-testimonials .lw-testimonials__moon {
    position: absolute;
    z-index: 1;
    max-width: 10%;
    min-width: 100px;
}

.lw-testimonials .lw-testimonials__moon img {
    max-width: 100%;
}

.lw-testimonials .lw-testimonials__moon--top-right {
    top: 0;
    right: 0;
    width: 230px;
    aspect-ratio: 0.96/1;
}

.lw-testimonials .lw-testimonials__moon--bottom-left {
    bottom: 0;
    left: 0;
    width: 215px;
    aspect-ratio: 1.13/1;
}

/* .lw-testimonials .lw-testimonials__stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 40%, white, transparent),
    radial-gradient(1px 1px at 33% 60%, white, transparent),
    radial-gradient(1px 1px at 66% 20%, white, transparent);
  background-size: 200% 200%;
  background-position: 0 0, 100% 0, 0 100%, 100% 100%, 50% 50%, 25% 75%, 75% 25%;
  opacity: 0.6;
  z-index: 2;
} */

.lw-testimonials .lw-container {
    max-width: 615px;
}

.lw-testimonials .lw-testimonials__swiper {
    width: 100%;
}

.lw-testimonials .lw-testimonials__content {
    width: 100%;
}

.lw-testimonials .lw-testimonials__header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.lw-testimonials .lw-testimonials__avatar-wrap {
    position: relative;
}

.lw-testimonials .lw-testimonials__avatar {
    position: relative;
    flex-shrink: 0;
    height: 107px;
    width: 107px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f5f5f5;
    box-shadow:
        0 12px 12px 2px rgba(21, 23, 26, 0.1),
        0 2px 4px -1px rgba(21, 23, 26, 0.06);
}

.lw-testimonials .lw-testimonials__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lw-testimonials .lw-testimonials__avatar-badge {
    position: absolute;
    top: 0px;
    right: -5px;
    height: 32px;
    width: 32px;
}

.lw-testimonials .lw-testimonials__avatar-badge img {
    width: 100%;
    height: 100%;
}

.lw-testimonials .lw-testimonials__author {
    flex: 1;
}

.lw-testimonials .lw-testimonials__author-name {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #15171a;
    line-height: 1.2;
}

.lw-testimonials .lw-testimonials__author-profession {
    font-size: 20px;
    margin: 0;
    color: #15171a;
    font-weight: 400;
    line-height: 1.3;
}

.lw-testimonials .lw-testimonials__text {
    font-size: 26px;
    line-height: 1.6;
    color: #15171a;
    margin: 0;
    font-weight: 400;
}

.lw-testimonials .lw-testimonials__pagination {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 16px;
    margin-top: 40px;
}

.lw-testimonials .lw-testimonials__swiper .swiper-button-prev,
.lw-testimonials .lw-testimonials__swiper .swiper-button-next {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 0;
    top: auto;
    bottom: 0;
    background: #d3d3d3;
    color: #666;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: auto;
}

/*
.lw-testimonials .lw-testimonials__swiper .swiper-button-next {
  right: calc(50% - 60px);
  background: #d4af37;
  color: #fff;
} */

.lw-testimonials .lw-testimonials__swiper .swiper-button-prev::before,
.lw-testimonials .lw-testimonials__swiper .swiper-button-next::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgb(121, 84, 41) 0%,
        rgb(243, 236, 152) 50%,
        rgb(121, 84, 41) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lw-testimonials .lw-testimonials__swiper .swiper-button-prev:hover::before,
.lw-testimonials .lw-testimonials__swiper .swiper-button-next:hover::before {
    opacity: 1;
}

.lw-testimonials .lw-testimonials__swiper .swiper-button-prev::after,
.lw-testimonials .lw-testimonials__swiper .swiper-button-next::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 700;
}

.lw-testimonials .lw-testimonials__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lw-testimonials .lw-testimonials__counter {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-size: 26px;
    font-weight: 500;
    color: #939393;
    line-height: 1;
}

.lw-testimonials .lw-testimonials__counter-current {
    color: #15171a;
    font-weight: 600;
}

/* .lw-testimonials .lw-testimonials__counter-total {
  font-weight: 400;
  font-size: 20px;
  color: rgba(21, 23, 26, 0.6);
} */

@media (max-width: 1023px) {
    .lw-testimonials {
        padding: 90px 0;
    }

    .lw-testimonials .lw-testimonials__header {
        margin-bottom: 24px;
    }

    .lw-testimonials .lw-testimonials__avatar-badge {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767px) {
    .lw-testimonials {
        padding: 60px 0;
    }

    .lw-testimonials .lw-testimonials__moon {
        min-width: 50px;
    }

    .lw-testimonials .lw-testimonials__counter {
        font-size: 20px;
    }

    .lw-testimonials .lw-testimonials__avatar-badge {
        width: 24px;
        height: 24px;
        top: 0;
        right: 0;
    }

    .lw-testimonials .lw-testimonials__header {
        gap: 16px;
    }

    .lw-testimonials .lw-testimonials__header {
        margin-bottom: 16px;
    }

    .lw-testimonials .lw-testimonials__avatar {
        height: 80px;
        width: 80px;
    }

    .lw-testimonials .lw-testimonials__author-name {
        font-size: 20px;
    }

    .lw-testimonials .lw-testimonials__author-profession {
        font-size: 14px;
    }

    .lw-testimonials .lw-testimonials__swiper .swiper-button-prev,
    .lw-testimonials .lw-testimonials__swiper .swiper-button-next {
        height: 44px;
        width: 44px;
    }

    .lw-testimonials .lw-testimonials__text {
        font-size: 18px;
    }
}

/* ********* Intro Section *********** */
.lw-practical-guide {
    padding: 120px 0;
    background: #f6f8fa;
    overflow: hidden;
}

.lw-practical-guide .lw-practical-guide__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.lw-practical-guide .lw-practical-guide__content {
    max-width: 49%;
    flex: 1;
}

.lw-practical-guide .lw-practical-guide__title {
    font: 700 54px/1.08 var(--global-font);
    color: #1a1a1a;
    margin: 0 0 16px;
}

.lw-practical-guide .lw-practical-guide__description {
    font: 400 16px/1.6 var(--global-font);
    color: #15171a;
    margin: 0 0 32px;
}

.lw-practical-guide .lw-practical-guide__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.lw-practical-guide .lw-practical-guide__feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lw-practical-guide .lw-practical-guide__feature-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 8px 8px rgba(0, 0, 0, 0.1);
}

.lw-practical-guide .lw-practical-guide__feature-icon svg {
    width: 48px;
    height: 48px;
    color: #1a1a1a;
}

.lw-practical-guide .lw-practical-guide__feature-text {
    font: 500 20px/1.5 var(--global-font);
    color: #15171a;
}

.lw-practical-guide .lw-practical-guide__cta {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #15171a;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    align-self: flex-start;
    font-family: inherit;
    display: inline-block;
}

.lw-practical-guide .lw-practical-guide__cta:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.lw-practical-guide .lw-practical-guide__cta:active {
    transform: translateY(0);
}

.lw-practical-guide .lw-practical-guide__visual {
    position: relative;
    flex: 1;
    border-radius: 30px;
    z-index: 1;
    max-width: 30%;
    margin-right: 100px;
}

.lw-practical-guide .lw-practical-guide__visual::after {
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
    background: linear-gradient(rgb(231, 233, 234) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    fill: blur(24px);
    z-index: -1;
    transform: rotate(-8deg) translate(22%, -5%) scale(0.9);
}

.lw-practical-guide .lw-practical-guide__image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
}

.lw-practical-guide .lw-practical-guide__image-wrapper::after {
    content: "";
    position: absolute;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    bottom: 0;
    left: 0;
    transform: translate(-10px, 30px);
    box-shadow: inset 0 8px 32px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    z-index: -1;
}

.lw-practical-guide .lw-practical-guide__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.lw-practical-guide .lw-practical-guide__moon {
    position: absolute;
    bottom: -50px;
    right: 0;
    transform: translateX(50%);
    width: 330px;
    aspect-ratio: 1/1;
    z-index: -2;
}

.lw-practical-guide .lw-practical-guide__moon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1023px) {
    .lw-practical-guide {
        padding: 100px 0;
    }

    .lw-practical-guide .lw-practical-guide__title {
        font-size: 48px;
    }

    .lw-practical-guide .lw-practical-guide__title {
        margin-bottom: 24px;
    }
}

@media (max-width: 991px) {
    .lw-practical-guide {
        padding: 80px 0;
    }

    .lw-practical-guide .lw-practical-guide__inner {
        gap: 40px;
        flex-direction: column;
    }

    .lw-practical-guide .lw-practical-guide__content {
        max-width: 100%;
    }

    .lw-practical-guide .lw-practical-guide__visual {
        max-width: 550px;
    }

    .lw-practical-guide .lw-practical-guide__title {
        font-size: 40px;
    }

    .lw-practical-guide .lw-practical-guide__moon {
        width: 200px;
        bottom: -20px;
        right: -20px;
    }

    .lw-practical-guide .lw-practical-guide__feature-icon {
        width: 50px;
        height: 50px;
    }

    .lw-practical-guide .lw-practical-guide__features {
        gap: 20px;
        margin: 0 0 30px;
    }

    .lw-practical-guide .lw-practical-guide__image-wrapper::after {
        height: 100px;
        width: 100px;
    }
}

@media (max-width: 767px) {
    .lw-practical-guide {
        padding: 60px 0;
    }

    .lw-practical-guide .lw-practical-guide__container {
        gap: 40px;
    }

    .lw-practical-guide .lw-practical-guide__title {
        font-size: 33px;
        margin-bottom: 12px;
    }

    .lw-practical-guide .lw-practical-guide__description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .lw-practical-guide .lw-practical-guide__feature-icon {
        width: 46px;
        height: 46px;
    }

    .lw-practical-guide .lw-practical-guide__feature-icon svg {
        width: 42px;
        height: 42px;
    }

    .lw-practical-guide .lw-practical-guide__features {
        gap: 16px;
        margin: 0 0 24px;
    }

    .lw-practical-guide .lw-practical-guide__feature-text {
        font-size: 16px;
    }

    .lw-practical-guide .lw-practical-guide__cta {
        padding: 14px 32px;
        font-size: 16px;
    }

    .lw-practical-guide .lw-practical-guide__moon {
        width: 120px;
    }

    .lw-practical-guide .lw-practical-guide__image-wrapper::after {
        height: 80px;
        width: 80px;
        left: 20px;
        bottom: 20px;
    }

    .lw-practical-guide .lw-practical-guide__cta {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .lw-practical-guide {
        padding: 48px 0;
    }
}

/* ********* FAQ Section *********** */
.lw-faq {
    padding: 120px 0 100px;
    position: relative;
    z-index: 1;
}

.lw-faq .lw-faq__heading {
    font: 700 54px/1.2 var(--global-font);
    color: #fff;
    text-align: center;
    max-width: 420px;
    margin: 0 auto 40px;
}

.lw-faq .lw-faq__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
    max-width: 100%;
}

.lw-faq .lw-faq__tab {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    box-shadow:
        inset 1px 1px 0 0 rgba(255, 255, 255, 0.438),
        inset -5px -5px 10px 0 rgba(0, 0, 0, 0.308),
        1px 1px 0 0 rgba(255, 255, 255, 0.151);
}
.lw-faq .lw-faq__tab:hover,
.lw-faq .lw-faq__tab:focus {
    color: #15171a;
    outline: none;
}

.lw-faq .lw-faq__tab:not(.lw-faq__tab--active):hover {
    color: #f5f5f5;
    /* box-shadow:
        inset 1px 1px 0 0 #afcaff,
        inset -5px -5px 10px 0 rgba(0, 0, 0, 0.589),
        1px 1px 0 0 #afcaff; */
}

.lw-faq .lw-faq__tab--active {
    color: #15171a;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
}

.lw-faq .lw-faq__panels {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.lw-faq .lw-faq__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.3s linear,
        visibility 0.3s linear,
        transform 0.3s linear;
    pointer-events: none;
}

.lw-faq .lw-faq__panel--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
        opacity 0.3s linear,
        visibility 0.3s linear,
        transform 0.3s linear;
}

.lw-faq .lw-faq__panel--active[style*="opacity: 0"] {
    opacity: 0 !important;
    transform: translateY(10px) !important;
}

.lw-faq .lw-faq__list {
    display: flex;
    flex-direction: column;
}

.lw-faq .lw-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* .lw-faq .lw-faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
} */

.lw-faq .lw-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    font-family: inherit;
}

.lw-faq .lw-faq__item:first-child .lw-faq .lw-faq__question {
    padding-top: 0;
}

.lw-faq .lw-faq__question-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    padding-right: 24px;
}

.lw-faq .lw-faq__question-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    user-select: none;
}

.lw-faq .lw-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s linear,
        padding-bottom 0.4s linear,
        opacity 0.3s linear 0.1s;
    opacity: 0;
    padding: 0;
}

.lw-faq .lw-faq__answer--open {
    max-height: 2000px;
    opacity: 1;
}

.lw-faq .lw-faq__answer-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding-bottom: 24px;
}

@media (max-width: 1023px) {
    .lw-faq {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .lw-faq {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .lw-faq {
        padding: 48px 0;
    }

    .lw-faq .lw-faq__heading {
        font-size: 33px;
        margin-bottom: 32px;
    }

    .lw-faq .lw-faq__nav {
        gap: 5px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0 2px 2px;
        width: max-content;
        margin: 0 auto 30px;
    }

    .lw-faq .lw-faq__tab {
        padding: 10px 14px;
        white-space: nowrap;
        font-size: 12px;
    }

    .lw-faq .lw-faq__item .lw-faq__question {
        padding: 16px 0;
    }

    .lw-faq .lw-faq__item:first-child .lw-faq__question {
        padding-top: 0;
    }

    .lw-faq .lw-faq__question-text {
        font-size: 16px;
        padding-right: 16px;
    }

    .lw-faq .lw-faq__answer-text {
        font-size: 14px;
    }
}

/* ********* Learning Paths Section *********** */
.lw-learning {
    position: relative;
    padding: 80px 0 145px;
    z-index: 1;
}

.lw-learning .lw-container {
    max-width: 825px;
}

.lw-learning .lw-learning__heading {
    font: 700 48px/1.2 var(--global-font);
    background: linear-gradient(
        -180deg,
        rgb(255, 255, 255) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0 0 16px;
    text-align: center;
}

.lw-learning .lw-learning__description {
    font: 400 18px/1.5 var(--global-font);
    color: #fff;
    margin: 0 auto 40px;
    background: linear-gradient(
        -180deg,
        rgb(255, 255, 255) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    max-width: 550px;
}

.lw-learning .lw-learning__card {
    width: 100%;
    max-width: 825px;
    background: rgba(245, 245, 245, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.lw-learning .lw-learning__visual {
    flex: 1;
    max-width: 50%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

.lw-learning .lw-learning__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 30px;
    z-index: -1;
    /* backdrop-filter: blur(10px); */
    transform: translateX(23px) rotate(-5deg) scale(0.95);
}

.lw-learning .lw-learning__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.lw-learning .lw-learning__content {
    flex: 1;
    max-width: 50%;
}

.lw-learning .lw-learning__category {
    display: inline-block;
    /* padding: 5px 10px; */
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    /* box-shadow: inset 0 2px 8px 0 rgba(245, 245, 245, 0.4); */
    color: #939393;
    margin: 0 0 12px;
    width: max-content;
}

.lw-learning .lw-learning__title {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
}

.lw-learning .lw-learning__text {
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    margin: 0 0 24px;
}

.lw-learning .lw-learning__cta {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    font-family: inherit;
    align-self: flex-start;
    display: inline-block;
}

.lw-learning .lw-learning__cta:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.lw-learning .lw-learning__cta:active {
    transform: translateY(0);
}

.lw-learning__telescope {
    position: absolute;
    bottom: -30px;
    width: 10%;
    aspect-ratio: 0.68/1;
    z-index: 1;
}

.lw-learning__telescope.lw-learning__telescope--left {
    left: 60px;
    /* animation: lw-telescope-move--01 5s infinite alternate; */
}

.lw-learning__telescope.lw-learning__telescope--right {
    right: 60px;
    /* animation: lw-telescope-move--02 5s infinite alternate; */
}

.lw-learning__telescope.lw-learning__telescope--left svg,
.lw-learning__telescope.lw-learning__telescope--right svg {
    height: 100%;
    width: 100%;
}

@keyframes lw-telescope-move--01 {
    from {
        transform: rotateY(-30deg);
    }

    to {
        transform: rotateY(30deg);
    }
}

@keyframes lw-telescope-move--02 {
    from {
        transform: rotateY(30deg);
    }

    to {
        transform: rotateY(-30deg);
    }
}

@media (max-width: 1200px) {
    .lw-learning__telescope.lw-learning__telescope--left {
        left: 0;
    }

    .lw-learning__telescope.lw-learning__telescope--right {
        right: 0;
    }
}

@media (max-width: 1023px) {
    .lw-learning .lw-learning__card {
        padding: 30px;
        gap: 40px;
    }

    .lw-learning .lw-learning__heading {
        font-size: 40px;
    }

    .lw-learning .lw-learning__title {
        font-size: 30px;
    }

    .lw-learning .lw-learning__text {
        font-size: 15px;
        margin: 0 0 20px;
    }
}

@media (max-width: 767px) {
    .lw-learning .lw-learning__card {
        padding: 20px;
        gap: 16px;
    }

    .lw-learning .lw-learning__description {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .lw-learning .lw-learning__heading {
        font-size: 33px;
        margin-bottom: 12px;
    }

    .lw-learning {
        padding: 60px 0 80px;
    }

    .lw-learning .lw-learning__card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }

    .lw-learning .lw-learning__title {
        font-size: 26px;
    }

    .lw-learning .lw-learning__text {
        font-size: 14px;
        margin: 0 0 16px;
    }

    .lw-learning .lw-learning__cta {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .lw-learning {
        padding: 48px 0 70px;
    }

    .lw-learning .lw-learning__card {
        flex-direction: column;
    }

    .lw-learning .lw-learning__visual,
    .lw-learning .lw-learning__content {
        max-width: 100%;
        text-align: center;
    }
}

/* ********* Fancy Thumbs Section *********** */
.lw-fancy-cards--style-01 {
    position: relative;
}

.lw-fancy-cards--style-01 .lw-fancy-cards__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    min-height: 400px;
    width: 50%;
}

.lw-fancy-cards--style-01 .lw-fancy-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.lw-fancy-cards--style-01 .lw-fancy-cards__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Left image - front, bottom layer - MOST FORWARD */
.lw-fancy-cards--style-01 .lw-fancy-card--left {
    width: 33.33%;
    aspect-ratio: 0.82/1;
    left: 50%;
    top: 50%;
    transform: translate3d(-120%, -44%, 50px) skewy(6deg);
    z-index: 10;
}

/* Center image - middle layer, behind left, slightly up */
.lw-fancy-cards--style-01 .lw-fancy-card--center {
    width: 33.33%;
    aspect-ratio: 0.82/1;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -40%, 20px) skewy(6deg);
    z-index: 5;
}

/* Right image - back layer, most behind */
.lw-fancy-cards--style-01 .lw-fancy-card--right {
    width: 33.33%;
    aspect-ratio: 0.82/1;
    left: 50%;
    top: 50%;
    transform: translate3d(5%, -36%, -60px) skewy(6deg);
    z-index: 1;
}

/* ********* Fancy Cards Section *********** */
.lw-fancy-cards--style-02 {
    position: relative;
    /* background: #0a0e1a; */
}

.lw-fancy-cards--style-02 .lw-fancy-cards__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    min-height: 600px;
    width: 50%;
}

.lw-fancy-cards--style-02 .lw-fancy-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.lw-fancy-cards--style-02 .lw-fancy-cards__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.lw-fancy-cards--style-02 .lw-fancy-card--left {
    width: 40%;
    aspect-ratio: 0.67/1;
    left: 50%;
    top: 50%;
    transform: translate(-120%, -50%) rotateY(45deg);
    z-index: 2;
    perspective: 2000px;
}

.lw-fancy-cards--style-02 .lw-fancy-card--center {
    width: 52%;
    aspect-ratio: 0.79/1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.lw-fancy-cards--style-02 .lw-fancy-card--right {
    width: 40%;
    aspect-ratio: 0.67/1;
    left: 50%;
    top: 50%;
    transform: translate(20%, -50%) rotateY(-45deg);
    z-index: 1;
}

/* ********* Fancy Cards Section Style 03 *********** */
.lw-fancy-cards--style-03 {
    position: relative;
    /* background: #f6f8fa; */
}

.lw-fancy-cards--style-03 .lw-fancy-cards__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    min-height: 400px;
    width: 50%;
}

.lw-fancy-cards--style-03 .lw-fancy-card {
    position: absolute;
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    min-width: 200px;
}

.lw-fancy-cards--style-03 .lw-fancy-cards__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lw-fancy-cards--style-03 .lw-fancy-card--top-left {
    left: 50%;
    top: 50%;
    transform: translate(-75%, -55%) rotate(-6deg);
    z-index: 2;
}

.lw-fancy-cards--style-03 .lw-fancy-card--center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(6deg);
    z-index: 1;
    background-color: #fff;
}

.lw-fancy-cards--style-03 .lw-fancy-card--bottom-right {
    left: 50%;
    top: 50%;
    transform: translate(-20%, -15%) rotate(4deg);
    z-index: 3;
}

/* ********* Fancy Cards Section Style 04 *********** */
.lw-fancy-cards--style-04 {
    position: relative;
    /* background: #f6f8fa; */
}

.lw-fancy-cards--style-04 .lw-fancy-card--left {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    width: 70%;
}

.lw-fancy-cards--style-04 .lw-fancy-card__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.lw-fancy-cards--style-04 .lw-fancy-card--left::after {
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
    transform: rotate(-10deg) translate(10%, 0) scale(0.9);
    background: linear-gradient(rgb(231, 233, 234) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    fill: blur(24px);
    z-index: -1;
}

/* @media (max-width: 1024px) {
  .lw-fancy-cards--style-03 .lw-fancy-cards__inner {
    min-height: 550px;
  }

  .lw-fancy-cards--style-03 .lw-fancy-card--top-left {
    width: 360px;
    height: 480px;
    transform: translate(-65%, -55%) rotate(-6deg);
  }

  .lw-fancy-cards--style-03 .lw-fancy-card--bottom-right {
    width: 380px;
    height: 500px;
    transform: translate(-35%, -45%) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .lw-fancy-cards--style-03 {
    padding: 80px 0;
  }

  .lw-fancy-cards--style-03 .lw-fancy-cards__inner {
    min-height: auto;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }

  .lw-fancy-cards--style-03 .lw-fancy-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 320px !important;
    height: 420px !important;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  }

  .lw-fancy-cards--style-03 .lw-fancy-card--top-left {
    order: 1;
    z-index: 2;
  }

  .lw-fancy-cards--style-03 .lw-fancy-card--bottom-right {
    order: 2;
    z-index: 1;
  }
} */

/* ********* Fancy Cards Section Style 05 *********** */
.lw-fancy-cards--style-05 {
    position: relative;
    /* background: #f6f8fa; */
}

.lw-fancy-cards--style-05 .lw-fancy-cards__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    min-height: 600px;
    width: 50%;
}

.lw-fancy-cards--style-05 .lw-fancy-card {
    position: absolute;
    width: 290px;
    aspect-ratio: 1/1;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    max-width: 60%;
}

.lw-fancy-cards--style-05 .lw-fancy-cards__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lw-fancy-cards--style-05 .lw-fancy-card--top-left {
    left: 50%;
    top: 50%;
    transform: translate(-75%, -55%) rotate(-7deg);
    z-index: 2;
}

.lw-fancy-cards--style-05 .lw-fancy-card--bottom-right {
    left: 50%;
    top: 50%;
    transform: translate(-20%, -15%) rotate(8deg);
    z-index: 3;
}

@media (max-width: 767px) {
    .lw-fancy-cards .lw-fancy-card {
        border-radius: 12px;
    }
}

/* ********* Articles Section *********** */
.lw-articles {
    padding: 120px 0;
    background: #f6f8fa;
}

.lw-articles .lw-articles__heading {
    font: 600 54px/1.08 var(--global-font);
    color: #15171a;
    text-align: center;
    margin: 0 0 40px;
}

.lw-articles .lw-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.lw-loader-height {
    min-height: 10px;
}
/* Loading overlay */
.lw-articles__grid .lw-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255, 255, 255, 0.115); */
    /* backdrop-filter: blur(2px); */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.lw-related-articles .lw-articles__grid {
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
}

.lw-article {
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lw-article:hover {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.lw-related-articles .lw-article__image-wrapper {
    aspect-ratio: 1.47/1;
}

.lw-article__image-wrapper {
    width: 100%;
    aspect-ratio: 2/1;
    overflow: hidden;
    display: block;
}

.lw-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lw-article__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(rgb(231, 233, 234) 0%, rgb(255, 255, 255) 90%);
}

.lw-article__title {
    font: 700 20px/1.3 var(--global-font);
    color: #000000;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lw-article__title a {
    background-color: transparent;
    font: inherit;
    color: inherit;
    transition: 0.3s;
}

/*
.lw-article__title a:hover {
  color: transparent;
  background: radial-gradient(
    ellipse at center,
    #f7ef9c 0%,
    #f5e58a 25%,
    #e6c768 55%,
    #c99832 80%,
    #a56e26 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

.lw-article__description {
    font: 400 14px/1.6 var(--global-font);
    color: #15171a;
    margin: 0 0 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* flex: 1; */
}

.lw-article__link {
    font: 700 12px/1.2 var(--global-font);
    color: rgba(2, 0, 9, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    transition: color 0.2s ease;
    margin-top: auto;
}

.lw-article__link:hover {
    color: #000000;
}

.lw-article__link span {
    line-height: 0;
}

.lw-articles .lw-articles__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.lw-articles .lw-articles__pagination-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: 0.3s;
    font-family: var(--global-font);
    padding: 0;
    color: #fff;
    background-color: #939393;
}

.lw-articles .lw-articles__pagination-btn:hover {
    color: #000000;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
}

.lw-articles .lw-articles__pagination-numbers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lw-articles .lw-articles__pagination-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(rgb(231, 233, 234) 0%, rgb(255, 255, 255) 90%);
    color: #000000;
    font: 600 16px/1 var(--global-font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    padding: 0;
}

.lw-articles .lw-articles__pagination-number:hover {
    box-shadow: 0 2px 8px #00000033;
}

.lw-articles .lw-articles__pagination-number--active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.lw-articles .lw-articles__pagination-ellipsis {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(rgb(231, 233, 234) 0%, rgb(255, 255, 255) 90%);
    color: #000000;
    font: 400 16px/1 var(--global-font);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .lw-related-articles .lw-articles__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .lw-articles {
        padding: 100px 0;
    }

    .lw-articles .lw-articles__heading {
        font-size: 48px;
        margin: 0 0 36px;
    }

    .lw-articles .lw-articles__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .lw-related-articles .lw-articles__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .lw-articles {
        padding: 80px 0;
    }

    .lw-related-articles .lw-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lw-articles .lw-articles__heading {
        font-size: 40px;
        margin: 0 0 30px;
    }

    .lw-articles .lw-articles__pagination {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .lw-articles {
        padding: 60px 0;
    }

    .lw-articles .lw-articles__heading {
        font-size: 33px;
        margin: 0 0 24px;
    }

    .lw-articles .lw-articles__grid {
        gap: 16px;
        margin-bottom: 24px;
    }

    .lw-article__content {
        padding: 20px;
    }

    .lw-article__title {
        font-size: 18px;
    }

    .lw-articles .lw-articles__pagination {
        /* flex-wrap: wrap; */
        gap: 12px;
    }

    .lw-articles .lw-articles__pagination {
        margin-top: 24px;
    }

    .lw-articles .lw-articles__pagination-btn,
    .lw-articles .lw-articles__pagination-number,
    .lw-articles .lw-articles__pagination-ellipsis {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }

    .lw-articles .lw-articles__pagination-numbers {
        gap: 6px;
    }
}

@media (max-width: 575px) {
    .lw-articles {
        padding: 48px 0;
    }

    .lw-articles .lw-articles__grid {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    /* .lw-articles__pagination-number:nth-child(3), */
    .lw-articles__pagination-number:nth-child(4) {
        display: none !important;
    }
}

.lw_footer {
    overflow: hidden;
}

.lw_footer .lw-gradient-shape {
    overflow: visible;
}

/* Loading States */
.lw-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    /* min-height: 300px; */
    width: 100%;
}

.lw-loading p {
    margin: 1rem 0 0 0;
    color: #e6c768;
    font-size: 0.9rem;
}

.lw-loading__spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ffffff;
    border-top: 4px solid #e6c768;
    border-radius: 50%;
    animation: lw-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes lw-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.lw-dots-floating {
  will-change: transform;
  transform: translateZ(0); /* GPU acceleration */
}

.lw-dot {
  will-change: transform, opacity;
  transform: translateZ(0); /* GPU acceleration */
  pointer-events: none; /* Don't block mouse events */
}
.lw-tab__btn--active{
    pointer-events: none;
}

.lw-home-hero__video {
  position: absolute;
  inset: 0;
}

.lw-home-hero__video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* ***************************************** */
/* *********** Newsletter Popup ************ */
/* ***************************************** */
.lw-newsletter {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lw-newsletter.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-newsletter__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

/* ========================================
   MODAL
======================================== */
.lw-newsletter__modal {
  position: relative;
  width: 824px;
  max-width: 95%;
  margin: 60px auto;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  /* box-shadow: 0 60px 120px rgba(0, 0, 0, 0.35); */
  animation: cwModalIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ========================================
   IMAGE SIDE
======================================== */
.lw-newsletter__media {
  flex: 1;
  max-width: 50%;
}

.lw-newsletter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   CONTENT SIDE
======================================== */

.lw-newsletter__content {
  padding: 68px 30px;
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html body h2.lw-newsletter__heading {
  font-size: 33px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 12px;
  color: #15171a;
}

.lw-newsletter__dsc {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #15171a;
  margin: 0 0 24px;
}

.lw-newsletter__modal .newsletter-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.lw-newsletter__modal input[type=email] {
  padding: 16px 20px;
  border-radius: 100px;
  border: 1px solid #939393;
  font-family: var(--global-font);
  background: transparent;
  font-size: 16px;
  line-height: 1;
  transition: all 0.25s ease;
  max-width: 100%;
  color: #15171a;
}

.lw-newsletter__modal  input[type=email]::placeholder {
    color: #15171a !important;
}

.lw-newsletter__modal input[type=email]:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #b49163;
  outline: none;
}

/* Primary button */
.lw-newsletter__modal input[type=submit] {
  width: 100%;
  padding: 17px 20px;
  border: none;
}
.lw-newsletter__btn[type=submit]:hover{
    color: #15171a;
    background: radial-gradient(ellipse at center, #f7ef9c 0%, #f5e58a 25%, #e6c768 55%, #c99832 80%, #a56e26 100%);
}
.lw-newsletter__info {
  margin-top: 20px;
  background: none;
  border: none;
  font-size: 12px;
  line-height: 1.5;
  color: #15171a;
  cursor: pointer;
}

.lw-newsletter__info a {
  text-decoration: underline;
  font: inherit;
  font-weight: 500;
  color: inherit;
}

.lw-newsletter__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
}
.lw-newsletter__close:hover{
    background: transparent;
}

.lw-newsletter__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #333333f1;
  transition: 0.3s;
}

.lw-newsletter__close:hover span {
  background: #15171a;
}

.lw-newsletter__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lw-newsletter__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================
   ANIMATION
======================================== */

@keyframes cwModalIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
  .lw-newsletter__content {
    padding: 50px 24px;
  }

  .lw-newsletter__media {
    max-width: 40%;
  }

  .lw-newsletter__content {
    max-width: 60%;
  }

  .lw-newsletter__field input {
    padding: 12px 20px;
  }
}

@media (max-width: 767px) {
  .lw-newsletter__modal {
    width: 500px;
  }

  .lw-newsletter__heading {
    font-size: 28px;
  }

  .lw-newsletter__media {
    display: none;
  }

  .lw-newsletter__content {
    max-width: 100%;
  }

  .lw-newsletter__modal input[type=email] {
    padding: 10px 18px;
  }

  .lw-newsletter__modal input[type=submit] {
    padding: 14px 18px;
  }
}
