.wrapper {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.wrapper::after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #00000030;
}




.logo {
    width: 225px;
    /* height: 150px; */
    object-fit: fill;
}

.description {
    max-width: 650px;
    margin-right: 2rem;
}

.container {
    z-index: 2;
}

.linkWrapper {}

@media(max-width: 600px) {
    .container {
        flex-direction: column;
    }

    .logo {
        padding-bottom: 3rem;
    }

    .container .description {
        order: 2;
        margin: 0;
    }

    .linkWrapper {
        display: flex;
        justify-content: center;
    }
}