:root{
    --content-width:1000px;
    --font-1:'Roboto', Helvetica, Arial, sans-serif;
    --font-2:'Poppins', Helvetica, Arial, sans-serif;
    --font-size:16px;
    --color-1:#333;
    --color-2:#27509b;
    --color-3:#00D68D;
    --color-4:#000000;
    --bg-1:#fff;
    --bg-2:#f5f5f5;
    --bg-3:#265FF1;
    --bg-4:#b2b2b2;
    --bg-5:#fce500;
    --br:6px;
    --shadow-1:0 11px 30px rgb(163 171 204 / 20%);
    --gap:35px;
}

/* NORMALIZE */
*{box-sizing:border-box;}
html {line-height: 1.15;-webkit-text-size-adjust: 100%;}body {margin: 0;}main {display: block;}h1 {font-size: 2em;margin: 0.67em 0;}hr {box-sizing: content-box;height: 0;overflow: visible;}pre {font-family: monospace, monospace;font-size: 1em;}a {background-color: transparent;}abbr[title] {border-bottom: none;text-decoration: underline;text-decoration: underline dotted;}b, strong {font-weight: bolder;}code, kbd, samp {font-family: monospace, monospace;font-size: 1em;}small {font-size: 80%;}sub, sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sub {bottom: -0.25em;}sup {top: -0.5em;}img {border-style: none;}button, input, optgroup, select, textarea {font-family: inherit;font-size: 100%;line-height: 1.15;margin: 0;}button, input {overflow: visible;}button, select {text-transform: none;}button, [type="button"], [type="reset"], [type="submit"] {-webkit-appearance: button;}button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}fieldset {padding: 0.35em 0.75em 0.625em;}legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}progress {vertical-align: baseline;}textarea {overflow: auto;}[type="checkbox"], [type="radio"] {box-sizing: border-box;padding: 0;}[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {height: auto;}[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}details {display: block;}summary {display: list-item;}template {display: none;}[hidden] {display: none;}
html, body{
    overflow-x:hidden;
}
body{
    color:var(--color-1);
    font-family:var(--font-1);
    font-size:var(--font-size);
    line-height:1.7em;
}
:is(h1, h2, h3, h4, h5){
    line-height:1.2em;
}
h1{
    font-size:2.4em;
}
h2{
    font-size:2.2em;
    margin-bottom:0.8em;
    margin-top:1em;
}
h3{
    font-size:1.6em;
    margin-bottom:0.6em;
    margin-top:1em;
}
h4{
    font-size:1.2em;
    margin-bottom:0.6em;
    margin-top:1em;
}
p:not(:last-child){
    margin-bottom:1.6em;
}
img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
img, figure{
    user-select:none;
}
img[data-src] {
    opacity: 0;
    transition: opacity .25s ease-in-out;
    will-change: opacity;
}
img[data-src][src] {
    opacity: 1;
}
input:not(:is([type=submit], [type=radio], [type=checkbox])), input:not(:is([type=submit], [type=radio], [type=checkbox])):-webkit-autofill{
    box-shadow:0 0 0 1000px #fff inset;
    background-color:#fff;
    border:1px solid var(--bg-4);
    border-radius:var(--br);
    padding:14px 20px;
    outline:0 !important;
    transition:all .2s ease-in-out;
}
input:not(:is([type=submit], [type=radio], [type=checkbox])):focus, input:not(:is([type=submit], [type=radio], [type=checkbox])):-webkit-autofill:focus{
    border-color:rgba(39, 88, 155, .5);
    box-shadow:0 0 0 1000px #fff inset, 0 0 0 4px rgba(39, 88, 155, .1);
}
select{
    background-color: #FFF;
    border: thin solid var(--bg-4);
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
    margin: 0;      
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:linear-gradient(45deg, transparent 50%, gray 50%),linear-gradient(135deg, gray 50%, transparent 50%),linear-gradient(to right, #ccc, #ccc);
    background-position:calc(100% - 20px) calc(1em + 2px),calc(100% - 15px) calc(1em + 2px),calc(100% - 2.5em) 0.5em;
    background-size:5px 5px,5px 5px,1px 1.5em;
    background-repeat: no-repeat;
    transition:all .2s;
}
select:focus{
    box-shadow:0 0 0 4px rgba(39, 88, 155, .1);
    background-image:linear-gradient(45deg, rgba(39, 88, 155, .5) 50%, transparent 50%),linear-gradient(135deg, transparent 50%, rgba(39, 88, 155, .5) 50%),linear-gradient(to right, #ccc, #ccc);
    background-position:calc(100% - 15px) 1em,calc(100% - 20px) 1em,calc(100% - 2.5em) 0.5em;
    background-size:5px 5px,5px 5px,1px 1.5em;
    background-repeat: no-repeat;
    border-color:rgba(39, 88, 155, .5);
    outline: 0;
}
select option:disabled{
    background-color:#f3f3f3;
}
:is(input, button)[type=submit]{
    background-color:#27509b;
    border:0;
    border-radius:var(--br);
    color:#fff;
    cursor:pointer;
    display: inline-block;
    padding:14px 20px;
    transition:all .2s;
}
:is(input, button)[type=submit]:hover{
    background-color:#3063c1;
}
:is(input, button)[type=submit]:active{
    background-color:#1a3567;
}
.full-width{
    width:100%;
}
.row{
    width:var(--content-width);
    max-width:calc(100vw - 60px);
    margin-left:auto;
    margin-right:auto;
}
.form{
    --form-gap:30px;
    display: flex;
    flex-wrap:wrap;
    gap:var(--form-gap);
}
.form-row{
    width:100%;
    display: block;
    position: relative;
}
.form-row > label{
    display: block;
    text-transform: uppercase;
    font-weight:500;
    font-size:13px;
    user-select:none;
}
.form-row > input:not(:is([type=submit], [type=radio], [type=checkbox])), .form-row :is(select,textarea){
    width:100%;
}
.form .col-50{
    width:calc(50% - var(--form-gap)*1/2);
}
.form .col-33{
    width:calc((100%/3) - var(--form-gap)*2/3);
}
.form .col-25{
    width:calc(25% - var(--form-gap)*3/4);
}