@font-face {
    font-family: "DINNextSlabPro-Medium";
    src: url("DINNextSlabPro-Medium.woff") format("woff"), url("DINNextSlabPro-Medium.woff2")  format("woff2");
}

/****** MAIN ELEMENTS ******/

body {
    margin:0;
    padding:0;	
}

div {
    position:absolute;
}

#wrapper {
    display:block;
    top: 0;
    left: 0;
    width: 970px;
    height: 250px;
	overflow: hidden;
	background: #000;
}

#wrect {
    width: inherit;
    height: inherit;
    background: #000;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 101;
}

#border {
    border: 1px solid #565656; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    width: inherit;
    height: inherit;
    pointer-events: none;
    top: 0;
    left: 0;
}

#bgexit {
    width: inherit;
    height: inherit;
    cursor: pointer;
    top: 0;
    left: 0;
}

/****** LOGO ******/

#logo {
    cursor: pointer;
    width: 90px;
    height: 90px;
    top: 15px;
    left: 15px;
    background: url('logo.svg') center center no-repeat;
}

/****** CTA ******/

#cta {
    overflow: hidden;
    width: 180px;
    height: 40px;
    cursor: pointer;
    bottom: 50px;
    right: 120px;
    border-radius: 7px;
    z-index: 100;
    font-family: 'Arial', sans-serif;
	font-weight: 600;
	font-size: 15px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background: #00adee; 
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#cta:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
}

#cta:hover, #cta:active {
    color: #00aeef;
}

#cta:hover:after, #cta:active:after {
    width: 100%;
}


/****** TEXT ******/
#textWrap {
    overflow: hidden;
    width: 420px;
    height: inherit;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: 50px;
    right: 0;
    text-align: center;
}

#text1 {
    font-family: "DINNextSlabPro-Medium", serif;
    color: #fff;
    line-height: 115%;
    font-size: 27px;
    width: inherit;
    height: inherit;
}

.blue {
    color: #00aeef;
}

/******** SCROLL BAR ********/

#imgslider{
    width:inherit;
    height:inherit;
}

#imgslider-first {
    right:0;
    background-position: right;
    height:inherit;
    background-image: url('img_1.jpg');
}

#imgslider-last {
    height:inherit;
    left:0;
    background-position: left;
    background-image: url('img_2.jpg');
}

.line {
    background-color: #D1EFFC;
    pointer-events: none;
}

#slidebar {
    height: inherit;
    pointer-events: none;
}

#icon {
    pointer-events: auto;
}

#hand {
    width: 33px;
    height: 33px;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    background: url('hand.svg') center center no-repeat;
    pointer-events: none;
}

