.year-container {
  margin: 80px 0;
  display: flex;
  align-items: flex-start;
  gap: 78px;
}

.year-list-wrapper {
  width: auto;
  min-width: 180px;
  flex-shrink: 0;
  margin-left: 15px;
  position: sticky;
  top: 220px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: visible;
}

.year-list-wrapper ul {
  padding: 0 0 0 1.2em;
  margin: 0;
}

.year-list-wrapper li+li {
  margin-top: 8px;
}

.annual-archive-wrapper {
  position: relative;
  width: 100%;
  max-width: 200px;
  overflow: visible;
  margin-bottom: 30px;
}

.annual-archive-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #023f6a;
  background: #fff;
  color: #023f6a;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
  transition: background 0.2s ease;
  outline: none;
  box-shadow: none;
}

.annual-archive-trigger:hover {
  background: #f8fafc;
}

.annual-archive-wrapper.open .annual-archive-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.annual-archive-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.annual-archive-wrapper.open .annual-archive-arrow {
  transform: rotate(180deg);
}

.annual-archive-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0;
  background: #fff;
  border: 1px solid #023f6a;
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 36, 61, 0.12);
  z-index: 20;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 280px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #b1c8db transparent;
}

.annual-archive-options::-webkit-scrollbar {
  width: 6px;
}

.annual-archive-options::-webkit-scrollbar-thumb {
  background: #b1c8db;
  border-radius: 10px;
}

.annual-archive-label {
  margin: 0;
  padding: 10px 16px 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #9ca3af;
  cursor: default;
}

.annual-archive-option {
  margin: 0;
  padding: 10px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.annual-day-video{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #03489F;
  padding: 10px 24px;
  border-radius: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: #fff;
}

.annual-day-video:hover {
  background-color: #023a80;
}

.annual-day-video p{
  font-size: 16px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  text-decoration: none;
}

.annual-day-video img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.annual-archive-option:hover,
.annual-archive-option.active {
  background: #f3f4f6;
  color: #023f6a;
}

.annual-archive-option:last-child {
  padding-bottom: 12px;
}

.year-list-wrapper li::marker {
  font-size: 28px;
}

.year-data-wrapper {
  flex: 1;
  min-width: 0;
  padding: 0px 60px;
  border-radius: 20px;
  background-color: unset;
}

.year-content-wrapper {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.year-heading {
  color: rgba(0, 36, 61, 0.3);
  font-family: "Playfair Display";
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  cursor: pointer;
  transition: 0.4s all ease;
}

.active-year {
  color: #03489f;
  font-family: "Playfair Display";
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  /* 57.6px */
}

.active {
  display: flex;
}

.hideBox {
  display: none;
}

.annual-year {
  color: #fca312;
  display: block;
  margin-bottom: 12px;
}

.annual-title {
  color: #00243d;
  padding: 0;
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 500;
}

.annual-description {
  font-size: 14px;
  line-height: 160%;
}

.annual-desription-para {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.annual-description.m-bottom {
  margin-bottom: 10px;
}

.annual-description.m-top {
  margin-top: 20px;
}

.year-data-subwrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.year-content-text {
  width: 42%;
}

.year-content-image {
  width: 50%;
  height: 335px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 0;
  background-color: #FEE6D9;
}

.year-content-subimage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.annual-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}

.annual-swiper-wrapper {
  margin-top: 64px;
  height: 320px;
}

.annual-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.annual-swiper-arrows {
  display: flex;
  align-items: center;
  gap: 40px;
}

.plain-arrow {
  cursor: pointer;
}

.left-plain-arrow {
  transform: rotate(180deg);
}

.annual-title-wrapper h3 {
  font-size: 24px;
  color: #00243d;
  font-weight: 500;
}

.annual-swiper-img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  height: 204px;
  transition: 0.4s all ease;
}

.annual-gallery-swiper {
  cursor: grab;
}

.annual-swiper-img-wrapper .annual-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.annual-swiper-wrapper .swiper-slide-next .annual-swiper-img-wrapper {
  height: 258px;
}

.event-main-dropdown {
  display: none;
}

#footer {
  position: relative;
  z-index: 25;
}

.year-list-wrapper .annual-archive-options {
  z-index: 20;
}

.annual-workshops {
  margin-top: 30px;
}

.annual-workshops ul {
  list-style-position: inside;
}

.annual-workshops ul li {
  font-size: 14px;
  line-height: 160%;
}

.logocontainer ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 !important;
}

.logocontainer ul li {
  flex: 0 0 auto;
}

.logocontainer ul li a,
.logocontainer ul li img {
  display: block;
}

.logocontainer ul li img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .logocontainer ul {
    gap: 24px 20px;
  }

  .logocontainer ul li img {
    height: 48px;
  }
}

@media screen and (max-width: 480px) {
  .logocontainer ul {
    gap: 28px 16px;
  }

  .logocontainer ul li {
    flex: 0 0 calc(33.333% - 11px);
    display: flex;
    justify-content: center;
  }

  .logocontainer ul li img {
    height: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .year-list-wrapper .annual-archive-wrapper .annual-archive-options {
    top: 100%;
    bottom: auto;
    border-radius: 0 0 10px 10px;
    border-top: none;
    border-bottom: 1px solid #023f6a;
    box-shadow: 0 8px 24px rgba(0, 36, 61, 0.12);
  }

  .year-list-wrapper .annual-archive-wrapper.open .annual-archive-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
  }

  .year-list-wrapper .annual-archive-wrapper.open .annual-archive-arrow {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 1024px) {
  .year-container {
    gap: 0;
  }

  .year-data-wrapper {
    padding: 40px;
  }

  .year-data-subwrapper {
    gap: 40px;
  }

  .annual-swiper-wrapper {
    height: 280px;
  }

  .annual-swiper-img-wrapper {
    height: 180px;
  }

  .annual-swiper-wrapper .swiper-slide-next .annual-swiper-img-wrapper {
    height: 220px;
  }

  .active-year {
    font-size: 44px;
  }

  .annual-day-video {
    padding: 10px 20px;
  }

  .annual-day-video p {
    font-size: 15px;
  }
}

@media screen and (max-width: 820px) {
  .year-container {
    flex-direction: column;
  }

  .year-data-subwrapper {
    flex-direction: column-reverse;
    row-gap: 30px;
  }

  .year-list-wrapper {
    display: none;
  }

  .annual-archive-wrapper {
    display: none;
  }

  .year-content-text,
  .year-content-image,
  .year-data-wrapper {
    width: 100%;
  }

  .annual-swiper-wrapper {
    height: 300px;
  }

  .year-data-wrapper {
    padding: 30px;
  }

  /* Dropdown */
  .event-main-dropdown {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    position: sticky;
    top: 155px;
    z-index: 30;
    background-color: #ffffff;
    padding: 10px 0;
  }

  .event-main-dropdown .mobile-select-button:focus {
    outline: 1px solid #000000;
  }

  .mobile-select-button {
    width: 100%;
    font-size: 16px;
    background-color: transparent;
    color: #023f6a;
    border: 1px solid #023f6a;
    padding: 14px 20px;
    border-radius: 14px;
  }

  .mobile-select-options {
    width: 95%;
    font-weight: 500;
  }

  /* Dropdown Ends */

  .annual-workshops ul {
    list-style-position: unset;
    padding-left: 15px;
  }
}

@media screen and (max-width: 480px) {
  
  .year-container {
    margin: 60px 0;
  }

  .year-data-wrapper {
    background-color: transparent;
    padding: 0;
  }

  .annual-year {
    display: none;
  }

  .annual-title {
    font-size: 24px;
  }

  .year-content-image {
    height: 224px;
    border-radius: 16px;
  }

  .annual-swiper-wrapper {
    height: auto;
    margin-top: 60px;
  }

  .annual-title-wrapper h3 {
    font-size: 20px;
  }

  .annual-swiper-img-wrapper,
  .annual-swiper-wrapper .swiper-slide-next .annual-swiper-img-wrapper {
    height: 224px;
  }

  .annual-day-video {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .annual-day-video p {
    font-size: 14px;
    white-space: normal;
  }

  /* Dropdown */
  .mobile-select-options {
    width: 90%;
  }
}