<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header {
    background-image: url(/client-lp/assets/img/cover-1279-ro.png);
    height: 960px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
}

@media (min-width: 1280px) {
    .header {
        background-image: url(/client-lp/assets/img/cover-1280-ro.png);
        height: 640px;
    }
}

@media (min-width: 1440px) {
    .header {
        background-image: url(/client-lp/assets/img/cover-1920-ro.png);
    }
}

@media (max-width: 759px) {
    .header {
        background-image: url(/client-lp/assets/img/cover-759-ro.png);
        height: 640px;
    }
}

@media (max-width: 479px) {
    .header {
        height: 780px;
    }
}

@media (max-width: 399px) {
    .header {
        height: 880px;
    }
}

.header-overlay {
    background-image: linear-gradient(0deg, rgba(255,255,255,0.00) 2%, rgba(0,0,0,0.42) 74%, rgba(0,0,0,0.42) 74%);
    width: 100%;
    height: 100%;
}

@media (min-width: 1280px) {
    .header-overlay {
        background-image: linear-gradient(270deg, rgba(255,255,255,0.00) 0%, rgba(0,0,0,0.42) 77%);
    }
}

.header-text {
    width: 100%;
    max-width: 488px;
    color: white;
    margin-top: 40px;
    margin-left: 100px;
}

@media (min-width: 1280px) {
    .header-text {
        width: 42%;
        max-width: 100%;
        margin-top: 120px;
        margin-left: 0;
    }
}

@media (max-width: 759px) {
    .header-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.header-text h1 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
    color: white;
}

.header-text p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 42px;
}

@media (max-width: 759px) {
    .header-text h1 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .header-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

.header-buttons {
    display: flex;
}

.header-button-contact,
.header-button-quote {
    border-radius: 3px;
    padding: 12px 42px;
}

.header-button-contact {
    background: var(--blue);
    border: 1px solid var(--blue);
    margin-right: 30px;
}

.header-button-quote {
    border: 1px solid white;
    background: transparent;
}


@media (max-width: 479px) {
    .header-buttons {
        flex-direction: column;
    }

    .header-button-contact {
        margin-right: 0;
        margin-bottom: 10px;
    }

}
</pre></body></html>