/**
 * CE: Teaser
 */
.ce-teaser {
  height: 500px;
  color: #fff;
  background-color: var(--theme-primary);
  display: flex;
  align-items: center;
  background-position: 50% 50%;
  background-size: cover;
  text-align: center;
}

.ce-teaser h2 {
  font-size: 23px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  color: inherit !important;
  margin-top: 0 !important;
}

.ce-teaser header h2 + p {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #fff;
}

.ce-teaser a {
  text-decoration: none;
  color: #fff;
}

.ce-teaser .inner {
  width: 100%;
  height: 100%;
  transition: .2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ce-teaser:hover .inner {
  background-color: var(--theme-primary);
}

.ce-teaser .icon-wrapper {
  margin-bottom: 30px;
}

.ce-teaser .icon-wrapper img {
  margin: 0 auto;
}

.ce-teaser.half-sized {
  height: 235px;
}

.frame-type-flux_teaser + .frame-type-flux_teaser {
  margin-top: 30px !important;
}

.ce-teaser .animation-wrapper::before {

}

.ce-teaser .circle {
  border-color: #fff;
  border-radius: 50%;
  border-style: solid;
  border-width: 4px;
  box-sizing: border-box;
  height: 64px;
  position: relative;
  width: 64px;
  margin: auto;
}

.ce-teaser .circle::before {
  content: '';
  border-color: #fff;
  border-radius: 50%;
  border-style: solid;
  border-width: 4px;
  box-sizing: border-box;
  height: 64px;
  position: relative;
  width: 64px;
}

.ce-teaser:hover .circle {
  animation: rotating 2s linear infinite;
  border-color: #001c33;
}

.ce-teaser .circle::before {
  -webkit-clip-path: inset(0 0 32px 0);
  clip-path: inset(0 0 32px 0);
  left: -4px;
  position: absolute;
  top: -4px;
}

.ce-teaser .circle::before {
  border-color: #fff;
}

.ce-teaser .circle-wrapper {
  margin-top: -64px;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
