.hero-section {
  padding-top: 10%;
  padding-bottom: 15%;
  background-color: #000323;
}
.hero-section .hero-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-section .hero-image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.hero-section .hero-image-wrapper > div {
  height: 100%;
  width: 100%;
}
.hero-section .hero-image-wrapper + .container {
  position: relative;
  z-index: 5;
}
.hero-section .hero-image-wrapper + .container .content {
  width: 50%;
}
.hero-section .hero-image-wrapper + .container .content form input[type="email"] {
  max-width: 340px;
  height: 60px;
  background: linear-gradient(91.35deg, #00052d 20.69%, #000b63 93.47%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 15px 23px;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.005em;
  color: #eeeeeee6;
  width: 100%;
}
.hero-section .hero-image-wrapper + .container .content form p {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 15px;
  position: relative;
}
.hero-section .hero-image-wrapper + .container .content form .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.hero-section .hero-image-wrapper + .container .content form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}
.newsletter-form .top-row {
  display: flex;
}
.hero-section .hero-image-wrapper + .container .content form .bottom-row span {
  font-weight: 300;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.015em;
  color: #eeeeee;
  opacity: 0.9;
  padding: 0px 10px;
  margin-top: 15px;
}
.hero-section .hero-image-wrapper + .container .content form .input-column {
  width: 100%;
  max-width: 340px;
  margin-right: 12px;
}

.hero-section .hero-image-wrapper + .container .content form input[type="email"]::-webkit-input-placeholder {
  color: #eeeeee;
  opacity: 60%;
}

.hero-section .hero-image-wrapper + .container .content form input[type="email"]::-moz-placeholder {
  color: #eeeeee;
  opacity: 60%;
}
.hero-section .hero-image-wrapper + .container .content form input[type="email"]:-ms-input-placeholder {
  color: #eeeeee;
  opacity: 60%;
}
.hero-section .hero-image-wrapper + .container .content form input[type="email"]::placeholder {
  color: #eeeeee;
  opacity: 60%;
}
.hero-section .hero-image-wrapper + .container .content form .wpcf7-not-valid-tip {
  padding: 0px 10px;
  margin-top: 5px;
}
.hero-section .hero-image-wrapper + .container .content form .wpcf7-response-output {
  font-size: 16px;
  line-height: 22px;
  padding: 15px;
  text-align: center;
  background: linear-gradient(119.15deg, #f73b90 15.92%, #00b7ff 83.61%);
  border: none;
  font-weight: 500;
  animation: fadeIn 0.8s ease-in-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-section .hero-image-wrapper + .container .content form .wpcf7-form-control-wrap {
  width: 100%;
}
.coming-soon-text {
  position: absolute;
  bottom: 70px;
  right: 75px;
}
.hero-section .title-wrapper {
  position: relative;
  max-width: 550px;
}
.hero-section .title-wrapper::after {
  content: "";
  display: block;
  background: url(../images/bear-hero-animation.png) no-repeat;
  background-size: contain;
  height: 103px;
  width: 103px;
  position: absolute;
  bottom: 50px;
  left: auto;
  right: 80px;
  animation: topDown 5s linear infinite;
}
.hero-section .title-wrapper::before {
  content: "";
  background: #646464;
  filter: blur(5.84112px);
  position: absolute;
  width: 59.02px;
  height: 4.29px;
  right: 90px;
  bottom: 45px;
  animation: topDown 5s linear infinite;
}
.hero-section .title-wrapper h1::before {
  content: "";
  display: block;
  background: radial-gradient(39% 39% at 50% 50%, #f3803e 0%, rgba(243, 128, 62, 0) 100%);
  position: absolute;
  width: 88px;
  height: 88px;
  animation: twinkle 5s infinite ease-in-out;
  opacity: 25%;
  left: -30px;
  top: -25px;
}
.hero-section .title-wrapper h1::after {
  content: "";
  display: block;
  background: radial-gradient(39% 39% at 50% 50%, #fbc123 0%, rgba(251, 193, 35, 0) 100%);
  position: absolute;
  width: 130px;
  height: 130px;
  animation: twinkle-reverse 5s infinite ease-in-out;
  opacity: 30%;
  right: 150px;
  bottom: 30px;
}
@keyframes topDown {
  0% {
    transform: translateY(0px); /* bottom */
  }
  20% {
    transform: translateY(0px); /* pause at bottom */
  }
  50% {
    transform: translateY(-18px); /* top */
  }
  80% {
    transform: translateY(-18px); /* pause at top */
  }
  100% {
    transform: translateY(0px); /* back to bottom */
  }
}
@keyframes twinkle {
  0%,
  20% {
    transform: scale(1); /* Pause at normal size */
  }
  50%,
  80% {
    transform: scale(1.5); /* Zoomed (twinkle) */
  }
  100% {
    transform: scale(1); /* Pause before restarting */
  }
}
@keyframes twinkle-reverse {
  0%,
  20% {
    transform: scale(1.5); /* Start large & pause */
  }
  50%,
  80% {
    transform: scale(1); /* Shrink */
  }
  100% {
    transform: scale(1.5); /* End large & pause */
  }
}
input[type="submit"] {
  height: 60px;
}
.hero-section .hero-image-wrapper .mobile-image {
  display: none;
}
@media (max-width: 1399px) {
  .hero-section .title-wrapper::after {
    right: 130px;
    bottom: 20px;
  }
  .hero-section .title-wrapper::before {
    right: 145px;
    bottom: 15px;
  }
  .hero-section .title-wrapper h1::after {
    right: 215px;
    bottom: 30px;
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1199px) {
  .hero-section .hero-image-wrapper + .container .content {
    width: 60%;
  }
  .hero-section .title-wrapper {
    max-width: 430px;
  }

  .hero-section .title-wrapper::after {
    right: 70px;
    bottom: 20px;
  }
  .hero-section .title-wrapper::before {
    right: 80px;
    bottom: 15px;
  }
  .hero-section .title-wrapper h1::after {
    right: 137px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 140px;
  }
  .hero-section .hero-image-wrapper + .container .content {
    width: 70%;
  }
  .coming-soon-text {
    bottom: 30px;
    right: 45px;
  }
  .hero-section .title-wrapper {
    max-width: 350px;
  }
  .hero-section .title-wrapper::after {
    height: 70px;
    width: 70px;
    right: 80px;
    bottom: 20px;
  }
  .hero-section .title-wrapper::before {
    width: 45px;
    height: 3px;
    right: 83px;
  }
  .hero-section .title-wrapper h1::after {
    bottom: 20px;
    right: 130px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-bottom: 0;
  }
  .hero-item {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-section .hero-image-wrapper + .container .content {
    width: 100%;
  }
  .hero-section .hero-image-wrapper {
    position: relative;
    padding-top: 100vw;
    margin-top: 15px;
  }
  .hero-section .hero-image-wrapper img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 100%;
    object-position: right 0 bottom 0;
  }
  .hero-section .hero-image-wrapper .desktop-image {
    display: none;
  }
  .hero-section .hero-image-wrapper .mobile-image {
    display: flex;
  }
  .coming-soon-text {
    bottom: 20px;
    right: 20px;
  }
  .hero-section .hero-image-wrapper + .container .content form .wpcf7-response-output {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .newsletter-form .top-row {
    flex-direction: column;
  }
  .hero-section .hero-image-wrapper + .container .content form .input-column {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .hero-section .hero-image-wrapper + .container .content form input[type="email"] {
    max-width: initial;
  }
  .hero-section .title-wrapper {
    max-width: 320px;
  }
  .hero-section .title-wrapper h1::before {
    width: 60px;
    height: 60px;
    left: -20px;
    top: -20px;
  }
  .hero-section .title-wrapper h1::after {
    bottom: 25px;
    right: 110px;
    width: 60px;
    height: 60px;
  }
  .hero-section .title-wrapper::after {
    right: 55px;
  }
  .hero-section .title-wrapper::before {
    right: 55px;
  }
}
