.section-container {
  width: 100%;
  padding: 0 10rem;
  background-color: #f0f0f0;
}

@media print,
screen and (max-width: 768px) {
  .section-container {
    padding: 0;
  }
}

.section-container section {
  background-color: white;
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media print,
screen and (max-width: 768px) {
  .section-container section {
    padding: 7rem 2rem;
  }
}

.section-container .title-section {
  background-color: transparent;
  margin-bottom: 0;
  padding: 5rem 0;
}

.section-container .title-section .title-container {
  padding: 5rem 1rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.section-container .title-section .title-container::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #ff8000;
}

.section-container .title-section .title-container h2 {
  font-weight: bolder;
  letter-spacing: 2px;
}

.section-container .title-section .title-container h2.first {
  font-size: 4rem;
  color: #999;
  font-family: "Yumin-db";
  font-weight: 100;
}

.section-container .title-section .title-container h2.second {
  font-size: 2.8rem;
  color: #004190;
  font-family: "Yu-b";
  text-align: center;
}

@media print, screen and (max-width: 425px) {
  .section-container .title-section .title-container h2.second {
    letter-spacing: 1.2px;
  }
}

.section-container .title-section .title-container h2.second span.styled {
  display: inline-block;
  background-color: #faee00;
  padding: 0;
}

.section-container .invisible-section {
  display: none;
}

.speech-label {
  width: 100%;
  display: inline-block;
  background-color: #003f91;
  color: white;
  padding: 0.5rem 3rem;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  position: relative;
}

.speech-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 4rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #003f91;
}

.yellow-speech-label {
  width: 100%;
  display: inline-block;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  position: relative;
  background-color: #f39800;
}

.yellow-speech-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 4rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #f39800;
}

.green-speech-label {
  width: 100%;
  display: inline-block;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  position: relative;
  background-color: #00a29a;
}

.green-speech-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 4rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #00a29a;
}

.speech-label-container {
  position: absolute;
  height: fit-content;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-container .section-1 {
  width: 100%;
}

.section-container .section-1 .title-container {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 2rem 4rem;
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  font-weight: bold;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-1 .title-container {
    padding: 2rem 1rem;
  }
}

.section-container .section-1 .title-container .main-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .title-container .main-title {
    flex-direction: column;
  }
}

.section-container .section-1 .title-container .main-title .title-1 {
  width: 40%;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .title-container .main-title .title-1 {
    width: 100%;
  }
}

.section-container .section-1 .title-container .main-title .title-2 {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: last baseline;
  gap: 1rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .title-container .main-title .title-2 {
    width: 100%;
    justify-content: center;
  }
}

.section-container .section-1 .title-container .content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .title-container .content {
    flex-direction: column;
  }
}

.section-container .section-1 .title-container .content .content-1 {
  width: 40%;
}

.section-container .section-1 .title-container .content .content-1 p {
  padding-top: 3rem;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .title-container .content .content-1 {
    width: 100%;
  }

  .section-container .section-1 .title-container .content .content-1 p {
    padding-top: 0;
    text-align: center;
  }
}

.section-container .section-1 .title-container .content .content-2-wrapper {
  width: 60%;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .title-container .content .content-2-wrapper {
    width: 100%;
    justify-content: center;
  }
}

.section-container .section-1 .title-container .content .content-2-wrapper .content-2 {
  width: fit-content;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.section-container .section-1 .title-container .content .content-2-wrapper .content-2 .item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.section-container .section-1 .title-container .content .content-2-wrapper .content-2 .item .label-box {
  display: flex;
  width: fit-content;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.section-container .section-1 .title-container .content .content-2-wrapper .content-2 .item .label-box p.main-text {
  width: 10rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.section-container .section-1 .image-group-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.section-container .section-1 .image-group-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: contain;
}

.section-container .section-1 .items-group-container {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
  font-size: 1.6rem;
}

@media print, screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}

.section-container .section-1 .items-group-container .group {
  width: 100%;
  position: relative;
  background-color: white;
}

.section-container .section-1 .items-group-container .schedule-group {
  padding: 5rem 3rem;
}

.section-container .section-1 .items-group-container .schedule-group .schedule-list {
  list-style: none;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: inherit;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container .schedule-group .schedule-list {
    padding: 0;
  }
}

.section-container .section-1 .items-group-container .schedule-group .schedule-list li {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.section-container .section-1 .items-group-container .schedule-group .schedule-list .schedule-number {
  display: flex;
  width: 2.2rem;
  height: 2.2rem;
  justify-content: center;
  align-items: center;
  border: 1px solid #1A1A1A;
  padding: 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.section-container .section-1 .items-group-container .schedule-group .schedule-title-container {
  padding: 0 3rem;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container .schedule-group .schedule-title-container {
    padding: 0;
  }
}

.section-container .section-1 .items-group-container .schedule-group .schedule-title-container .schedule-title {
  text-align: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.section-container .section-1 .items-group-container .song-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 2rem;
}

.section-container .section-1 .items-group-container .song-group .song {
  padding: 5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-container .section-1 .items-group-container .song-group .song .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.section-container .section-1 .items-group-container .song-group .song .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: inherit;
  line-height: 2;
}

.section-container .section-1 .items-group-container .song-group .song .song-label-container {
  padding: 0 3rem;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container .song-group .song .song-label-container {
    padding: 0;
  }
}

.section-container .section-1 .items-group-container .song-group .song .song-label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}

.section-container .section-1 .items-group-container .birthday-group {
  padding: 5rem 3rem;
}

.section-container .section-1 .items-group-container .birthday-group table {
  width: 100%;
  font-size: inherit;
}

.section-container .section-1 .items-group-container .birthday-group table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: center;
}

.section-container .section-1 .items-group-container .birthday-group table td:nth-child(2) {
  background-color: #e6f2fc;
  text-align: center;
}

.section-container .section-1 .items-group-container .birthday-group p.no-birth-user {
  font-size: 1.6rem;
  text-align: center;
}

.section-container .section-1 .items-group-container .birthday-group .birthday-label-container {
  padding: 0 3rem;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container .birthday-group .birthday-label-container {
    padding: 0;
  }
}

.section-container .section-1 .items-group-container .birthday-group .birthday-label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}

.section-container .section-1 .items-group-container .other-group {
  padding: 5rem 3rem;
  font-size: inherit;
}

.section-container .section-1 .items-group-container .other-group .image-container {
  width: 100%;
  margin: auto;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container .other-group .image-container {
    width: 100%;
    max-width: 300px;
    /* height: 30rem; */
  }
}

.section-container .section-1 .items-group-container .other-group .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  /* object-fit: cover; */
  /* object-position: center; */
}

.section-container .section-1 .items-group-container .other-group .content {
  padding: 3rem 0;
}

.section-container .section-1 .items-group-container .other-group a.link {
  display: flex;
  text-decoration: none;
  color: #f39800;
  font-weight: bold;
  float: right;
  gap: 5px;
  align-items: center;
  letter-spacing: normal;
}

.section-container .section-1 .items-group-container .other-group a:hover {
  cursor: pointer;
}

.section-container .section-1 .items-group-container .other-group .image-label-container {
  padding: 0 3rem;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .section-container .section-1 .items-group-container .other-group .image-label-container {
    padding: 0;
  }
}

.section-container .section-1 .items-group-container .other-group .image-label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

/* -------- Section 2 ---------- */
.section-container .section-2 {
  width: 100%;
}

.section-container .section-2 .section-title {
  width: 100%;
}

.section-container .section-2 .section-title p {
  width: 100%;
  background-color: #e0e0e0;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.section-container .section-2 .items-group {
  position: relative;
  background-color: white;
  width: 100%;
  padding: 5rem 0 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-2 .items-group .image-container {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: auto;
}

.section-container .section-2 .items-group .image-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  border-radius: 2rem;
  object-position: center;
}

.section-container .section-2 .items-group .content-container {
  width: 100%;
}

.section-container .section-2 .items-group .content-container p {
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-container .section-2 .items-group .content-container p:last-child {
  margin-bottom: 0;
}

.section-container .section-2 .items-group .label-container {
  width: 100%;
  max-width: 100%;
}

.section-container .section-2 .items-group .label-container .speech-label {
  width: fit-content;
  min-width: 40rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-2 .items-group .label-container .speech-label {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.section-container .section-2 .items-group .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}

/* ------------- Section 3 ------------- */

.section-container .section-3 {
  width: 100%;
}

.section-container .section-3 .items-group-container {
  position: relative;
  background-color: white;
  width: 100%;
  padding-top: 5rem;
}

.section-container .section-3 .items-group-container .items-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5rem;
}

.section-container .section-3 .items-group-container .items-group:first-child {
  margin-top: 0;
}

.section-container .section-3 .items-group-container .items-group .image-container {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: auto;
}

.section-container .section-3 .items-group-container .items-group .image-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  border-radius: 2rem;
  object-position: center;
}

.section-container .section-3 .items-group-container .items-group .user-info {
  width: 100%;
}

.section-container .section-3 .items-group-container .items-group .user-info .name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-container .section-3 .items-group-container .items-group .user-info ul.user-detail {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-3 .items-group-container .items-group .user-info ul li.item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
}

.section-container .section-3 .items-group-container .items-group .user-info ul li.item .title {
  width: 10rem;
  text-align: center;
  padding: 0.5rem;
  background-color: #e0e0e0;
  border-radius: 2px;
}

.section-container .section-3 .items-group-container .items-group .user-info ul li.item .content {
  text-align: left;
}

.section-container .section-3 .items-group-container .items-group .user-info ul li:last-child {
  flex-direction: column;
  align-items: start;
}

.section-container .section-3 .items-group-container .items-group .user-info ul li:last-child .content {
  font-weight: 400;
}

.section-container .section-3 .items-group-container .label-container {
  width: 100%;
  max-width: 100%;
}

.section-container .section-3 .items-group-container .label-container .speech-label {
  width: fit-content;
  min-width: 40rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-3 .items-group-container .label-container .speech-label {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.section-container .section-3 .items-group-container .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

/* -------- Section 4 ------------ */

.section-container .section-4 {
  width: 100%;
}

.section-container .section-4 .items-group {
  width: 100%;
  position: relative;
  background-color: white;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-4 .items-group .image-container {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: auto;
}

.section-container .section-4 .items-group .image-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  border-radius: 2rem;
  object-position: center;
}

.section-container .section-4 .items-group .content-container {
  width: 100%;
  gap: 3rem;
}

.section-container .section-4 .items-group .content-container p {
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 1.6;
}

.section-container .section-4 .items-group .label-container {
  width: 100%;
  max-width: 100%;
}

.section-container .section-4 .items-group .label-container .speech-label {
  width: fit-content;
  min-width: 40rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-4 .items-group .label-container .speech-label {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.section-container .section-4 .items-group .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}

/* -------- Section 5 ---------- */

.section-container .section-5 {
  width: 100%;
}

.section-container .section-5 .items-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  max-width: 100%;
  gap: 5rem;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-5 .items-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.section-container .section-5 .items-container .item-detail-type {
  background-color: white;
  padding: 7rem 3rem 3rem 3rem;
  width: 100%;
  position: relative;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-5 .items-container .item-detail-type-1 .content-container {
  width: 100%;
  margin-bottom: 2rem;
}

.section-container .section-5 .items-container .item-detail-type-1 .content-container p {
  font-size: 1.6rem;
  text-align: center;
}

.section-container .section-5 .items-container .item-detail-type-1 a.more-detail-btn {
  display: block;
  width: 32rem;
  max-width: 100%;
  padding: 2rem 0;
  border-radius: 10rem;
  letter-spacing: 1.6px;
  border: none;
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  margin: auto;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-5 .items-container .item-detail-type-1 a.more-detail-btn {
    width: 100%;
    max-width: 300px;
  }
}

.section-container .section-5 .items-container .item-detail-type-1 .more-detail-btn:hover {
  cursor: pointer;
}

.section-container .section-5 .items-container .item-detail-type .label-container {
  width: 100%;
  max-width: 100%;
  padding: 0 3rem;
}

.section-container .section-5 .items-container .item-detail-type .label-container .speech-label {
  width: 100%;
}

.section-container .section-5 .items-container .item-detail-type .label-container .speech-label::after {
  border-top: 6px solid #003f91;
}

.section-container .section-5 .items-container .item-detail-type .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .content .summary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .content .summary .content-label {
  white-space: nowrap;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .content .summary .content-dots {
  flex: 1;
  margin: 0 1rem;
  border: 1px dotted #ccc;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .content .summary .content-value {
  white-space: nowrap;
  font-weight: bold;
  letter-spacing: normal;
  font-size: 1.8rem;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .content .summary-total {
  font-weight: bold;
  color: #c30f23;
  font-size: 2rem;
  text-align: right;
  letter-spacing: normal;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .final-content {
  color: #c30f23;
}

.section-container .section-5 .items-container .item-detail-type-2 .content-container .final-content .summary-total {
  font-size: 2.4rem;
}

/* -------- Section 6 ------------ */

.section-container .section-6 {
  width: 100%;
}

.section-container .section-6 .items-group {
  width: 100%;
  position: relative;
  background-color: white;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-6 .items-group .image-container {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: auto;
}

.section-container .section-6 .items-group .image-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  border-radius: 2rem;
  object-position: center;
}

.section-container .section-6 .items-group ul.content-container {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bg-a48b78 { background-color: #a48b78; }
.bg-00a29a { background-color: #00a29a; }
.bg-f8b62d { background-color: #f8b62d; }
.bg-f39800 { background-color: #f39800; }
.bg-c30f23 { background-color: #c30f23; }

.section-container .section-6 .items-group .content-container li.content-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 1rem 1.5rem;
  font-size: 1.6rem;
}

@media print, screen and (max-width: 640px) {
  .section-container .section-6 .items-group .content-container li.content-item {
    flex-direction: column;
  }
}

.section-container .section-6 .items-group .content-container li.content-item .content-title {
  width: 20rem;
  height: auto;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: white;
  text-align: center;
}

.section-container .section-6 .items-group .content-container li.content-item .content-detail {
  flex: 1;
  text-align: left;
  color: #000;
  line-break: loose;
  padding-top: 0.5rem;
}

.section-container .section-6 .items-group .label-container {
  width: 100%;
  max-width: 100%;
}

.section-container .section-6 .items-group .label-container .speech-label {
  width: fit-content;
  min-width: 40rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-6 .items-group .label-container .speech-label {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.section-container .section-6 .items-group .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}

/* ------------ Section 7 ---------------- */

.section-container .section-7 {
  width: 100%;
}

.section-container .section-7 .items-group {
  width: 100%;
  position: relative;
  background-color: white;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-7 .items-group .gallery-wrapper {
  width: 100%;
  position: relative;
  max-width: 100%;
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-container {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  height: 35rem;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-container .gallery-item {
  width: 16rem;
  height: 16rem;
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-container .gallery-item:hover {
  cursor: pointer;
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-buttons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: -8rem;
  right: 2rem;
  z-index: 100;
}

@media screen and (max-width: 640px) {
  .section-container .section-7 .items-group .gallery-wrapper .gallery-buttons {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    margin-top: 3rem;
  }
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-buttons button {
  display: flex;
  border: 1px solid #999;
  background-color: white;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 1rem;
  color: #999;
}

.section-container .section-7 .items-group .gallery-wrapper .gallery-buttons button {
  cursor: pointer;
}

.section-container .section-7 .items-group .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.section-container .section-7 .items-group .modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: white;
  padding: 3rem;
  max-width: 100%;
  width: 95%;
  text-align: center;
  border-radius: 1rem;
  height: fit-content;
}

.section-container .section-7 .items-group .modal .modal-content .close-btn {
  display: block;
  text-align: right;
  font-size: 2rem;
  font-weight: bold;
}

.section-container .section-7 .items-group .modal .modal-content .close-btn:hover {
  cursor: pointer;
}

.section-container .section-7 .items-group .modal .modal-content .image-container {
  width: 100%;
  height: auto; /* Keeps it within screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent; /* Optional, to fill empty space */
}

.section-container .section-7 .items-group .modal .modal-content .image-container img {
  max-width: 100%;
  max-height: 60vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 1rem;
  object-fit: contain; /* Keeps the whole image visible */
}

.section-container .section-7 .items-group .modal .modal-content .caption {
  font-size: 1.6rem;
  text-align: left;
}

.section-container .section-7 .items-group .modal .modal-content .btn-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  height: fit-content;
}

.section-container .section-7 .items-group .modal .modal-content .btn-group .nav-btn {
  display: flex;
  border: 1px solid #999;
  background-color: white;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 1rem;
  color: #999;
}

.section-container .section-7 .items-group .modal .modal-content .btn-group .nav-btn:hover {
  cursor: pointer;
}

.section-container .section-7 .items-group .label-container {
  width: 100%;
  max-width: 100%;
}

.section-container .section-7 .items-group .label-container .speech-label {
  width: fit-content;
  min-width: 40rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-7 .items-group .label-container .speech-label {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.section-container .section-7 .items-group .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}

/* ----------- Section 8 ------------ */

.section-container .section-8 {
  width: 100%;
}

.section-container .section-8 .items-group {
  width: 100%;
  position: relative;
  background-color: white;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-container .section-8 .items-group .content-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-8 .items-group .content-container {
    flex-direction: column;
    gap: 2rem;
  }
}

.section-container .section-8 .items-group .content-container .content-day {
  width: 40%;
  height: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: last baseline;
  gap: 2rem;
  padding: 0 2rem;
  font-weight: bold;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-8 .items-group .content-container .content-day {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
}

.section-container .section-8 .items-group .content-container .content-detail-container {
  width: 60%;
  display: flex;
  justify-content: flex-start;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-8 .items-group .content-container .content-detail-container {
    width: 100%;
    justify-content: center;
  }
}

.section-container .section-8 .items-group .content-container .content-detail-container .content-detail {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.section-container .section-8 .items-group .content-container .content-detail-container .content-detail .detail-item {
  width: fit-content;
  display: flex;
  gap: 1rem;
  font-size: 1.6rem;
}

.section-container .section-8 .items-group .content-container .content-detail-container .content-detail .detail-item .item-title {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0;
}

.section-container .section-8 .items-group .content-container .content-detail-container .content-detail .detail-item .item-title p.main-text {
  width: 10rem;
  display: flex;
  justify-content: space-between;
}

.section-container .section-8 .items-group .content-container .content-detail-container .content-detail .detail-item .item-content {
  flex: 1;
  text-align: left;
}

.section-container .section-8 .items-group .label-container {
  width: 100%;
  max-width: 100%;
}

.section-container .section-8 .items-group .label-container .speech-label {
  width: fit-content;
  min-width: 40rem;
}

@media screen and (max-width: 640px) {
  .section-container .section-8 .items-group .label-container .speech-label {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
}

.section-container .section-8 .items-group .label-container .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}

/* ----------- Section 9 --------- */

.section-container .section-9 {
  width: 100%;
  background-color: transparent;
  margin-bottom: 0;
}

.section-container .section-9 .instagram-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}

.section-container .section-9 .btn {
  width: 32rem;
  border: none;
  border-radius: 5rem;
  font-size: 1.6rem;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

@media print,
screen and (max-width: 640px) {
  .section-container .section-9 .btn {
    width: 100%;
    max-width: 400px;
  }
}

.section-container .section-9 .btn:hover {
  cursor: pointer;
}

.section-container .section-9 .instagram-info a.instagram-btn {
  background-color: #e4007f;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.section-container .section-9 .instagram-info a.instagram-btn .icon {
  font-size: 2.6rem;
}

.section-container .section-9 .btn-group {
  margin-top: 7rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
