.container__check {
  display: block;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 20px;
  margin-bottom: 1rem;
}
.container__check a {
  text-decoration: none;
  color: #fff;
}
.container__check a:hover {
  text-decoration: underline;
}

.container__check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #a2afc8;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.container__check:hover input ~ .checkmark {
  border-color: #00f28b;
}

/* When the checkbox is checked, add a blue background */
.container__check input:checked ~ .checkmark {
  background-color: #00f28b;
  border-color: #00f28b;
}
.container__check input[type="radio"] ~ .checkmark  {
  border-radius: 1rem;
}
.container__check input.error:checked ~ .checkmark {
  background-color: #ff758e;
  border-color: #ff758e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container__check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container__check .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #010713;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.input__material {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: inline-block;
}
.input__material .label {
  position: absolute;
  top: 20px;
  left: 4px;
  font-size: 16px;
  color: #a2afc8;
  font-weight: 500;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}
.input__material .focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.input__material input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 16px 12px 0 0;
  height: 56px;
  font-size: 1rem;
  font-weight: 400;
  background: #010713;
  -webkit-box-shadow: inset 0 -1px 0 #a2afc8;
  box-shadow: inset 0 -1px 0 #a2afc8;
  color: #fff;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  border-bottom: 1px solid transparent;
}
.input__material input.error:focus,
.input__material input:invalid,
.input__material input.error {
  -webkit-box-shadow: inset 0 -1px 0 #ff758e;
  box-shadow: inset 0 -1px 0 #ff758e;
}

.input__material input:not(:-moz-placeholder-shown) + .label {
  color: #00f28b;
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.input__material input:not(:-ms-input-placeholder) + .label {
  color: #00f28b;
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.input__material input:not(:placeholder-shown) + .label {
  color: #00f28b;
  -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.input__material input:focus {
  background: rgba(0, 0, 0, 0.05);
  outline: none;
  -webkit-box-shadow: inset 0 -2px 0 #00f28b;
  box-shadow: inset 0 -2px 0 #00f28b;
}
.input__material input:focus + .label {
  color: #00f28b;
  -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
  transform: translate3d(0, -12px, 0) scale(0.75);
}
.input__material input:focus + .label + .focus-bg {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
 .alert_email ,
 .alert_phone {
  display: none;
  font-size: .7em;
 }

.services__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.services__contact .container__check {
  margin-bottom: 1.5rem;
  padding-right: 1rem;
}
.container__check input.error + .checkmark {
  border-color: #ff758e;
}
.left__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  padding-right: 2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.left__titles h1 {
  color: #fff;
  line-height: 1.35em;
  font-size: 1.75rem;
}
.left__titles h2 {
  color: #fff;
  line-height: 1.5em;
  font-size: 1rem;
  background: -o-linear-gradient(45deg, #00e676 0%, #2e1fdf 100%);
  background: linear-gradient(45deg, #00e676 0%, #2e1fdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.form__contact h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}

.block__contact {
  padding-left: 2rem;
  padding-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact__data__item {
  margin-bottom: 1.5rem;
}
.form__contact__data {
  margin-bottom: 4rem;
}
.subtitle__form {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.25em;
}
.subtitle__form span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2em;
}
.services__contact {
  margin-bottom: 2rem;
}
.services__contact .container__check {
  width: 100%;
}

.block__idea {
  margin-bottom: 2rem;
}
.block__idea textarea {
  background-color: transparent;
  border: 1px solid #a2afc8;
  width: 100%;
  resize: none;
  border-radius: 0.5rem;
  padding: 2rem;
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
.block__idea textarea.error {
  border-color: #ff758e;
}
.block__sending {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.locations__contact {
  padding: 2px;
  border-radius: 1rem;
  background: -o-linear-gradient(right, #2e1fdf, #00e676);
  background: -webkit-gradient(linear, right top, left top, from(#2e1fdf), to(#00e676));
  background: linear-gradient(to left, #2e1fdf, #00e676);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.inner__locations__contact {
  padding: 2rem;
  border-radius: 1rem;
  background: -o-linear-gradient(
    205.55deg,
    #04122f 0%,
    rgba(4, 18, 47, 1) 98.12%
  );
  background: -o-linear-gradient(
    205.55deg,
    #04122f 0%,
    rgba(4, 18, 47, 1) 98.12%
  );
  background: -o-linear-gradient(205.55deg, #04122f 0%, rgba(4, 18, 47, 1) 98.12%);
  background: linear-gradient(244.45deg, #04122f 0%, rgba(4, 18, 47, 1) 98.12%);
}

.location__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.location__contact:last-of-type {
  margin-bottom: 0;
}
.location__contact svg {
  min-width: 20px;
  min-height: 20px;
  display: inline-block;
}
.location__contact .desc__location {
  padding-left: 1.5rem;
}
.location__contact h3 {
  margin-top: 0;
  font-weight: 500;
  font-size: 1.25rem;
}

.location__contact p {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5em;
}
.grecaptcha-badge {
  z-index: 12;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background: #010713;
  border-bottom: 1px solid #a2afc8;
  -webkit-box-shadow: inset 0 0 0 30px #010713, inset 0 -1px 0 #a2afc8 !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
}
.scroll__stage{
  position: relative;
  overflow: hidden;
}
.divider__section{
  border-bottom: 1px solid #273B64;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.alert_name, .alert_apellido, .alert_email, .alert_tel, .alert__aviso, .alert_service, .alert_idea{
  display: none;
  font-size: .7em;
}

.img__contact{
  border-radius: 1.25rem;
  margin-bottom: 2rem;
}
.services__contact__sublist{
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-left: 0;
  justify-content: space-between;
  list-style: none;
  padding-left: 2rem;
}
.services__contact__sublist li {
  width: 32%;
}
.services__contact__sublist li .container__check {
  width: 100%;
  margin-bottom: 0;
}

.presupuesto__contact{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  margin-bottom: 2rem;
}
.block__file{
  margin-bottom: 2rem;
}

.wrap__file__input {
  position: relative;
}
.wrap__file__input input[type="file"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.wrap__file__input .label__file__input{
  width: 100%;
  max-width: 300px;
  border: 1px solid #a2afc8;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}
.wrap__file__input .label__file__input svg {
  margin-bottom: 0.5rem;
}

.left__titles {
    padding-right: 0;
  }


@media screen and (min-width: 960px) {
  .form__contact__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .contact__data__item {
    min-width: 48%;
  }
  .form__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form__contact form {
    padding-right: 2rem;
    min-width: 65%;
  }
  .locations__contact {
    margin-bottom: 4rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .services__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .services__contact .container__check {
    width: 100%;
  }
  .container__check {
    font-weight: 400;
  }
  .block__sending {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .input__material .label {
    font-size: 0.875rem;
  }
  .block__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .left__titles h2 {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .site__content.islanding {
  }

  .site__content.islanding:before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    left: -35%;
    display: inline-block;
    background: #00f28b;
    mix-blend-mode: normal;
    opacity: 0.3;
    -webkit-filter: blur(225px);
    filter: blur(225px);
    bottom: -35%;
    z-index: -1;
  }

  .left__titles {
    padding-right: 2rem;
  }

  
}

@media screen and (min-width: 1200px) {
  .form__contact {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .form__contact form {
    min-width: 670px;
    max-width: 670px;
  }
  .locations__contact {
    max-width: 386px;
    margin-bottom: 1rem;
  }
  .block__contact {
    padding-top: 4rem;
  }

  .block__contact h1 {
    font-size: 2  .75rem;
    line-height: 1.5em;
  }
}
