#jumbotron {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 465px;
    max-width: 1920px;
    text-align: center;
    background: url("") no-repeat center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
#jumbotron img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}
#jumbotron::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    background-color: var(--primary);
    opacity: 0.3;
    z-index: 2;
}
#jumbotron h1 {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 70px;
    z-index: 2;
}
#jumbotron h1 span:first-child {
    font-weight: 400;
    font-size: 60px;
}
#jumbotron .ornament {
    display: flex;
    flex-direction: column;
    position: absolute;
    rotate: 115deg;
    left: 50%;
    translate: -50%;
    top: 0px;
}
#jumbotron .ornament .blue50 {
    background-color: var(--primary);
    width: 1000px;
    height: 50px;
    opacity: 0.5;
}
#jumbotron .ornament .blue75 {
    background-color: var(--primary);
    width: 1000px;
    height: 500px;
    opacity: 0.75;
}
@media (max-width: 1024px) {
    #jumbotron {
        min-height: 325px;
    }
    #jumbotron::before {
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: inherit;
        background-color: #012169;
        opacity: 0.5;
        z-index: 1;
    }
    #jumbotron .ornament {
        left: 47%;
    }
    #jumbotron .ornament .blue50 {
        height: 40px;
    }
    #jumbotron .ornament .blue75 {
        height: 400px;
    }
}
@media (max-width: 765px) {
    #jumbotron h1 {
        font-size: 60px;
    }
    #jumbotron h1 span:first-child {
        font-size: 50px;
    }
    #jumbotron .ornament {
        display: none;
    }
    #jumbotron::before {
        opacity: 0.8;
    }
}
@media (max-width: 500px) {
    #jumbotron h1 {
        font-size: 45px;
    }
    #jumbotron h1 span:first-child {
        font-size: 40px;
    }
}