/*
0-600px:        phone
600-900px:      tablet portrait
900-1200px:     tablet landscape
1200-1800px:    Normal style
1800px +:       Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- laptop
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 68.75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }
  body::-webkit-scrollbar {
    width: 1.5rem; }
    @media only screen and (max-width: 37.5em) {
      body::-webkit-scrollbar {
        width: 0;
        display: none; } }
  body::-webkit-scrollbar-track {
    background-color: #222127;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3); }
    @media only screen and (max-width: 56.25em) {
      body::-webkit-scrollbar-track {
        box-shadow: none; } }
  body::-webkit-scrollbar-thumb {
    background-color: rgba(136, 136, 136, 0.5);
    border-radius: 6px; }

::selection {
  background-color: #222127;
  color: #ffffff; }

.title {
  opacity: 0.9; }

.heading-primary {
  color: #f9f9f9;
  backface-visibility: hidden;
  margin: 5rem 0; }
  .heading-primary--main {
    display: block;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        font-size: 5rem;
        letter-spacing: 1rem; } }
  .heading-primary--sub {
    display: block;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
    animation: moveInRight 1s ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        font-weight: 400;
        letter-spacing: 0.5rem; } }

.ingresar {
  outline: none;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.7rem;
  margin-left: 0.5rem;
  padding: 0.5rem 3rem;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 7px;
  opacity: 0.5;
  transition: all 0.3s; }
  .ingresar:hover {
    opacity: 1;
    background-color: #fff;
    color: #222127; }
  .ingresar:active {
    transform: scale(0.95); }
  .ingresar.cta {
    opacity: 1;
    font-size: 1.8rem;
    background-color: #d8890b;
    border: 1px solid #d8890b;
    color: inherit; }
    .ingresar.cta:hover {
      background-color: #e69d28;
      color: inherit; }
    .ingresar.cta:active {
      transform: scale(0.95); }

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s; }
  .modal.active {
    visibility: visible;
    opacity: 1; }
  .modal__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    position: relative;
    border-radius: 8px;
    background-color: #222127;
    color: #ffffff;
    padding: 5rem;
    transition: all 0.3s;
    transform: translateY(-100vw); }
    @media only screen and (max-width: 56.25em) {
      .modal__card {
        width: 55rem; } }
    @media only screen and (max-width: 37.5em) {
      .modal__card {
        width: 37rem; } }
    .modal__card.active {
      transform: translateY(0); }
    .modal__card.terms {
      width: 60%;
      height: 70%; }
      @media only screen and (max-width: 68.75em) {
        .modal__card.terms {
          width: 75%; } }
      @media only screen and (max-width: 37.5em) {
        .modal__card.terms {
          width: 85%; }
          .modal__card.terms .modal__card--list {
            line-height: 18px; } }
    .modal__card--title {
      font-size: 2rem;
      text-decoration: underline;
      margin-bottom: 2rem; }
      @media only screen and (max-width: 68.75em) {
        .modal__card--title {
          font-size: 25px; } }
      @media only screen and (max-width: 37.5em) {
        .modal__card--title {
          font-size: 18px; } }
    .modal__card--list {
      font-size: 20px;
      line-height: 40px;
      overflow-y: scroll; }
      .modal__card--list::-webkit-scrollbar {
        width: 1.5rem; }
        @media only screen and (max-width: 37.5em) {
          .modal__card--list::-webkit-scrollbar {
            width: 0.5rem; } }
      .modal__card--list::-webkit-scrollbar-track {
        background-color: #222127;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3); }
        @media only screen and (max-width: 56.25em) {
          .modal__card--list::-webkit-scrollbar-track {
            box-shadow: none; } }
      .modal__card--list::-webkit-scrollbar-thumb {
        background-color: rgba(136, 136, 136, 0.5);
        border-radius: 6px; }
      @media only screen and (max-width: 68.75em) {
        .modal__card--list {
          line-height: 35px; } }
      @media only screen and (max-width: 56.25em) {
        .modal__card--list {
          font-size: 20px;
          line-height: 30px; } }
      @media only screen and (max-width: 37.5em) {
        .modal__card--list {
          line-height: 25px;
          font-size: 15px; } }
    .modal__card p,
    .modal__card h4 {
      font-size: 16px; }
      @media only screen and (max-width: 37.5em) {
        .modal__card p,
        .modal__card h4 {
          margin-right: 0.5rem;
          font-size: 12px; } }
    .modal__card--close {
      cursor: pointer;
      color: #ffffff;
      position: absolute;
      font-size: xx-large;
      top: 0;
      right: 0;
      padding: 2rem; }

#quienes-somos {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222127;
  align-items: flex-start;
  width: 100%;
  padding: 5rem 0;
  height: 90vh; }
  @media only screen and (max-width: 56.25em) {
    #quienes-somos {
      height: 60vh; } }
  @media only screen and (max-width: 37.5em) {
    #quienes-somos {
      height: 80vh; } }
  #quienes-somos .about {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.6em; }
    @media only screen and (max-width: 93.75em) {
      #quienes-somos .about {
        width: 90%; } }
    #quienes-somos .about .title {
      font-size: 2rem;
      position: relative;
      margin-bottom: 10rem;
      color: #ffffff;
      opacity: 0.7; }
      @media only screen and (max-width: 68.75em) {
        #quienes-somos .about .title {
          margin-bottom: 5rem; } }
      @media only screen and (max-width: 37.5em) {
        #quienes-somos .about .title {
          margin-bottom: 5rem; } }
      #quienes-somos .about .title::after {
        position: absolute;
        content: '';
        bottom: -0.5rem;
        left: 50%;
        width: 12rem;
        height: 0.35rem;
        background-color: #ffffff;
        transform: translateX(-50%); }
    #quienes-somos .about .card {
      width: 400px;
      height: 500px;
      position: relative; }
      #quienes-somos .about .card:hover .card__front {
        transform: rotateY(-180deg); }
      #quienes-somos .about .card:hover .card__back {
        transform: rotateY(0deg); }
      @media only screen and (min-width: 112.5em) {
        #quienes-somos .about .card {
          width: 400px;
          height: 530px; } }
      @media only screen and (max-width: 68.75em) {
        #quienes-somos .about .card {
          width: 350px;
          height: 450px; } }
      @media only screen and (max-width: 56.25em) {
        #quienes-somos .about .card {
          width: 300px;
          height: 400px; } }
      @media only screen and (max-width: 37.5em) {
        #quienes-somos .about .card {
          width: 250px;
          height: 350px; } }
      #quienes-somos .about .card > div {
        perspective: 150rem;
        -moz-perspective: 150rem;
        position: absolute;
        backface-visibility: hidden;
        overflow: hidden;
        transition: all 0.8s ease;
        border-radius: 15px; }
      #quienes-somos .about .card__front {
        width: 100%;
        height: 100%;
        opacity: 0.7; }
        #quienes-somos .about .card__front > img {
          width: 100%; }
      #quienes-somos .about .card__back {
        background-color: #cacaca;
        height: 100%;
        padding: 3rem;
        transform: rotateY(180deg);
        letter-spacing: 1px;
        border: 1px solid #ffffff; }
        #quienes-somos .about .card__back p {
          color: #222127;
          letter-spacing: 0.5px;
          font-size: 16px; }
          @media only screen and (max-width: 68.75em) {
            #quienes-somos .about .card__back p {
              font-size: 14px; } }
          @media only screen and (max-width: 56.25em) {
            #quienes-somos .about .card__back p {
              font-size: 12px; } }
          @media only screen and (max-width: 37.5em) {
            #quienes-somos .about .card__back p {
              font-size: 10px; } }

.header {
  height: 100vh;
  width: 100%;
  margin-top: 6rem;
  background: radial-gradient(74.41% 147.15% at 74.41% 60.94%, #222127f2 0%, #222127 100%);
  color: #f9f9f9;
  display: flex;
  overflow: hidden; }
  @media only screen and (max-width: 56.25em) {
    .header {
      height: 70vh; } }
  @media only screen and (max-width: 37.5em) {
    .header {
      flex-direction: column;
      padding: 3rem;
      padding-right: 0;
      height: 110vh; } }
  .header__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
    margin-left: 10rem;
    width: 30%;
    padding-bottom: 7rem;
    position: relative; }
    @media only screen and (max-width: 56.25em) {
      .header__left {
        padding-bottom: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__left {
        width: 100%;
        margin-left: 3rem; } }
    .header__left img {
      max-width: 12.5rem; }
    .header__left a {
      display: inline-block; }
  .header__right {
    width: 70%;
    position: relative;
    padding-bottom: 7rem;
    overflow: hidden; }
    @media only screen and (max-width: 56.25em) {
      .header__right {
        padding-bottom: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__right {
        margin-top: 2rem;
        width: 100%;
        overflow: unset; } }
    .header__right .aguayo {
      position: relative;
      transform: rotate(-40deg) translate(-15rem, 15rem); }
      @media only screen and (max-width: 68.75em) {
        .header__right .aguayo {
          transform: rotate(-30deg) translate(-6rem, 15rem); } }
      @media only screen and (max-width: 56.25em) {
        .header__right .aguayo {
          transform: rotate(-40deg) translate(-6rem, 15rem); } }
      @media only screen and (max-width: 37.5em) {
        .header__right .aguayo {
          transform: rotate(-25deg) translate(4rem, 0); } }
      .header__right .aguayo__img {
        position: absolute; }
        @media only screen and (max-width: 68.75em) {
          .header__right .aguayo__img {
            width: 700px; } }
        @media only screen and (max-width: 56.25em) {
          .header__right .aguayo__img {
            width: 600px; } }
        @media only screen and (max-width: 37.5em) {
          .header__right .aguayo__img {
            width: 350px; } }
      .header__right .aguayo__overlay {
        position: relative;
        padding: 1.5rem;
        border-radius: 15px;
        transform: rotate(40deg) translate(40%, 5%);
        width: 60%;
        font-size: 35px;
        letter-spacing: 1.5px;
        line-height: 55px;
        background-color: #00000086; }
        @media screen and (max-width: 1500px) {
          .header__right .aguayo__overlay {
            font-size: 25px;
            line-height: 45px; } }
        @media only screen and (max-width: 68.75em) {
          .header__right .aguayo__overlay {
            font-size: 20px;
            line-height: 35px;
            width: 70%;
            transform: rotate(30deg) translate(25%, 30%); } }
        @media only screen and (max-width: 56.25em) {
          .header__right .aguayo__overlay {
            transform: rotate(40deg) translate(25%, 20%);
            font-size: 17px;
            line-height: 25px;
            width: 65%; } }
        @media only screen and (max-width: 37.5em) {
          .header__right .aguayo__overlay {
            width: 73%;
            transform: rotate(25deg) translate(15%, 20%);
            font-size: 15px;
            line-height: 18px; } }

.navigation {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #222127;
  color: #f9f9f9;
  padding: 1rem 3rem;
  border-bottom: 1px solid #848484;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .navigation h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 1px; }
  .navigation__list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 37.5em) {
      .navigation__list {
        display: none; } }
  .navigation__item {
    padding: 0.5rem;
    margin: 0 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s; }
    .navigation__item.active {
      opacity: 1; }
    .navigation__item:hover {
      opacity: 1; }
    .navigation__item a {
      text-decoration: none;
      color: #f9f9f9;
      font-size: 1.7rem; }
  .navigation__hamburger {
    z-index: 100;
    display: none;
    cursor: pointer;
    width: 4rem;
    height: 4rem; }
    @media only screen and (max-width: 37.5em) {
      .navigation__hamburger {
        display: block;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly; } }
    .navigation__hamburger .line {
      width: 4rem;
      height: 1px;
      background-color: #fff;
      transition: all 0.2s; }
    .navigation__hamburger.open .line.one {
      transform: rotate(45deg) translateX(11px); }
    .navigation__hamburger.open .line.two {
      background-color: transparent; }
    .navigation__hamburger.open .line.three {
      transform: rotate(-45deg) translateX(11px); }
  .navigation__phone {
    position: absolute;
    transform: translateX(100%);
    top: 0;
    right: 0;
    height: 100vh;
    min-width: 35rem;
    background-color: #222127;
    list-style: none;
    padding: 2rem;
    transition: all 0.4s;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .navigation__phone li {
      margin-bottom: 1rem; }
    .navigation__phone.open {
      transform: translate(7px, 7px); }

#services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  background-color: #290300;
  width: 100%;
  height: 66rem;
  padding: 5rem 0;
  font-size: 1.6em;
  text-align: center;
  color: #ffffff; }
  @media only screen and (max-width: 68.75em) {
    #services {
      height: 58rem; } }
  @media only screen and (max-width: 56.25em) {
    #services {
      height: auto; } }
  #services .services__title {
    color: #ffffff;
    font-size: 2rem;
    position: relative;
    margin-bottom: 10rem;
    opacity: 0.7; }
    @media only screen and (max-width: 68.75em) {
      #services .services__title {
        margin-bottom: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      #services .services__title {
        margin-bottom: 5rem; } }
    #services .services__title::after {
      position: absolute;
      content: '';
      bottom: -1rem;
      left: 50%;
      width: 28rem;
      height: 0.35rem;
      background-color: #ffffff;
      transform: translateX(-50%); }
      @media only screen and (max-width: 37.5em) {
        #services .services__title::after {
          width: 22rem; } }
  #services .services__container {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    width: 80%; }
    @media only screen and (min-width: 112.5em) {
      #services .services__container {
        max-width: 1500px; } }
    @media only screen and (max-width: 68.75em) {
      #services .services__container {
        max-width: 900px; } }
    @media only screen and (max-width: 56.25em) {
      #services .services__container {
        flex-wrap: wrap;
        width: 70%; } }
    @media only screen and (max-width: 37.5em) {
      #services .services__container {
        width: 90%; } }
    #services .services__container--icon {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      width: 12rem;
      opacity: 0.5;
      transition: all 0.3s; }
      #services .services__container--icon:hover {
        opacity: 1;
        transform: scale(1.1); }
      @media only screen and (max-width: 68.75em) {
        #services .services__container--icon {
          width: 10rem; } }
      @media only screen and (max-width: 56.25em) {
        #services .services__container--icon {
          flex: 50%;
          height: 15rem;
          margin-top: 3rem; } }
      #services .services__container--icon > svg {
        width: 100%; }
        @media only screen and (max-width: 68.75em) {
          #services .services__container--icon > svg {
            height: 70px; } }
      #services .services__container--icon.down {
        transform: translateY(18rem); }
        #services .services__container--icon.down:hover {
          opacity: 1;
          transform: translateY(18rem) scale(1.1); }
        @media only screen and (max-width: 56.25em) {
          #services .services__container--icon.down {
            transform: translateY(0); }
            #services .services__container--icon.down:hover {
              opacity: 1;
              transform: scale(1.1); } }
      #services .services__container--icon p {
        margin-top: 2rem;
        font-size: 22px; }
        @media only screen and (max-width: 68.75em) {
          #services .services__container--icon p {
            margin-top: 1rem;
            font-size: 18px; } }
        @media only screen and (max-width: 56.25em) {
          #services .services__container--icon p {
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            letter-spacing: 0.5px; } }
        @media only screen and (max-width: 37.5em) {
          #services .services__container--icon p {
            font-size: 15px; } }
      @media only screen and (max-width: 37.5em) {
        #services .services__container--icon.familia {
          padding: 0.5rem; } }

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72rem;
  overflow: hidden;
  position: relative; }
  @media only screen and (max-width: 56.25em) {
    #contact {
      height: 90rem; } }
  #contact .contact-form {
    background: #d8890b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 61.8%;
    color: #ffffff; }
    @media only screen and (max-width: 37.5em) {
      #contact .contact-form {
        width: 100%;
        background: rgba(216, 137, 11, 0.8); } }
    #contact .contact-form__title {
      font-size: 2rem;
      letter-spacing: 1px;
      position: relative; }
      #contact .contact-form__title::after {
        position: absolute;
        content: '';
        bottom: -0.5rem;
        left: 50%;
        width: 12rem;
        height: 0.35rem;
        background-color: #ffffff;
        transform: translateX(-50%); }
    #contact .contact-form .form {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      justify-content: space-between;
      height: 55rem;
      width: 80%; }
      @media only screen and (max-width: 56.25em) {
        #contact .contact-form .form {
          height: 70rem; } }
      #contact .contact-form .form__group {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%; }
        #contact .contact-form .form__group--input {
          font-size: 1.5rem;
          font-family: inherit;
          color: #222127;
          padding: 1.5rem 2rem;
          border-radius: 2px;
          background-color: transparent;
          border: none;
          border-bottom: 3px solid rgba(255, 255, 255, 0.5);
          display: block;
          width: 90%;
          transition: all 0.3s; }
          @media only screen and (max-width: 56.25em) {
            #contact .contact-form .form__group--input {
              width: 100%; } }
          #contact .contact-form .form__group--input:focus {
            outline: none;
            box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.22);
            border-bottom: 5px solid #5fb950; }
          #contact .contact-form .form__group--input:focus:invalid {
            border-bottom: 5px solid #e91717; }
          #contact .contact-form .form__group--input::-webkit-input-placeholder {
            color: #cacaca; }
            @media only screen and (max-width: 37.5em) {
              #contact .contact-form .form__group--input::-webkit-input-placeholder {
                color: #222127; } }
          #contact .contact-form .form__group--input.checkbox {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0; }
            #contact .contact-form .form__group--input.checkbox:hover ~ .checkmark {
              background-color: #af700a; }
            #contact .contact-form .form__group--input.checkbox:checked ~ .checkmark {
              background-color: #222127; }
            #contact .contact-form .form__group--input.checkbox:checked ~ .checkmark::after {
              display: block; }
        #contact .contact-form .form__group .checkmark {
          cursor: pointer;
          position: absolute;
          top: -3px;
          left: 40px;
          height: 25px;
          width: 25px;
          background-color: #eee;
          border-radius: 3px;
          transition: all 0.3s; }
          @media only screen and (max-width: 68.75em) {
            #contact .contact-form .form__group .checkmark {
              left: 27px; } }
          @media only screen and (max-width: 56.25em) {
            #contact .contact-form .form__group .checkmark {
              left: 22px; } }
          @media only screen and (max-width: 37.5em) {
            #contact .contact-form .form__group .checkmark {
              height: 20px;
              width: 20px;
              top: 0; } }
          #contact .contact-form .form__group .checkmark:hover {
            background-color: #af700a; }
          #contact .contact-form .form__group .checkmark::after {
            content: '';
            position: absolute;
            display: none;
            left: 10px;
            top: 5px;
            width: 7px;
            height: 13px;
            border: solid white;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
            @media only screen and (max-width: 37.5em) {
              #contact .contact-form .form__group .checkmark::after {
                left: 6px;
                top: 3px; } }
        #contact .contact-form .form__group--label {
          font-size: 1.2rem;
          font-weight: 700;
          letter-spacing: 0.5px;
          display: block;
          transition: all 0.3s;
          position: absolute;
          top: 10px;
          left: 0;
          transform: translate(-50%, 50%); }
          @media only screen and (max-width: 56.25em) {
            #contact .contact-form .form__group--label {
              transform: translate(0, -150%); } }
          #contact .contact-form .form__group--label.forCheckbox {
            cursor: pointer;
            transform: translate(0);
            top: 50%;
            left: 3rem;
            padding-left: 4rem;
            font-size: 15px;
            font-weight: normal; }
            @media only screen and (max-width: 56.25em) {
              #contact .contact-form .form__group--label.forCheckbox {
                top: 0;
                font-size: 12px; } }
            #contact .contact-form .form__group--label.forCheckbox #terms {
              border-bottom: 1px dotted white;
              transition: all 0.3s; }
              #contact .contact-form .form__group--label.forCheckbox #terms:hover {
                color: #222127; }
        #contact .contact-form .form__group--input:placeholder-shown + .form__group--label {
          opacity: 0;
          visibility: hidden;
          transform: translate(100%, 50%); }
          @media only screen and (max-width: 56.25em) {
            #contact .contact-form .form__group--input:placeholder-shown + .form__group--label {
              transform: translate(60%, 50%); } }
        #contact .contact-form .form__group--btn button {
          background-color: #222127;
          margin-left: 0;
          position: relative; }
          #contact .contact-form .form__group--btn button:disabled {
            cursor: not-allowed;
            background-color: #cacaca; }
            #contact .contact-form .form__group--btn button:disabled:hover {
              background-color: #cacaca; }
              #contact .contact-form .form__group--btn button:disabled:hover::after {
                background-color: rgba(255, 255, 255, 0.3);
                position: absolute;
                content: 'Acepta los terminos y condiciones';
                width: max-content;
                bottom: -3rem;
                left: -75%; }
          #contact .contact-form .form__group--btn button:hover {
            background-color: #3e365e; }
  #contact .contact__img {
    width: 38.2%;
    height: 100%; }
    @media only screen and (max-width: 37.5em) {
      #contact .contact__img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%; } }
    #contact .contact__img img {
      width: 100%;
      height: 100%; }

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #222127;
  padding: 6rem 0;
  font-size: 1.8rem; }
  .footer__top {
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 56.25em) {
      .footer__top {
        flex-direction: column; } }
    .footer__top > * {
      text-align: center; }
      @media only screen and (max-width: 56.25em) {
        .footer__top > * {
          width: 90%;
          margin: 1.5rem auto; } }
  .footer__nav {
    width: 40%; }
    @media only screen and (max-width: 56.25em) {
      .footer__nav {
        width: fit-content; } }
    .footer__nav-list {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between; }
    .footer__nav-item {
      margin: 0 0.5rem; }
      .footer__nav-item a {
        text-decoration: none;
        color: #fff;
        opacity: 0.5;
        transition: all 0.3s; }
    .footer__nav-item a:hover {
      opacity: 1; }
  .footer__logo img {
    opacity: 0.5;
    transition: all 0.3s; }
    .footer__logo img:hover {
      opacity: 1; }
  .footer__link {
    width: 40%;
    padding-left: 4%; }
    @media only screen and (max-width: 56.25em) {
      .footer__link {
        width: fit-content; } }
    .footer__link-item {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
      text-decoration: none; }
      .footer__link-item p {
        text-decoration: none;
        color: #fff;
        opacity: 0.5;
        transition: all 0.2s; }
  .footer__link-item:hover p,
  .footer__link-item:hover .footer__link-icon {
    opacity: 1; }
  .footer__link-icon {
    width: 3rem;
    height: 3rem;
    fill: #fff;
    opacity: 0.5;
    margin-right: 2rem;
    transition: all 0.2s; }
  .footer__bottom {
    margin-top: 3rem;
    color: #fff;
    display: flex; }
    @media only screen and (max-width: 37.5em) {
      .footer__bottom {
        flex-wrap: wrap;
        justify-content: space-evenly; } }
    .footer__bottom p {
      opacity: 0.5;
      margin-right: 1rem; }
      @media only screen and (max-width: 37.5em) {
        .footer__bottom p {
          width: 100vw;
          text-align: center; } }
    .footer__bottom span {
      opacity: 0.5; }
    .footer__bottom a {
      font-size: 1.8rem;
      text-decoration: none;
      color: #fff;
      opacity: 0.5; }
      .footer__bottom a:hover {
        opacity: 1; }

.success {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #ffffff; }
  @media only screen and (max-width: 56.25em) {
    .success {
      flex-direction: column-reverse;
      justify-content: space-evenly; } }
  .success .success__left {
    width: 360px;
    padding: 5rem; }
    @media only screen and (max-width: 37.5em) {
      .success .success__left {
        width: 250px; } }
    .success .success__left img {
      width: 100%; }
  .success__right {
    width: 30vw; }
    @media only screen and (max-width: 68.75em) {
      .success__right {
        width: 40vw; } }
    @media only screen and (max-width: 56.25em) {
      .success__right {
        width: 50vw; } }
    @media only screen and (max-width: 37.5em) {
      .success__right {
        width: 80vw; } }
    .success__right h2 {
      margin-bottom: 2rem;
      font-size: xx-large; }
      @media only screen and (max-width: 37.5em) {
        .success__right h2 {
          font-size: 18px; } }
    .success__right p {
      font-size: large; }
      @media only screen and (max-width: 37.5em) {
        .success__right p {
          font-size: 12px; } }
    .success__right a {
      display: flex;
      justify-content: center;
      align-items: center;
      justify-content: flex-start;
      text-decoration: none;
      color: #ffffff;
      width: fit-content; }
      .success__right a svg {
        margin-right: 2rem;
        width: 2.5rem;
        height: 55px; }
        @media only screen and (max-width: 37.5em) {
          .success__right a svg {
            height: 40px; } }
      .success__right a p {
        border-bottom: 1px solid #ffffff; }
      .success__right a.ingresar {
        margin-top: 2rem; }
        .success__right a.ingresar p {
          border-bottom: none; }

.legal {
  margin-top: 5rem;
  width: 50%;
  color: #ffffff;
  text-align: justify; }
  @media only screen and (max-width: 93.75em) {
    .legal {
      width: 70%; } }
  @media only screen and (max-width: 37.5em) {
    .legal {
      width: 80%; } }
  .legal p {
    font-size: 14px; }
  .legal h3 {
    font-size: 16px; }
