.header {
    width: 100%;
    height: 500px;
    min-height: 500px;
    position: relative;
}

@media (min-width: 768px) {
    .header {
        height: calc(100vh - 100px);
    }
}

@media (min-width: 992px) {
    .header {
        height: calc(100vh - 80px);
    }
}

.header .container,
.header .header-inner-frame {
    position: relative;
    z-index: 2;
    height: 100%;
}

.header .container .bubble-frame {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
    .header .container .bubble-frame {
        left: 50%;
        top: 15%;
        transform: unset;
    }
}

.header .container .bubble-frame p,
.header .container .bubble-frame svg {
    color: white;
    filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.5));
}

.header .container .bubble-frame svg {
    width: 250px;
    height: auto;
}

.header .container .bubble-frame p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 80%;
    font-size: 20px;
}


@media (min-width: 576px) {
    .header .container .bubble-frame svg {
        width: 300px;
    }
    .header .container .bubble-frame p {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .header .container .bubble-frame svg {
        width: 390px;
    }
    .header .container .bubble-frame p {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .header .container .bubble-frame svg {
        width: 510px;
    }
    .header .container .bubble-frame p {
        font-size: 40px;
    }
}

.header .container .bubble-frame p.alt {
    top: 43%;
}

.header .image-frame {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}