body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.section {
  height: 30vh;
}

.section.logo-hero {
  height: 70vh;
  background-image: url('../images/bg-court-and-ball.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.footer {
  background-image: radial-gradient(circle at 50% 250%, #183b7e, #001221);
  flex-direction: column;
  justify-content: center;
  padding: 30px 52px;
  display: flex;
}

.body {
  background-color: #001221;
}

.container-logo {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.img-logo {
  width: 35%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tagline {
  color: #fff;
  font-family: Varela Round, sans-serif;
  font-size: 22px;
}

.aqua {
  color: #72d2ff;
}

.container-footer {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.body-text {
  color: #fff;
  text-align: center;
  font-family: Varela Round, sans-serif;
  font-size: 18px;
}

.body-text:hover, .body-text:active, .body-text:focus {
  color: #fff;
}

.body-text:focus-visible {
  color: #fff;
}

.body-text[data-wf-focus-visible] {
  color: #fff;
}

.img-partner {
  width: 10%;
}

.container-logos {
  height: 20vh;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.sep-vertical {
  width: 1px;
  height: 45%;
  background-color: #fff;
  margin-left: 38px;
  margin-right: 38px;
}

.link {
  color: #72d2ff;
  text-decoration: none;
}

.link:hover {
  color: #ffd040;
}

.link:active {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .section.footer {
    padding-left: 42px;
    padding-right: 42px;
  }

  .img-logo {
    width: 65%;
  }

  .img-partner {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .img-logo {
    width: 80%;
  }

  .img-partner {
    width: 35%;
  }
}

@media screen and (max-width: 479px) {
  .section.footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .img-logo {
    width: 90%;
  }

  .tagline {
    font-size: 16px;
  }

  .container-logos {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .sep-vertical {
    margin-left: 12px;
    margin-right: 12px;
  }
}


