:root {
    --header-height: 75px;
    --mobile-header-height: 60px;
}
html {
    font-family: "Montserrat", sans-serif !important;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}
footer,
header,
nav,
section,
main {
    display: block;
}
body {
    line-height: 1;
    margin: 0;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input {
    -webkit-appearance: none;
    border-radius: 0;
}
.spine-player {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: none;
    position: relative;
}
.spine-player * {
    box-sizing: border-box;
    font-family: "PT Sans", Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
    color: #dddddd;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.spine-player-error {
    font-size: 14px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10;
    border-radius: 4px;
    overflow: auto;
}
.spine-player-hidden {
    display: none;
}
.spine-player-slider {
    width: 100%;
    height: 16px;
    position: relative;
    cursor: pointer;
}
.spine-player-slider-value {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: rgba(98, 176, 238, 0.6);
    cursor: pointer;
}
.spine-player-slider:hover .spine-player-slider-value {
    height: 4px;
    background: #62b0ee;
    transition: height 0.2s;
}
.spine-player-slider-value.hovering {
    height: 4px;
    background: #62b0ee;
    transition: height 0.2s;
}
.spine-player-slider.big {
    height: 12px;
    background: #000;
}
.spine-player-slider.big .spine-player-slider-value {
    height: 12px;
    background: #62b0ee;
}
.spine-player-column {
    display: flex;
    flex-direction: column;
}
.spine-player-row {
    display: flex;
    flex-direction: row;
}
.spine-player-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.spine-player-list li {
    cursor: pointer;
    margin: 8px 8px;
}
.spine-player-list .selectable {
    display: flex;
    flex-direction: row;
    margin: 0 !important;
    padding: 2px 20px 2px 0 !important;
}
.spine-player-list li.selectable:first-child {
    margin-top: 4px !important;
}
.spine-player-list li.selectable:last-child {
    margin-bottom: 4px !important;
}
.spine-player-list li.selectable:hover {
    background: #6e6e6e;
}
.spine-player-list li.selectable .selectable-circle {
    display: flex;
    flex-direction: row;
    width: 6px;
    min-width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    align-self: center;
    opacity: 0;
    margin: 5px 10px;
}
.spine-player-list li.selectable.selected .selectable-circle {
    opacity: 1;
}
.spine-player-list li.selectable .selectable-text {
    color: #aaa;
}
.spine-player-list li.selectable.selected .selectable-text,
.spine-player-list li.selectable:hover .selectable-text {
    color: #ddd;
}
.spine-player-switch {
    display: flex;
    flex-direction: row;
    margin: 2px 10px;
}
.spine-player-switch-text {
    flex: 1;
    margin-right: 8px;
}
.spine-player-switch-knob-area {
    width: 30px;
    height: 10px;
    display: block;
    border-radius: 5px;
    background: #6e6e6e;
    position: relative;
    align-self: center;
    justify-self: flex-end;
}
.spine-player-switch.active .spine-player-switch-knob-area {
    background: #5eaff1;
}
.spine-player-switch-knob {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #9e9e9e;
    position: absolute;
    left: 0px;
    top: -2px;
    filter: drop-shadow(0 0 1px #333);
    transition: transform 0.2s;
}
.spine-player-switch.active .spine-player-switch-knob {
    background: #fff;
    transform: translateX(18px);
    transition: transform 0.2s;
}
.spine-player-popup-parent {
    position: relative;
}
.spine-player-popup {
    user-select: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
    right: 2px;
    bottom: 40px;
    border-radius: 4px;
    max-height: 400%;
    overflow: auto;
    font-size: 85%;
}
.spine-player-popup-title {
    margin: 4px 15px 2px 15px;
    text-align: center;
}
.spine-player-popup hr {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #cccccc70;
}
.spine-player canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.spine-player-button-icon-spine-logo {
    height: 20px;
    position: relative;
    top: 1px;
    margin: 0 8px !important;
    align-self: center;
    border: none !important;
    width: auto !important;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: none !important;
    filter: drop-shadow(0 0 1px #333);
}
.spine-player-button-icon-spine-logo:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}
.spine-player-speed-slider {
    width: 150px;
}
.spine-player-editor-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}
.spine-player-editor-code {
    flex: 1;
    overflow: auto;
}
.CodeMirror {
    height: 100%;
}
.spine-player-editor-player {
    flex: 1;
    border: none;
    background: black;
}
body {
    overflow-x: hidden;
    margin-top: var(--header-height);
}
#wrapper {
    overflow-x: hidden;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
}
.body-overflow {
    overflow: hidden !important;
    position: relative;
    height: 100%;
}
.container {
    max-width: 1300px;
    margin: auto;
    position: relative;
}
.centered-text {
    text-align: center;
}
.bold {
    font-weight: 700;
}
h2 {
    font-size: 28px;
    line-height: 32.5px;
}
h2, .header__video__text, .studio__text h2, .game-description__text, .other-games, .about-intro h2, .subs_ben_bg_column__title,
.subs_ben_bg_item__title, .subs_ben_bg_item__text, .contact__information h3, .newsletter_title, .newsletter_subtitle, .newsletter_description, .newsletter__agreement_text,
.about-intro__section h5, .about-intro__section h1, .stat__title, .studio__text h5, h2.contacts_column__title,h2.academy_positions__title{
    letter-spacing: -0.05em;
}
.spacer {
    margin: 76px 0 15px;
}
li.link.link--newsletter {
    position: relative;
    display: none;
}
li.link.link--newsletter a {
    color: #FF74C7;
}
li.link.link--newsletter img {
    position: absolute;
    right: 1%;
    top: 45%;
    width: 30px;
}
.link.link--center {
    margin: auto;
}
.link.link--round {
    font-size: 14px;
    padding: 0px;
    border: 2px solid #2D0F6A;
    border-radius: 163px;
    transition: 0.45s ease;
    background: linear-gradient(to top, #2D0F6A 50%, rgba(255,255,255,0) 50%);
    background-size: 100% 200%;
    background-position: top left;
    transition: all .3s ease-out;
}
.link.link--round:hover {
    background-position: bottom left;
    border: 2px solid #2D0F6A;
    color: #fff;
}


a.link.link--round {
    text-decoration: none;
    color: #30196B;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    width: max-content;
    padding: 20px 30px;
}

a.link.link--round {
    position: absolute;
    bottom: 10%;
    margin-top: 0px;
}


.header {
    background: #fff;
}
.header__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 15px 0 15px 0;
}
.header__newsletter {
    display: none;
    flex-direction: row;
    align-items: flex-end;
    margin: -13px 0 0 60px;
    cursor: pointer;
}
.header__newsletter img {
    display: block;
    width: 100%;
    height: auto;
}
.header__newsletter.open {
    display: flex;
}
.header__newsletter_text {
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    color: #FF74C7;
    margin: 0 0 5px 10px;
}
.header__content {
    display: flex;
    justify-content: space-between;
}
.header__content .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}
.header__content .header__logo img {
    width: 150px;
    height: auto;
}
.header__content ul {
    display: flex;
    height: 100%;
}
.header__content ul > li > a {
    display: inline-block;
    font-weight: 400;
    color: #000;
    padding: 42px 34px 17px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}
.header__content ul > li > a::before {
    /*! avoiding shifting for weight of font
    * https://stackoverflow.com/questions/556153/inline-elements-shifting-when-made-bold-on-hover
    */
    display: block;
    content: attr(title);
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.header__content ul > li > a:hover,
.header__content ul > li > a:focus {
    font-weight: 600;
    color: #FF74C7;
}
.header__content ul > li > a.href-career::after {
    display: inline-block;
    position: absolute;
    margin-left: 10px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    background: #c09ef8;
    color: #fff;
    font-weight: 300 !important;
    border-radius: 100%;
    font-size: 12px;
    margin-top: -3px;
}
header #menu-btn {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    width: 100%;
}
.header__video {
    position: relative;
}
.header__video__text {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 6vw;
    line-height: 9vw;
    text-align: center;
    text-transform: capitalize;
    text-shadow: black 2px 3px 4px;
}
.header__video__text span {
    clear: both;
    font-size: 3vw;
    line-height: 4vw;
    display: block;
}
.header__video__game-logo {
    bottom: 15%;
    right: 15%;
    position: absolute;
    max-width: 35%;
}
.header__video__game-logo img {
    width: 100%;
    height: initial;
}
#header__video video {
    object-fit: cover;
    width: 100vw;
    max-width: 100%;
}


/* TutoClub Video */
.video {
    position: relative;
    background: #fff;
}

.video__sound_off img, .video__sound_on img {
    position: absolute;
    bottom: 2%;
    right: 2%;
}

.video__sound_on {
    display: none;
}

.video__thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video__thumbnail {
    position: relative;
}

.video__thumbnail_play {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.video__thumbnail_play img {
    width: 7%;
    height: auto;
    display: block;
    filter: invert(1);
    opacity: 0.6;
}

#intro-video {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 500px) {
    .video__sound_off img, .video__sound_on img {
        max-width: 30px;
        bottom: 4%;
        right: 2%;
    }
}

/* TutoClub Video */

.t-c--light-red {
    color: #fdbebe;
}
.t-c--light-pink {
    color: #fbc3f7;
}
.t-c--light-blue {
    color: #bbd7f8;
}
.t-c--red {
    color: #fb9f9f;
}
.t-c--pink {
    color: #f2a1ed;
}
.t-c--blue {
    color: #93aff7;
}
.studio__text {
    position: relative;
    margin: 100px auto 100px;
    color: #000;
}
.studio__text h2 {
    font-size: 28px;
    line-height: 32.5px;
    margin: 0 28px 0 0;
    width: 100%;
    text-align: left;
    min-width: 440px;
}
.studio__text h5 {
    font-size: 16px;
    line-height: 20px;
    margin: auto;
    max-width: 100%;
    text-align: justify;
}
.studio__text h5:nth-child(2) {
    margin: 20px auto 0;
}
.game-container-top-spacing {
    margin-top: 130px;
}
.animated-on-sight svg {
    max-width: 100%;
    height: initial;
}
.spine-player-controls {
    display: none;
}

.stats {
    display: flex;
    justify-content: center;
    position: relative;
}
.stats__single {
    width: 255px;
    height: 255px;
    min-width: 255px;
    min-height: 255px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.stats__single span {
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 700;
}
.stats__single .stats__single__big-text {
    margin: 21px 0;
    font-size: 64px;
    line-height: 45px;
}
.stats__single:nth-of-type(even) {
    margin-top: 130px;
}
.stats--pink {
    background: #f2a1ed;
}
.stats--green {
    background: #81d5db;
}
.stats--blue {
    background: #93aff7;
}
.stats--purple {
    background: #c09ef8;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.stats__arrow {
    pointer-events: none;
}
.stats__arrow--first.in-view .stats__arrow__shaft {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: dash 2s linear forwards;
}
.stats__arrow--first.in-view .stats__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.7s !important;
    animation: dash 2s linear forwards;
}
.stats__arrow--second.in-view .stats__arrow__shaft {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation-delay: 2, 5s !important;
    animation: dash 1.5s linear forwards;
}
.stats__arrow--second.in-view .stats__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1s !important;
    animation: dash 1.5s linear forwards;
}
.stats__arrow--third.in-view .stats__arrow__shaft {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation-delay: 2, 5s !important;
    animation: dash 1.5s linear forwards;
}
.stats__arrow,
.stats__bubble {
    position: absolute;
}
.stats__arrow--first {
    left: -190px;
    bottom: -132px;
}
.stats__arrow--second {
    left: 32.8%;
    top: 15px;
}
.stats__arrow--third {
    right: -93px;
    top: 3%;
}
.stats__bubble {
    transform: scale(0.05);
    transition: 0.8s;
}
.stats__bubble.in-view {
    transform: scale(1);
}
.stats__bubble--first {
    left: 69px;
    top: 103px;
}
.stats__bubble--second {
    left: 60.7%;
    bottom: 68px;
}
.stats__bubble--third {
    left: 46.2%;
    top: 13px;
}
@media screen and (max-width: 1320px) {
    .stats__arrow--first {
        left: -322px;
    }
    .stats__arrow--second {
        left: 28.8%;
    }
    .stats__arrow--third {
        right: -181px;
    }
    .stats__bubble--first {
        top: 263px;
    }
}
@media screen and (max-width: 1060px) {
    .stats__arrow--first {
        left: -132px;
    }
    .stats__arrow--second {
        left: 45.8%;
    }
    .stats__arrow--third {
        right: -117px;
        transform: rotate(16deg);
        right: -93px;
        top: 14%;
    }
    .stats__bubble--first {
        top: 324px;
        left: 20%;
    }
    .stats__bubble--second {
        left: 51.7%;
        bottom: 29%;
    }
}
@media screen and (max-width: 860px) {
    .stats__arrow--third {
        display: none;
    }
    .stats__arrow--first {
        display: none;
    }
    .stats__arrow--second {
        left: 55.8%;
        top: 134px;
        transform: scale(-1, -1);
    }
    .stats__bubble {
        transform: scale(1.2);
    }
    .stats__bubble--first {
        left: 69px;
        top: 353px;
    }
    .stats__bubble--second {
        left: 69.7%;
        bottom: 22px;
    }
}
@media screen and (max-width: 600px) {
    .stats__arrow--first {
        left: -145px;
        bottom: -354px;
        transform: rotate(-44deg) scale(0.6);
    }
    .stats__arrow--second {
        left: 21.8%;
        top: 155px;
        transform: scale(0.6);
    }
    .stats__bubble {
        transform: scale(1.2);
    }
    .stats__bubble--first {
        left: 69px;
        top: 496px;
    }
    .stats__bubble--second {
        left: 75%;
        top: 530px;
    }
    .stats__arrow--second {
        display: none;
    }
    .animated-on-sight.stats__bubble.stats__bubble--third,
    .animated-on-sight.stats__bubble.stats__bubble--first,
    .animated-on-sight.stats__bubble.stats__bubble--second {
        display: none;
    }
    .pre-stats-arrow {
        display: block !important;
    }
    .animated-on-sight.stats__arrow.stats__arrow--fourth.mobile-only.in-view {
        right: 24%;
        top: -40px;
    }
    .animated-on-sight.stats__bubble.stats__bubble--fourth.mobile-only.in-view {
        right: 10%;
        top: 20px;
    }
}
@media screen and (max-width: 600px) and (min-width: 480px) {
    .stats__single .stats__single__big-text {
        font-size: 35px;
        margin: 14px 0;
    }
    .stats__single span {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .stats__arrow--second {
        left: 15.8%;
        top: 95px;
    }
    .stats__arrow--first {
        left: -188px;
        bottom: -332px;
    }
    .stats__bubble--first {
        display: none;
        top: 381px;
    }
    .stats__bubble--second {
        display: none;
        top: 393px;
    }
    .stats__single:nth-of-type(2n),
    .stats__single {
        margin-top: 15px;
    }
    .stats {
        margin-top: 40px;
    }
    .stats__arrow--second {
        left: 9.8%;
        top: -100px;
    }
    .animated-on-sight.stats__bubble.stats__bubble--third {
        top: -30px;
        right: 20%;
        left: auto;
    }
    .animated-on-sight.stats__bubble.stats__bubble--third svg circle {
        stroke-width: 1px;
    }
}
@media screen and (max-width: 480px) and (min-width: 350px) {
    .stats__single {
        width: 160px !important;
        height: 160px !important;
        min-width: 160px !important;
        min-height: 160px !important;
    }
}
@media screen and (max-width: 350px) {
    .stats__single {
        width: 130px !important;
        height: 130px !important;
        min-width: 130px !important;
        min-height: 130px !important;
    }
}
.games-container {
    margin-bottom: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.game-type-toggles {
    margin: 90px 0;
}
.game-type-toggle-replacement-spacer {
    margin: 120px 0 0;
}
.games-text-container {
    position: relative;
}
h2.bold--games_title {
    margin: 40px 0 30px 0;
}
.games-container .game {
    height: 0;
    padding: 25% 0;
    position: relative;
}
.games-container .game .spine__container {
    min-height: 670px;
}
.games-container--3-columns .game {
    height: 0;
    padding: 16.65% 0;
    position: relative;
}
.games-container--3-columns .game .spine__container {
    min-height: 445px;
}
.game {
    flex: 1 0 50%;
    position: relative;
    transition: all 0.5s ease;
}
.game .game-link_with_dataid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.game .game__character {
    width: 100%;
}
.game .game__character .spine__container {
    display: block;
    height: 100%;
    padding: 0 0 80px;
}
.game .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    color: #2d0f6a;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 100%;
    margin: 0;
}
.game .title.link {
    font-size: 14px;
    padding: 0px;
    display: none;
    border: 2px solid #2d0f6a;
    text-transform: uppercase;
    border-radius: 163px;
    transition: 0.45s ease;
    bottom: 8%;
}
.game:hover .title {
    display: none;
}
.game:hover .title.link {
    display: block;
    padding: 11.5px 43px;
}
.game__hover .title {
    text-transform: capitalize;
}
.games-container--3-columns .game {
    flex: 1 0 33.33%;
    max-width: 33.33%;
}
.spine-player,
.game__hover {
    pointer-events: none;
}
.game.hidden {
    display: none;
}
.game__hover__copyright {
    position: absolute;
    right: 10px;
    bottom: 26px;
    color: #6767c4;
}
.games-container--3-columns .game__hover__copyright {
    right: 8px;
    bottom: 12px;
}
.game:nth-child(6n + 1) {
    background-color: #bbd7f8;
}
.game:nth-child(6n + 2) {
    background-color: #fde4be;
}
.game:nth-child(6n + 3) {
    background-color: #bceaed;
}
.game:nth-child(6n + 4) {
    background-color: #fbc3f7;
}
.game:nth-child(6n + 5) {
    background-color: #fdbebe;
}
.game:nth-child(6n + 6) {
    background-color: #d7bfff;
}
.game .game-link_with_dataid img {
    margin-bottom: 100px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}
.game-type-toggles {
    display: flex;
    align-content: center;
    justify-content: center;
}
.game-type {
    margin: 10px 40px 30px;
    box-sizing: border-box;
    position: relative;
    color: #7f56d6;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    cursor: pointer;
}
.game-type.active::after,
.game-type:hover::after {
    content: "";
    width: 130%;
    height: 3px;
    background: #7f56d6;
    position: absolute;
    bottom: -20px;
    transform: translateX(-50%);
    left: 50%;
}
.games-simple-container--3-columns {
    display: flex;
    flex-flow: row wrap;
}
.games-simple-container li {
    width: 20%;
    text-align: center;
    margin: 20px auto;
}
.games-simple-container li.hidden {
    display: none;
}
.games-simple-container li a {
    text-decoration: none;
}
.games-simple-container li a img {
    max-width: 128px;
    height: initial;
}
.games-simple-container li .title {
    margin: 20px auto 10px;
    max-width: 80%;
    color: #2d0f6a;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
}
.games-simple-container li img {
    transition: 0.3s;
}
.games-simple-container li a:hover img {
    transform: scale(1.1);
}
.games-simple-container li a:hover .title {
    color: #7f56d6;
}
.game-description {
    margin: 70px 0 0;
    text-align: center;
}
.store-description__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}
.store-description__buttons a {
    display: block;
    text-decoration: none;
    margin: 0 8px;
}
.game-description__text {
    font-size: 16px;
    line-height: 30px;
}
.game-description__text h2 {
    font-size: 28px;
    line-height: 45px;
    text-transform: uppercase;
    margin: 40px;
}
.game-description__text p {
    max-width: 500px;
    margin: auto;
}
.other-games {
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize;
    font-feature-settings: "tnum" on, "onum" on;
    margin-bottom: 47px;
}
.game-video {
    text-align: center;
    margin: 70px 0 80px 0;
    display: block;
    position: relative;
}
.game__arrows {
    position: relative;
}
.game__bubble {
    transform: scale(0.05);
    transition: 0.8s;
    position: absolute;
}
.game__bubble.in-view {
    transform: scale(1);
}
.animated-on-sight.game__arrow.game__arrow--first.in-view {
    position: absolute;
    top: -273px;
    left: -36px;
}
.animated-on-sight.game__arrow.game__arrow--second.in-view {
    position: absolute;
    right: 102px;
    transform: scale(-1, 1);
    top: -190px;
}
.animated-on-sight.game__bubble.game__bubble--first.in-view {
    left: 21%;
    top: -10px;
}
.animated-on-sight.game__bubble.game__bubble--second.in-view {
    right: 7.5%;
    bottom: 15%;
}
.animated-on-sight.game__bubble.game__bubble--third.in-view {
    right: 21%;
    top: -220px;
}
.game__arrow {
    pointer-events: none;
}
.game__arrow--first.in-view .game__arrow__shaft {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: dash 2s linear forwards;
}
.game__arrow--first.in-view .game__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}
.game__arrow--second.in-view .game__arrow__shaft {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation-delay: 2, 5s !important;
    animation: dash 1.5s linear forwards;
}
.game__arrow--second.in-view .game__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1s !important;
    animation: dash 1.5s linear forwards;
}
.animated-on-sight.games__arrow.games__arrow--first {
    position: absolute;
    left: 7%;
    top: -58%;
    transform: rotate(3.142rad);
}
.animated-on-sight.games__arrow.games__arrow--second {
    position: absolute;
    left: 10%;
    bottom: -80%;
}
.animated-on-sight.games__arrow--first.in-view .games__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}
.animated-on-sight.games__arrow--second.in-view .games__arrow__shaft {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: dash 2s linear forwards;
    animation-delay: 0.8s;
}
.animated-on-sight.games__arrow--first.in-view .games__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.bubble {
    width: 13px;
    height: 13px;
    background: white;
    border-radius: 100px;
    border: 1px solid #b69bf1;
}

.bubble.animated-on-sight.in-view {
    animation: bubbleFade 3s;
    -webkit-animation: bubbleFade 3s;
    -moz-animation: bubbleFade 3s;
    -o-animation: bubbleFade 3s;
    -ms-animation: bubbleFade 3s;
}

.bubble img {
    width: 100%;
    height: auto;
    display: block;
}
.bubble.bubble--games_1 {
    position: absolute;
    left: 7%;
    bottom: -15%;
}
.bubble.bubble--games_2 {
    width: 17px;
    height: 17px;
    position: absolute;
    left: 20%;
    bottom: 15%;
}
.bubble.bubble--games_3 {
    width: 9px;
    height: 9px;
    position: absolute;
    bottom: -15%;
    left: 30%;
}

@keyframes bubbleFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@media screen and (min-width: 1400px) {
    .games-container--3-columns .game__hover__copyright {
        right: 8px;
        bottom: 18px;
    }
}
@media screen and (max-width: 1400px) and (min-width: 1320px) {
    .games-container--3-columns .game .game__character .spine__container {
        min-height: 440px;
    }
}
@media screen and (max-width: 1320px) and (min-width: 1060px) {
    .games-container--3-columns .game .game__character .spine__container {
        min-height: 360px;
    }
    .game .game-link_with_dataid img {
        margin-bottom: 80px;
    }
}
@media screen and (max-width: 1320px) {
    .game .game__character .spine__container {
        min-height: 550px;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view {
        right: 0;
    }
    .animated-on-sight.game__bubble.game__bubble--second.in-view {
        right: 0;
    }
    .animated-on-sight.game__bubble.game__bubble--third.in-view {
        right: 17%;
    }
}
@media screen and (max-width: 1060px) and (min-width: 968px) {
    .games-container--3-columns .game .game__character .spine__container {
        min-height: 330px;
    }
    .game .title {
        font-size: 20px;
    }
}
@media screen and (max-width: 1060px) {
    .game .game__character .spine__container {
        min-height: 500px;
    }
    .game .game-link_with_dataid img {
        margin-bottom: 60px;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view {
        right: -50px;
    }
    .animated-on-sight.game__bubble.game__bubble--second.in-view {
        right: -23px;
    }
    .animated-on-sight.game__bubble.game__bubble--third.in-view {
        right: 13%;
    }
}
@media screen and (max-width: 1000px) {
    .animated-on-sight.games__arrow.games__arrow--second {
        left: -3%;
    }
}
@media screen and (max-width: 968px) and (min-width: 860px) {
    .games-container--3-columns .game .game__character .spine__container {
        min-height: 299px;
    }
    .games-container--3-columns .game .title {
        font-size: 16px;
    }
    .games-container--3-columns .game .title {
        bottom: 12%;
    }
    .games-container--3-columns .game__hover__copyright {
        right: 8px;
        bottom: 18px;
    }
}
@media screen and (max-width: 968px) {
    .game .game__character .spine__container {
        min-height: 450px;
    }
}
@media screen and (max-width: 860px) {
    .game-description {
        flex-direction: column;
        margin: 100px 0 50px;
    }
    .store-description__buttons {
        margin: 20px 0;
    }
    .animated-on-sight.game__arrow.game__arrow--first.in-view {
        left: -201px;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view {
        right: -100px;
        top: -188px;
    }
    .animated-on-sight.games__arrow.games__arrow--first {
        top: -212px;
    }
    .animated-on-sight.games__arrow.games__arrow--second {
        left: -13%;
    }
    .games-simple-container li {
        width: 33%;
    }
    .game-description__text h2 {
        margin: 30px 0;
    }
    .games-container .game {
        height: 0;
        padding: 50% 0;
    }
    .game .game__character .spine__container {
        min-height: 620px;
    }
    .game .game-link_with_dataid img {
        margin-bottom: 120px;
        max-width: 85%;
        width: 85%;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view {
        right: -35%;
    }
    .animated-on-sight.game__bubble.game__bubble--third.in-view {
        right: 2%;
    }
    .animated-on-sight.game__bubble.game__bubble--second.in-view {
        display: none;
    }
    .game-video iframe {
        max-width: 520px;
        height: 290px;
        width: 100%;
    }
    .animated-on-sight.games__arrow.games__arrow--second {
        display: none;
    }
    .game-type-toggle-replacement-spacer {
        margin: 70px 0 0;
    }
    .games-container .game__hover__copyright {
        right: 8px;
        bottom: 36px;
        font-size: 12px;
    }
}
@media screen and (max-width: 600px) {
    .games-container .game__hover__copyright {
        right: 8px;
        bottom: 8px;
    }
    .store-description__buttons {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .animated-on-sight.games__arrow.games__arrow--second {
        left: -17%;
        transform: rotate(30deg);
        bottom: -61%;
    }
    .animated-on-sight.games__arrow.games__arrow--first {
        right: -79%;
        top: -190px;
    }
    .animated-on-sight.game__arrow.game__arrow--first.in-view {
        left: -270px;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view {
        right: -147px;
    }
    .store-description__buttons {
        flex-flow: column wrap;
        margin-top: 70px;
    }
    .store-description__buttons a {
        margin: 8px auto;
    }
    .game .game__character .spine__container {
        min-height: 450px;
    }
    .game-type {
        margin: 10px 15px 30px;
    }
    .game .game-link_with_dataid img {
        margin-bottom: 72px;
    }
    .game-video iframe {
        max-width: 450px;
        height: 250px;
    }
}
@media screen and (max-width: 480px) {
    .games-container .game__hover__copyright {
        right: 8px;
        bottom: 64px;
    }
    .games-container {
        margin-top: 30px;
    }
    .game-video iframe {
        max-width: 350px;
        height: 195px;
    }
    .animated-on-sight.game__arrow.game__arrow--first.in-view {
        display: none;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view {
        right: -15px;
        top: -14px;
    }
    .games-simple-container li {
        width: 50%;
    }
    .games__arrow {
        display: none;
    }
    .animated-on-sight.game__arrow.game__arrow--second.in-view,
    .animated-on-sight.game__bubble.game__bubble--first.in-view,
    .animated-on-sight.game__bubble.game__bubble--second.in-view {
        display: none;
    }
    .game:hover .title {
        display: block;
    }
    .game:hover .title.link {
        display: none;
    }
    .store-description__buttons {
        margin-top: 30px;
    }
    .game-type-toggles {
        margin: 50px 0;
    }
    .game .game__character .spine__container {
        min-height: 365px;
    }
    .game .game__hover .title {
        font-size: 19px;
        line-height: 24px;
        bottom: 22%;
        margin: auto;
    }
}
@media screen and (max-width: 350px) {
    .game .game__character .spine__container {
        min-height: 325px;
    }
    .games-container .game__hover__copyright {
        bottom: 52px;
    }
}

.join-team-intro {
    margin: 90px auto 75px;
}
.join-team-intro p {
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.08em;
    mix-blend-mode: normal;
    max-width: 755px;
    margin: 33px auto 0;
}
.join-team-intro h2 {
    margin: 0;
}
.open-positions {
    margin: 50px 0 70px;
}
.open-positions h2 {
    margin: 0;
}
.career-title {
    margin: 170px 0 40px 0;
}
.career-intro {
    text-align: center;
    position: relative;
    margin: 80px 0 0 0;
}
.career-intro__section {
    width: 100%;
}
.career-intro p {
    max-width: 750px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.08em;
    margin: 20px auto 0;
}
.career-intro h4 {
    margin: 80px auto 0;
    font-size: 24px;
    line-height: 45px;
    max-width: 750px;
}
.career-intro h2 {
    font-size: 28px;
    line-height: 35px;
    max-width: 750px;
    margin: 0 auto 0;
    text-align: justify;
}
.career-intro__section h1 {
    font-size: 20px;
    text-align: left;
    margin: 25px 0 10px 0;
    line-height: 25px;
}
.career-intro__section h1:nth-child(1) {
    margin: 0 0 10px 0;
}
.career-intro__section h5 {
    font-size: 16px;
    text-align: left;
    line-height: 20px;
}
.animated-on-sight.career__arrow.in-view {
    position: absolute;
    right: 2%;
    top: 13%;
    transform: rotate(6.1468rad);
}
.career__arrow {
    pointer-events: none;
}
.career__arrow svg {
    max-width: 100%;
}
.animated-on-sight.career__arrow.in-view .career__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}
.animated-on-sight.career__arrow.in-view .career__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.bubble.bubble--career_2 {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 9%;
    bottom: -225%;
}
.bubble.bubble--career_1 {
    position: absolute;
    left: 17%;
    bottom: -161%;
}
.bubble.bubble--career_3 {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 8%;
    bottom: -147%;
}

.career-header {
    position: relative;
    min-height: 30vw;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.career-header .container {
    height: 30vw;
}
.join-team-gallery {
    margin: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-team-gallery-column {
    margin: 0 12px;
}
.join-team-gallery-column:nth-of-type(1) {
    margin-left: 0;
}
.join-team-gallery-column:nth-of-type(2) {
    margin-right: 0;
}
.join-team-gallery-column .join-team-gallery__item img {
    margin: 12px 0;
    max-width: 100%;
    width: 100%;
    height: initia;
}
.pre-stats-arrow {
    position: relative;
    display: none;
}
.career-open-positions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.career__position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 50%;
    position: relative;
    flex-direction: column;
    color: #fff;
    height: 0; /*! keeping aspect ratio */
    padding: 25% 20px;
    box-sizing: border-box;
    align-content: center;
    justify-content: center;
}
.career__position a.link {
    margin-top: 50px;
}
.career-description-container {
    position: relative;
}
.career-position-container {
    /*position: relative;*/
    padding: 50px 30px 20px 80px;
}
.animated-on-sight.career-arrow {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
}
.career__position__location {
    font-weight: bold;
    font-size: 18px;
    line-height: 58px;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.career__position__title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: capitalize;
}
.career__position:nth-child(6n + 1) {
    background-color: #fb9f9f;
}
.career__position:nth-child(6n + 2) {
    background-color: #93aff7;
}
.career__position:nth-child(6n + 3) {
    background-color: #fbd69f;
}
.career__position:nth-child(6n + 4) {
    background-color: #f2a1ed;
}
.career__position:nth-child(6n + 5) {
    background-color: #81d5db;
}
.career__position:nth-child(6n + 6) {
    background-color: #c09ef8;
}
.career-position-header {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 600px;
}
.header__video.career-position video {
    filter: brightness(100%);
}
.career-position-header__location {
    font-weight: bold;
    font-size: 18px;
    line-height: 58px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.career-position-header__name {
    font-weight: bold;
    font-size: 48px;
    line-height: 63px;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    max-width: 500px;
}
.position__header {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.08em;
    margin: 30px 0;
    text-transform: uppercase;
}
.career-position-three-col a {
    color: #000;
    text-decoration: none;
    text-transform: lowercase;
}
.you-will {
    margin-top: 70px;
}
.apply-row {
    margin: 112px 0 0;
}
.animated-on-sight.stats__bubble.career-bubble--first {
    right: 10%;
    top: 10%;
}
.animated-on-sight.stats__bubble.career-bubble--second {
    right: 10%;
    bottom: 30%;
    transform: translateY(-50%);
}
ul.position__list {
    list-style: none;
    margin-left: 15px;
    max-width: 700px;
}
ul.position__list li {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.08em;
}
ul.position__list li::before {
    content: "\2022";
    color: #000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
ul.position__list.d-c--light-blue li::before {
    color: #bbd7f8;
}
ul.position__list.d-c--light-red li::before {
    color: #fdbebe;
}
ul.position__list.d-c--light-pink li::before {
    color: #fbc3f7;
}
.career-position-three-col div {
    margin: 25px 0;
}
.career-position-three-col div.bold {
    text-transform: capitalize;
}
.career-position-three-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.career__position__arrow,
.career__position__bubble {
    position: absolute;
}
.career__position:nth-of-type(4n + 1) .career__position__bubble {
    top: 17%;
    right: 25%;
}
.career__position:nth-of-type(4n + 1) .career__position__arrow {
    right: 14%;
    top: 5%;
}
.career__position:nth-of-type(4n + 2) .career__position__bubble {
    left: 25%;
    top: 18%;
}
.career__position:nth-of-type(4n + 2) .career__position__arrow {
    right: 11%;
    top: 7%;
}
.career__position:nth-of-type(4n + 3) .career__position__bubble {
    top: 12%;
    right: 17%;
}
.career__position:nth-of-type(4n + 3) .career__position__arrow {
    transform: scale(-1);
    top: -5%;
    right: 15%;
}
.career__position:nth-of-type(4n + 4) .career__position__bubble {
    top: 28%;
    right: 35%;
}
.career__position:nth-of-type(4n + 4) .career__position__arrow {
    transform: rotate(51deg) scale(-1, 1);
    top: -5%;
    right: 15%;
}
.career__position__arrow.in-view .career__arrow__shaft {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: dash 2s linear forwards;
}
.career__position__arrow.in-view .career__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.4s !important;
    animation: dash 2s linear forwards;
}
@media screen and (max-width: 1320px) {
    .animated-on-sight.career__position__arrow::nth-of-type(2n + 1) {
        right: 0%;
        top: auto;
        bottom: 0;
        max-width: 260px;
    }
    .career__position__arrow {
        top: 0;
        max-width: 270px;
    }
    .career__position__title {
        font-size: 34px;
    }
    .animated-on-sight.career-arrow {
        right: -10%;
    }
}
@media screen and (max-width: 1000px) {
    .animated-on-sight.career-arrow {
        right: -18%;
    }
    .animated-on-sight.stats__bubble.career-bubble--first {
        right: 7%;
    }
    .animated-on-sight.stats__bubble.career-bubble--second {
        right: 4%;
    }
    .career-header {
        min-height: 350px;
    }
    .career-header .container {
        height: 350px;
    }
    .career-header .career-position-header__location {
        font-size: 16px;
        line-height: 13px;
    }
    .career-header .career-position-header__name {
        font-weight: bold;
        font-size: 31px;
        line-height: 41px;
    }
    .career-position-header {
        top: 60%;
        max-width: 400px;
    }
}
@media screen and (max-width: 1000px) and (min-width: 968px) {
    .career__position__arrow {
        max-width: 50%;
    }
    .career__position__bubble {
        max-width: 25px;
    }
    .career-position-container {
        padding: 15% 2% 2% 8%;
    }
}
@media screen and (max-width: 968px) {
    .career__position__bubble {
        max-width: 25px;
    }
}
@media screen and (max-width: 968px) and (min-width: 860px) {
    .career__position {
        flex: 0 0 50%;
    }
    .career__position__arrow {
        top: 0;
        max-width: 190px;
    }
    .career__position__title {
        font-size: 29px;
        line-height: 38px;
    }
    .career__position__bubble {
        max-width: 22px;
    }
    .career__position__location {
        font-size: 16px;
        line-height: 41px;
    }
    .career__position:nth-of-type(4n + 4) .career__position__bubble {
        top: 28%;
        right: 35%;
    }
    .career__position:nth-of-type(4n + 2) .career__position__bubble {
        left: auto;
        right: 15%;
    }
    .career__position:nth-of-type(4n + 1) .career__position__bubble {
        right: 20%;
    }
    .career__position:nth-of-type(4n + 4) .career__position__bubble {
        right: 27%;
    }
}
@media screen and (min-width: 860px) {
    .career-header .career-header-arrow {
        display: none;
    }
}
@media screen and (max-width: 860px) {
    .career__position {
        flex: 0 0 100%;
    }
    .career-header {
        background-image: none !important;
    }
    .career-header .career-header-arrow {
        display: block;
        position: absolute;
        right: 0;
        top: -22%;
    }
    .career-description-container .career-arrow,
    .career-description-container .career-bubble--first,
    .career-description-container .career-bubble--second {
        display: none;
    }
    .join-team-gallery {
        flex-direction: column;
    }
    .join-team-gallery-column {
        margin: 0 5px;
    }
    .join-team-gallery-column .join-team-gallery__item img {
        margin: 5px 0;
    }
    .career__position__arrow {
        max-width: 172px;
    }
    .career__position__arrow {
        top: 3%;
    }
    .career__position__title {
        font-size: 30px;
        line-height: 32px;
    }
    .career__position__location {
        font-size: 16px;
        line-height: 38px;
    }
    .career-position-three-col {
        flex-direction: column;
    }
    .career-position-three-col div {
        margin: 10px 0;
    }
    .career__position {
        padding: 50% 20px;
    }
    .header__video {
        min-height: auto;
    }
}
@media screen and (max-width: 860px) and (min-width: 600px) {
    .career__position__arrow svg {
        max-width: 200px;
    }
    .career__position__bubble {
        max-width: 26px;
    }
    .career__position:nth-of-type(4n + 1) .career__position__bubble {
        top: 14%;
        right: 15%;
    }
    .career__position:nth-of-type(4n + 2) .career__position__bubble {
        left: auto;
        top: 14%;
        right: 15%;
    }
    .career__position:nth-of-type(4n + 3) .career__position__bubble {
        right: 22%;
    }
    .career__position:nth-of-type(4n + 4) .career__position__bubble {
        top: 25%;
        right: 29%;
    }
}
@media screen and (max-width: 600px) {
    .career__position__arrow svg {
        max-width: 150px;
    }
    .career__position__bubble svg {
        max-width: 17px;
    }
    .career__position:nth-of-type(4n + 3) .career__position__bubble {
        top: 12%;
        right: 23%;
    }
    .career__position:nth-of-type(4n + 1) .career__position__bubble {
        top: 12%;
        right: 21%;
    }
}
@media screen and (max-width: 600px) {
    .career__position {
        padding: 50% 20px;
    }
    .career-position-container {
        padding: 20% 5% 5% 8%;
    }
    .career__position__title {
        line-height: 25px;
    }
    .career__position a.link {
        margin-top: 30px;
    }
    .career-header .career-header-arrow {
        max-width: 250px;
        top: -9%;
    }
}
@media screen and (max-width: 480px) {
    .career__position__title {
        font-size: 25px;
    }
    .career__position__location {
        font-size: 14px;
    }
}
h2 {
    margin: 80px 0;
    text-align: center;
}
.about-intro {
    text-align: center;
    position: relative;
    margin: 80px 0 0 0;
}
.about-intro__section {
    width: 100%;
}
.about-intro p {
    max-width: 750px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.08em;
    margin: 20px auto 0;
}
.about-intro h4 {
    margin: 80px auto 0;
    font-size: 24px;
    line-height: 45px;
    max-width: 750px;
}
.about-intro h2 {
    font-size: 28px;
    line-height: 35px;
    max-width: 750px;
    margin: 0 auto 0;
    text-align: justify;
}
.about-intro__section h1 {
    font-size: 20px;
    text-align: left;
    margin: 25px 0 10px 0;
    line-height: 25px;
}
.about-intro__section h1:nth-child(1) {
    margin: 0 0 10px 0;
}
.about-intro__section h5 {
    font-size: 16px;
    text-align: left;
    line-height: 20px;
}
.animated-on-sight.intro__arrow.in-view {
    position: absolute;
    left: 2%;
    top: 13%;
    transform: rotate(3.3384rad);
}
.intro__arrow {
    pointer-events: none;
}
.intro__arrow svg {
    max-width: 100%;
}
.animated-on-sight.intro__arrow.in-view .intro__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}
.animated-on-sight.intro__arrow.in-view .intro__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.bubble.bubble--about_2 {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 20%;
    bottom: 58%;
}
.bubble.bubble--about_1 {
    position: absolute;
    left: 0;
    bottom: 35%;
}
.bubble.bubble--about_3 {
    position: absolute;
    left: 30%;
    bottom: 16%;
}

.about-stats {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 100px 0 100px 0;
}
.stat {
    width: 395px;
    height: 260px;
    position: relative;
}
.stat img {
    width: 100%;
    height: auto;
    display: block;
}
.stat__column {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.stat__column.stat__column--2 {
    left: 4%;
}
.stat__title {
    color: black;
    font-size: 23px;
    font-weight: 700;
}
.stat.stat--1 .stat__column, .stat.stat--3 .stat__column {
    right: 12%;
}
.stat.stat--2 .stat__column {
    left: 5%;
}
.stat.stat--1 .stat__title {
    color: #39868D;
}
.stat.stat--2 .stat__title {
    color: #7A3A7D;
}
.stat.stat--2 {
    margin: 0 15px 0 -45px;
}
.stat.stat--3 .stat__title {
    color: #31437A;
}
.stat__value {
    font-size: 70px;
    color: white;
    font-weight: 700;
    margin: 13px 0 0 0;
}
.stat__sub_value {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
img.hp_stat--mobile {
    display: none!important;
}

.bubble.bubble--stat_1 {
    position: absolute;
    left: -16%;
    bottom: 15%;
}

.bubble.bubble--stat_2 {
    position: absolute;
    left: 35%;
    top: -20%;
}
.bubble.bubble--stat_3 {
    width: 25px;
    height: 25px;
    position: absolute;
    right: -7%;
    top: -15%;
}
.bubble.bubble--stat_4 {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 30%;
    bottom: -7%;
}
.bubble.bubble--stat_5 {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 19%;
}
.animated-on-sight.stat__arrow.in-view {
    position: absolute;
    left: -5%;
    bottom: -40%;
    transform: rotate(3.2093rad) scaleX(-1);
}
.stat__arrow {
    pointer-events: none;
}
.stat__arrow.in-view .stat__arrow__shaft {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation-delay: 2, 5s !important;
    animation: dash 1.5s linear forwards;
}
.stat__arrow.in-view .stat__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1s !important;
    animation: dash 1.5s linear forwards;
}








.animated-on-sight.academy__arrow.in-view {
    position: absolute;
    left: 4%;
    top: -4%;
    transform: rotate(3.3384rad);
}
.academy__arrow {
    pointer-events: none;
}
.academy__arrow svg {
    max-width: 100%;
}
.animated-on-sight.academy__arrow.in-view .academy__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}
.animated-on-sight.academy__arrow.in-view .academy__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.bubble.bubble--academy_1 {
    position: absolute;
    left: 3%;
    bottom: 37%;
}

.bubble.bubble--academy_2 {
    position: absolute;
    left: 14%;
    bottom: 71%;
}

.bubble.bubble--academy_3 {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 30%;
    bottom: 44%;
}

.bubble.bubble--academy_4 {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 15%;
    bottom: -11%;
}

section#academy_positions {
    background: #f2a1ed;
    margin: 80px 0 0 0;
}

.academy_positions__sections {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.academy_positions__section.academy_positions__section--first {
    padding: 0 0 30px 0;
}

.academy_positions__section.academy_positions__section--second {
    position: relative;
}

img.academy_owl {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    display: block;
}


img.academy_circle {
    width: 100%;
    height: auto;
    display: block;
}




.academy_apply {
    position: relative;
    margin: 40px 0 120px 0;
}

.academy_apply .description {
    margin: 40px 0 0 0;
}

.academy_position__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 10px 0 0 0;
}

.academy_position__item_bullet {
    width: 11px;
    height: 11px;
    background: white;
    border-radius: 50%;
    margin: 3px 20px 0 0;
    min-width: 11px;
    min-height: 11px;
}

.academy_position__item_title {
    font-size: 19px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.academy_position__item_title b {
    font-weight: bold;
}

h2.academy_positions__title {
    font-size: 28px;
    line-height: 35px;
    max-width: 750px;
    text-align: left;
    font-weight: bold;
    margin: 30px 0 30px 0;
}

.animated-on-sight.academy2__arrow.in-view {
    position: absolute;
    left: 13%;
    top: -70%;
    transform: rotate(3.4475rad);
}

.academy2__arrow {
    pointer-events: none;
}

.academy2__arrow svg {
    max-width: 100%;
}

.animated-on-sight.academy2__arrow.in-view .academy2__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}

.animated-on-sight.academy2__arrow.in-view .academy2__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 0.7s !important;
    animation: dash 2s linear forwards;
}

.bubble.bubble--academy2_1 {
    position: absolute;
    left: 28%;
    top: 13%;
}

.bubble.bubble--academy2_2 {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 24%;
    top: 0;
}

.animated-on-sight.academy3__arrow.in-view {
    position: absolute;
    right: 12%;
    top: -144%;
    transform: rotate(0.0602rad);
}

.academy3__arrow {
    pointer-events: none;
}

.academy3__arrow svg {
    max-width: 100%;
}

.animated-on-sight.academy3__arrow.in-view .academy3__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}

.animated-on-sight.academy3__arrow.in-view .academy3__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.center-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.center-title h2.bold {
    margin: 0 0 15px 0;
}

h1.sub-title {
    line-height: 20px;
    font-size: 16px;
    color: #000000;
}
h1.sub-title.sub-title--hp {
    margin: 0 0 30px 0;
}
.gallery {
    margin: 30px 0 0 0;
}
.gallery_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.gallery_row__item {
    width: 100%;
}
.gallery_row__item img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery_row__item.gallery_row__item--2 {
    margin: 0 20px 20px 20px;
}
.gallery_row__item.gallery_row__item--7 {
    margin: 0 20px 0 20px;
}
.gallery_row.gallery_row--2 {
    margin: 0 0 20px 0;
}
.gallery_row__item.gallery_row__item--5 {
    width: 80%;
}
.gallery_row__item.gallery_row__item--4 {
    margin: 0 20px 0 0;
}

.text-button {
    color: #432E79;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all ease 0.7s;
    -o-transition: all ease 0.7s;
    transition: all ease 0.7s;
}
.text-button:hover  {
    color: #FF74C7;
}
.text-button:hover .text-value:before {
    border-bottom: 2px solid #FF74C7;
}
.text-button span {
    position: relative;
}
.text-value:before {
    -webkit-transition: all ease 0.7s;
    -o-transition: all ease 0.7s;
    transition: all ease 0.7s;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 107px;
    border-bottom: 2px solid #432E79;
}

.text-val {
    position: relative;
    display: inline;
}
.text-button:hover .text-val:before {
    border-bottom: 2px solid #FF74C7;
}

.text-val:before {
    -webkit-transition: all ease 0.7s;
    -o-transition: all ease 0.7s;
    transition: all ease 0.7s;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 216px;
    border-bottom: 2px solid #432E79;
}

.text-button.text-button--apps.open .text-value:before {
    width: 101px;
}

.text-button.open span {
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 118px;
    border-bottom: 2px solid #432E79;
}
.text-button.text-button--employee {
    margin: 30px 0 0 0;
}
.text-button i.fas.fa-chevron-down {
    font-size: 15px;
    margin: 0 0 0 2px;
}
.the-people h2 {
    margin: 50px 0 50px 0;
}
.employee-list {
    display: none;
}
.employee-list.open {
    display: block;
}
i.fas.fa-chevron-down.open {
    transform: rotate(180deg);
}
.join-our-team-title h2 {
    margin: 40px 0 30px 0;
}

.directors {
    margin: 6% 0 3% 0;
}

.director {
    margin: 0 2% 0 2%;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.director .image {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
}

.director .image img {
    width: 240px;
    background: #c09ef8;
}

.director name {
    display: block;
    margin: 10px auto 5px;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.05em;
}

.director job-title {
    display: block;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 11px auto 30px;
}

.director .image img {
    background: #c09ef8;
}

.center-title.directors-title h1.sub-title {
    text-align: center;
    max-width: 725px;
}

@media only screen and (max-width: 1320px) {
    .director .image {
        width: 220px;
        height: 220px;
    }
    .director .image img {
        width: 220px;
    }
}

@media only screen and (max-width: 1060px) {
    .director .image {
        width: 200px;
        height: 200px;
    }
    .director .image img {
        width: 200px;
    }
}

@media only screen and (max-width: 968px) {
    .director job-title {
        font-size: 14px;
        line-height: 20px;
        margin: 5px auto 30px;
    }
    .director .image {
        width: 176px;
        height: 176px;
    }
    .director .image img {
        width: 176px;
    }
}

@media only screen and (max-width: 860px) {
    .row {
        justify-content: center;
    }
    .directors {
        margin: 13% 0 3% 0;
    }
    .center-title.directors-title h1.sub-title {
        text-align: justify;
        text-align-last: center;
        max-width: 100%;
    }
    .director {
        margin: 0 7% 0 7%;
    }
    .director job-title {
        line-height: 15px;
        margin: 0 auto 30px;
    }
}

@media only screen and (max-width: 600px) {
    .director .image {
        width: 155px;
        height: 155px;
    }
    .director .image img {
        width: 155px;
    }
}

@media only screen and (max-width: 500px) {
    .director name {
        font-size: 13px;
        line-height: 23px;
        letter-spacing: 0.05em;
    }
    .director job-title {
        margin: 4px auto 30px;
    }
    .director job-title {
        font-size: 13px;
    }
}

@media only screen and (max-width: 480px) {
    .row {
        justify-content: space-between;
    }
    .director {
        margin: 0 0% 0 0%;
    }
    .director .image {
        width: 130px;
        height: 130px;
    }
    .director .image img {
        width: 130px;
    }
    .director job-title {
        font-size: 12px;
    }
}

@media only screen and (max-width: 340px) {
    .row {
        justify-content: center;
    }
    .director .image {
        width: 200px;
        height: 200px;
    }
    .director .image img {
        width: 200px;
    }
}

.map {
    height: 324px;
    max-width: 700px;
    background: gray;
    width: 100%;
}
div#map-mobile {
    display: none;
}
.contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 100px 0 100px 0;
}
.contacts__columns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts_column.contacts_column--1 {
    margin: 0 50px 0 0;
}
.contacts_column__row {
    margin: 0 0 25px 0;
}
h2.contacts_column__title {
    text-align: left;
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 15px 0;
}
h1.contacts_column__sub_title {
    font-weight: 700;
    font-size: 16px;
}
h1.contacts_column__sub_title {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 10px 0;
}
.contacts_column__text.contacts_column__text--link {
    text-decoration: underline 1px;
    cursor: pointer;
}
.contacts__image {
    margin: 0 20px 0 0;
}
.contacts__image img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    min-width: 550px;
}

section.apps {
    position: relative;
    background: white;
    z-index: 2;
    margin: auto;
}

.center-title.center-title--hp {
    margin: 50px 0 0 0;
}
.center-title.center-title--games {
    margin: 50px 0 0 0;
}
.center-title.center-title--reviews {
    padding: 50px 0 0 0;
}
.text-button.text-button--apps {
    padding: 0 0 65px 0;
}

.hp-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 40px 0 100px 0;
}

.hp_stat {
    width: 395px;
    height: 260px;
    position: relative;
}

.hp_stat img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
}
.hp_stat__row {
    position: absolute;
}
.hp_stat.hp_stat--1 {
    margin: 0 -60px 0 0;
}
.hp_stat__column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.hp_stat__title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
.hp_stat.hp_stat--1 .hp_stat__title {
    color: #39868D;
}
.hp_stat.hp_stat--2 .hp_stat__title {
    color: #7A3A7D;
}
.hp_stat.hp_stat--3 .hp_stat__title {
    color: #31437A;
}

.hp_stat.hp_stat--1 .hp_stat__row {
    bottom: -8%;
    right: -34%;
}

.hp_stat__value {
    font-size: 16px;
    color: white;
    font-weight: 700;
    line-height: 20px;
}
.hp_stat.hp_stat--1 .hp_stat__value {
    max-width: 170px;
    text-align: left;
}
.hp_stat.hp_stat--2 .hp_stat__value {
    max-width: 200px;
    text-align: right;
}
.hp_stat.hp_stat--3 .hp_stat__value {
    max-width: 200px;
    text-align: left;
}

.hp_stat.hp_stat--1 .hp_stat__row {
    bottom: 22%;
    right: 16%;
}
.hp_stat.hp_stat--2 .hp_stat__row {
    top: 7%;
    left: 12%;
}
.hp_stat.hp_stat--3 .hp_stat__row {
    bottom: 22%;
    left: 8%;
}

.hp_stat.hp_stat--2 .hp_stat__column {
    align-items: end;
}

.hp_stat.hp_stat--1 .hp_stat__column, .hp_stat.hp_stat--3 .hp_stat__column {
    align-items: baseline;
}

img.hp_stat__column_img-1 {
    width: 195px;
    position: absolute;
    top: 0;
    left: -9%;
}

img.hp_stat__column_img-2 {
    width: 144px;
    position: absolute;
    top: 0;
    right: -2%;
}

img.hp_stat__column_img-3 {
    width: 155px;
    position: absolute;
    top: 0;
    right: 3%;
}

.animated-on-sight.hp_stat__arrow.in-view {
    position: absolute;
    left: 50%;
    top: -45%;
}
.hp_stat__arrow {
    pointer-events: none;
}
.hp_stat__arrow.in-view .hp_stat__arrow__shaft {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation-delay: 2, 5s !important;
    animation: dash 1.5s linear forwards;
}
.hp_stat__arrow.in-view .hp_stat__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1s !important;
    animation: dash 1.5s linear forwards;
}

.animated-on-sight.hp_stat__arrow2.in-view {
    position: absolute;
    bottom: -48%;
    transform: rotate(2.7531rad);
    right: -24%;
}

.hp_stat__arrow2 {
    pointer-events: none;
}

.hp_stat__arrow2 svg {
    max-width: 100%;
}

.animated-on-sight.hp_stat__arrow2.in-view .hp_stat__arrow2__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}

.animated-on-sight.hp_stat__arrow2.in-view .hp_stat__arrow2__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.bubble.bubble--hp_stat_1 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 19px;
    height: 19px;
}

.bubble.bubble--hp_stat_2 {
    position: absolute;
    left: 17%;
    width: 19px;
    height: 19px;
    bottom: -5%;
}

.bubble.bubble--hp_stat_3 {
    width: 28px;
    height: 28px;
    position: absolute;
    top: -19%;
    right: 0;
}

.bubble.bubble--hp_stat_4 {
    width: 19px;
    height: 19px;
    position: absolute;
    right: 42%;
    bottom: -15%;
}











.reviews {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto 0 auto;

}

.review {
    position: relative;
    background: #AABDF9;
    width: 320px;
    height: 320px;
    display: block;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 1px 5px rgb(63 39 115 / 40%);
}

.review.review--2 {
    background: #CDB9F6;
}

.review.review--2, .review.review--5 {
    background: #CDB9F6;
}

.review.review--3 {
    background: #A4E5EB;
}

.review.review--4 {
    background: #E6A5E9;
}

.review__stars {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.review__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    margin: 30px 0 30px 0;
    color: #1D3D6C;
    letter-spacing: 0.02em;
}

.review.review--2 .review__description, .review.review--5 .review__description {
    color: #40217F;
}
.review.review--3 .review__description {
    color: #145E65;
}
.review.review--4 .review__description {
    color: #7A3A7D;
}

.review_bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.review__author {
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #1D3D6C;
    position: absolute;
    bottom: 10%;
    left: 6%;
}

.review.review--2 .review__author, .review.review--5 .review__author {
    color: #40217F;
}
.review.review--3 .review__author {
    color: #145E65;
}
.review.review--4 .review__author {
    color: #7A3A7D;
}

.review__image {
    position: absolute;
    bottom: 0;
    right: 0;
}
.review.review--1 .review__image {
    bottom: 3%;
    right: 4%;
}
.review.review--2 .review__image {
    bottom: -6%;
    right: 5%;
}
.review.review--3 .review__image {
    bottom: -2%;
    right: 10%;
}
.review.review--4 .review__image {
    bottom: 5%;
    right: 8%;
}
.review.review--5 .review__image {
    bottom: 3%;
    right: 8%;
}
.review.review--6 .review__image {
    bottom: 3%;
    right: 8%;
}

.slick-track {
    padding: 5px 0 5px 0;
}

.slick-list {
    max-width: 1140px;
    margin: auto !important;
}

.slick-slide {
    width: 320px!important;
    height: 320px!important;
    margin: 0 30px 0 30px!important;
}

ul.slick-dots {
    display: flex!important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 0;
}

.slick-dots li {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-indent: -9999px;
    background: #E0E0E0;
    margin: 0 4px 0 4px;
}

li.slick-active {
    background: #BCBCBC;
}

.slick-arrow {
    cursor: pointer;
}

.slick-next.slick-arrow {
    position: absolute;
    right: 0;
    top: 37%;
}
.slick-prev.slick-arrow {
    position: absolute;
    left: 0;
    top: 37%;
}


@media screen and (max-width: 1325px) {
    .slick-list {
        max-width: 760px;
    }
}
@media screen and (max-width: 861px) {

    .slick-list {
        max-width: 380px;
    }
}
@media screen and (max-width: 560px) {
    .slick-arrow {
        display: none!important;
    }
}
@media screen and (max-width: 480px) {

}

.width {
    max-width: 1300px;
    margin: auto;
}

.applications {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background: white;
    margin: 30px auto 0 auto;
}

.application {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 0 20px 0;
    z-index: 1;
}

.application:nth-child(-n+35) {
    display: flex;
}

.applications.open .application {
    display: flex;
}

.application img {
    transition: 0.3s;
    width: 128px;
    height: 128px;
    display: block;
}

.application:hover img {
    transform: scale(1.1);
}

.application__title {
    color: #2e0f6a;
    font-size: 15px;
    text-align: center;
    width: 190px;
    margin: 15px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    height: 40px;
}

.text-button.open .text-value:after {
    content: 'Show Less';
}

.text-button.open span {
    display: none;
}

.text-value {
    display: inline;
    position: relative;
}

@media only screen and (max-width: 1310px) {
    .application__title {
        font-size: 14px;
        width: 180px;
    }
    .application img {
        width: 100px;
        height: 100px;
    }
}

@media only screen and (max-width: 380px) {
    .application__title {
        font-size: 9px;
        width: 140px;
    }
    .application img {
        width: 75px;
        height: 75px;
    }
}

section.users_reviews {
    background: white;
    position: relative;
}

.subs_ben_bg_container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.subs_ben_bg {
    position: relative;
    height: auto;
    background-image: url(../images/subscription_benefits_bg.png);
    margin: 0 0 0 0;
    background-repeat: repeat;
    background-size: cover;
    width: 100%;
}

.subs_ben_bg_container img {
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    transform: rotate(8.66deg);
    left: -32%;
    top: -12%;
}

.subs_ben_bg_item {
    max-width: 630px;
    margin: 0 0 21px 0;
}

.subs_ben_bg_column__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    margin: 35px 0 25px 0;
}

.subs_ben_bg_column__dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50px;
    display: inline-block;
    margin: 0 0 3px 0;
}

.subs_ben_bg_item__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.subs_ben_bg_item__text {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0 15px;
    max-width: 550px;
}

.subs_ben_bg__button {
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    font-size: 21px;
    border-radius: 163px;
    background: linear-gradient(to top, #2D0F6A 50%, rgba(255,255,255,0) 50%);
    background-size: 100% 200%;
    transition: all .3s ease-out;
    background-position: bottom left;
    color: #fff;
    max-width: 300px;
    width: 100%;
    font-weight: 700;
    margin: 38px 0 36px 0;
    cursor: pointer;
    box-shadow: 0px 3px 8px rgb(63 39 115 / 30%);
    text-align: center;
}

.subs_ben_bg__button--place {
    margin: 0 24% 0 0;
}

.container.container--reviews {
    background: white;
}

.newsletter {
    position: relative;
    height: auto;
    background-image: url(../images/newsletter.png);
    margin: 50px 0 0 0;
    background-repeat: repeat;
    background-size: cover;
    width: 100%;
}

.newsletter__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.newsletter_title {
    color: #145E65;
    font-size: 36px;
    font-weight: 400;
}

.newsletter_subtitle {
    color: #145E65;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter_description {
    color: #147680;
    font-size: 16px;
    font-weight: 400;
    max-width: 350px;
    margin: 25px 0 55px 0;
}

.newsletter_input {
    display: flex;
    flex-direction: row;
    align-items: center;
}

input.newsletter_input__text {
    font-family: 'Montserrat';
    background: #FAF8FF;
    border-radius: 26px;
    height: 52px;
    border: none;
    max-width: 350px;
    width: 100%;
    padding: 0 0 0 25px;
    font-size: 14px;
    font-weight: 400;
    color: #898989;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

button.newsletter_input__button {
    background: #145E65;
    border-radius: 0 26px 26px 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    border: navajowhite;
    height: 52px;
    padding: 0 15px 0 15px;
    cursor: pointer;
}

.newsletter_input.newsletter_input--subscribed {
    background: #145E65;
    border-radius: 26px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    border: navajowhite;
    height: 52px;
    padding: 0 15px 0 15px;
    cursor: pointer;
    justify-content: center;
}

.newsletter_input.newsletter_input--subscribed i {
    margin: 0 7px 0 0;
    font-size: 18px;
}

input.newsletter_input__text.newsletter_error, input.newsletter_popup__text.newsletter_field.newsletter_error {
    border: 2px solid #FF007A;
}

.newsletter_popup__image_mobile {
    display: none;
}
.newsletter_popup__image_mobile.newsletter_popup__image_mobile--subscribed {
    margin: -10px 0 0 0;
}

.newsletter__column img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 0 35px;
}

.newsletter__agreement_text {
    color: #147680;
    font-weight: 400;
    font-size: 11px;
    line-height: 12px;
}

.newsletter__agreement.newsletter__agreement--error .newsletter__agreement_text{
    color: #FF007A!important;
}

.newsletter__agreement.newsletter__agreement--error .checkmark {
    border: 1px solid #FF007A;
    background-color: #ffd8ef;
}

.newsletter .newsletter__agreement.newsletter__agreement--error .checkmark {
    background-color: #37ccd3;
}

.newsletter__agreement {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 350px;
    margin: 18px 0 0 0;
}

.newsletter__agreement_text a {
    text-decoration: underline!important;
}

.newsletter__agreement_checkbox {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.newsletter__agreement_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: #44d1d7;
    border: 1px solid #147680;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.newsletter__agreement_checkbox input:checked ~ .checkmark:after {
    display: block;
    font-size: 25px;
}

.newsletter__agreement_checkbox .checkmark:after {
    content: "";
    width: 15px;
    height: 19px;
    background: url(../../assets/images/checkmark.svg) no-repeat;
    top: -8px;
    right: -6px;
    background-size: 12px 20px;
}

.newsletter__agreement_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.faq_background {
    background: #c09ef8;
}

.faq {
    position: relative;
    background-image: url("../../images/tutoclub/banner/faq.png");
    background-size: cover;
    height: 200px;
    margin: 50px auto auto auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.faq .description {
    margin: 0 0 10px 0;
}

.animated-on-sight.faq__arrow.in-view {
    position: absolute;
    right: 7%;
    top: -35%;
    transform: rotate(3.0451rad) scaleX(-1);
}

.faq__arrow {
    pointer-events: none;
}

.faq__arrow svg {
    max-width: 100%;
}

.animated-on-sight.faq__arrow.in-view .faq__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}

.animated-on-sight.faq__arrow.in-view .faq__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}


.center-title.center-title--faq {
    position: relative;
}

.membership, .subscription {
    max-width: 830px;
}

.membership .description {
    text-align: left;
}

.membership .title {
    margin: 50px 0 30px 0;
}

.membership .description {
    text-align: left;
    margin: 10px 0 20px 0;
    text-indent: 30px;
    font-weight: 300;
}

.subscription {
    display: none;
}

.subscription__title {
    color: #a87eed;
    margin: 40px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 19px;
    text-align: left;
    max-width: 800px;
}

#subscription {
    margin: 0 auto 0 auto;
}

.text {
    font-size: 19px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.text--bold {
    font-weight: bold;
}

.text.text--bottom {
    margin: 0 0 5px 0;
}

.text--margin {
    margin: 15px 0 5px 0;
}

.text--inline {
    display: inline-block;
}

.faq--red {
    display: inline;
    color: red;
}

.subscription .description {
    text-align: left;
}

.description {
    color: #000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 400;
}

.description.description--red {
    color: red;
}

.description.description--top {
    margin: 40px 0 0 0;
}

.description.description--bottom {
    margin: 0 0 20px 0;
}

.description a, .description b {
    font-weight: bold;
}

a, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none !important;
}

.padding_top {

}

.list_item.list_item--subscription {
    max-width: 450px;
}

.list_item__title.list_item__title--red {
    color: red;
}

.big_button {
    background: #33186f;
    color: white;
    padding: 17px;
    max-width: 215px;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-weight: 700;
    text-align: center;
    font-size: 21px;
    line-height: 110%;
    margin: 0 auto 0 auto;
    letter-spacing: -0.005em;
    box-shadow: 0px 3px 8px rgb(63 39 115 / 30%);
}

.center-title.center-title--faq h2 {
    margin: 60px 0 30px 0;
}

.big_button i {
    margin: 0 0 0 10px;
}

.subscription .title {
    text-transform: none;
}

.title {
    color: #000;
    text-align: center;
    margin: 40px 0 40px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 28px;
    text-transform: uppercase;
}

.text--space {
    margin: 30px 0 0 0;
}

.list_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 10px 0;
}

.list_item.list_item--bottom {
    margin: 10px 0 20px 0;
}

.list_item.list_item--membership .list_item__description {
    margin: 0 0 0 30px;
}

.list_item__ico {
    width: 11px;
    height: 11px;
    background: black;
    border-radius: 50%;
    margin: 3px 20px 0 0;
    min-width: 11px;
    min-height: 11px;
}

.list_item__ico.list_item__ico--1 {
    background: #B69DF5;
}

.list_item__ico.list_item__ico--2 {
    background: #F2A1ED;
}

.list_item__title {
    font-size: 19px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.list_item.list_item--highlight {
    color: #735daa;
    margin: 10px 0 0 30px;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.inline_elements {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.subscription.open {
    display: block;
}
i.fas.fa-arrow-down.open {
    transform: rotate(180deg);
}

.trial {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.trial__column.trial__column--img {
    margin: 30px 0 0 0;
}

.trial__title {
    margin: 70px 0 0 0;
}

.trial__title h2 {
    margin: 0 0 25px 0;
    text-align: left;
}

.trial__title h1 {
    max-width: 450px;
    margin: 0 0 60px 0;
}

.animated-on-sight.trial__arrow.in-view {
    position: absolute;
    left: 24%;
    top: 20%;
    transform: rotate(3.0451rad) scaleX(-1);
}

.trial__arrow {
    pointer-events: none;
}

.trial__arrow svg {
    max-width: 100%;
}

.benefits {
    display: none;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px 0 50px 0;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
}

.benefit_ico img {
    width: 75px;
    height: auto;
    display: block;
}

.benefit_title {
    font-size: 16px;
    text-align: center;
    margin: 15px 0 0 0;
}



.animated-on-sight.trial__arrow.in-view .trial__arrow__shaft {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: dash 2s linear forwards;
}

.animated-on-sight.trial__arrow.in-view .trial__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 1.2s !important;
    animation: dash 2s linear forwards;
}

.newsletter_popup__container {
    position: relative;
    height: 245px;
}

.newsletter_popup {
    position: fixed;
    width: 540px;
    height: 245px;
    background: #FFD8EF;
    box-shadow: 1px 3px 8px rgb(133 2 81 / 30%);
    border-radius: 15px;
    right: 2%;
    bottom: 2%;
    z-index: 3;
}

.newsletter_popup_shadow {
    display: none;
    width: 100%;
    height: 114px;
    position: fixed;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #414141 100%);
    z-index: 3;
}

.newsletter_popup.hide, .newsletter_popup_shadow.hide {
    display: none;
}

.newsletter_popup_small.hidden, .newsletter_popup_shadow.hidden {
    display: none!important;
}

.newsletter_popup__image {
    position: absolute;
    left: -10%;
    top: -20%;
}

.newsletter_popup__image img {
    width: 275px;
    height: auto;
    display: block;
}

.newsletter_popup__content {
    margin: 0 0 0 40%;
}

.newsletter_popup__description {
    font-weight: 400;
    font-size: 16px;
    color: #3E3E3E;
    margin: 0 0 15px 0;
    max-width: 305px;
    line-height: 19px;
}

.newsletter_popup__title {
    font-weight: 400;
    font-size: 19px;
    color: #000000;
    margin: 20px 0 0 0;
    line-height: 25px;
}

.newsletter_popup__title.newsletter_popup__title--bold {
    font-weight: 800;
    margin: 0 0 15px 0;
    font-size: 25px;
}

.newsletter_popup__input {
    display: flex;
    flex-direction: row;
    align-items: center;
}

button.newsletter_popup__button {
    background: #FF74C7;
    border-radius: 0 19px 19px 0;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    cursor: pointer;
    border: 2px solid #FF74C7;
    padding: 9px 9px 9px 5px;
    height: 40px;
    font-family: "Montserrat", sans-serif !important;
    width: 105px;
}

.newsletter_popup__button.newsletter_popup__button--subscribed {
    background: #FF74C7;
    border-radius: 19px;
    padding: 11px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    cursor: pointer;
    max-width: 317px;
    text-align: center;
    width: 100%;
}
input.newsletter_popup__text {
    border: 3px solid #FF74C7;
    padding: 9px 0 9px 15px;
    border-radius: 19px 0 0 19px;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.02em;
    color: #555555;
    width: 200px;
    height: 40px;
    font-family: "Montserrat", sans-serif !important;
}

input.newsletter_popup__text.newsletter_field:focus-visible {
    outline: none;
}

.newsletter_popup__close {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.newsletter_popup__close {
    position: absolute;
    right: 2%;
    top: -5%;
    cursor: pointer;
}

.newsletter_popup__close i {
    font-size: 28px;
}

.newsletter_popup .newsletter__agreement_text {
    font-size: 10px;
}

.newsletter_popup .newsletter__agreement {
    max-width: 310px;
    margin: 15px 0 0 0;
}

.newsletter_popup .checkmark {
    border: 1px solid #3E3E3E;
    background-color: #ffd8ef;
}

.newsletter_popup .newsletter__agreement_text {
    color: #3E3E3E;
}

.newsletter_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0000009e;
    top: 0;
    z-index: 100;
}

@media screen and (min-width: 968px) {
    .newsletter_modal__content .newsletter_popup {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 0;
        max-width: 655px;
        width: 100%;
        height: 280px;
    }

    .newsletter_modal__content .newsletter_popup__content {
        margin: -3% 0 0 0;
    }

    .newsletter_modal__content .newsletter_popup__image {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        margin: -71px -15px 0 -40px;
    }

    .newsletter_modal__content .newsletter_popup__image img {
        width: 351px;
        height: auto;
        display: block;
    }

    .newsletter_modal__content .newsletter_popup__title {
        font-size: 26px;
        line-height: 31px;
    }

    .newsletter_modal__content .newsletter_popup__description {
        font-size: 18px;
        line-height: 22px;
        max-width: 310px;
    }

    .newsletter_modal__content input.newsletter_popup__text {
        width: 100%;
        height: 39px;
    }

    .newsletter_modal__content button.newsletter_popup__button {
        height: 39px;
        font-weight: 700;
        font-size: 16px;
        line-height: 0;
        letter-spacing: 0.02em;
        color: #FFFFFF;
    }

    .newsletter_modal__content .newsletter_popup__close {
        position: absolute;
        right: 3%;
        top: 10px;
        cursor: pointer;
    }

    .newsletter_modal__content .newsletter_popup__close i {
        font-size: 35px;
    }

    .newsletter_modal__content .newsletter_popup__button.newsletter_popup__button--subscribed {
        max-width: 100%;
        font-size: 16px;
        text-align: center;
    }
}

.newsletter_popup__row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.director-group,
.employees-group {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}
.director-group {
    justify-content: space-between;
}
.director-group .director {
    width: 25.5%;
}
.director-group .director .image img {
    width: 100%;
    height: auto;
}
.director-group .director name {
    display: block;
    margin: 10px auto 5px;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.05em;
}
.director-group .director job-title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 12px auto 30px;
}
.employees-group .employee {
    width: 25%;
    margin: 10px 0 55px;
}
.employees-group .employee .image {
    width: 216px;
    height: 216px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background: rebeccapurple;
    border-radius: 50%;
    justify-content: center;
    margin: auto;
    overflow: hidden;
}
.employees-group .employee .image img {
    max-width: 101%;
    height: initial;
}
.employees-group .employee .image img.no-portrait {
    max-width: 75%;
    height: initial;
}
.employees-group .employee .about name {
    display: block;
    margin: auto;
    font-weight: bold;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    margin-top: 20px;
}
.employees-group .employee .about job-title {
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    max-width: 215px;
    display: block;
    margin: auto;
}
.employees-group--hr .employee .image {
    background: #fbd69f;
}
.employees-group--aso .employee .image {
    background: #b9e53c;
}
.employees-group--marketing .employee .image {
    background: #f2a1ed;
}
.employees-group--tech-dev .employee .image {
    background: #fb9f9f;
}
.employees-group--developers .employee .image {
    background: #93aff7;
}
.employees-group--artists .employee .image {
    background: #c09ef8;
}
.employees-group--animators .employee .image {
    background: #81d5db;
}
.employees-group--production .employee .image {
    background: #93aff7;
}
.employees-group--qa .employee .image {
    background: #fb9f9f;
}
.employees-group--ad-opt .employee .image {
    background: #f2a1ed;
}
.employees-group--legal .employee .image {
    background: #fbd69f;
}
.employees-group--sound .employee .image {
    background: #81d5db;
}
#contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#contact .contact__image img {
    max-width: 900px;
    height: initial;
}
.contact__divider {
    display: block;
    height: 30px;
}
.contact__information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}
.contact__information h3 {
    font-size: 36px;
    line-height: 32px;
    text-transform: capitalize;
    margin: 60px 0;
}
.contact__information p {
    font-size: 18px;
    line-height: 40px;
    letter-spacing: -0.015em;
    text-align: left;
}
.contact__information a {
    text-decoration: none;
    color: #000;
}
.about-arrow {
    position: absolute;
}
.about-arrow--first {
    bottom: 1%;
    left: 8%;
}
.about-arrow--second {
    right: 1%;
    top: 25%;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
.about-arrow {
    pointer-events: none;
}
.about-arrow svg {
    max-width: 100%;
}
.about-arrow--first.in-view .about__arrow__shaft {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: dash 2s linear forwards;
}
.about-arrow--second.in-view .about__arrow__shaft {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation-delay: 1s !important;
    animation: dash 2s linear forwards;
}
.about-arrow--second.in-view .about__arrow__cap {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation-delay: 2.2s !important;
    animation: dash 2s linear forwards;
}
@media screen and (max-width: 1320px) {
    .about-arrow--first {
        left: -5%;
    }
    .about-arrow--second {
        right: -15%;
    }
}

@media screen and (max-width: 1060px) {
    .director-group .director {
        width: 29%;
    }
    .director-group .director job-title {
        margin: 10px auto 25px;
        line-height: 26px;
    }
    .employees-group .employee {
        width: 30%;
    }
}
@media screen and (max-width: 968px) {
    .about-arrow--first {
        left: -11%;
        bottom: -10%;
    }
    .about-arrow--second {
        right: -14%;
        top: 6%;
        max-width: 189px;
    }
}
@media screen and (max-width: 860px) {
    .director-group .director {
        width: 45%;
    }
    .employees-group .employee {
        width: 50%;
    }
    .director-group .director job-title {
        font-size: 16px;
    }
    .contact__image {
        width: 100%;
    }
    .contact__image img {
        width: 100%;
        height: initial;
    }
    .contact__information {
        margin-left: 0;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    #contact {
        margin-top: 40px;
    }
    .about-arrow--second,
    .about-arrow--first {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    .about-arrow--second {
        display: none;
    }
    .about-intro h2 {
        margin-top: 0;
        font-size: 26px;
        line-height: 35px;
        margin-bottom: 0px;
    }
    .about-intro h4 {
        margin-top: 45px;
        font-size: 19px;
        line-height: 34px;
    }
    .about-intro p {
        max-width: 750px;
        font-size: 15px;
        line-height: 23px;
    }
    .contact__information {
        flex-direction: column;
    }
    .employees-group .employee {
        margin: 10px 0 15px;
    }
    .about-arrow--second {
        right: -13%;
        top: 6%;
        max-width: 200px;
    }
    .about-arrow--first {
        max-width: 120px;
    }
}
@media screen and (max-width: 480px) {
    .employees-group .employee .image {
        width: 140px;
        height: 140px;
    }
    .employees-group .employee .about job-title {
        font-size: 14px;
        line-height: 21px;
    }
    .about-arrow--second {
        right: -17%;
        top: 8%;
        width: 200px;
    }
    .about-arrow--first {
        left: -11%;
        bottom: -13%;
        width: 145px;
    }
}
@media screen and (max-width: 380px) {
    .about-arrow--second {
        right: 22%;
        top: 13%;
        width: 200px;
        transform: rotate(45deg);
    }
    .about-arrow--first {
        left: 4%;
        bottom: -11%;
    }
    .employees-group .employee .about name {
        font-size: 20px;
    }
}
.login-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    align-content: center;
    min-height: 50vh;
}
.login-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
}
.login-form a:hover {
    color: #000;
}
.login-form a {
    color: #c09ef8;
    cursor: pointer;
}
.login-form #loginForm input {
    border: 1px solid #e3e3e3;
    box-shadow: none;
    padding: 7px 15px;
    margin: 10px 0;
}
.login-form #loginForm .link {
    padding: 10px 0;
    margin: 20px auto;
    width: 250px;
}
.login-form #loginForm .link:hover {
    cursor: pointer;
}
.login-form .half {
    width: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}
@media screen and (max-width: 1000px) {
    .login-form {
        flex-flow: column wrap;
        justify-content: space-around;
    }
    .login-form .half {
        width: 100%;
    }
}
:root {
    --cookie-main-color: #7f56d6;
    --cookie-main-color-light: #b697fe;
    --cc-toggle-bg-button-off: #6b7479;
    --cc-button-background-color: #2d0f6a;
}
#c-txt-consent-text {
    padding: 10px 0 25px;
    text-align: center;
}
.show--consent .c--anim #cm {
    max-width: 28em;
}
.show--consent .c--anim #cm::before {
    content: "";
    display: block;
    width: 50px;
    height: 57px;
    background: url("/assets/images/cookie.png");
    background-size: cover;
    margin: auto;
}
#c-ttl {
    text-align: center;
}
#cm-ov,
#cs-ov {
    background: rgba(4, 6, 8, 0.63);
}
#cc_div #c-bns button#c-p-bn.c-bn,
#cc_div #c-bns button#c-s-bn.c-bn.c_link,
#cc_div #c-bns button#s-all-bn,
#cc_div #c-bns button#s-sv-bn,
#cc_div #s-bns button#c-p-bn.c-bn,
#cc_div #s-bns button#c-s-bn.c-bn.c_link,
#cc_div #s-bns button#s-all-bn,
#cc_div #s-bns button#s-sv-bn {
    border-radius: 163px;
    text-transform: uppercase;
}
#cc_div #c-bns button#c-p-bn.c-bn,
#cc_div #c-bns button#s-all-bn,
#cc_div #s-bns button#c-p-bn.c-bn,
#cc_div #s-bns button#s-all-bn {
    background: var(--cc-button-background-color);
    border: 2px solid var(--cc-button-background-color);
}
#cc_div #c-bns button#c-s-bn.c-bn.c_link,
#cc_div #c-bns button#s-sv-bn.c-bn,
#cc_div #s-bns button#c-s-bn.c-bn.c_link,
#cc_div #s-bns button#s-sv-bn.c-bn {
    border: 2px solid #2d0f6a;
    border-radius: 163px;
    transition: 0.45s ease !important;
    background: linear-gradient(to top, #7f56d6 50%, rgba(255, 255, 255, 0) 50%) !important;
    background-size: 100% 202% !important;
    background-position: top left !important;
}
#cc_div #c-bns button#c-s-bn.c-bn.c_link:hover,
#cc_div #c-bns button#s-sv-bn.c-bn:hover,
#cc_div #s-bns button#c-s-bn.c-bn.c_link:hover,
#cc_div #s-bns button#s-sv-bn.c-bn:hover {
    background-position: bottom left !important;
    border: 2px solid #7f56d6 !important;
    color: #fff;
}
#cc_div #c-bns button#c-p-bn.c-bn:hover,
#cc_div #c-bns button#c-s-bn.c-bn.c_link:hover,
#cc_div #s-bns button#c-p-bn.c-bn:hover,
#cc_div #s-bns button#c-s-bn.c-bn.c_link:hover {
    background: var(--cookie-main-color);
    border-color: var(--cookie-main-color);
    background-position: bottom left;
    color: #fff;
}
#c-s-in {
    max-height: 42em;
}
.cc_div .c-bn {
    padding: 1.1em 2.6em;
}
.cc_div span.t-lb,
.cc_div .b-tg,
.cc_div .b-tg .c-tg,
.cc_div .c-tgl {
    height: 1em;
}
.cc_div .b-tg .c-tg {
    overflow: visible;
}
.cc_div .c-tgl:checked ~ .c-tg {
    background: var(--cookie-main-color-light);
}
.cc_div .c-tgl:checked ~ .c-tg .on-i,
.cc_div .c-tgl:checked ~ .c-tg .off-i {
    display: none;
}
.cc_div .b-tg .c-tg::after {
    left: 0em;
    top: -0.25em;
    width: 1.5em;
    height: 1.5em;
    background: var(--cc-toggle-bg-button-off);
}
.cc_div .c-tgl:checked ~ .c-tg::after {
    transform: translateX(2.1em);
    background: var(--cookie-main-color);
}
.cc_div .off-i {
    display: none;
}
#s-bl {
    padding: 1.5em 2.5em 0;
}
#s-bl .b-acc {
    display: block;
    max-height: initial;
}
#c-s-in #s-bns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    border: none;
    padding: 0 1em 2.5em;
}
#c-s-in #s-bns button {
    float: none;
    margin: 0 15px;
}
#s-inr {
    border-radius: 0;
    max-width: 37em;
}
#s-cnt .desc .p {
    text-align: center;
    line-height: 1.5em;
}
#s-cnt .c-bl.b-ex .p {
    text-align: left;
}
#s-cnt .b-bn .b-tl {
    padding: 1em 6.4em 1em 1em;
    cursor: auto;
}
#s-cnt .b-bn .b-tl:hover {
    background: transparent;
}
#s-bl .c-bl.b-ex {
    background: transparent;
}
#s-hdr {
    display: block;
    border: none;
}
#s-hdr #s-ttl {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2em;
    top: 2.5em;
}
#s-hdr #s-c-bn {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
}
#s-hdr #s-c-bn :after {
    left: 0.82em;
    top: 0.25em;
    height: 23px;
    width: 2.5px;
}
#s-bl .c-bl:first-of-type .title .b-tl {
    font-weight: 300;
    font-size: 0.9em;
    position: relative;
    z-index: 9999999;
    margin-top: -1.9em;
    text-align: center;
}
.cc_div .b-bn .b-tl::before,
.cc_div .act .b-bn .b-tl::before {
    content: none;
}
@media screen and (max-width: 688px) {
    #c-s-in {
        max-height: 80em;
    }
    #s-bns {
        height: 12em;
    }
    #s-bl .c-bl:first-of-type .title .b-tl {
        margin-top: -1.5em;
    }
    #c-s-in #s-bns button {
        margin: 15px 15px;
    }
}
footer {
    background: #fff;
    max-width: 1300px;
    margin: 90px auto 0 auto;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 50px 0;
}
.footer_logo {
    min-height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 15px 0;
}
h5.bold.brights_spacer {
    background: transparent;
    color: transparent;
    opacity: 0;
}

.footer__sm {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 28px -15px 0;
}

.footer__youtube {
    margin: 0 0 15px 0;
}

.footer_youtube__mobile {
    display: none;
}

.footer_youtube__mobile .footer__youtube img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0;
}






.footer__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer_social {
    margin: 0 0 0 0;
}
img.social__icon {
    width: 31px;
    height: 31px;
    display: block;
}
.footer__youtube img {
    width: 150px;
    height: auto;
    display: block;
    text-align: center;
    margin: 0 18px 0 0;
}

ul.footer__links-list.footer_social li:nth-child(4) a {
    margin: 0 0 0 -5px;
}

p.rights {
    margin: 8px 8px 8px 0px;
}
footer .footer__links-list {
    display: flex;
    flex-direction: row;
}
footer .footer__links-list li {
    margin: 8px;
    display: flex;
    align-content: center;
}
footer .footer__links-list li:nth-of-type(1) {
    margin-left: 0;
}
footer .footer__links-list li a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 0.05em;
    display: flex;
}
footer h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.05em;
}
footer .socials p {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    text-align: right;
    letter-spacing: 0.05em;
}
.footer_social_mobile {
    display: none!important;
    margin: 30px 0 0 0;
}

@media (orientation: landscape) {
    #wrapper {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 1320px) {
    .container, footer {
        max-width: 1050px;
    }
    .header__content {
        padding: 0 7px;
    }
}

@media screen and (max-width: 1060px) {
    .container, footer {
        max-width: 960px;
    }
    .stats {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .stats > .stats__single {
        justify-self: center;
    }
    .stats__single:nth-of-type(even) {
        margin-top: 200px;
    }
    .games-container--3-columns .game {
        flex: 1 0 50%;
    }
    .map {
        max-width: 400px;
    }
}

@media screen and (max-width: 968px) {
    .container, footer {
        max-width: 850px;
    }

}

@media screen and (max-width: 860px) {
    .games-container {
        margin-bottom: 0;
    }
    .games-container--3-columns .game,
    .games-container .game {
        flex: 1 0 100%;
        max-width: 100%;
    }
    .studio__text {
        position: relative;
        margin: 40px auto 20px;
        color: #000;
    }
    .game__character {
        /*!prevent hover/scroll issues.*/
        pointer-events: none;
    }
    .container, .subs_ben_bg_container, section.apps {
        max-width: 590px;
    }

    .stats__single {
        width: 220px;
        height: 220px;
        min-width: 220px;
        min-height: 220px;
        margin-top: 100px;
    }
    .stats__single span {
        font-size: 18px;
    }
    .stats__single .stats__single__big-text {
        font-size: 36px;
        margin: 14px 0;
    }
    .stats__single:nth-of-type(2n) {
        margin-top: 0;
    }
    footer .container {
        flex-wrap: wrap;
    }
    footer {
        margin-top: 50px;
    }
    footer .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    footer .container .col-third {
        text-align: center;
        margin: 0 0 0 0;
    }
    .footer_social_mobile {
        display: flex!important;
    }
    .newsletter__row {
        flex-direction: column;
    }
    .newsletter_title, .newsletter_subtitle, .newsletter_description {
        text-align: center;
    }
    .newsletter__column {
        margin: 30px 0 0 0;
    }
    .newsletter_description {
        margin: 20px 0 20px 0;
    }
    .newsletter__column img {
        margin: auto;
    }
}

@media screen and (max-width: 600px) {
    .header__video {
        min-height: auto;
    }
    .container, .subs_ben_bg_container, section.apps {
        max-width: 450px;
    }
    .stats__single {
        width: 200px;
        height: 200px;
        min-width: 200px;
        min-height: 200px;
    }
    .stats__single span {
        font-size: 13px;
        line-height: 15px;
    }
    .stats__single .stats__single__big-text {
        font-size: 31px;
        margin: 8px 0;
        line-height: 25px;
    }
    .stats__single:nth-of-type(2n),
    .stats__single {
        margin-top: 40px;
    }
}

@media screen and (max-width: 350px) {
    .container, .subs_ben_bg_container, section.apps {
        max-width: 310px;
    }
}

@media screen and (max-width: 1320px) {
    .animated-on-sight.games__arrow.games__arrow--first {
        left: 9%;
    }
    .bubble.bubble--games_3 {
        bottom: -15%;
        left: 37%;
    }
    .bubble.bubble--games_2 {
        left: 25%;
    }
    .bubble.bubble--about_3 {
        position: absolute;
        left: 36%;
        bottom: 16%;
    }
    .animated-on-sight.stat__arrow.in-view {
        bottom: -34%;
    }
    .bubble.bubble--stat_4 {
        left: 35%;
        bottom: 0;
    }
    .about-stats {
        margin: 100px 0 70px 0;
    }
    .map {
        margin: 0 20px 0 0;
    }
    .contacts__columns {
        width: 100%;
    }
    .animated-on-sight.trial__arrow.in-view {
        left: 18%;
        top: 37%;
    }
    img.hp_stat__column_img-1 {
        width: 185px;
        top: -1%;
        left: -10%;
    }
    img.hp_stat__column_img-2 {
        width: 124px;
        top: 4%;
        right: -2%;
    }
    img.hp_stat__column_img-3 {
        width: 145px;
        top: 2%;
        right: 1%;
    }
    .hp_stat__value {
        margin: 0 0 20px 0;
    }
    .bubble.bubble--hp_stat_1 {
        bottom: -6%;
        left: -7%;
    }
    .bubble.bubble--hp_stat_2 {
        bottom: 0;
    }
    .bubble.bubble--hp_stat_3 {
        top: -15%;
        right: -3%;
    }
    .bubble.bubble--hp_stat_4 {
        bottom: -8%;
    }
    .animated-on-sight.hp_stat__arrow2.in-view {
        bottom: -42%;
        right: -32%;
    }
    .animated-on-sight.faq__arrow.in-view {
        right: -3%;
    }

    .bubble.bubble--academy_2 {
        left: 16%;
        bottom: 79%;
    }
    .bubble.bubble--academy_3 {
        left: 36%;
        bottom: 52%;
    }
    .bubble.bubble--academy_1 {
        left: 6%;
        bottom: 45%;
    }
    .bubble.bubble--academy_4 {
        right: 11%;
        bottom: -4%;
    }

    .animated-on-sight.academy3__arrow.in-view {
        right: 2%;
        top: -144%;
    }

    .animated-on-sight.academy2__arrow.in-view {
        left: 3%;
        top: -69%;
    }

    .bubble.bubble--academy2_2 {
        left: 16%;
        top: 6%;
    }

    .bubble.bubble--academy2_1 {
        position: absolute;
        left: 23%;
        top: 25%;
    }

    .bubble.bubble--career_2 {
        width: 25px;
        height: 25px;
        position: absolute;
        left: 10%;
        bottom: -152%;
    }
    .bubble.bubble--career_1 {
        position: absolute;
        left: 20%;
        bottom: -100%;
    }
    .bubble.bubble--career_3 {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 11%;
        bottom: -82%;
    }


    .header__content {
        min-height: var(--mobile-header-height);
        align-items: center;
    }
    .header__content .header__logo {
        margin-top: 0;
        margin-bottom: 0;
    }
    header #menu-btn {
        display: inline-block;
        width: 35px;
        height: 26px;
        padding: 5px 0;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        background: transparent;
        border: none;
    }
    .menu-btn__burger {
        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: flex-end;
        position: relative;
        height: 100%;
        width: 100%;
    }
    .menu-btn__burger:hover {
        cursor: pointer;
    }
    .menu-btn__burger__top,
    .menu-btn__burger__middle,
    .menu-btn__burger__bottom {
        height: 3px;
        display: block;
        background: #000;
        position: absolute;
        right: 0;
        -webkit-transform-origin: 0;
        -o-transform-origin: 0;
        transform-origin: 0;
        -webkit-transition: -webkit-transform 0.2s linear;
        transition: -webkit-transform 0.2s linear;
        -o-transition: -o-transform 0.2s linear;
        transition: transform 0.2s linear;
        transition: transform 0.2s linear, -webkit-transform 0.2s linear, -o-transform 0.2s linear;
    }
    .menu-btn__burger__top {
        top: -2px;
        width: 100%;
    }
    .menu-btn__burger__middle {
        width: 75%;
    }
    .menu-btn__burger__bottom {
        width: 50%;
        bottom: 0;
    }
    #menu {
        display: none;
    }
    #menu.open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: calc(100vh - var(--mobile-header-height));
        flex-direction: column;
        position: fixed;
        top: var(--mobile-header-height);
        width: 100%;
        background: #fff;
        z-index: 999;
        left: 0;
        align-items: center;
        overflow-y: scroll;
    }
    #menu-btn.close .menu-btn__burger__top {
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #menu-btn.close .menu-btn__burger__middle {
        visibility: hidden;
    }
    #menu-btn.close .menu-btn__burger__bottom {
        width: 100%;
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header__content ul > li > a {
        width: 100%;
    }
    li.link {
        width: 200px;
    }
    li.link.link--newsletter {
        display: block;
    }
    #newsletter-header {
        display: none!important;
    }

    body {
        margin-top: var(--mobile-header-height);
    }
    .header__content ul > li > a {
        text-align: center;
        font-weight: 400;
        font-size: 22px;
    }
    .header__content ul > li > a.href-career::after {
        margin-top: 1px;
    }

    a.link.link--round {
        bottom: 5%;
    }

}

@media screen and (max-width: 1090px) {
    .applications {
        display: flex;
        flex-direction: row;
        align-items: center;
        float: none;
        grid-column-gap: 0;
        grid-row-gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 1060px) {
    .animated-on-sight.games__arrow.games__arrow--first {
        top: -49%;
    }
    .bubble.bubble--games_1 {
        left: 8%;
        bottom: -5%;
    }
    .bubble.bubble--games_2 {
        left: 27%;
        top: 65%;
    }
    .bubble.bubble--games_3 {
        bottom: -5%;
        left: 40%;
    }
    .stat__value {
        font-size: 50px;
        color: white;
        font-weight: 700;
        margin: 13px 0 0 0;
    }
    .stat__title {
        font-size: 20px;
    }
    .bubble.bubble--about_3 {
        left: 38%;
        bottom: 23%;
    }
    .bubble.bubble--stat_4 {
        bottom: 7%;
    }
    .animated-on-sight.stat__arrow.in-view {
        bottom: -24%;
    }
    .animated-on-sight.trial__arrow.in-view {
        top: 46%;
        left: 32%;
        max-width: 225px;
    }
    .trial__title h2 {
        text-align: left;
    }
    img.trial__img {
        max-width: 550px;
    }
    .hp_stat.hp_stat--1 {
        margin: 0 -140px 0 0;
    }
    .hp_stat.hp_stat--3 {
        margin: 0 -95px 0 -95px;
    }
    .hp_stat img {
        max-width: 300px;
    }
    img.hp_stat__column_img-1 {
        width: 155px;
        left: -8%;
    }
    .hp_stat__title {
        font-size: 31px;
    }
    .hp_stat__value {
        font-size: 12px;
    }
    .hp_stat.hp_stat--1 .hp_stat__value {
        max-width: 120px;
    }
    .hp_stat.hp_stat--1 .hp_stat__row {
        bottom: 30%;
        right: 37%;
    }
    img.hp_stat__column_img-2 {
        width: 105px;
        top: 0;
        right: 23%;
    }
    .hp_stat.hp_stat--2 .hp_stat__value {
        max-width: 150px;
    }
    .hp_stat.hp_stat--2 .hp_stat__row {
        left: 11%;
    }
    img.hp_stat__column_img-3 {
        width: 115px;
        top: 2%;
        right: 26%;
    }
    .hp_stat.hp_stat--3 .hp_stat__row {
        bottom: 30%;
    }
    .hp_stat.hp_stat--3 .hp_stat__value {
        max-width: 152px;
    }

    .bubble.bubble--hp_stat_1 {
        bottom: 12%;
        left: -5%;
        width: 16px;
        height: 16px;
    }
    .bubble.bubble--hp_stat_2 {
        bottom: 15%;
        left: 12%;
        width: 16px;
        height: 16px;
    }
    .animated-on-sight.hp_stat__arrow.in-view {
        left: 41%;
        top: -40%;
        width: 105px;
    }
    .bubble.bubble--hp_stat_3 {
        top: -15%;
        right: 23%;
        width: 22px;
        height: 22px;
    }
    .bubble.bubble--hp_stat_4 {
        bottom: 14%;
        right: 49%;
        width: 16px;
        height: 16px;
    }
    .animated-on-sight.hp_stat__arrow2.in-view {
        bottom: -15%;
        right: 7%;
        width: 170px;
    }
    .animated-on-sight.faq__arrow.in-view {
        right: -7%;
    }
    .hp-stats {
        margin: 40px 0 0 0;
    }
    .center-title.center-title--hp {
        margin: 40px 0 0 0;
    }
    .center-title.center-title--games {
        margin: 40px 0 0 0;
    }
    .subs_ben_bg__button.subs_ben_bg__button--hp {
        display: block;
    }
    img.academy_circle {
        width: auto;
        height: 100%;
        display: block;
    }
}

@media screen and (max-width: 1020px) {
    .animated-on-sight.faq__arrow.in-view {
        right: 0%;
    }
}

@media screen and (max-width: 968px) {
    .animated-on-sight.games__arrow.games__arrow--first {
        top: -38%;
        left: 10%;
    }
    .bubble.bubble--games_1 {
        left: 9%;
        bottom: 24%;
    }
    .bubble.bubble--games_2 {
        left: 30%;
        top: 48%;
    }
    .bubble.bubble--games_3 {
        bottom: 18%;
        left: 45%;
    }
    .stat__column {
        top: 17%;
    }
    .bubble.bubble--stat_4 {
        bottom: 16%;
    }
    .bubble.bubble--about_3 {
        left: 41%;
        bottom: 25%;
    }
    .animated-on-sight.stat__arrow.in-view {
        bottom: -15%;
    }
    .about-stats {
        margin: 100px 0 30px 0;
    }

    .bubble.bubble--hp_stat_1 {
        bottom: -5%;
    }
    .bubble.bubble--hp_stat_2 {
        bottom: 11%;
    }
    .bubble.bubble--hp_stat_4 {
        bottom: 7%;
    }
    img.trial__img {
        max-width: 500px;
    }
    .animated-on-sight.trial__arrow.in-view {
        display: none;
    }
    .bubble.bubble--hp_stat_1 {
        bottom: 12%;
    }
    .bubble.bubble--hp_stat_2 {
        bottom: 17%;
    }
    .bubble.bubble--hp_stat_4 {
        bottom: 12%;
    }
    .animated-on-sight.faq__arrow.in-view {
        width: 280px;
        top: -9%;
        right: -3%;
    }
    .newsletter_modal__content .newsletter_popup {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 0;
    }

    .newsletter_modal__content .newsletter_popup__image {
        position: absolute;
        top: -12%;
    }

    .newsletter_modal__content .newsletter_popup__close {
        top: 5%;
    }
    .contacts__image img {
        min-width: 350px;
    }

    .bubble.bubble--academy_2 {
        left: 19%;
        bottom: 76%;
    }
    .bubble.bubble--academy_3 {
        left: 43%;
        bottom: 54%;
    }
    .bubble.bubble--academy_1 {
        left: 7%;
        bottom: 50%;
    }
    .bubble.bubble--academy_4 {
        right: 20%;
        bottom: -7%;
    }

    .animated-on-sight.academy3__arrow.in-view {
        right: -3%;
        top: -144%;
    }

    .animated-on-sight.academy2__arrow.in-view {
        left: -3%;
        top: -69%;
    }

    .bubble.bubble--academy2_2 {
        left: 12%;
        top: 6%;
    }

    .bubble.bubble--academy2_1 {
        position: absolute;
        left: 18%;
        top: 25%;
    }

    .bubble.bubble--career_3 {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 11%;
        bottom: -48%;
    }

    .bubble.bubble--career_1 {
        position: absolute;
        left: 22%;
        bottom: -90%;
    }

    .bubble.bubble--career_2 {
        width: 25px;
        height: 25px;
        position: absolute;
        left: 10%;
        bottom: -124%;
    }

    .academy_positions__section img {
        display: none;
    }
}

@media screen and (max-width: 860px) {
    .footer__row {
        display: none;
    }
    .studio__text.centered-text.flex.flex--row.flex--jsb {
        flex-direction: column;
    }
    .studio__text h2 {
        margin: 0 0 25px 0;
        text-align: center;
        min-width: auto;
    }
    .animated-on-sight.games__arrow.games__arrow--first.in-view {
        display: none;
    }
    .bubble.bubble--games_1, .bubble.bubble--games_2, .bubble.bubble--games_3 {
        display: none;
    }
    .about-intro.flex.flex--row {
        flex-direction: column;
    }
    .about-intro h2, .about-intro__section h1 {
        text-align: center;
    }
    .animated-on-sight.intro__arrow.in-view {
        display: none;
    }
    .bubble.bubble--about_1, .bubble.bubble--about_2, .bubble.bubble--about_3 {
        display: none;
    }
    .about-stats {
        flex-direction: column;
        margin: 30px 0 0 0;
    }
    .about-intro {
        margin: 40px 0 0 0;
    }
    .about-intro__section, .about-intro__section h1:nth-child(1) {
        margin: 0 0 20px 0;
    }
    .about-intro__section h1 {
        margin: 20px 0 20px 0;
    }
    .animated-on-sight.stat__arrow.in-view {
        display: none;
    }
    .bubble.bubble--stat_1, .bubble.bubble--stat_2, .bubble.bubble--stat_3, .bubble.bubble--stat_4, .bubble.bubble--stat_5 {
        display: none;
    }
    .stat__column {
        top: 25%;
    }
    .stat__title {
        font-size: 23px;
    }
    .stat__value {
        font-size: 70px;
    }
    .about-stats {
        margin: 40px 0 40px 0;
    }
    h2.bold, .hp_stat__title, h1.sub-title {
        letter-spacing: -0.05em;
    }
    h1.sub-title {
        text-align: center;
    }
    .gallery_row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .gallery_row.gallery_row--2 {
        margin: 0 0 0 0;
    }
    .gallery_row__item.gallery_row__item--5 {
        width: 100%;
    }
    .gallery_row__item.gallery_row__item--4 {
        margin: 0 0 0 0;
    }
    .gallery_row__item.gallery_row__item--2 {
        margin: 0 0 0 0;
    }
    .gallery_row__item {
        margin: 0 0 20px 0!important;
    }
    .contacts {
        flex-direction: column;
        margin: 50px 0 -20px 0;
    }
    .map {
        max-width: 100%;
        margin: 0;
    }
    .contacts__columns {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin: 0 0 0 0;
    }
    h2.contacts_column__title {
        text-align: center;
    }
    .contacts_column__row {
        text-align: center;
    }
    .contacts_column.contacts_column--1 {
        margin: 0 0 0 0;
    }
    footer .container {
        margin: auto;
    }
    .trial {
        flex-direction: column;
        align-items: center;
    }
    .trial__title h2 {
        text-align: center;
    }
    h1.sub-title {
        text-align: center;
        max-width: 100%;
        margin: 0 0 0 0;
    }
    .subs_ben_bg__button {
        margin: 30px auto 0 auto;
    }
    img.trial__img {
        max-width: 100%;
    }
    .hp-stats {
        flex-direction: column;
        margin: 10px 0 0 0;
    }
    .animated-on-sight.hp_stat__arrow.in-view, .animated-on-sight.hp_stat__arrow2.in-view, .bubble.bubble--hp_stat_1, .bubble.bubble--hp_stat_2, .bubble.bubble--hp_stat_3, .bubble.bubble--hp_stat_4 {
        display: none;
    }
    .center-title.center-title--hp {
        margin: 40px 0 0 0;
    }
    .center-title.center-title--games {
        margin: 0 0 0 0;
    }
    img.hp_stat--mobile {
        display: block!important;
    }
    img.hp_stat--pc {
        display: none;
    }
    .hp_stat img {
        max-width: 100%;
    }
    .hp_stat.hp_stat--1 {
        margin: auto;
    }
    .hp_stat {
        width: 395px;
        height: 240px;
        position: relative;
    }
    img.hp_stat__column_img-1 {
        width: 175px;
        left: -1%;
        top: -7%;
    }
    .hp_stat.hp_stat--1 .hp_stat__row {
        right: 15%;
        bottom: 25%;
    }
    .hp_stat.hp_stat--2 .hp_stat__row {
        left: 15%;
        top: 15%;
    }
    .hp_stat.hp_stat--3 .hp_stat__row {
        right: 15%;
        bottom: 25%;
        left: unset;
    }
    img.hp_stat__column_img-2 {
        width: 130px;
        right: 0;
        top: -11%;
    }
    img.hp_stat__column_img-3 {
        width: 150px;
        left: 2%;
        top: -15%;
    }
    .hp_stat__title {
        margin: 0 0 5px 0;
    }
    .hp_stat.hp_stat--1 .hp_stat__value {
        max-width: 140px;
    }
    .hp_stat.hp_stat--2 .hp_stat__value {
        max-width: 175px;
    }
    .hp_stat__value {
        font-size: 14px;
    }
    .hp_stat.hp_stat--3 .hp_stat__value {
        max-width: 169px;
    }

    .subs_ben_bg_column.subs_ben_bg_column--1, .subs_ben_bg_container img, .subs_ben_bg__button {
        display: none;
    }
    .subs_ben_bg_container {
        justify-content: center;
    }
    .animated-on-sight.faq__arrow.in-view {
        width: 230px;
        top: 21%;
        right: -15%;
    }
    .trial__title {
        margin: 40px 0 0 0;
    }
    .subs_ben_bg_column__title {
        margin: 15px 0 21px 0px;
    }
    .center-title.center-title--reviews {
        padding: 40px 0 0 0;
    }
    .center-title.center-title--faq h2 {
        margin: 40px 0 30px 0;
    }
    .trial__column h1.sub-title {
        text-align: left;
    }
    .contacts_column {
        width: 100%;
    }
    div#map-mobile {
        display: block;
        margin: 0 0 20px 0;
    }
    div#map-desktop {
        display: none;
    }
    h1.contacts_column__sub_title {
        font-size: 14px;
    }
    .contacts_column__text {
        font-size: 14px;
    }
    .contacts_column__row {
        margin: 0 0 40px 0;
    }
    .trial__column h1.sub-title {
        text-align: center;

    }
    .about-intro h2 {
        letter-spacing: -0.05em;
    }
    .about-intro__section h5 {
        text-align: justify;
    }
    .footer_youtube__mobile {
        display: block;
        margin: 35px 0 0 0;
    }
    .footer_social_mobile {
        margin: 10px 0 0 0;
    }
    .academy__arrow,.bubble.bubble--academy_2,.bubble.bubble--academy_3,.bubble.bubble--academy_1,.bubble.bubble--academy_4 {
        display: none;
    }

    .animated-on-sight.academy2__arrow.in-view {
        width: 130px;
        left: -6%;
        bottom: -104%;
    }

    .animated-on-sight.academy3__arrow.in-view {
        width: 200px;
        right: -5%;
        top: -95%;
    }

    .bubble {
        width: 9px;
        height: 9px;;
    }

    .bubble.bubble--academy2_1 {
        position: absolute;
        left: 11%;
        top: 11%;
    }

    .bubble.bubble--academy2_2 {
        width: 14px;
        height: 14px;
        left: 5%;
        top: 1%;
    }




}

@media screen and (max-width: 725px) {
    .animated-on-sight.faq__arrow.in-view {
        width: 230px;
        top: 21%;
        right: -6%;
    }
}

@media screen and (max-width: 480px) {

    footer .footer__links-list {
        flex-flow: row wrap;
        justify-content: center;
    }
    .stats__single {
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
    }
    .stats__single span {
        font-size: 10px;
        line-height: 15px;
    }
    .stats__single .stats__single__big-text {
        font-size: 26px;
        margin: 8px 0;
        line-height: 20px;
    }

    .studio__text {
        margin: 45px auto 25px;
    }
    .hp_stat {
        height: 210px;
        width: 350px!important;
    }
    img.hp_stat__column_img-1 {
        width: 155px;
    }
    img.hp_stat__column_img-2 {
        width: 115px;
    }
    img.hp_stat__column_img-3 {
        width: 135px;
    }
    .hp_stat.hp_stat--1 .hp_stat__row {
        right: 14% !important;
        bottom: 30% !important;
    }
    .hp_stat.hp_stat--3 .hp_stat__row {
        right: 8% !important;
        bottom: 30% !important;
    }
    .hp_stat.hp_stat--1 .hp_stat__title {
        color: #39868D;
        margin: 0 0 5px 0;
    }
}

@media screen and (max-width: 430px) {

    .hp_stat {
        height: 190px;
        width: 310px!important;
    }
    img.hp_stat__column_img-1 {
        width: 135px;
    }
    img.hp_stat__column_img-2 {
        right: 0%;
        top: -6%;
        width: 94px;
    }
    img.hp_stat__column_img-3 {
        width: 120px;
        left: 0;
    }
    .hp_stat__title {
        font-size: 24px;
    }
    .hp_stat__value {
        font-size: 12px;
    }
    .hp_stat.hp_stat--1 .hp_stat__row {
        right: 10% !important;
        bottom: 20% !important;
    }
    .hp_stat.hp_stat--2 .hp_stat__row {
        left: 12%;
        top: 15%;
    }
    .hp_stat.hp_stat--3 .hp_stat__row {
        right: 5% !important;
        bottom: 20% !important;
    }
    .hp_stat.hp_stat--1 .hp_stat__title {
        margin: 0 0 5px 0;
    }

}


@media screen and (max-width: 1220px) {
    .subs_ben_bg_container img {
        left: -38%;
    }
}
@media screen and (max-width: 1180px) {
    .subs_ben_bg_container img {
        left: -44%;
    }
}
@media screen and (max-width: 1130px) {
    .subs_ben_bg_container img {
        left: -49%;
    }
}
@media screen and (max-width: 1085px) {
    .subs_ben_bg_container img {
        left: -55%;
    }
}
@media screen and (max-width: 1040px) {
    .subs_ben_bg_container img {
        left: -60%;
    }
}

@media screen and (max-width: 1000px) {
    .subs_ben_bg_container img {
        left: -65%;
    }
}
@media screen and (max-width: 975px) {
    .subs_ben_bg_container img {
        left: -74%;
    }
}
@media screen and (max-width: 925px) {
    .subs_ben_bg_container img {
        left: -80%;
    }
}
@media screen and (max-width: 895px) {
    .subs_ben_bg_container img {
        left: -85%;
    }
}

@media screen and (max-width: 670px) {
    .benefits {
        justify-content: center;
    }
    .benefit_ico img {
        width: 50px;
    }
    .benefit_title {
        font-size: 13px;
    }
    .benefit {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 105px;
    }
}

@media screen and (max-width: 550px) {
    .benefit {
        width: 90px;
    }
}

@media screen and (max-width: 450px) {
    .benefits {
        margin: 30px 0 30px 0;
    }
    .benefit {
        width: 70px;
    }
    .benefit_title {
        font-size: 11px;
    }
}

@media screen and (max-width: 350px) {
    .benefit_ico img {
        width: 40px;
    }
    .benefit {
        width: 60px;
    }
    .benefit_title {
        font-size: 10px;
    }
}

@media screen and (max-width: 600px) {
    .animated-on-sight.faq__arrow.in-view {
        width: 130px;
        top: 47%;
        right: -6%;
        transform: rotate(2.6935rad) scaleX(-1);
    }
    .subs_ben_bg__button.subs_ben_bg__button--hp {
        max-width: 250px;
        text-transform: unset;
        font-size: 19px;
        text-align: center;
    }
    .big_button {
        max-width: 165px;
        font-size: 19px;
        text-align: center;
    }
    .animated-on-sight.academy3__arrow.in-view {
        width: 120px;
        right: 0;
        top: -47%;
    }
    .animated-on-sight.academy2__arrow.in-view {
        width: 110px;
        left: 6%;
        bottom: -73%;
    }
    .bubble.bubble--academy2_1 {
        position: absolute;
        left: 21%;
        top: 11%;
    }
    .bubble.bubble--academy2_2 {
        width: 14px;
        height: 14px;
        left: 14%;
        top: 1%;
    }

}

@media screen and (max-width: 500px) {
    h2 {
        font-size: 18px;
        line-height: 23px;
        letter-spacing: 0.05em;
    }
    h1.sub-title {
        font-size: 14px;
    }
    .subs_ben_bg_column__title {
        font-weight: 700;
        font-size: 22px;
        line-height: 23px;
    }
    .subs_ben_bg_item__title {
        font-size: 17px;
    }
    .subs_ben_bg_item__text {
        font-size: 14px;
    }
    .newsletter_title {
        font-size: 30px;
    }
    .newsletter_subtitle {
        font-size: 45px;
    }
    .studio__text h2 {
        font-size: 22px;
        line-height: 23px;
    }
    .studio__text h5 {
        font-size: 14px;
    }
    .about-intro h2 {
        font-size: 22px;
    }
    .about-intro__section h5 {
        font-size: 14px;
    }
    .about-intro__section h1 {
        font-size: 18px;
    }

    .title {
        font-size: 22px;
    }
    .description, .text, .subscription__title, .list_item__title {
        font-size: 14px;
    }
    .review__description, .review__author {
        font-size: 14px;
    }

    .description b {
        display: inherit;
    }

    .academy_position__item_title {
        font-size: 14px;
    }

    h2.academy_positions__title {
        font-size: 22px;
    }

}

@media screen and (max-width: 600px) {
    .newsletter_popup__image {
        display: none;
    }
    .newsletter_popup__container {
        position: relative;
    }
    .newsletter_popup__image_mobile {
        display: block;
        margin: -13px 0 0 0;
    }
    .newsletter_popup__image_mobile img {
        width: 95px;
        height: auto;
        display: block;
    }
    .newsletter_popup .newsletter__agreement {
        max-width: 100%;
        margin: 15px 31px 0 40px;
    }
    input.newsletter_popup__text {
        padding: 10px 0 9px 15px;
        border-radius: 19px 0 0 19px;
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.02em;
        color: #555555;
        width: 200px;
    }
    button.newsletter_popup__button {
        background: #FF74C7;
        border-radius: 0 19px 19px 0;
        font-weight: 700;
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0.02em;
        color: #FFFFFF;
        cursor: pointer;
        border: 2px solid #FF74C7;
    }
    .newsletter_popup__button.newsletter_popup__button--subscribed {
        background: #FF74C7;
        border-radius: 19px;
        padding: 11px;
        border: none;
        font-weight: 700;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.02em;
        color: #FFFFFF;
        cursor: pointer;
        max-width: 250px;
    }
    .newsletter_popup__description {
        display: none;
    }
    .newsletter_popup {
        width: 380px;
        height: 225px;
    }

    .newsletter_popup__container {
        height: 225px;
    }

    .newsletter_popup__image {
        left: -5px;
        top: -11%;
    }
    .newsletter_popup__image img {
        width: 135px;
        height: auto;
        display: block;
    }
    .newsletter_popup__content {
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .newsletter_popup__title {
        font-size: 17px;
        margin: 10px 0 -5px 0;
        margin: 17px auto 0 40px;
    }
    .newsletter_popup__input {
        max-width: 302px;
        width: 100%;
    }
    input.newsletter_popup__text {
        max-width: 100%;
    }
    .newsletter_popup__button.newsletter_popup__button--subscribed {
        width: 318px;
        max-width: 100%;
    }
    .newsletter_popup__close i {
        font-size: 25px;
    }
    .newsletter_popup__close {
        top: 3%;
    }
    .newsletter_modal__content .newsletter_popup__image {
        position: absolute;
        top: -4%;
    }
    .newsletter_modal__content .newsletter_popup__close {
        top: 3%;
    }
    .newsletter_popup__title.newsletter_popup__title--bold {
        font-weight: 800;
        font-size: 25px;
    }
    .newsletter_popup .newsletter__agreement_text {
        font-size: 9px;
    }
    .newsletter_popup {
        right: 0;
        bottom: 2%;
        left: 0;
        margin: auto;
    }
    .newsletter_popup, .newsletter_popup__container {
        height: auto!important;
    }
    .newsletter_modal .newsletter_popup, .newsletter_popup__container {
        height: 182px!important;
    }
    .newsletter_popup_shadow {
        display: block;
    }
    .newsletter_popup__title.newsletter_popup__title--bold {
        margin: 0 0 12px 0;
    }
    h2.academy_positions__title {
        font-size: 26px;
        line-height: 35px;
    }
    .academy_apply {
        margin: 40px 0 70px 0;
    }
    .career-title h2 {
        font-size: 26px;
    }
}

@media screen and (max-width: 480px) {
    .animated-on-sight.faq__arrow.in-view {
        width: 120px;
        top: 46%;
        right: -11%;
        transform: rotate(2.6935rad) scaleX(-1);
    }
    .description b {
        display: block;
    }
    .animated-on-sight.academy3__arrow.in-view {
        width: 100px;
        right: -9%;
        top: -42%;
    }
    .animated-on-sight.academy2__arrow.in-view {
        width: 100px;
        left: 2%;
        bottom: -79%;
    }
    .bubble.bubble--academy2_1 {
        position: absolute;
        left: 13%;
        top: 11%;
    }
    .bubble.bubble--academy2_2 {
        width: 14px;
        height: 14px;
        left: 5%;
        top: 1%;
    }

}

@media screen and (max-width: 465px) {
    .newsletter_popup {
        right: 0;
        bottom: 2%;
        left: 0;
        margin: auto;
    }
}

@media screen and (max-width: 400px) {
    input.newsletter_input__text {
        max-width: 220px;
        margin: unset;
    }
    .newsletter_input {
        justify-content: center;
    }
    .animated-on-sight.faq__arrow.in-view {
        width: 125px;
        top: 41%;
        right: -9%;
    }
    .about-stats {
        margin: 20px 0 20px 0;
    }
    .stat {
        width: 300px;
        height: 200px;
        position: relative;
    }
    .stat__value {
        font-size: 45px;
    }
    .stat__title {
        font-size: 19px;
    }
    .stat__sub_value {
        color: white;
        font-weight: 700;
        font-size: 15px;
        text-transform: uppercase;
        margin: 0 0 0 0;
    }
    .animated-on-sight.academy2__arrow.in-view,.bubble.bubble--academy2_1,.bubble.bubble--academy2_2,.animated-on-sight.academy3__arrow.in-view {
        display: none;
    }
}

@media screen and (max-width: 390px) {
    .newsletter_title {
        font-size: 25px;
    }
    .newsletter_subtitle {
        font-size: 40px;
    }
}

@media screen and (max-width: 390px) {
    input.newsletter_popup__text {
        max-width: 163px;
        width: 100%;
    }
    button.newsletter_popup__button {
        max-width: 90px;
        width: 100%;
    }
    .newsletter_popup__title {
        font-size: 17px;
        margin: 15px auto -5px 28px;
    }
    .newsletter_popup__input {
        max-width: 253px;
    }
    .newsletter_popup .newsletter__agreement_text {
        font-size: 10px;
    }
    .newsletter_popup__input {
        max-width: 253px;
    }
    .newsletter_popup {
        width: 310px;
        height: 225px;
    }
    .newsletter_popup__container{
        height: 225px;
    }
    .newsletter_popup__title.newsletter_popup__title--bold {
        font-size: 21px;
    }
    input.newsletter_popup__text {
        width: 240px;
    }
    .newsletter_popup .newsletter__agreement {
        max-width: 100%;
        margin: 15px 32px 0 29px;
    }
    input.newsletter_popup__text {
        width: 195px;
    }
    .newsletter_popup__button.newsletter_popup__button--subscribed {
        width: 272px;
        max-width: 100%;
    }

}

@media screen and (max-width: 370px) {
    input.newsletter_input__text {
        max-width: 180px;
    }
    .animated-on-sight.faq__arrow.in-view {
        width: 110px;
        top: 51%;
        right: -4%;
    }
}

@media screen and (max-width: 480px) {
    .container, .subs_ben_bg_container, section.apps {
        max-width: 350px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .container.container--reviews {
        padding-left: 0px;
        padding-right: 0px;
    }

    .center-title.center-title--reviews {
        padding-left: 20px;
        padding-right: 20px;
    }

    .slick-slide {
        width: 320px !important;
        height: 320px !important;
        margin: 0 15px 0 15px!important;
    }

    .review--1 .review__image img {
        width: 165px;
        height: auto;
        display: block;
    }

    .review--3 .review__image img {
        width: 120px;
        height: auto;
        display: block;
    }

    .container.trial--container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .application__title {
        width: 140px;
    }

}

@media screen and (max-width: 350px) {
    .slick-list {
        max-width: 295px;
    }

    .slick-slide {
        width: 275px!important;
        height: 340px!important;
        margin: 0 10px 0 10px!important;
    }

    .review__author, .review__description {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .animated-on-sight.faq__arrow.in-view {
        display: none;
    }
    .academy_apply {
        margin: 40px 0 40px 0;
    }
}

@media screen and (min-width: 860px) {
    .hp-stats__mobile {
        display: none;
    }
}

@media screen and (max-width: 860px) {
    .hp-stats {
        display: none;
    }
    .hp-stats__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hp_stat.hp_stat--mobile .hp_stat__row {
        position: relative;
    }
    .hp_stat.hp_stat--mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        background: #95d3d9;
        height: 180px;
        position: relative;
        box-shadow: 0 3px 5px rgba(20, 94, 101, 0.4);
        border-radius: 40px;
        margin: 0 0 50px 0;
        max-width: 450px;
        width: 100%;
        justify-content: space-around;
    }
    .hp_stat.hp_stat--mobile img {
        top: 0;
        left: 0;
        right: 0;
        width: auto;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--1 .hp_stat__title {
        color: #39868D;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--1 .hp_stat__value {
        margin: 0;
        max-width: 151px;
    }
    .hp_stat.hp_stat--mobile img.hp_stat__column_img-1 {
        position: relative;
        max-width: 170px;
        margin: -29px 0 10px 10%;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--1 .hp_stat__column {
        margin: 0 10% 0 0;
        align-items: flex-start;
    }



    .hp_stat.hp_stat--mobile.hp_stat--mobile--2 {
        background: #E6A5E9;
        box-shadow: 0 3px 5px rgba(122, 58, 125, 0.4);
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--2 .hp_stat__title {
        color: #7A3A7D;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--2 .hp_stat__value {
        margin: 0;
        max-width: 188px;
        text-align: right;
    }
    .hp_stat.hp_stat--mobile img.hp_stat__column_img-2 {
        position: relative;
        max-width: 130px;
        margin: -40px 0 10px -10%;
    }

    .hp_stat.hp_stat--mobile.hp_stat--mobile--2 .hp_stat__column {
        margin: 0 0 0 10%;
        align-items: flex-end;
    }

    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 {
        background: #98AEF1;
        box-shadow: 0 3px 5px rgba(29, 61, 108, 0.4);
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 .hp_stat__title {
        color: #31437A;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 .hp_stat__value {
        margin: 0;
        max-width: 190px;
    }
    .hp_stat.hp_stat--mobile img.hp_stat__column_img-3 {
        position: relative;
        max-width: 145px;
        margin: -33px 0 10px 10%;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 .hp_stat__column {
        margin: 0 10% 0 0;
        align-items: flex-start;
    }

    .about-stats {
        margin: 40px 0 30px 0;
    }
    .stat.stat--3 {
        margin: 0 0 60px 0;
    }
    .stat {
        max-width: 450px;
        width: 100%;
        height: 180px;
        border-radius: 40px;
        margin: 0 0 40px 0!important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .stat.stat--1 .stat__title, .stat.stat--2 .stat__title, .stat.stat--3 .stat__title {
        color: #FFFFFF;
    }
    .stat.stat--1 {
        background: #95D3D9;
        box-shadow: 0px 3px 5px rgba(20, 94, 101, 0.4);
    }
    .stat.stat--1 .stat__value {
        color: #39868D;
    }
    .stat.stat--2 {
        background: #E6A5E9;
        box-shadow: 0px 3px 5px rgba(122, 58, 125, 0.4);
    }
    .stat.stat--2 .stat__value {
        color: #7A3A7D;
    }
    .stat.stat--3 {
        background: #98AEF1;
        box-shadow: 0px 3px 5px rgba(29, 61, 108, 0.4);
    }
    .stat.stat--3 .stat__value {
        color: #31437A;
    }
    .stat img {
        display: none;
    }
    .stat.stat--1 .stat__column, .stat.stat--2 .stat__column, .stat.stat--3 .stat__column {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }
    .stat__value {
        margin: 5px 0 0 0;
    }

    .benefits.benefits--mobile {
        display: flex;
    }

    .academy_positions__section {
        padding: 0 0 35px 0;
    }

    section#academy_positions {
        margin: 10px 0 0 0;
    }

    .animated-on-sight.career__arrow.in-view, .bubble.bubble--career_1,.bubble.bubble--career_2,.bubble.bubble--career_3 {
        display: none;
    }

    .career-title {
        margin: 40px 0 40px 0;
    }

}

@media screen and (max-width: 480px) {
    .hp_stat.hp_stat--mobile {
        height: 150px;
        border-radius: 35px;
        margin: 0 0 45px 0;
    }
    .hp_stat.hp_stat--mobile img.hp_stat__column_img-1 {
        position: relative;
        max-width: 145px;
        margin: -20px 0 10px 0;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--1 .hp_stat__column {
        margin: 0 0 0 0;
        align-items: flex-start;
    }

    .hp_stat.hp_stat--mobile img.hp_stat__column_img-2 {
        position: relative;
        max-width: 110px;
        margin: -30px 0 10px -10%;
    }

    .hp_stat.hp_stat--mobile img.hp_stat__column_img-3 {
        position: relative;
        max-width: 120px;
        margin: -25px 0 10px 5%;
    }

    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 .hp_stat__column {
        margin: 0 5% 0 0;
    }

    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 .hp_stat__value {
        max-width: 172px;
    }

    .stat {
        width: 350px!important;
        height: 150px;
        border-radius: 35px;
    }
    .career-title {
        margin: 20px 0 20px 0;
    }
    .career-title h2 {
        font-size: 22px;
    }
    .career__position {
        min-height: 380px;
    }
}

@media screen and (max-width: 430px) {
    .hp_stat.hp_stat--mobile {
        height: 130px;
        border-radius: 35px;
        margin: 0 0 35px 0;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--1 .hp_stat__column {
        margin: 0 10% 0 0;
        align-items: flex-start;
    }
    .hp_stat.hp_stat--mobile img.hp_stat__column_img-1 {
        position: relative;
        max-width: 125px;
        margin: -15px 0 10px 0;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--1 .hp_stat__value {
        max-width: 129px;
    }


    .hp_stat.hp_stat--mobile img.hp_stat__column_img-2 {
        max-width: 93px;
        margin: -20px 0 10px -10%;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--2 .hp_stat__value {
        max-width: 161px;
    }

    .hp_stat.hp_stat--mobile img.hp_stat__column_img-3 {
        max-width: 105px;
        margin: -19px 0 10px 5%;
    }
    .hp_stat.hp_stat--mobile.hp_stat--mobile--3 .hp_stat__value {
        max-width: 154px;
    }

    .stat {
        width: 310px!important;
        height: 130px;
        border-radius: 35px;
    }
    .stat__value {
        font-size: 50px;
    }
}

/* Flex */

.flex {
    display: flex;
}

.flex--row {
    flex-direction: row;
}

.flex--ae {
    justify-content: flex-end;
}
.flex--jsb {
    justify-content: space-between;
}
