@charset "UTF-8";

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url(/images/vendor/cropperjs/src/bg.png?d706d3577729b79843d99f7781761c7a);
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

/* ------------------------------------- FONTS */

/* ------------------------------------- COLORS */

/* ------------------------------------- MISC */

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* boilerplate fixes*/

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* hide input spinners */

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

* {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  box-sizing: content-box;
}

html,
body {
  overflow-x: hidden;
  background: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "L10", serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  color: #9B9B9B;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "L10", serif;
  font-weight: 600;
  line-height: 1.18;
  color: #272727;
}

::-moz-selection {
  background: #15C363;
  color: white;
}

::selection {
  background: #15C363;
  color: white;
}

input[type=text],
input[type=button],
input[type=submit],
input[type=password],
input[type=email],
input[type=radio],
textarea,
button,
select {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font: inherit;
  color: inherit;
}

input[type=button],
input[type=submit] {
  cursor: pointer;
}

@font-face {
  font-family: "L10";
  src: url("/fonts/L10-SemiBold.woff2") format("woff2"), url("/fonts/L10-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "L10";
  src: url("/fonts/L10-Regular.woff2") format("woff2"), url("/fonts/L10-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bangers";
  src: url("/fonts/Bangers-Regular.eot");
  src: local("\263A"), url("/fonts/Bangers-Regular.woff") format("woff"), url("/fonts/Bangers-Regular.ttf") format("truetype"), url("/fonts/Bangers-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SairaCondensed";
  src: url("/fonts/SairaCondensed-Regular.eot");
  src: local("\263A"), url("/fonts/SairaCondensed-Regular.woff") format("woff"), url("/fonts/SairaCondensed-Regular.ttf") format("truetype"), url("/fonts/SairaCondensed-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SairaCondensed";
  src: url("/fonts/SairaCondensed-Medium.eot");
  src: local("\263A"), url("/fonts/SairaCondensed-Medium.woff") format("woff"), url("/fonts/SairaCondensed-Medium.ttf") format("truetype"), url("/fonts/SairaCondensed-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SairaCondensed";
  src: url("/fonts/SairaCondensed-SemiBold.eot");
  src: local("\263A"), url("/fonts/SairaCondensed-SemiBold.woff") format("woff"), url("/fonts/SairaCondensed-SemiBold.ttf") format("truetype"), url("/fonts/SairaCondensed-SemiBold.svg") format("svg");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SairaCondensed";
  src: url("/fonts/SairaCondensed-Bold.eot");
  src: local("\263A"), url("/fonts/SairaCondensed-Bold.woff") format("woff"), url("/fonts/SairaCondensed-Bold.ttf") format("truetype"), url("/fonts/SairaCondensed-Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "RobotoSlab";
  src: url("/fonts/RobotoSlab-Bold.eot");
  src: local("\263A"), url("/fonts/RobotoSlab-Bold.woff") format("woff"), url("/fonts/RobotoSlab-Bold.ttf") format("truetype"), url("/fonts/RobotoSlab-Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Asap";
  src: url("/fonts/Asap-Bold.woff2") format("woff2"), url("/fonts/Asap-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes overlay-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes overlay-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 1540px) {
  .grid.fold-l {
    grid-template-columns: 1fr;
  }

  .grid.fold-l .col {
    grid-column-start: 1 !important;
    grid-column-end: 2 !important;
  }
}

@media (max-width: 1190px) {
  .grid.fold-m {
    grid-template-columns: 1fr;
  }

  .grid.fold-m .col {
    grid-column-start: 1 !important;
    grid-column-end: 2 !important;
  }
}

@media (max-width: 875px) {
  .grid.fold-s {
    grid-template-columns: 1fr;
  }

  .grid.fold-s .col {
    grid-column-start: 1 !important;
    grid-column-end: 2 !important;
  }
}

.grid.gap-40 {
  grid-gap: 40px;
}

.grid.gap-30 {
  grid-gap: 30px;
}

.grid.gap-20 {
  grid-gap: 20px;
}

.grid .col.s1 {
  grid-column-start: 1;
}

.grid .col.w1 {
  grid-column-end: span 1;
}

.grid .col.s2 {
  grid-column-start: 2;
}

.grid .col.w2 {
  grid-column-end: span 2;
}

.grid .col.s3 {
  grid-column-start: 3;
}

.grid .col.w3 {
  grid-column-end: span 3;
}

.grid .col.s4 {
  grid-column-start: 4;
}

.grid .col.w4 {
  grid-column-end: span 4;
}

.grid .col.s5 {
  grid-column-start: 5;
}

.grid .col.w5 {
  grid-column-end: span 5;
}

.grid .col.s6 {
  grid-column-start: 6;
}

.grid .col.w6 {
  grid-column-end: span 6;
}

.grid .col.s7 {
  grid-column-start: 7;
}

.grid .col.w7 {
  grid-column-end: span 7;
}

.grid .col.s8 {
  grid-column-start: 8;
}

.grid .col.w8 {
  grid-column-end: span 8;
}

.grid .col.s9 {
  grid-column-start: 9;
}

.grid .col.w9 {
  grid-column-end: span 9;
}

.grid .col.s10 {
  grid-column-start: 10;
}

.grid .col.w10 {
  grid-column-end: span 10;
}

.grid .col.s11 {
  grid-column-start: 11;
}

.grid .col.w11 {
  grid-column-end: span 11;
}

.grid .col.s12 {
  grid-column-start: 12;
}

.grid .col.w12 {
  grid-column-end: span 12;
}

.grid .col.valign {
  align-self: center;
}

.wrap {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}

.wrap.wide {
  max-width: 1100px;
}

.wrap.medium {
  max-width: 830px;
}

.wrap.small {
  max-width: 434px;
}

@media (max-width: 875px) {
  .wrap {
    max-width: 550px !important;
  }
}

@media (max-width: 875px) {
  .wrap.collapse {
    max-width: none !important;
  }
}

.pad {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 875px) {
  .pad.collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1540px) {
  .pad {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1190px) {
  .pad {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 875px) {
  .pad {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 500px) {
  .pad {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.level {
  display: flex;
  align-items: center;
}

.level .push-to-end {
  margin-left: auto;
}

.mb2 {
  margin-bottom: 2em;
}

input.btn,
.btn {
  min-height: 41px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 7px;
  line-height: 1.2;
  text-align: center;
  padding: 0 0.7em 0.1em;
}

@media (max-width: 875px) {
  input.btn,
  .btn {
    min-height: 38px;
    font-size: 14px;
  }
}

input.btn.white-on-green,
.btn.white-on-green {
  color: white;
  background: #15C363;
  border-color: #15C363;
}

input.btn.white-on-green:hover,
.btn.white-on-green:hover {
  background: white;
  color: #15C363;
}

input.btn.green-on-white,
.btn.green-on-white {
  color: #15C363;
  background: white;
  border-color: #15C363;
}

input.btn.green-on-white:hover,
.btn.green-on-white:hover {
  background: #15C363;
  color: white;
}

input.btn.green-no-border,
.btn.green-no-border {
  color: #15C363;
  background: white;
  border-color: white;
}

input.btn.green-no-border:hover,
.btn.green-no-border:hover {
  border-color: #15C363;
}

input.btn.disabled,
.btn.disabled {
  color: white !important;
  background-color: #ccc !important;
  border-color: #ccc !important;
  cursor: default;
}

input.btn.large,
.btn.large {
  font-size: 20px;
  min-height: 47px;
}

@media (max-width: 875px) {
  input.btn.large,
  .btn.large {
    font-size: 16px;
  }
}

input.btn.uppercase,
.btn.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input.btn.rounded,
.btn.rounded {
  border-radius: 9999px;
  padding-left: 2em;
  padding-right: 2em;
  min-height: 45px;
  padding-bottom: 0;
}

input.btn.arrow,
.btn.arrow {
  background-image: url("/img/btn-arrow-white.svg");
  background-position: right 0.7em center;
  background-repeat: no-repeat;
  padding-right: 2em;
}

input.btn.arrow.large,
.btn.arrow.large {
  background-image: url("/img/btn-large-arrow-white.svg");
}

input.btn.arrow:hover,
.btn.arrow:hover {
  background-image: url("/img/btn-arrow-green.svg");
  background-position: right 0.7em center;
  background-repeat: no-repeat;
}

input.btn.arrow:hover.large,
.btn.arrow:hover.large {
  background-image: url("/img/btn-large-arrow-green.svg");
}

input.btn.arrow.disabled,
.btn.arrow.disabled {
  background-image: url("/img/btn-arrow-white.svg");
}

input.btn.arrow.disabled.large,
.btn.arrow.disabled.large {
  background-image: url("/img/btn-large-arrow-white.svg");
}

input.btn.arrow-prev,
.btn.arrow-prev {
  background-image: url("/img/btn-prev-arrow-green.svg");
  background-position: 0.7em center;
  background-repeat: no-repeat;
  padding-left: 2em;
}

.btn-box {
  display: flex;
}

.btn-box.align-right {
  justify-content: flex-end;
}

.btn-box.prev-next .prev {
  margin-right: auto;
}

.btn-box.prev-next .next {
  margin-left: auto;
}

.form input[type=text],
.form input[type=number],
.form input[type=email],
.form input[type=password],
.form input[type=submit],
.form textarea,
.form select {
  width: 100%;
  border-radius: 7px;
  border: 2px solid #15C363;
  background: white;
  color: #272727;
  font-size: 16px;
  padding: 0 1em;
  min-height: 47px;
}

.form input[type=text]::-moz-placeholder, .form input[type=number]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=password]::-moz-placeholder, .form input[type=submit]::-moz-placeholder, .form textarea::-moz-placeholder, .form select::-moz-placeholder {
  color: #B2B2B2;
}

.form input[type=text]:-ms-input-placeholder, .form input[type=number]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder, .form input[type=password]:-ms-input-placeholder, .form input[type=submit]:-ms-input-placeholder, .form textarea:-ms-input-placeholder, .form select:-ms-input-placeholder {
  color: #B2B2B2;
}

.form input[type=text]::-ms-input-placeholder, .form input[type=number]::-ms-input-placeholder, .form input[type=email]::-ms-input-placeholder, .form input[type=password]::-ms-input-placeholder, .form input[type=submit]::-ms-input-placeholder, .form textarea::-ms-input-placeholder, .form select::-ms-input-placeholder {
  color: #B2B2B2;
}

.form input[type=text]::placeholder,
.form input[type=number]::placeholder,
.form input[type=email]::placeholder,
.form input[type=password]::placeholder,
.form input[type=submit]::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  color: #B2B2B2;
}

.form.flat input[type=text],
.form.flat input[type=number],
.form.flat input[type=email],
.form.flat input[type=password],
.form.flat input[type=submit],
.form.flat textarea,
.form.flat select {
  border-color: #F1F1F1;
  background: #F1F1F1;
}

.form .incorrect {
  color: crimson;
}

.form textarea {
  min-height: 10em;
  padding: 0.7em 1em;
}

.form select {
  background: white url("/img/select-chevron.svg") right 1em center no-repeat;
}

.form input.search {
  background: white url("/img/search.svg") right 1em center no-repeat;
}

.form label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #C1C1C1;
  margin-bottom: 0.5em;
}

.form .info {
  font-size: 13px;
  color: #aaa;
}

.block {
  background: white;
  box-shadow: 0 3px 40px rgba(0, 0, 0, 0.07);
  padding: 2.5em;
}

@media (max-width: 875px) {
  .block {
    padding: 1.5em 1.2em;
  }
}

.block + .block {
  margin-top: 2em;
}

.block h3 {
  font-size: 24px;
  margin-bottom: 0.7em;
}

@media (max-width: 875px) {
  .block h3 {
    font-size: 20px;
  }
}

.block .spacer {
  height: 3em;
}

.block.with-accent {
  border-top: 9px solid #15C363;
}

.block.with-accent.open-invite {
  border-top: 9px solid #F4B100;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, 50px);
  grid-gap: 20px;
}

@media (max-width: 875px) {
  .social-icons {
    grid-template-columns: repeat(auto-fill, 30px);
  }
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #15C363;
  border-radius: 9999px;
}

@media (max-width: 875px) {
  .social-icons a {
    width: 34px;
    height: 34px;
  }

  .social-icons a img {
    max-width: 16px;
    max-height: 16px;
  }
}

.social-icons a:hover {
  background: #24e77b;
}

.kudos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

@media (max-width: 1190px) {
  .kudos {
    grid-template-columns: 1fr;
  }
}

.kudos .kudo {
  display: grid;
  grid-template-columns: 75px 1fr;
  font-size: 18px;
}

@media (max-width: 875px) {
  .kudos .kudo {
    font-size: 16px;
  }
}

.kudos .nr {
  color: #15C363;
  font-weight: 600;
  cursor: pointer;
}

.kudos .nr img {
  margin-left: 5px;
  transform: translateY(-0.3em);
}

.references {
  display: grid;
  grid-gap: 40px;
}

.references h4 {
  margin-bottom: 0.5em;
}

.checkbox-cards {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  font-size: 16px;
}

@media (max-width: 875px) {
  .checkbox-cards {
    grid-template-columns: 1fr;
  }
}

.checkbox-cards .card {
  border-radius: 10px;
  border: 2px solid #C1C1C1;
  padding: 1.3em 1.3em;
  display: grid;
  grid-gap: 0 10px;
  grid-template-columns: 30px 1fr;
  cursor: pointer;
  align-content: start;
}

.checkbox-cards .card .check {
  width: 32px;
  height: 26px;
  background: url("/img/checkbox-card-open.svg") left top no-repeat;
  transform: translateY(0.15em);
}

.checkbox-cards .card .title {
  font-size: 18px;
  font-weight: 600;
  color: #272727;
}

.checkbox-cards .card .txt {
  grid-column-start: 2;
  grid-column-end: 3;
  transition: max-height 0.3s, margin-top 0.3s;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
}

.checkbox-cards .card:hover {
  border-color: #15C363;
}

.checkbox-cards .card.checked {
  border-color: #15C363;
  background: #15C363;
  color: white;
}

.checkbox-cards .card.checked .check {
  background: url("/img/checkbox-card-checked-white.svg") left 2px no-repeat;
}

.checkbox-cards .card.checked .title {
  color: white;
}

.checkbox-cards .card.checked .txt {
  max-height: 170px;
  margin-top: 10px;
}

.checkbox-list {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  font-size: 18px;
}

@media (max-width: 875px) {
  .checkbox-list {
    grid-template-columns: 1fr;
  }
}

.checkbox-list .item {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 10px;
  cursor: pointer;
}

.checkbox-list .item .check {
  width: 32px;
  height: 26px;
  background: url("/img/checkbox-list-open.svg") left top no-repeat;
  transform: translateY(0.15em);
}

.checkbox-list .item:hover {
  color: #15C363;
}

.checkbox-list .item.checked {
  color: #272727;
}

.checkbox-list .item.checked .check {
  background: url("/img/checkbox-list-checked-green.svg") left top no-repeat;
}

.skill-bar {
  margin-top: 1em;
  margin-bottom: 2em;
  border: 2px solid #F1F1F1;
  border-radius: 8px;
  background: #F1F1F1;
  height: 2em;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  position: relative;
  overflow: hidden;
}

.skill-bar .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #15C363;
  z-index: 10;
  border-radius: 0 8px 8px 0;
  transition: width 0.5s;
}

.skill-bar .part {
  position: relative;
  z-index: 20;
  border-right: 2px solid black;
  opacity: 0.2;
}

.skill-bar .part:nth-child(10) {
  border-right: none;
}

.cropper-image {
  display: block;
  max-width: 100%;
}

.card-big {
  width: 837px;
  height: 1280px;
  position: relative;
  font-family: "Asap", serif;
}

.card-big .image {
  z-index: 5;
  width: 690px;
  height: 720px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-position: center center;
  background-size: cover;
}

.card-big .bg {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background: url("/img/card-bg-all.png") left top no-repeat;
  border-radius: 25px;
}

.card-big .card-header {
  font-family: "Asap", serif;
  color: white;
  font-size: 70px;
  line-height: 0.85;
  position: absolute;
  top: 55px;
  left: 55px;
  width: 550px;
  text-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  z-index: 20;
  text-transform: uppercase;
}

.card-big .stat {
  position: absolute;
  font-family: "Asap", serif;
  font-size: 44px;
  text-align: right;
  color: white;
  z-index: 15;
  right: 40px;
  color: red;
  line-height: 1;
}

.card-big .stat.hp {
  top: 267px;
}

.card-big .stat.mp {
  top: 354px;
}

.card-big.brightblue .stat {
  color: #22ccae;
}

.card-big.green .stat {
  color: #15C363;
}

.card-big.orange .stat {
  color: #ff8503;
}

.card-big.yellow .stat {
  color: #db9f00;
}

.card-big.pink .stat {
  color: #fc33d4;
}

.card-big.purple .stat {
  color: #af20f1;
}

.card-big.lightblue .stat {
  color: #0b8ef4;
}

.card-big .name {
  background: white;
  position: absolute;
  right: 68px;
  top: 605px;
  font-size: 45px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 10px;
  border-top-left-radius: 20px;
  z-index: 20;
}

.card-big .skills {
  position: absolute;
  z-index: 30;
  left: 40px;
  top: 650px;
  width: 750px;
}

.card-big .skills .skill {
  position: relative;
  height: 50px;
  margin-bottom: 5px;
}

.card-big .skills .skill .label {
  color: white;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
  font-family: "Asap", serif;
  position: absolute;
  z-index: 40;
  text-indent: 10px;
}

.card-big .skills .skill .bar-box {
  width: 100%;
}

.card-big .skills .skill .bar {
  height: 50px;
  width: 100px;
  position: relative;
  border-radius: 9999px;
}

.card-big .skills .skill .bar .inner {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 30px;
  width: 30px;
  border-radius: 999px;
}

.card-big.brightblue .bar {
  background: linear-gradient(to right, black, #22ccae);
}

.card-big.green .bar {
  background: linear-gradient(to right, black, #15C363);
}

.card-big.orange .bar {
  background: linear-gradient(to right, black, #ff8503);
}

.card-big.yellow .bar {
  background: linear-gradient(to right, black, #F4B100);
}

.card-big.pink .bar {
  background: linear-gradient(to right, black, #fc33d4);
}

.card-big.purple .bar {
  background: linear-gradient(to right, black, #af20f1);
}

.card-big.lightblue .bar {
  background: linear-gradient(to right, black, #0b8ef4);
}

.card-big.brightblue .bar .inner {
  background: #137563;
}

.card-big.green .bar .inner {
  background: #0b6734;
}

.card-big.orange .bar .inner {
  background: #9c5000;
}

.card-big.yellow .bar .inner {
  background: #a87a00;
}

.card-big.pink .bar .inner {
  background: #c6039f;
}

.card-big.purple .bar .inner {
  background: #710aa1;
}

.card-big.lightblue .bar .inner {
  background: #075592;
}

.card-big .type {
  font-size: 35px;
  color: white;
  position: absolute;
  right: 45px;
  top: 1120px;
  font-family: "Asap", serif;
  z-index: 30;
  text-align: right;
}

.card-big .special-ability-head {
  font-size: 35px;
  font-family: "Asap", serif;
  position: absolute;
  left: 45px;
  top: 1120px;
  z-index: 30;
  color: white;
}

.card-big .special-ability-body {
  font-family: "Asap", serif;
  position: absolute;
  left: 45px;
  right: 45px;
  top: 1170px;
  font-size: 28px;
  line-height: 1;
  z-index: 30;
  color: white;
}

.card-big .name-back {
  position: absolute;
  left: 80px;
  right: 80px;
  top: 240px;
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.card-big .motivation {
  position: absolute;
  left: 110px;
  right: 110px;
  top: 360px;
  color: white;
}

.card-big .motivation .motivation-head {
  font-family: "Asap", serif;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 10px;
}

.card-big .motivation .motivation-body {
  font-size: 35px;
  line-height: 1.428;
  text-shadow: 0 6px 20px black;
}

.card-big .emblem {
  position: absolute;
  z-index: 50;
  right: 40px;
  top: 35px;
}

.card-social {
  width: 3000px;
  height: 1500px;
  background: url("/img/card-social-background.jpg") left top no-repeat;
  transform: scale(0.5);
  transform-origin: 0 0;
}

.card-social .card-big {
  transform: translate(325px, 113px) rotate(8deg) scale(0.93);
}

.card-social .shine {
  position: absolute;
  left: 0;
  top: 0;
  background: url("/img/social-shine.png") left top no-repeat;
  width: 1500px;
  height: 1500px;
}

.card-social .text {
  position: absolute;
  left: 1500px;
  top: 650px;
  font-size: 98px;
  text-align: center;
  width: 1200px;
  color: white;
  text-transform: uppercase;
  text-shadow: 7px 10px 20px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
}

.video-box {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.video-box > .content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-box .video-iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10px;
}

.video-box .btn-play {
  position: relative;
  z-index: 20;
  display: block;
  width: 92px;
  height: 92px;
  background: url("/img/play.svg") center/contain no-repeat;
  transition: transform 0.2s;
}

.video-box .btn-play:hover {
  transform: scale(1.2);
}

section.header {
  border-top: 9px solid #15C363;
}

section.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

@media (max-width: 875px) {
  section.header .wrap {
    padding: 20px 0;
  }
}

section.header .wrap .logo {
  margin-right: auto;
}

@media (max-width: 875px) {
  section.header .wrap .logo img {
    width: 50px;
  }
}

section.header .wrap .nav-toggle {
  margin-left: 40px;
}

@media (max-width: 875px) {
  section.header .wrap .nav-toggle {
    margin-left: 20px;
  }
}

section.nav-overlay {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  width: 500px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  padding: 120px 90px;
  background: #15C363;
  color: white;
  transition: transform 0.4s;
  transform: translateX(110%);
}

.nav-visible section.nav-overlay {
  transform: translateX(0);
}

section.nav-overlay .nav-close {
  position: absolute;
  right: 55px;
  top: 60px;
}

section.nav-overlay h2 {
  color: white;
  text-transform: uppercase;
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 1em;
}

section.nav-overlay ul {
  font-size: 27px;
  font-weight: 600;
}

section.nav-overlay ul li {
  min-height: 1em;
}

section.nav-overlay ul li + li {
  margin-top: 0.7em;
}

section.nav-overlay ul li a:hover {
  color: black;
}

section.nav-overlay ul li a.on {
  margin-left: -1.2em;
  padding-left: 1.2em;
  background: url("/img/nav-on-indicator.svg") left center no-repeat;
}

section.cards-overview .hero {
  background: url("/img/grunge-line-top.png") left bottom/100% auto no-repeat, url("/img/header-image.jpg") center/cover no-repeat;
  padding: 5em 0;
  margin-bottom: 2em;
}

@media (max-width: 875px) {
  section.cards-overview .hero {
    padding: 3em 0;
  }
}

section.cards-overview .hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 0.2em;
  color: white;
  max-width: 10em;
}

@media (max-width: 875px) {
  section.cards-overview .hero h1 {
    font-size: 28px;
  }
}

section.cards-overview .hero .txt {
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 2em;
  color: white;
}

@media (max-width: 875px) {
  section.cards-overview .hero .txt {
    font-size: 16px;
  }
}

section.cards-overview .main {
  min-height: 90vh;
  background: url("/img/bg-triangles.png") left top/cover no-repeat;
  padding-bottom: 200px;
}

section.cards-overview .filter {
  background: #EFEFEF;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 120px;
  grid-gap: 18px;
  margin-bottom: 2em;
}

@media (max-width: 875px) {
  section.cards-overview .filter {
    grid-template-columns: 1fr 1fr;
  }

  section.cards-overview .filter .btn {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media (max-width: 500px) {
  section.cards-overview .filter {
    grid-template-columns: 1fr;
  }

  section.cards-overview .filter .btn {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}

section.cards-overview .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 14px;
}

@media (max-width: 1800px) {
  section.cards-overview .cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1540px) {
  section.cards-overview .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1190px) {
  section.cards-overview .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 875px) {
  section.cards-overview .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  section.cards-overview .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 350px) {
  section.cards-overview .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

section.cards-overview .cards img {
  max-width: 100%;
}

section.footer {
  background: #242424;
  color: white;
  padding: 6em 0 4em;
  position: relative;
}

section.footer .grunge {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: url("/img/grunge-line-footer.png") left top/100% auto no-repeat;
  padding-bottom: 2%;
  transform: translateY(-90%);
  pointer-events: none;
}

section.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 875px) {
  section.footer .wrap {
    flex-direction: column;
  }
}

@media (max-width: 875px) {
  section.footer .logo {
    display: none;
  }
}

section.footer .links {
  display: flex;
}

@media (max-width: 875px) {
  section.footer .links {
    flex-direction: column;
    align-items: center;
  }
}

section.footer .links a:hover {
  text-decoration: underline;
}

section.footer .links a + a {
  margin-left: 3em;
}

@media (max-width: 875px) {
  section.footer .links a + a {
    margin-left: 0;
    margin-top: 0.5em;
  }
}

section.profile-detail {
  background: #15C363;
  background: linear-gradient(140deg, #15C363 47%, #F1F1F1 47%);
  padding-bottom: 250px;
}

section.profile-detail .wrap {
  max-width: 1600px;
  position: relative;
}

section.profile-detail .name-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.profile-detail .name-box h1 {
  padding: 0.5em 0;
  font-size: 76px;
  color: black;
}

@media (max-width: 1540px) {
  section.profile-detail .name-box h1 {
    font-size: 60px;
  }
}

@media (max-width: 1190px) {
  section.profile-detail .name-box h1 {
    font-size: 44px;
  }
}

@media (max-width: 875px) {
  section.profile-detail .name-box h1 {
    font-size: 28px;
    padding: 1em 0;
  }
}

section.profile-detail .name-box h1 .firstname {
  color: white;
}

@media (max-width: 875px) {
  section.profile-detail .name-box .close img {
    width: 24px;
  }
}

section.profile-detail .card {
  margin-bottom: 40px;
}

section.profile-detail .card img {
  width: 100%;
}

section.profile-detail .kudos {
  padding-top: 1em;
  padding-bottom: 2em;
}

section.profile-detail .references {
  padding-top: 1em;
  padding-bottom: 2em;
}

section.profile-detail .contact-profile-form {
  padding-top: 1em;
  padding-bottom: 2em;
}

section.create-card {
  background: #15C363;
  background: linear-gradient(140deg, #15C363 53%, #F1F1F1 53%);
  padding-bottom: 250px;
  min-height: 100vh;
}

section.create-card h1 {
  padding: 0.5em 0;
  font-size: 76px;
  color: white;
  text-align: center;
}

@media (max-width: 1540px) {
  section.create-card h1 {
    font-size: 60px;
  }
}

@media (max-width: 1190px) {
  section.create-card h1 {
    font-size: 44px;
  }
}

@media (max-width: 875px) {
  section.create-card h1 {
    font-size: 28px;
    padding: 1em 0;
  }
}

section.create-card .visual {
  width: 100%;
  padding-bottom: 35%;
  border-radius: 10px;
  margin-bottom: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 875px) {
  section.create-card .visual {
    padding-bottom: 45%;
  }
}

section.compact-header {
  position: absolute;
  width: 100%;
}

section.compact-header .wrap {
  display: flex;
  padding: 30px 0;
}

section.compact-header .nav-toggle {
  margin-left: auto;
}

section.login {
  background: #15C363;
  background: linear-gradient(140deg, #15C363 53%, #F1F1F1 53%);
  padding-bottom: 250px;
  min-height: 100vh;
}

section.login h1 {
  padding: 0.5em 0;
  font-size: 76px;
  color: white;
  text-align: center;
}

@media (max-width: 1540px) {
  section.login h1 {
    font-size: 60px;
  }
}

@media (max-width: 1190px) {
  section.login h1 {
    font-size: 44px;
  }
}

@media (max-width: 875px) {
  section.login h1 {
    font-size: 28px;
    padding: 1em 0;
  }
}

section.content {
  background: #15C363;
  background: linear-gradient(140deg, #15C363 43%, #F1F1F1 43%);
  padding-bottom: 250px;
  min-height: 100vh;
}

section.content .wrap {
  padding-top: 50px;
}

section.content .part.txt,
section.content .part.image,
section.content .part.video,
section.content .part.btns {
  margin-bottom: 3em;
}

section.content .part p {
  margin-bottom: 1em;
}

section.content h1 {
  font-size: 46px;
  margin-bottom: 0.5em;
}

section.content h2 {
  font-size: 28px;
  margin-bottom: 0.7em;
}

section.content img {
  max-width: 100%;
}

section.content .btns {
  display: flex;
  align-items: center;
}

section.content .btns .btn + .btn {
  margin-left: 2em;
}

section.content .txt ul {
  list-style-type: disc;
  margin: 1em 0 1em 2em;
}

section.content .txt a {
  color: #15C363;
}

section.content .txt a:hover {
  text-decoration: underline;
}

section.content .txt b,
section.content .txt strong {
  font-weight: 700;
}

.incorrect {
  color: crimson;
  font-size: 14px;
}

body.no-back {
  background: transparent;
}

