:root {
  --swiper-pagination-bottom: 0px;
}

.style-h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .style-h1 {
    font-size: 4rem;
  }
}

.style-h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .style-h2 {
    font-size: 2.4rem;
  }
}

.style-h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.style-h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.style-h5 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.style-link {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}

.style-p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3a3a3a;
}
@media screen and (min-width: 768px) {
  .style-p.large {
    font-size: 1.125rem;
  }
}

.style-label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.1;
}

.style-button {
  font-size: 0.875rem;
  letter-spacing: 1.25px;
  line-height: 1.5;
  padding: 14px 32px;
  border-radius: 4px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.style-button.blue {
  color: #fff4c5;
  background-color: #024bad;
}
.style-button.yellow {
  background-color: #ffdc40;
}
.style-button div.arrow {
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  transform: translate(2px, -2px);
}
.style-button div.arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #fff4c5;
  transition: 0.2s ease;
  display: block;
  transform-origin: 100% 0;
}
.style-button div.arrow:after {
  content: "";
  float: left;
  position: relative;
  top: -100%;
  width: 95%;
  height: 220%;
  transform: rotate(45deg);
  border-width: 0 2px 0 0;
  border-style: solid;
  border-color: #fff4c5;
  transform-origin: 100% 0;
  transition: 0.2s ease;
}
@media screen and (min-width: 768px) {
  .style-button div.arrow {
    transform: none;
  }
  .style-button div.arrow::after {
    height: 0%;
  }
}
.style-button:hover .arrow {
  transform: translate(2px, -2px);
}
.style-button:hover .arrow::after {
  transform: rotate(45deg);
  border-color: #fff4c5;
  height: 220%;
}
.style-button:hover .arrow::before {
  border-color: #fff4c5;
}
.style-button.yellow .arrow::before {
  border-color: #024bad;
}
.style-button.yellow .arrow::after {
  border-color: #024bad;
}
.style-button div.right {
  margin-top: -11px;
  margin-right: 10px;
  transform: rotate(45deg);
  float: right;
}

.style-input {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
}
.style-input:focus {
  outline: 1px solid black;
}

.style-textarea {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
}
.style-textarea:focus {
  outline: 1px solid black;
}

.color-dark {
  color: #3a3a3a;
}

.color-white {
  color: #FFFFFF;
}

.color-blue {
  color: #024bad;
}

.color-light-yellow {
  color: #fff4c5;
}

.color-light {
  color: #eceefb;
}

.uppercase {
  text-transform: uppercase;
}

.mb-32 {
  margin-bottom: 32px;
}

.image-wrapper {
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .image-wrapper {
    padding: 32px;
    border-radius: 12px;
  }
}
.image-wrapper video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .image-wrapper video {
    border-radius: 12px;
  }
}
.image-wrapper img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .image-wrapper img {
    border-radius: 12px;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.section-header.align-left {
  align-items: flex-start;
  text-align: left;
}

:root {
  --swiper-pagination-bottom: 0px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
@media screen and (min-width: 768px) {
  header {
    padding: 32px 64px;
  }
}
header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
header ul {
  display: none;
}
@media screen and (min-width: 768px) {
  header ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1280px) {
  header ul {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
header ul a {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}

:root {
  --swiper-pagination-bottom: 0px;
}

#intro {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  #intro {
    padding: 48px 64px 80px;
  }
}
#intro .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1280px) {
  #intro .text-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }
}
#intro .text-wrapper .second-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  #intro .text-wrapper .second-part {
    max-width: 400px;
  }
}
#intro .text-wrapper .second-part .bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  #intro .text-wrapper .second-part .bottom {
    gap: 8px;
    flex-direction: row;
    align-items: center;
  }
}

.max-w-1280 {
  max-width: 1280px;
  margin: 0 auto;
}

.max-w-600 {
  max-width: 600px;
}

.why-us {
  padding: 32px 20px;
}
@media screen and (min-width: 768px) {
  .why-us {
    padding: 80px 64px;
    gap: 128px;
  }
}
.why-us .section-header {
  text-align: left;
  align-items: flex-start;
}
@media screen and (min-width: 1280px) {
  .why-us .section-header {
    text-align: center;
    align-items: center;
  }
}
.why-us .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .why-us .wrapper {
    gap: 48px;
  }
}
@media screen and (min-width: 1280px) {
  .why-us .wrapper {
    margin-top: 48px;
    gap: 80px;
  }
}
.why-us .cards {
  display: flex;
  flex-direction: column;
}
.why-us .cards .card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 2px solid #000000;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 2px solid #000000;
}
.why-us .cards .card:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .why-us .cards .card {
    max-width: 300px;
    flex: 0 0 auto;
  }
}
.why-us .cards .card .style-h4 {
  text-transform: none;
}
.why-us .image-wrapper {
  max-height: 600px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .why-us .image-wrapper {
    min-width: 600px;
  }
}
.why-us .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .about-us {
    align-items: center;
    padding: 80px 64px;
  }
}
.about-us .section-header {
  text-align: left;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .about-us .text-wrapper {
    min-width: 300px;
    max-width: 600px;
  }
}
.about-us .text-wrapper .w-b-left {
  padding-left: 16px;
  border-left: 3px solid #024bad;
}

.team {
  padding: 32px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .team {
    padding: 80px 64px;
  }
}
.team .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team .text-wrapper .section-header {
  text-align: left;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .team .text-wrapper {
    max-width: 500px;
  }
}
.team .image-wrapper {
  flex: 1;
  min-width: 300px;
  max-height: 600px;
}
.team .image-wrapper video {
  -o-object-fit: cover;
     object-fit: cover;
}

.where {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .where {
    padding-bottom: 80px;
  }
}
.where .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 0;
}
@media screen and (min-width: 768px) {
  .where .text-wrapper {
    align-items: center;
    padding-top: 80px;
  }
}
.where .text-wrapper .section-header {
  text-align: left;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .where .text-wrapper .section-header {
    text-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .where .text-wrapper .style-p {
    text-align: center;
  }
}
.where .location-wrapper {
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .where .location-wrapper {
    align-self: auto;
  }
}
@media screen and (min-width: 768px) {
  .where .style-p {
    max-width: 600px;
  }
}
.where .stadium-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.where .stadium-wrapper .stadium-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .where .stadium-wrapper .stadium-image {
    max-height: 700px;
  }
}

.testimonials {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 768px) {
  .testimonials {
    padding: 80px 64px;
  }
}
.testimonials .header-w-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0px;
  gap: 16px;
}
.testimonials .header-w-nav .section-header {
  text-align: left;
  align-items: flex-start;
}
.testimonials .header-w-nav .slider-nav {
  display: flex;
  gap: 16px;
}
.testimonials .header-w-nav .slider-nav .navigation-button {
  opacity: 1;
  transition: opacity 0.3s;
  cursor: pointer;
}
.testimonials .header-w-nav .slider-nav .navigation-button[aria-disabled=true] {
  opacity: 0.3;
}
.testimonials .header-w-nav .slider-nav .navigation-button img {
  cursor: pointer;
}
.testimonials .swiper {
  width: 100%;
  overflow: hidden;
}
.testimonials .swiper-wrapper {
  display: flex;
  padding-bottom: 48px;
}
.testimonials .upper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials .swiper-slide {
  cursor: pointer;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}
.testimonials .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials .author img {
  width: 48px;
  border-radius: 50%;
}
.testimonials .author .author-text .name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-wrapper {
  margin: 32px auto;
}
@media screen and (min-width: 768px) {
  .cta-wrapper {
    margin: 80px auto;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #024bad;
  padding: 32px 20px;
  text-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cta {
    border-radius: 12px;
    margin-inline: 64px;
    padding: 80px 64px;
  }
}
@media screen and (min-width: 768px) {
  .cta .style-h2 {
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .cta .style-p {
    max-width: 800px;
  }
}

.contact {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 80px 64px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact .section-header {
  text-align: left;
  align-items: flex-start;
}
.contact .contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.contact .contact-group a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  color: #000000;
}
.contact .style-p {
  max-width: 400px;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .contact form {
    width: 600px;
  }
}
.contact form .fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact form .fields .two-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .contact form .fields .two-fields {
    flex-direction: row;
  }
}
.contact form .fields .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .contact form .fields .field-group:last-of-type {
    width: 100%;
  }
}
.contact form .style-input,
.contact form .style-textarea {
  width: 100%;
}
.contact form .style-textarea {
  height: 140px;
}
.contact form .style-textarea {
  resize: none;
}
.contact form .style-button {
  border: none;
  cursor: pointer;
}

footer {
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 8px 64px;
  }
}

.socials {
  display: flex;
  gap: 8px;
}

.events {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .events {
    padding: 80px 64px;
  }
}
@media screen and (min-width: 1280px) {
  .events {
    align-items: center;
  }
}
.events .section-header {
  text-align: left;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .events .section-header {
    text-align: center;
    align-items: center;
  }
}
.events .events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .events .events-grid {
    gap: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .events .events-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 16px;
  }
}
.events .event-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 4px;
}
.events .event-card.wide {
  grid-column: span 2;
}
@media screen and (min-width: 1280px) {
  .events .event-card.wide {
    grid-column: span 1;
  }
}
.events .event-card img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

body {
  background-color: #ffefaa;
}

ul {
  list-style: none;
}/*# sourceMappingURL=app.css.map */