@charset "UTF-8";
:root {
  --s-1: 0.5em;
  --s0: 1em;
  --s1: 1.5em;
  --s2: 2em;
  --s3: 3em;
  --s4: 4em;
  scrollbar-width: none;
}
.site__icon-menu {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
  overscroll-behavior: none;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  object-fit: cover;
}
.site__inline-block {
  max-width: 100%;
  display: inline-block;
}
.site__form-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: #fff;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 10px;
}
h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 30px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
blockquote {
  margin: 0 0 10px;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}
figure {
  margin: 0 0 10px;
}
figcaption {
  margin-top: 5px;
  text-align: center;
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}
.site__embed:before, .site__embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.site__embed:after {
  clear: both;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
button, [type="button"], [type="reset"] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.site__form-wrap {
  margin: 0 0 15px;
}
.site__form-success {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #ddd;
}
.site__form-error {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.site__form-input {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #cccccc;
}
.site__form-input:-moz-placeholder {
  color: #999;
}
.site__form-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.site__form-input::-webkit-input-placeholder {
  color: #999;
}
.site__form-input:focus {
  border-color: #3898ec;
  outline: 0;
}
.site__form-input[disabled], .site__form-input[readonly], fieldset[disabled] .site__form-input {
  cursor: not-allowed;
}
.site__form-input[readonly] {
  background-color: #eee;
}
.site__layout-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.site__layout-container:before, .site__layout-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.site__layout-container:after {
  clear: both;
}
@media screen and (max-width: 1024px) {
  .site__layout-container {
    max-width: 728px;
  }
}
@media screen and (max-width: 479px) {
  .site__layout-container {
    max-width: none;
  }
}
.site__nav {
  position: relative;
  background: #ddd;
  z-index: 1000;
}
.site__nav:before, .site__nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.site__nav:after {
  clear: both;
}
.site__nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333;
}
.site__nav-link-mobile {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.site__nav-menu {
  position: relative;
  float: right;
}
.site__nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.site__nav-button:focus {
  outline: 0;
}
.site__nav-button.is-open {
  color: #fff;
}
.site__nav[data-collapse="all"] .site__nav-menu {
  display: none;
}
.site__nav[data-collapse="all"] .site__nav-button {
  display: block;
}
@media screen and (max-width: 1024px) {
  .site__nav[data-collapse="medium"] .site__nav-menu {
    display: none;
  }
  .site__nav[data-collapse="medium"] .site__nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .site__nav[data-collapse="small"] .site__nav-menu {
    display: none;
  }
  .site__nav[data-collapse="small"] .site__nav-button {
    display: block;
  }
  .site__nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .site__nav[data-collapse="tiny"] .site__nav-menu {
    display: none;
  }
  .site__nav[data-collapse="tiny"] .site__nav-button {
    display: block;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1024px) {
  h2 {
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    max-width: 165px;
    font-size: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .site__tablets_and_mobile {
    display: none;
  }
}
:root {
  --black: #111;
  --white-smoke: #f3f3f3;
  --grey: #717171;
  --white_: #fefefe;
  --balls_size: 2.93em;
  --main-brand-colour: #6057c3;
  --balls_padding: 5.56em;
  --headers_size: 2.93em;
  --headers_height: 1px;
  --sub_header_size: 1.17em;
  --menu_button_light_grow: 18px;
}
.site__layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}
.site__layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
body {
  background-color: var(--black);
  color: var(--white-smoke);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
}
body {
  font-size: clamp(9.91px, 1vw, 19.2px);
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: clamp(9.91px, min(1vw, 1.78vh), 19.2px);
    font-size: clamp(9.91px, min(1vw, 1.78svh), 19.2px);
  }
}
h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}
h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 51px;
  font-weight: 700;
  line-height: 1.2;
}
p {
  color: #f3f3f3cc;
  max-width: none;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  p {
    max-width: 350px;
  }
}
a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 0px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
