@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

/*img {*/
/*  height: 100%; }*/

svg {
  height: 100%; }

body {
  position: relative;
  overflow-x: hidden; 
    
    
}

html {
  font-size: 1em; }

body {
  font-family: 'Lato', serif;
  font-weight: 400;
  line-height: 1.45;
  color: #333; 
  background:linear-gradient(to right, #00013a, #010005);
}

/* p {margin-bottom: 1.3em;} */
h1, h2, h3, h4 {
  font-weight: inherit;
  line-height: 1.2; }

h1 {
  margin-top: 0;
  font-size: 3.375em; }

h2 {
  font-size: 1.5em; }

h3 {
  font-size: 1.5em; }

h4 {
  font-size: 1em; }

small, .font_small {
  font-size: 0.667em; }

button, input {
  font-family: 'Lato', serif;
  font-size: 1em; }

button, .button {
  padding: 0.5em 0.75em;
  border: 2px solid #E85146;
  outline: none;
  cursor: pointer;
  color: white;
  background-color: transparent; }
 

.button-group {
  display: flex; }
  .button-group button:nth-of-type(odd) {
    background-color: #fff;
    color: #E85146;
    border: 1px solid #E85146;
    border-radius: .1em; }
  .button-group button:nth-of-type(even) {
    background-color: #E85146;
    color: white;
    border-radius: .1em; }
  .button-group input {
    padding: 0.5em 0.75em;
    color: #E85146;
    border-radius: .1em 0 0 .1em;
    background-color: white; }
  .button-group input + button {
    border: none !important;
    margin: 0;
    border-radius: 0 0.1em 0.1em 0 !important;
    background-color: #ebebeb; }
    .button-group input + button:hover {
      color: white;
      background-color: #E85146; }
  .button-group button {
    margin-right: .5em; }
  .button-group button.button-cta {
    background-color: #E85146;
    color: white;
    border-radius: .1em; }

button.button-cta {
  background-color: #E85146;
  color: white;
  border-radius: .1em; }
  
a.button-cta {
  background-color: #E85146;
  color: white;
  border-radius: .1em;
  padding: 0.2em 0.45em 0.2em 0.45em;
  border: 2px solid #E85146;
  text-decoration: none;
  cursor: pointer;
  /*background-color: transparent;*/
    
}

input {
  border: none;
  padding: 0.5em 0.75em;
  outline: none;
  background-color: white; }

::placeholder {
  color: #575757; }

.slider-container-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden; }
  .slider-container-header__arrow-left, .slider-container-header__arrow-right, .slider-container-header__double-arrow {
    position: absolute;
    font-size: 2em;
    color: white;
    z-index: 1; }
  .slider-container-header__arrow-left {
    top: 50%;
    left: .5em;
    transform: translateY(-50%); }
  .slider-container-header__arrow-right {
    top: 50%;
    right: .5em;
    transform: translateY(-50%); }
  .slider-container-header__double-arrow {
    bottom: .5em;
    left: 50%;
    transform: translateX(-50%); }
  .slider-container-header__slider {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0; }

.slider-container-header .slider {
  z-index: 0; }
  .slider-container-header .slider__item {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transition: all 1s; }
  .slider-container-header .slider__item.slider__left {
    transform: translateX(-100%);
    transition: all 1s; }
  .slider-container-header .slider__item.slider__right {
    transform: translateX(100%);
    transition: all 1s; }
  .slider-container-header .slider__content {
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden; }
  .slider-container-header .slider__title {
    text-transform: uppercase;
    width: 60%;
    text-align: center; }
  .slider-container-header .slider__text {
    width: 60%;
    margin: .5em auto 1em;
    text-align: center;
    font-size: 1.2em; }
  .slider-container-header .slider__background {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    animation: zom 40s linear infinite alternate;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }

@keyframes zom {
  from {
    transform: scale(1); }
  to {
    transform: scale(1.5); } }
.modal__container {
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 45, 54, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  z-index: 100;
  transition: all 1s; }
  .modal__container.show {
    transition: all 1s;
    transform: translateX(0); }
.modal__body {
  background-color: white;
  width: 90%;
  padding: 1rem;
  border-radius: .2em; }
  @media screen and (min-width: 400px) {
    .modal__body {
      max-width: 360px; } }
.modal__title {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E85146; }
.modal__form {
  margin-top: 2rem;
  text-align: center; }
  .modal__form input {
    background-color: #eee;
    margin-bottom: 1rem;
    padding: .7em;
    width: 100%;
    border-radius: .2em; }
  .modal__form button {
    color: #E85146; }
.modal__content-text {
  margin-top: 2rem;
  text-align: center; }
  .modal__content-text a {
    color: #E85146; }
.modal__footer {
  margin-top: 2rem;
  text-align: center; }
  .modal__footer a {
    color: #E85146; }

.card-course {
  border-radius: .1em;
  background-color: #fff;
  box-shadow: 0.1em 0.1em 0.5em #e2e2e2;
  border: 1px solid #e2e2e2; }
  .card-course__img {
    width: 100%; }
    .card-course__img img {
      width: 100%;
      /*height: 100%;*/
      padding: 0; }
  .card-course__body {
    padding: .7em .5em;
    cursor: default; }
  .card-course__title {
    text-align: left;
    font-weight: 700;
    height: 2.5em;
    overflow: hidden; }
  .card-course__author {
    text-align: left;
    margin: .2em 0 0 0;
    font-size: .8em;
    font-weight: 300; }
  .card-course__stars {
    color: #efb810;
    margin: .2em 0 0 0;
    text-align: left;
    font-size: .8em; }
    .card-course__stars i {
      margin-right: .3em;
      font-weight: 700; }
  .card-course__stars-decimal {
    color: black; }
  .card-course__price {
    text-align: right;
    margin: 1em 0 0 1em;
    font-weight: bolder; }
    .card-course__price-old {
      font-weight: normal;
      text-decoration: line-through;
      font-size: .75em; }
  .card-course__details {
    display: block;
    font-size: .75em;
    text-align: right;
    font-style: italic; }

.card-hover {
  width: 250px;
  height: 100%;
  overflow: hidden;
  padding: 1rem;
  background-color: white;
  border: 1px solid #E85146; }
  .card-hover i {
    position: absolute;
    top: 50%;
    font-size: 2.5em;
    color: #E85146; }
  .card-hover h4 {
    width: 100%;
    font-weight: 700; }
  .card-hover p {
    text-align: justify;
    margin: 0.5rem 0;
    font-size: .8em; }
  .card-hover ul {
    padding-left: 1rem; }
  .card-hover li {
    font-size: .8em;
    margin-bottom: .5rem; }
  .card-hover button {
    background-color: #E85146;
    color: white;
    margin-top: .5rem;
    font-size: .8em; }

.card-opinion {
  border-radius: .1em;
  background-color: #fff;
  box-shadow: 0.1em 0.1em 0.5em #e2e2e2;
  border: 1px solid #e2e2e2;
  height: 100%;
  overflow: hidden;
  padding: 2em; }
  .card-opinion__user {
    display: flex;
    align-items: center;
    margin-bottom: 1em; }
  .card-opinion__user-profile {
    width: 70px;
    height: 70px;
    flex: none; }
    .card-opinion__user-profile img {
      border-radius: 50%;
      width: 100%;
      height: 100%;
      padding: 0; }
  .card-opinion__user-information {
    margin-left: 1em; }
  .card-opinion__user-name {
    font-size: 1.2em;
    font-weight: 600; }
  .card-opinion__user-profession {
    font-size: .8em;
    color: #8a8a8a; }
  .card-opinion__opinion {
    font-size: 1em;
    color: #636363;
    text-align: justify; }
  .card-opinion__stars {
    margin: 1em 0 0 0;
    color: #efb810; }
    .card-opinion__stars i {
      margin-right: .3em;
      font-weight: 700; }
  .card-opinion__course {
    margin: 0;
    margin-top: .5em; }

/*OWN OF COURSE DETAILS */
.card-course-details {
  padding: 1em;
  background-color: #202D36;
  color: white; }
  .card-course-details__container {
    max-width: 500px;
    margin: auto; }
    @media screen and (min-width: 720px) {
      .card-course-details__container {
        max-width: 720px;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
        grid-gap: 1em;
        align-items: start;
        grid-template-areas: "a b"; } }
    @media screen and (min-width: 950px) {
      .card-course-details__container {
        max-width: 75%; } }
  @media screen and (min-width: 720px) {
    .card-course-details__col-1 {
      grid-area: b; } }
  .card-course-details__video {
    border-radius: .1em;
    border: 3px solid #E85146;
    width: 100%; }
    .card-course-details__video iframe {
      width: 100%; }
  @media screen and (min-width: 720px) {
    .card-course-details__col-2 {
      grid-area: a; } }
  .card-course-details__title {
    margin-top: 1rem; }
  .card-course-details__subtitle {
    margin: 1em 0;
    font-size: 1rem;
    text-align: justify; }
  .card-course-details__stars {
    color: #efb810;
    margin: 0 0 0 0;
    text-align: left;
    font-size: 1em;
    margin-top: 1em; }
    .card-course-details__stars i {
      margin-right: .3em;
      font-weight: 700; }
    .card-course-details__stars-decimal {
      color: white; }
  .card-course-details__total-opinions {
    margin: .25em 0 0 0;
    display: inline-block; }
  .card-course-details__total-students {
    margin: .25em 0 0 0;
    display: inline-block; }
  .card-course-details__price {
    display: flex;
    align-items: center;
    font-size: 2.5em;
    margin-top: 1rem;
    vertical-align: baseline;
    color: #fff; }
  .card-course-details__price-old {
    font-weight: 300;
    font-size: .5em;
    margin-left: .7em;
    text-decoration: line-through; }
  .card-course-details__buy {
    margin-top: 1em;
    font-size: 1em;
    width: 100%;
    padding: 1em;
    font-weight: 700; }
  .card-course-details__like {
    margin-top: .5em;
    margin-right: 1%;
    font-size: 1em;
    border-radius: .1em;
    width: 30%;
    padding: 1rem;
    font-weight: 700;
    background-color: white;
    border: none;
    color: #E85146; }
  .card-course-details__business {
    margin-top: .5em;
    font-size: 1em;
    width: 68%;
    padding: 1em;
    border-radius: .1em;
    font-weight: 700;
    background-color: white;
    border: none;
    color: #E85146; }

.card-course-resume {
  margin: 1em .5em;
  padding: 1em;
  border: 1px solid #c7c7c7;
  background-color: #f7f8fa;
  color: #575757;
  font-size: 1em; }
  .card-course-resume__title {
    font-weight: 900;
    font-size: 1.5em;
    color: #E85146; }
  .card-course-resume div {
    margin-top: .5em; }
  .card-course-resume i {
    width: 20px;
    text-align: center;
    margin-right: .25em; }
  .card-course-resume p {
    display: inline-block; }

.card-course-that-learn, .card-course-requirements {
  position: relative;
  margin: 1em .5em;
  padding: 1em;
  border: 1px solid #E85146;
  background-color: #f7f8fa;
  color: #575757;
  font-size: 1em; }
  .card-course-that-learn__title, .card-course-requirements__title {
    font-weight: 900;
    font-size: 1.5em;
    color: #E85146;
    margin-bottom: 1rem; }
  .card-course-that-learn__item, .card-course-requirements__item {
    list-style: none;
    display: flex;
    margin-top: 1em; }
    .card-course-that-learn__item:first-child, .card-course-requirements__item:first-child {
      margin-top: 0; }
    .card-course-that-learn__item i, .card-course-requirements__item i {
      margin-right: 1em;
      padding-top: .45em;
      font-size: .9em; }
  .card-course-that-learn__more, .card-course-requirements__more {
    padding: 1em;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: flex-end;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f8fa+0,f7f8fa+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(247, 248, 250, 0) 0%, #f7f8fa 50%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(247, 248, 250, 0) 0%, #f7f8fa 50%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(247, 248, 250, 0) 0%, #f7f8fa 50%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f7f8fa', endColorstr='#f7f8fa',GradientType=0 );
    /* IE6-9 */ }

.card-course-program {
  position: relative;
  margin: 1em .5em;
  padding: 1em;
  border: 1px solid #E85146;
  background-color: #f7f8fa;
  color: #575757;
  font-size: 1em; }
  .card-course-program__title {
    font-weight: 900;
    font-size: 1.5em;
    color: #E85146; }
  .card-course-program__total {
    margin-top: .5em;
    display: flex;
    justify-content: space-between; }
  .card-course-program__sections {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    border-radius: .1em; }
  .card-course-program__section {
    background-color: #ebebeb;
    margin-bottom: .1em; }
    .card-course-program__section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1em;
      padding: 1em; }
      .card-course-program__section-header i {
        transition: transform 1s; }
      .card-course-program__section-header.show i {
        transform: rotate(180deg); }
    .card-course-program__section-body {
      padding: 0 1em;
      transition: height 1s;
      overflow: hidden; }
    .card-course-program__section-item {
      list-style: none;
      display: flex;
      margin-bottom: 1em; }
      .card-course-program__section-item i {
        margin-right: 1em;
        padding-top: .45em;
        font-size: .9em; }

.card-course-description {
  position: relative;
  margin: 1em .5em;
  padding: 1em;
  border: 1px solid #E85146;
  background-color: #f7f8fa;
  color: #575757;
  font-size: 1em; }
  .card-course-description__title {
    font-weight: 900;
    font-size: 1.5em;
    color: #E85146;
    margin-bottom: 1rem; }
  .card-course-description__content {
    text-align: justify; }
  .card-course-description__more {
    padding: 1em;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: flex-end;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f8fa+0,f7f8fa+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(247, 248, 250, 0) 0%, #f7f8fa 50%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(247, 248, 250, 0) 0%, #f7f8fa 50%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(247, 248, 250, 0) 0%, #f7f8fa 50%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f7f8fa', endColorstr='#f7f8fa',GradientType=0 );
    /* IE6-9 */ }

.card-course-instructor {
  position: relative;
  margin: 1em .5em;
  padding: 1em;
  background-color: #202D36;
  color: white;
  font-size: 1em; }
  .card-course-instructor__title {
    font-weight: 900;
    font-size: 1.5em;
    color: #E85146;
    margin-bottom: 1rem; }
  .card-course-instructor__information-name {
    font-size: 1.2em;
    text-align: left;
    font-weight: 700; }
  .card-course-instructor__information-profession {
    display: block;
    text-align: left;
    font-size: 1em; }
  .card-course-instructor__information-details {
    display: flex;
    margin-top: 1.5em; }
  .card-course-instructor__information-profile {
    width: 100px;
    height: 100px; }
    .card-course-instructor__information-profile img {
      border-radius: 50%; }
  .card-course-instructor__information-stats {
    margin-left: 1em; }
    .card-course-instructor__information-stats i {
      margin-right: .5em; }
  .card-course-instructor__information-biography {
    text-align: justify;
    margin-top: 1.5em; }
  .card-course-instructor__more {
    padding: 1em;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: flex-end;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: white;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#202d36+0,202d36+50&0+0,1+50 */
    background: -moz-linear-gradient(top, rgba(32, 45, 54, 0) 0%, #202d36 50%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(32, 45, 54, 0) 0%, #202d36 50%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(32, 45, 54, 0) 0%, #202d36 50%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00202d36', endColorstr='#202d36',GradientType=0 );
    /* IE6-9 */ }

.card-course-opinions {
  position: relative;
  margin: 1em .5em;
  padding: 1em;
  color: #575757;
  font-size: 1em;
  /*ESTILOS DE RESEÑAS*/ }
  .card-course-opinions__title {
    font-weight: 900;
    font-size: 1.5em;
    color: #E85146;
    margin-bottom: 1rem; }
  .card-course-opinions__puntuation {
    font-size: 3em;
    margin-bottom: 1rem; }
    .card-course-opinions__puntuation span {
      font-size: 1rem; }
  .card-course-opinions > div {
    margin-bottom: 1em;
    display: flex;
    align-items: center; }
  .card-course-opinions__total-percentage {
    width: 50%;
    height: 1.2em;
    margin-right: 1em;
    border-radius: .2em;
    background-color: #dbdbdb; }
  .card-course-opinions__five-percentage {
    width: calc(1% * 60);
    height: 100%;
    border-radius: .2em;
    background-color: #E85146; }
  .card-course-opinions__four-percentage {
    width: calc(1% * 27);
    height: 100%;
    border-radius: .2em;
    background-color: #E85146; }
  .card-course-opinions__three-percentage {
    width: calc(1% * 9);
    height: 100%;
    border-radius: .2em;
    background-color: #E85146; }
  .card-course-opinions__two-percentage {
    width: calc(1% * 2);
    height: 100%;
    border-radius: .2em;
    background-color: #E85146; }
  .card-course-opinions__one-percentage {
    width: calc(1% * 2);
    height: 100%;
    border-radius: .2em;
    background-color: #E85146; }
  .card-course-opinions i {
    color: #efb810; }
  .card-course-opinions__opinions {
    margin-top: 2em; }
  .card-course-opinions__opinion {
    width: 100%;
    border-top: 1px solid #202D36;
    padding: 1em 0; }
    .card-course-opinions__opinion:last-child {
      border-bottom: 1px solid #202D36; }
  .card-course-opinions__content {
    margin: 1em 0;
    text-align: justify; }

/*OWN OF SEARCH */
.card-result-course {
  border-radius: .1em;
  background-color: #fff;
  box-shadow: 0.1em 0.1em 0.5em #e2e2e2;
  border: 1px solid #e2e2e2; }
  .card-result-course__img {
    width: 100%; }
    .card-result-course__img img {
      width: 100%;
      height: 140px;
      padding: 0; }
  .card-result-course__body {
    padding: .7em .5em;
    cursor: default; }
  .card-result-course__title {
    text-align: left;
    font-weight: 700;
    height: 2.5em;
    overflow: hidden; }
  .card-result-course__author {
    text-align: left;
    margin: .2em 0 0 0;
    font-size: .8em;
    font-weight: 300; }
  .card-result-course__stars {
    color: #efb810;
    margin: .2em 0 0 0;
    text-align: left;
    font-size: .8em; }
    .card-result-course__stars i {
      margin-right: .3em;
      font-weight: 700; }
  .card-result-course__stars-decimal {
    color: black; }
  .card-result-course__price {
    text-align: right;
    margin: 1em 0 0 1em;
    font-weight: bolder; }
    .card-result-course__price-old {
      font-weight: normal;
      text-decoration: line-through;
      font-size: .75em; }
  .card-result-course__details {
    display: block;
    font-size: .75em;
    text-align: right;
    font-style: italic; }

.slider-container {
  position: relative;
  margin: 0 0; }
  .slider-container .slider {
    overflow: hidden;
    position: relative;
    cursor: pointer; }
    .slider-container .slider__div-item {
      position: absolute;
      top: 0;
      left: 0;
      padding: 0;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      transition: transform 1s; }
      .slider-container .slider__div-item.right-1 {
        transform: translateX(100%);
        transition: transform 1s; }
      .slider-container .slider__div-item.right-2 {
        transform: translateX(200%);
        transition: transform 1s; }
      .slider-container .slider__div-item.left-1 {
        transform: translateX(-100%);
        transition: transform 1s; }
      .slider-container .slider__div-item.left-2 {
        transform: translateX(-200%);
        transition: transform 1s; }
    .slider-container .slider__item {
      margin: .3rem;
      flex: 1; }
    .slider-container .slider__hover {
      position: absolute;
      top: 0;
      transition: opacity 1s;
      height: 100%; }
      .slider-container .slider__hover.r i {
        left: 0;
        transform: translateY(-50%); }
      .slider-container .slider__hover.l i {
        right: 0;
        transform: rotate(180deg) translateY(50%); }
  .slider-container__arrow-left, .slider-container__arrow-right {
    position: absolute;
    top: 50%;
    background-color: white;
    font-size: 1.5em;
    color: #E85146;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    box-shadow: 0 0 0.2em #777777;
    justify-content: center;
    align-items: center; }
  .slider-container__arrow-left {
    left: 0;
    transform: translate(-50%, -50%); }
  .slider-container__arrow-right {
    right: 0;
    transform: translate(50%, -50%); }

.filters {
  background-color: #ebebeb;
  padding: 1em;
  color: #575757; }
  .filters__button {
    color: #fff;
    background-color: #E85146;
    display: inline-block;
    width: auto; }
    .filters__button * {
      display: inline-block; }
  .filters__body {
    overflow: hidden; }
  .filters__filters {
    padding: 1em 0;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em; }
    @media screen and (min-width: 720px) {
      .filters__filters {
        grid-template-rows: auto;
        grid-template-columns: repeat(3, 1fr); } }
  .filters__name {
    margin-bottom: .5em;
    font-weight: bolder;
    font-size: 1.2em; }
  .filters label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: .5em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .filters label input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      display: none; }
    .filters label .checkmark {
      position: absolute;
      top: 1.5px;
      left: 0;
      height: 21px;
      width: 21px;
      border: 1px solid #E85146;
      border-radius: .2em;
      transition: background-color 1s; }
    .filters label .checkmark:after {
      content: "";
      position: absolute;
      display: none;
      left: 5px;
      top: 1px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .filters label input:checked ~ .checkmark {
      background-color: #E85146; }
    .filters label input:checked ~ .checkmark:after {
      display: block; }

.main-header__container-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 15px;
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 1100px) {
    .main-header__container-menu {
      height: 60px; } }
.main-header__container-menu-movil {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform .5s;
  position: fixed;
  height: 100%;
  min-width: 300px;
  z-index: 10; }
  .main-header__container-menu-movil.show {
    transform: translateX(0%); }
  @media screen and (min-width: 1100px) {
    .main-header__container-menu-movil {
      display: none; } }

.grid-button {
  position: relative;
  top: -3px;
  background: none;
  border: none;
  display: table-cell;
  padding: 5px;
  vertical-align: middle;
  text-align: center; }

.grid {
  background-color: #fff;
  color: #fff;
  display: inline-block;
  height: 8.3333px;
  width: 8.3333px;
  transition: all 0.3s ease-in-out; }

.grid.open {
  box-shadow: -10px -10px, 0px -10px, 10px -10px, -10px 0px, 10px 0px, -10px 10px, 0px 10px, 10px 10px; }

.grid.close {
  box-shadow: -8px 0px, -16px 0px, 0px -8px, 0px 16px, 0px -16px, 0px 8px, 16px 0px, 8px 0px;
  transform: rotate(45deg) scale(0.75); }

.container-menu {
  /*
  container-menu
    ++ container-img
    ++ container-nav
    ++ icon-menu-movil
  */ }
  .container-menu__container-img {
    height: 100%; }
    .container-menu__container-img svg {
      height: 100%; }
  .container-menu__container-nav {
    display: none;
    padding: 0 0 0 4em;
    flex-grow: 1; }
    @media screen and (min-width: 1100px) {
      .container-menu__container-nav {
        display: block; } }
  @media screen and (min-width: 1100px) {
    .container-menu__icon-menu-movil {
      display: none; } }
  .container-menu .container-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .container-menu .container-nav__item {
    padding: 0 1em;
    list-style-type: none; }
    .container-menu .container-nav__item:last-child {
      padding-right: 0; }
  .container-menu .container-nav form.container-nav__item {
    flex-grow: 1; }
    .container-menu .container-nav form.container-nav__item input {
      width: 100%; }
  .container-menu .container-nav__link {
    text-decoration: none;
    color: white; }
  .container-menu .container-nav .button-group button {
    border: none; }

.container-menu-movil {
  /*
  container-menu-movil
    ++ container-img
    ++ container-nav
  */ }
  .container-menu-movil__container-img {
    height: 20px;
    margin-bottom: 1em;
    text-align: center; }
  .container-menu-movil__container-nav {
    padding-top: 0;
    border-top: 1px solid #E85146;
    /*
    container-nav
      ++ list
        ++ item
          ++ link
    */ }
  .container-menu-movil .container-nav__list {
    display: flex;
    flex-direction: column; }
  .container-menu-movil .container-nav__item {
    list-style: none;
    font-size: .82em;
    padding: 1em 1em; }
    .container-menu-movil .container-nav__item input {
      width: 100%; }
    .container-menu-movil .container-nav__item:hover {
      background-color: black; }
    .container-menu-movil .container-nav__item:hover a {
      color: #E85146; }
  .container-menu-movil .container-nav__link {
    text-decoration: none;
    color: white; }
  .container-menu-movil .container-nav__item.button-group {
    padding: .25em 1em; }

.main-footer {
  border-top: 2px solid #E85146;
  border-bottom: 10px solid #E85146;
  position: relative;
  background-color: white; }
  .main-footer__container-menu {
    padding: 2em; }
  .main-footer__list {
    display: grid;
    width: 100%;
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row; }
    @media screen and (min-width: 500px) {
      .main-footer__list {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: column; } }
    @media screen and (min-width: 720px) {
      .main-footer__list {
        width: 60%; } }
  .main-footer__item {
    list-style: none;
    padding: .25em 0; }
  .main-footer__link {
    font-size: .8em;
    text-decoration: none;
    color: #381512; }
  .main-footer__container-copyright {
    display: flex;
    border-top: 1px solid #e2e2e2;
    align-items: center;
    padding: 2em;
    flex-direction: column;
    justify-content: center; }
    @media screen and (min-width: 720px) {
      .main-footer__container-copyright {
        flex-direction: row;
        justify-content: flex-start; } }
    .main-footer__container-copyright svg {
      height: 30px; }
    .main-footer__container-copyright p {
      margin: .5em 0 0 0;
      font-size: .8em; }
      @media screen and (min-width: 720px) {
        .main-footer__container-copyright p {
          margin: 0 0 0 1em; } }
    .main-footer__container-copyright .latamu-style {
      fill: #E85146; }

.main {
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: #f7f8fa;
  position: relative; }
  .main .section {
    position: relative;
    text-align: left;
    margin: 2em 10%; }
    @media screen and (min-width: 720px) {
      .main .section {
        margin: 2em 5%; } }
  .main .section-full {
    width: 100%;
    margin: 0;
    padding: 0; }
    .main .section-full .section__title {
      text-align: center;
      text-transform: uppercase;
      font-size: 1.5rem; }

.section__title {
  text-align: left;
  font-weight: 400;
  margin: 0 0 .5rem;
  color: #541D19;
  font-size: 1.2rem; }
.section__subtitle {
  text-align: center;
  margin: 2rem; }

.latamu__list {
  background-image: url("../assets/img/background_latamu.png");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  display: grid;
  grid-template-rows: repeat(6, auto);
  grid-template-columns: 1fr;
  flex-wrap: wrap;
  justify-items: stretch;
  grid-auto-flow: row dense;
  grid-gap: 10px 10px;
  grid-template-areas: "a" "b" "c" "d" "e" "f"; }
  @media screen and (min-width: 500px) {
    .latamu__list {
      grid-template-rows: repeat(3, auto);
      grid-template-columns: 1fr 1fr;
      grid-template-areas: "a b" "d c" "e f"; } }
  @media screen and (min-width: 720px) {
    .latamu__list {
      grid-template-rows: repeat(2, auto);
      grid-template-columns: 1fr 1fr 1fr;
      justify-content: center;
      grid-template-areas: "a b c" "d e f"; } }
  @media screen and (min-width: 1300px) {
    .latamu__list {
      grid-template-rows: repeat(2, auto);
      grid-template-columns: repeat(3, 250px);
      justify-content: center;
      grid-template-areas: "a b c" "d e f"; } }
.latamu__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  text-align: center;
  box-shadow: 0.1em 0.1em 0.5em #9b9b9b; }
  @media screen and (min-width: 500px) {
    .latamu__item {
      padding: 1em;
      height: 250px; } }
  @media screen and (min-width: 720px) {
    .latamu__item {
      padding: 1em; } }
  @media screen and (min-width: 1300px) {
    .latamu__item {
      padding: 2em;
      height: 300px; } }
  .latamu__item:nth-child(1) {
    grid-area: a; }
  .latamu__item:nth-child(2) {
    grid-area: b; }
  .latamu__item:nth-child(3) {
    grid-area: c; }
  .latamu__item:nth-child(4) {
    grid-area: d; }
  .latamu__item:nth-child(5) {
    grid-area: e; }
  .latamu__item:nth-child(6) {
    grid-area: f; }

.index-header {
  position: relative;
  width: 100%;
  height: 100vh; }

.course-header {
  height: auto; }

.course-main {
  padding: 0;
  background-color: white; }
  .course-main section[class^="card-course"] {
    border: 1px solid #c7c7c7; }
    @media screen and (min-width: 361px) {
      .course-main section[class^="card-course"] {
        margin-left: 0;
        margin-right: 0; } }
  @media screen and (min-width: 360px) {
    .course-main {
      max-width: 500px;
      margin: 0 auto; } }
  @media screen and (min-width: 720px) {
    .course-main {
      max-width: 720px;
      margin: 0 auto; } }
  @media screen and (min-width: 950px) {
    .course-main {
      max-width: 75%;
      margin: 0 auto; } }

.masonry-layout {
  --columns: 1;
  --gap: 1em;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-gap: var(--gap); }
  .masonry-layout .masonry-item {
    margin-bottom: var(--gap); }
  .masonry-layout.columns-1 {
    --columns: 1; }
  .masonry-layout.columns-2 {
    --columns: 2; }
  .masonry-layout.columns-3 {
    --columns: 3; }
  .masonry-layout.columns-4 {
    --columns: 4; }
  .masonry-layout.columns-5 {
    --columns: 5; }
  .masonry-layout.columns-6 {
    --columns: 6; }

.search-header {
  height: auto; }

.search-main {
  padding-bottom: 1em; }

.results-total {
  padding: 1em;
  color: #575757; }
  .results-total__name {
    font-weight: bolder;
    font-size: 1.2em; }
  @media screen and (min-width: 720px) {
    .results-total > * {
      margin: auto;
      max-width: 720px; } }
  @media screen and (min-width: 900px) {
    .results-total > * {
      margin: 0; } }
  @media screen and (min-width: 900px) {
    .results-total {
      padding-left: 5em; } }

@media screen and (min-width: 900px) {
  .filters {
    padding-left: 5em; } }
@media screen and (min-width: 720px) {
  .filters > * {
    margin: auto;
    max-width: 720px; } }
@media screen and (min-width: 900px) {
  .filters > * {
    margin: 0; } }

.result-courses {
  padding: 2em 3em;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 2em; }
  @media screen and (min-width: 450px) {
    .result-courses {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 1em; } }
  @media screen and (min-width: 720px) {
    .result-courses {
      grid-template-columns: repeat(3, 1fr); } }
  @media screen and (min-width: 900px) {
    .result-courses {
      padding: 1em 5em; } }
  @media screen and (min-width: 1000px) {
    .result-courses {
      grid-template-columns: repeat(4, 1fr); } }
  @media screen and (min-width: 1300px) {
    .result-courses {
      grid-template-columns: repeat(5, 1fr); } }

/*COMPONENTE HANDLERS*/
.handlers {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center; }
  .handlers__container {
    display: flex;
    border-radius: .2em;
    border: 1px solid #E85146;
    padding: .5em; }
  .handlers__number {
    color: #575757;
    border: none; }

.certifications-main {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px); }
  .certifications-main__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/img/background_certifications.jpeg");
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    filter: grayscale(50%) brightness(30%); }
  .certifications-main__content {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    color: white; }
  .certifications-main__title {
    margin-bottom: 1em;
    width: 70%;
    text-align: center;
    font-size: 2.5em; }
  .certifications-main__form {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .certifications-main__form div {
      width: 100%;
      display: flex;
      margin-bottom: 1em;
      flex-direction: column; }
      @media screen and (min-width: 550px) {
        .certifications-main__form div {
          flex-direction: row; } }
      .certifications-main__form div select {
        color: #575757;
        margin-bottom: .5em;
        border-radius: .1em;
        font-size: 1em;
        padding: .75em; }
        @media screen and (min-width: 550px) {
          .certifications-main__form div select {
            margin-bottom: 0;
            margin-right: .5em; } }
      .certifications-main__form div input {
        color: #575757;
        border-radius: .1em;
        flex: 1;
        padding: .75em; }
    .certifications-main__form button {
      padding: .75em 5em;
      display: inline-block; }
    @media screen and (min-width: 720px) {
      .certifications-main__form {
        width: 70%; } }
    @media screen and (min-width: 1000px) {
      .certifications-main__form {
        width: 50%; } }

.dark-theme {
  background-color: #202D36; }

/*themes/
// _theme.scss       # Default theme
// _admin.scss       # Admin theme*/
/*vendors/
|   |– _bootstrap.scss   # Bootstrap
|   |– _jquery-ui.scss   # jQuery UI
|   ...                  # Etc…
|
|
`– main.scss             # Main Sass file*/

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

/* INICIO MODAL REGISTRO */

.modal__container {
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 45, 54, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  z-index: 100;
  transition: all 1s; 
    
}
  .modal__container.show {
    transition: all 1s;
    transform: translateX(0); 
      
}
  .modal__container p {
    color: white; 
      
}
.modal__body {
  background-color: white;
  width: 90%;
  padding: 1rem;
  border-radius: .2em;
  max-height: 95vh;
  overflow: auto; 
    
}
.modal__body p {
    color: #333;
    margin-top: .5rem;
    margin-bottom: .5rem; 
      
}
.modal__body ol {
    margin-left: 1rem; 
      
}
.modal__body .SectionForm {
    margin-bottom: 10px; 
      
}
.modal__body .SectionForm h6 {
      margin-bottom: 10px;
      border-bottom: 1px solid black;
      padding-bottom: 10px; 
        
}
@media screen and (min-width: 400px) {
    
    .modal__body {
      max-width: 360px; 
        
    } 
      
}
.modal__title {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E85146; 
    
}
.modal__form {
  margin-top: 2rem;
  text-align: center; 
    
}
.modal__form input, .modal__form select {
    background-color: #eee;
    margin-bottom: 1rem;
    padding: .7em;
    width: 100%;
    border-radius: .2em;
    border: none;
    font-family: 'Lato', serif;
    font-size: 1rem; 
      
}
.modal__form button {
    color: #E85146; 
      
}
.modal__content-text {
  margin-top: 2rem;
  text-align: center; 
    
}
.modal__content-text a {
    color: #E85146; 
      
}
.modal__footer {
  margin-top: 2rem;
  text-align: center; 
    
}
.modal__footer a {
    color: white; 
      
}


/* FIN MODAL REGISTRO */
