*
{
    box-sizing: border-box;

    outline: none;
}

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
{
    font: inherit;
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
}

/* 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-spacing: 0;
    border-collapse: collapse;
}

.hidden
{
    display: none !important;
}

body
{
    font-family: 'Roboto', sans-serif;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    background: #f5f6f7;
}

header
{
    display: flex;

    width: 100%;
    height: 100px;

    color: #f5f6f7;
    background: #2a333c;

    justify-content: center;
    align-items: center;
}

header h1
{
    font-size: 45px;
}

.wrapper
{
    display: flex;
    flex-direction: column;

    width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.wrapper .container_wrapper
{
    position: relative;

    display: flex;
    flex-direction: column;

    margin: 20px 0;
    padding: 20px;

    border-radius: 10px;
    background: #eee;
    box-shadow: 0 3px 17px 0 rgba(0, 0, 0, .12);
}

.wrapper .container_wrapper .title
{
    font-size: 35px;
    font-weight: bold;

    display: flex;

    width: 100%;
    margin: 10px 0 20px;

    color: #2a333c;

    align-items: center;
    justify-content: center;
}

.wrapper .container_wrapper .paralax-comtainer
{
    position: relative;

    overflow: hidden;

    width: 100%;
}

.wrapper .container_wrapper .paralax-comtainer.demo1
{
    height: 650px;

    background: #2a333c;
}

.wrapper .container_wrapper .paralax-comtainer.demo2
{
    height: 500px;

    background: #00868b;
}

.wrapper .container_wrapper .paralax-comtainer.demo3
{
    height: 700px;
}

.wrapper .container_wrapper .paralax-comtainer .paralax__item
{
    position: absolute;
}

.wrapper .container_wrapper .paralax-comtainer .paralax__item.item1
{
    z-index: 1;
    top: calc((50% - 200px));
    left: calc(50% - 375px);
}

.wrapper .container_wrapper .paralax-comtainer .paralax__item.item2
{
    z-index: 2;
    top: calc((50% - 230px));
    left: calc(100% - 450px);
}

.wrapper .container_wrapper .paralax-comtainer .paralax__item.item3
{
    z-index: 3;
    top: calc((50% - 250px));
    left: calc(100% - 375px);
}

.wrapper .container_wrapper .paralax-comtainer .paralax__item.fullscreen
{
    width: 100%;
    height: auto;
}

.wrapper .container_wrapper .paralax-comtainer .paralax__item.fullscreen img
{
    width: 100%;
}
