<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow Semi Condensed", Helvetica, Arial, sans-serif;
    background: rgb(56, 194, 213);
    background: linear-gradient(-90deg, rgba(56, 194, 213, 1) 0%, rgba(0, 117, 202, 1) 100%);
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1124px;
    margin: 0 auto;
}

header {
    padding: 20px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .container img.logo {
    width: 120px;
}

@media only screen and (max-width: 760px) {
    header {
        padding: 20px;
    }

    header .container {
        flex-direction: column;
    }
}

/* .body */
section.body .container {

    padding: 20px 0 0 0;
    align-items: flex-start;

    max-width: 680px;
    background: rgb(9, 62, 101);
    background: linear-gradient(-141deg, #18759a 0%, #0f5a81 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    box-sizing: border-box;
}

section.body .container h1 {
    font-family: "Barlow Semi Condensed", Helvetica, Arial, sans-serif;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    color: #F3F8FB;
}

section.body .container span {
    font-family: "Barlow Semi Condensed", Helvetica, Arial, sans-serif;
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
    color: #F3F8FB;
    max-width: 80%;
    margin: 0 auto;
}

section.body .container .line {
    background-color: rgba(255, 255, 255, .15);
    width: 100%;
    height: 1px;
    margin: 40px 0 10px 0;
}

section.body .container .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    margin: 30px 0;
}

section.body .container .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.body .container .image-container {
    position: relative;
    margin: 30px 0;
}

section.body .container .image-container img {
    width: 100%;
    border-radius: 8px;
}

section.body .container .image-container .notification {
    position: absolute;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    bottom: 10px;
    left: 10px;
    padding: 10px;
    border-radius: 8px;
    gap: 20px;
}

section.body .container .image-container .notification svg {
    width: 25px;
    fill: #fff;
}

section.body .container .image-container .notification span {
    font-size: .82em;
    font-weight: 300;
    line-height: 1.4em;
    color: #fff;
}

section.body .container .image-container .notification span div {
    display: inline;
}

section.body .container .image-container .notification button {
    display: flex;
    gap: 5px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 5px;
    padding: 5px 10px 5px 5px;
    font-size: .8em;
    font-weight: 300;
    color: #fff;
    border: none;
    align-items: center;
    margin-left: 40px;
    cursor: pointer;
}

section.body .container .image-container .notification button:hover {
    background-color: rgba(255, 255, 255, .25);
}

section.body .container .image-container .notification button label {
    cursor: pointer;
}

section.body .container a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 8px;
    background: rgb(0, 193, 158);
    background: linear-gradient(-97deg, rgba(0, 193, 158, 1) 0%, rgba(0, 148, 168, 1) 43%);
    padding: 10px 20px;
    margin-top: 15px;
}

@media only screen and (max-width: 760px) {
    section.body {
        margin: 0 20px;
    }



    section.body .container h1 {
        margin-left: 20px;
        margin-right: 20px;
    }

    section.body .container span {
        text-align: left;
        max-width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }

    section.body .container a {
        margin-left: 20px;
        margin-right: 20px;
    }

    section.body .container .line {
        margin: 20px 0;
    }

    section.body .container .video-container,
    section.body .container .image-container {
        margin-top: 0;
        margin-bottom: 10px;
    }

    section.body .container .image-container .notification {
        padding: 10px 10px 10px 15px;
        padding: 10px;
        gap: 10px;
        left: 50%;
        transform: translateX(-50%);
        /* border-radius: 100px; */
        box-sizing: border-box;
        bottom: 0px;
    }

    section.body .container .image-container .notification span {
        white-space: nowrap;
    }

    section.body .container .image-container .notification .icon-1 {
        display: none;
    }

    section.body .container .image-container .notification button {
        margin-left: 0;
        padding: 7px;
        gap: 5px;
        /* border-radius: 100px; */
        white-space: nowrap;
    }

    section.body .container .image-container .notification button .icon-2 {
        width: 20px;
    }
}

/* footer */
footer {
    background-color: rgba(0, 0, 0, .25);
    padding: 40px 0;
    margin-top: 60px;
}

footer .container {
    display: flex;
    align-items: center;
}

footer .container img.logo {
    width: 120px;
    opacity: .8;
}

footer .container span {
    font-size: .8em;
    font-weight: 300;
    color: #ddd;
    justify-self: flex-end;
    flex-grow: 1;
    text-align: right;
}

@media only screen and (max-width: 760px) {
    footer {
        padding: 40px 0 20px 0;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        box-sizing: border-box;
        padding: 20px;
    }

    footer .container span {
        text-align: left;
    }
}

body.popup {
    overflow: hidden;
}

section.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 38, 55, .8);
    background-color: rgba(0, 0, 0, .4);
    backdrop-filter: blur(2px);
    z-index: 100000;
}

section.popup:not(.show) {
    display: none;
}

section.popup .popup-login {
    display: flex;
    flex-direction: column;
    padding: 60px;
    gap: 10px;
    background: linear-gradient(#0F2637, #0F2637) padding-box,
        linear-gradient(90deg, rgba(29, 87, 128, 1) 0%, rgba(52, 167, 182, 1) 100%) border-box;
    border: 2px solid transparent;
    max-width: 500px;
    border-radius: 20px;
    box-sizing: border-box;
}

section.popup .popup-login.confirm {
    display: none;
}

section.popup .popup-login h3 {
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

section.popup .popup-login form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

section.popup .popup-login form&gt;div.iti {
    flex-grow: 1;
    max-width: 100%;
}

section.popup .popup-login form&gt;div.iti input {
    width: 100%;
}

section.popup .popup-login input[type='text'],
section.popup .popup-login input[type='email'] {
    border: 1px solid #00DFB6;
    padding: 8px;
    border-radius: 6px;
    font-size: .9em;
    font-weight: 300;
    color: #000;
    background-color: #e6e8eb;
    padding-left: 45px;
}

section.popup .popup-login input[type='submit'] {
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: .9em;
    font-weight: 600;
    color: #fff;
    background: rgb(0, 148, 168);
    background: linear-gradient(97deg, rgba(0, 148, 168, 1) 0%, rgba(0, 223, 182, 1) 100%);
    cursor: pointer;
}

section.popup .popup-login span {
    text-align: center;
    font-size: .7em;
    font-style: italic;
    font-weight: 300;
    color: #666;
}

section.popup .popup-login span a {
    text-decoration: underline;
    color: #666;
}

@media (min-width: 767px) {

    section.body .container h1 {
        margin-bottom: 14px;
    }

    section.body .container {
        padding: 40px;

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