@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/NOTO-SANS-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/NOTO-SANS-bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Rajdhani.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}
body {
    font-family: 'Noto Sans', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    font-size: 1rem;
    position: relative;
    height: auto;
    max-width: 100%;
    overflow-x: hidden;
    min-width: 300px;
    background-color: #000;
}
body * {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
h1, h2, h3, h4, form button, .button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
h1, h2 {
    font-size: 3rem;
}
h3 {
    font-size: 1.7rem;
    margin: 1.5em 0 0.5em;
}
h4 {
    font-size: 1.3rem;
}
p.col {
    -webkit-columns: 400px;
    -moz-columns: 400px;
    columns: 400px;
    column-count: auto;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 60px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    column-fill: balance;
}
a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}
.center *:not(h1):not(h2) {
    text-align: center;
}
.fade {
    opacity: 0;
    transform: translateY(3vw);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in-out;
}
.fade.fadein {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in 0.2s, transform 0.5s ease-in-out 0.2s;
}
header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 60px;
    height: 30vh;
    position: relative;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    filter: drop-shadow(0 0 10px #000);
}
header.sticked {
    min-height: 0px;
    height: 30px;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0;
    animation: fromtop 1s ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes fromtop {
    0% {top:calc(-50px - 5vw);opacity:0;}
    100% {top:0px;opacity:1;}
}
header:after {
    content: "";
    position: absolute;
    left: auto;
    right: auto;
    bottom: calc(-5vw + 1px);
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-bottom: 0vw solid transparent;
    border-top: 5vw solid #fff;
    z-index: -1;
}
a.logo {
    position: absolute;
    bottom: calc(20% - 2.5vw);
    left: auto;
    right: auto;
    height: 75%;
    transition: all 1s ease-in-out;
}
a.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
.sticked a.logo {
    height: calc(20px + 5vw);
    top: 0;
}

.content {
    position: relative;
    padding: calc(5vw + 40px) 0 40px;
    filter: drop-shadow(0 0 10px #000);
    display: flex;
    justify-content: center;
}
.content:after {
    content: "";
    position: absolute;
    left: auto;
    right: auto;
    bottom: calc(-5vw + 1px);
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-bottom: 0vw solid transparent;
}
.content .contentbox {
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
}
.content:nth-of-type(odd) {
    background-color: #000;
}
.content:nth-of-type(odd):after {
    border-top: 5vw solid #000;
}
.content:nth-of-type(odd) .contentbox {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
    color: #fff;
}
.content:nth-of-type(even) {
    background-color: #fff;
}
.content:nth-of-type(even):after {
    border-top: 5vw solid #fff;
}
.content:nth-of-type(even) .contentbox {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
    color: #000;
}
.content:nth-of-type(1) {
    min-height: 20vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 51%,rgba(0,0,0,1) 100%), url(../images/bg_reg.jpg), #000;
    background-position: center top;
    background-size: contain;
    background-repeat: repeat-x;
    padding-top: calc(5vw + 40px);
    z-index: 90;
}
.content:nth-of-type(2) {
    z-index: 80;
}
.content:nth-of-type(3) {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 51%,rgba(0,0,0,1) 100%), url(../images/bg_reg.jpg), #000;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 70;
}
.content:nth-of-type(4) {
    z-index: 60;
}
.content.title {
    min-height: 70vh;
    background: url(../images/bg_trueagents.jpg), #000;
    background-position: center top;
    background-size: contain;
    background-repeat: repeat-x;
    padding-top: calc(5vw + 340px);
}
.content ul {
    list-style: circle;
    padding-left: 1rem;
}
.flex {
    display: flex;
    margin: -20px;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}
.flex > *:not(.flex) {
    margin: 20px;
}
.flex > .flex {
    margin: 0;
}
.flex > .quart {
    flex: 1 1 200px;
}
.flex > .half {
    flex: 1 1 400px;
}
.flex > .threequart {
    flex: 3 1 600px;
}
.flex > .full {
    flex: 1 1 100%;
}
.flex > .flex {
    margin: 0;
}
form * {
    border: none;
    box-shadow: none;
}
form input,form textarea {
    font-family: inherit;
    font-size: 1rem;
    resize: none;
    padding: 10px;
    min-width: 0;
}
button, .button {
    padding: 20px;
    color: #fff;
    background-color: #000;
    transition: background-color 0.5s ease-in;
    cursor: pointer;
    font-size: 1.3rem;
}
form button:hover, .button:hover {
    background-color: #444;
}
input[type='checkbox'],
input[type='radio'] {
  width:auto;
  float:left;
  margin-right: .75em;
  background:transparent;
  border:none;
  position: absolute;
}
input[type='checkbox']:checked,
input[type='checkbox']:not(:checked),
input[type='radio']:checked,
input[type='radio']:not(:checked) {
  background: transparent;
  visibility: hidden;
  margin:0;
  padding:0;
}

input[type='checkbox'] + label,
input[type='radio'] + label {
    cursor: pointer;
    text-indent: -21px;
    padding-left: 20px;
    display: block !important;
}

input[type='checkbox']:checked + label::before,
input[type='checkbox']:not(:checked) + label::before,
input[type='radio']:checked + label::before,
input[type='radio']:not(:checked) + label::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height:17px;
    border-radius: 50%;
    position: relative;
    top:-5px;
    background-color: #999;
    background-image: url(../images/check.svg);
    margin-right: 2px;
    background-size: 0%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease-in;
    text-align: center;
    font-size: 2rem;
    line-height: 0.5em;
    text-indent: 0px;
}

input[type=radio]:checked + label::before,
input[type=radio]:not(:checked) + label::before {
  border-radius: 50%;
}

input[type='checkbox']:hover  + label::before,
input[type='radio']:hover  + label::before {
    background-color: #000;
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease-in;
}

input[type='checkbox']:checked  + label::before,
input[type='radio']:checked  + label::before {
    background-color: #444;
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}
*.error {
    color: #a30000;
}
footer {
    color: #fff;
    padding-top: calc(5vw + 0px);
    background-color: #000;
    text-align: center;
}
footer p {
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
}

@media (max-width:450px){
html {
    font-size: 14px;
}
h1, h2 {
    font-size: 1.8rem;
}
h3 {
    font-size: 1.1rem;
    hyphens: auto;
}
h4 {
    font-size: 1rem;
}
.content .contentbox {
    width: 95%;
    padding: 20px;
}
.content.title {
    padding-top: calc(5vw + 60px);
}
}