@import url(css_reset.css);
@import "https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Fjalla+One&family=Play:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap";
@import url("../fonts/generales/style.css");
@media screen and (max-width: 768px) {
  #inicio .header-template {
    margin-top: 4rem;
  }
}

.header-template {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 128rem;
  min-height: 15rem;
  margin: 0 auto;
}
.header-template h1 {
  display: block;
  width: 100%;
  color: #542584;
  font-weight: 600;
  font-size: clamp(3rem, 2.5vw + 1rem, 3rem);
  padding: 3rem 3rem;
  text-align: left;
  margin: 4rem auto;
}
.header-template h1 .titulo-ieem {
  display: block;
  font-size: clamp(1.8rem, 2vw + 1rem, 2rem);
  font-weight: 400;
  color: #002834;
}
@media screen and (max-width: 680px) {
  .header-template h1 {
    padding: 3rem 1rem;
  }
}
.header-template .content-logos {
  display: flex;
  align-items: center;
  margin: 5rem 0 0 3rem;
}
.header-template .content-logos a {
  display: flex;
  align-items: center;
  padding: 0 3rem 0 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 680px) {
  .header-template .content-logos a {
    padding: 0 1.5rem 0 0;
  }
}
.header-template .content-logos a > img {
  display: block;
  width: 12rem;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 680px) {
  .header-template .content-logos a > img {
    width: 10rem;
  }
}
.header-template .content-logos a::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 6rem;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #6e6e6e;
}
.header-template .content-logos img {
  display: block;
  width: auto;
  height: 8rem;
  margin-left: 3rem;
}
@media screen and (max-width: 680px) {
  .header-template .content-logos img {
    height: 4rem;
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 680px) {
  .header-template .content-logos {
    margin: 5rem 0 0 1rem;
  }
}
.header-template a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: auto;
  height: 1px;
  font-size: 1.4rem;
  overflow: hidden;
  z-index: -999;
}
.header-template a.skip-main:focus {
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 0 35%;
  padding: 5px;
  font-size: 20px;
  outline: 3px solid #fff;
  text-align: center;
  z-index: 999;
  color: #fff;
}

main.template {
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 10rem auto;
  overflow-wrap: break-word;
}
@media screen and (max-width: 680px) {
  main.template {
    padding: 0 1rem;
  }
}
main.template section {
  margin-bottom: 5rem;
}
main.template .title {
  display: block;
  text-align: left;
  margin: 2rem auto 3rem auto;
  font-size: clamp(2rem, 2vw + 1rem, 2rem);
  color: #652C90;
  position: relative;
  padding-bottom: 0.5rem;
}
main.template .title span {
  font-size: 1.6rem;
  font-weight: 300;
  display: block;
}
main.template .title::before {
  content: "";
  position: absolute;
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: #f09;
  bottom: 0;
  left: 0;
}
main.template .botonera {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}
main.template .botonera-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 2rem 1rem;
  padding-left: 2rem;
  list-style-type: disc;
}
main.template .botonera-list ::marker {
  color: #f09;
}
main.template .botonera-list a {
  font-weight: bold;
}
main.template .botonera-list a span {
  display: block;
  font-size: 1.4rem;
  font-weight: 100;
  color: #15161e;
}
main.template .important {
  background-color: #a5a3b0;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 40rem;
}
main.template .important .title {
  margin: 0;
}
main.template .important .title::before {
  display: none;
}
main.template .important p {
  color: #fff;
  margin: 0;
  font-weight: 100;
  text-align: left;
}
main.template .important p span {
  display: block;
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: 100;
}
main.template .important p span::before {
  font-family: "icomoon";
  font-size: 1.4rem;
  margin-right: 0.8rem;
  color: #f09;
}
main.template .important p span.tel::before {
  content: "\e942";
}
main.template .important p span.mail::before {
  content: "\e945";
}

.footer-template {
  display: block;
  width: 100%;
  background-color: #E3E3E3;
  color: #4B575E;
}
.footer-template section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
  gap: 3rem;
  padding: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-template section article.logo-ieem {
  display: flex;
}
.footer-template section article.logo-ieem .icon {
  color: #4B575E;
  margin-right: 2rem;
  height: 10rem;
}
.footer-template section article.logo-ieem .icon.icon-ieem-logo {
  font-size: 8rem;
  text-align: center;
}
.footer-template section article.logo-ieem .contactos-ieem {
  padding-top: 3rem;
}
.footer-template section article.logo-ieem .contactos-ieem h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.footer-template section article.logo-ieem .contactos-ieem .icon {
  font-size: 2.5rem;
  margin-right: 1rem;
  text-decoration: none;
  height: auto;
}
.footer-template section article.logo-ieem .contactos-ieem p {
  display: inline-block;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.footer-template section article.logo-ieem .contactos-ieem p.coe {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 900;
  color: #4B575E;
}
.footer-template section article.logo-ieem .contactos-ieem p.coe span {
  display: block;
  font-family: "icomoon";
}
.footer-template section article.logo-ieem .contactos-ieem span {
  display: inline;
}
.footer-template section article.logo-ieem .contactos-ieem a {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #4B575E;
  font-weight: 900;
}
.footer-template section article.redes ul {
  display: flex;
  flex-direction: row;
  margin: 2rem 0 4rem 0;
}
.footer-template section article.redes ul li {
  display: block;
  margin-right: 1rem;
}
.footer-template section article.redes ul li a {
  font-size: 3rem;
}
.footer-template section article.redes .icon {
  color: #4B575E;
}
.footer-template section article.redes .contactos-ieem {
  padding-top: 3rem;
}
.footer-template section article.redes .contactos-ieem p {
  font-size: 1.3rem;
}
.footer-template section article.redes img {
  display: block;
  width: 15rem;
  margin-bottom: 1rem;
}
.footer-template section article.redes p, .footer-template section article.redes a {
  font-size: 1.3rem;
}

@media screen and (max-width: 766px) {
  .footer-template section article {
    flex-direction: column;
  }
}
/*-----GENERALES-----*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  font-family: "Atkinson Hyperlegible", sans-serif;
  line-height: normal;
}
body::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 30rem;
  height: 30rem;
  background-image: url(../imagenes/layout/back-header.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}
@media screen and (max-width: 680px) {
  body::after {
    width: 12rem;
    height: 12rem;
  }
}

h2, h3, h4, h5 {
  font-family: "Atkinson Hyperlegible", sans-serif;
  color: #4B575E;
  font-weight: 700;
}

.subtitles {
  display: block;
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  position: relative;
  color: #4B575E;
}
.subtitles::before {
  display: block;
  content: "";
  width: 7rem;
  height: 0.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #f09;
}

a {
  text-decoration: none;
  color: #f09;
}

p {
  margin-bottom: 1.6rem;
  text-align: justify;
}

strong {
  font-weight: 900;
}

.icon {
  display: flex;
  font-family: "icomoon";
}

.btn {
  display: inline-block;
  width: fit-content;
  padding: 1rem 2rem;
  background-color: #f09;
  color: #fff;
  border-radius: 0.3rem;
  margin-top: 1rem;
  border: none;
}

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