<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --- style basic typography -- */
/*Fonts

font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;

Fonts End*/
* {
    outline:none;
}

*:focus {
    outline:0;
}

* &gt; iframe{
    max-width: 100% !important;
}

*::selection {
    background-color: var(--special-color-1);
    color: var(--secondary-color);
}


html {
    font-size: 15px;
}

body{
    background: var(--secondary-color);
    color: var(--font-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

img {
    max-width:100%;
}

/* LINKS */
a {
    color: var(--special-color-1);
    -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}

a:hover,
a:focus{
    text-decoration: none;
    color: var(--special-color-1);
}

a:focus, .btn:focus{
    outline: none;
    border-width: 0;
}

a:focus{
    background-color: transparent;
    text-decoration: none;
}

/* hidden link for div in a tag */
a div {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* heading */
h1, .h1 {
    font-size:27px;
    line-height: 35px;
    color: var(--font-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 0 0 20px 0;
    text-align: center;
}

h2, .h2 {
    color: var(--font-color);
    margin-top: 0;
    line-height: 30px;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h3, .h3 {
    font-size: 22px;
    color: var(--font-color);
    font-family: 'Roboto', sans-serif;
}

h4, .h4{
    margin-top: 5px;
    color: var(--font-color);
    font-family: 'Roboto', sans-serif;
}

h5, .h5 {
    color: var(--font-color);
    font-family: 'Roboto', sans-serif;
}

h6 {
    color: var(--font-color);
    font-family: 'Roboto', sans-serif;

}

/* FORM elements */
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder{
    color: var(--secondary-color);
}

textarea{
    resize: vertical;
}

input[data-validation-id] {
    position:relative;
}

label {
    font-weight: 400;
}
</pre></body></html>