<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@font-face {
    font-display: swap; 
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v15-latin-regular.eot');
    src: url('../fonts/nunito-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'),
         url('../fonts/nunito-sans-v15-latin-regular.woff') format('woff'),
         url('../fonts/nunito-sans-v15-latin-regular.ttf') format('truetype'),
         url('../fonts/nunito-sans-v15-latin-regular.svg#NunitoSans') format('svg');
}

  @font-face {
    font-display: swap;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/nunito-sans-v15-latin-600.eot');
    src: url('../fonts/nunito-sans-v15-latin-600.eot?#iefix') format('embedded-opentype'),
         url('../fonts/nunito-sans-v15-latin-600.woff2') format('woff2'),
         url('../fonts/nunito-sans-v15-latin-600.woff') format('woff'), 
         url('../fonts/nunito-sans-v15-latin-600.ttf') format('truetype'),
         url('../fonts/nunito-sans-v15-latin-600.svg#NunitoSans') format('svg');
}

@font-face {
    font-display: swap; 
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/nunito-sans-v15-latin-900.eot'); 
    src: url('../fonts/nunito-sans-v15-latin-900.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/nunito-sans-v15-latin-900.woff2') format('woff2'), 
         url('../fonts/nunito-sans-v15-latin-900.woff') format('woff'), 
         url('../fonts/nunito-sans-v15-latin-900.ttf') format('truetype'),
         url('../fonts/nunito-sans-v15-latin-900.svg#NunitoSans') format('svg'); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #005e68;
    font: 400 1rem/1.4 'Nunito Sans', Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 59.375rem;
    margin: 1.5rem auto;
    background: #fff;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #8cd000;
    text-decoration: underline;
}

a.link:hover {
    transition: all 0.3s ease-in-out;
    color: #87bd27;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 2.687rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 2rem 0 1.5rem;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin: 2rem 0 2.5rem;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.2;
    color: #005e68;
    margin: 3rem 0 1rem;
}

h5 {
    font-size: 1rem;
    color: #8cd000;
    text-align: center;
}

p {
    margin: 1rem 0;
}

p span {
    color: #87bd27;
}

.margin {
    margin: 1.5rem 0;
}

ul {
    margin: 0 0 1.5rem 1.5rem;
}


.center {
    text-align: center;
}

header {
    display: flex;
    justify-content: center;
}

article {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

article section {
    width: 72%;
}

article aside {
    width: 28%;
    margin-top: -12rem;
}

.green-buttons {
    display: flex;
    gap: 1rem;
}

.green-buttons a.apply {
    font-size: .812rem;
    font-weight: 600;
    background: #87bd27;
    color: #fff;
    padding: .4rem 1.062rem 0.2rem;
    border-radius: 2.437rem;
    text-transform: uppercase;
}

.details {
    background: #005e68;
    padding: 1.5rem 1.5rem 2rem;
}

.details img {
    margin: 0 auto;
}

.items {
    margin: 2rem 0 0;
}

.items p {
    display: flex;
    color: #fff;
    margin: 0 0 .625rem;
}

.items p:hover {
    color: #f36;
    text-shadow: none;
    transition: color .2s ease-out;
}

.items i {
    margin-right: 0.5rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 50%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.button .btn {
    background: #87bd27;
    font-weight: 700;
    font-size: .937rem;
    color: #fff;
    padding: .7rem 1.562rem;
    width: 70%;
    text-align: center;
}

footer {
    width: 70%;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 62.5rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem   
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 56.25rem) {

    h1 {
        font-size: clamp(1.7rem, 1.0563rem + 2.7464vw, 2.687rem);
    }

    article {
        flex-direction: column;
        gap: 0;
    }

    article section,
    footer {
        width: 100%;
    }

    article aside {
        width: 100%;
        margin-top: 0;
    }

    .details .col-2 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

    .items {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 2rem;
    }

    .items p {
        margin: 0;
    }

    footer {
        padding: 1rem 0;
    }
}

@media only screen and (max-width: 40rem) {
    h3 {
        text-align: center;
        width: 100%;
        margin: 1rem 0;
    }

    h4 {
        margin: 1.25rem 0;
        text-align: center;
    }

    .items {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .col-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    ul {
        margin: 1rem 0 2rem 1.687rem;
    }
}

@media only screen and (max-width: 30rem) {

    .flex {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .flex p {
        text-align: center;
    }
}</pre></body></html>