@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #cddcea;
  box-sizing: border-box;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
}
.required {
  background-color: red;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 1rem;
  width: 100%;
}
.btn {
  background-color: #45a333;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-shadow: #000000 1px 1px 1px;
  text-transform: uppercase;
  width: 100%;
}
.btn:hover {
  background-color: #59c544;
  border: 1px solid #328625;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}
.blink-1 {
  animation: blink-1 3s infinite both;
  -webkit-animation: blink-1 3s infinite both;
}
.form {
  color: #333;
}
.form__span {
  font-weight: bold;
}
.form__span--2 {
  font-size: 18px;
}
.form__span--copy {
  font-size: 11px;
  margin: 0.3rem;
}
.form__module--box {
  align-items: center;
  display: none;
  flex-direction: column;
  text-align: center;
}
.form__module--button {
  display: flex;
  width: 100%;
}
.form--boxselect {
  margin: 3rem 0;
  width: 100%;
}
.form--select {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  font-size: 18px;
  padding: 0.5rem 1rem;
  width: 30%;
}
.form--select:nth-child(1),
.form--select:nth-child(2) {
  margin-right: 1rem;
}
.form--input {
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #555;
  font-size: 18px;
  margin: 0.5rem 0;
  outline: 0;
  padding: 0.3rem 1rem;
  width: 100%;
}
.form--input:focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0;
}
.background {
  align-items: center;
  background-image: url("../media/backgroundnew.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100vh;
  justify-content: center;
}
.content {
  background-color: #b0314d;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 400px;
}
.content--1 {
  align-items: center;
  display: flex;
  font-size: 3rem;
  height: 30%;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
}
.content--2 {
  background-color: #fff;
  height: 45%;
  padding: 2rem;
}
.content--2-box {
  margin: 2rem 0;
}
.content--2-img {
  cursor: pointer;
  filter: grayscale(100);
  margin: 0 1rem;
}
.content--2-img--active {
  filter: grayscale(0);
}
.content--3 {
  background-color: #fff;
  color: #333;
  display: flex;
  font-size: 16px;
  height: 10%;
  justify-content: space-around;
  padding: 2rem 4rem;
}
.content--3 * {
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 100%;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.content--3 *:hover {
  background-color: #ccc;
  cursor: pointer;
}
.content--3-active {
  background-color: #b0314d;
  color: #fff;
}
.content--4 {
  align-items: center;
  background-color: #fff;
  color: #333;
  display: flex;
  font-size: 1.2rem;
  height: 15%;
  letter-spacing: -1px;
  line-height: 1.4;
  padding: 0.5rem;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 1200px) {
  .content {
    margin: 0px 5%;
  }
}
@media only screen and (max-width: 400px) {
  .content {
    position: relative;
    top: 30px;
  }
  .content--1 {
    height: 20%;
  }
  .form__span--copy {
    font-size: 10px;
  }
}
