@layer components {
  html,
  body {
    height: auto;
    min-height: 100%;
  }
  @font-face {
    font-family: "Vonnes Regular";
    src: url("../../fonts/Vonnes/Vonnes%20Regular/Vonnes%20Regular.ttf")
      format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Vonnes Medium";
    src: url("../../fonts/Vonnes/Vonnes%20Medium/Vonnes%20Medium.otf")
      format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Vonnes Bold";
    src: url("../../fonts/Vonnes/Vonnes%20Bold/Vonnes%20Bold.otf")
      format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --gray: #707070;
    --font-serif: "DM Serif Text", serif;
    --font-sans: "DM Sans", sans-serif;
    --box-shad: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .swiper,
  .turning-swiper,
  .defining-swiper {
    width: 100%;
    margin: 0 auto;
  }

  .turning-swiper .swiper-slide,
  .defining-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
  }

  .turning-swiper .swiper-slide .article,
  .defining-swiper .swiper-slide .article {
    width: 100%;
    max-width: 385px;
  }

  #stickyNav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #000c66;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  #heroSection {
    position: relative;
    z-index: 1030;
    background-color: #ffffff;
    margin-top: -48px;
  }
  /* 2608-14 */
  .heroText {
    display: flex;
    flex-direction: column;
    place-content: center;
  }

  @media (min-width: 1024px) {
    #heroSection {
      margin-top: -72px;
    }
  }

  /* All other sections scroll underneath normally */
  /*section:not(#heroSection) {
    position: relative;
    z-index: 1;
  }*/

  #stickyNav.menu-open {
    z-index: 9999 !important;
  }
  /*.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000c66;
    color: #ffffff;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .sticky-nav.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }*/

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 100px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.2s ease;
  }

  .nav-links a:hover {
    text-decoration: underline;
    /*opacity: 0.8;*/
  }

  .nav-links a.active {
    font-weight: 600;
    text-decoration: underline;
    /*text-underline-offset: 8px;
    text-decoration-thickness: 2px;*/
  }

  .nav-emblem {
    max-width: 60px;
    max-height: 60px;
    display: flex;
    align-items: center;
  }

  .emblem-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
  }

  .emblem-text {
    font-size: 0.6rem;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  /* Hamburger Active Animation */
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  @media (max-width: 1024px) {
    .nav-toggle {
      display: flex;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #000c66;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      padding: 24px 0 32px 0;
      margin-left: 0;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
      border-top: 1px solid rgba(255, 255, 255, 0.1);

      /* Mobile Dropdown Transition */
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      visibility: hidden;
      transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
    }

    .nav-menu.is-open {
      max-height: 450px;
      opacity: 1;
      visibility: visible;
    }

    .nav-links {
      flex-direction: column;
      gap: 18px;
      text-align: center;
    }

    .nav-links a {
      font-size: 1.1rem;
    }
  }

  .p-64 {
    padding-block-start: 64px;
  }

  /* Hero */

  .hero {
    /*padding-block: 185px;*/
    overflow: hidden;
    background-image: url("../../images/bg_screen1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
  }

  .hero .logo {
    position: absolute;
    right: -100px;
    top: 60px;
    width: 180px;
    height: 180px;
  }

  .hero h1 {
    font-size: clamp(
      2rem,
      1.25rem + 2.6vw,
      5rem
    ); /* min 2 rem < 320px, scaling 1.25 rem, max 5 rem > 1600px */
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Vonnes Bold";
  }

  .hero h1 span {
    color: #698dba;
  }

  .hero h3 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    font-family: "Vonnes Regular";
  }

  .hero sup {
    font-size: 0.875rem;
    top: -1em;
  }
  .hero .desktop {
    display: block;
  }

  .hero .mobile {
    display: none;
  }
  /* 2608-14 */
  .hero .py-185 {
    /*padding-block: 185px;*/
    display: flex;
  }

  @media (max-width: 1024px) {
    .hero {
      padding-inline: 24px;
      background-image: url("../../images/BG_screen1_MOBILE.webp");
    }
    /*.hero h1 {
      font-size: 2.875rem;
    }*/
    .hero .logo {
      position: absolute;
      right: 0;
      top: 20px;
      width: 100px;
      height: 100px;
    }
    .hero .mobile {
      display: block;
      font-size: 1.5rem;
    }
    .hero .desktop {
      display: none;
    }
    .hero .py-185 {
      padding-block-end: 40px;
      padding-block-start: 100px;
    }
  }

  .marquee-container {
    display: flex;
    gap: 20px;
    height: 100vh;
    overflow: hidden;
    position: relative;
    overflow-y: visible;
  }

  .marquee-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    flex-direction: column;
  }

  .track-up {
    animation: scrollUp 100s linear infinite;
  }

  .track-down {
    animation: scrollDown 100s linear infinite;
  }

  .marquee-container:hover .marquee-track {
    animation-play-state: paused;
  }

  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }

  @keyframes scrollDown {
    0% {
      transform: translateY(-50%);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes scrollRight {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  @media (max-width: 1024px) {
    .marquee-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      height: 570px;
      /*mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
      -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );*/
    }

    .marquee-column {
      display: flex;
      overflow: hidden;
      height: auto;
      min-height: 0;
      flex: 0 0 auto;
    }

    .marquee-track {
      display: flex;
      flex-direction: row;
      align-items: center;
      width: max-content;
      /*gap: 24px;*/
      padding-right: 24px;
      will-change: transform;
    }

    .track-up {
      animation: scrollLeft 100s linear infinite;
    }

    .track-down {
      animation: scrollRight 100s linear infinite;
    }
  }

  .portrait-card {
    width: 300px;
    height: 390px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 0;
    box-shadow: var(--box-shad);
  }

  .portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  @media (max-width: 1024px) {
    .portrait-card {
      width: 180px;
      height: 250px;
    }
  }

  /* Timeline */

  .timeline {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    background-image: url("../../images/80thanniversary/bg_screen2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .timeline h2 {
    color: var(--c_new);
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: 1.5px;
  }

  .timeline h3 {
    font-family: var(--font-serif);
    font-weight: 400;
  }
  .timeline p {
    font-family: var(--font-serif);
    font-size: 0.8125rem;
    color: var(--gray);
  }
  .timeline-card p {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--gray);
  }

  .timeline-grid {
    display: grid;
    height: 700px;
    /* Define a fixed number of columns or auto-fit tracks */
    grid-template-columns: repeat(var(--total-cols, 20), minmax(80px, 1fr));
    grid-auto-rows: 100px;
    column-gap: 0;
    padding-top: 48px;
    padding-bottom: 32px;
    padding-left: 16px;
    position: relative;

    overflow-x: auto;
    overflow-y: hidden;
    align-content: start;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scroll-padding-inline: 16px;

    /*&::-webkit-scrollbar {
      display: none;
    }
    scrollbar-width: none;
    -ms-overflow-style: none;*/
  }

  .timeline-col {
    grid-row: 1 / 99;
    margin-block: 32px;
    border-left: 1px dashed black;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
  }

  .timeline-col::before {
    content: attr(data-year);
    position: absolute;
    top: -40px;
    left: -15px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .timeline-col::after {
    display: block;
    content: ".";
    position: absolute;
    top: -32px;
    left: -4px;
    font-size: 1.5rem;
  }

  .timeline-col[data-year=""]::after {
    display: none;
  }

  .timeline-card {
    /* Snap card to grid start column */
    grid-column: var(--start) / span var(--span, 3);
    grid-row: span 1;
    align-self: start;
    justify-self: start;
    scroll-snap-align: start;
    background: #e4e4e4;
    border-radius: 8px;
    margin: 10px;
    margin-left: -10px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shad);
    cursor: pointer;
    max-height: 240px;
    width: 250px;
  }

  .timeline-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 6px;
  }

  .timeline-card:hover {
    transform: scale(1.03);
    z-index: 5;
  }

  .timeline-card--onclick {
    display: block;
    position: absolute;
    left: 0;
    top: 10%;
    background: white;
    border: 1px solid gray;
    box-shadow: var(--box-shad);
    padding: 10px;
    z-index: 10;
    border-radius: 8px;
    max-width: 385px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .timeline-card--onclick .img-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 8px;
  }

  @media (max-width: 1024px) {
    .timeline-card--onclick {
      max-width: 495px;
      max-height: 500px;
      overflow-y: scroll;
    }
    .timeline h2 {
      font-size: 2rem;
    }
  }

  /* Close Button */
  .timeline-card--onclick .card-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.2s ease;
  }

  .timeline-card--onclick .card-content {
    padding: 16px;
    background: #e4e4e4;
    border-radius: 6px;
  }

  .timeline-card--backdrop {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.2);*/
    content: "";
    z-index: 9;
    backdrop-filter: blur(2px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .timeline-card--onclick.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .timeline-card--backdrop.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .timeline-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: min(130px, calc(100% - 2rem));
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    z-index: 8;
  }

  .timeline-nav p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
  }

  .timeline-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .timeline-nav button:hover {
    transform: scale(1.12);
  }

  /* Legacy */

  .legacy {
    background-color: navy;
    background-image: url("../../images/bg_screen3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
  }

  .legacy a {
    text-decoration: none;
    color: white;
    outline: 0;
    transition: all 0.3s ease;
  }
  .legacy a:hover {
    text-decoration: underline;
  }

  .legacy h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    padding-block: 48px;
  }

  .legacy .py-130 {
    padding-block: 100px;
  }

  .legacy .chairman {
    width: 100%;
    height: 420px;
  }

  .legacy .chairman img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .legacy .chairman ~ p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-align: start;
  }
  .legacy .chairman ~ p strong {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
  }

  .legacy .youtube-gallery {
    display: grid;
    background-color: #020740;
    grid-template-columns: 2fr 1fr; /*60% , 40% */
    gap: 20px;
    width: 100%;
  }

  /* Video Player */
  .legacy .player-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  }

  .legacy .player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Playlist Column */
  .legacy .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .legacy .thumb {
    display: flex;
    align-items: start;
    gap: 12px;
    width: 100%;
    background: #050d81;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
  }

  .legacy .thumb:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
  }

  .legacy .thumb.active {
    border-top-right-radius: 4px;
    scale: calc(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background: rgba(0, 68, 255, 0.5);
  }

  .legacy .thumb-img {
    width: 130px;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .legacy .thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .legacy .thumb-info {
    flex: 1;
    min-width: 0;
  }

  .legacy .video-title {
    display: block;
    overflow: hidden;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    padding-top: 8px;
  }

  @media (max-width: 1024px) {
    .legacy .youtube-gallery {
      grid-template-columns: 1fr; /* Full width */
    }

    .legacy .gallery-grid {
      max-height: 400px;
      overflow-y: auto;
    }
  }

  /* Turning Point */

  .turning {
    background-image: url("../../images/bg_screen2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .turning h3 {
    color: #050d81;
    font-family: var(--font-serif);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    padding-block: 48px;
  }

  .turning .article-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: clip;
    gap: 22px;
  }

  .turning .article {
    width: 100%;
    max-width: 385px;
    flex-shrink: 0;
    height: auto;
  }

  .turning .article .img-container {
    max-width: 385px;
    height: auto;
    aspect-ratio: 385/270;
  }

  .turning .article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .turning .article p {
    color: #050d81;
    font-family: var(--font-serif);
    text-transform: uppercase;
    padding-top: 20px;
    text-align: start;
  }

  .turning .turning-prev,
  .turning .turning-next {
    color: #050d81;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0px;
  }

  .turning .swiper-pagination-current,
  .turning .swiper-pagination-total {
    color: #050d81;
  }

  .turning .desktop {
    display: block;
  }

  .turning .mobile {
    display: none;
  }

  @media (max-width: 1024px) {
    .turning .mobile {
      display: block;
      font-size: 1.5rem;
    }
    .turning .desktop {
      display: none;
    }
    .turning .article p {
      text-align: center;
    }
  }

  /* Defining the Future */

  .defining {
    background-image: url("../../images/bg_screen4.webp");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }

  .defining h3 {
    color: white;
    font-family: var(--font-serif);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    padding-block: 48px;
  }

  .defining .article-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: clip;
    gap: 22px;
  }

  .defining .article {
    background-color: white;
    width: 100%;
    max-width: 385px;
    flex-shrink: 0;
    height: 100%;
    box-shadow: var(--box-shad);
  }

  .defining .article .img-container {
    max-width: 385px;
    height: auto;
    aspect-ratio: 385/270;
  }

  .defining .article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .defining .article p {
    text-transform: uppercase;
    font-family: var(--font-serif);
    color: #030639;
    text-align: start;
  }

  .defining .article div:has(p) {
    padding: 18px;
  }

  .defining .defining-prev,
  .defining .defining-next {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0px;
  }

  .defining .defining-pagination {
    color: white !important;
  }

  /* Banner */

  .banner-container,
  .banner-swiper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
  }

  .banner-swiper .swiper-wrapper {
    max-width: 100%;
    box-sizing: border-box;
  }

  .banner-swiper .swiper-slide {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .banner-swiper .swiper-slide a,
  .banner-swiper .swiper-slide picture,
  .banner-swiper .swiper-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .banner-container .banner-controls {
    padding-block: 4px;
    max-width: 100%;
  }

  .banner-pagination .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 9px;
    --swiper-pagination-bullet-height: 9px;
    --swiper-pagination-color: #040e7d;
    --swiper-pagination-bullet-inactive-color: white;
    border: 1px solid #040e7d;
  }

  /* Force Aspect Ratio */
  @media (min-width: 768px) {
    /*.banner-swiper .swiper-slide img {
      aspect-ratio: 1920 / 250;
      object-fit: cover;
    }*/

    .banner-container .banner-controls {
      padding-block: 10px;
    }
    .banner-pagination .swiper-pagination-bullet {
      --swiper-pagination-bullet-width: 12px;
      --swiper-pagination-bullet-height: 12px;
    }
  }

  /* Guest */
  .guest {
    padding-inline: 0px;
  }

  .guest img {
    width: 100%;
    height: auto;
  }
  /********************************/
  /************ Article ***********/
  /********************************/

  #visualHead {
    position: relative;
  }

  .header {
    padding-inline: 0px;
  }

  .header img {
    position: relative;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  .header .quote,
  .header .turning-quote {
    padding-top: 24px;
    position: relative;
    color: black;
    text-align: center;
  }

  .header .quote::before {
    content: "";
    position: absolute;
    bottom: -24px;
    right: 50%;
    width: 70%;
    height: 1px;
    background-color: #698dba;
    border-radius: 20px;
    transform: translateX(50%);
  }

  .header .turning-quote {
    padding: 40px;
    padding-bottom: 0px;
  }

  .header .inner-quote::before {
    content: "\201C";
    position: absolute;
    font-family: var(--font-serif);
    font-size: 60px;
    top: 10px;
    left: 10px;
  }

  .header .inner-quote::after {
    content: "\201D";
    position: absolute;
    font-family: var(--font-serif);
    font-size: 60px;
    bottom: 25px;
    right: 10px;
  }

  .header .quote h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-weight: 400;
  }

  .header .quote h4,
  .header .turning-quote h4 {
    font-size: 1rem;
    font-family: var(--font-serif);
    font-weight: 400;
    text-transform: uppercase;
  }

  .header .quote p,
  .header .turning-quote p {
    font-size: 0.875rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    padding-top: 16px;
  }

  .pt-90 {
    padding-block: 90px;
  }

  .full-article {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1000px;
    text-align: left;
    font-family: var(--font-sans);
  }
  .full-article p,
  .full-article h4,
  .full-article h2 {
    padding-bottom: 1.5rem;
  }
  .full-article h2 {
    font-size: 2.625rem;
    font-family: var(--font-serif);
    font-weight: 400;
    padding-bottom: 40px;
    color: #715c47;
  }

  .full-article h4 {
    font-size: 1.5rem;
  }

  .full-article img {
    padding-bottom: 1.5rem;
  }

  .full-article hr {
    margin-inline: 15%;
    /*border: 0.5px solid #698dba*/
    border-top: 1px solid;
    border-radius: 10px;
  }

  .full-article h2.h2blue {
    color: #617c99;
  }

  .full-article .italic {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    text-align: center;
  }

  @media (min-width: 835px) {
    .header img {
      aspect-ratio: 1920/450;
    }
    .header .quote {
      position: absolute;
      top: 50%;
      left: 50%;
      color: white;
      text-align: center;
      padding-top: 0px;
    }

    .header .turning-quote {
      position: absolute;
      top: 7%;
      right: 4%;
      color: black;
      text-align: center;
      width: 350px;
      /*background: rgba(
        0,
        0,
        0,
        0.35
      );*/
      backdrop-filter: blur(12px) saturate(155%);
      -webkit-backdrop-filter: blur(12px) saturate(160%); /* Safari */
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      padding: 10px;
    }

    .header .turning-quote.white {
      color: white;
    }

    .header .turning-quote .pb-35 {
      padding-top: 16px;
      font-size: 0.75rem;
    }

    .header .quote::before {
      content: "";
      position: absolute;
      top: -13.5px;
      height: 3px;
    }

    .header .inner-quote::before {
      font-size: 100px;
      position: absolute;
      top: -20px;
      left: -40px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }

    .header .inner-quote::after {
      font-size: 100px;
      position: absolute;
      right: -35px;
      bottom: -20px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    .header .quote p {
      padding-top: 0px;
    }
    .full-article p,
    .full-article h4,
    .full-article h2 {
      margin-inline: 100px;
    }
  }

  @media (min-width: 1025px) {
    .header .turning-quote {
      top: 25%;
      left: 65%;
    }
  }

  /* Swiper */
  .swiper-slide {
    transition: all 0.3s ease-in-out;
  }
  .swiper-slide:hover {
    transform: scale(1.03);
  }

  /* Landing */

  .hero.landing {
    max-height: 100vh;
  }

  .hero.landing .landing-nav {
    margin-top: 60px;
    display: flex;
    gap: 20px;
  }

  .hero.landing .landing-button {
    padding: 12px;
    padding-inline-start: 16px;
    background-color: #060e7c;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #698dba;
    border-radius: 21px;
    color: white;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-sans);
    font-size: 0.75rem;
  }

  .hero.landing .landing-button:hover {
    background-color: white;
    color: #060e7c;
  }

  .hero.landing .landing-img img {
    height: 100%;
    object-fit: contain;
  }
  .hero.landing .py-60 {
    padding-top: 60px;
    margin-bottom: 45px;
  }
  @media (min-width: 1024px) {
    .hero.landing .py-60 {
      padding-block: 120px;
    }
    .hero.landing .landing-button {
      font-size: 1rem;
    }
  }
}
