@font-face {
  font-family: "Poppins Light";
  src: url("../fonts/poppins-300.woff") format("woff");
}
@font-face {
  font-family: "Poppins Regular";
  src: url("../fonts/poppins-400.woff") format("woff");
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/poppins-500.woff") format("woff");
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("../fonts/poppins-600.woff") format("woff");
}
@font-face {
  font-family: "Poppins Bold";
  src: url("../fonts/poppins-700.woff") format("woff");
}
:root {
  font-size: 16px;
  font-family: "Poppins Regular", sans-serif;
}

body {
  font-family: "Poppins Regular", serif;
  background: radial-gradient(139.54% 12.02% at 50.18% 100%, #2E008D 10%, #000 100%);
  line-height: 1.25rem;
}

*, *:before, *:after {
  box-sizing: border-box !important;
}

header {
  height: 3.4375rem;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: -1px;
}
header a {
  margin-left: 2.5rem;
  display: flex;
  align-items: center;
}
header a img {
  width: 110px;
  height: 28px;
}
@media screen and (min-width: 1000px) {
  header a img {
    width: 179px;
    height: 45px;
  }
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem;
}
@media screen and (min-width: 600px) {
  main {
    padding: 1.25rem;
  }
}
@media screen and (min-width: 1000px) {
  main {
    margin-bottom: 2.5rem;
  }
}

article {
  column-count: 1;
  column-gap: 0.625rem;
}
@media screen and (min-width: 600px) {
  article {
    column-count: 2;
  }
}
@media screen and (min-width: 1000px) {
  article {
    column-count: 3;
  }
}
article li {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

section {
  display: inline-block;
  margin-bottom: 0.625rem;
  padding: 1.56rem;
  width: 100%;
  background: #fff;
  border-radius: 14px;
}
section a {
  font-size: 1rem;
  line-height: 1.5625rem;
  color: #161617;
  text-decoration: none;
  width: 95%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins Medium";
}
section a:hover {
  text-decoration: underline;
}
section ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section h2 {
  color: #FF104F;
  font-size: 1.25rem;
  font-family: "Poppins Medium", sans-serif;
  text-transform: uppercase;
  margin: 0 0 1.1rem 0;
  font-weight: normal;
}

h1 {
  color: #fff;
  font-size: 20px;
  font-family: "Poppins Medium";
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1000px) {
  h1 {
    margin-top: 40px;
  }
}

footer {
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .styledFlexContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000;
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  footer .styledFlexContainer {
    flex-direction: column;
    font-size: 12px;
    padding-start: 29px;
    padding-inline: 60px;
    margin: 0;
    height: 160px;
    gap: 15px;
  }
}
@media screen and (min-width: 1366px) {
  footer .styledFlexContainer {
    flex-direction: row;
  }
}
footer .styledFlexContainer > svg {
  height: 62px;
  padding-bottom: 20px;
  border-bottom: 1px solid #4f4f4f;
  width: 90%;
}
footer .styledFlexContainer > svg path {
  fill: #fff;
}
@media screen and (min-width: 1024px) {
  footer .styledFlexContainer > svg {
    height: 67px;
  }
}
@media screen and (min-width: 1366px) {
  footer .styledFlexContainer > svg {
    width: auto;
    border-bottom: none;
  }
}
footer .styledNavLinks {
  width: 100%;
}
@media screen and (min-width: 1366px) {
  footer .styledNavLinks {
    border-top: none;
  }
}
footer .styledListLinks {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  -webkit-box-pack: center;
  justify-content: center;
  max-height: 130px;
}
@media screen and (min-width: 1024px) {
  footer .styledListLinks {
    flex-flow: row;
  }
}
@media screen and (min-width: 1366px) {
  footer .styledListLinks {
    margin: 0;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}
footer .styledListLinks .styledItemLink {
  margin-bottom: 10px;
  font: 500 12px "Poppins Medium", "sans-serif";
  color: #fff;
  text-align: center;
  padding: 0 8px;
}
@media screen and (min-width: 1024px) {
  footer .styledListLinks .styledItemLink {
    width: auto;
    text-align: left;
    border-left: 1px solid #827e85;
  }
  footer .styledListLinks .styledItemLink:first-of-type {
    border: 0;
  }
}
footer .styledListLinks .styledItemLink .styledExternalLink,
footer .styledListLinks .styledItemLink .styledButtonLink {
  color: #fff;
  font: 500 12px "Poppins Medium", "sans-serif";
  white-space: nowrap;
  text-decoration: none;
}
footer .styledListLinks .styledItemLink .styledExternalLink:hover,
footer .styledListLinks .styledItemLink .styledButtonLink:hover {
  text-decoration: underline;
}
footer .styledListLinks .styledItemLink .styledButtonLink {
  color: white;
  font: 500 0.75rem "Poppins Medium", "sans-serif";
  white-space: nowrap;
  border: none;
  background: none;
  text-decoration: none;
}
footer .styledListLinks .styledItemLink .styledButtonLink:hover {
  text-decoration: underline;
}
footer .styledText {
  color: #fff;
  font: 500 10px "Poppins Medium", "sans-serif";
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  footer .styledText {
    font-size: 12px;
    padding: 10px;
    margin: 0;
  }
}

/* accesibilidad */
.screen-reader-only {
  position: absolute;
  height: 1px;
  width: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  overflow: hidden !important;
}
