header {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 2rem;
  box-sizing: border-box;
  border-bottom: 1.5px solid #F1F1F1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -webkit-box-shadow: 0px 1px 4px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 4px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 4px -3px rgba(0, 0, 0, 0.75);
}
header .content_logo_search {
  display: flex;
  align-items: center;
  width: 30%;
  justify-content: space-between;
}
header .content_logo_search .logo {
  width: 30%;
}
header .content_logo_search .logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
header .content_logo_search .logo a img {
  width: 80px;
  height: auto;
}
header .content_logo_search .logo a h1 {
  color: #771C20;
  font-size: 1rem;
  font-weight: 500;
}
header .menu {
  display: flex;
  align-items: center;
  width: 70%;
  justify-content: flex-end;
}
header .menu p {
  color: #2A2A2A;
  font-size: 1rem;
  margin: 0 0.3rem;
}
header .menu p a {
  text-decoration: none;
  color: #2A2A2A;
  background: transparent;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  border: 1px solid #2A2A2A;
  border-radius: 3px;
  transition: all 0.5s;
}
header .menu p #registrate {
  color: #fff;
  background: #771C20;
  border: 1px solid #771C20;
}
header .menu p a:hover {
  background: #EFEFEF;
}
header .menu .link {
  color: #2A2A2A;
  font-size: 1rem;
  margin: 0 1rem;
  text-decoration: none;
}
header .menu .link:hover {
  transition: all 0.5s;
  color: #771C20;
}
header .menu #cart {
  font-size: 1.2rem;
  margin-left: 1rem;
  cursor: pointer;
}

.buscador_cursos {
  width: 50%;
  margin: 0 auto;
  margin-top: 3rem;
}
.buscador_cursos .group_input_search {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 0.9rem 1rem;
}
.buscador_cursos .group_input_search input {
  border: none;
  color: #2A2A2A;
  width: 95%;
  outline: 0;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
}
.buscador_cursos .group_input_search input:focus {
  outline: 0;
  border: 0;
}
.buscador_cursos .group_input_search button {
  background: transparent;
  border: 0;
  font-size: 1.1rem;
  color: #2A2A2A;
  cursor: pointer;
}

.swiper {
  width: 100%;
  height: 280px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 1.3rem !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 50%;
  background: #2A2A2A;
  height: 40px !important;
  width: 40px !important;
}

.mas_vendidos {
  width: 100%;
  margin: 0 auto;
  max-width: 90%;
  margin-top: 4.5rem;
}
.mas_vendidos h2 {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.swiper {
  height: auto !important;
}

.card_curso {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 0.5rem;
  cursor: pointer;
}
.card_curso .thumb_curso {
  width: 100%;
  height: auto;
  object-fit: fill;
  object-position: center center;
}
.card_curso .thumb_curso:hover {
  transition: all 0.4s;
  filter: grayscale(50%);
}
.card_curso .add_cart_curso {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  z-index: 999;
}
.card_curso .add_cart_curso p {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 5px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 5px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 1px 5px -2px rgba(0, 0, 0, 0.75);
}
.card_curso .add_cart_curso p i {
  color: #2A2A2A;
  font-size: 1.1rem;
}
.card_curso .add_cart_curso p:hover {
  background-color: #EFEFEF;
}
.card_curso .add_cart_curso #info {
  margin-top: 0.8rem;
}
.card_curso .card_info {
  box-sizing: border-box;
  padding: 1rem;
}
.card_curso .card_info .nombre_curso {
  font-weight: 500;
  font-size: 1.1rem;
  height: 36px;
  overflow: hidden;
  width: 70%;
  margin-bottom: 0.2rem;
}
.card_curso .card_info .categoria_curso {
  font-size: 0.9rem;
}
.card_curso .card_info .precio_curso {
  margin-top: 0.3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #771C20;
}
.card_curso .card_info .precio_curso i {
  text-decoration: line-through;
  font-size: 1rem;
  color: #777;
}
.card_curso:hover {
  transition: all 0.4s;
  background-color: #F5F5F5;
}

.slider_home .slide .carousel-inner .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

/* Estilos generales */
.contamos {
  width: 100%;
  padding: 4rem 0;
}
.contamos h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  color: #771C20;
  font-weight: 500;
}
.contamos hr {
  color: #771C20;
  width: 125px;
  position: relative;
  margin-top: -0.2rem;
  background: #771C20;
  opacity: 1;
  height: 4px;
}
.contamos .contamos_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contamos .contamos_row .item_ {
  width: 25%;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin-top: 4rem;
}
.contamos .contamos_row .item_ .icono {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}
.contamos .contamos_row .item_ .numero {
  font-size: 1.5rem;
  line-height: 1.7rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
.contamos .contamos_row .item_ .texto {
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: center;
}

.cursos_populares_ {
  width: 100%;
  padding: 4rem 0;
}
.cursos_populares_ h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  color: #771C20;
  font-weight: 500;
}
.cursos_populares_ hr {
  color: #771C20;
  width: 125px;
  position: relative;
  margin-top: 0.1rem;
  background: #771C20;
  opacity: 1;
  height: 4px;
}
.cursos_populares_ .row_cursos_pp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2rem;
}
.cursos_populares_ .row_cursos_pp .curso_pp {
  margin: 1rem 0;
  width: 30%;
}
.cursos_populares_ .row_cursos_pp .curso_pp img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
}
.cursos_populares_ .row_cursos_pp .curso_pp img:hover {
  opacity: 0.9;
}
.cursos_populares_ .btn_ {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.cursos_populares_ .btn_ a {
  text-decoration: none;
  color: #2A2A2A;
  background: transparent;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  border: 1px solid #2A2A2A;
  border-radius: 3px;
  transition: all 0.5s;
  font-size: 1.2rem;
}

.plataforma_ {
  width: 100%;
  padding: 5rem 0;
  background: #E8E8E8;
}
.plataforma_ .row_plaforma {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.plataforma_ .row_plaforma div {
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}
.plataforma_ .row_plaforma div h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #771C20;
}
.plataforma_ .row_plaforma div p {
  font-size: 1rem;
  line-height: 1.3rem;
  margin-bottom: 1rem;
}
.plataforma_ .row_plaforma div img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.recomendados_ {
  margin: 4rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recomendados_ h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  color: #771C20;
  font-weight: 500;
  text-align: center;
}
.recomendados_ p {
  font-size: 1.2rem;
  margin: 1.5rem 0;
}
.recomendados_ img {
  width: 200px;
  height: auto;
}

.portada_nosotros {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../media/nosotros.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.portada_nosotros h2 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.portada_contactanos {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../media/contacto.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.portada_contactanos h2 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.nosotros_ {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.nosotros_ h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}
.nosotros_ p {
  font-size: 1.2rem;
  line-height: 1.4rem;
}

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