html, body {
  background-image: url("../img/academia-ingenieria-estudiar.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
}

.max-width-1000px {
  max-width: 1000px;
}

::-webkit-scrollbar {
    display: none;
}

/**  -AUX- **/
.width-100per {
  width: 100%;
}

.width-45per {
  width:45%;
}

.width-70vw {
  width: 70vw;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.max-width-500 {
  max-width: 500px;
}

.cursor-arrow {
  cursor: default;
}

hr.solid
{
  /*border: 0;*/
  border-top: 1px solid rgb(60, 60, 60);
  width: 100%;
}

.two-items-h {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}
.two-items-h p {
  width: 70%;
}
.two.items-h span {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: right;
}

/** -NAV- **/
nav {
  position: fixed;
  left: 0;
  right: 0;
  top:0;
  background: rgb(50, 50, 50);
  color: rgb(230, 230, 230);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}

.nav-icon {
  cursor: pointer;
}

.nav-icon a,
.nav-icon a:visited,
.nav-icon i,
.nav-icon i:visited {
  font-size: 1.0em;
  color: rgb(230, 230, 230);
}
.nav-icon a:active,
.nav-icon i:active {
  color:rgb(255, 161, 0);
}
.nav-icon a:hover,
.nav-icon i:hover {
  color:rgb(255, 199, 0);
}

.nav-ul a,
.nav-ul a:visited  {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9em;
  cursor: pointer;
  color: rgb(230, 230, 230);
  text-decoration: none;
  font-weight: normal;
  margin:0;
}
.nav-ul a:hover {
  color:rgb(255, 199, 0);
}
.nav-ul a:active {
  color:rgb(255, 161, 0);
}

/** -FOOTER- **/
footer {
  position: relative;
  background: rgb(50, 50, 50);
  color: rgb(230, 230, 230);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-size: 0.8em;
}

/** -LINKS- **/
.link-over-white, .link-over-white:visited {
  font-family: 'Raleway', sans-serif;
  color: rgb(70, 70, 70);
  text-decoration: none;
  font-weight: lighter;
}
.link-over-white:hover {
  color: rgb(255, 199, 0);
}
.link-over-white:active {
  color:rgb(255, 161, 0);
}

.link-over-dark, .link-over-dark:visited {
  color: rgb(230, 230, 230);
  text-decoration: none;
  font-weight: lighter;
  font-family: 'Raleway', sans-serif;
}
.link-over-dark:hover {
  color: rgb(255, 199, 0);
}
.link-over-dark:active {
  color:rgb(255, 161, 0);
}


.link-normie-black, .link-normie-black:visited {
  color: rgb(0, 0, 0);
  background: none;
  border: none;
  margin:0;
  padding:0;
  cursor:pointer;
  text-decoration: none;
  font-weight: normal;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1em;
}
.link-normie-black:hover {
  color: rgb(255, 199, 0);
}
.link-normie-black:active {
  color: rgb(255, 161, 0);
}

.link-normie-white, .link-normie-white:visited {
  color: rgb(0, 0, 0);
  background: none;
  border: none;
  margin:0;
  padding:0;
  cursor:pointer;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: normal;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1em;
}
.link-normie-white:hover {
  color: rgb(255, 199, 0);
}
.link-normie-white:active {
  color: rgb(255, 161, 0);
}

.error-msg {
  color: rgb(164, 6, 6);
  text-align: center;
}

.ok-msg {
  color: rgb(0, 158, 2);
  text-align: center;
}

.warning-msg {
  color: rgb(230, 138, 0);
  text-align: center;
}

.background-opacity-04 {
  background-color: rgba(255,255,255,0.4);
}

.background-opacity-06 {
  background-color: rgba(255,255,255,0.6);
}

/** -FORMS- **/
.main-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  text-align: center;
  width: 100%;
}

.main-form input[type=text],
.main-form input[type=password],
.main-form input[type=email],
.main-form input[type=tel],
input[type=text].main-form,
input[type=password].main-form,
input[type=email].main-form,
input[type=tel].main-form {
  padding-top: 1.1vh;
  padding-bottom: 1.1vh;
  font-size: 1.0em;
  margin-top: 1vh;
  margin-bottom: 1vh;
  font-family: 'Raleway', sans-serif;
  border: 1px solid lightgrey;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.main-form label, label.main-form {
  padding-top: 3px;
  display: inline;
  margin: 0;
  font-size: 1.0em;
  margin-top: 1vh;
  margin-bottom: 1vh;
  padding-top: 1.1vh;
  padding-bottom: 1.1vh;
  font-family: 'Raleway', sans-serif;
}

textarea.main-form {
  display:inline;
  font-size: 1.0em;
  margin-top: 1vh;
  margin-bottom: 1vh;
  font-family: 'Raleway', sans-serif;
  border: 1px solid lightgrey;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 1.1vh;
  padding-bottom: 1.1vh;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.main-form input[type=text]:focus,
.main-form input[type=password]:focus,
.main-form input[type=email]:focus,
.main-form input[type=tel]:focus,
input[type=text]:focus.main-form,
input[type=password]:focus.main-form,
input[type=email]:focus.main-form,
input[type=tel]:focus.main-form,
textarea:focus.main-form {
  outline: none;
  border: 1px solid rgb(255, 161, 0);
}

.main-form input[type=submit],
input[type=submit].main-form,
.main-form-btn {
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  font-size: 1.1em;
  background: rgb(255, 161, 0);
  color: rgb(255, 255, 255);
  width: 200px;
  height: 70px;
  border:none;
  margin-top: 2vh;
  margin-bottom: 2vh;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.main-form input[type=submit]:hover,
input[type=submit]:hover.main-form,
.main-form-btn:hover
{
  background: rgb(255, 207, 0);
}

.main-form label {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
}

/** -TEXT- **/
h1.main-text {
  margin:0;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-align: center;
}

h2.main-text {
  margin:0;
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  color: rgb(255, 161, 0);
}

h3.main-text {
  font-family: 'Raleway', sans-serif;
  font-weight: lighter;
  color: rgb(50, 50, 50);
  margin: 0;
}

h4.main-text {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  color: rgb(20, 20, 20);
  margin: 0;
}

p.main-text {
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  color: black;
}

/** -INDEX- **/
.section-container {
  width: 100%;
}

#index-main-view {
  position:relative;
  height: 90vh;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}
#index-main-view > div {
  text-align: center;
}

h1.title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: rgb(20, 20, 20);
}

h2.title {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: rgb(74, 74, 74);
}

.centered-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 700px;
  width: 80%;
}

.index-section {
  text-align: left;
  min-height: 100vh;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10vh;
  padding-bottom: 12vh;
  padding-left: 10vw;
  padding-right: 10vw;
}

.index-section-content {
  width: 100%;
}

#contact-main-view {
  box-shadow: 0px 10px 16px 0px rgba(0,0,0,0.4);
  background-color: white;
}

#contact-main-view h1 {
  color: black;
}

.contact-wrapper {
  width: 100%;
}

#conocenos-view {
  background-color: rgb(255, 199, 0);
  color: black;
}

#oferta-formativa-view {
  background-image: url("../img/academia-ingenieria-estudiar.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: rgb(230, 230, 230);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
  margin:0;
  padding:0;
}

#oferta-formativa-view > div {
  background: rgba(255,255,255,0.4);
  padding-top: 10vh;
  padding-bottom: 12vh;
  padding-left: 10vw;
  padding-right: 10vw;
}

.subsection-title {
  margin-bottom: 8vh;
  width: 100%;
  text-align: center;
}

.subsection-item-container {
}

.conocenos-item {
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  flex-direction: column;
}

.conocenos-item-content {
  width: 80%;
  color: white;
  text-align: justify;
}

.conocenos-item-content h4 {
  font-size: 1.2em;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
}
.conocenos-item-content p {
  color: rgb(20, 20, 20);
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
}

.conocenos-item-content hr {
  border: 1px solid rgb(20, 20, 20);
}

.conocenos-img {
  width: 50%;
}

.conocenos-img img{
  width: 100%;
  /*height: 100%;*/
}

.oferta-formativa-container {
  background-color: rgb(70, 70, 70);
  padding-top: 4vh;
  padding-bottom: 4vh;
  padding-left: 8vw;
  padding-right: 8vw;
  border-radius: 20px;
  margin-bottom: 8vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.oferta-formativa-container h3 {
  color: rgb(20, 142, 231);
  font-family: 'Raleway' sans-serif;
  font-weight: bold;
}

.oferta-formativa-container h4 {
  font-family: 'Raleway' sans-serif;
  font-weight: normal;
  color: white;
}
.oferta-formativa-container h4:hover {
  color: rgb(255, 199, 0);
}

/** -LOGIN- **/
.user-input-container {
  width: 45vw;
  min-height: 100vh;
  background-color: white;
  padding-left: 5vmax;
  padding-right: 5vmax;
  display: flex;
  padding-top: 2vmax;
  padding-bottom: 2vmax;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*justify-content: center;*/
  min-height: 84vh;
  margin-top: 8vh;
  margin-bottom: 8vh;
}

.user-form-container {
  width: 70%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bottom-links {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

#user-data-show-form input[type=text],
#user-data-show-form input[type=email],
#user-data-show-form input[type=password] {
  background-color: Transparent;
  background-repeat:no-repeat;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  color: rgb(20, 20, 20);
  font-size: 1.0em;
}

/** -REGISTER- **/
.tos {
  word-wrap: break-word;
  flex-wrap: wrap;
  width: 100%;
}

.tos > label, .tos > input {
  display: inline;
}

/** -MI-CUENTA- **/
#user-data-edit-form, #change-password-container, #user-data-cancel-btn {
  display: none;
}

#dark-bg-overlay {
  visibility: hidden;
  position: fixed;
  background: rgb(48, 49, 66, 0.8);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display:flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
}

.over-window-container {
  position: fixed;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  background: white;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 10vh;
  padding-bottom: 10vh;
  width: 60vw;
  max-height: 60%;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 999;
}

/** -LEGAL- **/
.legal-container {
  width: 50%;
  min-height: 100vh;
  background-color: white;
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 10%;
  padding-bottom: 20%;
}

/** -SUBJECT- **/
.page-content h1 {
  color: black;
}

.drag-and-drop-box {
  margin-top: 15px;
  border: 1px dashed grey;
  height: 300px;
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.drag-and-drop-box.highlight {
  border-color: rgb(255, 161, 0);
    background-color: rgb(255, 250, 231);
}

.drag-and-drop-box div {
  padding-top: 120px;
  padding-left: 60px;
  padding-right: 60px;
}

.upload-files-button {
  display: inline-block;
  padding: 10px;
  background: rgb(240, 240, 240);
  font-family: 'Raleway', sans-serif;
  color: rgb(60, 60, 60);
  font-size: 1.0em;
  cursor: pointer;
}

.upload-files-button:hover {
  background: rgb(219, 219, 219);
}

#upload-file-input {
  display:none;
}

table.users-table {
  background-color: #F3F3F3;
  border-collapse: collapse;
  max-width: 100%;
  width: 100%;
  overflow: scroll;
  margin: 15px 0;
}

.users-table th {
  background-color: rgb(255, 161, 0);
  color: #FFF;
  cursor: pointer;
  padding: 5px 10px;
  word-wrap: break-all;
}

.users-table th small {
  font-size: 9px;
}

.users-table td, .users-table th {
  text-align: left;
  word-wrap: break-all;
  width: 30vw;
}

.users-table a {
  text-decoration: none;
}

.users-table td a {
  color: black;
  /*display: block;*/
  padding: 5px 10px;
}

.users-table td a:hover {
  color: rgb(255, 161, 0);
}

.users-table th a {
  /*padding-left: 0*/
}

.users-table td:first-of-type a {
  /*padding-left: 35px;*/
}

.users-table th:first-of-type {
  padding-left: 35px;
}

.users-table td:not(:first-of-type) a {
  background-image: none !important;
}

.users-table tr:nth-of-type(odd) {
  background-color: #E6E6E6;
}

.users-table tr:hover td {
  background-color:#CACACA;
}

.users-table tr:hover td a {
  color: #000;
}

.two-items-table-cell {
  display: flex;
}

.two-items-table-cell div {
  margin-left: 10px;
  margin-right: 30px;
}

.subject-box {
  height: 15vh;
  width: 20vw;
  margin: 20px;
  padding: 10px;
  border:none;
  background: white;
  cursor:pointer;
  text-decoration: none;
  font-size: 1.4em;
  color: black;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}

.subject-box div {
  position: relative;
  left: 50%;
  top: 50%;
  width: 100%;
  word-wrap: break-word;
  word-break: normal;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.subject-box:hover {
  background: rgb(255, 161, 0);
}

.subject-box:active {
  background:rgb(255, 199, 0);
}

.subject-box-inactive {
  height: 15vh;
  width: 20vw;
  margin: 20px;
  padding: 10px;
  border:none;
  background: rgb(150, 150, 150);
  cursor:pointer;
  text-decoration: none;
  font-size: 1.4em;
  color: black;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}

.subject-box-inactive div {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  word-wrap: break-word;
  word-break: normal;
}

.subject-box-inactive:hover {
  background: rgb(125, 125, 125);
}

.subject-box-inactive:active {
  background:rgb(140, 140, 140);
}

.subject-content{
  align-self: center;
  width: 70vw;
  padding-bottom: 200px;
}

/*********** *** ***********/

.close-button {
  position: absolute;
  right: 15px;
  top: 10px;
}

#loading-files-progress {
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.bar {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  width: 40%;
  height: 40px;
  line-height: 40px;
  background-color: rgb(215, 215, 215);
  text-align: center;
}

#progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 40px;
  background-color: rgb(255, 161, 0);
}
#progress-percent {
  position: relative;
  top: -55px;
}
#total-files-processed {
  padding-left: 15px;
  padding-right: 15px;
}

.subject-files-list a {
  display: inline-block;
}

.subject-files-container {
  margin-top: 5px;
}
.subject-files-title {
  background-color: rgb(255, 161, 0);
  font-size: 1.1em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.subject-files-data {
  background-color: rgba(255,255,255,0.6);
  font-size: 1.1em;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.subject-files-data ul {
  list-style: none;
  padding-left: 15px;
}
.subject-files-data ul li {
  width: 100%;
}
.subject-files-data ul li p {
 margin-right: 5px;
 margin-top: 5px;
 margin-bottom: 5px;
 padding:0;
 cursor: default;
}
.subject-files-data ul li a, .subject-files-data ul li a:active, .subject-files-data ul li a:visited {
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: black;
  text-decoration: none;
}
.subject-files-data ul li a:hover {
  color: rgb(255, 161, 0);
}
.subject-files-data i {
  margin-right: 5px;
}

/** -MEDIA- **/

@media only screen and (min-width: 700px) {
  h1.main-text {
    margin:0;
    font-size: 4em;
    margin-bottom: 8vh;
    text-align: center;
  }

  h2.main-text {
    margin:0;
    font-size: 3em;
    margin-bottom: 6vh;
  }

  h3.main-text {
    margin:0;
    font-size: 1.8em;
    margin-bottom: 5vh;
    margin-top: 3vh;
  }

  h4.main-text {
    margin:0;
    font-size: 1.3em;
    margin-bottom: 4vh;
  }

  p.main-text {
    margin:0;
    font-size: 1.0em;
  }

  #mobile-nav-icon,
  #mobile-home-option
  {
    display: none;
  }

  nav {
    height: 40px;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  #sections-menu-container {
    display: flex;
    flex-grow: 0.4;
    flex-direction: row;
    justify-content: space-between;
  }

  #user-menu-container {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    background-color: rgb(60, 60, 60);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    text-align: center;
    padding-top: 4vh;
    padding-bottom: 4vh;
  }

  #user-menu-container a {
    width: 100%;
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 0.8em;
  }
  #user-menu-container a:hover {
    background-color:  rgb(70, 70, 70);
  }

  #nav-login-icon:hover #user-menu-container
  {
    visibility: visible;
  }

  footer > div {
    display: grid;
    grid-template-areas: "a b c d"
                         "e e e e";
    grid-row-gap: 0;
    grid-column-gap: 4vh;
    text-align: center;
    margin-top: 1vh;
    margin-bottom: 1vh;
    font-size: 0.8em;
  }

  footer > div > a {
    padding-top: 0.4vh;
    padding-bottom: 0.4vh;
  }

  #index-main-view {
    width: 100%;
  }

  h1.title {
    margin:0;
    font-size: 5em;
  }

  h2.title {
    margin:0;
    font-size: 3em;
  }

  #contact-form-container p {
    margin:0;
    font-size: 0.8em;
    margin-bottom: 1vh;
  }

  #contact-form-container h2 {
    margin: 0;
    font-size: 1.6em;
    margin-bottom: 4vh;
    margin-top: 4vh;
  }

  #contact-form-container h3 {
    margin: 0;
    font-size: 1.2em;
    margin-bottom: 4vh;
    margin-top: 4vh;
  }

  .conocenos-item {
    width: 15vw;
    height: 450px;
    margin-bottom: 5vh;
    max-width: 500px;
  }

  .direct-contact {
    text-align: center;
    width: 500px;
  }

  .flex-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .width-40per {
    width: 40%;
  }

  .oferta-formativa-container {
    width: 25%;
  }

  label.user-data-two-col-item, input.user-data-two-col-item {
    width: 45% !important;
  }
  label.user-data-two-col-item {
    text-align: right !important;
  }
  input.user-data-two-col-item {
    text-align: left !important;
  }

  .main-form label {
    text-align: right;
    padding-bottom:0;
    margin-bottom:0;
  }
}

@media only screen and (max-width: 699px) {
  h1.main-text {
    margin:0;
    font-size: 2.5em;
    text-align: center;
  }

  h2.main-text {
    margin:0;
    font-size: 1.8em;
  }

  h3.main-text {
    margin:0;
    font-size: 1.3em;
    margin-bottom: 5vh;
  }

  h4.main-text {
    margin:0;
    font-size: 1.1em;
    margin-bottom: 5vh;
  }

  p.main-text {
    margin:0;
    font-size: 0.8em;
  }

  #desktop-home-icon {
    display: none;
  }

  nav {
    height: 50px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  #sections-menu-container,
  #user-menu-container {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(60, 60, 60);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
  }

  .nav-ul {
    text-align: center;
    padding-top: 4vh;
    padding-bottom: 4vh;
  }
  .nav-ul a {
    font-size: 1.3em;
    width: 100%;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
  .nav-ul a:hover {
    background-color:  rgb(70, 70, 70);
  }

  footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }
  footer > div > a {
    padding-top: 1vh;
    padding-bottom: 1vh;
  }

  h1.title  {
    margin:0;
    font-size: 2.5em;
  }

  h2.title {
    margin:0;
    font-size: 1.8em;
  }

  #index-main-view {
    width: 100%;
  }

  #contact-form-container > div {
    width: 100%;
  }

  #contact-form-container p {
    margin:0;
    font-size: 0.8em;
    margin-bottom: 1vh;
  }

  #contact-form-container > div {
    width: 100%;
  }

  #contact-form-container h2 {
    margin: 0;
    font-size: 2em;
    margin-bottom: 4vh;
    margin-top: 4vh;
  }

  #contact-form-container h3 {
    margin: 0;
    font-size: 1.5em;
    margin-bottom: 4vh;
    margin-top: 4vh;
  }

  .subsection-title {
    text-align: center;
  }

  .conocenos-item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 8vh;
  }

  .space-between-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .direct-contact {
    text-align: center;
    width: 100%;
  }

  .page-content {
    width: 100%;
  }

  .user-form-container {
    padding: 0;
    width: 100%;
  }

  .tos {
    font-size: 0.6em;
  }

  .flex-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .oferta-formativa-container {
    width: 80%;
  }

  .legal-container, .user-input-container {
    width: 100%;
    padding-top: 15vmax;
    padding-bottom: 15vmax;
    overflow-x: hidden;
  }

  .user-input-container {
    max-width: 500px;
  }

  label.user-data-two-col-items {
    display: block;
  }

  label.user-data-two-col-item, input.user-data-two-col-item {
    width: 100%;
  }

  input.user-data-two-col-item {
    text-align: center;
  }

  .subject-content{
    padding-left: 0;
    padding-right: 0;
  }

  .subject-box, .subject-box-inactive {
    height: 20vh;
    width: 80vw;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 1.6em;
  }
}
