<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;800&amp;display=swap');

html, body {
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0e0e0e;
    color: #fff;
    font-weight: 500;
    font-size: 33.5px;
    position: relative;
}

.content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    background-image: url(/images/content_bg.png);
    background-repeat: no-repeat;
}

.content-block {
    width: 95%;
    margin: 0 auto;
}

h1 {
    font-size: 128.63px;
    margin: 0;
    line-height: 1;
    width: 100%;
    font-weight: 800;
}

h1 span {
    color: #105bfa;
}

.company-services {
    width: 100%;
    margin-top: 15px;
}

.company-services span{
    color: #105bfa;
}


footer {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 60px;
    text-align: center;
    font-size: 18.6px;
    font-weight: 600;
}

footer a {
    color: #fff;
    cursor: pointer;
    transition: all ease 0.2s;
}

footer a:hover {
    color: #105bfa;
}

footer span {
    color: #105bfa;
    padding: 0 20px 0 20px;
}

@media (max-width: 800px) {

    .content-wrapper {
        background-image: url(/images/content_bg_mobile.png);
        background-size: cover;
    }

    body {
        font-size: 15px;
    }
    h1 {
        font-size: 50px;
    }

    footer {
        font-size: 14px;
        line-height: 1.5;
        bottom: 30px;
    }

    footer span:nth-child(4) {
        color: transparent;
        padding: 0;
    }


    footer span:nth-child(4):after {
        content:"\a";
        white-space: pre;

    }

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