.header-banner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    padding: 32px 0;
}

.header-banner-description {
    color: var(--color-canvas-text);
    font-family: 'Poppins';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 48px;
    text-align: center;
}

.header-banner-title {
    color: var(--color-canvas-text);
    font-family: 'Poppins';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    leading-trim: both;
    line-height: 100%;
    margin: 24px 0;
    text-align: center;
    text-edge: cap;
}

.header-bottom {
    margin-top: -32px;
    position: relative;
    z-index: 15;
}

.header-bottom.fixed {
    background-color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    left: 0;
    margin-top: 0;
    position: fixed;
    top: calc(var(--header-top-height, 50px));
    width: 100%;
}

.header-logo {
    border-right: 1px solid var(--color-grey-border);
    margin: 0;
    padding: 10px 20px;
}

.header-middle {
    background-color: var(--color-light-blue);
    margin-top: 105px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.header-middle::before,
.header-middle::after {
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 250px;
    pointer-events: none;
    position: absolute;
    width: 250px;
    z-index: 0;
}

.header-middle::before {
    left: 0;
    background-image: url('../../../img/svg/ellipse_left.svg');
}

.header-middle::after {
    right: 0;
    background-image: url('../../../img/svg/ellipse_right.svg');
}

.header-middle .container {
    position: relative;
    z-index: 1;
}

.header-placeholder {
    display: none;
    height: auto;
}

.header-top {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-grey-border);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

.header-top-content {
    align-items: center;
    display: flex;
    justify-content: left;
}

.header-top-content .header-login > a {
    align-items: center;
    color: var(--color-brand-blue);
    display: flex;
    flex-direction: column;
    font-family: "IBM Plex Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    gap: 4px;
    height: 100%;
    justify-items: center;
    line-height: 22px;
    padding: 0;
    width: 100px;
}

.header-top-content .header-login > a img {
    display: block;
    height: 24px;
    margin-bottom: 0;
    width: 24px;
}

.header-top-content .header-menus {
    margin: 0;
    padding: 10px 20px;
    width: 100%;
}

.site-header {
    position: relative;
    z-index: 10;
}

.site-header .header-top .container {
    position: relative;
}

/* Media Queries */
@media (max-width: 1200px) {
    .header-banner {
        align-items: flex-start;
        height: 200px;
    }

    .header-banner-description {
        font-size: 16px;
        text-align: left;
    }

    .header-banner-title {
        font-size: 30px;
        text-align: left;
    }

    .header-bottom.fixed {
        top: 60px;
    }

    .header-middle::before {
        background-image: none;
    }   

    .header-middle::after {
        height: 100px;
        top: 0;
        transform: rotate(-90deg);
        width: 100px;
    }

    .header-top {
        height: 60px;
    }
}