@font-face {
    font-family: "DINNextSlabPro-Medium";
    src: url("DINNextSlabPro-Medium.woff2") format("woff2");
}
/*************** MAIN ELEMENTS ***************/

body {
    margin:0;
    padding:0;	
}

div {
    position:absolute;
}

#wrapper {
    display:block;
    top: 0;
    left: 0;
    width: 300px;
    height: 600px;
    background: rgb(0,0,0);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(0,0,0,1)), to(rgba(16,18,19,1)));
    background: linear-gradient(0deg, rgba(0,0,0,1) 50%, rgba(16,18,19,1) 100%);
	overflow: hidden;
}

#wrect {
    width: inherit;
    height: inherit;
    background: rgb(0,0,0);
    pointer-events: none;
}

#border {
    border: 1px solid #333; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    width: inherit;
    height: inherit;
    pointer-events: none;
}

#bgexit {
    width: inherit;
    height: inherit;
    cursor: pointer;
}

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

#logo {
    cursor: pointer;
    width: 90px;
    height: 90px;
    background: url("logo.svg") no-repeat;
    background-size: contain;
}

/******************** BUTTON ********************/
  
#cta {
    width: 150px;
    height: 40px;
    bottom: 15px;
    left: 15px;
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
    font-family: 'Arial', sans-serif;
	font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    background: #00aeef;
    color: #fff;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#cta:hover {
    background: #fff;
    color: #00aeef;
}

/********************** TEXT **********************/

.text {
    top: 125px;
    left: 41px;
    width: 230px;
    height: inherit;
    font-family: "DINNextSlabPro-Medium", serif;
    font-weight: 600;
    font-size: 21px;
    color: #fff;
    line-height: 110%;
}

.blue {
    color: #00AEEF;
}

/********************** IMAGE **********************/

#framesWrap,
#imagesWrap,
#linesWrap,
#dotsWrap {
    width: inherit;
    height: inherit;
    top: 0;
    left: 0;
}

#shadow {
    height: inherit;
    width: 40%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.3)), to(rgba(0,0,0,0)));
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0));
}


#bg {
    width: 600px;
    height: 600px;
    top: 0;
    left: -150px;
    background: url("bg.jpg") no-repeat;
    background-size: cover;
}