.comingsoon {
  background-color: #7BABC1;
  height: 100vh;
  width: 100%;
  position: relative;
  font-size: 22px;
  line-height: 31px;
  text-wrap: pretty;
  text-align: center;
  color: #242B50;
  font-family: "greycliff-cf";
  overflow: clip;
}
.comingsoon::after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-image: url(/images/bg.svg);
  background-position: 0% 0;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-30%, -10%);
}
.comingsoon .container {
  padding: 0 30px;
}
.comingsoon .logo img {
  max-height: 40px;
}
.comingsoon .logo-wrap {
  width: fit-content;
  background-color: #fff;
  border: unset;
  border-radius: 0 0 20px 20px;
  padding: 30px 30px 25px 30px;
  text-align: center;
  left: 50%;
  top: 0;
  z-index: 10;
  position: relative;
  transform: translateX(-50%);
}
.comingsoon .content {
  position: relative;
  z-index: 2;
}
.comingsoon .btn {
  width: fit-content;
  font-weight: 600;
}
.comingsoon .btn.mail {
  display: flex;
  font-size: 17px;
  line-height: 39px;
}
.comingsoon .btn.mail::before {
  content: "";
  display: block;
  width: 39px;
  height: 39px;
  background-image: url(/images/mail.svg);
  background-size: 17px;
  border-radius: 50%;
  background-color: #7BABC1;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.comingsoon .btn.mail::after {
  content: "";
  display: block;
  width: 7px;
  height: 39px;
  border-radius: 50%;
  background-image: url(/images/chevron.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 20px;
}
.comingsoon .btn.phone {
  content: "";
  display: block;
  width: 53px;
  height: 53px;
  background-image: url(/images/phone.svg);
  background-size: 17px;
  border-radius: 50%;
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
}
.comingsoon .btn-wrap {
  position: relative;
}
.comingsoon .circle {
  width: 100vw;
  height: 300px;
  border-radius: 100% 100%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  position: absolute;
  background: #242b50;
  aspect-ratio: 1;
}
.comingsoon .footer {
  z-index: 3;
  padding-bottom: 30px;
  color: white;
  font-size: 16px;
  position: relative;
}
.comingsoon h1 {
  font-size: 50px;
  line-height: 65px;
  margin-bottom: 35px;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .comingsoon {
    font-size: 30px;
    line-height: 51px;
  }
  .comingsoon .logo img {
    max-height: 64px;
  }
  .comingsoon h1 {
    font-size: 70px;
    line-height: 86px;
  }
  .comingsoon .circle {
    height: auto;
    top: 50%;
    aspect-ratio: 2 / 1;
  }
  .comingsoon::after {
    transform: translateX(-10%);
  }
}
