/*RESET CSS BEGIN*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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

/* HTML5 display-role reset for older browsers */

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

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

/*RESET CSS END*/

/*HELPER CLASS BEGIN*/

input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
}

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

img {
    max-width: 100%;
    height: auto;
}

.test {
    flex-wrap: wrap;
}

.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.alignLeft {
    float: left;
}

.alignRight {
    float: right;
}

img.alignLeft {
}

img.alignRight {
}

.no-margin-bottom {
    margin-bottom: 0;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

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

.margin-bottom-30 {
    margin-bottom: 30px;
}

.grid-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.grid-center,
.grid-full-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.grid-full-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.grid-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid-2 {
    width: 50%;
}

.grid-3 {
    width: 33.33%;
}

.grid-4 {
    width: 25%;
}

strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

p,
ul li,
ol li {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 20px 0;
}

ul li,
ol li {
    margin-bottom: 10px;
}

/*HELPER CLASS END*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    opacity: 0;
    padding: 0 10px;
}

.js-text-language,
body {
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.language-is-changing .js-text-language {
    opacity: 0;
}

body.page-is-loaded {
    opacity: 1;
}

h4 {
    font-size: 50px;
    line-height: 55px;
    color: white;
    height: 60px;
    overflow: hidden;
    text-align: center;
    transition: all 1.5s;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.29);
    font-weight: 700;
    opacity: 0;
}

h4.is-active {
    opacity: 1;
}

h5 {
    font-size: 15px;
    line-height: 20px;
    color: #5f5f5f;
    font-weight: 300;
    text-align: center;
}

h5 strong {
    color: #a0a0a0;
}

.text-wrap {
    height: 60px;
    overflow: hidden;
    margin-bottom: 35px;

    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;

}

.wrapper {
    max-width: 920px;
    margin: auto;
    position: relative;
}

@media only screen and (max-width: 450px) {
    h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .text-wrap {
        margin-bottom: 10px;
    }

    .text-wrap {
        margin-bottom: -15px;
    }

    h5{
        position: relative;
        z-index:1;
        background:black;
    }
}