* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.formulario-clases {
  border-radius: 10px;
  background-color: #ffbd4a;
  color: #111;
  font-size: 1rem;
  padding: 0.5rem;
  filter: drop-shadow(5px 5px 0 #000);
  text-decoration: none;
  border: 2px outset #fdab1c;
  font-weight: bold;
}

.formulario-clases:hover {
  background-color: #222;
  color: #fff;
}

.main {
  background: #000000; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to bottom,
    #434343,
    #000000
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    #434343,
    #000000
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.content {
  position: relative;
  overflow-anchor: none;
  top: 80px;
  margin-bottom: 5rem;
}

.separador_link a:active {
  background-color: #faad29;
  font-weight: bold;
  color: #000;
  border: none;
}

.separador_link a:hover {
  background-color: #fff;
}

#active {
  color: #faad29;
}

.flex-container {
  margin: 1rem auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  height: 50%;
  width: 80%;
}

.flex-button-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.subtitulo {
  color: #fff;
  margin: 2rem auto;
  text-align: center;
  font-size: 1.5rem;
}

main section {
  background-color: transparent;
}

div > section {
  margin-bottom: 1rem;
  border: 2px solid #ffbd4a;
  border-radius: 8px;
}

div > section h4 {
  text-align: center;
  color: #fff;
  border: 1.5px outset #333333;
  background-color: #333333;
}

.flex-item {
  width: 100%;
  background-color: white;
  padding-bottom: 1rem;
}

.flex-item ul {
  list-style-type: none;
}

.flex-item ul li {
  padding: 10px 4px;
}

.descripcion {
  padding: 0 0.5rem;
}

.precio {
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  color: #1c406b;
}

@keyframes aparicion {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: block;
    opacity: 1;
  }
}

.tabcontent {
  display: none;
  padding: 20px;
  text-align: center;
  animation-name: aparicion;
  animation-duration: 2s;
}

.tablink {
  margin: 1rem;
  border-radius: 5px;
  background-color: #1c406b;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1rem;
  font-size: 15px;
  font-weight: bold;
  width: 25%;
  filter: drop-shadow(-4px 4px 0 #fff);
  transition: background-color 1s;
}

/* Change background color of buttons on hover */
.tablink:hover {
  background-color: #f09819;
}

.tablink:focus {
  background: -webkit-linear-gradient(
    to right,
    #edde5d,
    #f09819
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #edde5d,
    #f09819
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
}

.ind:active,
.gru:active {
  color: #faad29 !important;
}

b {
  color: #000;
}

#content-individual {
  display: none;
}

#content-grupal {
  display: none;
}

#active {
  color: #faad29;
}

.tier {
  text-decoration: none;
  color: #f09819;
}

.flex-item > h4 {
  padding: 0.5rem 0;
  margin: 1rem 0;
}

.flex-item > .precio {
  margin: 1rem 0;
}

ul {
  margin: 1rem 0;
}

@media only screen and (max-width: 420px) {
  body {
    min-width: 320px;
    max-width: 420px;
    background: #232526; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #414345,
      #232526
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #414345,
      #232526
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .titulo {
    display: none;
  }

  .nav-container-responsive {
    background-color: #fff;
    height: 75px;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ffbd4a;
    z-index: 500;
    top: 0;
  }

  .topnav {
    /* este es el entorno desplegable */
    margin-top: 1.09rem;
    padding: 1rem;
    background-color: #fff;
    border-right: 3px solid #ffbd4a;
    border-bottom: 3px solid #ffbd4a;
    border-radius: 0 0px 10px 0;
    position: relative;
    z-index: 2000;
    width: 100%;
  }

  .topnav li {
    margin-top: 1rem;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
  }

  .topnav .menu_item a {
    color: #ffbd4a;
    font-weight: bold;
    padding: 0.5rem;
    text-decoration: none;
    background-color: #222;
    border: 2px outset #fff;
    border-radius: 10px;
    position: relative;
    z-index: 500;
  }

  .hamburger {
    visibility: visible;
    margin: 0 15px;
    margin-top: 35px;
    padding: auto;
    height: 20px;
    width: 20px;
    position: relative;
    z-index: 500;
  }

  .hamburger:active {
    background-color: #ffbd4a;
  }

  .menu-desplegable {
    margin-top: 1rem;
    visibility: hidden;
    width: 75%;
    background-color: #333333;
    position: relative;
    z-index: 2000;
  }

  .logo-responsive {
    max-width: 120px;
    margin-top: -1.2rem;
    margin-bottom: 0rem;
    float: right;
    position: relative;
    z-index: 500;
  }

  .flex-item {
    width: 80%;
    background-color: white;
  }

  div > section {
    margin-bottom: 1rem;
    border: 2px solid #ffbd4a;
  }

  .flex-container {
    margin: 1rem auto;
    display: flex;
    flex-flow: column nowrap;
    height: 50%;
    width: 100%;
  }

  .flex-button-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
  }

  .flex {
    display: flex;
    justify-content: space-between;
    align-content: center;
  }

  .pie_flex {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding-left: 0;
    position: absolute;
    width: 100%;
    top: 100%;
  }

  .subtitulo {
    font-size: 1.2rem;
  }

  .tablink {
    width: 30%;
  }

  .pie_flex-redes {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 2rem 0;
  }

  .pie_flex-redes h4 {
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
  }

  .pie_flex-redes_redes {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;

    margin: 1rem;
  }

  .pie_flex-redes_redes > a {
    text-decoration: none;
    margin: 0 1rem;
    color: #ffbd4a;
    font-size: 3rem;
  }

  footer {
    background-color: #000;
    border-top: 4px solid #ffbd4a;
  }

  .content {
    top: 80px;
    margin-bottom: 15rem;
  }

  .menu-desplegable {
    height: 100%;
  }
  #active {
    color: #fff;
  }

  li {
    list-style-position: inside;
  }
}

@media only screen and (max-width: 600px) and (min-width: 421px) {
  body {
    min-width: 421px;
    max-width: 600px;
    background: #232526; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #414345,
      #232526
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #414345,
      #232526
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .titulo {
    display: none;
  }

  .nav-container-responsive {
    background-color: #fff;
    height: 75px;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ffbd4a;
    z-index: 500;
    top: 0;
  }

  .topnav {
    /* este es el entorno desplegable */
    margin-top: 1.09rem;
    padding: 1rem;
    background-color: #fff;
    border-right: 3px solid #ffbd4a;
    border-bottom: 3px solid #ffbd4a;
    border-radius: 0 0px 10px 0;
    position: relative;
    z-index: 2000;

    width: 100%;
  }

  .topnav li {
    margin-top: 1rem;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a {
    color: #ffbd4a;
    font-weight: bold;
    padding: 0.5rem;
    text-decoration: none;
    background-color: #222;
    border: 2px outset #fff;
    border-radius: 10px;
    position: relative;
    z-index: 500;
  }

  .hamburger {
    visibility: visible;
    margin: 0 15px;
    margin-top: 35px;
    padding: auto;
    height: 20px;
    width: 20px;
    position: relative;
    z-index: 500;
  }

  .hamburger:active {
    background-color: #ffbd4a;
  }

  .menu-desplegable {
    margin-top: 1rem;
    visibility: hidden;
    width: 75%;
    background-color: #333333;
    position: relative;
    z-index: 2000;
  }

  .logo-responsive {
    max-width: 120px;
    margin-top: -1.2rem;
    margin-bottom: 0rem;
    float: right;
    position: relative;
    z-index: 500;
  }

  .flex {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: center;
  }

  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .flex-button-container {
    display: flex;
    align-items: center;
  }

  .pie_flex {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding-left: 0;
    position: absolute;
    width: 100%;
    bottom: 0;
  }

  .pie_flex-redes {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 2rem 0;
  }

  .pie_flex-redes h4 {
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
  }

  .pie_flex-redes_redes {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;

    margin: 1rem;
  }

  .pie_flex-redes_redes > a {
    text-decoration: none;
    margin: 0 1rem;
    color: #ffbd4a;
    font-size: 3rem;
  }

  footer {
    background-color: #000;
    border-top: 4px solid #ffbd4a;
  }

  .content {
    top: 80px;
    margin-bottom: 10rem;
  }

  .menu-desplegable {
    height: 100%;
  }

  #active {
    color: #fff;
  }

  li {
    list-style-position: inside;
  }
}

@media only screen and (min-width: 601px) and (max-width: 932px) {
  body {
    background: #232526; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #414345,
      #232526
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #414345,
      #232526
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .titulo {
    display: none;
  }

  .nav-container-responsive {
    background-color: #fff;
    height: 75px;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ffbd4a;
    z-index: 500;
    top: 0;
  }

  .topnav {
    /* este es el entorno desplegable */
    margin-top: 1.09rem;
    padding: 1rem;
    background-color: #fff;
    border-right: 3px solid #ffbd4a;
    border-bottom: 3px solid #ffbd4a;
    border-radius: 0 0px 10px 0;
    position: relative;
    z-index: 2000;

    width: 100%;
  }

  .topnav li {
    margin-top: 1rem;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a {
    color: #ffbd4a;
    font-weight: bold;
    padding: 0.5rem;
    text-decoration: none;
    background-color: #222;
    border: 2px outset #fff;
    border-radius: 10px;
    position: relative;
    z-index: 500;
  }

  .hamburger {
    visibility: visible;
    margin: 0 15px;
    margin-top: 35px;
    padding: auto;
    height: 20px;
    width: 20px;
    position: relative;
    z-index: 500;
  }

  .hamburger:active {
    background-color: #ffbd4a;
  }

  .menu-desplegable {
    margin-top: 1rem;
    visibility: hidden;
    width: 75%;
    background-color: #333333;
    position: relative;
    z-index: 2000;
  }

  .logo-responsive {
    max-width: 120px;
    margin-top: -1.2rem;
    margin-bottom: 0rem;
    float: right;
    position: relative;
    z-index: 500;
  }

  .flex {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: center;
  }

  .pie_flex {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding-left: 0;
    position: absolute;
    width: 100%;
    bottom: 0;
  }

  .pie_flex-redes {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 2rem 0;
  }

  .pie_flex-redes h4 {
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
  }

  .pie_flex-redes_redes {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;

    margin: 1rem;
  }

  .pie_flex-redes_redes > a {
    text-decoration: none;
    margin: 0 1rem;
    color: #ffbd4a;
    font-size: 3rem;
  }

  footer {
    background-color: #000;
    border-top: 4px solid #ffbd4a;
  }

  .content {
    top: 80px;
    margin-bottom: 14rem;
  }

  .menu-desplegable {
    height: 100%;
  }
  #active {
    color: #fff;
  }

  li {
    list-style-position: inside;
  }
}

@media only screen and (min-width: 932px) and (max-width: 1024px) {
  .logo {
    position: relative;
    top: 1px;
    max-width: 85px;
    margin: -20px 0;
    padding: 0;
    float: right;
    order: 3;
    z-index: 500;
  }

  .titulo {
    color: #434343;
    float: right;
    position: relative;
    visibility: visible;
    bottom: 2px;
    font-size: 16px;
    margin-top: 1.85rem;
    margin-left: 2rem;
    order: 4;
    z-index: 500;
  }

  body {
    background: #232526; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #414345,
      #232526
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #414345,
      #232526
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }

  .nav-container-responsive {
    background-color: #fff;
    height: 75px;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ffbd4a;
    z-index: 500;
    order: 2;
    top: 0;
  }

  .topnav {
    /* este es el entorno desplegable */
    display: inline-block;
    background-color: #fff;
    border: none;
    position: absolute;
    top: -145px;
    padding-left: 2rem;
    z-index: 2000;
    height: 100%;
    width: 70%;
    order: 1;
  }

  .topnav li {
    margin-top: 1rem;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a {
    color: #000;
    padding: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a:hover {
    color: #ffbd4a;
  }

  .menu_item {
    display: inline-block;
    padding: 2rem;
    position: relative;
    z-index: 500;
  }

  .hamburger {
    visibility: hidden;
    margin: 0px 5px;
    margin-top: 20px;
    height: 30px;
    position: relative;
    z-index: 500;
  }

  .hamburger:active {
    background-color: #ffbd4a;
  }

  .menu-desplegable {
    display: inline-block;
    margin-top: 1rem;
    visibility: visible;
    width: 100%;
    background-color: #333333;
    position: relative;
    z-index: 2000;
  }

  .logo-responsive {
    max-width: 140px;
    margin-top: -1.95rem;
    margin-bottom: 0rem;
    float: right;
    position: relative;
    z-index: 500;
  }

  .flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .pie_flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    background-color: #000;
    border-top: 3px solid #ffbd4a;
    justify-content: center;
    padding-left: 0;
    position: absolute;
    width: 100%;
    top: 100%;
  }

  .pie_flex-redes {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 2rem 0;
  }

  .pie_flex-redes h4 {
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
  }

  .pie_flex-redes_redes {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;
    margin: 1rem;
  }

  .pie_flex-redes_redes > a {
    text-decoration: none;
    margin: 0 1rem;
    color: #ffbd4a;
    font-size: 3rem;
  }

  .content {
    top: 80px;
    margin-bottom: 21rem;
  }

  li {
    list-style-position: inside;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .logo {
    position: relative;
    top: 1px;
    max-width: 85px;
    margin: -20px 0;
    padding: 0;
    float: right;
    order: 3;
    z-index: 500;
  }

  .titulo {
    color: #434343;
    float: right;
    position: relative;
    visibility: visible;
    bottom: 2px;
    font-size: 16px;
    margin-top: 1.85rem;
    margin-left: 2rem;
    order: 4;
    z-index: 500;
  }

  body {
    min-width: 1024px;
    max-width: 1440px;
    background: #232526; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #414345,
      #232526
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #414345,
      #232526
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }

  .nav-container-responsive {
    background-color: #fff;
    height: 75px;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ffbd4a;
    z-index: 500;
    order: 2;
    top: 0;
  }

  .topnav {
    /* este es el entorno desplegable */
    display: inline-block;
    background-color: #fff;
    border: none;
    position: absolute;
    top: -145px;
    padding: 0 2.5rem;
    z-index: 2000;
    height: 70px;
    width: 70%;
    order: 1;
  }

  .topnav li {
    margin-top: 1rem;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a {
    color: #000;
    padding: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a:hover {
    color: #ffbd4a;
  }

  .menu_item {
    display: inline-block;
    padding: 2rem;
    position: relative;
    z-index: 500;
  }

  .hamburger {
    visibility: hidden;
    margin: 0px 5px;
    margin-top: 20px;
    height: 30px;
    position: relative;
    z-index: 500;
  }

  .hamburger:active {
    background-color: #ffbd4a;
  }

  .menu-desplegable {
    display: inline-block;
    margin-top: 1rem;
    visibility: visible;
    width: 100%;
    background-color: #333333;
    position: relative;
    z-index: 2000;
  }

  .flex-item > h4 {
    font-size: 1.5rem;
    padding: 0.5rem 0;
    margin: 1rem 0;
  }

  .flex-item > .precio {
    font-size: 2.5rem;
    margin: 1rem 0;
  }

  ul {
    margin: 1rem 0;
  }

  .logo-responsive {
    max-width: 140px;
    margin-top: -1.95rem;
    margin-bottom: 0rem;
    float: right;
    position: relative;
    z-index: 500;
  }

  .flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .pie_flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    background-color: #000;
    border-top: 3px solid #ffbd4a;
    justify-content: center;
    padding-left: 0;
    width: 100%;
  }

  .pie_flex-redes {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 2rem 0;
  }

  .pie_flex-redes h4 {
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
  }

  .pie_flex-redes_redes {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;
    margin: 1rem;
  }

  .pie_flex-redes_redes > a {
    text-decoration: none;
    margin: 0 1rem;
    color: #ffbd4a;
    font-size: 3rem;
  }

  .subtitulo {
    font-size: 2rem;
  }

  .content {
    top: 80px;
    margin-bottom: 32rem;
  }
}

@media only screen and (min-width: 1441px) {
  .logo {
    position: relative;
    top: 1px;
    max-width: 85px;
    margin: -20px 0;
    padding: 0;
    float: right;
    order: 3;
    z-index: 500;
  }

  .titulo {
    color: #434343;
    float: right;
    position: relative;
    visibility: visible;
    bottom: 2px;
    font-size: 16px;
    margin-top: 1.85rem;
    margin-left: 2rem;
    order: 4;
    z-index: 500;
  }

  body {
    min-width: 1440px;
    background: #232526; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #414345,
      #232526
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
      to right,
      #414345,
      #232526
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }

  .nav-container-responsive {
    background-color: #fff;
    height: 75px;
    position: fixed;
    width: 100%;
    border-bottom: 3px solid #ffbd4a;
    z-index: 500;
    order: 2;
    top: 0;
  }

  @keyframes slide {
    from {
      height: 0;
    }
    to {
      height: 100vh;
    }
  }

  .topnav {
    /* este es el entorno desplegable */
    display: inline-block;
    background-color: #fff;
    border: none;
    position: absolute;
    top: -130px;
    padding: 0 2.5rem;
    z-index: 2000;
    height: 70px;
    width: 70%;
    order: 1;
  }

  .topnav li {
    margin-top: 1rem;
    padding: 1rem 0;
    list-style-type: none;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a {
    color: #000;
    padding: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    z-index: 500;
  }

  .topnav .menu_item a:hover {
    color: #ffbd4a;
  }

  .menu_item {
    display: inline-block;
    padding: 2rem;
    position: relative;
    z-index: 500;
  }

  .hamburger {
    visibility: hidden;
    margin: 0px 5px;
    margin-top: 20px;
    height: 30px;
    position: relative;
    z-index: 500;
  }

  .hamburger:active {
    background-color: #ffbd4a;
  }

  .menu-desplegable {
    display: inline-block;
    margin-top: 1rem;
    visibility: visible;
    width: 100%;
    background-color: #333333;
    position: relative;
    z-index: 2000;
  }

  .logo-responsive {
    max-width: 140px;
    margin-top: -1.95rem;
    margin-bottom: 0rem;
    float: right;
    position: relative;
    z-index: 500;
  }

  .flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .pie_flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    background-color: #000;
    border-top: 3px solid #ffbd4a;
    padding-left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .subtitulo {
    font-size: 4rem;
  }

  .tablink {
    font-size: 2rem;
  }

  .flex-item {
    padding-bottom: 2rem;
  }

  .flex-item h4 {
    font-size: 3.5rem;
  }

  .precio {
    font-size: 4rem;
  }

  .descripcion {
    font-size: 2.5rem;
  }

  .formulario-clases {
    font-size: 2.5rem;
  }

  .pie_flex-redes {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 2rem 0;
  }

  .pie_flex-redes h4 {
    max-width: 100%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
  }

  .pie_flex-redes_redes {
    display: flex;
    flex-flow: row nowrap;
    flex: 1;

    margin: 1rem;
  }

  .pie_flex-redes_redes > a {
    text-decoration: none;
    margin: 0 1rem;
    color: #ffbd4a;
    font-size: 4rem;
  }

  .content {
    top: 80px;
    margin-bottom: 10rem;
  }

  .flex-item li,
  .descripcion {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 2500px) {
  .flex-item h4 {
    font-size: 4.5rem;
  }
  .flex-item li,
  .descripcion {
    font-size: 3rem;
  }
}
