@charset "UTF-8";
/*
    Funciones importantes:
        +variables $var: 
        +añadir compounds dentro de otros compounds
            {
                {
                }
            }

        +se puede hacer hover como: 
            button {
                color: red;
                &:hover{
                    color: blue;
                }
            }

        +importar otros archivos scss
            @import ""
*/
* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: MontBold;
  src: url("../fonts/Montserrat-Bold.otf") format("opentype");
}

@font-face {
  font-family: MontRegular;
  src: url("../fonts/Montserrat-Regular.otf") format("opentype");
}

@font-face {
  font-family: MontLight;
  src: url("../fonts/Montserrat-Light.otf") format("opentype");
}

@font-face {
  font-family: MontUltraLight;
  src: url("../fonts/Montserrat-UltraLight.otf") format("opentype");
}

@font-face {
  font-family: MontExtraBold;
  src: url("../fonts/Montserrat-ExtraBold.otf") format("opentype");
}

@font-face {
  font-family: MontHair;
  src: url("../fonts/Montserrat-Hairline.otf") format("opentype");
}

.home-tit-sm {
  width: 100%;
  text-align: center;
  padding-top: 280px;
  font-family: MontUltraLight;
  text-transform: uppercase;
  font-size: 20pt;
  color: #fff;
}

.home-tit-md {
  width: 100%;
  text-align: center;
  font-family: MontExtraBold;
  text-transform: uppercase;
  font-size: 70pt;
  color: #fff;
}

.home-desc {
  width: 50%;
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-family: MontLight;
}

.home-button {
  color: #808080;
  font-family: MontBold;
  background: #fff;
  width: 300px;
  height: 50px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  cursor: pointer;
}

.se-nosotros {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  position: relative;
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.se-nosotros .se-nosotros-info {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.se-nosotros .se-nosotros-info .se-nosotros-tit {
  widows: 90%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 10%;
  font-family: MontExtraBold;
  font-size: 30pt;
  text-transform: uppercase;
  color: #522d6d;
}

.se-nosotros .se-nosotros-info .se-nosotros-desc {
  margin-top: 30px;
  font-family: MontUltraLight;
  widows: 90%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 10%;
}

.se-nosotros .se-nosotros-info .se-nosotros-button {
  width: 200px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-family: MontBold;
  background: #ffb259;
  border-radius: 10px;
  margin-top: 30px;
  margin-left: 10%;
  cursor: pointer;
}

.se-nosotros .se-nosotros-img {
  width: 50%;
}

.se-nosotros .se-nosotros-img img {
  width: 80%;
}

.se-vision {
  width: 100%;
  height: 65vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  position: relative;
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-flow: wrap-reverse;
          flex-flow: wrap-reverse;
}

.se-vision .se-vision-info {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.se-vision .se-vision-info .se-vision-tit {
  width: 90%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: MontExtraBold;
  font-size: 30pt;
  text-transform: uppercase;
  color: #522d6d;
}

.se-vision .se-vision-info .se-vision-desc {
  margin-top: 30px;
  font-family: MontLight;
  width: 90%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  /* padding-left: 10%; */
}

.se-vision .se-vision-info .se-vision-button {
  width: 200px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-family: MontBold;
  background: #ffb259;
  border-radius: 10px;
  margin-top: 30px;
  margin-left: 10%;
  cursor: pointer;
}

.se-vision .se-vision-img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.se-vision .se-vision-img img {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.se-aprende {
  width: 100%;
  height: 60vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  position: relative;
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.se-aprende .se-aprende-info {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.se-aprende .se-aprende-info .se-aprende-tit {
  width: 90%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 10%;
  font-family: MontExtraBold;
  font-size: 30pt;
  text-transform: uppercase;
  color: #522d6d;
}

.se-aprende .se-aprende-info .se-aprende-desc {
  margin-top: 30px;
  font-family: MontLight;
  width: 90%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-left: 10%;
}

.se-aprende .se-aprende-info .se-aprende-button {
  width: 200px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-family: MontBold;
  background: #ff7f30;
  border-radius: 10px;
  margin-top: 30px;
  margin-left: 10%;
  cursor: pointer;
}

.se-aprende .se-aprende-img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.se-aprende .se-aprende-img img {
  width: 70%;
}

@media (max-width: 800px) {
  .se-aprende .se-aprende-img {
    width: 80% !important;
  }
  .se-aprende .se-aprende-img img {
    width: 100% !important;
  }
}

.capacitacion {
  height: 700px;
  width: 100%;
  background: url(../assets/Web_Capacitacion_Home_IMG.webp);
  background-color: #fff;
  background-size: auto 90%;
  background-position: left;
  background-repeat: no-repeat;
  background-position-x: 10%;
  padding-top: 50px;
  margin-bottom: 30px;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
}

.capacitacion .capacitacion-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.capacitacion .capacitacion-container .capacitacion-info {
  width: 60%;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -moz-max-content;
  position: relative;
  background: #fff;
  margin-left: auto;
  border-top-left-radius: 80px;
  padding-bottom: 40px;
}

.capacitacion .capacitacion-container .capacitacion-info .capacitacion-info-tit {
  width: 80%;
  margin-top: 40px;
  padding-left: 10%;
  font-family: MontExtraBold;
  font-size: 50pt;
  text-transform: uppercase;
  color: #522d6d;
}

.capacitacion .capacitacion-container .capacitacion-info .capacitacion-info-desc {
  width: 60%;
  padding-left: 10%;
  margin-top: 30px;
  text-align: justify;
  font-family: MontLight;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.capacitacion .capacitacion-container .capacitacion-info .capacitacion-info-button {
  width: 250px;
  height: 40px;
  border-radius: 10px;
  margin-left: 10%;
  margin-top: 45px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ff7f30;
  font-family: MontBold;
  font-size: 0.8em;
  cursor: pointer;
}

.resena {
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.resena .resena-texto {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 10px;
  font-family: MontLight;
}

.resena .resena-resenador {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: MontLight;
  font-size: 0.8em;
  color: #522d6d;
}

.resena .resena-especialidad {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: MontLight;
  font-size: 0.8em;
  color: #522d6d;
}

@media (max-width: 600px) {
  .capacitacion-info {
    padding-bottom: 0px !important;
    margin-top: 190px;
  }
}

a:link {
  color: #FFF !important;
  text-decoration: none !important;
}

.af-tit-text {
  z-index: 10;
  position: relative;
  width: 50%;
  margin-left: 100px;
  padding-top: 300px;
  font-family: MontBold;
  color: #522d6d;
  text-transform: uppercase;
  font-size: 3.6rem;
  word-break: break-word;
}

.af-desc-text {
  width: 45%;
  margin-left: 100px;
  margin-top: 40px;
  font-family: MontUltraLight;
  color: #a975b2;
  font-size: 1em;
}

.af-img {
  width: 45%;
  position: absolute;
  top: 150px;
  right: 50px;
}

[data-afiliacion="afiliacion"] {
  color: #a975b2 !important;
}

[data-desc="afiliacion"] {
  line-height: 25px !important;
  margin-top: 10px !important;
}

.motiva-afi {
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
  min-height: 200px;
  background: #fff;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
  padding-bottom: 50px;
}

.motiva-afi .motiva-afi-tit {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #a975b2;
  font-family: MontBold;
  font-size: 20pt;
  padding-top: 50px;
}

.motiva-afi .sub-afi {
  width: 100%;
  height: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.motiva-afi .sub-afi .sub-card {
  width: 60%;
  height: 340px;
  padding: 10px;
  background: #fff;
  -webkit-box-shadow: #3d2a4175 0px 4px 12px;
          box-shadow: #3d2a4175 0px 4px 12px;
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.motiva-afi .sub-afi .sub-card .sub-afi-tit {
  width: 80%;
  text-transform: uppercase;
  font-family: MontUltraLight;
  font-size: 25pt;
  color: #a975b2;
}

.motiva-afi .sub-afi .sub-card .sub-afi-tit p {
  font-family: MontBold;
}

.motiva-afi .sub-afi .sub-card .sub-afi-desc {
  width: 80%;
  font-family: MontUltraLight;
  margin-top: 10px;
  line-height: 25px;
}

.motiva-afi .sub-afi .sub-afi-img {
  width: 60%;
  height: 440px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}

.comunidad-tit {
  margin-top: 50px;
  width: 50%;
  text-align: center;
  font-family: MontBold;
  text-transform: uppercase;
  color: #a975b2;
  word-wrap: break-word;
  font-size: 25pt;
}

.comunidad-desc {
  width: 60%;
  text-align: center;
  margin-top: 20px;
  font-family: MontUltraLight;
  line-height: 25px;
}

.separador-resena {
  width: 100%;
}

.comunidad-imgs {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background-color: #d2d3d5;
  margin: 50px;
}

.afiliarse-2 {
  width: auto;
  padding-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
}

.afiliarse-2 .afiliarse2-texto {
  width: 60%;
}

.afiliarse-2 .af2-tit1 {
  width: 70%;
  font-family: MontBold;
  color: #ff7f30;
  text-transform: uppercase;
  font-size: 20pt;
  margin-top: 50px;
}

.afiliarse-2 .af2-desc1 {
  font-family: MontUltraLight;
  margin-top: 20px;
}

.afiliarse-2 .af2-tit2 {
  width: 100%;
  font-family: MontBold;
  color: #a975b2;
  text-transform: uppercase;
  font-size: 20pt;
  margin-top: 50px;
  margin-bottom: 20px;
}

.afiliarse-2 li {
  font-family: MontUltraLight;
  margin-top: 5px;
}

.afiliarse-2 li::marker {
  color: #ff7f30;
}

.afiliarse-2 .afiliarse2-img {
  width: 40%;
}

.afiliarse-2 .afiliarse2-img img {
  width: 100%;
  margin-top: 30px;
}

.afiliarse-2 .conocemas {
  width: 50%;
}

.afiliarse-2 .completaproceso {
  width: 50%;
}

.afiliarse-2 .cm-tit, .afiliarse-2 .cp-tit {
  font-family: MontBold;
  font-size: 20pt;
  color: #a975b2;
  text-transform: uppercase;
}

.afiliarse-2 .cm-desc, .afiliarse-2 .cp-desc {
  font-family: MontUltraLight;
  min-height: 120px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.afiliarse-2 .afiliarse-descargar {
  width: 150px;
  padding: 1px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  background-color: #ffb259;
  color: #fff;
  border-radius: 5px;
  font-family: MontBold;
  font-size: 0.8em;
  cursor: pointer;
}

.afiliarse-2 .afiliarse-boton {
  width: 220px;
  padding: 1px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  background-color: #ff7f30;
  color: #fff;
  border-radius: 5px;
  font-family: MontBold;
  font-size: 0.8em;
  cursor: pointer;
}

.conocermas {
  position: relative;
  height: 600px;
  margin-top: -150px;
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
  background-image: url("../assets/afiliación/Images_Divider_color.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.conocermas .conocermas-tit {
  text-align: center;
  font-family: 'MontBold';
  color: #522d6d;
  width: 70%;
  font-size: 20pt;
  text-transform: uppercase;
}

.conocermas .conocermas-desc {
  width: 100%;
  font-family: MontUltraLight;
  color: #522d6d;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 1440px) {
  .conocermas {
    padding-left: 10%;
    padding-right: 10%;
  }
  .conocermas-tit {
    width: 90%;
    font-size: 28pt;
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  .conocermas {
    padding-left: 10%;
    padding-right: 10%;
  }
  .conocermas-tit {
    width: 90%;
  }
}

@media (max-width: 900px) {
  .conocemas {
    width: 90% !important;
    margin-bottom: 20px;
  }
  .completaproceso {
    width: 90% !important;
  }
}

@media (max-width: 540px) {
  .conocermas {
    padding-left: 10%;
    padding-right: 10%;
    height: 525px;
  }
  .conocermas .conocermas-tit {
    width: 100%;
    font-size: 17pt;
  }
  .conocermas .conocermas-desc {
    font-size: .9rem;
  }
}

@media (max-width: 320px) {
  .conocermas-tit {
    font-size: 10pt;
  }
}

@media (max-width: 410px) {
  .conocermas {
    height: 470px;
    padding-left: 10%;
    padding-right: 10%;
  }
  .conocermas .conocermas-tit {
    font-size: 12pt;
    width: 100%;
  }
  .conocermas .conocermas-desc {
    font-size: .6rem;
  }
}

[data-desc="afiliacion"] {
  padding-right: 100px;
}

@media (max-width: 1000px) {
  .af-tit-text {
    padding-top: 200px !important;
  }
  [data-desc="afiliacion"] {
    padding-right: 0% !important;
  }
  .sub-card {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }
  .sub-afi {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
    margin: 50px 0px;
  }
}

@media (max-width: 800px) {
  .home-bienestar {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }
  .af-img, .at-img, .tall-img {
    position: inherit;
    width: 100% !important;
    margin-top: 40px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [afi-2="afiliacion"] {
    padding-bottom: 50px !important;
    height: 120vh !important;
    height: 120vh !important;
  }
  .motiva-afi-tit {
    margin-bottom: 60px;
  }
  [afi-2="img"] {
    width: 80% !important;
  }
  [afi-2="info"] {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .afiliarse2-img {
    width: 80% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cp-desc {
    margin: 10px 0px !important;
  }
}

@media (max-width: 600px) {
  [afi-2="info"] {
    margin-left: 10%;
    margin-top: unset !important;
  }
  .sub-afi-tit {
    font-size: 20pt !important;
  }
  .sub-card {
    width: 100% !important;
    position: inherit !important;
  }
  .motiva-afi {
    padding-left: 30px;
    padding-right: 30px;
  }
  .afiliarse-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .afiliarse2-texto {
    width: 90% !important;
  }
  .af2-tit1 {
    width: 100% !important;
  }
  .sub-afi-img {
    position: absolute !important;
  }
  .comunidad-tit {
    width: 90%;
  }
  .comunidad-desc {
    width: 90%;
  }
  .conocermas-desc {
    margin-bottom: 20px !important;
  }
}

@media (min-width: 320px) {
  .af-tit-text {
    padding-top: 150px !important;
    width: 80% !important;
    margin-left: 50px !important;
    font-size: 20pt !important;
  }
  .af-desc-text {
    width: 80% !important;
    margin-left: 50px !important;
  }
  [afi-2="afiliacion"] {
    margin-top: 40px !important;
  }
}

@media (min-width: 800px) {
  .af-tit-text {
    font-size: 20pt !important;
    padding-top: 300px !important;
    width: 50% !important;
    margin-left: 100px !important;
    font-size: 3.6rem !important;
  }
  .af-desc-text {
    width: 43% !important;
    margin-left: 100px !important;
  }
  [afi-2="afiliacion"] {
    margin-top: 20px !important;
    padding-bottom: 50px;
  }
  .cm-desc, .cp-desc {
    font-family: MontUltraLight;
    min-height: -webkit-max-content !important;
    min-height: -moz-max-content !important;
    min-height: max-content !important;
  }
}

@media (min-width: 1000px) {
  [afi-2="afiliacion"] {
    margin-top: -100px !important;
  }
}

@media (min-width: 1280px) {
  .af-desc-text {
    font-size: 1.4rem;
  }
}

@media (min-width: 1600px) {
  .af-tit-text {
    font-size: 4.5rem !important;
    padding-top: 300px;
  }
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #f1f2f2;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url(../fonts/Montserrat-Bold.otf) format("opentype");
  font-family: 'Montserrat-Black';
  src: url(../fonts/Montserrat-Black.otf) format("opentype");
  font-family: 'Montserrat Light';
  src: url(../fonts/Montserrat-Light.otf) format("opentype");
}

#home-container {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../assets/Web_DirectorioM_Directorio_IMG.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#home-container #home-titulo {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: MontBold;
  font-weight: bolder;
  margin-bottom: 50px;
  color: #522d6d;
  font-size: 40pt;
}

#home-container #barra-busqueda {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#home-container .busqueda-filtro {
  height: 35px;
  width: 150px;
  border: none;
  background-color: #f1f2f2;
  padding-left: 20px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  color: #a975b2;
  font-style: italic;
  font-family: 'Montserrat Light';
}

#home-container #busqueda-caja {
  width: 400px;
  margin-right: 10px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

#home-container #busqueda-caja input {
  width: 100%;
  height: 35px;
  border: none;
  outline: none;
  padding-left: 20px;
}

#home-container #busqueda-boton {
  width: 100px;
  height: 35px;
  border-radius: 50px;
  color: #522d6d;
  background-color: #ffb259;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: 'Montserrat-Bold',sans-serif;
  font-weight: bolder;
  text-align: center;
  cursor: pointer;
}

#home-container #busqueda-boton p {
  margin-left: 10px;
  margin-top: 18px;
}

.card-medico {
  width: 400px;
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  margin: 5px;
}

.card-medico .card-categoria {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  border-bottom-left-radius: 20px;
  width: 100px;
  height: 30px;
  background-color: #ffb259;
}

.card-medico .card-img-container {
  width: 100%;
  padding-left: 20px;
  position: relative;
  margin-top: -32px;
}

.card-medico .card-img-container .card-img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-medico .card-rama {
  width: 100%;
  padding-left: 20px;
  font-size: 0.9em;
  color: #84dade;
  font-family: MontBold;
}

.card-medico .card-nombre {
  width: 100%;
  padding-left: 20px;
  font-size: 1.2em;
  font-family: MontBold;
  color: #522d6d;
}

.card-medico .card-especialidad {
  width: 100%;
  padding-left: 20px;
  font-size: 0.9em;
  color: #84dade;
  font-family: MontBold;
}

.card-medico .card-descripcion {
  width: 100%;
  padding-left: 20px;
  font-family: MontLight;
}

.card-medico .card-ver-mas {
  width: 100px;
  height: 20px;
  text-align: center;
  border-radius: 5px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 3px;
  color: #fff;
  font-family: MontRegular;
  background-color: #ff7f30;
  cursor: pointer;
}

.card-medico .card-ubicacion {
  position: relative;
  margin-left: auto;
  margin-right: 20px;
  font-family: MontUltraLight;
}

.dir-slider {
  width: 90% !important;
}

#directorio-container {
  width: 100%;
  height: auto;
}

#directorio-container #directorio-search-bar {
  width: 100%;
  height: 50px;
  background-color: #522d6d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#directorio-container #directorio-search-bar #filtrar-texto {
  width: 100px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: bolder;
}

#directorio-container #directorio-search-bar .sub-title {
  margin-left: 30px;
  margin-right: 10px;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-style: italic;
}

#directorio-container #directorio-search-bar #alfa {
  margin-left: 30px;
}

#directorio-container #directorio-search-bar #estrellas {
  color: #ffb259;
}

#directorio-container #directorio-search-bar select {
  padding: 2px;
  color: #333;
}

#directorio-container #directorio-cards {
  width: 100%;
  min-height: 200px;
  background: #f1f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

#directorio-container #directorio-cards .boton-tarjetas-final {
  width: 200px;
  height: 30px;
  margin-top: 30px;
  background-color: #ff7f30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: MontBold;
  border-radius: 5px;
}

#directorio-container #reslutados-texto {
  width: 50%;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10%;
  color: #444;
  font-family: 'Montserrat-Black',sans-serif;
  font-weight: bolder;
}

#directorio-container #resultado-texto {
  color: #ff7f30;
  text-transform: capitalize;
}

#directorio-container .resultados-paginas {
  width: 40%;
  height: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Montserrat-Black',sans-serif;
  font-size: 0.8em;
  color: #444;
}

#directorio-container .resultados-paginas input {
  width: 20px;
  height: 20px;
}

#directorio-container .resultados-paginas p {
  width: 20px;
  margin-bottom: 0 !important;
}

#directorio-container .resultados-paginas #paginas-totales {
  margin-right: 10px;
}

#directorio-container .resultados-paginas .left-page {
  color: #ffb259;
  font-size: 2em;
  font-weight: bolder;
  cursor: pointer;
}

#directorio-container .resultados-paginas .right-page {
  color: #ffb259;
  font-size: 2em;
  font-weight: bolder;
  cursor: pointer;
}

#directorio-container #tarjetas {
  margin-top: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.afiliarse {
  width: 100%;
  height: 550px;
  background-color: #fff;
  border-top-left-radius: 150px;
  padding-top: 20px;
}

.afiliarse .afiliarse-background-container {
  margin-left: auto;
  margin-right: 0;
  border-top-left-radius: 400px;
  border-bottom-left-radius: 400px;
  overflow: hidden;
  width: 60%;
  height: 100%;
  background-image: url("../assets/directorio/photo-of-mountains-during-dawn-2088169.webp");
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.afiliarse .afiliarse-background-container .afiliarse-background {
  width: 100%;
  height: 500px;
  background-image: url("../assets/directorio/photo-of-mountains-during-dawn-2088169.webp");
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.afiliarse .afiliarse-info {
  top: -510px;
  position: relative;
  background-color: #fff;
  width: 60%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-bottom: 30px;
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .afiliarse .afiliarse-info {
    margin-left: 10% !important;
  }
}

.afiliarse .afiliarse-info .afiliarse-titulo {
  width: 85%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: MontBold;
  text-transform: uppercase;
  padding-left: 60px;
  margin-top: 20px;
  color: #ff7f30;
  font-size: 1.8em;
}

.afiliarse .afiliarse-info .afiliarse-desccripcion {
  width: 85%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: MontLight;
  padding-left: 60px;
  margin-top: 20px;
  color: #333;
}

.afiliarse .afiliarse-info .afiliarse-beneficios {
  width: 85%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: MontBold;
  text-transform: uppercase;
  padding-left: 60px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #a975b2;
  font-size: 1.8em;
}

.afiliarse .afiliarse-info .afiliarse-lista {
  width: 80%;
  font-family: MontLight;
  /* padding-left: 60px; */
  margin-left: 60px;
  margin-top: 5px;
  color: #333;
  word-break: break-word;
}

.afiliarse .afiliarse-info li::marker {
  color: #ff7f30;
}

.afiliarse .afiliarse-info .botones-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.afiliarse .afiliarse-info .afiliarse-descargar {
  width: 150px;
  padding: 1px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  background-color: #ffb259;
  color: #fff;
  margin-left: 60px;
  border-radius: 5px;
  font-family: MontBold;
  font-size: 0.8em;
  cursor: pointer;
}

.afiliarse .afiliarse-info .afiliarse-boton {
  width: 150px;
  padding: 1px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  background-color: #ff7f30;
  color: #fff;
  margin-left: 60px;
  border-radius: 5px;
  font-family: MontBold;
  font-size: 0.8em;
  cursor: pointer;
}

.container-dir {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 900px) {
  #busqueda-boton {
    position: absolute;
    margin-top: 60px;
  }
  .busqueda-filtro {
    margin-left: 10px;
  }
}

@media (max-width: 1000px) {
  [responsive-dir="home"] {
    height: 70vh !important;
  }
}

@media (max-width: 970px) {
  .container-dir {
    margin: 10px;
    width: 40%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #directorio-search-bar {
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #filtrar-texto {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .card-medico {
    width: 300px !important;
    height: 350px !important;
  }
}

@media (max-width: 800px) {
  .afiliarse-info {
    top: -100% !important;
    width: 100% !important;
  }
  .afiliarse-titulo {
    padding-left: 20px !important;
  }
  .afiliarse-desccripcion {
    padding-left: 20px !important;
  }
  .afiliarse-beneficios {
    padding-left: 20px !important;
  }
  .afiliarse-lista {
    margin-left: 20px !important;
  }
  [bot-d="1"] {
    margin-left: 20px !important;
    width: 80px !important;
  }
  [bot-d="2"] {
    margin-left: 20px !important;
    width: 80px !important;
  }
}

@media (max-width: 500px) {
  .afiliarse {
    height: 700px;
  }
}

@media (min-width: 300px) {
  #home-titulo {
    font-size: 2em !important;
  }
  .container-dir {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}

@media (min-width: 375px) {
  .container-dir {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@media (min-width: 700px) {
  #home-titulo {
    font-size: 2.5em !important;
  }
}

@media (min-width: 1000px) {
  #home-titulo {
    font-size: 40pt !important;
  }
}

.word-slider {
  height: 1em;
  line-height: 1em;
  margin: 0 .5em;
  overflow: hidden;
  list-style-type: none;
  font-family: 'MontBold';
  font-size: 7rem;
  color: white;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(white), color-stop(white), color-stop(white), to(transparent));
  -webkit-mask-image: linear-gradient(transparent, white, white, white, transparent);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(white), color-stop(white), color-stop(white), to(transparent));
          mask-image: linear-gradient(transparent, white, white, white, transparent);
}

.word-slider > li {
  text-align: center;
  -webkit-animation: word-slider 8s ease-in-out infinite;
  animation: word-slider 8s ease-in-out infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@-webkit-keyframes word-slider {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  14.2% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  28.4% {
    -webkit-transform: translate3D(0, -100%, 0);
            transform: translate3D(0, -100%, 0);
  }
  42.6% {
    -webkit-transform: translate3D(0, -100%, 0);
            transform: translate3D(0, -100%, 0);
  }
  56.8% {
    -webkit-transform: translate3D(0, -200%, 0);
            transform: translate3D(0, -200%, 0);
  }
  71% {
    -webkit-transform: translate3D(0, -200%, 0);
            transform: translate3D(0, -200%, 0);
  }
  85.2% {
    -webkit-transform: translate3D(0, -300%, 0);
            transform: translate3D(0, -300%, 0);
  }
  100% {
    -webkit-transform: translate3D(0, -300%, 0);
            transform: translate3D(0, -300%, 0);
  }
}

@keyframes word-slider {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  14.2% {
    -webkit-transform: translate3D(0, 0, 0);
            transform: translate3D(0, 0, 0);
  }
  28.4% {
    -webkit-transform: translate3D(0, -100%, 0);
            transform: translate3D(0, -100%, 0);
  }
  42.6% {
    -webkit-transform: translate3D(0, -100%, 0);
            transform: translate3D(0, -100%, 0);
  }
  56.8% {
    -webkit-transform: translate3D(0, -200%, 0);
            transform: translate3D(0, -200%, 0);
  }
  71% {
    -webkit-transform: translate3D(0, -200%, 0);
            transform: translate3D(0, -200%, 0);
  }
  85.2% {
    -webkit-transform: translate3D(0, -300%, 0);
            transform: translate3D(0, -300%, 0);
  }
  100% {
    -webkit-transform: translate3D(0, -300%, 0);
            transform: translate3D(0, -300%, 0);
  }
}

body {
  background: #f1f2f2;
}

[data-120="120vh"] {
  height: 120vh !important;
}

.home-bienestar {
  height: 100vh;
  width: 100%;
  background-image: url("../assets/IMG_Home_Main.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -80px;
}

#header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  z-index: 1000;
  position: fixed;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#header #menu-open {
  display: none;
}

#header #menu-close {
  display: none;
}

#header-logo {
  width: 480px;
  padding-top: 20px;
  margin-left: 20px;
  cursor: pointer;
}

#header-logo img {
  width: 100%;
}

#header-bar {
  height: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  padding-top: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 5%;
  font-size: 1em;
  font-family: 'MontBold';
  color: #fff;
}

.header-o {
  margin-left: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-o a {
  width: 100%;
  text-decoration: none;
}

#header-bar a:hover ~ #border-b {
  width: 80%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#border-b {
  margin-left: auto;
  margin-right: auto;
  width: 1%;
  height: 2px;
  background-color: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nos-motiva {
  font-family: 'MontRegular';
  color: #a975b2;
  background: #fff;
  padding-bottom: 150px;
  border-bottom-left-radius: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.nos-motiva p {
  padding-top: 1rem;
  font-family: 'MontUltraLight';
  font-size: .9rem;
  color: black;
}

.nos-motiva h2 {
  font-size: 1.7rem;
  letter-spacing: 1px;
  font-family: 'MontUltraLight';
  text-transform: uppercase;
}

.nos-motiva h1 {
  font-size: 1.7rem;
  letter-spacing: 1px;
  font-family: 'MontRegular';
  text-transform: uppercase;
}

.motiva-header {
  width: 100%;
  margin: 0 auto;
  padding-top: 3rem;
  text-align: center;
}

.motiva-triptico {
  padding-top: 3rem;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.separacion-triptico {
  height: 100%;
  width: 1px;
  background-color: #ddd;
  margin-left: 30px;
  margin-right: 30px;
}

.card {
  width: 300px;
}

.segundo-index {
  width: 100%;
  min-height: 700px;
  background: #fff;
  border-top-right-radius: 150px;
}

.flor-loto {
  width: 100%;
  background-image: url("../assets/Web_Accesos_Home_IMG.webp");
  min-height: 900px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: -1%;
}

.loto-tarjetas {
  width: 70%;
  padding-top: 50px;
  margin-right: 0px;
  margin-left: auto;
}

.loto-card {
  width: 70%;
  height: 230px;
  margin-right: 10%;
  margin-left: auto;
  border-radius: 15px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#loto-img-1 {
  background-image: url("../assets/fotos/shelf.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

#loto-img-2 {
  background-image: url("../assets/fotos/meditando.webp");
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 45%;
}

#loto-img-3 {
  background-image: url("../assets/fotos/copa.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 50%;
}

.loto-card-text {
  width: 450px;
  height: 9rem;
  background-color: white;
  position: relative;
  font-family: 'MontRegular';
  margin-left: -7rem;
  border-radius: 2px;
  -webkit-box-shadow: #3d2a4175 0px 4px 12px;
          box-shadow: #3d2a4175 0px 4px 12px;
  cursor: pointer;
}

.loto-card-text h1 {
  text-transform: uppercase;
  padding-left: 6%;
  width: 94%;
  padding-top: 1rem;
  color: #a975b2;
  font-family: 'MontBold';
}

.loto-card-text p {
  padding-left: 6%;
  width: 75%;
  padding-top: .3rem;
  font-family: 'MontUltraLight';
  font-size: 1rem;
}

.loto-card-text h3 {
  color: #ffb259;
  width: 10%;
  padding-left: 90%;
  font-size: 2em;
}

.contacto {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .9rem;
  font-family: 'MontRegular';
  color: black;
  border-top-right-radius: 150px;
  width: 100%;
  padding-bottom: 100px;
  padding-top: 50px;
}

.contacto a {
  text-decoration: none;
}

.message-contact {
  width: 40%;
  margin-right: 0;
  margin-left: auto;
  padding-top: 1rem;
}

.message-contact h1 {
  font-family: 'MontBold';
  letter-spacing: 4px;
  font-size: 3rem;
  color: #522d6d;
  text-transform: uppercase;
}

.message-contact h2 {
  font-family: 'MontUltraLight';
  font-size: 1rem;
  color: black;
  padding-top: 1rem;
  line-height: 1.5;
}

.datosExpo {
  padding-top: 1rem;
  font-size: 1rem;
  font-family: 'MontHair';
  color: #4b4b4b;
}

.datosExpo h3 {
  padding-top: 1rem;
  font-size: 1rem;
}

.datosExpo a {
  font-size: 2rem;
  color: #84dade;
}

.formcontact {
  width: 40%;
  margin-left: 0;
  margin-right: auto;
  padding-left: 50px;
  padding-top: 5.6rem;
}

.contact-form {
  font-size: 1.2rem;
}

.contact-form input, .contact-form select {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-width: 1px;
  border-bottom-color: #a975b2;
  width: 100%;
  padding-top: .5rem;
  font-family: 'MontRegular';
  color: #525252;
  font-size: 1rem;
}

.contact-form ::-webkit-input-placeholder {
  color: #525252;
  opacity: 1;
  font-size: 1rem;
}

.contact-form :-ms-input-placeholder {
  color: #525252;
  opacity: 1;
  font-size: 1rem;
}

.contact-form ::-ms-input-placeholder {
  color: #525252;
  opacity: 1;
  font-size: 1rem;
}

.contact-form ::placeholder {
  color: #525252;
  opacity: 1;
  font-size: 1rem;
}

.contact-form label {
  color: #808080;
}

.contact-form .asunto-input {
  width: 98%;
}

.contact-form .telefono-input {
  width: 100%;
}

.contact-form .fila-asunto-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form .bloque-asunto {
  width: 50%;
}

.contact-form .bloque-tel {
  width: 50%;
}

.contact-form button {
  width: 6rem;
  height: 2.3rem;
  border: none;
  border-radius: 12px;
  font-family: 'MontBold';
  font-size: 1rem;
  color: white;
  background-color: #ff7f30;
  cursor: pointer;
}

.footer {
  height: 100%;
  width: 100%;
  background-color: #522d6d;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'MontRegular';
  font-size: .8rem;
  padding-bottom: 30px;
}

.footer a {
  text-decoration: none;
  color: white !important;
}

.footer a:hover {
  text-decoration: none;
  color: #ff7f30 !important;
}

.footer h3 {
  font-size: 1.75rem;
}

.footer-logo {
  width: 35%;
  padding-top: 7rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.footer-logo img {
  width: 100%;
}

.mapa-sitio {
  margin-left: auto;
  margin-right: 0;
  padding-top: 1.5rem;
  padding-left: 2rem;
  width: 15%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.mapa-sitio ul {
  font-family: 'MontUltraLight';
  list-style-type: none;
}

.mapa-sitio li {
  padding-top: .5rem;
}

.forma-parte-footer {
  padding-top: .5rem;
  width: 15%;
  padding-top: 1.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.forma-parte-footer ul {
  font-family: 'MontUltraLight';
  list-style-type: none;
}

.forma-parte-footer li {
  padding-top: .5rem;
}

.nuestras-redes {
  padding-top: 1.5rem;
  font-size: 1rem;
  width: 25%;
  margin-right: auto;
  margin-left: 0;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.nuestras-redes h2 {
  font-size: 1rem;
}

.redes-sociales {
  padding-top: .2rem;
}

.redes-sociales a {
  font-size: 2.2rem;
}

.footer-li-dir {
  font-family: 'MontBold';
}

#o-activo {
  color: #522d6d;
}

@media (max-width: 1000px) {
  #o-activo {
    color: #fff;
  }
  #menu-open {
    height: 20px;
    width: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2em;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 10%;
    top: 80px;
    color: #fff;
  }
  #menu-close {
    height: 20px;
    width: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 2em;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transition: 1s;
    transition: 1s;
  }
  #header-bar {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    position: fixed;
    width: 65%;
    height: 120vh;
    background-color: #522d6d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    right: 0;
    margin-right: 0;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    z-index: 2;
  }
  #header-logo {
    overflow: hidden;
    padding-top: 20px;
    margin-left: -20px;
  }
  #header-logo img {
    width: 90%;
  }
  .header-o {
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #header-dim {
    height: 0vh;
    width: 100%;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media (min-width: 1100px) {
  .header-o {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media (min-width: 320px) {
  #menu-open {
    top: 50px;
  }
}

@media (min-width: 375px) {
  #menu-open {
    top: 60px;
    right: 8%;
  }
}

@media (min-width: 540px) {
  #menu-open {
    top: 70px;
  }
}

@media (min-width: 300px) {
  .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer h3 {
    font-size: .7rem !important;
  }
  .footer li {
    padding-top: 0rem;
  }
  .footer a {
    font-size: .7rem !important;
  }
  .footer h2 {
    font-size: .7rem !important;
  }
  .mapa-sitio {
    padding-left: 1rem;
    padding-right: .4rem;
    padding-top: 1rem;
    margin-left: 0rem;
    width: 30%;
  }
  .forma-parte-footer {
    padding-top: 1rem;
    padding-bottom: .8rem;
    width: 50%;
  }
  .nuestras-redes {
    width: 70%;
    padding-left: 1rem;
    padding-right: .4rem;
    padding-top: .5rem;
    margin-left: 0rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer-logo {
    padding-top: 1rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .redes-sociales a {
    font-size: 1rem;
    padding-top: .5rem;
  }
}

@media (min-width: 540px) {
  .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer h3 {
    font-size: 1rem !important;
  }
  .footer li {
    padding-top: 0rem;
  }
  .footer a {
    font-size: 1rem !important;
  }
  .footer h2 {
    font-size: 1rem !important;
  }
}

@media (min-width: 768px) {
  .footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer h3 {
    font-size: 1.3rem !important;
  }
  .footer li {
    padding-top: 0rem;
  }
  .footer a {
    font-size: 1.1rem !important;
  }
  .footer h2 {
    font-size: 1rem !important;
  }
}

@media (min-width: 940px) {
  .mapa-sitio {
    width: 20%;
  }
  .forma-parte-footer {
    width: 45%;
  }
  .nuestras-redes {
    width: 25%;
    margin-right: 0;
  }
  .footer-logo {
    width: 50%;
  }
}

@media (min-width: 1920px) {
  .footer h3 {
    font-size: 2rem !important;
  }
  .footer h2 {
    font-size: 1.5rem !important;
  }
  .mapa-sitio {
    width: 15%;
  }
  .nuestras-redes {
    margin-left: auto;
  }
  .footer-logo {
    width: 40%;
  }
}

@media (min-width: 1920px) {
  .message-contact {
    width: 50%;
    margin-left: 100px;
  }
  .message-contact h1 {
    font-size: 5rem;
  }
  .message-contact h2 {
    width: 75%;
    font-size: 1.5rem;
  }
  .datosExpo h3 {
    font-size: 1.3rem;
  }
  .datosExpo a {
    font-size: 2.5rem;
  }
  .formcontact {
    margin-right: 100px;
  }
  .formcontact label {
    font-size: 1.7rem;
  }
  .formcontact input, .formcontact select {
    font-size: 1.4rem;
  }
  .formcontact ::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .formcontact :-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .formcontact ::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .formcontact ::placeholder {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .message-contact h1 {
    font-size: 2.5rem;
  }
  .formcontact {
    padding-top: 19%;
  }
}

@media (max-width: 540px) {
  .message-contact {
    padding-top: 15%;
    width: 45%;
    padding-left: 5%;
  }
  .message-contact h1 {
    font-size: 2rem;
  }
  .message-contact h2 {
    font-size: .8rem;
  }
  .message-contact a {
    font-size: 1.3rem;
  }
  .datosExpo h3 {
    padding-top: .7rem;
    font-size: .9rem;
  }
  .formcontact {
    padding-top: 15%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .fila-asunto-tel {
    display: inherit !important;
  }
  .fila-asunto-tel .bloque-asunto {
    width: 100%;
  }
  .fila-asunto-tel .bloque-tel {
    width: 100%;
    margin-top: 1.4rem;
  }
  .contact-form label {
    font-size: 1rem;
  }
  .contact-form ::-webkit-input-placeholder, .contact-form select {
    font-size: .9rem;
  }
  .contact-form :-ms-input-placeholder, .contact-form select {
    font-size: .9rem;
  }
  .contact-form ::-ms-input-placeholder, .contact-form select {
    font-size: .9rem;
  }
  .contact-form ::placeholder, .contact-form select {
    font-size: .9rem;
  }
}

@media (min-width: 320px) {
  .capacitacion-info-tit {
    font-size: 15pt !important;
  }
}

@media (min-width: 375px) {
  .capacitacion-info-tit {
    font-size: 18pt !important;
  }
}

@media (min-width: 600px) {
  .capacitacion-info-tit {
    font-size: 20pt !important;
  }
}

@media (min-width: 800px) {
  .capacitacion-info-tit {
    font-size: 25pt !important;
  }
}

@media (min-width: 1300px) {
  .capacitacion-info-tit {
    font-size: 50pt !important;
  }
}

@media (min-width: 550px) and (max-width: 700px) {
  .se-vision {
    margin-top: 150px !important;
  }
}

@media (max-width: 600px) {
  .se-nosotros {
    margin-top: 40px !important;
  }
  .se-nosotros-info {
    width: 90% !important;
  }
  .se-nosotros-img {
    position: relative;
    width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: -500px;
  }
  .se-nosotros-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .word-slider {
    width: 90% !important;
    margin: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 3.5rem !important;
  }
  .home-tit-sm {
    padding-top: 180px !important;
  }
  [data-120="120vh"] {
    height: 140vh !important;
  }
  .home-desc {
    width: 90% !important;
  }
  .motiva-triptico .card {
    width: 80% !important;
    height: auto !important;
  }
  .motiva-header {
    width: 90% !important;
  }
  .separacion-triptico {
    width: 100% !important;
    height: 1px !important;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .se-vision {
    height: 100vh !important;
  }
  .se-vision .se-vision-tit {
    padding-left: 10%;
  }
  .se-vision .se-vision-desc {
    padding-left: 10%;
  }
  .se-vision .se-vision-img {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .se-vision .se-vision-img img {
    width: 100% !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .se-vision .se-vision-info {
    width: 90% !important;
    margin-top: 150px;
  }
  .loto-card {
    width: 200px !important;
    height: 230px !important;
    margin-right: 10% !important;
    margin-left: auto !important;
  }
  .loto-card .loto-card-text {
    width: 300px !important;
    height: auto !important;
    margin-left: -4rem !important;
  }
  .loto-card .loto-card-text .icon-angle-right {
    font-size: 1em;
    margin-left: -20px;
  }
  .se-aprende {
    margin-top: 30px !important;
    height: 100vh !important;
  }
  .se-aprende .se-aprende-info {
    width: 100% !important;
  }
  .se-aprende .se-aprende-desc {
    width: 80% !important;
  }
  .se-aprende .se-aprende-img {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .se-aprende .se-aprende-img img {
    display: block;
    margin: 40px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 80% !important;
  }
  .capacitacion-info {
    width: 85% !important;
  }
  .capacitacion-container {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .capacitacion-container .capacitacion-info-desc {
    width: 80% !important;
  }
  .resena {
    padding-bottom: 40px;
  }
  .resena .resena-texto {
    width: 90% !important;
  }
}

@media (min-width: 601px) {
  .separacion-triptico {
    height: 50% !important;
  }
}

@media (min-width: 842px) {
  .separacion-triptico {
    height: 100% !important;
  }
}

@media (max-width: 320px) {
  .message-contact h2 {
    font-size: .6rem;
  }
}

@media (max-width: 375px) {
  .message-contact h2 {
    font-size: .7rem;
  }
  .datosExpo h3 {
    font-size: .7rem;
  }
  .datosExpo a {
    font-size: 1rem;
  }
}

@media (max-width: 440px) {
  .contacto {
    display: inherit;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .message-contact {
    width: 95%;
  }
  .message-contact h1 {
    font-size: 2.3rem;
    letter-spacing: 2px;
  }
  .message-contact h2 {
    width: 80%;
    font-size: .8rem;
  }
  .formcontact {
    width: 90%;
    padding-top: 5%;
  }
  .formcontact label {
    font-size: .8rem;
  }
  .formcontact input, .formcontact select {
    padding-top: 0rem;
    font-size: .7rem;
  }
  .formcontact ::-webkit-input-placeholder {
    font-size: .7rem;
  }
  .formcontact :-ms-input-placeholder {
    font-size: .7rem;
  }
  .formcontact ::-ms-input-placeholder {
    font-size: .7rem;
  }
  .formcontact ::placeholder {
    font-size: .7rem;
  }
  .formcontact button {
    font-size: .8rem;
    width: 4rem;
    height: 1.8rem;
  }
  .datosExpo {
    padding-top: .2rem;
  }
  .datosExpo h3 {
    font-size: .9rem;
  }
  .datosExpo a {
    font-size: 1.4rem;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .nos-motiva {
    padding-bottom: 350px;
  }
  .se-vision {
    height: 60vh;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .nos-motiva {
    padding-bottom: 250px;
  }
  .se-vision {
    height: 30vh;
    margin-top: 80px;
  }
}

.at-tit-text {
  z-index: 10;
  position: relative;
  width: 70%;
  margin-left: 100px;
  padding-top: 250px;
  font-family: MontBold;
  color: #522d6d;
  text-transform: uppercase;
  font-size: 3.5rem;
}

.at-desc-text {
  width: 45%;
  margin-left: 100px;
  font-family: MontUltraLight;
  color: #a975b2;
  font-size: 1em;
}

.at-img {
  position: inherit;
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#atencion-tarjetas {
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 2rem;
  background: #f1f2f2;
  z-index: 1;
  position: relative;
  padding-bottom: 2rem;
  border-bottom-left-radius: 150px;
}

.atencion-tarjetas1 {
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 200px;
  margin-top: -150px;
  background: #f1f2f2;
  position: relative;
  padding-bottom: 2rem;
  height: 600px;
}

.atencion-tarjetas2 {
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 2rem;
  background: white;
  z-index: 1;
  position: relative;
  padding-bottom: 2rem;
  border-bottom-left-radius: 150px;
  border-top-right-radius: 150px;
}

.med-tradicional {
  width: 100%;
  font-family: 'MontBold';
  text-align: center;
}

.med-tradicional .med-title {
  font-family: 'MontExtraBold';
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
  color: #a975b2;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.med-tradicional .med-desc {
  padding-bottom: 2rem;
  font-size: .9rem;
  font-family: 'MontLight';
}

.med-tradicional .med-button {
  width: 15rem;
  height: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: white;
  background-color: #ff7f30;
}

.med-tradicional .med-button:hover {
  cursor: pointer;
}

.slider {
  width: 90%;
  margin: 100px auto;
}

.card {
  border: 1px #636363 !important;
  width: 15rem;
  background-color: #f1f2f2 !important;
}

.card-image img {
  border-radius: 15px;
}

#cartaslider {
  margin-top: 0px !important;
}

.row {
  overflow: hidden;
}

.pantalla-oscura {
  position: absolute;
  border-radius: 15px;
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
  height: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.616);
}

.pantalla-oscura a {
  text-decoration: none;
  font-family: 'MontBold';
  color: white;
}

.pantalla-oscura a:hover {
  color: #ffb259;
}

.slick-slide {
  margin: 0px 20px;
  border: 0px solid black;
  outline: none;
}

.slick-slider {
  margin-top: 3rem;
}

.slick-slide img {
  width: 100%;
  height: 12rem;
  margin-bottom: 10px;
}

.slick-prev:before,
.slick-next:before {
  color: grey;
}

.slick-slide {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: 0.8;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 1rem 0;
}

.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #c9c9c9 !important;
  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  background-color: #522d6d !important;
}

.atencion-info {
  position: relative;
  height: 600px;
  margin-top: -150px;
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
  background-image: url("../assets/Web_DividerAtencion_atencion_IMG.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.atencion-info .atencion-infoContainer {
  width: 60%;
  margin-left: 0;
  margin-right: auto;
}

.atencion-info .atencion-tit {
  text-align: left;
  font-family: 'MontBold';
  color: #522d6d;
  width: 70%;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.atencion-info .atencion-desc {
  width: 100%;
  font-family: 'MontUltraLight';
  color: #522d6d;
  margin-top: 10px;
  text-align: left;
}

.atencion-info .divider-btn {
  height: 2rem;
  width: 12rem;
  margin-top: 1rem;
  font-family: 'MontRegular';
  margin-left: 0;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: white;
  background-color: #ff7f30;
}

.atencion-info .divider-btn:hover {
  cursor: pointer;
}

.grupos-vulnerables {
  margin-top: -150px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 43rem;
  width: 100%;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  z-index: 2;
  position: relative;
}

.grupos-vulnerables .grupos-img {
  width: 45rem;
  height: 31rem;
  border-radius: 15px;
  background-image: url("../assets/fotos/AdobeStock_259803295.webp");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 100px;
  margin-right: 100px;
}

.grupos-vulnerables .grupos-info {
  width: 50rem;
  height: 23rem;
  position: relative;
  left: -30rem;
  top: 4rem;
  background: #fff;
  -webkit-box-shadow: #3d2a4175 0px 4px 12px;
          box-shadow: #3d2a4175 0px 4px 12px;
  border-radius: 2px;
}

.grupos-vulnerables .grupos-info .grupos-tit {
  font-family: 'MontBold';
  color: #a975b2;
  text-transform: uppercase;
  font-size: 2rem;
  padding-left: 5rem;
  padding-top: 2rem;
}

.grupos-vulnerables .grupos-info .grupos-desc {
  font-family: 'MontUltraLight';
  font-size: 1rem;
  padding-left: 5rem;
  padding-top: .5rem;
  width: 90%;
}

.grupos-vulnerables .grupos-info .divider-btn {
  height: 2rem;
  width: 12rem;
  margin-top: 1rem;
  font-family: 'MontRegular';
  margin-left: 5rem;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: white;
  background-color: #ff7f30;
}

.grupos-vulnerables .grupos-info .divider-btn:hover {
  cursor: pointer;
}

.footer h3 {
  font-size: 1.75rem;
}

.footer ul {
  padding-left: 0;
}

@media (min-width: 300px) {
  .at-tit-text {
    font-size: 2rem !important;
    width: 80%;
    margin-left: 10%;
    padding-top: 140px;
  }
  .at-desc-text {
    width: 80%;
    margin-left: 10%;
    font-size: .9em;
  }
  .at-img {
    width: 90%;
  }
  .home-atencion {
    border-bottom-left-radius: none;
  }
}

@media (min-width: 540px) {
  .at-img {
    width: 80%;
  }
}

@media (min-width: 590px) {
  .at-img {
    width: 70%;
  }
}

@media (min-width: 675px) {
  .at-img {
    width: 60%;
  }
}

@media (min-width: 800px) {
  .at-img {
    width: 50%;
    position: absolute;
    top: 150px;
    right: 0px;
  }
  .at-tit-text {
    width: 85%;
    font-size: 2.3rem !important;
    padding-top: 185px;
  }
  .at-desc-text {
    width: 40%;
    z-index: 1;
    position: relative;
  }
  .home-atencion {
    border-bottom-left-radius: 150px;
  }
}

@media (min-width: 1000px) {
  .at-tit-text {
    font-size: 3rem !important;
    padding-top: 200px;
  }
  .at-desc-text {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 1280px) {
  .at-tit-text {
    font-size: 3.6rem !important;
    padding-top: 200px;
  }
  .at-desc-text {
    width: 43%;
    font-size: 1.4rem !important;
  }
}

@media (min-width: 1440px) {
  .at-tit-text {
    font-size: 4.3rem !important;
    padding-top: 250px;
  }
  .at-desc-text {
    width: 40%;
    font-size: 2rem !important;
  }
}

@media (min-width: 1600px) {
  .at-tit-text {
    font-size: 4.5rem !important;
    padding-top: 300px;
  }
}

@media (min-width: 320px) {
  .atencion-tarjetas1 {
    width: 90%;
    height: 545px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .atencion-tarjetas2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 100px !important;
  }
  .med-title {
    width: 100% !important;
    font-size: 1.1rem !important;
  }
  .med-desc {
    font-size: .8rem !important;
  }
  .med-button {
    width: 11rem !important;
    height: 1.5rem !important;
    font-size: .9rem !important;
  }
  .slider {
    margin-top: 6rem;
  }
  #cartaslider1 {
    margin-top: -190px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .slid2 {
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1rem !important;
    margin-bottom: 2.5rem !important;
  }
  .slick-prev::before, .slick-next::before {
    color: #ff7f30 !important;
  }
  .card {
    width: 15rem;
    height: 10rem;
  }
  .slick-slide {
    height: 10rem;
  }
  .slick-slide img {
    height: 10rem;
  }
  .card-image {
    height: 10rem;
  }
  .card-image .pantalla-oscura {
    height: 10rem;
  }
  .card-image .pantalla-oscura a {
    font-size: .8rem;
  }
}

@media (min-width: 410px) {
  .slider {
    width: 100%;
  }
  .card {
    width: 8rem;
    height: 6rem;
  }
  .slick-slide {
    height: 6rem;
  }
  .slick-slide img {
    height: 6rem;
  }
  .card-image {
    height: 6rem;
  }
  .card-image .pantalla-oscura {
    height: 6rem;
  }
  .card-image .pantalla-oscura a {
    font-size: .8rem;
  }
}

@media (min-width: 540px) {
  .card {
    width: 9rem;
    height: 7rem;
  }
  .slick-slide {
    height: 7rem;
  }
  .slick-slide img {
    height: 7rem;
  }
  .card-image {
    height: 7rem;
  }
  .card-image .pantalla-oscura {
    height: 7rem;
  }
  .card-image .pantalla-oscura a {
    font-size: .8rem;
  }
}

@media (min-width: 768px) {
  .slick-prev {
    left: -60px !important;
  }
  .slick-next {
    right: -35px !important;
  }
  .slick-prev::before, .slick-next::before {
    color: #ff7f30 !important;
    font-size: 40px !important;
    width: 0px;
  }
  .card {
    width: 13rem;
    height: 10rem !important;
  }
  .card-image {
    height: 10rem !important;
  }
  .card-image img {
    height: 10rem !important;
  }
  .card-image .pantalla-oscura {
    height: 10rem !important;
  }
}

@media (min-width: 1280px) {
  .slider {
    width: 100%;
  }
  .med-tradicional .med-title {
    font-size: 1.7rem !important;
  }
  .med-tradicional .med-desc {
    font-size: 1.2rem !important;
  }
  .med-tradicional .med-button {
    width: 16rem !important;
    height: 2rem !important;
    font-size: 1.2rem !important;
  }
  .card {
    width: 17rem;
    height: 13rem;
  }
  .slick-slide {
    height: 13rem !important;
  }
  .slick-slide img {
    height: 13rem !important;
  }
  .card-image {
    height: 13rem !important;
  }
  .card-image .pantalla-oscura {
    height: 13rem !important;
  }
  .card-image .pantalla-oscura a {
    font-size: .8rem;
  }
}

@media (min-width: 1440px) {
  .card {
    width: 22rem;
    height: 15rem !important;
  }
  .card-image {
    height: 22rem !important;
  }
  .card-image img {
    height: 15rem !important;
  }
  .card-image .pantalla-oscura {
    height: 15rem !important;
  }
}

@media (min-width: 1600px) {
  .slider {
    width: 100%;
  }
  .atencion-tarjetas2 {
    border-bottom-left-radius: 150px !important;
  }
  .med-tradicional .med-title {
    font-size: 1.9rem !important;
  }
  .med-tradicional .med-desc {
    font-size: 1.3rem !important;
  }
  .med-tradicional .med-button {
    width: 16rem !important;
    height: 2rem !important;
    font-size: 1.3rem !important;
  }
}

@media (min-width: 1920px) {
  .atencion-tarjetas1 {
    height: 640px;
  }
  .slider {
    width: 100%;
  }
  .med-tradicional .med-title {
    font-size: 2.5rem !important;
  }
  .med-tradicional .med-desc {
    font-size: 1.6rem !important;
  }
  .med-tradicional .med-button {
    width: 20rem !important;
    height: 3rem !important;
    font-size: 1.6rem !important;
  }
}

@media (min-width: 320px) {
  .atencion-info {
    margin-top: -23rem !important;
    height: 67rem !important;
    padding-left: 10%;
    padding-right: 10%;
    background-position: -70rem;
  }
  .atencion-infoContainer {
    width: 100% !important;
  }
  .atencion-tit {
    width: 100% !important;
    font-size: 1.5rem !important;
  }
  .atencion-desc {
    font-size: .7rem !important;
  }
}

@media (min-width: 410px) {
  .atencion-infoContainer {
    margin-top: 1rem !important;
  }
  .atencion-tit {
    font-size: 2rem !important;
  }
  .atencion-desc {
    font-size: .9rem !important;
  }
  .atencion-info {
    height: 75rem !important;
    background-position: -74rem !important;
    margin-top: -25.5rem !important;
  }
}

@media (min-width: 768px) {
  .atencion-infoContainer {
    margin-top: 0rem !important;
  }
  .atencion-info {
    margin-top: -22rem !important;
    height: 62rem !important;
    background-position: -37rem !important;
  }
}

@media (min-width: 860px) {
  .atencion-info {
    background-position: -19rem !important;
    margin-top: -24rem !important;
  }
}

@media (min-width: 1280px) {
  .atencion-info {
    margin-top: -24rem !important;
    height: 70rem !important;
  }
}

@media (min-width: 1440px) {
  .atencion-info {
    background-position: -9rem !important;
  }
}

@media (min-width: 1600px) {
  .atencion-info {
    margin-top: -27rem !important;
    height: 80rem !important;
  }
  .atencion-tit {
    font-size: 2.6rem !important;
  }
  .atencion-desc {
    font-size: 1.3rem !important;
  }
  .divider-btn {
    width: 14rem !important;
    font-size: 1.2rem !important;
  }
  .atencion-infoContainer {
    margin-top: -3rem !important;
  }
}

@media (min-width: 320px) {
  .grupos-vulnerables {
    background-color: white;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 0px;
    margin-top: -380px;
  }
  .grupos-vulnerables .grupos-img {
    width: 100% !important;
    height: 100% !important;
    background-position: 70%;
    background-position-y: -5rem;
    margin-left: 0;
    margin-right: auto;
    margin-top: -101px;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    background-position-x: -10.8rem;
  }
  .grupos-vulnerables .grupos-info {
    width: 100%;
    height: 23rem;
    left: 0rem;
    top: 20rem !important;
  }
  .grupos-vulnerables .grupos-info .divider-btn {
    margin-left: auto !important;
    font-size: .8rem;
    width: 10rem;
    height: 1.7rem;
    margin-top: .5rem;
  }
  .grupos-vulnerables .grupos-tit {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px !important;
    padding-top: 1rem;
    text-align: center;
    font-size: 1.3rem !important;
  }
  .grupos-vulnerables .grupos-desc {
    padding-left: 0px !important;
    font-size: .8rem !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (min-width: 540px) {
  .divider-btn {
    margin-top: 1rem;
    width: 11rem;
    height: 1.9rem;
    font-size: .9rem;
  }
  .grupos-vulnerables .grupos-img {
    background-position-x: 0rem;
  }
  .grupos-vulnerables .grupos-desc {
    width: 70% !important;
    font-size: .9rem !important;
  }
  .grupos-tit {
    font-size: 1.8rem !important;
  }
}

@media (min-width: 768px) {
  .grupos-vulnerables {
    margin-top: -339px !important;
  }
  .grupos-vulnerables .grupos-desc {
    width: 60% !important;
    font-size: 1rem !important;
  }
  .grupos-vulnerables .grupos-tit {
    width: 100% !important;
    font-size: 1.7rem !important;
  }
  .grupos-vulnerables .divider-btn {
    font-size: 1rem !important;
    width: 13rem !important;
  }
}

@media (min-width: 1280px) {
  .grupos-vulnerables {
    height: 38rem !important;
    border-bottom-left-radius: 100px !important;
    margin-top: -380px !important;
  }
  .grupos-vulnerables .grupos-img {
    width: 60% !important;
    height: 25rem !important;
    border-radius: 15px !important;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    margin-left: 100px !important;
    margin-right: 100px !important;
    margin-top: 0px !important;
  }
  .grupos-vulnerables .grupos-info {
    width: 90% !important;
    height: 23rem !important;
    position: relative;
    left: -22rem !important;
    top: 1rem !important;
    border-radius: 2px !important;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .grupos-vulnerables .grupos-info .divider-btn {
    margin-left: 10% !important;
  }
  .grupos-vulnerables .grupos-tit {
    width: 80% !important;
    font-size: 2rem !important;
    text-align: left;
  }
  .grupos-vulnerables .grupos-desc {
    width: 80% !important;
    text-align: justify;
  }
}

@media (min-width: 1440px) {
  .grupos-img {
    background-position-y: -7rem;
  }
  .grupos-vulnerables .grupos-info {
    width: 80% !important;
  }
  .grupos-vulnerables .grupos-info .divider-btn {
    margin-left: 5% !important;
  }
  .grupos-vulnerables .grupos-tit {
    width: 90% !important;
  }
  .grupos-vulnerables .grupos-desc {
    width: 90% !important;
  }
}

@media (min-width: 1600px) {
  .grupos-vulnerables {
    border-bottom-left-radius: 150px !important;
    border-top-right-radius: 150px !important;
    margin-top: -470px !important;
  }
  .grupos-vulnerables .grupos-img {
    width: 60% !important;
    height: 28rem !important;
    background-position-y: -8rem !important;
    top: 2.5rem !important;
  }
  .grupos-vulnerables .grupos-info {
    width: 50rem !important;
    top: 2.5rem !important;
    height: 23rem !important;
    left: -27rem !important;
  }
}

@media (min-width: 1920px) {
  .grupos-vulnerables {
    height: 42rem !important;
    padding-top: 85px !important;
  }
  .grupos-vulnerables .grupos-img {
    height: 31rem !important;
  }
  .grupos-vulnerables .grupos-info {
    width: 63rem !important;
    top: 3.5rem !important;
    height: 24rem !important;
    left: -34rem !important;
  }
  .grupos-vulnerables .grupos-tit {
    font-size: 2.6rem !important;
    line-height: 3rem;
  }
  .grupos-vulnerables .grupos-desc {
    font-size: 1.3rem !important;
  }
  .grupos-vulnerables .divider-btn {
    height: 2.5rem !important;
    margin-top: 1.5rem !important;
    font-size: 1.5rem !important;
    width: 18rem !important;
  }
}

@media (min-width: 320px) {
  #AtencionContacto {
    margin-top: -10.5rem !important;
    z-index: 1;
    position: relative;
    border-top-right-radius: 0px !important;
  }
}

@media (min-width: 768px) {
  #AtencionContacto {
    margin-top: -10rem !important;
  }
}

@media (min-width: 1280px) {
  #AtencionContacto {
    border-top-right-radius: 100px !important;
  }
}

@media (min-width: 1600px) {
  #AtencionContacto {
    border-top-right-radius: 150px !important;
  }
}

body {
  background: #f1f2f2 !important;
}

.tall-tit-text {
  z-index: 10;
  position: relative;
  width: 70%;
  margin-left: 100px;
  padding-top: 250px;
  font-family: 'MontExtraBold';
  color: #522d6d;
  text-transform: uppercase;
  font-size: 4rem;
  word-break: break-word;
}

.tall-img {
  width: 50%;
  position: absolute;
  top: 150px;
  right: 50px;
}

.taller-video {
  width: auto;
  height: 700px;
  padding-left: 100px;
  padding-right: 100px;
}

.taller-video .taller-thumbnail {
  width: 100%;
  background-image: url("../assets/guitarra.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
}

.taller-video .video-desc {
  width: 70%;
  background-color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  -webkit-box-shadow: #3d2a4175 0px 4px 12px;
          box-shadow: #3d2a4175 0px 4px 12px;
  height: 8rem;
}

.taller-video .video-desc .taller-nombre {
  font-family: 'MontBold';
  color: #522d6d;
  font-size: 1.1rem;
  padding-left: 1rem;
  padding-top: 1rem;
}

.taller-video .video-desc .taller-imparte {
  font-family: 'MontLight';
  color: #84dade;
  font-style: italic;
  padding-left: 1rem;
}

.taller-video .video-desc .taller-tipo {
  font-family: 'MontUltraLight';
  padding-left: 1rem;
  padding-top: 1rem;
}

#cartasTalleres {
  height: 500px;
  background-color: white;
  border-bottom-left-radius: 150px;
  margin-top: -60px !important;
}

.card-taller {
  border: 1px #636363 !important;
  width: 24rem;
  background-color: white !important;
}

.taller-desc {
  width: 100%;
  background-color: white;
  -webkit-box-shadow: #3d2a4175 0px 4px 12px;
          box-shadow: #3d2a4175 0px 4px 12px;
  height: 13rem;
  margin-bottom: 2rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.taller-desc .taller-nombre {
  font-family: 'MontBold';
  color: #522d6d;
  font-size: 1.1rem;
  padding-left: 1rem;
  padding-top: .2rem;
}

.taller-desc .taller-imparte {
  font-family: 'MontLight';
  color: #84dade;
  font-style: italic;
  padding-left: 1rem;
}

.taller-desc .taller-tipo {
  font-family: 'MontUltraLight';
  padding-left: 1rem;
  padding-top: .5rem;
}

.taller-image {
  width: 100%;
  height: 8rem;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.taller-brief {
  font-family: 'MontUltraLight';
  padding-left: 1rem;
  padding-top: 1rem;
}

.profesionalizate {
  background-color: white;
  width: 100%;
  border-top-right-radius: 150px;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.prof-titulo {
  font-family: 'MontExtraBold';
  color: #522d6d;
  font-size: 4.5rem;
  padding-top: 2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.prof-desc {
  width: 65%;
  margin: 0 auto;
  font-family: MontLight;
}

.prof-input {
  width: 40%;
  margin: auto;
  margin-top: auto;
  margin-top: 2rem;
  border-radius: 50px;
  padding-left: 1rem;
  height: 2.2rem;
  background-color: #f1f2f2;
  font-style: italic;
  text-align: center;
  padding-bottom: .5rem;
  padding-top: .5rem;
  border: 1px solid #f1f2f2;
}

.prof-button {
  width: 150px;
  margin: auto;
  margin-top: auto;
  margin-top: 1rem;
  background-color: #ff7f30;
  border: none !important;
  height: 2.1rem;
  padding-top: .25rem;
  color: white;
  font-family: 'MontRegular';
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prox-eventos {
  background-image: url("../assets/Images_TalleresCarrousell_Talleres_IMG.jpg");
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
  margin-top: 100px;
  background-size: cover;
}

.eventos-tit {
  font-family: 'MontExtraBold';
  color: white;
  font-size: 2rem;
  padding-top: 2rem;
  padding-left: 69px;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding-bottom: 2rem;
}

.comunidad {
  text-align: center;
  background: #fff;
  margin-top: -32px;
}

.comunidad-tit {
  font-family: 'MontExtraBold';
  color: #a975b2;
  font-size: 1.5rem;
  padding-top: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin: auto;
}

.comunidad-img {
  width: 100%;
  height: 30rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.siguenos {
  background-image: url("../assets/Images_Divider_color.webp");
  width: 100%;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -150px;
  position: relative;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  text-align: center;
}

.siguenos .siguenos-tit {
  font-family: 'MontExtraBold';
  color: #522d6d;
  font-size: 2.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
}

.siguenos .redes-sociales a {
  text-decoration: none !important;
  color: #522d6d !important;
  margin: 10px;
}

@media (min-width: 320px) {
  .home-bienestar:not([data-120="120vh"]), .home-atencion {
    height: 90% !important;
    padding-bottom: 20%;
  }
  .tall-tit-text {
    font-size: 2rem !important;
    width: 80%;
    margin-left: 10%;
    padding-top: 140px;
    margin-bottom: 1rem;
  }
  .tall-img {
    width: 90% !important;
    position: inherit;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
  }
}

@media (min-width: 540px) {
  .tall-img {
    margin-top: .5rem;
    width: 80% !important;
  }
}

@media (min-width: 590px) {
  .tall-img {
    width: 70% !important;
  }
}

@media (min-width: 675px) {
  .tall-img {
    width: 60% !important;
  }
}

@media (min-width: 800px) {
  .tall-img {
    margin-top: 0rem;
    width: 50% !important;
    position: absolute;
    top: 190px;
    right: 0px;
  }
  .tall-tit-text {
    width: 85% !important;
    font-size: 2.3rem !important;
    padding-top: 240px;
  }
}

@media (min-width: 1280px) {
  .tall-tit-text {
    font-size: 3.6rem !important;
    padding-top: 200px;
  }
}

@media (min-width: 1440px) {
  .tall-tit-text {
    font-size: 4.3rem !important;
    padding-top: 300px;
  }
}

@media (min-width: 1600px) {
  .tall-tit-text {
    font-size: 4.5rem !important;
  }
}

@media (min-width: 320px) {
  .taller-video {
    padding-left: 0 !important;
    padding-right: 0 !important;
    height: 480px !important;
  }
  .taller-video .taller-thumbnail {
    height: 350px !important;
  }
  .taller-video .video-desc {
    width: 100%;
    height: 6rem !important;
  }
  .taller-video .taller-tipo {
    font-size: .9rem !important;
  }
  .taller-video .taller-nombre {
    font-size: .9rem !important;
    padding-top: 0rem !important;
  }
}

@media (min-width: 540px) {
  .taller-video {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  .video-desc {
    width: 70% !important;
  }
}

@media (min-width: 1280px) {
  .taller-video {
    height: 720px !important;
  }
  .taller-video .taller-thumbnail {
    height: 550px !important;
  }
  .taller-video .video-desc {
    height: 8rem !important;
  }
  .taller-video .taller-tipo {
    font-size: 1rem !important;
  }
  .taller-video .taller-nombre {
    padding-top: .5rem !important;
    font-size: 1.2rem !important;
  }
}

@media (min-width: 1600px) {
  .taller-video {
    height: 750px !important;
  }
  .taller-video .video-desc {
    height: 9rem !important;
  }
  .taller-video .taller-tipo {
    font-size: 1.3rem !important;
  }
  .taller-video .taller-imparte {
    font-size: 1.3rem !important;
  }
  .taller-video .taller-nombre {
    font-size: 1.6rem !important;
  }
}

@media (min-width: 320px) {
  .profesionalizate {
    border-top-right-radius: 100px;
  }
  .prof-titulo {
    font-size: 1.5rem !important;
    letter-spacing: 1px !important;
    padding-top: 3rem !important;
  }
  .prof-desc {
    width: 80% !important;
    text-align: justify;
    font-size: .9rem !important;
    padding-top: 2rem;
  }
  .prof-input {
    width: 80%;
  }
  .prof-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 768px) {
  .prof-input {
    width: 30rem !important;
  }
}

@media (min-width: 1280px) {
  .profesionalizate {
    border-top-right-radius: 150px !important;
  }
  .prof-desc {
    font-size: 1rem !important;
    width: 60% !important;
    text-align: center;
  }
  .prof-titulo {
    font-size: 2rem !important;
  }
}

@media (min-width: 1600px) {
  .prof-titulo {
    font-size: 2.8rem !important;
  }
  .prof-desc {
    font-size: 1.2rem !important;
    padding-top: 1rem !important;
  }
  .prof-input {
    width: 37rem !important;
    font-size: 1.2rem !important;
  }
  .prof-button {
    font-size: 1.2rem !important;
  }
}

@media (min-width: 320px) {
  .prox-eventos {
    margin-top: 50px;
    border-top-right-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .eventos-tit {
    padding-left: 0;
    font-size: 1.7rem;
    padding-top: 3rem;
  }
  .profesionalizate .card-taller {
    background-color: transparent !important;
  }
}

@media (min-width: 768px) {
  .eventos-tit {
    font-size: 2rem !important;
  }
}

@media (min-width: 1280px) {
  .prox-eventos {
    border-top-right-radius: 150px !important;
    border-bottom-left-radius: 150px !important;
  }
}

@media (min-width: 1600px) {
  .eventos-tit {
    font-size: 3rem !important;
  }
}

@media (min-width: 320px) {
  .afiliarse {
    border-bottom-left-radius: 100px !important;
  }
}

@media (min-width: 1280px) {
  .afiliarse {
    border-bottom-left-radius: 150px !important;
  }
}

@media (min-width: 320px) {
  .siguenos-tit {
    font-size: 1.6rem !important;
  }
  .redes-sociales a {
    font-size: 2rem !important;
  }
}

@media (min-width: 375px) {
  .siguenos-tit {
    width: 80% !important;
  }
}

@media (min-width: 540px) {
  .siguenos {
    height: 500px;
  }
  .siguenos-tit {
    font-size: 2rem !important;
  }
}

@media (min-width: 1280px) {
  .siguenos {
    height: 700px;
  }
  .siguenos-tit {
    font-size: 2.5rem !important;
  }
  .redes-sociales a {
    font-size: 2.7rem !important;
  }
}

@media (min-width: 1440px) {
  .siguenos-tit {
    font-size: 3rem !important;
  }
  .redes-sociales {
    width: 80% !important;
  }
  .redes-sociales a {
    font-size: 3rem !important;
  }
}

@media (min-width: 320px) {
  #cartasTalleres {
    margin-top: 0px !important;
    border-bottom-left-radius: 100px;
    height: 430px !important;
  }
  .owl-nav {
    margin-top: 0px !important;
  }
  .card-taller {
    width: 18rem !important;
    margin: 0 auto;
  }
  .taller-desc .taller-nombre {
    font-size: 1rem !important;
  }
  .taller-desc .taller-brief {
    font-size: .8rem !important;
  }
}

@media (min-width: 410px) {
  .card-taller {
    width: 21rem !important;
  }
  .taller-desc .taller-nombre {
    font-size: 1.1rem !important;
  }
  .taller-desc .taller-brief {
    font-size: .9rem !important;
  }
}

@media (min-width: 540px) {
  .card-taller {
    width: 26rem !important;
  }
  .taller-image {
    height: 10rem !important;
  }
  .taller-desc {
    height: 12rem !important;
  }
  .taller-desc .taller-nombre {
    font-size: 1.2rem !important;
  }
  .taller-desc .taller-brief {
    font-size: 1rem !important;
  }
}

@media (min-width: 768px) {
  .card-taller {
    width: 22rem !important;
  }
  .taller-image {
    height: 9rem !important;
  }
  .taller-desc {
    height: 13rem !important;
  }
  .taller-desc .taller-nombre {
    font-size: 1.1rem !important;
  }
  .taller-desc .taller-brief {
    font-size: .9rem !important;
  }
}

@media (min-width: 1440px) {
  #cartasTalleres {
    height: 500px !important;
  }
  .card-taller {
    width: 27rem !important;
  }
  .taller-image {
    height: 11rem !important;
  }
  .taller-desc .taller-nombre {
    font-size: 1.3rem !important;
  }
  .taller-desc .taller-brief {
    font-size: 1rem !important;
  }
}
/*# sourceMappingURL=style.css.map */