.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(246, 244, 240, 1) 60%,
        rgba(246, 244, 240, 1) 100%
    );
    width: 100%;
    height: 100%;
    padding: 0px 40px;
}

.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-radius: 300px;
    border: 1px solid;
    border-color: var(--wit-100);
    box-shadow: 0px 4px 24px #00000008;
}

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

.desktop .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Assistant";
    font-weight: 600;
    color: var(--zwart);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28.8px;
    white-space: nowrap;
}

.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 .left-column {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.desktop .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.desktop .div {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Urbanist";
    font-weight: 600;
    color: var(--blauw);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 23.4px;
}

.desktop .text-wrapper-2 {
    position: relative;
    align-self: stretch;
    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);
    font-style: var(--desktop-headings-h1-font-style);
}

.desktop .p {
    position: relative;
    align-self: stretch;
    font-family: "Assistant";
    font-weight: 400;
    color: var(--zwart);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28.8px;
}

.desktop .text-wrapper-3 {
    position: relative;
    align-self: stretch;
    font-family: "Urbanist";
    font-weight: 600;
    font-style: italic;
    color: var(--zwart);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 25.2px;
}

.desktop .contact-buttons {
    display: inline-flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    flex: 0 0 auto;
    flex-wrap: wrap;
}

.desktop .e-mail-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    position: relative;
    flex: 0 0 auto;
    background-color: var(--blauw);
    border-radius: 300px;
}

.desktop .arroba {
    position: relative;
    width: 18px;
    height: 18px;
}

.desktop .layer {
    position: absolute;
    width: 17px;
    height: 17px;
    top: 1px;
    left: 1px;
}

.desktop .text-wrapper-4 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Assistant";
    font-weight: 600;
    color: var(--wit50-wit);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28.8px;
    white-space: nowrap;
}

.desktop .phone-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 300px;
    border: 1px solid;
    border-color: var(--blauw);
}

.desktop .telephone {
    position: relative;
    width: 17.93px;
    height: 18px;
    background-image: url(./img/group.png);
    background-size: 100% 100%;
}

.desktop .text-wrapper-5 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Assistant";
    font-weight: 600;
    color: var(--blauw);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28.8px;
    white-space: nowrap;
}

.desktop .right-column {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    height: 100%;
}

.desktop .img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 1400px) {
    .desktop .container {
        gap: 80px;
    }
}

@media only screen and (max-width: 1024px) {
    .desktop .container {
        flex-direction: column;
        gap: 40px;
        padding: 160px 0px 80px 0px;
    }
    .desktop .left-column {
        width: 100%;
    }
    .desktop .right-column {
        width: 100%;
    }
}

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

.e-mail-button:hover {
    background-color: #193552;
}

.phone-button:hover {
    border-color: #193552;
}

.byConversal {
    position: absolute;
    bottom: 20px;
}

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