.hero{
    height: 100vh;
    width: 100vw;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    /* background-color: #494949; */
}

.hero-flexbox{
    display: flex;
    flex-wrap: wrap;
    max-width: 95vw;
    max-height: 100%;

    /* border: 2px #92925b solid; */
}

/* LEFT */
.hero-1{
    width: 800px;
    flex-grow: 1;

    margin: 0px auto;
    max-height: 100%;
    flex-shrink: 1;

    /* background-color: lime; */
}

.hero-header{
    width: 100%;
    height: 1fr;
    container-type: inline-size;

    /* border: blue 1px dashed ; */
}
.hero-header h1{
    font-size: 13.5cqw;
}

.hero-images{
    aspect-ratio: 4/3;
    position: relative;

    /* border: red 5px dashed; */
}

.hero-images *{
    width: 100%;
    height: 100%;
    flex-shrink: 1;
    position: absolute;

    transition:
        transform .5s cubic-bezier(0,1,0,1)
}
.hidden-by-default *{
    transform: scale(0.85, 0.0);
    /* filter: opacity(50%); */
}

/* RIGHT */
.hero-2{
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-grow: 1;

    /* border: lime 1px dashed; */
}
.hero-links {
    font-size: 32px;
    direction: rtl;

    /* background-color: blue; */
}
.hero-links *{
    display: block;
    width: fit-content;
}