@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.os-block-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--os-base);
    background: var(--wp--preset--gradient--charcoal-radial-gradient);
}
.os-section.os-block-hero {
    padding-top: var(--os-section-padding);
    padding-bottom: var(--os-section-padding);
    min-height: 40rem;
    position: relative;
    overflow: visible;   
}
.os-section.os-block-hero.compact {
    min-height: auto;
    margin-bottom: -48px;
}
.editor-styles-wrapper .os-section.os-block-hero {
    min-height: auto;
}
.os-block-hero.os-no-image .os-container .os-block-hero__content{
    grid-column: span 2;
    text-align: center;
    max-width: var(--wp--style--global--content-size);
    margin-left: auto;
    margin-right: auto;
}
.os-block-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.os-block-hero__content *:first-child {
    margin-top: 0;
}
.os-hero__buttons {
    margin-top: var(--os-space-m);
}
.os-block-hero h1.os-h1 {
    font-size: calc(var(--os-h1) * 1.2);
    color: white;
    margin: 0;
}
.os-block-hero p {
    font-size: var(--os-text-m);
    color: var(--os-white);
}
.os-block-hero__images-wrapper {
    position: relative;
    overflow: visible;
    width: 80%;
    float: right;
    z-index: 1;
}
.os-block-hero__image-1, .os-block-hero__image-2 {
    border-radius: var(--os-radius-l);
    max-width: 100%;
    box-shadow: var(--os-box-shadow-l);
    object-fit: cover;
}
.os-block-hero__image-1 {
    aspect-ratio: 6 / 4;
}
.os-block-hero__image-2 {
    position: absolute;
    left: -100px;
    bottom: -40%;
    width: 40%;
    height: auto;
    aspect-ratio: 1 / 1;
}
.os-block-hero__image-overlay {
    width: 70px;
    height: 70px;
    background-color: var(--os-accent-trans-60);
    border-radius: var(--os-radius-s);
    box-shadow: var(--os-box-shadow-l);
    position: absolute;
    right: 60px;
    bottom: -35px;
}
.os-block-hero__image-overlay:first-of-type {
    position: absolute;
    top: 60px;
    left: -35px;
}
.os-single-image .os-block-hero__images-wrapper {
    width: 90%;
}
.os-block-hero__image-1 {
    opacity: 0;
    animation: fade-in 1s ease-in-out 0.5s forwards;
    width: 100%;
    height: auto;
}
.os-block-hero.os-no-image .os-hero__buttons {
    justify-content: center;
}
@media screen and (max-width: 960px) {
    .os-block-hero__image-overlay {
        width: 60px;
        height: 60px;
        bottom: -30px;
        right: 30px;
    }
    .os-block-hero__image-overlay:first-of-type {
        top: 30px;
        left: -30px;
    }
}
.os-block-hero__image-overlay {
    opacity: 0;
    animation: fade-in 1s ease-in-out 0.8s forwards;
}
.os-block-hero__image-overlay:first-of-type {
    opacity: 0;
    animation: fade-in 1s ease-in-out 1.2s forwards;
}
.os-block-hero__image-2 {
    opacity: 0;
    animation: fade-in 1.5s ease-in-out 1.5s forwards;
}
@media screen and (max-width: 960px) {
    .os-single-image .os-block-hero__images-wrapper {
    width: 100%;
    }
}


