*{
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
}
body{
  background: #000;
  color: #FFF;
}

header{
  border-bottom: 1px solid rgba(219, 219, 219, 0.25);
  display: flex;
  gap: 8px;
  padding: 24px;  
}

header .header-name-card{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .header-name-card p{
  font-family: "Roboto Condensed";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
}

main {
  background-image: url('./assets/stadium.png');
  background-repeat: no-repeat;
  background-position: 100%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
main section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}
main section h1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
}
main section p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
main section p span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
main .partners  {
  margin-top: 12px;
  width: 100%;
  max-width: unset;
  padding: 24px 16px;
  justify-content: space-between;
  display: flex;
  gap: 24px;
  flex-direction: row;
  border-radius: 16px;
  border: 1px solid rgba(219, 219, 219, 0.25);
  flex-wrap: wrap;

}
main .partners  img {
  width: 100%;
  max-width: 175px;
  padding-right: 24px;
  border-right: 1px solid rgba(219, 219, 219, 0.25);
  object-fit: contain;
}

main .partners img:last-child {
  border: none !important;
}


footer{
  border-top: 1px solid rgba(219, 219, 219, 0.00);
  background: #0E0E0E;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  gap: 24px;
  flex-wrap: wrap;
  
}

footer .footer-name-logo-card{
  gap: 8px;
  display: flex;
}
footer .footer-name-logo-card .footer-name-card{
  flex-direction: column;
  gap: 4px;
  display: flex;
}
footer .footer-name-logo-card .footer-name-card p{
  font-family: "Roboto Condensed";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
}

footer .copyright {
  color: #FFF;
  font-size: 14px;
  max-width: 380px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

@media (max-width:992px) {
  
  main .partners  {
    margin-top: 470px;
    border: none;
  
  }
  main .partners  img {
    width: 100%;
    border-radius: 12.614px;
    max-width: 175px;
    padding: 24px;
    border: 1px solid rgba(219, 219, 219, 0.25);
  }
  
  main .partners img:last-child {
    border: 1px solid rgba(219, 219, 219, 0.25) !important;
  }
  
}
@media (max-width:584px) {
  main {
    background-repeat: no-repeat;
    background-position: center;
  }
  
  main .partners  img {
    max-width: unset;
  }
  
}