@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype"), local("Glacial Indifference");
  font-size: 14px; /* Tamaño de fuente para Regular */
}
@font-face {
  font-family: "Glacial Indifference";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/GlacialIndifference-Italic.otf") format("opentype"), local("Glacial Indifference");
  font-size: 14px; /* Tamaño de fuente para Italic */
}
@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/GlacialIndifference-Bold.otf") format("opentype"), local("Glacial Indifference");
  font-size: 14px; /* Tamaño de fuente para Italic */
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: "Glacial Indifference", sans-serif;
  font-size: 20px;
  word-wrap: break-word;
  padding-top: 150px;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding-top: 80px;
  }
}

body.admin-bar {
  padding-top: 182px;
}

@media (max-width: 768px) {
  body.admin-bar {
    padding-top: 112px;
  }
}
@media (max-width: 782px) {
  body.admin-bar {
    padding-top: 196px;
  }
}
@media (max-width: 782px) and (max-width: 768px) {
  body.admin-bar {
    padding-top: 126px;
  }
}
body.admin-bar section {
  scroll-margin-top: 182px;
}

@media (max-width: 768px) {
  body.admin-bar section {
    scroll-margin-top: 112px;
  }
}
@media (max-width: 782px) {
  body.admin-bar section {
    scroll-margin-top: 196px;
  }
}
@media (max-width: 782px) and (max-width: 768px) {
  body.admin-bar section {
    scroll-margin-top: 126px;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
@media (max-width: 768px) {
  header {
    height: 80px;
    max-width: 100%;
  }
}

section {
  min-height: 350px;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 40px;
  scroll-margin-top: 150px;
}
@media (max-width: 768px) {
  section {
    padding: 20px;
    scroll-margin-top: 80px;
    min-height: auto;
  }
}

section > main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 768px) {
  main {
    row-gap: 15px;
  }
}

footer {
  height: 300px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 40px;
}
@media (max-width: 768px) {
  footer {
    height: auto;
    padding: 20px;
    min-height: 200px;
  }
}

h1 {
  font-size: 60px;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h5 {
  font-size: 15px;
}
@media (max-width: 768px) {
  h5 {
    font-size: 14px;
  }
}

.uw__partner {
  color: white;
  background-color: #666;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  display: none;
}
.uw__partner.active {
  max-height: -moz-fit-content;
  max-height: fit-content;
  height: auto;
  opacity: 1;
  visibility: visible;
  display: flex;
  padding: 25px;
}
@media (max-width: 768px) {
  .uw__partner.active {
    padding: 40px;
    padding-bottom: 30px;
  }
}
.uw__partner__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .uw__partner__content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.uw__partner__info {
  position: relative;
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}
.uw__partner__info__content {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .uw__partner__info__content {
    margin-right: 5px;
  }
}
.uw__partner__info__title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .uw__partner__info__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.uw__partner__info__title a {
  color: #007bff;
  text-decoration: none;
  font-size: 18px;
  margin-left: 10px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .uw__partner__info__title a {
    font-size: 16px;
    margin-left: 8px;
  }
}
.uw__partner__info__title a:hover {
  text-decoration: underline;
}
.uw__partner__info__text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .uw__partner__info__text {
    font-size: 15px;
    line-height: 1.5;
  }
}
.uw__partner__info__text p {
  margin-bottom: 1em;
}
.uw__partner__info__text p:last-child {
  margin-bottom: 0;
}
.uw__partner__info__text strong,
.uw__partner__info__text b {
  font-weight: 700;
  color: #333;
}
.uw__partner__info__text em,
.uw__partner__info__text i {
  font-style: italic;
}
.uw__partner__info__text ul,
.uw__partner__info__text ol {
  margin-bottom: 1em;
  padding-left: 20px;
  list-style: disc;
}
.uw__partner__info__text ol {
  list-style: decimal;
}
.uw__partner__info__text li {
  margin-bottom: 0.5em;
}
.uw__partner__info__text a {
  color: #007bff;
  text-decoration: underline;
}
.uw__partner__info__text a:hover {
  text-decoration: none;
}
.uw__partner__info__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 5px 10px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .uw__partner__info__close {
    top: 15px;
    right: 15px;
    font-size: 20px;
    padding: 4px 8px;
  }
}
.uw__partner__info__close:hover {
  color: #333;
}

.uw__header {
  color: black;
  background-color: white;
  height: 150px;
}
@media (max-width: 768px) {
  .uw__header {
    height: 80px;
  }
}
.uw__header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: relative;
  width: auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
  justify-content: flex-start;
  z-index: 1;
}
.uw__header__logo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.uw__header__icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 110px;
  height: 110px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.uw__header__icon image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .uw__header__icon {
    width: 60px;
    height: 60px;
  }
}
.uw__header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 100px;
       column-gap: 100px;
  opacity: 1;
  transition: opacity 0.6s ease;
  position: absolute;
  padding: 0 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .uw__header__nav {
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 13px;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    transform: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }
  .uw__header__nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.uw__header__nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.uw__header__nav__item {
  cursor: pointer;
  transition: all 0.5s ease;
}
.uw__header__nav__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  font-size: 22px;
  text-decoration: none;
  display: block;
  padding: 10px;
  margin: 5px;
  color: black;
}
.uw__header__nav__item a:hover {
  color: #5BAAAE;
  font-size: 26px;
}
@media (max-width: 768px) {
  .uw__header__nav__item a {
    font-size: 16px;
    padding: 5px;
    margin: 2px;
  }
  .uw__header__nav__item a:hover {
    font-size: 18px;
  }
}
.uw__header__language {
  position: absolute;
  display: flex;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .uw__header__language {
    right: 3%;
  }
}
.uw__header__language__current {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 4;
}
.uw__header__language__current img {
  width: 60px;
  height: auto;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .uw__header__language__current img {
    width: 40px;
  }
}
.uw__header__language__current__access {
  opacity: 1;
}
.uw__header__language__current__close {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  opacity: 0;
}
@media (max-width: 768px) {
  .uw__header__language__current__close {
    top: 0.3rem;
    left: 0.3rem;
  }
}
.uw__header__language__current:hover {
  transform: scale(1.1);
}
.uw__header__language.active-selector .uw__header__language__current__access,
.uw__header__language.active-selector img.uw__header__language__current__access {
  opacity: 0;
}
.uw__header__language.active-selector .uw__header__language__current__close,
.uw__header__language.active-selector img.uw__header__language__current__close {
  opacity: 1;
}
.uw__header__language__selector {
  position: absolute;
  width: 100%;
  height: 150px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 768px) {
  .uw__header__language__selector {
    height: auto;
    gap: 10px;
    position: fixed;
    top: 80px;
    bottom: auto;
    transform: none;
    left: 0;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
}
.uw__header__language__selector.active {
  opacity: 1;
  visibility: visible;
}
.uw__header__language__option {
  padding: 0.3rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .uw__header__language__option {
    padding: 0.2rem;
  }
}
.uw__header__language__option img {
  width: 60px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .uw__header__language__option img {
    width: 30px;
  }
}
.uw__header__language__option:hover {
  transform: scale(1.1);
}
.uw__header__accessibility {
  position: absolute;
  display: flex;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .uw__header__accessibility {
    left: 3%;
  }
}
.uw__header__accessibility__current {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 4;
}
.uw__header__accessibility__current img {
  width: 60px;
  height: auto;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .uw__header__accessibility__current img {
    width: 40px;
  }
}
.uw__header__accessibility__current__access {
  opacity: 1;
}
.uw__header__accessibility__current__close {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  opacity: 0;
}
@media (max-width: 768px) {
  .uw__header__accessibility__current__close {
    top: 0.3rem;
    left: 0.3rem;
  }
}
.uw__header__accessibility__current:hover {
  transform: scale(1.1);
}
.uw__header__accessibility.active-selector .uw__header__accessibility__current__access,
.uw__header__accessibility.active-selector img.uw__header__accessibility__current__access {
  opacity: 0;
}
.uw__header__accessibility.active-selector .uw__header__accessibility__current__close,
.uw__header__accessibility.active-selector img.uw__header__accessibility__current__close {
  opacity: 1;
}
.uw__header__accessibility__selector {
  position: absolute;
  width: 100%;
  height: 150px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 768px) {
  .uw__header__accessibility__selector {
    height: auto;
    gap: 10px;
    position: fixed;
    top: 80px;
    bottom: auto;
    transform: none;
    left: 0;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
}
.uw__header__accessibility__selector.active {
  opacity: 1;
  visibility: visible;
}
.uw__header__accessibility__option {
  padding: 0.3rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .uw__header__accessibility__option {
    padding: 0.2rem;
  }
}
.uw__header__accessibility__option img {
  width: 60px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .uw__header__accessibility__option img {
    width: 30px;
  }
}
.uw__header__accessibility__option:hover {
  transform: scale(1.1);
}
.uw__header__selectors {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 1%;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.uw__header__menu__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 768px) {
  .uw__header__menu__toggle {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.uw__header__menu__toggle img {
  width: 50px;
  height: auto;
  transition: opacity 0.3s ease;
}
.uw__header__menu__toggle__icon {
  opacity: 1;
}
.uw__header__menu__toggle__close {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  opacity: 0;
}
.uw__header__menu__toggle.active .uw__header__menu__toggle__icon {
  opacity: 0;
}
.uw__header__menu__toggle.active .uw__header__menu__toggle__close {
  opacity: 1;
}
@media (max-width: 768px) {
  .uw__header__nav__list {
    gap: 0.5rem;
  }
}

.admin-bar .uw__header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .uw__header {
    top: 46px;
  }
}
.uw__header__helper {
  height: 150px;
  background-color: white;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 95;
  pointer-events: none;
}
@media (max-width: 768px) {
  .uw__header__helper {
    height: 80px;
  }
}

.admin-bar .uw__header__helper {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .uw__header__helper {
    top: 46px;
  }
}
.uw__footer {
  color: white;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 768px) {
  .uw__footer {
    flex-direction: column;
    row-gap: 20px;
  }
}
.uw__footer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 768px) {
  .uw__footer__content {
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
  }
}
.uw__footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.uw__footer__logo a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.uw__footer__logo:hover a {
  color: #DAB6C2;
  transition: color 0.5s ease;
}
.uw__footer__patch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.uw__footer__patch a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.uw__footer__patch:hover a {
  color: #DAB6C2;
  transition: color 0.5s ease;
}
.uw__footer__ue {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .uw__footer__ue {
    margin: 8px 0;
  }
}
.uw__footer__ue img {
  width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .uw__footer__ue img {
    width: 400px;
  }
}
.uw__footer__patch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .uw__footer__patch {
    margin: 8px 0;
  }
}
.uw__footer__patch img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .uw__footer__patch img {
    width: 150px;
  }
}
.uw__footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.uw__footer__copyright {
  display: block;
  position: relative;
  text-align: center;
  font-weight: 700;
}
.uw__footer__up {
  display: block;
  right: 0px;
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .uw__footer__up {
    right: auto;
    transform: rotate(-90deg);
    margin-top: 10px;
  }
}
.uw__footer__up a {
  font-size: 30px;
  font-weight: 400;
  word-wrap: break-word;
  text-decoration: none;
  display: block;
  color: white;
}
@media (max-width: 768px) {
  .uw__footer__up a {
    font-size: 24px;
  }
}
.uw__footer__up:hover a {
  color: #DAB6C2;
}

.uw__footer__spiral {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}
.uw__footer__spiral img {
  width: 180px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.uw__draw {
  color: white;
  background-color: #5BAAAE;
}
.uw__draw__content {
  position: relative;
  height: 300px;
}
.uw__draw__content svg {
  position: absolute;
}
.uw__draw__content image {
  width: 100%;
  height: 100%;
}
.uw__draw__burbujas {
  width: 115px;
  height: 120px;
  right: 35%;
  transition: transform 0.3s ease;
}
.uw__draw__burbujas:hover {
  transform: rotate(-10deg);
}
.uw__draw__cuadros {
  width: 200px;
  height: 210px;
  left: 30%;
  top: 30%;
  transition: transform 0.6s ease;
}
.uw__draw__cuadros:hover {
  transform: rotate(20deg);
}
.uw__draw__ellipse {
  width: 115px;
  height: 120px;
  right: 15%;
  top: 60%;
  transition: transform 0.6s ease;
}
.uw__draw__ellipse:hover {
  transform: rotate(-5deg);
}
.uw__draw__morea {
  width: 115px;
  height: 120px;
  right: 5%;
  top: -5%;
  transition: transform 0.3s ease;
}
.uw__draw__morea:hover {
  transform: rotate(-15deg);
}
.uw__draw__naranja {
  width: 115px;
  height: 120px;
  right: 13%;
  top: 55%;
  transition: transform 0.6s ease;
}
.uw__draw__naranja:hover {
  transform: rotate(-5deg);
}
.uw__draw__small {
  width: 80px;
  height: 75px;
  left: 15%;
  top: 55%;
  transition: transform 0.6s ease;
}
.uw__draw__small:hover {
  transform: rotate(-25deg);
}
.uw__draw__hat {
  width: 115px;
  height: 120px;
  right: -5%;
  top: 70%;
  transition: transform 0.6s ease;
}
.uw__draw__hat:hover {
  transform: rotate(10deg);
}
.uw__draw__light {
  width: 100px;
  height: 105px;
  left: 30%;
  top: -5%;
  transform: rotate(-30deg);
  transition: transform 0.6s ease;
}
.uw__draw__light:hover {
  transform: rotate(-5deg);
}
.uw__draw__pc {
  width: 100px;
  height: 105px;
  left: 5%;
  top: 65%;
  transition: transform 0.6s ease;
}
.uw__draw__pc:hover {
  transform: rotate(-5deg);
}
.uw__draw__smile {
  width: 115px;
  height: 120px;
  right: 20%;
  top: 60%;
  transform: rotate(5deg);
  transition: transform 0.6s ease;
}
.uw__draw__smile:hover {
  transform: rotate(-5deg);
}
.uw__draw__caracol {
  width: 180px;
  height: 190px;
  left: 5%;
  stroke: black;
  fill: transparent;
  stroke-width: 1;
  stroke-dasharray: 15 10;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.5s ease;
}
.uw__draw__caracol:hover {
  stroke-dashoffset: 0;
}
.uw__draw__bean {
  width: 275px;
  height: 315px;
  right: 5%;
  transform: rotate(30deg);
  stroke: black;
  fill: transparent;
  stroke-width: 1;
  stroke-dasharray: 15 10;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 1.2s ease;
}
.uw__draw__bean:hover {
  stroke-dashoffset: 0;
}
@media (max-width: 768px) {
  .uw__draw__content {
    height: 200px;
  }
  .uw__draw__burbujas, .uw__draw__ellipse, .uw__draw__morea, .uw__draw__naranja, .uw__draw__small, .uw__draw__hat, .uw__draw__light, .uw__draw__pc, .uw__draw__smile {
    width: 70px;
    height: 75px;
  }
  .uw__draw__cuadros {
    width: 120px;
    height: 130px;
  }
  .uw__draw__caracol {
    width: 120px;
    height: 130px;
  }
  .uw__draw__bean {
    width: 180px;
    height: 210px;
  }
}

.uw__image {
  color: white;
  background-color: #666;
}
.uw__image__content {
  max-width: 1200px;
  width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .uw__image__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0.5rem;
    gap: 1rem;
  }
}
.uw__image__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .uw__image__grid {
    gap: 1rem;
  }
}
.uw__image__item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .uw__image__item img {
    border-radius: 4px;
  }
}
.uw__image__item img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .uw__image__item img:hover {
    transform: translateY(-2px);
  }
}

.uw__resources {
  color: white;
  background-color: #6B5B61;
  min-height: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .uw__resources {
    min-height: auto;
  }
}
.uw__resources__content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .uw__resources__content {
    padding: 15px 0;
    row-gap: 15px;
  }
}
.uw__resources__content h2 {
  transition: font-size 0.5s ease, font-weight 0.5s ease;
  text-align: center;
}
.uw__resources__content h2:hover {
  font-size: 45px;
}
@media (max-width: 768px) {
  .uw__resources__content h2:hover {
    font-size: 32px;
  }
}
.uw__resources__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .uw__resources__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.uw__resources__item, .uw__resources__item_newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.uw__resources__item img, .uw__resources__item_newsletter img {
  width: 100%;
  height: auto;
  display: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .uw__resources__item img, .uw__resources__item_newsletter img {
    border-radius: 4px;
  }
}
.uw__resources__item img:hover, .uw__resources__item_newsletter img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .uw__resources__item img:hover, .uw__resources__item_newsletter img:hover {
    transform: translateY(-2px);
  }
}
.uw__resources__text {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .uw__resources__text {
    font-size: 1rem;
    margin-top: 8px;
  }
}

.uw__newsletter {
  color: black;
  background-color: #e5b900;
  min-height: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .uw__newsletter {
    min-height: auto;
  }
}
.uw__newsletter__content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .uw__newsletter__content {
    padding: 15px 0;
    row-gap: 15px;
  }
}
.uw__newsletter__content h2 {
  transition: font-size 0.5s ease, font-weight 0.5s ease;
  text-align: center;
}
.uw__newsletter__content h2:hover {
  font-size: 45px;
}
@media (max-width: 768px) {
  .uw__newsletter__content h2:hover {
    font-size: 32px;
  }
}
.uw__newsletter__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .uw__newsletter__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.uw__newsletter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.uw__newsletter__item img {
  width: 100%;
  height: auto;
  display: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .uw__newsletter__item img {
    border-radius: 4px;
  }
}
.uw__newsletter__item img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .uw__newsletter__item img:hover {
    transform: translateY(-2px);
  }
}
.uw__newsletter__text {
  color: black;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .uw__newsletter__text {
    font-size: 1rem;
    margin-top: 8px;
  }
}

.uw__learning {
  color: white;
  background-color: #FA5F5B;
  min-height: 350px;
  height: auto;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .uw__learning {
    padding: 2rem 0;
    min-height: auto;
  }
}
.uw__learning__content {
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .uw__learning__content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
}
.uw__learning__moodle {
  width: 200%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .uw__learning__moodle {
    width: 100%;
  }
}
.uw__learning__moodle a {
  width: 100%;
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .uw__learning__moodle a {
    font-size: 0.9rem;
  }
}
.uw__learning__moodle a:hover {
  transform: translateY(-5px);
  transform: scale(1.05);
  color: #666;
}
@media (max-width: 768px) {
  .uw__learning__moodle a:hover {
    transform: scale(1.02);
  }
}
.uw__learning__moodle img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .uw__learning__moodle img {
    border-radius: 4px;
  }
}
.uw__learning__moodle img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .uw__learning__moodle img:hover {
    transform: translateY(-2px);
  }
}

.uw__partners {
  color: black;
  background-color: white;
  padding: 30px 0;
  height: 450px;
}
@media (max-width: 768px) {
  .uw__partners {
    padding: 20px 0;
    height: 350px;
  }
}
.uw__partners__content {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .uw__partners__content {
    padding: 15px 0;
  }
}
.uw__partners__carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.uw__partners__carousel__container {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .uw__partners__carousel__container {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}
.uw__partners__carousel__container::before, .uw__partners__carousel__container::after {
  content: "";
  position: absolute;
  top: 0;
  height: 80%;
  z-index: 2;
}
.uw__partners__carousel__track {
  display: flex;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 60px;
       column-gap: 60px;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .uw__partners__carousel__track {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.uw__partners__carousel__slide {
  flex: 0 0 auto;
  height: 100%;
  padding: 0 10px;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .uw__partners__carousel__slide {
    padding: 0 5px;
  }
}
.uw__partners__carousel__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .uw__partners__carousel__slide img {
    width: 80%;
    margin: 0 auto;
  }
}
.uw__partners__carousel__slide img:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .uw__partners__carousel__slide img:hover {
    transform: translateY(-2px);
  }
}
.uw__partners__carousel__slide.dimmed {
  opacity: 0.5;
}
.uw__partners__carousel__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: black;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 768px) {
  .uw__partners__carousel__button {
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 20px;
  }
}
.uw__partners__carousel__button__left, .uw__partners__carousel__button__right {
  font-size: 34px;
}
@media (max-width: 768px) {
  .uw__partners__carousel__button__left, .uw__partners__carousel__button__right {
    font-size: 24px;
  }
}

.uw__rrss {
  padding: 2rem 0;
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .uw__rrss {
    padding: 1.5rem 0;
  }
}
.uw__rrss__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .uw__rrss__content {
    padding: 0 0.5rem;
  }
}
.uw__rrss__social {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .uw__rrss__social {
    gap: 1.5rem;
  }
}
.uw__rrss__icon {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .uw__rrss__icon {
    height: 80px;
  }
}
.uw__rrss__icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.uw__rrss__icon a:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .uw__rrss__icon a:hover {
    transform: translateY(-2px);
  }
}
.uw__rrss__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.uw__objetive__text p,
.uw__about__text p,
.uw__partner__info__text p {
  margin-bottom: 1em;
  line-height: 1.6;
}
.uw__objetive__text ul,
.uw__about__text ul,
.uw__partner__info__text ul {
  margin: 1em 0;
  padding-left: 2em;
  list-style-type: disc;
}
.uw__objetive__text ul li,
.uw__about__text ul li,
.uw__partner__info__text ul li {
  margin-bottom: 0.5em;
  display: list-item;
}
.uw__objetive__text ul li ul,
.uw__about__text ul li ul,
.uw__partner__info__text ul li ul {
  list-style-type: circle;
  margin: 0.5em 0;
}
.uw__objetive__text ol,
.uw__about__text ol,
.uw__partner__info__text ol {
  margin: 1em 0;
  padding-left: 2em;
  list-style-type: decimal;
}
.uw__objetive__text h1, .uw__objetive__text h2, .uw__objetive__text h3, .uw__objetive__text h4, .uw__objetive__text h5, .uw__objetive__text h6,
.uw__about__text h1,
.uw__about__text h2,
.uw__about__text h3,
.uw__about__text h4,
.uw__about__text h5,
.uw__about__text h6,
.uw__partner__info__text h1,
.uw__partner__info__text h2,
.uw__partner__info__text h3,
.uw__partner__info__text h4,
.uw__partner__info__text h5,
.uw__partner__info__text h6 {
  margin: 1.5em 0 0.5em;
  line-height: 1.2;
}
.uw__objetive__text a,
.uw__about__text a,
.uw__partner__info__text a {
  color: inherit;
  text-decoration: underline;
}
.uw__objetive__text a:hover,
.uw__about__text a:hover,
.uw__partner__info__text a:hover {
  opacity: 0.8;
}
.uw__objetive__text blockquote,
.uw__about__text blockquote,
.uw__partner__info__text blockquote {
  margin: 1.5em 0;
  padding: 1em 2em;
  border-left: 4px solid #ccc;
  font-style: italic;
}
.uw__objetive__text strong,
.uw__about__text strong,
.uw__partner__info__text strong {
  font-weight: bold;
}
.uw__objetive__text em,
.uw__about__text em,
.uw__partner__info__text em {
  font-style: italic;
}
.uw__objetive__text * + *,
.uw__about__text * + *,
.uw__partner__info__text * + * {
  margin-top: 1em;
}

body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.uw__objetive,
.uw__about,
.uw__image,
.uw__learning,
.uw__partners,
.uw__partner,
.uw__resources,
.uw__newsletter,
.uw__rrss {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.uw__objetive {
  color: white;
  background-color: #EB7A14;
  min-height: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .uw__objetive {
    min-height: auto;
  }
}
.uw__objetive__content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .uw__objetive__content {
    padding: 15px 0;
    row-gap: 15px;
  }
}
.uw__objetive h2 {
  transition: font-size 0.5s ease, font-weight 0.5s ease;
  text-align: center;
}
.uw__objetive h2:hover {
  font-size: 45px;
}
@media (max-width: 768px) {
  .uw__objetive h2:hover {
    font-size: 32px;
  }
}

.uw__about {
  color: white;
  background-color: #8d77ab;
  min-height: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .uw__about {
    min-height: auto;
  }
}
.uw__about__content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .uw__about__content {
    padding: 15px 0;
    row-gap: 15px;
  }
}
.uw__about__content h2 {
  transition: font-size 0.5s ease, font-weight 0.5s ease;
  text-align: center;
}
.uw__about__content h2:hover {
  font-size: 45px;
}
@media (max-width: 768px) {
  .uw__about__content h2:hover {
    font-size: 32px;
  }
}

.uw__rrss {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.uw__rrss__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.uw__rrss__text {
  font-size: 40px;
  color: #1A1A1A;
  text-align: center;
  line-height: 1.5;
  padding: 10px;
}
@media (max-width: 768px) {
  .uw__rrss__text {
    font-size: 28px;
    padding: 8px;
  }
}

/* 
 * Estilos para accesibilidad
 * ----------------------------------
 * Este archivo contiene todos los estilos relacionados con
 * las funcionalidades de accesibilidad como contraste y tamaño de texto.
 */
/* Transiciones globales para cambio de modo */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.uw__objetive,
.uw__about,
.uw__image,
.uw__learning,
.uw__resources,
.uw__partners,
.uw__partner,
.uw__rrss {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estilos para los modos de contraste */
.high-contrast {
  background-color: #000 !important;
  color: #fff !important;
  /* Preservamos el header y el footer */
  /* Aplicamos contraste solo a las demás secciones */
}
.high-contrast a:not(.uw__header a), .high-contrast button:not(.uw__header button),
.high-contrast h1:not(.uw__header h1), .high-contrast h2:not(.uw__header h2),
.high-contrast h3:not(.uw__header h3), .high-contrast h4:not(.uw__header h4),
.high-contrast h5:not(.uw__header h5), .high-contrast h6:not(.uw__header h6) {
  color: #ffff00 !important;
}
.high-contrast .uw__header, .high-contrast .uw__partners, .high-contrast .uw__footer {
  /* Mantener estilos originales */
}
.high-contrast .uw__partner, .high-contrast .uw__objetive, .high-contrast .uw__image, .high-contrast .uw__newsletter {
  background-color: #333 !important;
  color: #fff !important;
}
.high-contrast .uw__partner .uw__resources__text,
.high-contrast .uw__partner a, .high-contrast .uw__partner button, .high-contrast .uw__partner h1, .high-contrast .uw__partner h2, .high-contrast .uw__partner h3, .high-contrast .uw__partner h4, .high-contrast .uw__partner h5, .high-contrast .uw__partner h6, .high-contrast .uw__objetive .uw__resources__text,
.high-contrast .uw__objetive a, .high-contrast .uw__objetive button, .high-contrast .uw__objetive h1, .high-contrast .uw__objetive h2, .high-contrast .uw__objetive h3, .high-contrast .uw__objetive h4, .high-contrast .uw__objetive h5, .high-contrast .uw__objetive h6, .high-contrast .uw__image .uw__resources__text,
.high-contrast .uw__image a, .high-contrast .uw__image button, .high-contrast .uw__image h1, .high-contrast .uw__image h2, .high-contrast .uw__image h3, .high-contrast .uw__image h4, .high-contrast .uw__image h5, .high-contrast .uw__image h6, .high-contrast .uw__newsletter .uw__resources__text,
.high-contrast .uw__newsletter a, .high-contrast .uw__newsletter button, .high-contrast .uw__newsletter h1, .high-contrast .uw__newsletter h2, .high-contrast .uw__newsletter h3, .high-contrast .uw__newsletter h4, .high-contrast .uw__newsletter h5, .high-contrast .uw__newsletter h6 {
  color: #ffff00 !important;
}
.high-contrast .uw__partner .uw__partner__info, .high-contrast .uw__objetive .uw__partner__info, .high-contrast .uw__image .uw__partner__info, .high-contrast .uw__newsletter .uw__partner__info {
  background-color: #333 !important;
  color: #ffff00 !important;
}
.high-contrast .uw__partner .uw__partner__info p, .high-contrast .uw__objetive .uw__partner__info p, .high-contrast .uw__image .uw__partner__info p, .high-contrast .uw__newsletter .uw__partner__info p {
  color: #fff !important;
}
.high-contrast .uw__resources, .high-contrast .uw__draw, .high-contrast .uw__about, .high-contrast .uw__learning, .high-contrast .uw__rrss {
  background-color: #666 !important;
  color: #fff !important;
}
.high-contrast .uw__resources .uw__resources__text,
.high-contrast .uw__resources a, .high-contrast .uw__resources button, .high-contrast .uw__resources h1, .high-contrast .uw__resources h2, .high-contrast .uw__resources h3, .high-contrast .uw__resources h4, .high-contrast .uw__resources h5, .high-contrast .uw__resources h6, .high-contrast .uw__draw .uw__resources__text,
.high-contrast .uw__draw a, .high-contrast .uw__draw button, .high-contrast .uw__draw h1, .high-contrast .uw__draw h2, .high-contrast .uw__draw h3, .high-contrast .uw__draw h4, .high-contrast .uw__draw h5, .high-contrast .uw__draw h6, .high-contrast .uw__about .uw__resources__text,
.high-contrast .uw__about a, .high-contrast .uw__about button, .high-contrast .uw__about h1, .high-contrast .uw__about h2, .high-contrast .uw__about h3, .high-contrast .uw__about h4, .high-contrast .uw__about h5, .high-contrast .uw__about h6, .high-contrast .uw__learning .uw__resources__text,
.high-contrast .uw__learning a, .high-contrast .uw__learning button, .high-contrast .uw__learning h1, .high-contrast .uw__learning h2, .high-contrast .uw__learning h3, .high-contrast .uw__learning h4, .high-contrast .uw__learning h5, .high-contrast .uw__learning h6, .high-contrast .uw__rrss .uw__resources__text,
.high-contrast .uw__rrss a, .high-contrast .uw__rrss button, .high-contrast .uw__rrss h1, .high-contrast .uw__rrss h2, .high-contrast .uw__rrss h3, .high-contrast .uw__rrss h4, .high-contrast .uw__rrss h5, .high-contrast .uw__rrss h6 {
  color: #ffff00 !important;
}

.low-contrast {
  background-color: #f5f5f5 !important;
  color: #000 !important;
  /* Preservamos el header y el footer */
  /* Aplicamos contraste solo a las demás secciones */
}
.low-contrast .uw__resources__text,
.low-contrast a, .low-contrast button, .low-contrast h1, .low-contrast h2, .low-contrast h3, .low-contrast h4, .low-contrast h5, .low-contrast h6 {
  color: #0066cc !important;
}
.low-contrast a:not(.uw__header a), .low-contrast button:not(.uw__header button) {
  color: #0066cc !important;
}
.low-contrast .uw__header, .low-contrast .uw__partners, .low-contrast .uw__footer {
  /* Mantener estilos originales */
}
.low-contrast .uw__partner, .low-contrast .uw__objetive, .low-contrast .uw__image, .low-contrast .uw__newsletter {
  background-color: #e0e0e0 !important;
  color: #000 !important;
}
.low-contrast .uw__partner .uw__resources__text,
.low-contrast .uw__partner a, .low-contrast .uw__partner button, .low-contrast .uw__partner h1, .low-contrast .uw__partner h2, .low-contrast .uw__partner h3, .low-contrast .uw__partner h4, .low-contrast .uw__partner h5, .low-contrast .uw__partner h6, .low-contrast .uw__objetive .uw__resources__text,
.low-contrast .uw__objetive a, .low-contrast .uw__objetive button, .low-contrast .uw__objetive h1, .low-contrast .uw__objetive h2, .low-contrast .uw__objetive h3, .low-contrast .uw__objetive h4, .low-contrast .uw__objetive h5, .low-contrast .uw__objetive h6, .low-contrast .uw__image .uw__resources__text,
.low-contrast .uw__image a, .low-contrast .uw__image button, .low-contrast .uw__image h1, .low-contrast .uw__image h2, .low-contrast .uw__image h3, .low-contrast .uw__image h4, .low-contrast .uw__image h5, .low-contrast .uw__image h6, .low-contrast .uw__newsletter .uw__resources__text,
.low-contrast .uw__newsletter a, .low-contrast .uw__newsletter button, .low-contrast .uw__newsletter h1, .low-contrast .uw__newsletter h2, .low-contrast .uw__newsletter h3, .low-contrast .uw__newsletter h4, .low-contrast .uw__newsletter h5, .low-contrast .uw__newsletter h6 {
  color: #0066cc !important;
}
.low-contrast .uw__partner .uw__partner__info, .low-contrast .uw__objetive .uw__partner__info, .low-contrast .uw__image .uw__partner__info, .low-contrast .uw__newsletter .uw__partner__info {
  background-color: #e0e0e0 !important;
  color: #0066cc !important;
}
.low-contrast .uw__partner .uw__partner__info p, .low-contrast .uw__objetive .uw__partner__info p, .low-contrast .uw__image .uw__partner__info p, .low-contrast .uw__newsletter .uw__partner__info p {
  color: #000 !important;
}
.low-contrast .uw__resources, .low-contrast .uw__draw, .low-contrast .uw__about, .low-contrast .uw__learning, .low-contrast .uw__rrss {
  background-color: #f0f0f0 !important;
  color: #000 !important;
}
.low-contrast .uw__resources .uw__resources__text,
.low-contrast .uw__resources a, .low-contrast .uw__resources button, .low-contrast .uw__resources h1, .low-contrast .uw__resources h2, .low-contrast .uw__resources h3, .low-contrast .uw__resources h4, .low-contrast .uw__resources h5, .low-contrast .uw__resources h6, .low-contrast .uw__draw .uw__resources__text,
.low-contrast .uw__draw a, .low-contrast .uw__draw button, .low-contrast .uw__draw h1, .low-contrast .uw__draw h2, .low-contrast .uw__draw h3, .low-contrast .uw__draw h4, .low-contrast .uw__draw h5, .low-contrast .uw__draw h6, .low-contrast .uw__about .uw__resources__text,
.low-contrast .uw__about a, .low-contrast .uw__about button, .low-contrast .uw__about h1, .low-contrast .uw__about h2, .low-contrast .uw__about h3, .low-contrast .uw__about h4, .low-contrast .uw__about h5, .low-contrast .uw__about h6, .low-contrast .uw__learning .uw__resources__text,
.low-contrast .uw__learning a, .low-contrast .uw__learning button, .low-contrast .uw__learning h1, .low-contrast .uw__learning h2, .low-contrast .uw__learning h3, .low-contrast .uw__learning h4, .low-contrast .uw__learning h5, .low-contrast .uw__learning h6, .low-contrast .uw__rrss .uw__resources__text,
.low-contrast .uw__rrss a, .low-contrast .uw__rrss button, .low-contrast .uw__rrss h1, .low-contrast .uw__rrss h2, .low-contrast .uw__rrss h3, .low-contrast .uw__rrss h4, .low-contrast .uw__rrss h5, .low-contrast .uw__rrss h6 {
  color: #0066cc !important;
}

/* Estilos para tamaños de fuente */
.font-size-large {
  /* Excluimos el header para mantener su tamaño original */
}
.font-size-large .uw__partners h1, .font-size-large .uw__partner h1, .font-size-large .uw__about h1, .font-size-large .uw__objetive h1,
.font-size-large .uw__rrss h1, .font-size-large .uw__resources h1, .font-size-large .uw__learning h1, .font-size-large .uw__image h1, .font-size-large .uw__draw h1, .font-size-large .uw__newsletter h1 {
  font-size: 66px !important;
}
@media (max-width: 768px) {
  .font-size-large .uw__partners h1, .font-size-large .uw__partner h1, .font-size-large .uw__about h1, .font-size-large .uw__objetive h1,
  .font-size-large .uw__rrss h1, .font-size-large .uw__resources h1, .font-size-large .uw__learning h1, .font-size-large .uw__image h1, .font-size-large .uw__draw h1, .font-size-large .uw__newsletter h1 {
    font-size: 44px !important;
  }
}
.font-size-large .uw__partners h2, .font-size-large .uw__partners .uw__partner__info__title, .font-size-large .uw__partners .uw__about__title,
.font-size-large .uw__partners .uw__objetive__title, .font-size-large .uw__partners .uw__rrss__title, .font-size-large .uw__partner h2, .font-size-large .uw__partner .uw__partner__info__title, .font-size-large .uw__partner .uw__about__title,
.font-size-large .uw__partner .uw__objetive__title, .font-size-large .uw__partner .uw__rrss__title, .font-size-large .uw__about h2, .font-size-large .uw__about .uw__partner__info__title, .font-size-large .uw__about .uw__about__title,
.font-size-large .uw__about .uw__objetive__title, .font-size-large .uw__about .uw__rrss__title, .font-size-large .uw__objetive h2, .font-size-large .uw__objetive .uw__partner__info__title, .font-size-large .uw__objetive .uw__about__title,
.font-size-large .uw__objetive .uw__objetive__title, .font-size-large .uw__objetive .uw__rrss__title,
.font-size-large .uw__rrss h2,
.font-size-large .uw__rrss .uw__partner__info__title,
.font-size-large .uw__rrss .uw__about__title,
.font-size-large .uw__rrss .uw__objetive__title,
.font-size-large .uw__rrss .uw__rrss__title, .font-size-large .uw__resources h2, .font-size-large .uw__resources .uw__partner__info__title, .font-size-large .uw__resources .uw__about__title,
.font-size-large .uw__resources .uw__objetive__title, .font-size-large .uw__resources .uw__rrss__title, .font-size-large .uw__learning h2, .font-size-large .uw__learning .uw__partner__info__title, .font-size-large .uw__learning .uw__about__title,
.font-size-large .uw__learning .uw__objetive__title, .font-size-large .uw__learning .uw__rrss__title, .font-size-large .uw__image h2, .font-size-large .uw__image .uw__partner__info__title, .font-size-large .uw__image .uw__about__title,
.font-size-large .uw__image .uw__objetive__title, .font-size-large .uw__image .uw__rrss__title, .font-size-large .uw__draw h2, .font-size-large .uw__draw .uw__partner__info__title, .font-size-large .uw__draw .uw__about__title,
.font-size-large .uw__draw .uw__objetive__title, .font-size-large .uw__draw .uw__rrss__title, .font-size-large .uw__newsletter h2, .font-size-large .uw__newsletter .uw__partner__info__title, .font-size-large .uw__newsletter .uw__about__title,
.font-size-large .uw__newsletter .uw__objetive__title, .font-size-large .uw__newsletter .uw__rrss__title {
  font-size: 60px !important;
}
@media (max-width: 768px) {
  .font-size-large .uw__partners h2, .font-size-large .uw__partners .uw__partner__info__title, .font-size-large .uw__partners .uw__about__title,
  .font-size-large .uw__partners .uw__objetive__title, .font-size-large .uw__partners .uw__rrss__title, .font-size-large .uw__partner h2, .font-size-large .uw__partner .uw__partner__info__title, .font-size-large .uw__partner .uw__about__title,
  .font-size-large .uw__partner .uw__objetive__title, .font-size-large .uw__partner .uw__rrss__title, .font-size-large .uw__about h2, .font-size-large .uw__about .uw__partner__info__title, .font-size-large .uw__about .uw__about__title,
  .font-size-large .uw__about .uw__objetive__title, .font-size-large .uw__about .uw__rrss__title, .font-size-large .uw__objetive h2, .font-size-large .uw__objetive .uw__partner__info__title, .font-size-large .uw__objetive .uw__about__title,
  .font-size-large .uw__objetive .uw__objetive__title, .font-size-large .uw__objetive .uw__rrss__title,
  .font-size-large .uw__rrss h2,
  .font-size-large .uw__rrss .uw__partner__info__title,
  .font-size-large .uw__rrss .uw__about__title,
  .font-size-large .uw__rrss .uw__objetive__title,
  .font-size-large .uw__rrss .uw__rrss__title, .font-size-large .uw__resources h2, .font-size-large .uw__resources .uw__partner__info__title, .font-size-large .uw__resources .uw__about__title,
  .font-size-large .uw__resources .uw__objetive__title, .font-size-large .uw__resources .uw__rrss__title, .font-size-large .uw__learning h2, .font-size-large .uw__learning .uw__partner__info__title, .font-size-large .uw__learning .uw__about__title,
  .font-size-large .uw__learning .uw__objetive__title, .font-size-large .uw__learning .uw__rrss__title, .font-size-large .uw__image h2, .font-size-large .uw__image .uw__partner__info__title, .font-size-large .uw__image .uw__about__title,
  .font-size-large .uw__image .uw__objetive__title, .font-size-large .uw__image .uw__rrss__title, .font-size-large .uw__draw h2, .font-size-large .uw__draw .uw__partner__info__title, .font-size-large .uw__draw .uw__about__title,
  .font-size-large .uw__draw .uw__objetive__title, .font-size-large .uw__draw .uw__rrss__title, .font-size-large .uw__newsletter h2, .font-size-large .uw__newsletter .uw__partner__info__title, .font-size-large .uw__newsletter .uw__about__title,
  .font-size-large .uw__newsletter .uw__objetive__title, .font-size-large .uw__newsletter .uw__rrss__title {
    font-size: 40px !important;
  }
}
.font-size-large .uw__partners .uw__resources__text, .font-size-large .uw__partners .uw__newsletter__text, .font-size-large .uw__partners .uw__partner__info__text,
.font-size-large .uw__partners p, .font-size-large .uw__partners li, .font-size-large .uw__partners a, .font-size-large .uw__partners button, .font-size-large .uw__partner .uw__resources__text, .font-size-large .uw__partner .uw__newsletter__text, .font-size-large .uw__partner .uw__partner__info__text,
.font-size-large .uw__partner p, .font-size-large .uw__partner li, .font-size-large .uw__partner a, .font-size-large .uw__partner button, .font-size-large .uw__about .uw__resources__text, .font-size-large .uw__about .uw__newsletter__text, .font-size-large .uw__about .uw__partner__info__text,
.font-size-large .uw__about p, .font-size-large .uw__about li, .font-size-large .uw__about a, .font-size-large .uw__about button, .font-size-large .uw__objetive .uw__resources__text, .font-size-large .uw__objetive .uw__newsletter__text, .font-size-large .uw__objetive .uw__partner__info__text,
.font-size-large .uw__objetive p, .font-size-large .uw__objetive li, .font-size-large .uw__objetive a, .font-size-large .uw__objetive button,
.font-size-large .uw__rrss .uw__resources__text,
.font-size-large .uw__rrss .uw__newsletter__text,
.font-size-large .uw__rrss .uw__partner__info__text,
.font-size-large .uw__rrss p,
.font-size-large .uw__rrss li,
.font-size-large .uw__rrss a,
.font-size-large .uw__rrss button, .font-size-large .uw__resources .uw__resources__text, .font-size-large .uw__resources .uw__newsletter__text, .font-size-large .uw__resources .uw__partner__info__text,
.font-size-large .uw__resources p, .font-size-large .uw__resources li, .font-size-large .uw__resources a, .font-size-large .uw__resources button, .font-size-large .uw__learning .uw__resources__text, .font-size-large .uw__learning .uw__newsletter__text, .font-size-large .uw__learning .uw__partner__info__text,
.font-size-large .uw__learning p, .font-size-large .uw__learning li, .font-size-large .uw__learning a, .font-size-large .uw__learning button, .font-size-large .uw__image .uw__resources__text, .font-size-large .uw__image .uw__newsletter__text, .font-size-large .uw__image .uw__partner__info__text,
.font-size-large .uw__image p, .font-size-large .uw__image li, .font-size-large .uw__image a, .font-size-large .uw__image button, .font-size-large .uw__draw .uw__resources__text, .font-size-large .uw__draw .uw__newsletter__text, .font-size-large .uw__draw .uw__partner__info__text,
.font-size-large .uw__draw p, .font-size-large .uw__draw li, .font-size-large .uw__draw a, .font-size-large .uw__draw button, .font-size-large .uw__newsletter .uw__resources__text, .font-size-large .uw__newsletter .uw__newsletter__text, .font-size-large .uw__newsletter .uw__partner__info__text,
.font-size-large .uw__newsletter p, .font-size-large .uw__newsletter li, .font-size-large .uw__newsletter a, .font-size-large .uw__newsletter button {
  font-size: 40px !important;
}
@media (max-width: 768px) {
  .font-size-large .uw__partners .uw__resources__text, .font-size-large .uw__partners .uw__newsletter__text, .font-size-large .uw__partners .uw__partner__info__text,
  .font-size-large .uw__partners p, .font-size-large .uw__partners li, .font-size-large .uw__partners a, .font-size-large .uw__partners button, .font-size-large .uw__partner .uw__resources__text, .font-size-large .uw__partner .uw__newsletter__text, .font-size-large .uw__partner .uw__partner__info__text,
  .font-size-large .uw__partner p, .font-size-large .uw__partner li, .font-size-large .uw__partner a, .font-size-large .uw__partner button, .font-size-large .uw__about .uw__resources__text, .font-size-large .uw__about .uw__newsletter__text, .font-size-large .uw__about .uw__partner__info__text,
  .font-size-large .uw__about p, .font-size-large .uw__about li, .font-size-large .uw__about a, .font-size-large .uw__about button, .font-size-large .uw__objetive .uw__resources__text, .font-size-large .uw__objetive .uw__newsletter__text, .font-size-large .uw__objetive .uw__partner__info__text,
  .font-size-large .uw__objetive p, .font-size-large .uw__objetive li, .font-size-large .uw__objetive a, .font-size-large .uw__objetive button,
  .font-size-large .uw__rrss .uw__resources__text,
  .font-size-large .uw__rrss .uw__newsletter__text,
  .font-size-large .uw__rrss .uw__partner__info__text,
  .font-size-large .uw__rrss p,
  .font-size-large .uw__rrss li,
  .font-size-large .uw__rrss a,
  .font-size-large .uw__rrss button, .font-size-large .uw__resources .uw__resources__text, .font-size-large .uw__resources .uw__newsletter__text, .font-size-large .uw__resources .uw__partner__info__text,
  .font-size-large .uw__resources p, .font-size-large .uw__resources li, .font-size-large .uw__resources a, .font-size-large .uw__resources button, .font-size-large .uw__learning .uw__resources__text, .font-size-large .uw__learning .uw__newsletter__text, .font-size-large .uw__learning .uw__partner__info__text,
  .font-size-large .uw__learning p, .font-size-large .uw__learning li, .font-size-large .uw__learning a, .font-size-large .uw__learning button, .font-size-large .uw__image .uw__resources__text, .font-size-large .uw__image .uw__newsletter__text, .font-size-large .uw__image .uw__partner__info__text,
  .font-size-large .uw__image p, .font-size-large .uw__image li, .font-size-large .uw__image a, .font-size-large .uw__image button, .font-size-large .uw__draw .uw__resources__text, .font-size-large .uw__draw .uw__newsletter__text, .font-size-large .uw__draw .uw__partner__info__text,
  .font-size-large .uw__draw p, .font-size-large .uw__draw li, .font-size-large .uw__draw a, .font-size-large .uw__draw button, .font-size-large .uw__newsletter .uw__resources__text, .font-size-large .uw__newsletter .uw__newsletter__text, .font-size-large .uw__newsletter .uw__partner__info__text,
  .font-size-large .uw__newsletter p, .font-size-large .uw__newsletter li, .font-size-large .uw__newsletter a, .font-size-large .uw__newsletter button {
    font-size: 28px !important;
  }
}

.font-size-small {
  /* Excluimos el header para mantener su tamaño original */
}
.font-size-small .uw__partners h1, .font-size-small .uw__partner h1, .font-size-small .uw__about h1, .font-size-small .uw__objetive h1,
.font-size-small .uw__rrss h1, .font-size-small .uw__resources h1, .font-size-small .uw__learning h1, .font-size-small .uw__image h1, .font-size-small .uw__draw h1, .font-size-small .uw__newsletter h1 {
  font-size: 30px !important;
}
@media (max-width: 768px) {
  .font-size-small .uw__partners h1, .font-size-small .uw__partner h1, .font-size-small .uw__about h1, .font-size-small .uw__objetive h1,
  .font-size-small .uw__rrss h1, .font-size-small .uw__resources h1, .font-size-small .uw__learning h1, .font-size-small .uw__image h1, .font-size-small .uw__draw h1, .font-size-small .uw__newsletter h1 {
    font-size: 26px !important;
  }
}
.font-size-small .uw__partners h2, .font-size-small .uw__partners .uw__partner__info__title, .font-size-small .uw__partners .uw__about__title,
.font-size-small .uw__partners .uw__objetive__title, .font-size-small .uw__partners .uw__rrss__title, .font-size-small .uw__partner h2, .font-size-small .uw__partner .uw__partner__info__title, .font-size-small .uw__partner .uw__about__title,
.font-size-small .uw__partner .uw__objetive__title, .font-size-small .uw__partner .uw__rrss__title, .font-size-small .uw__about h2, .font-size-small .uw__about .uw__partner__info__title, .font-size-small .uw__about .uw__about__title,
.font-size-small .uw__about .uw__objetive__title, .font-size-small .uw__about .uw__rrss__title, .font-size-small .uw__objetive h2, .font-size-small .uw__objetive .uw__partner__info__title, .font-size-small .uw__objetive .uw__about__title,
.font-size-small .uw__objetive .uw__objetive__title, .font-size-small .uw__objetive .uw__rrss__title,
.font-size-small .uw__rrss h2,
.font-size-small .uw__rrss .uw__partner__info__title,
.font-size-small .uw__rrss .uw__about__title,
.font-size-small .uw__rrss .uw__objetive__title,
.font-size-small .uw__rrss .uw__rrss__title, .font-size-small .uw__resources h2, .font-size-small .uw__resources .uw__partner__info__title, .font-size-small .uw__resources .uw__about__title,
.font-size-small .uw__resources .uw__objetive__title, .font-size-small .uw__resources .uw__rrss__title, .font-size-small .uw__learning h2, .font-size-small .uw__learning .uw__partner__info__title, .font-size-small .uw__learning .uw__about__title,
.font-size-small .uw__learning .uw__objetive__title, .font-size-small .uw__learning .uw__rrss__title, .font-size-small .uw__image h2, .font-size-small .uw__image .uw__partner__info__title, .font-size-small .uw__image .uw__about__title,
.font-size-small .uw__image .uw__objetive__title, .font-size-small .uw__image .uw__rrss__title, .font-size-small .uw__draw h2, .font-size-small .uw__draw .uw__partner__info__title, .font-size-small .uw__draw .uw__about__title,
.font-size-small .uw__draw .uw__objetive__title, .font-size-small .uw__draw .uw__rrss__title, .font-size-small .uw__newsletter h2, .font-size-small .uw__newsletter .uw__partner__info__title, .font-size-small .uw__newsletter .uw__about__title,
.font-size-small .uw__newsletter .uw__objetive__title, .font-size-small .uw__newsletter .uw__rrss__title {
  font-size: 24px !important;
}
@media (max-width: 768px) {
  .font-size-small .uw__partners h2, .font-size-small .uw__partners .uw__partner__info__title, .font-size-small .uw__partners .uw__about__title,
  .font-size-small .uw__partners .uw__objetive__title, .font-size-small .uw__partners .uw__rrss__title, .font-size-small .uw__partner h2, .font-size-small .uw__partner .uw__partner__info__title, .font-size-small .uw__partner .uw__about__title,
  .font-size-small .uw__partner .uw__objetive__title, .font-size-small .uw__partner .uw__rrss__title, .font-size-small .uw__about h2, .font-size-small .uw__about .uw__partner__info__title, .font-size-small .uw__about .uw__about__title,
  .font-size-small .uw__about .uw__objetive__title, .font-size-small .uw__about .uw__rrss__title, .font-size-small .uw__objetive h2, .font-size-small .uw__objetive .uw__partner__info__title, .font-size-small .uw__objetive .uw__about__title,
  .font-size-small .uw__objetive .uw__objetive__title, .font-size-small .uw__objetive .uw__rrss__title,
  .font-size-small .uw__rrss h2,
  .font-size-small .uw__rrss .uw__partner__info__title,
  .font-size-small .uw__rrss .uw__about__title,
  .font-size-small .uw__rrss .uw__objetive__title,
  .font-size-small .uw__rrss .uw__rrss__title, .font-size-small .uw__resources h2, .font-size-small .uw__resources .uw__partner__info__title, .font-size-small .uw__resources .uw__about__title,
  .font-size-small .uw__resources .uw__objetive__title, .font-size-small .uw__resources .uw__rrss__title, .font-size-small .uw__learning h2, .font-size-small .uw__learning .uw__partner__info__title, .font-size-small .uw__learning .uw__about__title,
  .font-size-small .uw__learning .uw__objetive__title, .font-size-small .uw__learning .uw__rrss__title, .font-size-small .uw__image h2, .font-size-small .uw__image .uw__partner__info__title, .font-size-small .uw__image .uw__about__title,
  .font-size-small .uw__image .uw__objetive__title, .font-size-small .uw__image .uw__rrss__title, .font-size-small .uw__draw h2, .font-size-small .uw__draw .uw__partner__info__title, .font-size-small .uw__draw .uw__about__title,
  .font-size-small .uw__draw .uw__objetive__title, .font-size-small .uw__draw .uw__rrss__title, .font-size-small .uw__newsletter h2, .font-size-small .uw__newsletter .uw__partner__info__title, .font-size-small .uw__newsletter .uw__about__title,
  .font-size-small .uw__newsletter .uw__objetive__title, .font-size-small .uw__newsletter .uw__rrss__title {
    font-size: 20px !important;
  }
}
.font-size-small .uw__partners .uw__resources__text, .font-size-small .uw__partners .uw__newsletter__text, .font-size-small .uw__partners .uw__partner__info__text,
.font-size-small .uw__partners p, .font-size-small .uw__partners li, .font-size-small .uw__partners a, .font-size-small .uw__partners button, .font-size-small .uw__partner .uw__resources__text, .font-size-small .uw__partner .uw__newsletter__text, .font-size-small .uw__partner .uw__partner__info__text,
.font-size-small .uw__partner p, .font-size-small .uw__partner li, .font-size-small .uw__partner a, .font-size-small .uw__partner button, .font-size-small .uw__about .uw__resources__text, .font-size-small .uw__about .uw__newsletter__text, .font-size-small .uw__about .uw__partner__info__text,
.font-size-small .uw__about p, .font-size-small .uw__about li, .font-size-small .uw__about a, .font-size-small .uw__about button, .font-size-small .uw__objetive .uw__resources__text, .font-size-small .uw__objetive .uw__newsletter__text, .font-size-small .uw__objetive .uw__partner__info__text,
.font-size-small .uw__objetive p, .font-size-small .uw__objetive li, .font-size-small .uw__objetive a, .font-size-small .uw__objetive button,
.font-size-small .uw__rrss .uw__resources__text,
.font-size-small .uw__rrss .uw__newsletter__text,
.font-size-small .uw__rrss .uw__partner__info__text,
.font-size-small .uw__rrss p,
.font-size-small .uw__rrss li,
.font-size-small .uw__rrss a,
.font-size-small .uw__rrss button, .font-size-small .uw__resources .uw__resources__text, .font-size-small .uw__resources .uw__newsletter__text, .font-size-small .uw__resources .uw__partner__info__text,
.font-size-small .uw__resources p, .font-size-small .uw__resources li, .font-size-small .uw__resources a, .font-size-small .uw__resources button, .font-size-small .uw__learning .uw__resources__text, .font-size-small .uw__learning .uw__newsletter__text, .font-size-small .uw__learning .uw__partner__info__text,
.font-size-small .uw__learning p, .font-size-small .uw__learning li, .font-size-small .uw__learning a, .font-size-small .uw__learning button, .font-size-small .uw__image .uw__resources__text, .font-size-small .uw__image .uw__newsletter__text, .font-size-small .uw__image .uw__partner__info__text,
.font-size-small .uw__image p, .font-size-small .uw__image li, .font-size-small .uw__image a, .font-size-small .uw__image button, .font-size-small .uw__draw .uw__resources__text, .font-size-small .uw__draw .uw__newsletter__text, .font-size-small .uw__draw .uw__partner__info__text,
.font-size-small .uw__draw p, .font-size-small .uw__draw li, .font-size-small .uw__draw a, .font-size-small .uw__draw button, .font-size-small .uw__newsletter .uw__resources__text, .font-size-small .uw__newsletter .uw__newsletter__text, .font-size-small .uw__newsletter .uw__partner__info__text,
.font-size-small .uw__newsletter p, .font-size-small .uw__newsletter li, .font-size-small .uw__newsletter a, .font-size-small .uw__newsletter button {
  font-size: 16px !important;
}
@media (max-width: 768px) {
  .font-size-small .uw__partners .uw__resources__text, .font-size-small .uw__partners .uw__newsletter__text, .font-size-small .uw__partners .uw__partner__info__text,
  .font-size-small .uw__partners p, .font-size-small .uw__partners li, .font-size-small .uw__partners a, .font-size-small .uw__partners button, .font-size-small .uw__partner .uw__resources__text, .font-size-small .uw__partner .uw__newsletter__text, .font-size-small .uw__partner .uw__partner__info__text,
  .font-size-small .uw__partner p, .font-size-small .uw__partner li, .font-size-small .uw__partner a, .font-size-small .uw__partner button, .font-size-small .uw__about .uw__resources__text, .font-size-small .uw__about .uw__newsletter__text, .font-size-small .uw__about .uw__partner__info__text,
  .font-size-small .uw__about p, .font-size-small .uw__about li, .font-size-small .uw__about a, .font-size-small .uw__about button, .font-size-small .uw__objetive .uw__resources__text, .font-size-small .uw__objetive .uw__newsletter__text, .font-size-small .uw__objetive .uw__partner__info__text,
  .font-size-small .uw__objetive p, .font-size-small .uw__objetive li, .font-size-small .uw__objetive a, .font-size-small .uw__objetive button,
  .font-size-small .uw__rrss .uw__resources__text,
  .font-size-small .uw__rrss .uw__newsletter__text,
  .font-size-small .uw__rrss .uw__partner__info__text,
  .font-size-small .uw__rrss p,
  .font-size-small .uw__rrss li,
  .font-size-small .uw__rrss a,
  .font-size-small .uw__rrss button, .font-size-small .uw__resources .uw__resources__text, .font-size-small .uw__resources .uw__newsletter__text, .font-size-small .uw__resources .uw__partner__info__text,
  .font-size-small .uw__resources p, .font-size-small .uw__resources li, .font-size-small .uw__resources a, .font-size-small .uw__resources button, .font-size-small .uw__learning .uw__resources__text, .font-size-small .uw__learning .uw__newsletter__text, .font-size-small .uw__learning .uw__partner__info__text,
  .font-size-small .uw__learning p, .font-size-small .uw__learning li, .font-size-small .uw__learning a, .font-size-small .uw__learning button, .font-size-small .uw__image .uw__resources__text, .font-size-small .uw__image .uw__newsletter__text, .font-size-small .uw__image .uw__partner__info__text,
  .font-size-small .uw__image p, .font-size-small .uw__image li, .font-size-small .uw__image a, .font-size-small .uw__image button, .font-size-small .uw__draw .uw__resources__text, .font-size-small .uw__draw .uw__newsletter__text, .font-size-small .uw__draw .uw__partner__info__text,
  .font-size-small .uw__draw p, .font-size-small .uw__draw li, .font-size-small .uw__draw a, .font-size-small .uw__draw button, .font-size-small .uw__newsletter .uw__resources__text, .font-size-small .uw__newsletter .uw__newsletter__text, .font-size-small .uw__newsletter .uw__partner__info__text,
  .font-size-small .uw__newsletter p, .font-size-small .uw__newsletter li, .font-size-small .uw__newsletter a, .font-size-small .uw__newsletter button {
    font-size: 14px !important;
  }
}/*# sourceMappingURL=style.css.map */