@keyframes moveInUp {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  80% {
    transform: translateY(-0.5rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 1;
  }
  80% {
    transform: translateY(3rem);
  }
  100% {
    opacity: 0;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  height: 100%;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  color: #fff;
}
.background {
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  background: linear-gradient(27deg, rgba(107, 212, 116, 0.768627), #32645b);
  z-index: -1;
}
.text {
  color: #44a02b;
  font-weight: 600;
}
.text-black {
  color: #111;
  font-weight: 600;
}
.link {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
.link:hover {
  color: #44a02b;
}
.privacy {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  color: #000;
  margin-top: 1em;
}
.privacy-link {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  color: #000;
}
.required {
  display: block;
  margin-bottom: 0.7em;
  font-size: 16px;
  color: red;
  font-weight: bold;
}
ul {
  list-style: none;
}
ion-icon {
  font-size: 5rem;
  transition: all 0.5s;
}
.copy--link {
  color: #007bff;
  text-decoration: none;
}
.copy--link:hover {
  text-decoration: underline;
}
.u-center-text {
  text-align: center !important;
}
.u-left-text {
  text-align: left !important;
}
.u-right-text {
  text-align: right !important;
}
.u-text-bold {
  font-weight: 600;
}
.u-text-red {
  color: #ff4136;
}
.u-text-uppercase {
  text-transform: uppercase;
}
.u-text-fontsize-m {
  font-size: 2.3rem !important;
}
.u-text-fontsize-b {
  font-size: 3rem !important;
}
.u-text-fontsize-vb {
  font-size: 4rem !important;
}
.u-text-line {
  text-decoration: line-through;
}
.u-text-underline {
  text-decoration: underline;
}
.u-margin {
  margin: 0.5rem;
}
.u-margin-v {
  margin: 0.5rem 0;
}
.u-margin-v-b {
  margin: 2rem 0;
}
.u-padding-v {
  padding: 0.5rem 0;
}
.u-padding-v-m {
  padding: 1rem 0;
}
.u-padding-v-b {
  padding: 2rem 0;
}
.u-margin-h {
  margin: 0 1rem;
}
.u-margin-h-b {
  margin: 0 2.5rem;
}
.u-margin-center {
  margin: 3rem 20rem;
}
.u-margin-top {
  margin-top: 1.5rem !important;
}
.u-margin-bottom {
  margin-bottom: 1.5rem;
}
.u-flex-direction-row {
  flex-direction: row !important;
}
.u-flex-direction-justify {
  justify-content: space-around;
  flex-direction: row !important;
}
.u-color-list {
  background: #8bc34a !important;
}
.btn {
  color: white !important;
  background: #d8430f;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
  width: 47%;
  height: 60px;
  line-height: 60px;
  margin: 20px 0;
  padding: 0 25px;
  border: 0;
  transition: all 0.3s;
}
.btn:hover {
  background-color: #ef4b12;
  cursor: pointer;
}
.btn--flex {
  display: flex;
  align-items: center;
}
.btn--flex ion-icon {
  width: 3rem;
}
.select {
  width: 30rem;
  height: 6rem;
  font-size: 20px;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.input {
  font-size: 20px;
  padding: 1.5rem 0.5rem;
  margin: 1.5rem 0;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: lightgray;
  height: 40px;
  color: #000;
  display: flex;
}
.footer p {
  width: calc(100% / 6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.footer--active {
  background-color: limegreen;
}
.header {
  background: #1f1f1f;
  height: 8rem;
  padding: 2rem;
  display: flex;
  justify-content: end;
}
.header--button {
  border-radius: 5px;
  color: whitesmoke;
  border: 1px solid whitesmoke;
  background: transparent;
  font-size: 16px;
  height: 3rem;
  width: 7rem;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
.content--bg {
  width: 40%;
  text-align: center;
}
.content--p {
  color: #000;
  font-size: 4rem;
  line-height: 1.2;
}
.content--p-2 {
  color: #000;
  font-size: 2.8rem;
  line-height: 1.2;
}
.container__box-2--form {
  display: none;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 900px) {
  body {
    background-image: url("../media/png/image_05.jpg") !important;
  }
  .content--bg {
    width: 80%;
  }
  .content--p {
    font-size: 3.5rem;
  }
  .content--p-2 {
    font-size: 2.5rem;
  }
  .select {
    width: 30rem;
    height: 4rem;
    font-size: 18px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .input {
    font-size: 18px;
    padding: 1rem 0.2rem;
    margin: 0.5rem 0;
  }
  .btn {
    width: 23rem;
  }
  .form-select--box {
    display: flex;
    flex-direction: column;
  }
  .select--mobile {
    margin-right: 0 !important;
    width: 30rem !important;
  }
}
@media only screen and (max-width: 350px) {
  .content--p {
    font-size: 2.5rem;
  }
  .content--p-2 {
    font-size: 2rem;
  }
}
