.desktop {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 160px;
    position: relative;
    background-color: rgba(255, 255, 255, 1.0);
    background: linear-gradient(
        101deg,
        rgba(253, 253, 253, 1) 0%,
        rgba(253, 253, 253, 1) 60%,
        rgba(244, 251, 249, 1) 60%,
        rgba(244, 251, 249, 1) 100%
    );  
    width: 100%;
    min-height: 100vh;
    height: 100%;
    padding: 0px 40px;
    overflow: hidden;
}

.desktop .container {
    display: flex;
    width: 100%;
    max-width: 1440px;
    align-items: center;
    /* justify-content: center; */
    gap: 160px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 100%;
    padding: 160px 0px;
}

.desktop .container::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -32%;
    width: 960px;
    height: 960px;
    background-image: url(/Assets/logo_grey.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.desktop .notification-banner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 16px;
    position: absolute;
    top: 20px;
    background-color: #fdfdfd3d;
    border: 1px solid;
    border-color: var(--wit-100);
    box-shadow: 0px 4px 24px #00000008;
}

.desktop .info-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.desktop .notification-banner-text {
    font-family: var(--desktop-headings-subtitle-font-family);
    font-weight: var(--desktop-headings-subtitle-font-weight);
    color: var(--zwart);
    font-size: 18px;
    letter-spacing: var(--desktop-headings-subtitle-letter-spacing);
    line-height: var(--desktop-headings-subtitle-line-height);
}

.desktop .left-column {
    display: flex;
    max-width: 640px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
}

.desktop .text-wrapper {
    display: flex;
    width: 100%;
     flex-direction: column;
     gap: 24px;
}

.desktop .title {
    position: relative;
    width: 100%;
    font-family: var(--desktop-headings-h1-font-family);
    font-weight: var(--desktop-headings-h1-font-weight);
    color: var(--zwart);
    font-size: var(--desktop-headings-h1-font-size);
    letter-spacing: var(--desktop-headings-h1-letter-spacing);
    line-height: var(--desktop-headings-h1-line-height);
}

.desktop .bodytext {
    position: relative;
    width: 100%;
    font-family: var(--desktop-text-regular-body-text-font-family);
    font-weight: var(--desktop-text-regular-body-text-font-weight);
    color: var(--zwart);
    font-size: var(--desktop-text-regular-body-text-font-size);
    letter-spacing: var(--desktop-text-regular-body-text-letter-spacing);
    line-height: var(--desktop-text-regular-body-text-line-height);
}

.desktop .e-mail-button {
    display: inline-flex;
    min-width: 160px;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    position: relative;
    background-color: var(--secundaire-kleur-groen900-primary);
}

.desktop .arroba-icon {
    width: 18px;
    height: 18px;
}

.desktop .button-text {
    font-family: var(--desktop-button-button-font-family);
    font-weight: var(--desktop-button-button-font-weight);
    color: var(--wit50-wit);
    font-size: var(--desktop-button-button-font-size);
    text-align: center;
    letter-spacing: var(--desktop-button-button-letter-spacing);
    line-height: var(--desktop-button-button-line-height);
    white-space: nowrap;
    font-style: var(--desktop-button-button-font-style);
}

/* .desktop .right-column {
    display: flex;
    width: 50%;
    max-height: 640px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    position: relative;
    background-color: var(--secundaire-kleur-groen900-primary);
    padding: 160px;
    box-shadow: 0px 4px 24px #00000008;
} */

.desktop .img {
    width: 100%;
    fill: var(--wit50-wit);
}

@media only screen and (max-width: 1400px) {
    .desktop .container {
        gap: 80px;
    }
    /* .desktop .right-column {
        padding: 120px;
    } */
}

@media only screen and (max-width: 1024px) {
    .desktop .container {
        flex-direction: column;
        gap: 40px;
        padding: 160px 0px 160px 0px;
    }
    .desktop .left-column {
        max-width: unset;
        width: 100%;
    }
    /* .desktop .right-column {
        width: 100%;
        align-items: center;
    } */
    .desktop .img {
        width: 75%;
    }
    .desktop .container::after {
    width: 640px;
    height: 640px;
    }
}

@media only screen and (max-width: 767px) {
    .desktop .left-column {
        gap: 24px;
    }
    .desktop {
        padding: 0px 16px;
    }
    .desktop .container::after {
    width: 320px;
    height: 320px;
    }
}

@media only screen and (max-width: 560px) {
    /* .desktop .right-column {
        padding: 64px;
    } */
    .desktop .img {
        width: 100%;
    }
}

.byConversal {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.byConversal a {
    position: relative;
    align-self: stretch;
    font-family: "Open Sans";
    font-weight: 400;
    color: var(--zwart);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 28.8px;
}