#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-banner-information-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(2, 12, 72, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
    opacity: 0
}

.hero-banner__homepage .hero-banner-information-wrapper {
    height: 680px;
    justify-content: flex-start;
    align-items: flex-end
}

@media screen and (max-width: 990px) {
    .hero-banner__homepage .hero-banner-information-wrapper {
        height:400px
    }
}

@media screen and (max-width: 780px) {
    .hero-banner__homepage .hero-banner-information-wrapper {
        height:320px
    }
}

@media screen and (max-width: 600px) {
    .hero-banner__homepage .hero-banner-information-wrapper {
        height:240px
    }
}

.hero-banner__homepage .hero-banner-information-wrapper::before {
    background: linear-gradient(0deg, rgba(2, 12, 72, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    transition: opacity 1.5s ease-in-out;
    opacity: 0
}

.hero-banner__homepage .hero-banner-information-wrapper.finished::before {
    opacity: 1
}

.hero-banner__homepage .hero-banner__container {
    width: 100%;
    bottom: 50px
}

@media screen and (max-width: 780px) {
    .hero-banner__homepage .hero-banner__container {
        bottom:20px
    }
}

.hero-banner__homepage .hero-banner-title {
    align-items: flex-start;
    text-align: left
}

.hero-banner__homepage .hero-banner-title img {
    width: 60%;
    margin: 0 0 16px 0
}

@media screen and (max-width: 780px) {
    .hero-banner__homepage .hero-banner-title img {
        width:75%;
        margin: 0 0 8px 0
    }
}

.hero-banner__homepage .hero-banner-title .hero-banner-description {
    font-size: clamp(3.2rem,5vw,4.8rem);
    font-weight: 500;
    margin: 0 0 16px 0;
    line-height: 100%;
    font-family: "Sofia Sans Extra Condensed";
    letter-spacing: 5%
}

@media screen and (max-width: 780px) {
    .hero-banner__homepage .hero-banner-title .hero-banner-description {
        margin:0 0 8px 0;
        font-size: clamp(2.8rem,4vw,3.6rem)
    }
}

.hero-banner__homepage .exhibition-buttons {
    justify-content: flex-start;
    margin: 0
}

.hero-banner__homepage .exhibition-buttons p a {
    padding: 12px 16px;
    border-radius: 8px;
    color: #232b37
}

.hero-banner-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.hero-banner-title>h1 {
    font-family: "Sofia Sans Extra Condensed";
    font-size: clamp(2.8rem,4vw,3.6rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #41526c;
    line-height: 100%;
    font-size: clamp(4.8rem,8vw,9.6rem);
    line-height: 100%;
    font-weight: 600;
    background: linear-gradient(to bottom, #f8faff, rgba(231, 232, 237, 0.7254901961));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0);
    color: #fff
}

.hero-banner-title img {
    width: 100%;
    height: 100%
}

.exhibition-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px
}

.exhibition-buttons p a {
    display: inline-block;
    min-width: 125px;
    text-align: center;
    transition: all .5s ease;
    background: #f8fafd;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 18px;
    letter-spacing: 1%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #0054a6;
    min-height: 40px;
    align-content: center
}

.exhibition-buttons p a:hover {
    background: hsla(0,0%,100%,.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.hero-banner-description {
    margin-top: 30px;
    line-height: 150%;
    text-align: center;
    max-width: 700px;
    color: #f8fafd;
    font-weight: 400;
    letter-spacing: -1%
}

.hero-banner-description strong {
    font-weight: 400
}

.hero-banner-information-wrapper {
    position: relative;
    height: calc(100vh - 143px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1)
}

@media screen and (max-width: 600px) {
    .hero-banner-information-wrapper {
        height:calc(100vh - 134px)
    }
}

@keyframes zoomBackground {
    0% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

.hero-banner__container {
    position: relative;
    z-index: 2;
    color: #fff;
    opacity: 1
}

@keyframes fadeInText {
    to {
        opacity: 1
    }
}