* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
    font-size: 100%;
    line-height: 100%;
}

:root  {
    --black: #000;
    --chocolate: #390101;
    --deep-fir: #0C3901;
    --guardsman-red: #D90000;
    --harlequin: #21E500;
    --hint-of-green: #E5FFE8;
    --lava-black: #352F36;
    --lemon: #EEE409;
    --white: #fff;
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    background: var(--hint-of-green) url("../img/sports-bg.webp") top center/cover no-repeat;
    min-height: 100vh;
}

.landing {
  display: flex;
  flex-direction: column;
  height: auto;
  background: url("../img/leagues_and_players.png") top center/contain no-repeat;
  max-width: 1360px;
  margin: 0 auto;
}

.fb88__pageLogo {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 10vw;
    height: auto;
}

.landing__center {
  position: relative;
  padding: 18px 10px 12px;
  margin: 455px auto 0;
  width: 95%;
  max-width: 1080px;
  min-height: 115px;
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--harlequin) 0%, var(--deep-fir) 100%);
  box-shadow: 2px 4px 10px var(--black);
}

.landing__center > img {
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.landing__center > p {
  position: relative;
  text-align: center;
  line-height: 24px;
  text-shadow: 2px 2px 6px var(--black);
  z-index: 4; 
}

.landing__center > p > .landing__centerHighlight {
  color: var(--lemon);
}

.landing__centerIcons {
  display: flex;
  justify-content: center;
  margin: 12px 0 0;
  z-index: 4;
}

.landing__centerIcons a img {
  width: 30px;
  margin-inline: 12px;
  filter: invert(99%) sepia(2%) saturate(169%) hue-rotate(318deg) brightness(116%) contrast(100%);
}

.landing__text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  width: 95%;
  line-height: 20px;
  color: var(--lava-black);
  max-width: 1060px;
  margin: 18px auto 0;
}

.landing__slider {
  margin: auto;
  width: 100%;
  position: relative;
}

.landing__sliderThumbnail {
  display: none;
}

.landing__sliderThumbnail > .swiper {
  max-width: 1170px;
}

.swiper {
  width: 100%;
  max-width: 1080px;
}

.swiper-slide {
  padding: 38px 10px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}

.swiper-slide img {
  display: block;
  width: 22vw;
  max-width: 275px;
  height: auto;
  margin: 0 auto 20px;
  border: 5px solid var(--white);
  box-shadow: 0 8px 20px var(--lava-black);
}

.swiper-slide a:last-child {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--white);
  padding: 6px 18px;
  border-radius: 24px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--guardsman-red) 0%, var(--chocolate) 100%);
  box-shadow: 2px 4px 10px var(--black);
}

.swiper-button-prev-custom {
  cursor: pointer;
  position: absolute;
  top: 30%;
  left: 3vw;
  z-index: 8;
}

.swiper-button-next-custom {
  transform: rotate(180deg);
  cursor: pointer;
  position: absolute;
  top: 30%;
  right: 3vw;
  z-index: 8;
}

@media (max-width: 428px) {
  .landing__center > p > .landing__centerHighlight {
    display: block;
  }
}

@media (max-width: 768px) {
  .swiper-slide img {
    width: 50vw;
  }
  
  .fb88__pageLogo {
      right: 0;
      left: 0;
      margin: 0 auto;
      top: 28vw;
      width: 20vw;
      z-index: 4;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .swiper-slide img {
    width: 40vw;
  }
}

@media (max-width: 991px) {
  .landing__slider {
    display: none;
  }

  .landing__sliderThumbnail {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0;
    line-height: 0;
  }

  .landing__sliderThumbnail > a:first-child {
    width: calc(80% + 16px);
    margin-bottom: 12px;
  }

  .landing__sliderThumbnail > a {
    width: 40%;
    margin: 8px;
    height: auto;
  }

  .landing__sliderThumbnail > a > button {
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    color: var(--white);
    padding: 6px 18px;
    border-radius: 24px;
    margin: 10px auto 0;
    background: linear-gradient(to bottom, var(--guardsman-red) 0%, var(--chocolate) 100%);
    box-shadow: 2px 4px 10px var(--black);
  }

  .landing__sliderThumbnail > a > img {
    width: 100%;
    height: auto;
    border: 2px solid var(--white);
    box-shadow: 1px 2px 10px var(--black);
  }
}

@media (max-width: 845px) {
  .landing__center > p,
  .landing__text {
    font-size: 13px;
  }

  .landing__center > img {
    top: -10.5vw;
  }
}

@media (max-width: 1200px) {
  .landing__center {
    margin-top: 35vw;
  }
}

@media (max-width: 1240px) {
  .swiper {
    width: 85%;
  }
}