
.hero {
  position: relative;
}

.hero__form {
  position: absolute;
  top: 40%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 2;
  background-color: white;
  max-width: 381px;
  border-radius: 25px;
  padding: 50px 35px;
}

.hero__form__title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.formulario__field {
  border: 0;
  display: block;
  width: 100%;
  border-bottom: solid 1px black;
  padding: 0.3em 0;
  margin: 1em 0;
}

.formulario label {
  font-size: 14px;

  a {
    text-decoration: underline;
  }
}

.formulario .button {
  display: table;
  margin: 2em auto 0;
  cursor: pointer;
}

.float__links {
  position: fixed;
  bottom: 5vh;
  right: 1vw;
  z-index: 2;

  button {
    border: 0;
    appearance: none;
    background-color: #ff8d52;
    padding: 9px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.float__links svg {
  width: 30px;
  height: 30px;
}

.footer-subscribe .formulario__field {
  background-color: transparent;
}

.footer-subscribe .footer-form-container-two {
  align-items: flex-start;
}

.footer-subscribe .footer-form-title {
  padding-top: 1.4rem;
}

.loading-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
}

.loader-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.float_modal {
    z-index: 111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: none !important;
}
.float_modal .background {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.float_modal .float_modal_content {
    padding: 20px 40px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 390px;
    max-width: 100%;
    z-index: 2;
    box-sizing: border-box;
    border-radius: 18px 0 0;
}
.float_modal .close {
    position: absolute;
    top: 26px;
    right: 15px;
}
.float_modal .close:before,
.float_modal .close:after {
    content: "";
    width: 20px;
    height: 3px;
    background-color: #000;
    position: relative;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: block;
}
.float_modal .close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 2.5px;
}
.float_modal .title {
    color: #404041;
    display: block;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Bebas Neue";
    font-weight: 500;
}
.float_modal .field {
    display: block;
    border: 0;
    border-bottom: solid 1px #404041;
    width: 100%;
    margin: 20px 0;
    padding: 5px 0;
    outline: none;
}
.float_modal label {
    display: block;
    font-size: 14px;
    margin: 20px 0;
}
.float_modal .button {
    background-color: #7b1c30;
    text-align: center;
    display: table;
    color: #fff;
    margin: 0 auto 10px;
}
@media screen and (max-width: 400px) {
    .float_modal .float_modal_content {
        width: 100%;
        border-radius: 18px 18px 0 0;
    }
}

.button{
  cursor: pointer;
}

@media screen and (max-width: 860px){
  section{
    
    overflow: hidden;
  }
  .hero__form{
    display: none;
    position: static;
    transform: none;
    max-width: 100%;
  }
  .nav-menu{
    margin-top: 0;
    .nav-link{
      color: black;
    }
    li:empty{
      display: none;
    }
  }
}