@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;
  -webkit-box-sizing: border-box;
  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: -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;
  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: -webkit-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
}
.consultores__section .cs_grid .consultor {
  display: block;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid gray;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 480px;
  background-color: #fff;
  position: relative;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.consultores__section .cs_grid .consultor img {
  width: 100%;
  margin-bottom: 20px;
  max-height: 230px;
  object-fit: cover;
  object-position: center;
}
.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;
  -o-text-overflow: ellipsis;
  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;
  -o-text-overflow: ellipsis;
  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;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  /* 21px */
}
.consultores__section .cs_grid .consultor .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #13a538;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  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: -o-linear-gradient(left, #59c575, #0176d0);
  background: -webkit-gradient(linear, left top, right top, from(#59c575), to(#0176d0));
  background: linear-gradient(to right, #59c575, #0176d0);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  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: -o-linear-gradient(
    left,
    rgba(0, 54, 95, 0.9) 0%,
    rgba(19, 165, 56, 0.6) 68.63%
  );
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(0, 54, 95, 0.9)),
    color-stop(68.63%, rgba(19, 165, 56, 0.6))
  );
  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: -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;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: 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 {
    height: 500px;
  }
}

@media only screen and (max-width: 960px) {
     .consultores__section .cs_grid{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 860px) {
   
  .consultores__section .cs_grid .consultor {
    height: 570px;
  }
}
@media only screen and (max-width: 767px){
    .consultores__section .cs_grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@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: auto;
  }
  .consultores__section .cs_grid{
        grid-template-columns: repeat(1, 1fr);
    }
}
