@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;
}

.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;
}

.consultoria__section {
  width: 100vw;
  display: block;
  padding: 50px 20px;
}
.consultoria__section .cs_cont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.consultoria__section .cs_cont .infor {
  width: 45%;
}
.consultoria__section .cs_cont .infor .logo {
  display: block;
  margin-bottom: 80px;
}
.consultoria__section .cs_cont .infor .logo img {
  width: 180px;
}
.consultoria__section .cs_cont .infor .textos {
  width: 100%;
  display: block;
}
.consultoria__section .cs_cont .infor .textos p {
  color: #002541;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 36px */
}
.consultoria__section .cs_cont .acordeon_items {
  width: 45%;
}
.consultoria__section .cs_cont .acordeon_items .acordeon {
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  border: 1px solid #8C9091;
  border-radius: 20px;
  padding: 10px;
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn {
  width: 100%;
  padding: 15px;
  text-align: left;
  background-color: #ffffff;
  color: #646363;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 33.6px */
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin: 5px 0 0;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  /* Contenedor para la flecha */
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn img {
  margin-right: 15px;
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn .flecha {
  width: 20px;
  margin: 0 0 0 auto;
  height: 20px;
  background-image: url("../images/icons/down.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease-in-out;
  /* Transición suave para la rotación */
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn.open .flecha {
  transform: rotate(180deg);
  /* Solo rota la flecha */
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn.open {
  background-color: #EBF6FF;
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn:hover {
  background-color: #EBF6FF;
}
.consultoria__section .cs_cont .acordeon_items .acordeon-contenido {
  padding: 15px;
  background-color: #EBF6FF;
  display: none;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.consultoria__section .cs_cont .acordeon_items .acordeon-contenido ul {
  width: 100%;
  padding: 10px 35px;
}
.consultoria__section .cs_cont .acordeon_items .acordeon-contenido ul li {
  color: #646363;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}
.consultoria__section .cs_cont .acordeon_items .acordeon-btn:focus + .acordeon-contenido,
.consultoria__section .cs_cont .acordeon_items .acordeon-btn:active + .acordeon-contenido {
  display: block;
}

.dudas__section {
  width: 100vw;
  background-color: #015ea6;
  padding: 70px 20px;
}
.dudas__section .ds_cont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.dudas__section .ds_cont .informacion {
  width: 60%;
  display: block;
}
.dudas__section .ds_cont .informacion h4 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  /* 43.2px */
  margin-bottom: 20px;
}
.dudas__section .ds_cont .informacion p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  /* 28px */
}
.dudas__section .ds_cont .formulario {
  width: 35%;
}
.dudas__section .ds_cont .formulario form {
  width: 100%;
  display: block;
}
.dudas__section .ds_cont .formulario form .input_form {
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 16px;
}
.dudas__section .ds_cont .formulario form .input_form input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.dudas__section .ds_cont .formulario form .input_form input.user {
  background-image: url("../images/icons/user_white.svg");
  background-position: 10px center;
  background-repeat: no-repeat;
}
.dudas__section .ds_cont .formulario form .input_form input.mail {
  background-image: url("../images/icons/mail_white.svg");
  background-position: 10px center;
  background-repeat: no-repeat;
}
.dudas__section .ds_cont .formulario form .input_form input.cta {
  max-width: 220px;
  padding: 8px 30px;
  cursor: pointer;
  border-radius: 24px;
  border: none;
  background-color: #015ea6;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  text-transform: uppercase;
  transition: 0.5s;
}
.dudas__section .ds_cont .formulario form .input_form input.cta:hover {
  color: #015ea6;
  background-color: #fff;
  transition: 0.5s;
}
.dudas__section .ds_cont .formulario form .input_form input::-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input::placeholder {
  color: #fff;
  opacity: 0.5;
}
.dudas__section .ds_cont .formulario form .input_form input:focus {
  outline: none;
}

.testimonios__section {
  width: 100vw;
  display: block;
  padding: 50px 20px 100px;
}
.testimonios__section .ts_cont {
  max-width: 780px;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.testimonios__section .ts_cont p {
  color: #00365f;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  /* 28px */
  margin-bottom: 80px;
}
.testimonios__section .ts_cont .users {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.testimonios__section .ts_cont .users img {
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -20px;
}
.testimonios__section .ts_cont .info {
  width: 100%;
  text-align: center;
}
.testimonios__section .ts_cont .info p {
  margin-bottom: 2px;
}
.testimonios__section .ts_cont .info p.puesto {
  color: #646363;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
}
.testimonios__section .ts_cont .info p.empresa {
  color: var(--blue-main, #00365f);
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
}

@media only screen and (max-width: 980px) {
  .consultoria__section .cs_cont {
    flex-wrap: wrap;
  }
  .consultoria__section .cs_cont .infor {
    width: 100%;
    margin-bottom: 30px;
  }
  .consultoria__section .cs_cont .acordeon_items {
    width: 100%;
  }
  .consultoria__section .cs_cont .infor .logo {
    text-align: center;
  }
}
@media only screen and (max-width: 860px) {
  .dudas__section .ds_cont .informacion {
    width: 100%;
    margin-bottom: 50px;
  }
  .dudas__section .ds_cont .formulario {
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .dudas__section .ds_cont .informacion h4,
  .slide__principal .bg .sp_cont h4 {
    font-size: 24px;
  }
}/*# sourceMappingURL=consultoria.css.map */