/*=============================================================
Aspectos Generales
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

a {
  text-decoration: none; }

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth; }

body {
  font-size: 10px;
  height: 100%;
  font-family: "raleway-rg";
  background-color: rgba(153, 155, 48, 0.4); }
  body .wrapper {
    width: 90%;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      body .wrapper {
        width: 84%; } }
    @media only screen and (min-width: 992px) {
      body .wrapper {
        max-width: 1240px; } }
  body .wrapper-sm {
    width: 60%;
    max-width: 700px;
    margin: 0 auto; }
  body .wrapper-contacto {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto; }
  body .seccion {
    overflow: hidden; }

strong {
  font: inherit; }

p, li, a, q {
  font-size: 1.7rem; }

p:not(:last-child) {
  margin-bottom: 1.5rem; }

p:last-child {
  margin-bottom: 0 !important; }

.bold {
  font-family: "raleway-bd"; }

.light {
  font-family: "raleway-rg"; }

.big-p {
  font-size: 2.4rem; }

.titulo {
  font: 2.4rem "raleway-bd";
  color: #555; }

.subtitulo {
  font: 2rem "raleway-bd";
  margin-bottom: 1rem;
  color: #555; }

.centrado {
  text-align: center; }

div img {
  width: 100%;
  display: block; }

.cta-btn {
  display: block;
  font-size: 1.7rem;
  padding: 0.66667rem;
  border-radius: 0.66667rem;
  color: #fff;
  background-color: #999b30;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center; }
  .cta-btn:hover {
    background-color: #393a12;
    color: #fff; }

/* Fin de Aspectos Generales  ================================*/
/*=============================================================
Header
==============================================================*/
header {
  background-color: #fff;
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0; }
  header .wrapper {
    position: relative; }
  header .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 120px); }
    @media only screen and (min-width: 992px) {
      header .main-menu {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
  header .logo {
    width: 80px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0; }
    @media only screen and (min-width: 576px) {
      header .logo {
        width: 100px; } }
    @media only screen and (min-width: 576px) {
      header .logo {
        width: 120px; } }
    header .logo p {
      margin-top: 0.3rem;
      text-transform: uppercase;
      font-size: 1.2rem;
      font-weight: bold;
      color: #555;
      letter-spacing: 0.3rem;
      line-height: 1; }
      @media only screen and (min-width: 576px) {
        header .logo p {
          font-size: 1.4rem;
          letter-spacing: 0.6rem; } }
      @media only screen and (min-width: 992px) {
        header .logo p {
          font-size: 1.6rem; } }
  header .menu {
    display: none;
    margin-bottom: 0;
    padding: 0; }
    @media only screen and (min-width: 992px) {
      header .menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    header .menu li {
      list-style: none; }
      @media only screen and (min-width: 992px) {
        header .menu li:not(:last-child) {
          margin-right: 3rem; } }
      header .menu li a {
        font-size: 1.7rem;
        font-weight: bold;
        color: #999b30;
        text-transform: uppercase;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        header .menu li a:hover {
          color: #393a12; }
      header .menu li .selected {
        opacity: 0.5; }
  header .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    header .icons i {
      font-size: 2.4rem;
      color: rgba(0, 0, 0, 0.6);
      margin-left: 1.2rem; }
    header .icons .menu-btn {
      width: 30px;
      cursor: pointer;
      margin-left: 2.4rem; }
      @media only screen and (min-width: 992px) {
        header .icons .menu-btn {
          display: none; } }
      header .icons .menu-btn .uno, header .icons .menu-btn .dos, header .icons .menu-btn .tres {
        width: 100%;
        height: 2px;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background: #999b30; }
      header .icons .menu-btn .dos {
        margin: 6px 0; }

/* Fin de Header  ============================================*/
/*=============================================================
Main
==============================================================*/
main {
  padding-top: 76px; }
  @media only screen and (min-width: 576px) {
    main {
      padding-top: 102px; } }
  @media only screen and (min-width: 992px) {
    main {
      padding-top: 104px; } }
  main .seccion-busqueda, main .seccion-curso {
    padding: 4rem 0; }
  main .seccion {
    padding-bottom: 4rem; }
  main .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    main .search-form input, main .search-form button {
      font-size: 1.7rem;
      padding: 0.66667rem; }
    main .search-form input {
      border-radius: 0.66667rem 0 0 0.66667rem;
      width: calc(100% - 115px); }
      main .search-form input:focus {
        border: none;
        outline: none; }
      @media only screen and (min-width: 576px) {
        main .search-form input {
          width: calc(100% - 132px); } }
    main .search-form button {
      border-radius: 0 0.66667rem 0.66667rem 0;
      color: #fff;
      background-color: #999b30;
      -webkit-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      transition: all 0.5s ease; }
      main .search-form button:hover {
        background-color: #393a12; }
      @media only screen and (min-width: 576px) {
        main .search-form button {
          padding-left: 1.5rem;
          padding-right: 1.5rem; } }
  main .fila, main .fila-curso {
    margin: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media only screen and (min-width: 992px) {
      main .fila, main .fila-curso {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    main .fila .column-sm a:not(:last-child), main .fila-curso .column-sm a:not(:last-child) {
      margin-bottom: 2rem; }
    main .fila .column-lg .curso, main .fila-curso .column-lg .curso {
      background-color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      main .fila .column-lg .curso:not(:last-child), main .fila-curso .column-lg .curso:not(:last-child) {
        margin-bottom: 2rem; }
      @media only screen and (min-width: 992px) {
        main .fila .column-lg .curso, main .fila-curso .column-lg .curso {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; } }
      main .fila .column-lg .curso .img-curso, main .fila-curso .column-lg .curso .img-curso {
        position: relative;
        cursor: pointer; }
        @media only screen and (min-width: 992px) {
          main .fila .column-lg .curso .img-curso, main .fila-curso .column-lg .curso .img-curso {
            width: 250px; } }
        main .fila .column-lg .curso .img-curso .activar, main .fila-curso .column-lg .curso .img-curso .activar {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: none;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          background-color: rgba(0, 0, 0, 0.5);
          -webkit-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease;
          pointer-events: none; }
          main .fila .column-lg .curso .img-curso .activar i, main .fila-curso .column-lg .curso .img-curso .activar i {
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.5); }
        main .fila .column-lg .curso .img-curso:hover .activar, main .fila-curso .column-lg .curso .img-curso:hover .activar {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
      main .fila .column-lg .curso .texto-curso, main .fila-curso .column-lg .curso .texto-curso {
        padding: 1rem; }
        @media only screen and (min-width: 992px) {
          main .fila .column-lg .curso .texto-curso, main .fila-curso .column-lg .curso .texto-curso {
            width: calc(100% - 250px); } }
        main .fila .column-lg .curso .texto-curso .titulo-curso, main .fila-curso .column-lg .curso .texto-curso .titulo-curso {
          font-size: 1.8rem;
          font-weight: bold; }
        main .fila .column-lg .curso .texto-curso p, main .fila-curso .column-lg .curso .texto-curso p {
          font-size: 1.4rem; }
        main .fila .column-lg .curso .texto-curso .datos-curso, main .fila-curso .column-lg .curso .texto-curso .datos-curso {
          list-style: none;
          padding: 0;
          margin: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; }
          @media only screen and (min-width: 992px) {
            main .fila .column-lg .curso .texto-curso .datos-curso, main .fila-curso .column-lg .curso .texto-curso .datos-curso {
              -webkit-box-orient: horizontal;
              -webkit-box-direction: normal;
              -ms-flex-direction: row;
              flex-direction: row; } }
          main .fila .column-lg .curso .texto-curso .datos-curso li, main .fila-curso .column-lg .curso .texto-curso .datos-curso li {
            font-size: 1.2rem;
            color: #777; }
            @media only screen and (min-width: 992px) {
              main .fila .column-lg .curso .texto-curso .datos-curso li:not(:last-child), main .fila-curso .column-lg .curso .texto-curso .datos-curso li:not(:last-child) {
                margin-right: 2rem; } }
            main .fila .column-lg .curso .texto-curso .datos-curso li i, main .fila-curso .column-lg .curso .texto-curso .datos-curso li i {
              width: 18px; }
              @media only screen and (min-width: 992px) {
                main .fila .column-lg .curso .texto-curso .datos-curso li i, main .fila-curso .column-lg .curso .texto-curso .datos-curso li i {
                  width: auto; } }
  @media only screen and (min-width: 992px) {
    main .fila .column-sm {
      width: 240px; } }
  main .fila .column-lg {
    margin-top: 4rem; }
    @media only screen and (min-width: 992px) {
      main .fila .column-lg {
        width: calc(100% - (240px + 2rem));
        margin-top: 0; } }
  main .fila-curso .column-sm {
    background-color: #fff;
    padding: 1.33333rem; }
    @media only screen and (min-width: 992px) {
      main .fila-curso .column-sm {
        width: 420px;
        margin-top: 0; } }
    main .fila-curso .column-sm .temas {
      margin-bottom: 0; }
      main .fila-curso .column-sm .temas a {
        color: #000;
        display: block;
        width: 100%;
        height: 100%;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        padding: 0.5rem; }
        main .fila-curso .column-sm .temas a:hover {
          background-color: rgba(0, 0, 0, 0.25); }
        main .fila-curso .column-sm .temas a .hora {
          font-size: 1.4rem;
          color: #555; }
  @media only screen and (min-width: 992px) {
    main .fila-curso .column-lg {
      width: calc(100% - 420px); } }
  main .fila-curso .column-lg iframe {
    width: 100%;
    height: 100%; }
  main .fila-curso .column-lg .partes-curso {
    background-color: #fff;
    padding: 2rem; }
  main .fila-curso .column-lg nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media only screen and (min-width: 576px) {
      main .fila-curso .column-lg nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    main .fila-curso .column-lg nav a {
      color: #6f6f6f;
      width: calc(33,3333333% - 1px);
      text-align: center;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-weight: bold;
      padding-bottom: 1rem;
      border-bottom: 2px solid #fff;
      margin-top: 1rem; }
      main .fila-curso .column-lg nav a:hover {
        border-bottom: 2px solid #000;
        color: #000; }
    main .fila-curso .column-lg nav .tab-selected {
      border-bottom: 2px solid #000;
      color: #000; }
  main .fila-curso .column-lg .parte {
    padding-top: 3rem; }
  main .fila-curso .column-lg .dato {
    font-size: 1.4rem !important;
    color: #555;
    margin-bottom: 0; }
  main .fila-curso .column-lg .stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    main .fila-curso .column-lg .stats .stat:not(:last-child) {
      margin-right: 2rem; }
    main .fila-curso .column-lg .stats .ranking {
      color: #B65D0D !important; }
  main .fila-curso .column-lg .tip {
    margin-top: 2rem;
    border: 1px solid #555;
    color: #555;
    padding: 1.33333rem;
    border-radius: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    main .fila-curso .column-lg .tip i {
      font-size: 3.6rem; }
    main .fila-curso .column-lg .tip .texto {
      width: calc(100% - (36px + 2rem/2)); }
    main .fila-curso .column-lg .tip .botones {
      margin-top: 2rem; }
      main .fila-curso .column-lg .tip .botones .cta-btn {
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem; }
        @media only screen and (min-width: 576px) {
          main .fila-curso .column-lg .tip .botones .cta-btn {
            padding-left: 2rem;
            padding-right: 2rem; } }
      main .fila-curso .column-lg .tip .botones .cta-ghost {
        background-color: #a2a2a2;
        margin-left: 1rem; }

/* Fin de Main  ==============================================*/
/*=============================================================
Footer
==============================================================*/
/* Fin de Footer  ============================================*/
