.section-comingsoon {
  padding: 60px 0 40px;
  position: relative;
}
@media (max-width: 991.98px) {
  .section-comingsoon {
    padding-bottom: 150px;
  }
}

p {
  color: #6A7282;
}

.portal-placeholder {
  max-width: 672px;
  margin: auto;
  padding-inline: 20px;
  display: block;
}
@media (min-width: 1400px) {
  .portal-placeholder h2 {
    font-size: 72px;
  }
}
.portal-placeholder p.small {
  font-size: 16px;
  color: #6A7282;
}

@media (min-width: 1200px) {
  .section-subtitle p {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.8);
  }
}
[dir=rtl] .section-subtitle p {
  font-weight: 300;
}

.icon-bell {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/bell.svg");
  mask-image: url("../images/bell.svg");
  transform-origin: center top;
}
.btn .icon-bell {
  margin-inline-end: 8px !important;
}

.subscription-form {
  max-width: 576px;
  margin: 0 auto;
}
.subscription-form p {
  font-size: 16px;
}
.subscription-form .btn-pill {
  font-size: 16px;
  align-items: center;
}
.subscription-form [type=email] {
  border-radius: 40px;
  padding-inline: 16px;
}
.subscription-form .btn-pill:hover .icon-bell {
  animation: bell-ring 0.8s both;
}

@keyframes bell-ring {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  85% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.label-anim {
  position: absolute;
  bottom: 4px;
  inset-inline-start: 0;
  transform: translateX(-212px);
  transition: all 0.7s ease-in-out;
}
.section-comingsoon:hover .label-anim {
  transform: translateX(0);
}
[dir=rtl] .label-anim {
  inset-inline-start: auto;
  right: 0;
  transform: translateX(212px);
}
.section-comingsoon:hover [dir=rtl] .label-anim {
  transform: translateX(0);
}
