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



/** General Stylings */
html {
    scroll-behavior: smooth;
}

body, html {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
}

main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.hidden {
    display: none;
}

button {
    background-color: transparent;
    border: none;
}

/** Load Modual */



#loadModal, .modalBackground, .modalBackgroundMobile, .timelineWrapper, #lottie-container, nav, .modalContent h1, .modalContent p, .modalContent button, .modalContent, .magicTimeline, .timelineContainer, footer, .scrollPrompt, .controller {
    opacity: 1;
    transition: opacity 1.5s ease;
}

.magicTimeline {
    opacity: 0;
    position: absolute;
    top: 65px;
    left: 60px;
    width: 50px;
    height: 7px;
    background-color: #d60000;
    z-index: 50;
    transition: 1s ease;
}

.loadModal {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 50;
    /* background-color: #fff; */
}

.logoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.logoContainer svg {
    max-width: 600px;
}

.modalLogo {
    width: 300px;
    /* opacity: 0; */
    transform: translateY(50px);
    /* animation: fadeSlideIn 1s forwards, fadeOut 0.5s 1.5s forwards; */
}


.modal {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-left: 124px;
    width: 100vw;
    height: 100vh;
}

.modalBackground, .modalBackgroundMobile {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


.modalContent {
    opacity: 0;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    max-width: 1000px;
    border: 2px #fff solid;
    padding: 80px 60px;
    position: relative;
}

.modalContent h1 {
    opacity: 0;
    font-size: 40px;
    position: relative;
}

/* .modalContent h1::before {
    position: absolute;
    content: "";
    left: 0;
    top: -20px;

    display: inline-block;
    width: 50px;
    height: 7px;
    background-color: #d60000;
} */

.modalContent p {
    opacity: 0;
    font-size: 30px;
    margin: 20px 0;
}

.modalContent button {
    opacity: 0;
    border: none;
    padding: 12px 35px;
    font-size: 24px;
    background-color: #B30000;
    color: #fff;
    margin-top: 20px;
    transition: 0.5s ease;
    cursor: pointer;
}

.modalContent button:hover {
    background-color: #d60000;
}


.timelineWrapper {

    opacity: 0;
}

.fadeOut {
    opacity: 0 !important;
  }
  
  .fadeIn {
    opacity: 1 !important;
  }

.bottom {
    bottom: 0;
}

/** Navigation */

/* Main Nav */
nav {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    padding: 0 40px;
    z-index: 10;
    color: #000;
}
.dateNav, .logo, .leftNav, .rightNav {
    width: calc(100% / 3);
}

.dateNav {
    display: flex;
    justify-content: start;
}


.dateNav ul {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.dateNav li {
    align-self: center;
}

.dateNav li.date {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dateNav a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: 0.5s ease;
    height: 100%;
    width: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
}

.dateNav a.active {
    color: #d60000;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100%;
    margin-bottom: 10px;
}

.logo a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.logo img {
    height: 70%;
}

.leftNav {
    display: flex;
    justify-content: end;
    align-items: center;
}

/* .hamburgerMenu {
    
} */

.hamburgerMenu, .controller {
    font-size: 40px;
    cursor: pointer;
    transition: 0.5s ease;
}

.controller {
    opacity: 0;
}

.controller i {
    width: 60px;
    height: 60px;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    background-color: rgb(227, 227, 227, 0.5);
    border-radius: 50%;
}


.controller .next, .controller .back {
    position: absolute;
    top: 0;
    z-index: 8;
    color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    transition: 0.5s ease;
    /* background-color: #fff;
    border-radius: 50%; */
}

.controller .back {
    left: -80px;
}
.controller .back:hover {
    left: 10px;
}

.controller .next {
    right: -80px;
}

.controller .next:hover {
    right: 10px;
}

.startLeft {
    left: 10px !important;
    z-index: 80 !important;
}

.startRight {
    right: 10px !important;
    z-index: 80 !important;
}

.hamburgerMenu {
    margin-left: 50px;
}

.fa-angle-left, .fa-angle-right {
    transition: 0.5s ease;
    color: #585D64;
}


.dateNav a:hover, .hamburgerMenu:hover, .fa-angle-left:hover, .fa-angle-right:hover{
    color: #d60000;
}


/* Pop Up Nav */
.popUpMenu {
    position: absolute;
    top: 0;
    right: -480px;
    width: 480px;
    height: 100vh;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    font-weight: 700;
    transition: 0.5s ease;
}

.popUpMenu a {
    text-decoration: none;
    color: #fff;
    transition: 0.5s ease;
}

.popUpMenu a:hover {
    color: #d60000;
}

.keyCom {
    max-width: 350px;
    width: 100%;
}

.popUpMenu .PopUpLogo {
    width: 160px;
    position: absolute;
    bottom: 50px;
    left: 80px;
    cursor: pointer;
}

.menuTitle {
    color: #d60000;
}

.menuContainer {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20%;
    margin-bottom: 20px;
}
.menuContainer2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    font-size: 25px;
    gap: 5px;
}

.sub {
    font-size: 20px;
    display: inline-block;
    height: 44px;
}
.popUpMenu {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    padding: 0 50px;
}

.socials {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin-top: 20px;
}

.socials li a {
    font-size: 30px;
    width: 50px;
    height: 50px;
    color: #585D64;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials li a:hover {
    color: #fff;
    background-color: #d60000;
}

.videoMenu {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.videoMenu li{
    margin-left: 40px;
    font-size: 32px;
    min-height: 44px;
}

.videoMenu a.inline{
    height: 44px;
    display: inline-block;
    align-items: center;
}

.videoMenu .videoTitle {
    list-style: none;
    margin-left: 0;
    font-size: 42px;
}

/* Pop Up Menu open and closed states */
.openMenu {
    right: 0;
}

.popUpMenu .exit{
    position: absolute;
    top: 40px;
    right: 80px;
    cursor: pointer;
    transition: 0.5s ease;
    width: 46px;
    height: 46px;
}

.popUpMenu .exit svg{
    height: 34px;
    fill: #fff;
}



/** Timeline */

.scrollPrompt {
    position: relative;
    z-index: 50;
    width: 100vw;
    height: 100vh;
    background-color: rgb(138, 143, 151, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.scrollPrompt img {
    width: 60px;
    position: absolute;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
      top: 48%;
    }
    50% {
      top: 45%; /* Adjust for how far down you want it to go */
    }
  }


.timelineWrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    height: calc(100% - 100px);
    margin-bottom: 20px;
}

.timelineScroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: start;

}


.timelineContainer  {
    z-index: 1;
    flex: none;
    position: relative;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: 0.5s ease;
    color: rgba(255, 255, 255, 0.90);
    font-size: 40px;
}

#end.timelineContainer {
    width: 75vw;
}

#end.timelineContainer .timeline::before{
    display: none;
}

.contentContainer {
    opacity: 0;
    color: #000;
    max-width: 100%;
    /* width: 160px; */
    height: 80%;
    transition: 0.5s ease;
    overflow: hidden;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
}

.content {
    position: relative;
    opacity: 0;
    display: none;
    transition: 0.5s ease;
    width: 100%;
    text-align: left;
}

.content h3, .swiper-slide h3 {
    position: relative;
    max-width: 700px;
    width: calc(100% - 30px);
    line-height: 1;
    font-size: 34px;
    margin-bottom: 20px;
}

.content h3::before, .swiper-slide h3::before{
    position: absolute;
    content: "";
    left: 0;
    top: -17px;

    display: inline-block;
    width: 50px;
    height: 7px;
    background-color: #d60000;
}

.content p {
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0 15px;
    max-width: 800px;
    width: 100%;
}

.content img {
    width: 100%;
    
}

.content .exit {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50;
    color: #585D64;
    cursor: pointer;
}

.content .exit svg {
    height: 34px;
    fill: #585D64;
}

.contentContainer .cover {
    height: 100%;
    width: 100%;
    transition: 0.5s ease;
    background-color: #d60000; 
    position: relative;
    overflow: hidden;
    max-height: var(--cover-max-height); /* Use the dynamic value */
    transition: max-height 0.3s ease; /* Smooth transition */
}

.cover.border {
    border: 1px #8A8F97 solid;
}

.contentContainer .cover img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.contentContainer .cover .coverOffset {
    object-position: -220px;
}

.contentColum {
    display: flex;
    gap: 40px;
    width: 100%;
}

.contentColum .imageContainer {
    width: auto;
}
.contentColum p {
    max-width: 400px;
}

.contentContainer .cover h3 {
    position: absolute;
    bottom: -200px;
    left: 0;
    padding: 0 10px;
    z-index: 100;
    color: #fff;
    font-size: 20px;
    transition: 0.5s ease;
}
.contentContainer .cover h3::first-letter, .content h3::first-letter, .swiper-slide h3::first-letter {
    text-transform: capitalize
}

.timelineScroll .timelineContainer:nth-child(odd) .cover img{
    opacity: 0.5;
}

.cover.last {
    opacity: 1;
    background-color: #fff;
    padding: 0 10px;
}

.cover.last img {
    object-fit: contain;
    filter: none;
    opacity: 1 !important;
}

.inactive {
    transition: 0.5s ease;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d60000;
    width: 100%;
    max-height: 80px;
    height: 80px;
    transition: 0.5s ease;
}


.timeline h2 {
    opacity: 0;
    transition: all 0.5s ease;
    font-size: 50px;
}

.timeline h2.longDate {
    font-size: 34px;
}

.timeline::before {
    position: absolute;
    content: "";
    left: calc(50% -4px);
    top: -20px;

    display: inline-block;
    width: 8px;
    height: 20px;
    background-color: #d60000;
}

.multi {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 50px;
    opacity: 0.5;
    transition: 0.5s ease;
}

.multi img {
    width: 24px;
}

.blk {
    filter: grayscale(100%);
}

/* multiple Image handling */
.imageContainer {
    display: flex;
    gap: 10px; /* Add spacing between images */
    justify-content: start; /* Center images within the container */
    align-items: end; /* Align images vertically */
    width: 100%; /* Ensure it takes the full width of the content block */
}

.imageContainer.stack {
    flex-direction: column;
}

.imageContainer.stack img {
    max-height: 200px;
}

.imageContainer img {
    max-height: 350px; /* Set a consistent height */
    height: 100%;
    width: auto; /* Allow width to adjust proportionally */
    /* object-fit: cover; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for style */
}

.imageContainer img.single {
    height: 100%;
    max-height: 350px;
    max-width: 100%; /* Ensure it takes up the container width */
}

.poem {
    max-height: 400px !important;
}

/* Hover Styles */
.timelineContainer:hover {
    color: rgba(255, 255, 255, 1);
}

.timelineContainer:hover .cover { 

    max-height: calc(var(--cover-max-height) + 30px); /* Add 20px on hover */
    background-color: #000;
}
.timelineContainer:hover .cover.last {

    background-color: #fff;
}



.timelineContainer:hover .cover img { 
    opacity: 0.5;
}

.timelineContainer:hover .cover h3{
    bottom: 10px;
}
.timelineContainer:hover .timeline h2.inactive{
    scale: 1.2;
}

.timelineContainer:hover .timeline .multi{
    scale: 1.2;
    bottom: -5px;
    opacity: 1;
}


/** Swiper (Carousel) styles */
/* .swipeControls {
    width: 100%;
    height: 0px;
} */

.swiper {
    overflow: visible !important;

}

.swiper-wrapper {
    display: flex !important;
    align-items: end;
}

.swiper-slide {
    padding: 0 30px;
    /* overflow: hidden; */
}

.swiper-pagination {
    --swiper-pagination-color: #8A8F97;
    --swiper-pagination-left: 0px;
    --swiper-pagination-right: 0px;
    --swiper-pagination-bottom: -40px;
    --swiper-pagination-top: auto;
    --swiper-pagination-fraction-color: inherit;
    --swiper-pagination-bullet-size: 20px;
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 20px;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-vertical-gap: 6px;
    width: 100px !important;
}

.swiper-pagination.long {
    width: 200px !important;
}

.swiper-pagination-bullet {
    border: 2px #BFC6CA solid;
    
}
.swiper-pagination-bullet-active {
    border: none;
    
}

.swiperContent {
    max-width: 900px;
}

.swiperContent .content p {
    max-width: 600px;
}

.swiperContent .imageContainer img {
    height: auto;
    width: 100%;
}

.swiperContent .imageContainer.four img {
    height: auto;
    width: 25%;
}

.swiperContent .imageContainer.three img {
    height: auto;
    width: calc(100% / 3);
}

.swiperContent .imageContainer.two img {
    height: 350px;
    width: auto;
}

.swiperContent .imageContainer img.single {
    max-height: 350px;
    height: 100%;
    max-width: 100%;
    width: auto;
}

.swiperContent .imageContainer img.max2021 {
    max-height: 300px;
    height: 100%;
    max-width: 100%;
    width: auto;
}

.swiperContent .imageContainer.bottom {
    align-items: end;
}

.swiperContent .imageContainer img.smaller {
    width: auto;
    height: 100%;
    max-height: 350px;
}


/** Expanded State Styles */
.timelineContainer.expand {
    width: 100%;
    max-width: fit-content;
    align-items: start;
    
}

.timelineContainer.expand .contentContainer {
    max-height: 100%;
    width: 100%;
    align-items: start;
    justify-content: end;
    height: 100%;
}

.timelineContainer.expand .contentContainer .cover{
    display: none;
}


.timelineContainer.expand .content {
    display: block;
    opacity: 1;
}

.timelineContainer.expand .timeline {
    color: rgba(255, 255, 255, 1);
    font-size: 150px;
    justify-content: start;
}

.timelineContainer.expand .timeline h2{
    font-size: 124px;
}

.timelineContainer.expand .timeline::before, .timelineContainer.expand .multi {
    display: none;
}


/* Footer */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    padding: 0 10px;
    opacity: 0;
}

footer h5 {
    font-size: 10px;
}

.footerLeft, .footerRight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footerLeft img {
    height: 20px;
}

.footerRight ul {
    display: flex;
    list-style: none;
    gap: 5px;
}


.footerRight li {
    height: 44px;
    display: inline-block;
    display: flex;
    align-items: center;
}

.footerRight a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    height: 100%;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerRight a:hover {
    color: #d60000;
    text-decoration: underline;
}

/** Mobile General Styles */
.mobile {
    display: none;
}

.mobileTimeline {
    background-color: #d60000;
    height: 100%;
    width: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

.current {
    cursor: pointer;
}

.dateNavMob {
    color: #d60000;
    font-size: 24px;
    font-weight: 700;
    margin-left: 20px;
}

.dateNavMob::before {
    content: "·";
    font-size: 40px;
    position: absolute;
    top: 23px;
    left: 24px;
}

.mobileLogo {
    width: 100vw;
    background-color: #e3e3e3;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 6;
    padding: 20px 0;
    position: relative;
    top: -180px;
    transition: 1s ease;
}

.mobileLogo img {
    width: 100px;
}


/** Media Queries */

@media (max-width: 1560px) {
    footer {
        flex-direction: column;
        height: 40px;
    }
    .timelineWrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 1248px) {
    .modal {
        margin-left: 80px;
    }
}

@media (max-width: 1160px) {
    .modal {
        margin-left: 40px;
    }
}

@media (max-width: 1080px) {
    .modalContent {
        max-width: 800px;
    }
}

@media (max-width: 882px) {
    .modalContent {
        max-width: 686px;
    }
}


@media (max-height: 850px) {
    .imageContainer img, .imageContainer img.single, .swiperContent .imageContainer img.single {
        max-height: 280px;
    }
}


@media (max-height: 750px) {
    .imageContainer img, .imageContainer img.single, .swiperContent .imageContainer img.single {
        max-height: 250px;
    }

    .poem {
        max-height: 350px !important;
    }
    
    .content h3, .swiper-slide h3 {
        margin-bottom: 10px;
        font-size: 30px;
    }
}

@media (max-height: 665px) {
    .imageContainer img, .imageContainer img.single, .swiperContent .imageContainer img.single {
        max-height: 200px;
    }

    .poem {
        max-height: 300px !important;
    }
}

@media (max-width: 768px) {


    .mobileLogo {
        display: flex;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    main {
        height: 100%;
    }

    main, .timelineWrapper, .timelineScroll {
        position: relative;
    }

    .timelineWrapper {
        padding-top: 80px;
    }
    
    .modal {
        margin: 0;
        width: 100vw;
        height: 100vh;
    }

    .magicTimeline {
        top: 0;
        left: 20px;
    }
    
    .modalContent {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        width: 100%;
        /* height: 100%; */
        padding: 30px 20px;
        border: none;
    }
    
    .modalContent h1 {
        font-size: 40px;
    }
    
    .modalContent p {
        font-size: 18px;
    }
    
    .modalContent button {
        font-size: 16px;
        width: 200px;
    }

    nav {
        opacity: 1;
        background-color: #000;
        color: #fff;
        padding: 0 20px;
        justify-content: space-between;
        position: fixed;
        top: -80px;
        transition: 1s ease;
    }

    .hamburgerMenu {
        color: #fff;
    }
    
    .dateNav {
        width: 70%;
    }
    
    .leftNav {
        width: 30%;
    }

    .dateNav {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        background-color: #000;
        position: absolute;
        padding: 20px;
        top: -250px;
        left: 0;
        height: 250px;
        width: 100vw;
        transition: 0.5s ease;
    }

    .dateNav h2 {
        font-size: 20px;
        color: #d60000;
        margin-bottom: 10px;
        cursor: pointer;
    }
    
    
    .dateNav ul {
        display: flex;
        flex-direction: column;
        list-style: disc;
        margin-left: 22px;
        gap: 10px;
        font-size: 24px;
        font-weight: 700;
        text-decoration: none;
    }
    
    .dateNav a {
        font-size: 24px;
        font-weight: 700;
        text-decoration: none;
        color: #fff;
        cursor: pointer;
        transition: 0.5s ease;
    }

    .openDateMenu {
        top: 0;
    }

    .popUpMenu {
        width: 100vw;
        right: -100vw;
        position: fixed;
        font-size: 40px;
    }

    .popUpMenu .exit {
        right: 20px;
    }

    .videoMenu li {
        font-size: 30px;
    }

    .videoMenu .videoTitle {
        font-size: 40px;
    }

    .keyCom {
        max-width: 250px;
    }

    .popUpMenu .PopUpLogo {
        left: 30px;
    }

    .openMenu {
        right: 0;
    }

    .timelineScroll {
        flex-direction: column;
        align-items: center;
    }

    .timelineContainer {
        opacity: 0;
        flex-direction: column-reverse;
        width: 100%;
        justify-content: start;
        align-items: center;
        height: fit-content;
        
    }



    .contentContainer {
        opacity: 1;
        width: calc(70% - 60px);
        padding-bottom: 0;
        padding-top: 30px;
    }

    .contentContainer h3{
        font-size: 26px;
        width: 100%;
        padding-top: 10px;
    }

    .content h3::before, .swiper-slide h3::before {
        top: -10px;
    }

    .contentContainer p{
        font-size: 16px;
        width: 100%;
    }

    .contentContainer .cover {
        position: relative;
        width: 100%;         
        padding-top: 100%; 
        transition: 0.5s ease;
        background-color: #d60000; 
        position: relative;
        overflow: hidden;
    }

    .contentContainer .cover img{
        object-position: top;
        position: absolute;  
        top: 0;
        left: 0;
        width: 100%;         
        height: 100%;    
    }

    .content .exit {
        top: -32px;
    }

    .imageContainer {
        flex-direction: column;
        align-items: center;
    }

    .imageContainer img {
        height: 100%; 
        width: 100%; 
    }
    
    .imageContainer img.single {
        height: 100%;
        max-height: 400px;
        max-width: 100%; 
    }

    .timeline {
        justify-content: start;
        background-color: #fff;
        color: #d60000;
        margin: 0;
        padding: 0;
        margin-top: 40px;
    }

    .timeline h2 {
        opacity: 1;
        margin-left: 80px;
    }

    .timeline::before {
        top: calc(50% - 2px);
        left: 0;
        display: inline-block;
        width: 80px;
        height: 8px;
        transition: 0.5s ease;
    }

    .timelineContainer.expand {
        align-items: start;
        height: fit-content;
        padding: 0 60px;
        width: 100%;
    }

    .timelineContainer.expand .timeline {
        color: #d60000;
        font-size: 85px;
        justify-content: start;
        padding-left: 20px;
        margin-left: 0;
    }

    .timelineContainer.expand .timeline h2{
        font-size: 60px;
        margin: 0;
    }

    .timelineContainer.expand .timeline::before{
        display: block;
        left: -200px;
    }

    .timelineContainer.expand .contentContainer {
        justify-content: start;
        height: 100%;
    }

    .timelineContainer.expand .contentContainer.extraP {
        padding-top: 60px;
    }


    .multiContainer {
        display: flex;
        justify-content: start;
        align-items: center;
        width: 100%;
    }

    .multi {
        width: 15%;
    }

    .multi.mobile{
        position: relative;
        opacity: 1;
        display: flex;
        margin-left: 6px;
        padding-bottom: 4px;
        /* position: absolute;
        top: -2px;
        left: -40px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 50px;
        transition: 0.5s ease; */
    }


    .swiper-wrapper {
        align-items: start;
    }

    .swiperContent {
        margin-top: 30px;
    }

    .swiper-pagination {
        --swiper-pagination-left: 0px;
        --swiper-pagination-right: 0px;
        --swiper-pagination-bottom: auto;
        --swiper-pagination-top: -75px;

    }

    .swiperContent .imageContainer.four img {
        width: 100%;
    }

    .timelineContainer:hover .timeline h2.inactive{
        scale: 1;
    }
    
    .timelineContainer:hover .timeline .multi{
        scale: 1;
    }

    .contentColum {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        gap: 40px;
        width: 100%;
    }
    
    .contentColum .imageContainer {
        width: 100%;
    }
    .contentColum p {
        max-width: 100%;
    }

    footer {
        position: relative;
        z-index: 10;
        background-color: #fff;
        height: 100%;
        gap: 20px;
        padding: 10px;
    }

    .footerLeft, .footerRight {
        background-color: #fff;
        width: 100%;
        gap: 10px;
    }
    
    .footerRight {
        flex-direction: column;
        gap: 5px;
    }

    .swiperContent .content p {
        max-width: 100%;
    }

    .contentColum.reverse {
        flex-direction: column-reverse;
    }
    
    /* .swiperContent .imageContainer img {
        height: auto;
        width: 100%;
    } */
    .swiperContent .imageContainer img.single {
        max-height: auto;
        height: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    /* .swiperContent .imageContainer.bottom {
        align-items: end;
    } */
    
    .swiperContent .imageContainer img.smaller {
        width: 100%;
        height: 100%;
        max-height: auto;
    }

    .wAuto {
        width: auto !important;
    }

    .w100 {
        width: 100% !important;
        height: auto !important;
    }


}




@media (max-width: 500px) {
    .contentContainer {
        margin: 0 10px;
    }

    .timelineContainer.expand {
        padding: 0 20px 0 60px;
    }

    .timelineContainer.expand .timeline h2.longDate {
        font-size: 50px;
    }

    /* .multi {
        left: -10px;
    } */

}

/* @media (max-width: 430px) {

    .multi {
        left: 0px;
    }

}
@media (max-width: 410px) {

    .multi {
        left: 10px;
    }

}

@media (max-width: 385px) {

    .multi {
        left: 20px;
    }

} */










