.hero {
    width: 100%;
    position: relative;
    max-height: 60vh;
    overflow: hidden
}

.hero-title {
    line-height: 58px;
    font-size: 3.8em;
    width: 60vh;
    padding-top: 20vh;
    text-transform: uppercase;
    font-weight: bold;
    color: lightgrey;

}
.hero-sub-titile{
     line-height: 30px;
    font-size: 1.6em;
    max-width: 60vh;
    padding-left: 8px;
    padding-top: 10px;
    color: var(--parchment);
}

.hero-image {
    background-image:linear-gradient(340deg, rgba(246, 243, 243, 0), rgb(0, 0, 0)), url('/static/images/hero1-5.webp');
    min-height: 60vh;
    background-position: right;
    background-repeat:  no-repeat;
    background-size: cover;
    position: relative;
    animation: shrink 10s ease;
    animation-fill-mode: forwards;
}

@keyframes shrink {
    0% {
        -webkit-transform-origin: bottom left;
        -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        -o-transform-origin: bottom left;
        transform-origin: bottom left;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        -webkit-transform: scale(1.0);
        -o-transform: scale(1.0);
        -moz-transform: scale(1.0);
    }
    100% {
        transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -moz-transform: scale(1.1);
    }
}

@media (max-width: 600px) {
    .hero {
        width: 100%;
        max-height: 80vh;
        position: relative;
    }

    .hero-title {
        font-size: 3.3em;
        width: 100%;
        padding-top: 25vh ;

    }

    .hero-image {
        background-image: linear-gradient(340deg, rgba(246, 243, 243, 0), rgb(0, 0, 0)), url('/static/images/hero1-4.webp');
        min-height: 80vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        color: #d3d3d3;
        animation: shrink 10s ease;
        animation-fill-mode: forwards;
    }

}