@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Arimo:ital,wght@0,400..700;1,400..700&family=Big+Shoulders+Inline:opsz,wght@10..72,100..900&family=Big+Shoulders:opsz,wght@10..72,100..900&family=Bree+Serif&family=Geist+Mono:wght@100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Smooch+Sans:wght@100..900&family=Sulphur+Point:wght@300;400;700&display=swap');

@font-face {
  font-family: 'Lato';
  src: url('assets/fonts/Lato-Regular.ttf') format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Sulphur Point", sans-serif;
}
body h1 {
  color: rgb(255, 80, 80);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 64px;
  line-height: 76px;
}
@media (max-width: 1024px) {
  body h1 {
    font-weight: 900;
    font-size: 26px;
    line-height: 31px;
  }
}
body h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
}
@media (max-width: 1024px) {
  body h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
  }
}
body h3 {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
}
@media (max-width: 1024px) {
  body h3 {
    font-weight: 400;
    font-size: 21px;
    line-height: 28px;
  }
}
body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
body a {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 25.2px;
}
body ul {
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.container {
  max-width: 1220px;
  margin: 0 auto ;
}
@media (max-width: 1024px) {
  .container {
    padding: 20px ;
  }
}
.btn {
  background-color: rgb(255, 80, 80);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  line-height: 21.6px;
}
@media (max-width: 1024px) {
  .logo {
    max-width: 180px;
  }
}
header {
  background-color: #490101;
}
@media (max-width: 1024px) {
  header {
    padding: 10px 20px;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 37px 0;
}
@media (max-width: 1024px) {
  header .container {
    padding: 0;
  }
}
.hero {
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(assets/img/header-bg.png);
  filter: hue-rotate(210deg);
  z-index: -1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero .container {
    justify-content: space-between;
  }
}
.hero-text {
  max-width: 745px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .hero-text {
    width: 215px;
  }
}
.hero-text p {
  color: #E0E0E0;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .hero-text p {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
  }
}
.hero-text .hero-text-sub {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
}
@media (max-width: 1024px) {
  .hero-text .hero-text-sub {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
  }
}
.hero img {
  margin-left: -100px;
  margin-right: -200px;
}
@media (max-width: 1024px) {
  .hero img {
    max-width: 250px;
    margin: 0;
    margin-right: -60px;
    margin-left: -80px;
  }
}

@media (max-width: 1024px) {
  .hero-text h1{
    font-size: 36px !important;
    
  }
  .hero-text p{
    font-size: 24px !important;
    line-height: 28px !important;
  }
}
@media (max-width: 470px) {
  .hero-text h1{
    font-size: 24px !important;
  }
  .hero-text p{
    font-size: 18px !important;
    line-height: 20px !important;
  }
}

.bar {
  margin: 80px 0;
}
.bar-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #F9F9F9;
  color: #878787;
  margin-bottom: 20px;
}
.bar-header p {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
.bar-header-1 {
  margin-left: 120px;
}
.bar-header-2 {
  margin-left: 340px;
}
.bar-header-3 {
  margin-left: 220px;
}
.bar-header-4 {
  margin-left: 120px;
}
@media (max-width: 1024px) {
  .bar-header {
    display: none;
  }
}
.bar-item {
  background-color: #F9F9F9;
  padding: 32px 20px;
  border-bottom: 4px solid #8b0c0c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .bar-item {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
}
.bar-number {
  font-size: 23px;
  line-height: 27px;
  color: #282828;
}
.bar-number-icon {
  font-size: 23px;
}
@media (max-width: 1024px) {
  .bar-number-icon {
    display: none;
  }
}
.bar-name {
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bar-name img {
  margin-bottom: 10px;
  filter: hue-rotate(200deg);
}
.bar-info {
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bar-info p {
  font-weight: 900;
}
.bar-info a {
  color: #580c8b;
  text-decoration: underline;
  font-weight: 600;
}
.bar-number {
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bar-number .number {
  color: #580c8b;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
}
.bar-number p {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
}
.bar-btn {
  max-width: 300px;
}
@media (max-width: 1024px) {
  .bar-btn {
    max-width: 100%;
  }
  .bar-btn .btn {
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
  }
}
.bar-line {
  display: block;
  width: 1px;
  height: 138px;
  background-color: #E0E0E0;
  align-self: center;
}
@media (max-width: 1024px) {
  .bar-line {
    width: 100%;
    height: 1px;
  }
}
.bar-slider {
  background-color: #580c8b;
  padding: 40px 0;
  position: relative;
}
.bar-slider .swiper-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
}
.bar-slider .bar-card {
  background-color: #FFFFFF;
  height: 320px;
  padding: 20px;
  text-align: start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px){
  .bar-slider .bar-card{
    max-height: 500px;
    height: 100%;
  }
}

@media (max-width: 1219px ) {
  .sport-block  {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center !important;
    justify-content: center !important;
  }
}
.bar-slider .bar-card img {
  max-width: 80%;
  height: auto;
  margin-bottom: 10px;
}
.bar-slider .bar-card h3 {
  color: #282828;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
.bar-slider .bar-card p {
  margin-bottom: 5px;
  color: #E0E0E0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.bar-slider .bar-card .stars {
  color: rgb(255, 80, 80);
  font-size: 20px;
  margin-bottom: 10px;
}
.bar-slider .bar-card .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  width: 100%;
  text-align: center;
}
.bar-slider .bar-card:hover {
  transform: scale(1.05);
}
.swiper-button-prev,
.swiper-button-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: auto !important;
    bottom: 10px !important;
    transform: none !important;
  }
}
.swiper-button-prev img,
.swiper-button-next img {
  width: 50px;
  height: auto;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}
.swiper-button-prev {
  left: 8% !important;
}
@media (max-width: 1024px) {
  .swiper-button-prev {
    left: 40% !important;
  }
}
.swiper-button-next {
  right: 8% !important;
}
@media (max-width: 1024px) {
  .swiper-button-next {
    right: 40% !important;
  }
}
.event {
  margin: 80px 0;
}
.event h2,
.event h3 {
  color: #580c8b;
  margin-bottom: 10px;
}
.event p,
.event ul {
  color: #878787;
  margin-bottom: 32px;
  list-style: circle;
}
.sport .blue {
  color: #580c8b;
}
.sport p {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.sport .container {
  background-color: #580c8b;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sport-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sport-header h2,
.sport-header p {
  color: #FFFFFF;
}
.sport-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sport-item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 560px;
  background-color: #FFFFFF;
  padding: 16px;
}
.sport-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sport-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}
.sport-info-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sport .btn {
  text-align: center;
}
.about {
  margin: 80px 0;
}
.about h2 {
  color: #580c8b;
}
.about h2,
.about h3 {
  margin-bottom: 12px;
}
.about p,
.about ul {
  margin-bottom: 32px;
  color: #878787;
  list-style: circle;
}
.faq {
  margin: 80px 0;
}
.faq h2 {
  color: #580c8b;
  margin-bottom: 10px;
}
.faq p {
  color: #666;
  margin-bottom: 20px;
}
.faq .faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq .faq-item {
  background: #F9F9F9;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.faq .faq-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq .faq-item .faq-question {
  width: 100%;
  background: #F9F9F9;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #282828;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .faq-item .faq-question .faq-icon {
  font-size: 20px;
  color: #580c8b;
  transition: transform 0.3s ease-in-out;
}
.faq .faq-item .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq .faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
}
.faq .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
footer {
  background-color: #282828;
  padding: 48px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
footer .footer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .footer-header {
    flex-wrap: wrap;
    gap: 20px;
  }
}
footer .footer-header .nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
@media (max-width: 1024px) {
  footer .footer-header .nav {
    flex-wrap: wrap;
  }
}
footer .footer-header .nav a {
  color: #FFFFFF;
  font-weight: 500;
}
footer .footer-main h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
footer .footer-main p {
  color: #E0E0E0;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
footer p {
  color: #E0E0E0;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 4px;
  max-width: 1057px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .modal-content {
    max-width: 350px;
  }
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #282828;
}
@media (max-width: 1024px) {
  .modal-close {
    right: 5px;
    top: 5px;
  }
}
.modal-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1024px) {
  .modal-body {
    flex-direction: column;
  }
}
.modal-body img {
  max-width: 400px;
}
@media (max-width: 1024px) {
  .modal-body img {
    max-width: 300px;
  }
}
.modal-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.modal-text h3 {
  color: #282828;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
}
.modal-text p {
  color: #666;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
.modal-text .btn {
  margin-top: 10px;
}
.hero-text-legal {
  padding: 125px 0;
}
@media (max-width: 1024px) {
  .hero-text-legal {
    padding: 46px 0;
  }
}
.hero .legal-container {
  justify-content: center;
}
.legal {
  margin: 80px 0;
}
@media (max-width: 1024px) {
  .legal {
    margin: 20px 0;
  }
}
.legal h2 {
  color: #580c8b;
  margin-bottom: 12px;
}
.legal p {
  color: #878787;
  margin-bottom: 32px;
}
.legal ul {
  list-style: circle;
  margin-bottom: 32px;
}
.legal .margin {
  margin-bottom: 5px;
}
