*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  background-attachment: fixed;
  background-image: url("../media/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
}
.required {
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.7em;
}
ion-icon {
  font-size: 5rem;
  transition: all 0.5s;
}
.btn {
  background: #fff;
  border: 0;
  border-radius: 50px;
  color: #000 !important;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin: 20px 0;
  padding: 0 25px;
  transition: all 0.3s;
  width: 47%;
}
.btn:hover {
  background-color: #fff;
  box-shadow: 2px 5px 8px 1px #333;
  cursor: pointer;
}
.btn--flex {
  align-items: center;
  display: flex;
}
.btn--flex ion-icon {
  width: 2rem;
}
.select {
  font-size: 20px;
  height: 6rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
  width: 27rem;
}
.input {
  border: 0;
  border-radius: 10px;
  font-size: 20px;
  margin: 1.5rem 0;
  padding: 1.5rem 0.5rem;
  width: 27rem;
}
.footer {
  background: #fd5993;
  bottom: 0;
  color: #000;
  display: flex;
  height: 20px;
  position: fixed;
  width: 100%;
}
.footer p {
  align-items: center;
  display: flex;
  font-size: 16px;
  justify-content: center;
  width: calc(100% / 6);
}
.footer--active {
  background-color: lightgray;
}
.header {
  background: rgba(242, 242, 242, 0.9);
  color: #000;
  display: flex;
  height: 7rem;
  justify-content: center;
  padding: 2rem;
}
.content {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.content--bg {
  background: linear-gradient(
    to right,
    rgba(254, 80, 104, 0.8) 0%,
    rgba(253, 40, 124, 0.8) 100%
  );
  border-radius: 30px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.3);
  padding: 10px;
  text-align: center;
  width: 40%;
}
.content--p {
  background: linear-gradient(to right, #03fed4 0%, #8d90e7 100%);
  border-radius: 23px 23px 0px 0px;
  color: #333;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.5rem;
  text-transform: uppercase;
}
.content--p-2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
}
.container__box-2--form {
  align-items: center;
  display: none;
  flex-direction: column;
  padding: 2rem;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 900px) {
  body {
    background-position: center;
    background-image: url("../media/bgsm.jpg");
  }
  .content--bg {
    width: 85%;
  }
  .btn {
    width: 23rem;
  }
  .form-select--box {
    display: flex;
    flex-direction: column;
  }
  .select--mobile {
    margin-right: 0 !important;
    width: 25rem !important;
  }
}
a {
  color: inherit;
}
