.o-hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
}

.o-hero__background, 
.o-hero__content {
    grid-column: 1 / -1;
    grid-row: 1;
}

.o-hero__content {
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: white;
}

.o-hero__background {
    position: relative;
    z-index: 1;
    max-height: calc(100vh - 150px);
}

.o-hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, .4);
}

.o-hero__background-image {
    max-height: calc(100vh - 150px);
}

.o-hero__heading {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    font-size: 26px;
}

.o-hero__subheading {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    margin: 0;
    font-size: 65px;
}
