@charset "UTF-8";
/*---------- page -----------*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font: 400 15px/25px "Libre Franklin";
}
html p, body p {
  margin: 0;
}
html h1, body h1 {
  margin: 0;
}

#page {
  width: 100%;
}

/*------------ content -------------*/
.content {
  display: flex;
}

.content_left {
  flex: 75%;
  position: relative;
}
.content_left .img_left .listing {
  padding: 35px 20px;
  border: 1px solid #fff;
  border-radius: 7px;
  box-sizing: border-box;
  background-color: #fff;
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.content_left .img_left .listing p {
  text-align: center;
  margin-bottom: 20px;
}
.content_left .img_left .listing .listing_sponsoring {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 0;
}
.content_left .img_left .listing .listing_sponsoring .sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5%;
  border-right: 1px solid #d4d4cf;
  padding: 0 25px;
  min-height: clamp(50px, 8vw, 80px);
  box-sizing: border-box;
}
.content_left .img_left .listing .listing_sponsoring .sponsor:last-child {
  border: none;
}
.content_left .img_left .listing .listing_sponsoring img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: clamp(80px, 14vw, 140px);
  max-height: clamp(50px, 8vw, 80px);
}
.content_left .img_left img {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.content_left .caption {
  display: none;
}

.img_left .logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  position: absolute;
  z-index: 10;
}
.img_left .logo nav {
  display: flex;
  position: absolute;
  right: clamp(20px, 3vw, 30px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.img_left .logo nav a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: clamp(2px, 0.5vw, 5px) clamp(7px, 1vw, 10px);
  transition: all 0.3s ease-out;
  width: auto;
  font-size: clamp(11px, 1.2vw, 12px);
}
.img_left .logo nav a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-out;
  border-radius: 3px;
}
.img_left .logo nav a.current {
  background-color: rgba(0, 0, 0, 0.2);
}

.content_left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(44, 44, 44, 0.6), transparent);
}

.content_right {
  width: 420px;
  height: 100dvh;
  box-sizing: border-box;
  padding: 20px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.content_right > * {
  flex: 0 0 auto;
}
.content_right p {
  margin-top: 15px;
}
.content_right p span {
  font-size: 16px;
  font-weight: 600;
}
.content_right h1 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 15px;
}
.content_right h1 span {
  font-weight: 300;
}
.content_right .introduction {
  font-size: 18px;
  text-wrap: balance;
}
.content_right .announce p {
  color: rgb(133, 132, 132);
}

/*--------- accordion -----------*/
.accordion {
  margin-top: 20px;
  overflow: hidden;
}
.accordion .accordion_item {
  background-color: #e1e1dc;
  transition: all 0.3s ease-out;
  margin-top: 5px;
  padding: 0 17px;
  border-radius: 3px;
}
.accordion .accordion_item:hover {
  background-color: #d4d4cf;
  transition: all 0.3s ease-out;
}
.accordion .accordion_item:last-child {
  border-bottom: none;
}
.accordion .accordion_item .accordion_header {
  display: flex;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.accordion .accordion_item .accordion_header::after {
  content: "+";
  font-weight: 400;
  font-size: 23px;
  transition: transform 0.3s;
}
.accordion .accordion_item .accordion_content {
  opacity: 0;
  max-height: 0;
  padding: 0;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.accordion .accordion_item .accordion_content p {
  margin-top: 15px;
}
.accordion .accordion_item.active .accordion_header::after {
  content: "−";
  font-weight: 400;
  font-size: 23px;
}
.accordion .accordion_item.active .accordion_content {
  opacity: 1;
  padding: 10px 0;
}

/*----------- button ------------*/
.button_sign {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0077AE;
  border-radius: 3px;
  background-color: #0077AE;
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-top: auto;
}
.button_sign a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 25px;
}
.button_sign a:hover {
  background-color: #006897;
  transition: all 0.3s ease-out;
}

.content_right .button_sign {
  justify-content: flex-end;
}

.button_pdf {
  margin-top: 0;
  background-color: #e1e1dc;
  transition: all 0.3s ease-out;
  margin-top: 5px;
  border-radius: 3px;
  display: flex;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  margin-bottom: 10px;
}
.button_pdf a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  text-decoration: none;
  width: 100%;
  padding: 14px 17px;
  position: relative;
}
.button_pdf a:hover {
  background-color: #d4d4cf;
  transition: all 0.3s ease-out;
}
.button_pdf a::after {
  content: "↓";
  margin-left: 10px;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s;
}

/*----------- responsive -------------*/
@media (max-width: 1800px) {
  .content_left .img_left .listing .listing_sponsoring .sponsor {
    width: 25%;
  }
  .content_left .img_left .listing .listing_sponsoring .sponsor:nth-child(4n), .content_left .img_left .listing .listing_sponsoring .sponsor:last-child {
    border: none;
  }
  .content_left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(44, 44, 44, 0.6), transparent);
  }
  .content_left .img_left .listing {
    padding: 20px 0;
  }
}
@media (max-width: 1000px) {
  .content {
    display: flex;
    flex-direction: column;
  }
  .content .content_right {
    width: auto;
  }
  .content_left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.6), transparent);
  }
  .img_left .logo {
    margin-top: clamp(10px, 2vw, 20px);
  }
  .logo svg {
    width: clamp(150px, 20vw, 200px);
  }
  p {
    font-size: clamp(13px, 1.5vw, 15px);
  }
  h1 {
    margin-top: clamp(0px, 1.6vw, 16px);
  }
  .content_right {
    height: auto;
  }
  .content_right .button_sign {
    margin-top: 20px;
  }
  .content_left .img_left .caption {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .content_left .img_left .caption p {
    display: flex;
    justify-content: center;
    color: #fff;
    margin-bottom: 10px;
  }
  .content_left .img_left .caption p::after {
    content: "↓";
    margin-left: 10px;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s;
  }
  .img_left .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .img_left .logo svg {
    width: clamp(150px, 10vw, 200px);
    height: auto;
    transition: width 0.5s ease;
  }
}
@media (max-height: 1000px) and (max-width: 1800px) {
  .content_left .img_left .listing {
    padding: 20px 20px;
    border: 1px solid #fff;
    border-radius: 7px;
    box-sizing: border-box;
    background-color: #fff;
    position: absolute;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  .content_left .img_left .listing p {
    text-align: center;
    margin-bottom: 20px;
  }
  .content_left .img_left .listing .listing_sponsoring {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .content_left .img_left .listing .listing_sponsoring .sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.5%;
    border-right: 1px solid #d4d4cf;
    padding: 0 10px;
    min-height: clamp(50px, 8vw, 80px);
    box-sizing: border-box;
  }
  .content_left .img_left .listing .listing_sponsoring .sponsor:nth-child(4n) {
    border-right: 1px solid #d4d4cf;
  }
  .content_left .img_left .listing .listing_sponsoring .sponsor:last-child {
    border: none;
  }
}
@media (max-width: 650px) {
  .content_left .img_left .listing .listing_sponsoring .sponsor {
    width: 33.3%;
    padding: 0 5px;
  }
  .content_left .img_left .listing .listing_sponsoring .sponsor:nth-child(4n) {
    border-right: 1px solid #d4d4cf;
  }
  .content_left .img_left .listing .listing_sponsoring .sponsor:nth-child(3n), .content_left .img_left .listing .listing_sponsoring .sponsor:last-child {
    border: none;
  }
  .content_left .img_left .listing .listing_sponsoring {
    display: flex;
    justify-content: center;
  }
  .content_left .img_left .listing {
    padding: 10px 0;
  }
  .content_left .img_left .listing p {
    margin-bottom: 15px;
  }
}
/*---------- fonts ------------*/
@font-face {
  font-family: "Libre Franklin";
  src: url("fonts/LibreFranklin-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}/*# sourceMappingURL=styles.css.map */