.px-teaser-animated {
  container-type: inline-size;
}
.px-teaser-animated-inner {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner {
    flex-direction: column;
  }
}
.px-teaser-animated-inner .anim-teaser-single {
  flex: 0.212;
  max-height: 600px;
  border-radius: 25px;
  overflow: hidden;
  transition: flex 0.7s ease-in-out, border-radius 0.7s ease-in-out;
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single {
    flex: 1;
    border-radius: 0 25px 25px 25px;
    max-height: 100%;
  }
}
.px-teaser-animated-inner .anim-teaser-single:has(.item:focus-visible) {
  outline: var(--focusRingWidth, 3px) solid var(--focusRingColor, #0D2636);
  outline-offset: var(--focusRingOffset, 3px);
  box-shadow: 0 0 0 var(--focusRingHaloWidth, 3px) var(--focusRingContrast, #fff);
}
@supports selector(:has(*)) {
  .px-teaser-animated-inner .anim-teaser-single .item:focus-visible {
    outline: none !important;
    box-shadow: none;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  padding: 30px;
}
.px-teaser-animated-inner .anim-teaser-single .item[href] {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .px-teaser-animated-inner .anim-teaser-single .item {
    padding: 20px;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner .anim-teaser-single .item {
    padding: 0;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.high-contrast .px-teaser-animated-inner .anim-teaser-single .item::before {
  background: var(--hcOverlayDark, rgba(0, 0, 0, 0.8));
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single .item::before {
    border-radius: 0 25px 25px 25px;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  height: 100%;
  z-index: 1;
  border-radius: 25px;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}
.high-contrast .px-teaser-animated-inner .anim-teaser-single .item::after {
  background: var(--hcOverlayDark, rgba(0, 0, 0, 0.8));
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single .item::after {
    border-radius: 0 25px 25px 25px;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.px-teaser-animated-inner .anim-teaser-single .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.px-teaser-animated-inner .anim-teaser-single .item .service-title.hidden {
  position: absolute;
  right: 14px;
  bottom: 20px;
  padding: 20px 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  max-height: calc(100% - 50px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  opacity: 1;
  transition: opacity 0.45s ease-in-out;
  z-index: 2;
  backdrop-filter: blur(5px);
}
@media only screen and (max-width: 1200px) {
  .px-teaser-animated-inner .anim-teaser-single .item .service-title.hidden {
    bottom: 17px;
  }
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single .item .service-title.hidden {
    display: none;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item .service-title.hidden p {
  font-family: "Work Sans";
  font-size: clamp(1.3333333333rem, 1.2432432432rem + 0.5067567568vw, 1.6666666667rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--contrastColorInverted);
}
.px-teaser-animated-inner .anim-teaser-single .item .content {
  position: relative;
  z-index: 3;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 480px;
  padding: 25px;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.6s ease-in-out;
  margin-top: clamp(1.1111111111rem, 0.5105105105rem + 3.3783783784vw, 3.3333333333rem);
}
@media only screen and (min-width: 961px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content {
    box-sizing: content-box;
    width: 480px;
    max-width: none;
    padding: 40px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1024px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content {
    padding: 25px;
  }
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content {
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content {
    border-radius: 0;
    border-width: 0;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item .content .wp-block-heading,
.px-teaser-animated-inner .anim-teaser-single .item .content p {
  color: var(--contrastColorInverted);
}
.px-teaser-animated-inner .anim-teaser-single .item .content .wp-block-heading + p {
  margin-top: 15px;
}
.px-teaser-animated-inner .anim-teaser-single .item .content h3 {
  font-size: clamp(1.3333333333rem, 1.2432432432rem + 0.5067567568vw, 1.6666666667rem);
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item {
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  gap: clamp(0.6666666667rem, 0.5465465465rem + 0.6756756757vw, 1.1111111111rem);
  position: relative;
  z-index: 3;
  padding: 15px;
  margin-top: 25px;
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content .project-item {
    flex-direction: column;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-img {
  width: 110px;
  height: 110px;
}
@media only screen and (max-width: 1024px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-img {
    height: auto;
    align-self: stretch;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-img {
    width: 100%;
    height: 150px;
  }
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-content {
  flex: 1;
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-content p.project-title {
  font-weight: 700;
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-content p.project-details {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 400;
  margin-right: clamp(1.6666666667rem, 1.4414414414rem + 1.2668918919vw, 2.5rem);
}
.px-teaser-animated-inner .anim-teaser-single .item .content .project-item .project-content .btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 15px;
  bottom: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.px-teaser-animated-inner .anim-teaser-single:first-child {
  flex: 0.575;
  border-radius: 0 25px 25px 25px;
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single:first-child {
    flex: 1;
  }
}
.px-teaser-animated-inner .anim-teaser-single:first-child .item:before {
  opacity: 1;
  border-radius: 0 25px 25px 25px;
}
.px-teaser-animated-inner .anim-teaser-single:first-child .item::after {
  opacity: 0;
}
.px-teaser-animated-inner .anim-teaser-single:first-child .item .service-title.hidden {
  opacity: 0;
}
.px-teaser-animated-inner .anim-teaser-single:first-child .item .content {
  border-width: 1px;
  max-width: 480px;
  padding: 40px;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .px-teaser-animated-inner .anim-teaser-single:first-child .item .content {
    padding: 25px;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner .anim-teaser-single:first-child .item .content {
    border-width: 0;
  }
}
.px-teaser-animated-inner .anim-teaser-single:hover, .px-teaser-animated-inner .anim-teaser-single:focus-within {
  flex: 0.575;
  border-radius: 0 25px 25px 25px;
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single:hover, .px-teaser-animated-inner .anim-teaser-single:focus-within {
    flex: 1;
  }
}
.px-teaser-animated-inner .anim-teaser-single:hover .item::before, .px-teaser-animated-inner .anim-teaser-single:focus-within .item::before {
  border-radius: 0 25px 25px 25px;
  opacity: 1;
}
.px-teaser-animated-inner .anim-teaser-single:hover .item::after, .px-teaser-animated-inner .anim-teaser-single:focus-within .item::after {
  opacity: 0;
}
.px-teaser-animated-inner .anim-teaser-single:hover .item .service-title.hidden, .px-teaser-animated-inner .anim-teaser-single:focus-within .item .service-title.hidden {
  opacity: 0;
}
.px-teaser-animated-inner .anim-teaser-single:hover .item .content, .px-teaser-animated-inner .anim-teaser-single:focus-within .item .content {
  border-width: 1px;
  max-width: 480px;
  padding: 40px;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .px-teaser-animated-inner .anim-teaser-single:hover .item .content, .px-teaser-animated-inner .anim-teaser-single:focus-within .item .content {
    padding: 25px;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner .anim-teaser-single:hover .item .content, .px-teaser-animated-inner .anim-teaser-single:focus-within .item .content {
    border-width: 0;
  }
}
.px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single {
  flex: 1;
}
@media only screen and (max-width: 1500px) {
  .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single {
    flex: 0.18;
  }
}
@media only screen and (max-width: 1200px) {
  .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single {
    max-height: 700px;
  }
}
.px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:first-child, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:first-child {
  flex: 0 0 700px;
  border-radius: 0 25px 25px 25px;
}
@media only screen and (max-width: 1500px) {
  .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:first-child, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:first-child {
    flex: 0.7;
  }
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:first-child, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:first-child {
    flex: 1;
  }
}
.px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within {
  flex: 0 0 700px;
  border-radius: 0 25px 25px 25px;
}
@media only screen and (max-width: 1500px) {
  .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within {
    flex: 0.7;
  }
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within {
    flex: 1;
  }
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single {
  flex: 0.212;
  border-radius: 25px;
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single {
    flex: 1;
    border-radius: 0 25px 25px 25px;
  }
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single {
  flex: 1;
}
@media only screen and (max-width: 1500px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single {
    flex: 0.18;
  }
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single {
    flex: 1;
  }
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within {
  flex: 0 0 700px;
}
@media only screen and (max-width: 1500px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within {
    flex: 0.7;
  }
}
@media only screen and (max-width: 960px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child:hover, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:hover, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:nth-last-child(n+4):first-child ~ .anim-teaser-single:focus-within {
    flex: 1;
  }
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item::before, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item::before {
  border-radius: 25px;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item::before, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item::before {
    border-radius: 0 25px 25px 25px;
  }
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item::after, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item::after {
  opacity: 1;
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item .service-title.hidden, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item .service-title.hidden {
  opacity: 1;
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item .content, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item .content {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item .content, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item .content {
    opacity: 1;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single .item .content, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single .item .content {
    border-width: 0;
  }
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover,
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover,
.px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within {
  flex: 0.575;
  border-radius: 0 25px 25px 25px;
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover .item::before,
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within .item::before, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover .item::before,
.px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within .item::before {
  opacity: 1;
  border-radius: 0 25px 25px 25px;
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover .item::after,
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within .item::after, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover .item::after,
.px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within .item::after {
  opacity: 0;
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover .item .service-title.hidden,
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within .item .service-title.hidden, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover .item .service-title.hidden,
.px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within .item .service-title.hidden {
  opacity: 0;
}
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover .item .content,
.px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within .item .content, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover .item .content,
.px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within .item .content {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover .item .content,
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within .item .content, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover .item .content,
  .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within .item .content {
    padding: 25px;
  }
}
@media only screen and (max-width: 450px) {
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:hover .item .content,
  .px-teaser-animated-inner:has(.anim-teaser-single:hover) .anim-teaser-single:focus-within .item .content, .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:hover .item .content,
  .px-teaser-animated-inner:has(.anim-teaser-single:focus-within) .anim-teaser-single:focus-within .item .content {
    border-width: 0;
  }
}

.block-editor-button-block-appender {
  background-color: var(--contrastColorInverted, #fff);
}

.editor-styles-wrapper .px-teaser-animated-inner {
  flex-wrap: wrap;
}
.editor-styles-wrapper .px-teaser-animated-inner .wp-block-blockstudio-animated-teaser-single {
  flex: 400px;
}