.primary-btn {
  display: grid;
  place-items: center;
  height: 48px;
  padding: 0.5rem 0.75rem;
  font-size: 1.375rem;
  background-color: unset;
  background-image: radial-gradient(rgba(173, 75, 176, 0.4), rgba(103, 58, 183, 0.4));
  border: 1.75px solid black;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
}
@media only screen and (min-width: 450px) {
  .primary-btn {
    height: unset;
    display: block;
    font-size: 1.25rem;
  }
}

.login-btn {
  width: fit-content;
  margin-right: 5vw;
  margin-left: auto;
  margin-bottom: 1rem;
  height: unset;
}
@media only screen and (min-width: 450px) {
  .login-btn {
    margin-right: 1.875rem;
  }
}
@media only screen and (min-width: 650px) {
  .login-btn {
    margin-right: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .login-btn {
    margin-left: 75vw;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .login-btn {
    margin-left: calc(50vw + 400px);
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  color: white;
}

html {
  width: fit-content;
  height: fit-content;
  min-width: 100%;
  min-height: 100%;
  background: linear-gradient(#ad4b86, #673ab7) no-repeat center center;
  background-size: cover;
}

body {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.logo {
  display: grid;
  padding: 5px;
}
@media only screen and (min-width: 450px) {
  .logo {
    margin-right: 5px;
  }
}
.logo img {
  width: 60px;
  border-radius: 5px;
}

header {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
header .title-wrapper {
  display: inline-flex;
  place-items: center;
  align-self: center;
  min-width: fit-content;
  background-image: radial-gradient(rgba(173, 75, 134, 0.5), rgba(103, 58, 183, 0.5));
  border: 1.75px solid black;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  margin: auto 5vw;
  padding: 0.375rem 0.375rem;
}
@media only screen and (min-width: 450px) {
  header .title-wrapper {
    margin: auto 10vw;
    padding: 0.375rem 0.75rem;
  }
}
@media only screen and (min-width: 650px) {
  header .title-wrapper {
    margin: auto 10vw;
    padding: 0.375rem 3.125em;
  }
}
header .title-wrapper .projectTitle {
  text-align: center;
  user-select: none;
  margin-right: 5px;
  font-size: 6.75vw;
}
@media only screen and (min-width: 450px) {
  header .title-wrapper .projectTitle {
    font-size: 5.75vw;
  }
}
@media only screen and (min-width: 650px) {
  header .title-wrapper .projectTitle {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 1024px) {
  header .title-wrapper .projectTitle {
    font-size: 2.5rem;
  }
}

main {
  margin: 2rem 0;
}
main .partners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1rem auto auto;
  width: fit-content;
}
main .partners_image_wrapper {
  display: block;
  margin: 0.75rem;
}
main .partners_image_wrapper img {
  width: 77.5vw;
  max-height: 45vw;
  max-width: 270px;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 450px) {
  main .partners_image_wrapper img {
    width: 65vw;
    max-height: 36vw;
  }
}
main .courses {
  height: fit-content;
  width: 85vw;
  padding: 1rem 0.5rem;
  margin: 0 auto;
  text-align: center;
  border: 3px solid black;
  background-image: radial-gradient(rgba(173, 75, 176, 0.4), rgba(103, 58, 183, 0.4));
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 450px) {
  main .courses {
    width: 68.75vw;
    padding: 1rem 1.5rem;
  }
}
@media only screen and (min-width: 650px) {
  main .courses {
    width: 62.5vw;
  }
}
@media only screen and (min-width: 1024px) {
  main .courses {
    width: 600px;
  }
}
@media only screen and (min-width: 1600px) {
  main .courses {
    width: 650px;
  }
}
main .courses_introductoryTitle {
  display: block;
  color: black;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 450px) {
  main .courses_introductoryTitle {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
main .courses ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
main .courses ul li {
  flex: 1 1 175px;
  min-width: fit-content;
  margin: 0.5rem 0.75rem;
}
@media only screen and (min-width: 450px) {
  main .courses ul li {
    margin: 0.75rem 0.75rem;
  }
}
main .courses ul li a {
  display: grid;
  place-items: center;
  height: 48px;
  padding: 0.5rem 0.75rem;
  font-size: 1.375rem;
  background-image: radial-gradient(rgba(103, 58, 183, 0.4), rgba(0, 0, 0, 0.4));
  border: 1.75px solid black;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
}
@media only screen and (min-width: 450px) {
  main .courses ul li a {
    height: unset;
    display: block;
    font-size: 1.25rem;
  }
}
main .courses ul li a:hover {
  background-image: radial-gradient(rgba(103, 58, 183, 0.4), rgba(0, 0, 0, 0.4));
  background-color: dodgerblue;
  border: 1.75px solid white;
}
main .courses ul li a:active {
  color: black;
  background-image: unset;
}

footer {
  margin: auto auto 1rem;
}
footer .footer_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 80vw;
  min-width: fit-content;
  background-image: radial-gradient(rgba(103, 58, 183, 0.3), rgba(0, 0, 0, 0.3));
  padding: 1rem;
  text-align: left;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 650px) {
  footer .footer_wrapper {
    display: grid;
    grid-template-columns: 40% auto;
    width: 77.5vw;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer_wrapper {
    width: 72.5vw;
  }
}
@media only screen and (min-width: 1440px) {
  footer .footer_wrapper {
    width: 1000px;
  }
}
footer .footer_wrapper h2 {
  margin-bottom: 1rem;
}
footer .footer_wrapper .contact_us {
  display: flex;
  flex-direction: column;
}
footer .footer_wrapper .contact_us a:first-of-type {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
footer .footer_wrapper .acknowledgment {
  font-size: 1.125rem;
}

main .courses_breadcrumbs {
  display: block;
  width: fit-content;
  padding: 5px 0;
  text-align: left;
}

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