@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

body {
  overflow-x: hidden;
  background-color: #f2f2f2;
}

.slide__principal {
  background-image: url("../images/position/cursos/header_cursos.png");
  background-size: cover;
  background-position: center;
  width: 100vw;
  display: block;
}
.slide__principal .bg {
  padding: 100px 20px;
  background-color: rgba(0, 54, 95, 0.6);
}
.slide__principal .bg .sp_cont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.slide__principal .bg .sp_cont .categoria {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #59c575;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide__principal .bg .sp_cont h4 {
  color: #fff;
  text-align: center;
  /* desktop/heading/H4 */
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 43.2px */
  margin-bottom: 32px;
}
.slide__principal .bg .sp_cont .texto {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 28px */
}

.bradcrum {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  background-color: #fff;
  margin: -20px auto 80px;
  padding: 10px 30px;
  border-radius: 40px;
}
.bradcrum .b_cont {
  width: 100%;
  text-align: center;
}
.bradcrum .b_cont p {
  color: #00365f;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 150%;
  /* 27px */
}
.bradcrum .b_cont p a {
  color: #00365f;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
}
.bradcrum .b_cont p img {
  width: 20px;
  margin: 0 15px;
}

.consultores__section {
  width: 100vw;
  padding: 50px 20px 150px;
  display: block;
}
.consultores__section .cs_grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.consultores__section .cs_grid .consultor {
  width: 22%;
  display: block;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid gray;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 480px;
  background-color: #fff;
  position: relative;
  transition: border-color 0.3s ease;
}
.consultores__section .cs_grid .consultor img {
  width: 100%;
  margin-bottom: 20px;
}
.consultores__section .cs_grid .consultor .nombre {
  color: #00365f;
  text-align: center;
  /* desktop/body/medium/L */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 28px */
  margin-bottom: 10px;
  /* Para limitar a dos líneas con puntos suspensivos */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.consultores__section .cs_grid .consultor .puesto {
  color: #00365f;
  text-align: center;
  margin-bottom: 10px;
  /* desktop/body/bold/L */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 28px */
  /* Para limitar a dos líneas con puntos suspensivos */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.consultores__section .cs_grid .consultor .desc {
  color: #00365f;
  text-align: center;
  margin-bottom: 10px;
  /* desktop/body/regular/S */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* Para limitar a dos líneas con puntos suspensivos */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 21px */
}
.consultores__section .cs_grid .consultor .cta {
  display: flex;
  align-items: center;
  color: #13a538;
  justify-content: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
  text-transform: uppercase;
  text-decoration: none;
}
.consultores__section .cs_grid .consultor .cta img {
  width: 24px;
  margin-left: 10px;
  margin-bottom: 0;
}
.consultores__section .cs_grid .consultor::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  border-radius: 20px;
  bottom: -1px;
  background: linear-gradient(to right, #59C575, #0176D0);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.consultores__section .cs_grid .consultor:hover {
  border: none;
}
.consultores__section .cs_grid .consultor:hover::before {
  opacity: 1;
}

.aprende__section {
  background-image: url("../images/position/aprende.png");
  background-size: cover;
  background-position: center;
  width: 100vw;
  display: block;
  border-bottom: 6px solid #13A538;
}
.aprende__section .bg {
  padding: 100px 20px;
  background: linear-gradient(90deg, rgba(0, 54, 95, 0.9) 0%, rgba(19, 165, 56, 0.6) 68.63%);
}
.aprende__section .bg .aps_cont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.aprende__section .bg .aps_cont .categoria {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}
.aprende__section .bg .aps_cont .categoria p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #59C575;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
  text-transform: uppercase;
}
.aprende__section .bg .aps_cont .categoria p img {
  margin-right: 15px;
}
.aprende__section .bg .aps_cont .titulo {
  width: 100%;
  display: block;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 70px;
}
.aprende__section .bg .aps_cont .titulo h4 {
  color: #FFF;
  text-align: center;
  /* desktop/heading/H4 */
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 43.2px */
}
.aprende__section .bg .aps_cont .cta_btn {
  background-color: #015ea6;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  text-decoration: none;
}
.aprende__section .bg .aps_cont .cta_btn img {
  margin-left: 5px;
}

@media only screen and (max-width: 1060px) {
  .consultores__section .cs_grid .consultor {
    width: 30%;
    height: 500px;
  }
}
@media only screen and (max-width: 860px) {
  .consultores__section .cs_grid .consultor {
    width: 45%;
    height: 570px;
  }
}
@media only screen and (max-width: 580px) {
  .consultores__section .cs_grid .consultor {
    width: 100%;
    height: 680px;
  }
  .aprende__section .bg .aps_cont .titulo h4,
  .slide__principal .bg .sp_cont h4 {
    font-size: 24px;
  }
  .aprende__section .bg .aps_cont .categoria p {
    width: 65%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .consultores__section .cs_grid .consultor {
    height: 600px;
  }
}/*# sourceMappingURL=consultores.css.map */