:host {
    display: block;
    --background-img: '';
}

aside {
    transform: translateX(-100%);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    z-index: 1050;
    background-color: var(--color-primary);
    background-image: var(--background-img);
    background-size: cover;
    background-blend-mode: multiply;
    transition: all ease 0.3s;
    max-width: 100%;
}

.content-wrapper {
    padding: 3rem 1.5rem 1.5rem;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    width: 350px;
    max-width: 100%;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    outline: 0;
    color: black;
    cursor: pointer;
    fill: black;
}
.close-button svg {
    color: var(--color-dark-grey);
    cursor: pointer;
    fill: var(--color-dark-grey);
    width: 30px;
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 0.5;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 110px;
    cursor: pointer;
}

h1 {
    font-family: var(--font-family-secondary);
    font-size: 4rem;
    line-height: 0.8;
    font-weight: 400;
    color: white;
    margin: 0 0 1rem;
}
.intro {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.benefits .benefit {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
    color: white;
    font-size: 0.875em;
}

.benefits .benefit p {
    margin: 0;
}

.benefits .benefit img {
    width: 45px;
    height: auto;
    padding-right: 10px;
}

.footer {
    font-size: 0.75rem;
}

.logos {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.logos img {
    height: auto;
    max-width: 100%;
}

.logos .partner-logos {
    width: 175px;
}

.london {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0;
    pointer-events: none;
}

.backdrop.show {
    opacity: 0.5;
    pointer-events: initial;
}

aside.active {
    transform: translateX(0);
}

@media screen and (min-width: 1200px) {
    aside {
        transform: translateX(0);
    }

    .close-button {
        display: none;
    }
}
