@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Montserrat:500,700|Roboto:400,500,700);
body,
html {
    border: 0;
    font-family: Arial, sans-serif;
    line-height: 1.45;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%
}

article,
aside,
audio,
canvas,
caption,
details,
div,
figure,
footer,
header,
hgroup,
iframe,
img,
mark,
menu,
nav,
object,
section,
span,
summary,
table,
tbody,
td,
tfoot,
thead,
tr,
video {
    border: 0;
    margin: 0;
    padding: 0
}

a,
abbr,
address,
b,
blockquote,
cit,
code,
dd,
del,
dfn,
dl,
dt,
em,
fieldset,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
i,
ins,
label,
legend,
li,
ol,
p,
pre,
q,
samp,
small,
strong,
sub,
sup,
ul {
    border: 0;
    /* font-size: 100%; */
    vertical-align: top;
    margin: 0;
    padding: 0
}

article,
aside,
audio,
canvas,
figcaption,
figure,
figure img,
footer,
header,
hgroup,
nav,
section,
video {
    display: block
}

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

table caption,
table td,
table th {
    text-align: left;
    vertical-align: middle
}

li,
ol,
ul {
    list-style: none
}

a img {
    border: 0
}

:focus {
    outline: 0
}

.button {
    padding: 0 1.67rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: .3rem;
    background-color: #dd437c;
    color: #fff
}

.button:hover {
    animation: button_move .2s ease-in-out
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

@keyframes button_move {
    50% {
        transform: translateY(-5px) scaleX(1.03)
    }
    100% {
        transform: translateY(0) scaleX(1)
    }
}

body,
html {
    background: #f4f8fb;
    font: 500 18px/1.3 Roboto, sans-serif;
    color: #061e36
}

a {
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

img {
    width: 100%;
}

* {
    box-sizing: border-box
}

.layout {
    width: 95%;
    max-width: 1170px
}

footer,
header,
section {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch
}

footer .layout,
header .layout,
section .layout {
    display: inline-flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center
}

#page {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden
}

.img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.button {
    flex-grow: 0;
    padding: 0 1.67rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: .3rem;
    background-color: #dd437c;
    color: #fff;
    line-height: 3.33rem;
    font-size: 2rem
}

.button:hover {
    animation: button_move .2s ease-in-out
}

h1,
h2,
h3 {
    font-family: Montserrat, sans-serif;
    line-height: 1
}

h2,
h3 {
    text-transform: uppercase
}

@media (max-width:1280px) {
    body,
    html {
        font-size: 1.40625vw
    }
}

@media (max-width:600px) {
    body,
    html {
        font-size: 3.75vw
    }
    h2 {
        font-size: 2rem !important;
        line-height: 1.2
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 5rem;
    background-color: #fff;
    border-bottom: 1px solid #ccd7dc
}

header .layout {
    position: relative;
    flex-direction: row;
    justify-content: flex-start
}

header .logo {
    display: flex;
    width: 9.72rem;
    height: 57%;
    margin-right: auto
}

header nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch
}

header .link {
    margin: 0 1rem;
    padding: .28rem;
    font-size: .83rem;
    font-weight: 700;
    color: #082644;
    border-bottom: 2px solid transparent
}

header .link:hover {
    color: #dd437c
}

header .link.active {
    color: #dd437c;
    border-color: #dd437c
}

header .language {
    position: absolute;
    top: 1.385rem;
    right: 0;
    width: 8.8rem;
    height: 2.17rem;
    padding: .45rem 0;
    font-size: .83rem;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
    border: 1px solid #ccd7dc;
    border-radius: .3rem;
    overflow-y: hidden
}

header .language span {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: .45rem;
    padding: 0 .77rem;
    color: #082644;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

header .language span img {
    width: 1.33rem;
    margin-right: .77rem
}

header .language span:hover {
    color: #dd437c
}

header .language span:last-child {
    margin-bottom: 0
}

header .language:after {
    position: absolute;
    top: .9rem;
    right: 1rem;
    content: "";
    width: 0;
    height: 0;
    border-left: .3rem solid transparent;
    border-right: .3rem solid transparent;
    border-top: .3rem solid #082644;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

header .language:hover:after {
    border-top-color: #dd437c
}

header .language.active {
    height: auto
}

header .language.active:after {
    top: .8rem;
    border-top: none;
    border-bottom: .3rem solid #082644
}

header .language.active:hover:after {
    border-bottom-color: #dd437c
}

header .signup {
    flex-grow: 0;
    padding: 0 1.67rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: .3rem;
    background-color: #dd437c;
    color: #fff;
    line-height: 3.33rem;
    font-size: 2rem;
    margin-left: 1.3rem;
    margin-right: 10rem;
    line-height: 2.22rem;
    font-size: .83rem
}

header .signup:hover {
    animation: button_move .2s ease-in-out
}

header .signup:hover {
    animation: button_move .2s ease-in-out
}

@media (max-width:1024px) {
    header .link,
    header .signup {
        font-size: 1rem
    }
}

@media (max-width:600px) {
    header {
        height: 4rem
    }
    header .logo {
        width: 9rem;
        height: 3rem;
        order: 1
    }
    header .signup {
        order: 2;
        margin: auto
    }
    header .onclick-menu {
        order: 3;
        position: relative;
        display: inline-block;
        width: 2.5rem;
        height: 2.5rem;
        margin-left: 1rem;
        background: url(../img/icon-menu.png) center no-repeat;
        background-size: contain;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear
    }
    header .onclick-menu:before {
        content: "";
        width: 100%;
        height: 100%
    }
    header .onclick-menu:focus {
        pointer-events: none;
        background-image: url(../img/close.png)
    }
    header .onclick-menu:focus nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }
    header nav {
        position: absolute;
        top: 3.2rem;
        right: -1rem;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        background: #fff;
        border-top: 1px solid #ccd7dc;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear
    }
    header .language,
    header .link {
        margin: 0;
        padding: .5rem 3rem .5rem 1.5rem;
        font-size: 1.2rem;
        white-space: nowrap;
        border-bottom: 1px solid #ccd7dc;
        border-left: 1px solid #ccd7dc;
        border-top: 1px solid transparent;
        border-right: 1px solid transparent
    }
    header .language {
        position: relative;
        top: 0;
        right: auto;
        width: auto;
        height: 2.6rem;
        border-radius: 0
    }
    header .language span {
        margin-bottom: 1rem;
        padding: 0
    }
    header .language span img {
        width: 1.5rem;
        margin-right: .5rem
    }
    header .language:after {
        top: .9rem;
        border-left: .4rem solid transparent;
        border-right: .4rem solid transparent;
        border-top: .4rem solid #082644
    }
    header .language:hover:after {
        border-top-color: #dd437c
    }
    header .language.active:after {
        top: .9rem;
        border-bottom-width: .4rem
    }
}

#section1 {
    margin-top: 5rem;
    display: flex;
    height: 48.89rem;
    background: #f4f8fb url(../img/bg-section1.jpg) top center no-repeat
}

#section1 .girl {
    position: absolute;
    top: 2.78rem;
    left: 50%;
    margin-left: 3.33rem;
    width: 49.89rem;
    height: 37.78rem;
    background-image: url(../img/sashahd.png)
}

#section1 .layout {
    z-index: 2;
    justify-content: flex-start;
    align-items: flex-start
}

#section1 h1 {
    margin-top: 10.55rem;
    margin-bottom: 1.39rem;
    width: 70%;
    font-size: 2.33rem
}

#section1 p {
    width: 65%;
    font-size: 1.67rem
}

#section1 .typewrite .wrap {
    border-right: .25rem solid #061e36;
    animation: blink .4s step-end infinite alternate
}

#section1 .button {
    margin-top: 1.67rem
}

#section1 .see-more {
    position: absolute;
    z-index: 2;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    text-transform: uppercase;
    color: #dd437c;
    animation: see_more 5s infinite ease-in-out
}

#section1 .see-more:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: .1rem;
    right: -1.2rem;
    transform: rotate(45deg);
    padding: .25rem;
    border: solid #dd437c;
    border-width: 0 .25rem .25rem 0;
    border-radius: .25rem
}

#section1 .pulse_now {
    cursor: pointer;
    box-shadow: 0 0 0 rgba(204, 169, 44, .4);
    animation: pulse 2s infinite
}

#section1 .diag-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 106.67rem;
    height: 13.33rem;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

#section1 .diag-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c4e1f2;
    transform-origin: 100% 0;
    transform: skewY(-7deg);
    z-index: -1
}

@media (max-width:1280px) {
    #section1 {
        background-size: 120%
    }
}

@media (max-width:600px) {
    #section1 {
        height: 50rem;
        margin-top: 4rem;
        text-align: center;
        background-size: 300%
    }
    #section1 .layout {
        align-items: center
    }
    #section1 h1,
    #section1 p {
        width: 100%
    }
    #section1 h1 {
        margin-top: 3rem
    }
    #section1 .girl {
        width: 27rem;
        height: 20.5rem;
        margin-left: 0;
        top: auto;
        bottom: 2.2rem;
        left: auto;
        right: 0
    }
    #section1 .see-more {
        bottom: 1rem;
        left: auto
    }
    #section1 .diag-bg {
        width: 100%;
        height: 5rem
    }
}

#section_Thank {
    margin-top: 5rem;
    display: flex;
    height: 48.89rem;
}

#section_Thank .girl {
    position: absolute;
    top: 2.78rem;
    left: 50%;
    margin-left: 3.33rem;
    width: 49.89rem;
    height: 37.78rem;
}

#section_Thank .layout {
    z-index: 2;
    justify-content: flex-start;
    align-items: flex-start
}

#section_Thank h1 {
    margin-top: 10.55rem;
    margin-bottom: 1.39rem;
    width: 70%;
    font-size: 2.33rem
}

#section_Thank p {
    width: 65%;
    font-size: 1.67rem
}

#section_Thank .typewrite .wrap {
    border-right: .25rem solid #061e36;
    animation: blink .4s step-end infinite alternate
}

#section_Thank .button {
    margin-top: 1.67rem
}

#section_Thank .see-more {
    position: absolute;
    z-index: 2;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    text-transform: uppercase;
    color: #dd437c;
    animation: see_more 5s infinite ease-in-out
}

#section_Thank .see-more:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: .1rem;
    right: -1.2rem;
    transform: rotate(45deg);
    padding: .25rem;
    border: solid #dd437c;
    border-width: 0 .25rem .25rem 0;
    border-radius: .25rem
}

#section_Thank .pulse_now {
    cursor: pointer;
    box-shadow: 0 0 0 rgba(204, 169, 44, .4);
    animation: pulse 2s infinite
}

#section_Thank .diag-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 106.67rem;
    height: 13.33rem;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

#section_Thank .diag-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c4e1f2;
    transform-origin: 100% 0;
    transform: skewY(-7deg);
    z-index: -1
}

@media (max-width:1280px) {
    #section_Thank {
        background-size: 120%
    }
}

@media (max-width:600px) {
    #section_Thank {
        height: 50rem;
        margin-top: 4rem;
        text-align: center;
        background-size: 300%
    }
    #section_Thank .layout {
        align-items: center
    }
    #section_Thank h1,
    #section_Thank p {
        width: 100%
    }
    #section_Thank h1 {
        margin-top: 3rem
    }
    #section_Thank .girl {
        width: 27rem;
        height: 20.5rem;
        margin-left: 0;
        top: auto;
        bottom: 2.2rem;
        left: auto;
        right: 0
    }
    #section_Thank .see-more {
        bottom: 1rem;
        left: auto
    }
    #section_Thank .diag-bg {
        width: 100%;
        height: 5rem
    }
}

#section2 {
    background: #c4e1f2 url(../images/bg-section2.jpg) bottom center no-repeat;
    padding-bottom: 29.67rem;
}

#section2 .layout {
    max-width: 41.67rem;
    text-align: center
}

#section2 h2 {
    margin-bottom: 1.11rem;
    font-size: 4rem;
    text-shadow: 0 .1em 0 rgba(6, 30, 54, .4)
}

#section2 p {
    line-height: 1.6
}

#section2 .pby {
    margin-top: 1.67rem;
    margin-bottom: -.3rem;
    font: .89rem/1 Montserrat, sans-serif
}

#section2 .af {
    width: 18.89rem
}

#section2 .girls {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -34rem;
    width: 68rem;
    height: 34.17rem;
    background-image: url(../img/girls-section2.png)
}

@media (max-width:1280px) {
    #section2 {
        background-size: 150%
    }
}

@media (max-width:900px) {
    #section2 .layout {
        max-width: 55rem;
    }
    #section2 p {
        font-size: 1.33rem
    }
}

@media (max-width:600px) {
    #section2 {
        padding-bottom: 21rem;
        background-image: none
    }
    #section2 .girls {
        width: 39.8rem;
        height: 20rem;
        margin-left: -19.9rem
    }
}

#section3 {
    padding: 2.78rem 0 2.22rem;
    background: #f0f6fa
}

#section3 h2 {
    margin-bottom: 1.67rem;
    font-size: 2rem;
    color: #dd437c;
    text-shadow: 0 .1em 0 rgba(221, 67, 124, .4)
}

#section3 .icons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1.67rem
}

#section3 .icons li {
    flex-basis: 29%;
    font: 700 1.33rem Montserrat, sans-serif;
    text-transform: uppercase;
    color: #dd437c;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center
}

#section3 .icons li img {
    width: 10.33rem;
    height: 7.11rem;
    margin-bottom: .83rem
}

#section3 .icons li span {
    text-align: center
}

@media (max-width:600px) {
    #section3 {
        padding-top: 2rem;
        text-align: center
    }
    #section3 .icons {
        flex-wrap: wrap;
        margin-bottom: 0
    }
    #section3 .icons li {
        flex-basis: 170px;
        margin-bottom: 2rem
    }
    #section3 .icons li img {
        width: 8.72rem;
        height: 6rem
    }
}

#section4 {
    padding: 2.78rem 0 4.44rem;
    background: #fff url(../images/bg-section4.png) bottom center no-repeat
}

#section4 .layout {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between
}

#section4 article {
    flex-basis: 50%
}

#section4 article h2 {
    margin-bottom: 1.11rem;
    font-size: 2rem;
    color: #dd437c;
    text-shadow: 0 .1em 0 rgba(221, 67, 124, .4)
}

#section4 article h2 span {
    display: block
}

#section4 article p {
    line-height: 1.5;
    margin-bottom: 2.78rem
}

#section4 .chibi {
    flex-basis: 47%
}

#section4 .chibi.marketing {
    height: 20.55rem;
    background-image: url(../img/hoku_HD.png);
    order: 2
}

#section4 .chibi.marketing+article {
    order: 1
}

#section4 .chibi.support {
    height: 21.95rem;
    background-image: url(../img/chibi-support.svg);
    order: 3
}

#section4 .chibi.support+article {
    order: 4
}

@media (max-width:1280px) {
    #section4 {
        background-size: 115%
    }
}

@media (max-width:900px) {
    #section4 article {
        font-size: 1.33rem
    }
}

@media (max-width:600px) {
    #section4 {
        padding-bottom: 2rem;
        text-align: center
    }
    #section4 article {
        flex-basis: 100%
    }
    #section4 article p {
        margin-bottom: 1rem
    }
    #section4 .chibi {
        flex-basis: 100%;
        margin-bottom: 4rem
    }
    #section4 .chibi.marketing {
        height: 12rem
    }
    #section4 .chibi.support {
        height: 13rem;
        order: 4;
        margin-bottom: 0
    }
    #section4 .chibi.support+article {
        order: 3
    }
}

#section5 {
    padding-top: 2.22rem;
    padding-bottom: 3.33rem;
    background: url(../img/bg-section5.png), linear-gradient(to bottom, #022d59 0, #061e36 100%);
    background-repeat: no-repeat;
    background-position: top center
}

#section5 h2 {
    font-size: 4rem;
    color: #dd437c;
    text-shadow: 0 .1em 0 rgba(221, 67, 124, .4)
}

#section5 .games {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    margin: 3.33rem 0 2.22rem
}

#section5 .games li {
    margin-bottom: 1.67rem;
    flex-basis: 31.5%;
    height: 15rem;
    border: 1px solid #5e5e70
}

#section5 .games li video {
    width: 100%
}

#section5 h3 {
    margin-bottom: 2.22rem;
    font-size: 2.67rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 .1em 0 rgba(255, 255, 255, .4)
}

#section5 h3 span {
    display: block
}

#section5 .stats {
    margin-bottom: 1.11rem;
    font-size: 1.11rem;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end
}

#section5 .stats li {
    flex-basis: 9.72rem;
    margin: 0 1.11rem .83rem;
    text-align: center
}

#section5 .stats li>span {
    display: block;
    font: 700 2.33rem Montserrat, sans-serif;
    color: #dd437c
}

#section5 .stats li#revenue {
    flex-basis: 10.55rem
}

#section5 .stats li.graph {
    margin-bottom: 0;
    flex-basis: 15.05rem;
    height: 8.61rem;
    background-image: url(../images/svg/graph.svg)
}

@media (max-width:1280px) {
    #section5 {
        padding-top: 2rem;
        background-size: 115%
    }
}

@media (max-width:900px) {
    #section5 .stats li {
        flex-basis: 15rem;
        font-size: 1.33rem
    }
    #section5 .stats li#revenue {
        flex-basis: 18rem
    }
    #section5 .stats li.graph {
        flex-basis: 18rem
    }
}

@media (max-width:600px) {
    #section5 h3 {
        font-size: 1.9rem;
        line-height: 1.2
    }
    #section5 .games {
        margin: 2.22rem 0
    }
    #section5 .games li {
        flex-basis: 48%;
        margin-bottom: 1rem;
        height: auto
    }
    #section5 .stats {
        flex-wrap: wrap;
        margin-bottom: 3rem
    }
}

#section6 {
    padding: 2.78rem 0;
    background: #fff
}

#section6 h2 {
    margin-bottom: 1.11rem;
    font-size: 1.67rem;
    color: #061e36;
    text-shadow: 0 .1em 0 rgba(6, 30, 54, .4)
}

#section6 .partners {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center
}

#section6 .partners span {
    margin: 0 1.39rem
}

@media (max-width:600px) {
    #section6 {
        padding: 2.5rem 0 1.5rem
    }
    #section6 .partners {
        flex-wrap: wrap
    }
    #section6 .partners span {
        width: 60%;
        margin: 1rem;
        text-align: center
    }
    #section6 .partners span img {
        width: auto;
        max-width: 100%;
        height: auto
    }
}

#section7 {
    padding: 2.78rem 0;
    background: #dd437c
}

#section7 h2 {
    font-size: 4rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 .1em 0 rgba(255, 255, 255, .4)
}

#section7 .accordion {
    width: 100%;
    max-width: 980px;
    margin-top: 2.22rem;
    background: #fff;
    border: 1px solid #ccd7dc;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .255)
}

#section7 .accordion li .head {
    position: relative;
    padding: .67rem 1.11rem .67rem 2.78rem;
    font-family: Montserrat, sans-serif;
    line-height: 1.33rem;
    border-bottom: 1px solid #ccd7dc;
    cursor: pointer
}

#section7 .accordion li .head:last-child {
    border-bottom: none
}

#section7 .accordion li .head:before {
    position: absolute;
    display: block;
    top: .67rem;
    left: .83rem;
    width: 1.11rem;
    vertical-align: top;
    font-size: 1.67rem;
    font-weight: 700;
    text-align: center;
    color: #dd437c;
    content: "+"
}

#section7 .accordion li .items {
    display: none;
    padding: 1.67rem 1.11rem 1.67rem 2.78rem;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    background: #5e5e70;
    cursor: default
}

#section7 .accordion li.open {
    display: block
}

#section7 .accordion li.open .head:before {
    top: .44rem;
    font-size: 2.5rem;
    content: "-"
}

#section7 .accordion li.open .items {
    display: block
}

@media (max-width:900px) {
    #section7 .accordion li {
        font-size: 1.33rem
    }
    #section7 .accordion li .head {
        line-height: 2rem
    }
}

@media (max-width:600px) {
    #section7 .accordion li {
        font-size: 1rem
    }
    #section7 .accordion li .head {
        line-height: 1.67rem
    }
}

footer {
    flex-direction: column;
    align-items: center;
    padding: 25px 0 15px;
    background: #f6f9fc
}

footer .layout {
    flex-direction: row;
    justify-content: flex-start
}

footer .left {
    margin-left: 3.5%;
    margin-right: auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center
}

footer .logo {
    display: flex;
    width: 166px;
    height: 49px
}

footer .social-icons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 15px
}

footer .social-icons a {
    width: 32px;
    height: 32px;
    margin: 4px
}

footer .links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    margin-right: 50px;
    line-height: 30px
}

footer .links ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: stretch;
    margin: 0 4rem
}

footer .links .title {
    font-family: Montserrat, sans-serif;
    font-weight: 700
}

footer .links a {
    font-weight: 400;
    color: #dd437c
}

footer .copyright {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 2.78rem;
    padding: .67rem 0;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    color: #5a5a5a;
    border-top: 1px solid #ccd7dc;
    border-bottom: 1px solid #ccd7dc
}

@media (max-width:1024px) {
    footer .left {
        margin-left: 0
    }
    footer .logo {
        width: 140px;
        height: 41px
    }
    footer .social-icons {
        margin-top: 7px
    }
    footer .social-icons a {
        width: 24px;
        height: 24px;
        margin: 3px
    }
    footer .links {
        margin-right: 0;
        font-size: 14px;
        line-height: 24px
    }
    footer .links ul:last-child {
        margin-right: 0
    }
    footer .copyright {
        font-size: 12px
    }
}

@media (max-width:600px) {
    footer .links ul {
        margin: 0 2rem
    }
    footer .links ul:last-child {
        margin: 0
    }
    footer .copyright {
        margin-top: 1rem
    }
}

@media (max-width:440px) {
    footer .layout {
        flex-direction: column
    }
    footer .left {
        margin-left: auto
    }
    footer .links {
        flex-wrap: wrap
    }
    footer .links ul {
        margin: 2rem !important
    }
    footer .copyright {
        margin-top: 0;
        text-align: center
    }
}

.visible {
    opacity: 1
}

.invisible {
    opacity: 0
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    20%,
    53%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    50%,
    from,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1)
    }
    30% {
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    from,
    to {
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    from {
        transform: none
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    11.1%,
    from,
    to {
        transform: none
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    20%,
    40%,
    60%,
    80%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    60%,
    75%,
    90%,
    from,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

html:lang(de) #section2 h2 {
    font-size: 3.7rem
}

html:lang(de) #section3 .icons li:nth-child(2) {
    flex-basis: 31%
}

html:lang(de) #section5 .stats li#revenue {
    flex-basis: 12rem
}

html:lang(pl) #section2 h2 {
    font-size: 3.7rem
}

html:lang(ru) #section2 h2 {
    font-size: 3rem
}

html:lang(ru) #section5 h2 {
    font-size: 3rem
}

html:lang(ru) #section7 h2 {
    font-size: 3rem
}

.program {
    padding: 70px 0;
    text-align: center;
    background-size: auto 100%;
    background: #c4e1f2;
}

.program h2 {
    margin-bottom: 1.11rem;
    font-size: 4rem;
    text-shadow: 0 .1em 0 rgba(6, 30, 54, .4)
}

@media (min-width: 768px) {
    .program {
        padding: 0px 0 84px;
    }
}

grid-m .program__content {
    max-width: 950px;
    margin: 0 auto 62px;
}

.program__text {
    max-width: 868px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .program .percent-block {
        margin-bottom: -131px;
    }
}

.program h2 {
    margin-bottom: 48px;
}

.percent-block {
    position: relative;
    max-width: 999px;
    margin: 86px auto;
}

.percent-block>img {
    display: none;
}

@media (min-width: 768px) {
    .percent-block>img {
        display: block;
        max-width: none;
        width: 100%;
    }
}

.percent_el {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    font-family: Montserrat, sans-serif;
}

@media (min-width: 768px) {
    .percent_el {
        position: absolute;
    }
}

.percent_el+.percent_el {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .percent_el+.percent_el {
        margin-top: 0;
    }
}

.percent_el__top {
    margin: 0 0 0.2em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 60px;
    color: #000;
}

@media (min-width: 1030px) {
    .percent_el__top {
        line-height: 60px;
    }
}

.percent_el__text {
    font-size: 20px;
    line-height: 1;
    margin: 0 0.7em 0 0;
}

@media (min-width: 768px) {
    .percent_el__text {
        font-size: 2vw;
    }
}

@media (min-width: 1030px) {
    .percent_el__text {
        font-size: 20px;
    }
}

.percent_el__percent {
    font-size: 80px;
    color: #061e36;
}

@media (min-width: 768px) {
    .percent_el__percent {
        font-size: 8vw;
    }
}

@media (min-width: 1030px) {
    .percent_el__percent {
        font-size: 80px;
    }
}

@media (min-width: 768px) {
    .percent_el--10 {
        top: 19.6%;
        left: 3.1%;
    }
}

@media (min-width: 768px) {
    .percent_el--60 {
        top: 17.7%;
        left: 39%;
    }
}

@media (min-width: 768px) {
    .percent_el--100 {
        top: 6.3%;
        left: 73.5%;
    }
}

.percent_el__title {
    text-align: center;
    font-size: 24px;
    line-height: calc(19.94/23.92);
    color: #dd437c;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .percent_el__title {
        font-size: 2.4vw;
    }
}

@media (min-width: 1030px) {
    .percent_el__title {
        font-size: 24px;
    }
}

.info-grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 18px 30px;
}

@media (min-width: 480px) {
    .info-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .info-grid {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .info-grid {
        grid-gap: 18px 70px;
    }
}

.info-item {
    text-align: center;
}

.info-item__icon {
    margin: 0 0 18px;
    height: 90px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: center;
    justify-content: center;
}

.info-item__icon img {
    max-height: 100%;
}

.info-item h3 {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 13px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
    color: #fff;
    text-transform: uppercase;
}

@media (min-width: 480px) {
    .info-item h3 {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .info-item h3 {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .info-item h3 {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .info-item h3 {
        font-size: 32px;
    }
}

.info-item img {
    width: 20%;
}

.info-item h3:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 61px;
    height: 5px;
    content: '';
    background: #2d2d2d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

.Terms {
    justify-content: center;
    padding: 10%;
}

.Terms p {
    padding: 1%;
    font-family: Montserrat, sans-serif;
}

@media screen and (min-device-width :240px) and (max-device-width: 900px) {
    .Terms {
        padding-top: 20%;
    }
}