header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 80px 0;
}
@media screen and (max-width: 1280px) {
  header nav {
    padding-inline: 48px;
  }
}
@media screen and (max-width: 768px) {
  header nav {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 600px) {
  header nav {
    padding-inline: 16px;
  }
}
header nav .logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  header nav ul {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    padding: 8px;
    justify-content: space-between;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    background-color: rgba(210, 175, 109, 0.9);
    gap: 2px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  header nav ul li {
    flex: 1;
  }
}
header nav ul li a {
  text-decoration: none;
  color: #000000;
}
header nav ul li a:hover {
  color: #313131;
  transition: background-color 250ms ease-in;
}
@media screen and (max-width: 768px) {
  header nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
  }
}
header nav ul li a img {
  display: none;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  header nav ul li a img {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  header nav ul li a span {
    font-size: 12px !important;
  }
}

.style-h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .style-h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 360px) {
  .style-h1 {
    font-size: 48px;
  }
}

.style-h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.style-nav {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.style-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1px;
}

.style-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.style-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
}

.mx-auto {
  margin-inline: auto;
}

section,
.header-n-intro {
  position: relative;
  overflow: hidden;
}

.regular-section {
  max-width: 1440px;
  margin-inline: auto;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media screen and (max-width: 1280px) {
  .regular-section {
    padding: 48px;
  }
}
@media screen and (max-width: 1180px) {
  .regular-section {
    max-width: 800px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .regular-section {
    padding: 48px 32px;
    gap: 32px;
  }
}
@media screen and (max-width: 600px) {
  .regular-section {
    padding: 32px 16px;
  }
}
.regular-section.poster-section {
  display: block;
}
.regular-section.centered-section {
  flex-direction: column;
  gap: 32px;
}
.regular-section.centered-section .text-wrapper {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .regular-section.centered-section .text-wrapper {
    text-align: left;
  }
}

.text-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-wrapper {
  position: relative;
  flex: 0 0 50%;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1180px) {
  .image-wrapper {
    order: 2;
  }
}
.image-wrapper img,
.image-wrapper video {
  width: 100%;
  border-radius: 8px;
}
.image-wrapper img.ar-3-2,
.image-wrapper video.ar-3-2 {
  aspect-ratio: 3/2;
}
.image-wrapper video {
  aspect-ratio: 16/9;
}

.color-crimson {
  color: #921010;
}

#anniversarySection .paragraphs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#generationSection .gallery-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 600px) {
  #generationSection .gallery-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
#generationSection .gallery-wrapper .gallery-item {
  position: relative;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #generationSection .gallery-wrapper .gallery-item {
    background-color: #921010;
    color: #d2af6d;
    border: 2px solid #d2af6d;
    padding: 12px 16px;
    text-align: center;
  }
}
#generationSection .gallery-wrapper .gallery-item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(146, 16, 16, 0.5);
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  #generationSection .gallery-wrapper .gallery-item::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #generationSection .gallery-wrapper .gallery-item.selected {
    background-color: #d2af6d;
    color: #921010;
    border: 2px solid #d2af6d;
  }
}
#generationSection .gallery-wrapper .gallery-item.selected::before {
  background-color: transparent;
}
#generationSection .gallery-wrapper .gallery-item.selected h2 {
  display: none;
}
@media screen and (max-width: 768px) {
  #generationSection .gallery-wrapper .gallery-item.selected h2 {
    display: block;
  }
}
#generationSection .gallery-wrapper .gallery-item:hover::before {
  background-color: rgba(146, 16, 16, 0.3);
  transition: 250ms ease-in;
}
#generationSection .gallery-wrapper .gallery-item img {
  width: 100%;
  height: 100px;
  border-radius: 4px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 768px) {
  #generationSection .gallery-wrapper .gallery-item img {
    display: none;
  }
}
#generationSection .gallery-wrapper .gallery-item h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #generationSection .gallery-wrapper .gallery-item h2 {
    position: static;
    transform: translate(0, 0);
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  #motoSection h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  #motoSection h2 {
    font-size: 24px;
  }
}
#motoSection h2 span {
  color: #c9983c;
}
#motoSection h2 span:last-of-type {
  color: #d2af6d;
  background-color: #921010;
  padding: 2px 5px;
}

#contactSection .regular-section .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
}
#contactSection .regular-section .contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-block: 16px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  gap: 16px;
}
#contactSection .regular-section .contact-wrapper a {
  display: flex;
  align-items: center;
  gap: 4px;
}
#contactSection .regular-section .contact-wrapper a:hover {
  transition: color 250ms ease-in;
  color: #313131;
}
#contactSection .regular-section .contact-form {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1280px) {
  #contactSection .regular-section .contact-form {
    width: 100%;
  }
}
#contactSection .regular-section .contact-form .field-group {
  display: flex;
  flex-direction: column;
}
#contactSection .regular-section .contact-form .field-group input,
#contactSection .regular-section .contact-form .field-group textarea {
  margin-top: 4px;
  outline: none;
  background-color: #bd9d62;
  border: none;
  border-radius: 4px;
  padding: 12px 8px;
  resize: none;
}
#contactSection .regular-section .contact-form .field-group input:focus,
#contactSection .regular-section .contact-form .field-group textarea:focus {
  outline: 2px solid #000000;
}
#contactSection .regular-section .contact-form .confirm-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#contactSection .regular-section .contact-form .confirm-group button {
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 16px 80px;
  background-color: #bd9d62;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 16px 32px;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding: 16px;
  }
}

.banner {
  opacity: 0.1;
  position: absolute;
  width: 600px;
  height: 600px;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .banner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    display: none;
  }
}
.banner.top-right {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.banner.bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.banner.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

@media screen and (max-width: 600px) {
  #campSection .image-wrapper {
    order: unset;
  }
}
#campSection .image-wrapper img {
  border-radius: 0;
}
#campSection .text-wrapper a {
  margin-top: 8px;
}
#campSection .view-more-btn {
  display: none;
  border: none;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #campSection .view-more-btn {
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 36px;
    padding: 8px 24px;
    border-radius: 4px;
    border: 1px solid #000000;
    color: #000000;
    background-color: transparent;
  }
  #campSection .view-more-btn.hide {
    display: none;
  }
}
#campSection .grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 600px) {
  #campSection .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  #campSection .grid-item {
    border-radius: 4px;
  }
  #campSection .grid-item.hidden-initially {
    display: none;
  }
}
#campSection .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item img {
    border-radius: 4px;
  }
}
#campSection .grid-item:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(1) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(2) {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(2) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(3) {
  grid-column: 4/span 1;
  grid-row: 1/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(3) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(4) {
  grid-column: 3/span 1;
  grid-row: 2/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(4) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(5) {
  grid-column: 4/span 1;
  grid-row: 2/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(5) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(6) {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(6) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(7) {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(7) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(8) {
  grid-column: 3/span 2;
  grid-row: 3/span 2;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(8) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(9) {
  grid-column: 1/span 1;
  grid-row: 4/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(9) {
    grid-column: unset;
    grid-row: unset;
  }
}
#campSection .grid-item:nth-child(10) {
  grid-column: 2/span 1;
  grid-row: 4/span 1;
}
@media screen and (max-width: 600px) {
  #campSection .grid-item:nth-child(10) {
    grid-column: unset;
    grid-row: unset;
  }
}

#stadiumSection .text-wrapper a {
  margin-top: 8px;
}

@media screen and (max-width: 600px) {
  #missionSection,
  #generationSection {
    padding-bottom: 16px;
  }
}
#missionSection .image-wrapper p,
#generationSection .image-wrapper p {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(calc(100% + 4px));
}

#missionSection .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
#missionSection .text-layout {
  padding-left: 20px;
  border-left: 2px solid #000;
}

#generationSection .image-wrapper p {
  right: 0;
  left: auto;
}
#generationSection .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

#talentsSection .text-wrapper a {
  margin-top: 8px;
}

.socials {
  display: flex;
  gap: 8px;
}
.socials img {
  display: block;
  width: 24px;
  height: 24px;
}

:root {
  --swiper-navigation-size: 1rem;
}

.swiper {
  overflow: visible;
}

.centered-section .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 220px;
  width: auto;
  cursor: pointer;
}
.centered-section .swiper-slide.has-text {
  margin-bottom: 46px;
}
.centered-section .swiper-slide a {
  width: auto;
  height: 100%;
}
.centered-section .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -o-object-fit: contain;
     object-fit: contain;
}
.centered-section .swiper-slide p {
  text-align: center;
  color: #d2af6d;
  position: absolute;
  width: 100%;
  bottom: -4px;
  transform: translateY(100%);
}

#posterSection .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/5;
}
#posterSection .swiper-slide img.ar-5-7 {
  aspect-ratio: 5/7;
}

.swiper-button-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
  margin-top: 32px;
}
.swiper-button-wrapper .swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  transition: 250ms ease;
  position: static;
  z-index: 1;
}
.swiper-button-wrapper .swiper-button::after {
  display: none;
}
.swiper-button-wrapper .swiper-button.swiper-button-prev {
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-wrapper .swiper-button.swiper-button-next {
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-wrapper .swiper-button.on-field-button-prev, .swiper-button-wrapper .swiper-button.off-field-button-prev {
  background-image: url("../assets/icons/chevron-left-yellow.svg");
  border: 2px solid #d2af6d;
}
.swiper-button-wrapper .swiper-button.on-field-button-next, .swiper-button-wrapper .swiper-button.off-field-button-next {
  background-image: url("../assets/icons/chevron-right-yellow.svg");
  border: 2px solid #d2af6d;
}
.swiper-button-wrapper .swiper-button.poster-button-prev {
  border: 2px solid #921010;
  background-image: url("../assets/icons/chevron-left-red.svg");
}
.swiper-button-wrapper .swiper-button.poster-button-next {
  background-image: url("../assets/icons/chevron-right-red.svg");
  border: 2px solid #921010;
}
.swiper-button-wrapper .swiper-button.swiper-button-disabled {
  opacity: 0.3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #d2af6d;
}
@media screen and (max-width: 768px) {
  body {
    padding-bottom: 71px;
  }
}

.prevent-scroll {
  overflow-y: hidden;
}

a {
  text-decoration: none;
}

.sandstone-background {
  background-color: #d2af6d;
  color: #000000;
}

.crimson-background {
  background-color: #921010;
  color: #d2af6d;
}

.black-background {
  background-color: #000000;
  color: #d2af6d;
}

.style-button, .sandstone-button, .crimson-button {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.style-button:hover, .sandstone-button:hover, .crimson-button:hover {
  transition: background-color 250ms ease-in;
}

.crimson-button {
  background-color: #921010;
  color: #d2af6d;
}
.crimson-button:hover {
  background-color: #680b0b;
}

.sandstone-button {
  background-color: #d2af6d;
  color: #921010;
}
.sandstone-button:hover {
  background-color: #f0c87c;
}/*# sourceMappingURL=style.css.map */