/*! CSS Used from: https://guarda.com/assets/css/main.min.css */

.button,
.input {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: .5rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1rem;
    height: 2.5em;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(.5em - 1px);
    padding-left: calc(.75em - 1px);
    padding-right: calc(.75em - 1px);
    padding-top: calc(.5em - 1px);
    position: relative;
    vertical-align: top;
}

.button:active,
.button:focus,
.input:active,
.input:focus,
.is-active.button {
    outline: 0;
}

.button,
.is-unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.content:not(:last-child),
.level:not(:last-child),
.subtitle:not(:last-child),
.title:not(:last-child) {
    margin-bottom: 1.5rem;
}

.delete {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10, 10, 10, .2);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: 0;
    position: relative;
    vertical-align: top;
    width: 20px;
}

.delete::after,
.delete::before {
    background-color: hsl(0deg, 0%, 100%);
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.delete::before {
    height: 2px;
    width: 50%;
}

.delete::after {
    height: 50%;
    width: 2px;
}

.delete:focus,
.delete:hover {
    background-color: rgba(10, 10, 10, .3);
}

.delete:active {
    background-color: rgba(10, 10, 10, .4);
}

.modal,
.modal-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.navbar-burger {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: 0 0;
    border: none;
    color: currentColor;
    font-family: inherit;
    font-size: 1em;
    margin: 0;
    padding: 0;
}

body,
figure,
h1,
h2,
hr,
html,
iframe,
li,
p,
ul {
    margin: 0;
    padding: 0;
}

h1,
h2 {
    font-size: 100%;
    font-weight: 400;
}

ul {
    list-style: none;
}

button,
input {
    margin: 0;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
::after,
::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

img,
video {
    height: auto;
    max-width: 100%;
}

iframe {
    border: 0;
}

html {
    background-color: hsl(0deg, 0%, 100%);
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

figure,
footer,
header,
section {
    display: block;
}

body,
button,
input {
    font-family: Roboto, Helvetica, Tahoma, sans-serif;
}

body {
    color: #363636;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}

a {
    color: #798ce5;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: hsl(0deg, 0%, 21%);
}

hr {
    background-color: hsl(0deg, 0%, 96%);
    border: none;
    display: block;
    height: 2px;
    margin: 1.5rem 0;
}

img {
    height: auto;
    max-width: 100%;
}

span {
    font-style: inherit;
    font-weight: inherit;
}

.box {
    background-color: hsl(0deg, 0%, 100%);
    border-radius: 1.5rem;
    -webkit-box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    color: #363636;
    display: block;
    padding: 1.25rem;
}

.button {
    background-color: hsl(0deg, 0%, 100%);
    border-color: hsl(0deg, 0%, 86%);
    border-width: 1px;
    color: hsl(0deg, 0%, 21%);
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: calc(.5em - 1px);
    padding-left: 1em;
    padding-right: 1em;
    padding-top: calc(.5em - 1px);
    text-align: center;
    white-space: nowrap;
}

.button .icon,
.button .icon.is-large {
    height: 1.5em;
    width: 1.5em;
}

.button .icon:first-child:not(:last-child) {
    margin-left: calc(-.5em - 1px);
    margin-right: .25em;
}

.button .icon:last-child:not(:first-child) {
    margin-left: .25em;
    margin-right: calc(-.5em - 1px);
}

.button .icon:first-child:last-child {
    margin-left: calc(-.5em - 1px);
    margin-right: calc(-.5em - 1px);
}

.button:hover {
    border-color: hsl(0deg, 0%, 71%);
    color: hsl(0deg, 0%, 21%);
}

.button:focus {
    border-color: #448aff;
    color: hsl(0deg, 0%, 21%);
}

.button:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(121, 140, 229, .25);
    box-shadow: 0 0 0 .125em rgba(121, 140, 229, .25);
}

.button.is-active,
.button:active {
    border-color: hsl(0deg, 0%, 29%);
    color: hsl(0deg, 0%, 21%);
}

.button.is-white {
    background-color: hsl(0deg, 0%, 100%);
    border-color: transparent;
    color: hsl(0deg, 0%, 4%);
}

.button.is-white:hover {
    background-color: #f9f9f9;
    border-color: transparent;
    color: hsl(0deg, 0%, 4%);
}

.button.is-white:focus {
    border-color: transparent;
    color: hsl(0deg, 0%, 4%);
}

.button.is-white:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(255, 255, 255, .25);
    box-shadow: 0 0 0 .125em rgba(255, 255, 255, .25);
}

.button.is-white:active {
    background-color: #f2f2f2;
    border-color: transparent;
    color: hsl(0deg, 0%, 4%);
}

.button.is-black {
    background-color: hsl(0deg, 0%, 4%);
    border-color: transparent;
    color: hsl(0deg, 0%, 100%);
}

.button.is-black:hover {
    background-color: #040404;
    border-color: transparent;
    color: hsl(0deg, 0%, 100%);
}

.button.is-black:focus {
    border-color: transparent;
    color: hsl(0deg, 0%, 100%);
}

.button.is-black:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(10, 10, 10, .25);
    box-shadow: 0 0 0 .125em rgba(10, 10, 10, .25);
}

.button.is-black:active {
    background-color: #000;
    border-color: transparent;
    color: hsl(0deg, 0%, 100%);
}

.button.is-light {
    background-color: hsl(0deg, 0%, 96%);
    border-color: transparent;
    color: rgba(0, 0, 0, .7);
}

.button.is-light:hover {
    background-color: #eee;
    border-color: transparent;
    color: rgba(0, 0, 0, .7);
}

.button.is-light:focus {
    border-color: transparent;
    color: rgba(0, 0, 0, .7);
}

.button.is-light:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(245, 245, 245, .25);
    box-shadow: 0 0 0 .125em rgba(245, 245, 245, .25);
}

.button.is-light:active {
    background-color: #e8e8e8;
    border-color: transparent;
    color: rgba(0, 0, 0, .7);
}

.button.is-dark {
    background-color: hsl(0deg, 0%, 21%);
    border-color: transparent;
    color: #fff;
}

.button.is-dark:hover {
    background-color: #2f2f2f;
    border-color: transparent;
    color: #fff;
}

.button.is-dark:focus {
    border-color: transparent;
    color: #fff;
}

.button.is-dark:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(54, 54, 54, .25);
    box-shadow: 0 0 0 .125em rgba(54, 54, 54, .25);
}

.button.is-dark:active {
    background-color: #292929;
    border-color: transparent;
    color: #fff;
}

.button.is-dark.is-outlined {
    background-color: transparent;
    border-color: hsl(0deg, 0%, 21%);
    color: hsl(0deg, 0%, 21%);
}

.button.is-dark.is-outlined:focus,
.button.is-dark.is-outlined:hover {
    background-color: hsl(0deg, 0%, 21%);
    border-color: hsl(0deg, 0%, 21%);
    color: #fff;
}

.button.is-primary {
    background-color: #448aff;
    border-color: transparent;
    color: #fff;
}

.button.is-primary:hover {
    background-color: #3782ff;
    border-color: transparent;
    color: #fff;
}

.button.is-primary:focus {
    border-color: transparent;
    color: #fff;
}

.button.is-primary:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(68, 138, 255, .25);
    box-shadow: 0 0 0 .125em rgba(68, 138, 255, .25);
}

.button.is-primary:active {
    background-color: #2b7aff;
    border-color: transparent;
    color: #fff;
}

.button.is-danger {
    background-color: hsl(348deg, 86%, 61%);
    border-color: transparent;
    color: #fff;
}

.button.is-danger:hover {
    background-color: #f03a5f;
    border-color: transparent;
    color: #fff;
}

.button.is-danger:focus {
    border-color: transparent;
    color: #fff;
}

.button.is-danger:focus:not(:active) {
    -webkit-box-shadow: 0 0 0 .125em rgba(241, 70, 104, .25);
    box-shadow: 0 0 0 .125em rgba(241, 70, 104, .25);
}

.button.is-danger:active {
    background-color: #ef2e55;
    border-color: transparent;
    color: #fff;
}

.button.is-danger.is-light {
    background-color: #feecf0;
    color: #cc0f35;
}

.button.is-danger.is-light:hover {
    background-color: #fde0e6;
    border-color: transparent;
    color: #cc0f35;
}

.button.is-danger.is-light:active {
    background-color: #fcd4dc;
    border-color: transparent;
    color: #cc0f35;
}

.button.is-small {
    font-size: .75rem;
}

.button.is-medium {
    font-size: 1.25rem;
}

.button.is-rounded {
    border-radius: 9999px;
    padding-left: calc(1em + .25em);
    padding-right: calc(1em + .25em);
}

.buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.buttons .button {
    margin-bottom: .5rem;
}

.buttons .button:not(:last-child):not(.is-fullwidth) {
    margin-right: .5rem;
}

.buttons:last-child {
    margin-bottom: -.5rem;
}

.buttons:not(:last-child) {
    margin-bottom: 1rem;
}

.buttons.has-addons .button:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.buttons.has-addons .button:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: -1px;
}

.buttons.has-addons .button:last-child {
    margin-right: 0;
}

.buttons.has-addons .button:hover {
    z-index: 2;
}

.buttons.has-addons .button.is-active,
.buttons.has-addons .button:active,
.buttons.has-addons .button:focus {
    z-index: 3;
}

.buttons.has-addons .button.is-active:hover,
.buttons.has-addons .button:active:hover,
.buttons.has-addons .button:focus:hover {
    z-index: 4;
}

.container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
}

@media screen and (min-width:1024px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width:1215px) {
    .container.is-widescreen:not(.is-max-desktop) {
        max-width: 1152px;
    }
}

@media screen and (min-width:1216px) {
    .container:not(.is-max-desktop) {
        max-width: 1152px;
    }
}

@media screen and (min-width:1408px) {
    .container:not(.is-max-desktop):not(.is-max-widescreen) {
        max-width: 1344px;
    }
}

.content p:not(:last-child) {
    margin-bottom: 1em;
}

.content h1,
.content h2 {
    color: hsl(0deg, 0%, 21%);
    font-weight: 600;
    line-height: 1.125;
}

.content h1 {
    font-size: 2em;
    margin-bottom: .5em;
}

.content h2 {
    font-size: 1.75em;
    margin-bottom: .5714em;
}

.content ul {
    list-style: disc outside;
    margin-left: 2em;
    margin-top: 1em;
}

.content figure {
    margin-left: 2em;
    margin-right: 2em;
    text-align: center;
}

.content figure:not(:last-child) {
    margin-bottom: 2em;
}

.content figure img {
    display: inline-block;
}

.icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

.icon.is-small {
    height: 1rem;
    width: 1rem;
}

.icon.is-medium {
    height: 2rem;
    width: 2rem;
}

.icon.is-large {
    height: 3rem;
    width: 3rem;
}

.icon-text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.5rem;
    vertical-align: top;
}

.icon-text .icon {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.icon-text .icon:not(:first-child) {
    margin-left: .25em;
}

.image {
    display: block;
    position: relative;
}

.image img {
    display: block;
    height: auto;
    width: 100%;
}

.image.is-32x32 {
    height: 32px;
    width: 32px;
}

.tag:not(body) {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: hsl(0deg, 0%, 96%);
    border-radius: .5rem;
    color: #363636;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .75rem;
    height: 2em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.5;
    padding-left: .75em;
    padding-right: .75em;
    white-space: nowrap;
}

.tag:not(body).is-light {
    background-color: hsl(0deg, 0%, 96%);
    color: rgba(0, 0, 0, .7);
}

.tag:not(body).is-link {
    background-color: #798ce5;
    color: #fff;
}

.tag:not(body).is-link.is-light {
    background-color: #eef0fc;
    color: #2038a7;
}

.tag:not(body).is-danger {
    background-color: hsl(348deg, 86%, 61%);
    color: #fff;
}

.tag:not(body).is-danger.is-light {
    background-color: #feecf0;
    color: #cc0f35;
}

.tag:not(body).is-rounded {
    border-radius: 9999px;
}

.subtitle,
.title {
    word-break: break-word;
}

.title span {
    font-weight: inherit;
}

.title {
    color: hsl(0deg, 0%, 21%);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125;
}

.title:not(.is-spaced)+.subtitle {
    margin-top: -1.25rem;
}

.title.is-1 {
    font-size: 3rem;
}

.title.is-2 {
    font-size: 2.5rem;
}

.title.is-3 {
    font-size: 2rem;
}

.title.is-4 {
    font-size: 1.5rem;
}

.title.is-5 {
    font-size: 1.25rem;
}

.title.is-6 {
    font-size: 1rem;
}

.subtitle {
    color: #363636;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25;
}

.subtitle.is-5 {
    font-size: 1.25rem;
}

.input {
    background-color: hsl(0deg, 0%, 100%);
    border-color: hsl(0deg, 0%, 86%);
    border-radius: .5rem;
    color: hsl(0deg, 0%, 21%);
}

.input:hover {
    border-color: hsl(0deg, 0%, 71%);
}

.input:active,
.input:focus {
    border-color: #798ce5;
    -webkit-box-shadow: 0 0 0 .125em rgba(121, 140, 229, .25);
    box-shadow: 0 0 0 .125em rgba(121, 140, 229, .25);
}

.input {
    -webkit-box-shadow: inset 0 .0625em .125em rgba(10, 10, 10, .05);
    box-shadow: inset 0 .0625em .125em rgba(10, 10, 10, .05);
    max-width: 100%;
    width: 100%;
}

.is-primary.input {
    border-color: #448aff;
}

.is-primary.input:active,
.is-primary.input:focus {
    -webkit-box-shadow: 0 0 0 .125em rgba(68, 138, 255, .25);
    box-shadow: 0 0 0 .125em rgba(68, 138, 255, .25);
}

.is-medium.input {
    font-size: 1.25rem;
}

.is-fullwidth.input {
    display: block;
    width: 100%;
}

.help {
    display: block;
    font-size: .75rem;
    margin-top: .25rem;
}

.help.is-success {
    color: hsl(153deg, 53%, 53%);
}

.help.is-danger {
    color: hsl(348deg, 86%, 61%);
}

.field:not(:last-child) {
    margin-bottom: .75rem;
}

.field.has-addons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.field.has-addons .control:not(:last-child) {
    margin-right: -1px;
}

.field.has-addons .control:first-child:not(:only-child) .input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.field.has-addons .control:last-child:not(:only-child) .button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.field.has-addons .control .button:not([disabled]):hover,
.field.has-addons .control .input:not([disabled]):hover {
    z-index: 2;
}

.field.has-addons .control .button:not([disabled]):active,
.field.has-addons .control .button:not([disabled]):focus,
.field.has-addons .control .input:not([disabled]):active,
.field.has-addons .control .input:not([disabled]):focus {
    z-index: 3;
}

.field.has-addons .control .button:not([disabled]):active:hover,
.field.has-addons .control .button:not([disabled]):focus:hover,
.field.has-addons .control .input:not([disabled]):active:hover,
.field.has-addons .control .input:not([disabled]):focus:hover {
    z-index: 4;
}

.field.is-grouped {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.field.is-grouped>.control {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.field.is-grouped>.control:not(:last-child) {
    margin-bottom: 0;
    margin-right: .75rem;
}

.control {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    font-size: 1rem;
    position: relative;
    text-align: inherit;
}

.control.has-icons-left .input:focus~.icon {
    color: #363636;
}

.control.has-icons-left .input.is-medium~.icon {
    font-size: 1.25rem;
}

.control.has-icons-left .icon {
    color: hsl(0deg, 0%, 86%);
    height: 2.5em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.5em;
    z-index: 4;
}

.control.has-icons-left .input {
    padding-left: 2.5em;
}

.control.has-icons-left .icon.is-left {
    left: 0;
}

.dropdown {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    vertical-align: top;
}

.dropdown.is-hoverable:hover .dropdown-menu {
    display: block;
}

.dropdown.is-right .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown.is-up .dropdown-menu {
    bottom: 100%;
    padding-bottom: 4px;
    padding-top: initial;
    top: auto;
}

.dropdown-menu {
    display: none;
    left: 0;
    min-width: 12rem;
    padding-top: 4px;
    position: absolute;
    top: 100%;
    z-index: 20;
}

.dropdown-content {
    background-color: hsl(0deg, 0%, 100%);
    border-radius: .5rem;
    -webkit-box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.dropdown-item {
    color: #363636;
    display: block;
    font-size: .875rem;
    line-height: 1.5;
    padding: .375rem 1rem;
    position: relative;
}

a.dropdown-item {
    padding-right: 3rem;
    text-align: inherit;
    white-space: nowrap;
    width: 100%;
}

a.dropdown-item:hover {
    background-color: hsl(0deg, 0%, 96%);
    color: hsl(0deg, 0%, 4%);
}

.level {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.level img {
    display: inline-block;
    vertical-align: top;
}

.level.is-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.level.is-mobile .level-item:not(:last-child) {
    margin-bottom: 0;
    margin-right: .75rem;
}

.level.is-mobile .level-item:not(.is-narrow) {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width:769px),
print {
    .level {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .level>.level-item:not(.is-narrow) {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.level-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .level-item:not(:last-child) {
        margin-bottom: .75rem;
    }
}

.level-left,
.level-right {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (min-width:769px),
print {
    .level-left .level-item:not(:last-child) {
        margin-right: .75rem;
    }
}

.level-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width:768px) {
    .level-left+.level-right {
        margin-top: 1.5rem;
    }
}

@media screen and (min-width:769px),
print {
    .level-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.level-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (min-width:769px),
print {
    .level-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.menu {
    font-size: 1rem;
}

.menu-list {
    line-height: 1.25;
}

.menu-list a {
    border-radius: 2px;
    color: #363636;
    display: block;
    padding: .5em .75em;
}

.menu-list a:hover {
    background-color: hsl(0deg, 0%, 96%);
    color: hsl(0deg, 0%, 21%);
}

.menu-label {
    color: #363636;
    font-size: .75em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.menu-label:not(:last-child) {
    margin-bottom: 1em;
}

.modal {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 40;
}

.modal.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal-background {
    background-color: rgba(10, 10, 10, .86);
}

.modal-card {
    margin: 0 20px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    position: relative;
    width: 100%;
}

@media screen and (min-width:769px) {
    .modal-card {
        margin: 0 auto;
        max-height: calc(100vh - 40px);
        width: 640px;
    }
}

.modal-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    -ms-overflow-y: visible;
}

.modal-card-body {
    -webkit-overflow-scrolling: touch;
    background-color: hsl(0deg, 0%, 100%);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow: auto;
    padding: 20px;
}

.navbar-burger {
    color: #363636;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    display: block;
    height: 3.25rem;
    position: relative;
    width: 3.25rem;
    margin-left: auto;
}

.navbar-burger:hover {
    background-color: rgba(0, 0, 0, .05);
}

@media screen and (min-width:1024px) {
    .navbar-burger {
        display: none;
    }
}

.column {
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: .75rem;
}

.columns.is-mobile>.column.is-one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
}

@media screen and (max-width:768px) {
    .column.is-full-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
    }
}

@media screen and (min-width:769px),
print {
    .column.is-full {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
    }
    .column.is-half,
    .column.is-half-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%;
    }
    .column.is-one-third {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%;
    }
    .column.is-one-quarter {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%;
    }
    .column.is-one-fifth {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%;
    }
    .column.is-offset-1 {
        margin-left: 8.33333337%;
    }
    .column.is-3 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%;
    }
    .column.is-5 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66666674%;
    }
    .column.is-9 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%;
    }
    .column.is-10 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333337%;
    }
    .column.is-11 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66666674%;
    }
    .column.is-12 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
    }
}

@media screen and (max-width:1023px) {
    .column.is-full-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
    }
}

@media screen and (min-width:1024px) {
    .column.is-half-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%;
    }
    .column.is-one-third-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%;
    }
    .column.is-4-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333337%;
    }
    .column.is-8-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66666674%;
    }
    .column.is-11-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66666674%;
    }
}

@media screen and (min-width:1408px) {
    .column.is-5-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66666674%;
    }
    .column.is-7-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333337%;
    }
}

.columns {
    margin-left: -.75rem;
    margin-right: -.75rem;
    margin-top: -.75rem;
}

.columns:last-child {
    margin-bottom: -.75rem;
}

.columns:not(:last-child) {
    margin-bottom: calc(1.5rem - .75rem);
}

.columns.is-centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.columns.is-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.columns.is-multiline {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.columns.is-vcentered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width:769px),
print {
    .columns:not(.is-desktop) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.has-text-white {
    color: hsl(0deg, 0%, 100%) !important;
}

.has-text-black {
    color: hsl(0deg, 0%, 4%) !important;
}

a.has-text-black:focus,
a.has-text-black:hover {
    color: #000 !important;
}

.has-text-dark {
    color: hsl(0deg, 0%, 21%) !important;
}

.has-text-primary {
    color: #448aff !important;
}

.has-background-primary {
    background-color: #448aff !important;
}

.has-background-primary-light {
    background-color: #ebf2ff !important;
}

.has-text-grey-dark {
    color: hsl(0deg, 0%, 29%) !important;
}

.has-text-grey {
    color: hsl(0deg, 0%, 48%) !important;
}

.has-text-grey-light {
    color: hsl(0deg, 0%, 71%) !important;
}

.has-text-grey-lighter {
    color: hsl(0deg, 0%, 86%) !important;
}

.is-justify-content-flex-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.is-justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.is-justify-content-space-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.is-align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.is-clipped {
    overflow: hidden !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mr-1 {
    margin-right: .25rem !important;
}

.ml-1 {
    margin-left: .25rem !important;
}

.mr-2 {
    margin-right: .5rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.ml-2 {
    margin-left: .5rem !important;
}

.mb-3 {
    margin-bottom: .75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.ml-4 {
    margin-left: 1rem !important;
}

.mr-5 {
    margin-right: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.ml-5 {
    margin-left: 1.5rem !important;
}

.mt-6 {
    margin-top: 3rem !important;
}

.mb-6 {
    margin-bottom: 3rem !important;
}

.pt-5 {
    padding-top: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 1.5rem !important;
}

.is-size-6 {
    font-size: 1rem !important;
}

.is-size-7 {
    font-size: .75rem !important;
}

@media screen and (max-width:1023px) {
    .is-size-3-touch {
        font-size: 2rem !important;
    }
    .is-size-6-touch {
        font-size: 1rem !important;
    }
}

.has-text-centered {
    text-align: center !important;
}

@media screen and (max-width:1023px) {
    .has-text-centered-touch {
        text-align: center !important;
    }
}

.is-capitalized {
    text-transform: capitalize !important;
}

.is-uppercase {
    text-transform: uppercase !important;
}

.has-text-weight-medium {
    font-weight: 500 !important;
}

.has-text-weight-bold {
    font-weight: 700 !important;
}

.is-block {
    display: block !important;
}

.is-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

@media screen and (max-width:768px) {
    .is-hidden-mobile {
        display: none !important;
    }
}

@media screen and (min-width:769px),
print {
    .is-hidden-tablet {
        display: none !important;
    }
}

@media screen and (max-width:1023px) {
    .is-hidden-touch {
        display: none !important;
    }
}

@media screen and (min-width:1024px) {
    .is-hidden-desktop {
        display: none !important;
    }
}

.section {
    padding: 3rem 1.5rem;
}

@media screen and (min-width:1024px) {
    .section {
        padding: 3rem 3rem;
    }
}

.footer {
    background-color: #fbfbfd;
    padding: 3rem 1.5rem 6rem;
}

html {
    scroll-behavior: smooth;
}

.app-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 52px;
    min-height: 100vh;
}

@media screen and (min-width:900px) {
    .app-container {
        padding-top: 80px;
    }
    .title {
        word-break: keep-all;
    }
    .title.is-1 {
        font-size: 4.625rem;
        font-weight: 700;
    }
}

main {
    overflow-x: hidden;
}

.button {
    border-radius: .5rem;
}

.input {
    border-radius: .5rem;
}

.tag {
    z-index: 1;
}

.tag:not(body) {
    border-radius: .5rem;
}

.tag.is-micro {
    height: auto;
    padding: 4px 8px;
    font-size: .75rem;
    line-height: 1;
}

.is-blue-gradient {
    background: #788ce4;
}

.is-blue-gradient h1,
.is-blue-gradient p {
    color: hsl(0deg, 0%, 100%);
}

.lazyload {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
}

a.dropdown-item {
    text-align: left;
}

.menu-list a {
    color: hsl(0deg, 0%, 48%);
}

@media (min-width:1023px) {
    .is-blue-gradient {
        background: -o-linear-gradient(340.4deg, #3d36b3 6.42%, #2bbaf4 97.82%);
        background: linear-gradient(109.6deg, #3d36b3 6.42%, #2bbaf4 97.82%);
    }
}

.email-message {
    opacity: 0;
    visibility: hidden;
    height: 0;
    line-height: 0;
    margin: 0;
}

.sf-root a img {
    min-width: unset !important;
}

.level-item.pay-option {
    border-radius: .5rem;
    border: 1px solid #e6e7e8;
    max-width: 42px;
}

.level-item.pay-option:not(:last-child) {
    margin-right: 4px;
}

.icon-text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-card {
    max-height: calc(100vh - 160px);
    max-width: calc(100vw - 20px);
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.animation-scroll {
    -webkit-animation: animscroll 19s linear 0s infinite alternate none running;
    animation: animscroll 19s linear 0s infinite alternate none running;
}

.animation-scroll-reverse {
    animation: animscroll 19s linear 0s infinite alternate-reverse none running;
}

@media screen and (max-width:768px) {
    .level-item.pay-option {
        max-width: 30px;
    }
    .level-item.pay-option:last-child {
        margin-bottom: .75rem;
    }
}

@media screen and (min-width:1181px),
print {
    .animation-scroll {
        -webkit-animation: animscroll 45s linear 0s infinite alternate none running;
        animation: animscroll 45s linear 0s infinite alternate none running;
    }
    .animation-scroll-reverse {
        animation: animscroll 45s linear 0s infinite alternate-reverse none running;
    }
}

#scrollToTopMain {
    position: fixed;
    display: none;
    border-radius: 50%;
    display: block;
    right: 40px;
    top: auto;
    bottom: 120px;
}

#beacon {
    position: fixed;
    height: 35px;
    width: 150px;
    z-index: 1500;
    background-color: #448aff;
    right: 40px;
    top: auto;
    bottom: 40px;
    border: none;
    border-radius: 200px;
    -webkit-box-shadow: rgba(0, 0, 0, .1) 0 4px 7px;
    box-shadow: rgba(0, 0, 0, .1) 0 4px 7px;
    color: #fff;
}

@media (max-width:450px) {
    #beacon {
        right: 20px;
        bottom: 10px;
    }
}

.beacon__container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.beacon__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 200px;
    bottom: 0;
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    outline: 0;
    padding: 0;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 999;
    background-color: #448aff;
    border: none;
    color: #fff;
    cursor: pointer;
    min-width: 60px;
    -webkit-transition: background-color .2s linear 0s, -webkit-transform .2s linear 0s;
    transition: background-color .2s linear 0s, -webkit-transform .2s linear 0s;
    -o-transition: background-color .2s linear 0s, transform .2s linear 0s;
    transition: background-color .2s linear 0s, transform .2s linear 0s;
    transition: background-color .2s linear 0s, transform .2s linear 0s, -webkit-transform .2s linear 0s;
    -webkit-tap-highlight-color: transparent;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.beacon__button span {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 15px;
}

.beacon__button:hover {
    background-color: #798ce5;
    -webkit-box-shadow: rgba(0, 0, 0, .06) 0 0 0 30px inset;
    box-shadow: rgba(0, 0, 0, .06) 0 0 0 30px inset;
}

.beacon__button:active {
    background-color: #798ce5;
    -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 0 30px inset;
    box-shadow: rgba(0, 0, 0, .1) 0 0 0 30px inset;
    cursor: pointer;
    -webkit-transform: scale(.96);
    -ms-transform: scale(.96);
    transform: scale(.96);
}

header.nav-header {
    height: 52px;
    position: fixed;
    background: #fff;
    width: 100vw;
    -webkit-box-shadow: 0 2px 0 #f5f5f5;
    box-shadow: 0 2px 0 #f5f5f5;
    z-index: 1000;
}

.navigation {
    height: 52px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navigation .brand-logo {
    margin-left: 1rem;
}

.navigation .brand-logo .logo {
    height: 36px;
    width: 28.19px;
}

.navigation-menu {
    display: none;
}

.mobile-menu {
    background-color: #fff;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    right: 0;
    display: none;
    top: 52px;
    z-index: 100;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mobile-menu-items {
    border-bottom: 1px solid;
    border-color: hsl(0deg, 0%, 86%);
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.mobile-menu-items .title {
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.mobile-menu-item {
    color: hsl(0deg, 0%, 29%);
    padding: 0;
}

.mobile-menu-item .icon {
    background: #ebf2ff;
    border-radius: .5rem;
    color: #004ccc;
    width: 40px;
    height: 40px;
}

.mobile-menu-item .icon ion-icon {
    font-size: 1.5rem;
}

.mobile-menu-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    border-radius: .5rem;
}

.mobile-menu-item a span.item-name {
    display: block;
    margin-left: .75rem;
    color: inherit;
    font-size: .9rem;
}

.mobile-menu-item a:hover {
    background: #ebf2ff;
    color: #004ccc;
}

.mobile-menu-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-ul li {
    padding: 0;
    margin-bottom: .75rem;
}

.mobile-menu-ul li:last-child {
    margin-bottom: 0;
}

@media screen and (min-width:900px) {
    header.nav-header {
        height: 80px;
    }
    .navigation {
        height: 80px;
    }
    .navigation .brand-logo {
        margin-left: 0;
    }
    .navigation .brand-logo .logo {
        height: 59.5px;
        width: 46.24px;
    }
    .navigation-menu {
        display: block;
        position: relative;
    }
    .navigation-menu .items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 80px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .navigation-menu .items .localization-icon {
        padding: .125rem;
        border-radius: 50%;
        border: 1px solid hsl(0deg, 0%, 86%);
    }
    .navigation-menu .items .localization-icon span {
        font-size: 20px;
        line-height: 20px;
        padding: .25rem;
        display: block;
    }
    .navigation-menu .items .link-item {
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        padding-left: .75rem;
        padding-right: .75rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .navigation-menu .items .link-item span.link-name {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        cursor: pointer;
        font-size: 16px;
        line-height: 24px;
        color: rgba(54, 54, 54, .88);
        padding: 5px 10px;
        border-radius: .5rem;
        will-change: background;
        white-space: nowrap;
    }
    .navigation-menu .items .link-item span.link-name:hover {
        background: #ebf2ff;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
        color: #363636;
    }
    .navigation-menu .items .link-item .opened-menu-wrap {
        height: auto;
        position: absolute;
        right: 0;
        top: 81px;
        width: 800px;
    }
    .navigation-menu .items .link-item .opened-menu-wrap.hide {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .blue-box {
        border-radius: .5rem;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .blue-box.get-started {
        width: 100%;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .blue-box-learn {
        background: #ebf2ff;
        border-radius: .5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .blue-box-learn .posts-wrap .post-img {
        height: 80px;
        width: 100%;
        display: block;
        overflow: hidden;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .blue-box-learn .posts-wrap .post-img img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: .5rem;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .blue-box-learn .posts-wrap .post-p {
        font-size: 12px;
        margin-top: .5rem;
        margin-bottom: .5rem;
        line-height: 16px;
        font-weight: 700;
        color: hsl(0deg, 0%, 4%);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .white-box {
        background: #fff;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .white-box.earn {
        width: 100%;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .white-box.learn {
        width: 100%;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .white-box.assets {
        width: 100%;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .article-box {
        padding: 1.25rem;
        border-radius: 1.5rem;
        background-image: url(https://guarda.com/assets/images/stake-article-thumb-menu.png);
        background-size: cover;
        background-repeat: no-repeat;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #fff;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .article-box-tag {
        font-size: 12px;
        line-height: 16px;
        text-transform: uppercase;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .article-box-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
        max-width: 169px;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .article-box-p {
        font-size: 12px;
        line-height: 16px;
        max-width: 169px;
    }
    .navigation-menu .items .link-item .opened-menu-wrap-inner .article-box .button {
        max-width: 65px;
    }
    .navigation-menu .items .link-item .opened-menu-list--ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .navigation-menu .items .link-item .opened-menu-list--icon img {
        max-height: 18px;
    }
    .navigation-menu .items .icon-text {
        cursor: pointer;
    }
    .navigation-menu .items .icon-text span {
        cursor: pointer;
    }
    .navigation-menu .items .icon-text ion-icon {
        cursor: pointer;
    }
    .navigation-menu .items .notifications-wrap {
        cursor: pointer;
        margin-right: 10px;
        margin-left: 10px;
    }
    .navigation-menu .items .notifications-wrap .icon {
        position: relative;
    }
    .navigation-menu .items .notifications-wrap .icon::before {
        content: "";
        position: absolute;
        top: 6px;
        right: 4px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #1bf365;
        -webkit-box-shadow: 0 2px 5px rgba(27, 243, 101, .5);
        box-shadow: 0 2px 5px rgba(27, 243, 101, .5);
        -webkit-animation: pulse 2s 5;
        animation: pulse 2s 5;
    }
    .navigation-menu .items .notifications-wrap .icon ion-icon {
        color: hsl(0deg, 0%, 86%);
        will-change: color;
        cursor: pointer;
    }
    .navigation-menu .items .notifications-wrap .icon ion-icon:hover {
        color: #448aff;
        -webkit-transition: color .2s ease;
        -o-transition: color .2s ease;
        transition: color .2s ease;
    }
    .navigation-menu .items .notifications-wrap-inner {
        display: none;
        position: absolute;
        top: 81px;
    }
}

@media screen and (min-width:1200px) {
    .navigation-menu {
        min-width: 1041.54px;
    }
    .navigation [data-menu=earn] {
        min-width: 102.41px;
    }
    .navigation [data-menu=start] {
        min-width: 148.52px;
    }
    .navigation [data-menu=assets] {
        min-width: 116.89px;
    }
    .navigation [data-menu=learn] {
        min-width: 96.03px;
    }
    .navigation [data-menu=notifications] {
        min-width: 72px;
    }
    .navigation [data-menu=language] {
        min-width: 42px;
    }
    .navigation ion-icon {
        color: hsl(0deg, 0%, 86%);
        will-change: color;
        cursor: pointer;
    }
    .navigation ion-icon:hover {
        color: #448aff;
        -webkit-transition: color .2s ease;
        -o-transition: color .2s ease;
        transition: color .2s ease;
    }
    .navigation .launch-btn .button.is-primary {
        min-width: 147.63px;
    }
}

.opened-menu-list--ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.opened-menu-list--ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
}

.opened-menu-list--ul li:not(:last-child) {
    margin-bottom: 1.25rem;
}

.opened-menu-list--ul li:hover {
    opacity: 1;
}

.opened-menu-list--ul li:hover .dropdown-card-bg {
    opacity: 1;
}

.opened-menu-list--ul .dropdown-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: visible;
    max-width: 100%;
}

.opened-menu-list--ul .dropdown-card div,
.opened-menu-list--ul .dropdown-card span {
    cursor: pointer;
    text-wrap: nowrap;
}

.opened-menu-list--ul .dropdown-card-bg {
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 0;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    display: block;
    position: absolute;
    border-width: 1px;
    border: 1px solid #ebebec;
    border-radius: 1.5rem;
    background-color: rgba(122, 122, 122, .03);
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}

@media screen and (min-width:1088px) {
    .section.is-hero .section-media {
        min-height: 487px;
    }
}

@media screen and (max-width:1024px),
print {
    .homepage-hero {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-top: 1rem;
    }
    .homepage-hero-columns {
        margin-left: 0;
        margin-right: 0;
    }
    .homepage-hero-columns h1.title {
        margin-top: 1rem;
    }
}

@media screen and (max-width:769px),
print {
    .homepage-hero .columns {
        margin-right: 0;
        margin-left: 0;
    }
    .homepage-hero .video-wrap {
        padding: 0;
    }
    .homepage-hero .video-wrap .section-media {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        height: 100%;
        width: 100vw;
    }
    .homepage-hero .video-wrap .section-media video {
        width: 100vw;
        left: -1.5rem;
        top: 0;
        max-width: unset;
    }
}

@media screen and (min-width:769px),
print {
    .homepage-hero .trustpilot-rating,
    .section.is-hero .trustpilot-rating {
        height: 40px;
        width: auto;
    }
    .homepage-hero .home__hero__platforms__item img,
    .section.is-hero .home__hero__platforms__item img {
        width: 135px;
        height: 40px;
    }
}

@media screen and (min-width:769px),
print {
    .home-use-cases:not(:last-child) {
        margin-bottom: 3rem;
    }
    .home-use-cases:first-child {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        text-align: right;
    }
    .home-use-cases:last-child {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        text-align: right;
    }
    .featured-media {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 2rem;
    }
    .featured-media li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        opacity: .75;
    }
    .featured-media li a {
        position: absolute;
        width: 100%;
        height: 100%;
        font-size: 0;
        z-index: 10;
    }
    .featured-media li:hover {
        opacity: .95;
        -webkit-transition: opacity .3s ease-in-out 0s;
        -o-transition: opacity .3s ease-in-out 0s;
        transition: opacity .3s ease-in-out 0s;
    }
    .featured-media li:hover svg path {
        fill: #448aff;
        -webkit-transition: fill .3s ease-in-out 0s;
        -o-transition: fill .3s ease-in-out 0s;
        transition: fill .3s ease-in-out 0s;
    }
}

.assets__search__results {
    position: absolute;
    width: 100%;
    max-height: 0;
    overflow-y: auto;
    -webkit-transition: max-height .3s cubic-bezier(.27, .7, 0, .99);
    -o-transition: max-height .3s cubic-bezier(.27, .7, 0, .99);
    transition: max-height .3s cubic-bezier(.27, .7, 0, .99);
    z-index: 10;
    display: none;
}

@media screen and (min-width:769px) {
    .modal.is-active {
        margin-top: 80px;
    }
}

@media screen and (min-width:1099px) {
    .home--hero {
        position: absolute;
        z-index: 1;
        pointer-events: none;
        -webkit-transform: scale(.85);
        -ms-transform: scale(.85);
        transform: scale(.85);
        right: -60%;
    }
}

@media screen and (min-width:1181px) {
    .home--hero {
        position: initial;
    }
}

@media (max-width:1181px) {
    .button.is-normal-touch {
        font-size: 1rem !important;
    }
}

.app-container {
    --after-img-height: 282px;
}

.is-block__support {
    position: relative;
    font-size: 12px;
    color: hsl(0deg, 0%, 71%);
}

.is-block__support::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -25%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1bf365;
    -webkit-box-shadow: 0 2px 5px rgba(27, 243, 101, .5);
    box-shadow: 0 2px 5px rgba(27, 243, 101, .5);
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
}

.footer .opened-menu-list--ul li {
    white-space: nowrap;
    position: relative;
}

.footer .opened-menu-list--ul li a,
.footer .opened-menu-list--ul li span {
    white-space: inherit;
}

.footer-socials .icon {
    color: hsl(0deg, 0%, 29%);
}

.footer-socials .icon:hover {
    color: hsl(0deg, 0%, 48%);
}

.footer-socials ion-icon {
    font-size: 24px;
}

.column.is-half-desktop {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width:900px) {
    .footer-menu {
        border-bottom: 2px solid #f5f5f5;
    }
    .footer-menu span.title {
        position: relative;
        cursor: pointer;
    }
    .footer-menu span.title::after {
        position: absolute;
        content: "";
        background-image: url(https://guarda.com/assets/images/additional/chevron-down-outline.svg);
        width: 24px;
        height: 24px;
        background-size: contain;
        right: 0;
        -webkit-transition: -webkit-transform ease-in .2s;
        transition: -webkit-transform ease-in .2s;
        -o-transition: transform ease-in .2s;
        transition: transform ease-in .2s;
        transition: transform ease-in .2s, -webkit-transform ease-in .2s;
    }
}

/*! CSS Used keyframes */

@-webkit-keyframes animscroll {
    from {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
    to {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
}

@keyframes animscroll {
    from {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
    to {
        -webkit-transform: translateX(0) translateZ(0);
        transform: translateX(0) translateZ(0);
    }
}

@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

/*! CSS Used fontfaces */

@font-face {
    font-family: Roboto;
    src: url(https://guarda.com/assets/fonts/Roboto/Roboto-Regular.eot);
    src: local("Roboto"), local("Roboto-Regular"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Regular.eot?#iefix) format("embedded-opentype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Regular.woff2) format("woff2"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Regular.woff) format("woff"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Regular.ttf) format("truetype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Regular.svg#Roboto-Regular) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Roboto;
    src: url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.eot);
    src: local("Roboto Medium"), local("Roboto-Medium"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.eot?#iefix) format("embedded-opentype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.woff2) format("woff2"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.woff) format("woff"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.ttf) format("truetype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.svg#Roboto-Medium) format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Roboto;
    src: url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.eot);
    src: local("Roboto Medium"), local("Roboto-Medium"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.eot?#iefix) format("embedded-opentype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.woff2) format("woff2"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.woff) format("woff"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.ttf) format("truetype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Medium.svg#Roboto-Medium) format("svg");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Roboto;
    src: url(https://guarda.com/assets/fonts/Roboto/Roboto-Light.eot);
    src: local("Roboto Light"), local("Roboto-Light"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Light.eot?#iefix) format("embedded-opentype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Light.woff2) format("woff2"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Light.woff) format("woff"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Light.ttf) format("truetype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Light.svg#Roboto-Light) format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Roboto;
    src: url(https://guarda.com/assets/fonts/Roboto/Roboto-Bold.eot);
    src: local("Roboto Bold"), local("Roboto-Bold"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Bold.eot?#iefix) format("embedded-opentype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Bold.woff2) format("woff2"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Bold.woff) format("woff"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Bold.ttf) format("truetype"), url(https://guarda.com/assets/fonts/Roboto/Roboto-Bold.svg#Roboto-Bold) format("svg");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}