/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
.alert-block {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  top: 200px;
  transition-duration: 2s;
}
.alert-block.is-inview {
  top: 0;
}
.alert-block .wrapper {
  padding: clamp(50px, 6.25vw + 1px, 100px) clamp(25px, 6.25vw + 1px, 100px);
  background: var(--pale-600);
  padding-top: 6.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .alert-block .wrapper {
    padding: 3.125rem clamp(25px, 6.25vw + 1px, 100px);
  }
}
.alert-block .wrapper::before {
  content: "";
  width: 6.25rem;
  height: 0.3125rem;
  background: var(--blue-300);
  position: absolute;
  left: 0;
  bottom: 100%;
  transition-duration: 2s;
}
.alert-block .wrapper:hover::before {
  width: 100%;
}
.alert-block .title-wrapper {
  margin-bottom: 5.625rem;
}
@media (max-width: 767px) {
  .alert-block .title-wrapper {
    margin-bottom: 1.5625rem;
  }
}
.alert-block .title-wrapper .title {
  font-size: clamp(36px, 3.75vw + 1px, 60px);
  line-height: 0.65;
  font-weight: 300;
  font-family: var(--font-family-cormorant);
  color: var(--blue-800);
  position: relative;
}
.alert-block .title-wrapper .title::after {
  content: "";
  position: absolute;
  background: var(--blue-300);
  height: 1px;
  width: 0;
  left: -100vw;
  bottom: 0;
  transition-duration: 3s;
}
.alert-block .title-wrapper .title.show::after {
  width: 200vw;
}
.alert-block .description-wrapper {
  font-family: var(--font-family-lato);
  font-weight: 300;
  font-size: 1.3125rem;
  line-height: 1.53;
  color: var(--blue-800);
  min-width: 42%;
  max-width: 29.25rem;
}
@media (max-width: 767px) {
  .alert-block .description-wrapper {
    font-size: 1rem;
  }
}
.alert-block .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.alert-block .bottom .text {
  font-family: var(--font-family-lato);
  font-weight: 600;
  font-size: 1.3125rem;
  color: var(--blue-800);
  margin-top: 0.9375rem;
}
@media (max-width: 767px) {
  .alert-block .bottom .text {
    font-size: 1rem;
  }
}
.alert-block .bottom .button {
  margin-top: 0.9375rem;
}
.alert-block .watermark {
  position: absolute;
  transform-origin: center;
  transform: translate(38%, -55%);
  right: 0;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.alert-block .watermark svg {
  width: clamp(50px, 23.44vw + 1px, 325px);
  height: auto;
}
.alert-block:nth-child(2) .container {
  margin-bottom: 10.8125rem;
}
@media (max-width: 767px) {
  .alert-block:nth-child(2) .container {
    margin-bottom: 3.125rem;
  }
}
.alert-block:nth-child(2) .wrapper {
  margin-top: -8.625rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .alert-block:nth-child(2) .wrapper {
    margin-top: -4.9375rem;
  }
}
