<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
body {
    font-family: 'Dosis', sans-serif;
}

/* ==== BASE STYLES ====*/

h1 {
    font-size: 2.813rem;
    font-weight: 600;
    line-height: 3.8rem;
}

h2 {
    font-size: 2.188rem;
    font-weight: 600;
    line-height: 2.9rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    color: #87A6C9;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-15 {
    border-radius: 15px;
}

.rounded-top-20 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.logo-main {
    margin-bottom: 50px;
}

@media only screen and (min-width: 1131px) {
    .logo-main {
        margin-bottom: 200px;
    }
}


/* CUSTOM TEXT SIZES */
.text-large {
    font-size: 1.875rem;
    font-weight: 700;
}

.text-medium {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 2.2rem;
}

.text-small-bold {
    font-size: 1.2rem;
    font-weight: 600;
}

.text-purple {
    color: #6500CE;
}


/* ==== CONTAINERS AND BOXES ====*/

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 29px 33px 0;
    font-weight: 400;
    font-size: 0.938rem;
    line-height: 1.3rem;
}

.box-purple {
    background: url(gradients/box-purple.png) no-repeat;
    background-size: cover;
}

.box-purple-contact {
    background: url(gradients/box-purple-contact.png) no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 1131px) {
    .box-purple-contact {
        background-position-x: -40px;
    }
}

.box-purple-platform {
    background: url(gradients/box-purple-platform.png) no-repeat;
    background-size: cover;
}

.box-green {
    background: url(gradients/box-green.png) -40px no-repeat;
    background-size: cover;
}

.box-green-contact {
    background: url(gradients/box-green-contact.png) no-repeat;
    background-size: cover;
}

.box-grey {
    background: #FAFAFF;
}

.box-border-grey {
    border-radius: 15px;
    border: solid 1px #DCE9F2;
}

.box-call-to-action {
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(164, 142, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* ==== VIDEOS ====*/

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==== BUTTONS ====*/

.btn-white {
    padding: 7px 24px 8px;
    background: #FFF;
    font-weight: 700;
    border-radius: 9999px;
    font-size: 0.938rem;
    display: inline-block;
}

.btn-white:hover,
.btn-white.selected {
    background: #000;
    color: #FFF;
    border-color: #000;
}

.btn-white:disabled {
    background-color: #e5e5e5;
    color: #a3a3a3;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-white-border {
    border: solid 1px #DCE9F2;
    padding: 7px 24px 8px;
    background: #FFF;
    font-weight: 500;
    border-radius: 9999px;
    font-size: 0.938rem;
    display: inline-block;
}

.btn-white-border:hover,
.btn-white-border.selected {
    background: #000;
    color: #FFF;
    border-color: #000;
}


.btn-black {
    border: solid 1px #000;
    color: #fff;
    padding: 7px 24px 8px;
    background: #000;
    font-weight: 500;
    border-radius: 9999px;
    font-size: 0.938rem;
    display: inline-block;
}

.btn-black:hover,
.btn-black.selected {
    background: #FFF;
    color: #000;
    border-color: #DCE9F2;
}
</pre></body></html>