body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  background-image: url("/assets/images/bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

header {
  background-color: #000;
  padding: 10px 0;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
}
nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  nav .nav-list {
    flex-direction: column;
  }
}
nav .nav-list .nav-item {
  margin: 10px 20px;
}
@media (max-width: 768px) {
  nav .nav-list .nav-item {
    margin: 10px 0;
  }
}
nav .nav-list .nav-item a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
nav .nav-list .nav-item a:hover {
  color: #f00;
}
nav .logo img {
  height: 60px;
}
@media (max-width: 768px) {
  nav .logo img {
    height: 80px;
  }
}
@media (max-width: 768px) {
  nav .logo {
    order: -1;
  }
}

footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
footer .footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10%;
}
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-container .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-container .social-icons img {
  height: 30px;
}
footer .footer-container .social-icons a {
  margin: 0 10px;
}
@media (max-width: 768px) {
  footer .footer-container .social-icons {
    margin-bottom: 10px;
  }
}
footer .footer-container .back-to-top a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
footer .footer-container .back-to-top a:hover {
  color: #f00;
}
@media (max-width: 768px) {
  footer .footer-container .back-to-top {
    margin-top: 10px;
  }
}

.home .video_box {
  width: 100%;
}
.home .video_box video {
  width: 100%;
  height: auto;
}
.home .collection_box {
  padding: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
}
.home .collection_box h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #000;
}
.home .collection_box .slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home .collection_box .slider .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.home .collection_box .slider .slider-wrapper .slide {
  position: relative;
  min-width: 20%;
  box-sizing: border-box;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .home .collection_box .slider .slider-wrapper .slide {
    min-width: 50%;
  }
}
.home .collection_box .slider .slider-wrapper .slide img {
  width: 100%;
  height: 100%;
}
.home .collection_box .slider .slider-wrapper .slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.home .collection_box .slider .slider-wrapper .slide .description {
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  pointer-events: none;
}
.home .collection_box .slider .slider-wrapper .slide:hover .overlay {
  opacity: 1;
}
.home .collection_box .slider .prev, .home .collection_box .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.home .collection_box .slider .prev {
  left: 10px;
}
.home .collection_box .slider .next {
  right: 10px;
}
.home .supporting_box {
  padding: 20px;
  text-align: center;
  background-color: #000;
  color: #fff;
}
.home .supporting_box h2 {
  font-size: 3em;
  margin-bottom: 20px;
}
.home .supporting_box .logo-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .home .supporting_box .logo-container {
    flex-wrap: wrap;
  }
}
.home .supporting_box .logo-container img {
  max-width: 150px;
  margin: 0 20px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .home .supporting_box .logo-container img {
    margin: 20px;
    border: 1px solid #FFF;
  }
}
.home .supporting_box .logo-container img:hover {
  transform: scale(1.1);
}
.home .sponsor_box {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .home .sponsor_box {
    padding: 0;
  }
}
.home .sponsor_box .top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
}
@media (max-width: 768px) {
  .home .sponsor_box .top-section {
    flex-wrap: wrap;
  }
}
.home .sponsor_box .top-section .video-container {
  flex: 1;
}
@media (max-width: 768px) {
  .home .sponsor_box .top-section .video-container {
    padding: 5rem 0;
    background-color: #000;
  }
}
.home .sponsor_box .top-section .video-container video {
  width: 100%;
  height: auto;
  max-height: 400px;
}
.home .sponsor_box .top-section .logos-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
}
.home .sponsor_box .top-section .logos-container img {
  margin: 0 20px;
}
@media (max-width: 768px) {
  .home .sponsor_box .top-section .logos-container {
    flex-wrap: wrap;
  }
  .home .sponsor_box .top-section .logos-container img {
    margin: 30px 0;
  }
}
.home .sponsor_box .bottom-section {
  padding: 2rem;
  background-color: rgba(152, 177, 221, 0.6392);
  color: black;
  margin-top: 20px;
  text-align: center;
  display: flex;
}
@media (max-width: 768px) {
  .home .sponsor_box .bottom-section {
    flex-wrap: wrap;
  }
}
.home .sponsor_box .bottom-section > div {
  width: 49%;
}
@media (max-width: 768px) {
  .home .sponsor_box .bottom-section > div {
    width: 100%;
  }
}
.home .sponsor_box .bottom-section .text-container {
  padding: 0 3rem;
  text-align: left;
}
@media (max-width: 768px) {
  .home .sponsor_box .bottom-section .text-container {
    padding: 0;
  }
}
.home .sponsor_box .bottom-section .text-container p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 20px;
}
.home .sponsor_box .bottom-section .text-container .view-more {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 768px) {
  .home .sponsor_box .bottom-section .text-container .view-more {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 2rem 0;
    padding: 10px 0;
  }
}
.home .gallery_box {
  padding: 20px;
  text-align: center;
}
.home .gallery_box h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.home .gallery_box .gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home .gallery_box .gallery-slider .gallery-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.home .gallery_box .gallery-slider .gallery-slider-wrapper .gallery-slide {
  min-width: 20%;
  box-sizing: border-box;
  padding: 10px;
}
.home .gallery_box .gallery-slider .gallery-slider-wrapper .gallery-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.home .gallery_box .gallery-slider .gallery-slider-wrapper .gallery-slide img:hover {
  transform: scale(1.05);
}
.home .gallery_box .gallery-slider .gallery-prev, .home .gallery_box .gallery-slider .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.home .gallery_box .gallery-slider .gallery-prev {
  left: 10px;
}
.home .gallery_box .gallery-slider .gallery-next {
  right: 10px;
}
.home .interview_box {
  padding: 5rem 0;
  text-align: center;
  background-image: url("./images/main/interview_bg.webp");
  color: #fff;
}
@media (max-width: 768px) {
  .home .interview_box {
    display: none;
  }
}
.home .interview_box .interview-slider {
  position: relative;
  overflow: hidden;
}
.home .interview_box .interview-slider .interview-slider-wrapper {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}
.home .interview_box .interview-slider .interview-slider-wrapper .interview-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 20rem;
}
.home .interview_box .interview-slider .interview-slider-wrapper .interview-slide .quote {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.home .interview_box .interview-slider .interview-slider-wrapper .interview-slide .author {
  font-size: 2rem;
  font-weight: bold;
}
.home .interview_box .interview-slider .interview-prev, .home .interview_box .interview-slider .interview-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.home .interview_box .interview-slider .interview-prev {
  left: 10px;
}
.home .interview_box .interview-slider .interview-next {
  right: 10px;
}
.home .about_box {
  padding: 20px;
  display: flex;
  background-color: #000;
  color: #fff;
}
.home .about_box .about-content {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 768px) {
  .home .about_box .about-content {
    flex-wrap: wrap;
  }
}
.home .about_box .about-logo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.home .about_box .about-logo img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.home .about_box .about-logo .read-more {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
}
.home .about_box .about-milestones {
  flex: 2;
  padding: 20px;
  background-color: #fff;
  color: #000;
}
.home .about_box .about-milestones h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}
.home .about_box .about-milestones ul {
  list-style-type: none;
  padding: 0;
}
.home .about_box .about-milestones ul li {
  font-size: 1.2em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.home .about_box .about-milestones ul li span {
  font-weight: bold;
}
.home .about_box .about-milestones ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #000;
}
.home .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.home .close:hover,
.home .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.home #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid .gallery-item {
  position: relative;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.gallery-grid .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-grid .gallery-item .overlay .alt-text {
  color: white;
  font-size: 1.5em;
  text-align: center;
  padding: 10px;
}
.gallery-grid .gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-grid .gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-grid .gallery-item.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.sub_page {
  background: #FFF;
  color: #000;
  padding: 3rem;
}
.sub_page h1 {
  font-size: 3em;
  margin: 0;
  padding: 5rem;
  text-align: center;
}
.sub_page h3 {
  font-size: 2em;
}
.sub_page .map-box {
  width: 100%;
  text-align: center;
}
.sub_page .gallery_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 3rem;
}
.sub_page .gallery_title > * {
  margin: 0 1rem;
}
.sub_page .collection .brand_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.sub_page .collection .brand_box a {
  width: 30%;
}
@media (max-width: 768px) {
  .sub_page .collection .brand_box a {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.sub_page .collection .brand_box a img {
  width: 100%;
}

.table-form-01 {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #000;
  background: #fff;
}
.table-form-01 .col_w {
  width: 120px;
}
.table-form-01 .input_for, .table-form-01 .sel_for {
  height: 3.125rem;
  border: solid 1px #ddd;
  padding: 0 0.5em;
  width: 100%;
}
.table-form-01 .input_for::placeholder, .table-form-01 .sel_for::placeholder {
  color: #bbbbbb;
  font-weight: bold;
}

.board_btn_bx {
  text-align: center;
  margin-top: 30px;
}
.board_btn_bx .btn-type-01 {
  min-width: 6.25em;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  font-size: 1.125rem;
  height: 3.125rem;
  padding: 0 2em;
  border: 0;
  background-color: red;
  font-weight: bold;
  color: #FFF;
}

.shop {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .shop {
    flex-wrap: wrap;
  }
}
.shop > div {
  width: 50%;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .shop > div {
    width: 100%;
    padding: 0;
  }
}
.shop > div > img {
  width: 100%;
}
.shop > div p {
  padding: 3rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .shop > div p {
    padding: 0rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
