@font-face {
  font-family: "ITC Avant garde Gothic";
  src: url("/assets/fonts/ITCAvantGardeStd-Md.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant garde Gothic";
  src: url("/assets/fonts/ITCAvantGardeStd-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background: #FF1D20;
  color: #FFF;
}

a {
  text-decoration: none;
  color: inherit;
  display: flex;
}

body {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  background: #131313;
  color: #C6C6C6;
}

button {
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

ul {
  list-style: none;
}

h1 {
  font-family: "ITC Avant garde Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
}

h2 {
  font-family: "ITC Avant garde Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
}

h3 {
  font-family: "ITC Avant garde Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
}

h4 {
  font-family: "ITC Avant garde Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
}

h5 {
  font-family: "ITC Avant garde Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
}

h6 {
  font-family: "ITC Avant garde Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
}

.container {
  padding: 0 1.2rem;
  margin: 0 auto;
}
@media screen and (min-width: 420px) {
  .container {
    max-width: 90%;
  }
}
@media screen and (min-width: 900px) {
  .container {
    width: 90%;
    max-width: 1124px;
    padding: 0;
  }
}

.after-round {
  position: relative;
  font-size: 2.5rem;
  line-height: 2.6rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: max-content;
}
.after-round::after {
  content: "";
  position: absolute;
  right: -23px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #FF1D20;
  top: 30%;
  transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .after-round {
    margin-bottom: 3rem;
  }
  .after-round .title {
    font-size: 3rem;
  }
}

.header {
  padding: 0.8rem 0;
  transition: 0.4s ease-in;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header .nav-left, .header .nav-right, .header--logo {
  flex: 1;
}
.header .nav-left .burger {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav-left .burger.toggled .burger-icon::after {
  transform: translateY(0) rotate(135deg);
}
.header .nav-left .burger.toggled .burger-icon::before {
  transform: translateY(0) rotate(-135deg);
}
.header .nav-left .burger-icon {
  width: 100%;
  height: 3px;
  background: #FFF;
  border-radius: 0.5rem;
  visibility: hidden;
  position: relative;
}
.header .nav-left .burger-icon::after, .header .nav-left .burger-icon::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  visibility: visible;
  border-radius: inherit;
  transition: 0.2s cubic-bezier(0.05, 0.99, 0, -0.01);
}
.header .nav-left .burger-icon::after {
  transform: translateY(0.2rem) rotate(0);
}
.header .nav-left .burger-icon::before {
  transform: translateY(-0.2rem) rotate(0);
}
.header .nav-left .menu {
  display: none;
}
.header--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s cubic-bezier(0.05, 0.99, 0, -0.01);
}
.header--logo img {
  width: 42px;
}
.header .nav-right .profile {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .nav-right .profile img {
  width: 35px;
  height: 35px;
}
.header .nav-right .btns {
  display: none;
}
@media screen and (min-width: 900px) {
  .header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  .header-container {
    border-bottom: 1px solid #FFF;
    padding-bottom: 1rem;
    padding-inline: 0;
  }
  .header .nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .header .nav-left .menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: #FFF;
  }
  .header--logo img {
    width: 50px;
  }
  .header .nav-right .profile {
    display: none;
  }
  .header .nav-right .btns {
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
  }
  .header .nav-right .btns .search-btn {
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .nav-right .btns .search-btn img {
    width: 20px;
  }
  .header .nav-right .btns .login-btn {
    line-height: 18px;
    border-radius: 25px;
    padding: 0.4rem 1.5rem;
    background: #FFF;
    color: #131313;
  }
}

.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-container {
  margin: 0 0.3rem;
  background-image: url("/assets/img/manchester-united-cover.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 55%;
  height: 420px;
  position: relative;
}
.hero-intro {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 20;
}
.hero-intro .hero-subtitle {
  font-weight: normal;
  margin-bottom: 1.2rem;
  transform: translateY(50px);
}
.hero-intro .hero-title {
  text-transform: uppercase;
  font-size: 2.3rem;
  transform: translateY(50px);
}
.hero-news {
  margin-top: 1rem;
  position: relative;
  z-index: 20;
}
.hero-news-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "news1 news2" "news3 news3";
}
.hero-news .news {
  border: 1px solid #FFF;
  font-size: 13px;
  padding: 0.8rem 0.3rem;
}
.hero-news .news .title, .hero-news .news .description {
  color: #FFF;
  text-transform: uppercase;
  font-family: "ITC Avant garde Gothic", sans-serif;
  margin-bottom: 0.5rem;
}
.hero-news .news .description {
  min-height: 30px;
}
.hero-news .news:first-child {
  border-right: 0;
  grid-area: news1;
}
.hero-news .news:nth-child(2) {
  grid-area: news2;
}
.hero-news .news:last-child {
  grid-area: news3;
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-news .news:last-child img {
  width: 24px;
}
.hero-news .news:last-child .title {
  text-transform: lowercase;
  transform: rotate(25deg);
}
@media screen and (min-width: 900px) {
  .hero-container {
    padding: 0;
    height: 100vh;
  }
  .hero-intro {
    position: relative;
    padding: 0;
  }
  .hero-intro .hero-title, .hero-intro .hero-subtitle {
    transform: translateY(0);
  }
  .hero-intro .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-intro .hero-title {
    font-size: 4.5rem;
    max-width: 50%;
  }
  .hero-news {
    padding: 0;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-news-content {
    grid-template-areas: unset;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .hero-news .news {
    font-size: 1rem;
    padding: 2rem;
    background-color: rgba(255, 29, 32, 0.2);
    border: 2px solid #FFF;
  }
  .hero-news .news .title {
    font-size: 12px;
    margin-bottom: 1rem;
  }
  .hero-news .news .description {
    min-height: 60px;
    max-width: 80%;
    line-height: 26px;
  }
  .hero-news .news .date {
    font-size: 12px;
  }
  .hero-news .news:first-child {
    grid-area: unset;
  }
  .hero-news .news:nth-child(2) {
    grid-area: unset;
  }
  .hero-news .news:last-child {
    grid-area: unset;
    border-top: 2px solid #FFF;
  }
  .hero-news .news:last-child .title {
    font-size: 24px;
  }
}

.videos {
  padding: 3rem 0px;
}
.videos .container header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.videos .container header div {
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin-bottom: 2rem;
}
.videos .container header div .red {
  color: #FF1D20;
}
.videos .container .video {
  border: 1px solid #FFF;
  border-bottom: 0;
  height: 160px;
}
.videos .container .video .img {
  border: 2px solid #FFF;
  border-radius: 50%;
  height: 100%;
  overflow: hidden;
}
.videos .container .video .img img {
  height: 100%;
  object-fit: cover;
}
.videos .container .group-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
}
.videos .container .group-videos .group-video {
  display: grid;
  grid-template-rows: 1fr 1.2fr;
}
.videos .container .group-videos .group-video .title {
  padding: 1rem;
  font-size: 0.9rem;
  border: 1px solid #FFF;
}
.videos .container .group-videos .group-video .img {
  padding: 0.5rem;
  border: 1px solid #FFF;
}
.videos .container .group-videos .group-video .img img {
  height: 100%;
  object-fit: cover;
}
.videos .container .more {
  border-radius: 100px;
  width: 100%;
  border: 2px solid #FF1D20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 0.8rem;
}
@media screen and (min-width: 900px) {
  .videos {
    padding: 8rem 0;
  }
  .videos .container {
    padding: 0;
  }
  .videos .container header {
    flex-direction: row;
    justify-content: space-between;
  }
  .videos .container header div {
    font-size: 3rem;
    color: #FFF;
  }
  .videos .container .video {
    height: 400px;
  }
  .videos .container .group-videos {
    grid-template-columns: repeat(4, 1fr);
  }
  .videos .container .group-videos .group-video {
    grid-template-rows: 1fr 3fr;
  }
  .videos .container .group-videos .group-video .img {
    padding: 1rem 0.5rem;
  }
  .videos .container .group-videos .group-video .img img {
    height: 100%;
  }
}

.news {
  padding: 4rem 0;
}
.news-item {
  border: 1px solid #7E7E7E;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.news-item .icon {
  width: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-item .news-img img {
  min-height: 250px;
  object-fit: cover;
}
.news-item .news-title {
  text-transform: uppercase;
  color: #FFF;
  font-weight: bold;
  max-width: 90%;
}
.news-item .news-title-sub {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}
.news-item .news-description p:first-child {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 900px) {
  .news {
    padding: 7rem 0 0;
  }
  .news-content {
    display: grid;
    grid-template-areas: "news1 news1 news2" "news1 news1 news3" "news4 news5 news6";
  }
  .news-content .news-item {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .news-content .news-item .news-img {
    flex: 1.5;
    display: flex;
    overflow: hidden;
  }
  .news-content .news-item .news-img img {
    transition: 1s ease-out;
  }
  .news-content .news-item .news-img:hover img {
    transform: scale(1.1);
  }
  .news-content .news-item .news-title {
    max-width: 90%;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .news-content .news-item:first-child {
    grid-area: news1;
  }
  .news-content .news-item:nth-child(2) {
    grid-area: news2;
  }
  .news-content .news-item:nth-child(3) {
    grid-area: news3;
  }
  .news-content .news-item:nth-child(4) {
    grid-area: news4;
  }
  .news-content .news-item:nth-child(5) {
    grid-area: news5;
  }
  .news-content .news-item:last-child {
    grid-area: news6;
  }
}

.players {
  padding: 3rem 0;
}
.players .player {
  border: 1px solid #7E7E7E;
  padding: 1rem;
}
.players .player-img {
  filter: grayscale(100%);
  height: 240px;
}
.players .player-img img {
  height: 100%;
  object-fit: cover;
}
.players .player-infos {
  padding: 1.5rem 1rem;
}
.players .player-name {
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 1rem;
}
.players .player-description {
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
}
.players .player-btns {
  display: flex;
  gap: 1.5rem;
}
.players .player-btns button {
  padding: 0.6rem 2rem;
  font-size: 14px;
  border-radius: 25px;
  font-weight: bold;
}
.players .player-btns button:first-child {
  background-color: #FFF;
  color: #131313;
}
.players .player-btns button:last-child {
  border: 2px solid #FFF;
}
.players .welcome {
  padding: 2.5rem 0 0;
}
.players .welcome .item {
  color: #FFF;
}
.players .welcome .item:not(:last-child) {
  margin-bottom: 1rem;
}
.players .welcome .item img {
  height: 100%;
}
.players .welcome .item .title {
  font-size: 2rem;
  max-width: 80%;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.players .welcome .item div {
  border-top: 1px solid #7E7E7E;
  color: #FF1D20;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.5rem 0;
  width: 90%;
}
.players .welcome .item p {
  margin-bottom: 1rem;
}
.players .welcome .item button {
  border: 2px solid red;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 1.4rem;
}
@media screen and (min-width: 900px) {
  .players {
    padding-bottom: 5rem;
  }
  .players-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .players .player {
    padding: 3rem 7rem;
  }
  .players .player-img {
    height: 350px;
  }
  .players .welcome {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .players .welcome .item {
    margin-bottom: 0 !important;
  }
  .players .welcome .item:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.register {
  padding-bottom: 2rem;
}
.register .content {
  border: 2px solid #7E7E7E;
  padding: 2rem 1rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  box-shadow: -4px 4px 1px #FFF;
}
.register .content .signup {
  border-radius: 25px;
  border: 1px solid #7E7E7E;
  padding: 0.8rem 2rem;
  font-weight: bold;
  box-shadow: 0 4px 1px #FFF;
  position: relative;
}
@media screen and (min-width: 900px) {
  .register .content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 2.5rem;
  }
}

.footer {
  padding: 2rem 0;
}
.footer-content {
  display: grid;
  grid-template-areas: "div5" "div1" "div2" "div3" "div4";
}
.footer h3 {
  grid-area: div1;
  border: 1px solid #7E7E7E;
  text-transform: uppercase;
  padding: 2rem 1rem;
}
.footer .logo {
  grid-area: div5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  border: 1px solid #7E7E7E;
}
.footer .logo img {
  width: 60px;
}
.footer .menu {
  grid-area: div2;
  border: 1px solid #7E7E7E;
  padding: 2rem 1rem;
}
.footer .socials {
  grid-area: div3;
  border: 1px solid #7E7E7E;
  padding: 2rem 1rem;
}
.footer .copyright {
  grid-area: div4;
  border: 1px solid #7E7E7E;
  padding: 2rem 1rem;
  text-align: center;
}
.footer .attribution {
  font-size: 13px;
  padding: 1rem 0;
}
.footer .attribution a {
  display: inline-block;
  color: #FF1D20;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .footer-content {
    display: grid;
    grid-template-areas: "div1 div1 div2 div3" "div1 div1 div2 div3" "div1 div1 div2 div3" "div4 div5 div2 div3";
  }
  .footer h3 {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .menu, .footer .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    font-size: 14px;
  }
  .footer .menu ul, .footer .socials ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer .logo {
    padding-bottom: 0;
  }
}
.footer .attribution {
  text-align: center;
  font-size: 14px;
  padding-top: 2rem;
}

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