@font-face {
    font-family: "HelveticaNeueLTPro Roman";
    src: url('HelveticaNeueLTPro-Roman.woff2') format('woff2');
}

@font-face {
    font-family: "Helvetica Now Display Bold";
    src: url('HelveticaNowDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

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

body {
    margin:0;
    padding:0;	
}

div {
    position:absolute;
}

#wrapper {
    display:block;
    top: 0;
    left: 0;
    width: 300px;
    height: 600px;
	overflow: hidden;
    background: #fff url(img.jpg) no-repeat;
}

#wrect {
    width: inherit;
    height: inherit;
    background: #fff;
    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 {
    width: 95px;
    height: 90px;
    top: 13px;
    left: 13px;
    background: url('logo.svg') center center no-repeat;
    background-size: contain;
    cursor: pointer;
}
/******************** BUTTON ********************/

#cta {
    display: inline-block;
    text-align: center;
    font-family: 'Helvetica Now Display Bold', sans-serif;
    width: 150px;
    height: 38px;
	font-size: 16px;
    line-height: 38px;
    cursor: pointer;
    bottom: 55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-weight: 600;
    color: #fff;
    background : #c21b17;
    text-transform: uppercase;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#cta:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #752127;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

#cta:hover, #cta:focus, #cta:active {
    color: #fff;
}

#cta:hover:before, #cta:focus:before, #cta:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

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

#text1 {
    font-size: 36px;
    top: 120px;
    line-height: 110%;
    font-family: 'Helvetica Now Display Bold', sans-serif;
    text-align: center;
    width: inherit;
    font-weight: 600;
}

#text2 {
    width: 270px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 210px;
    font-size: 23px;
    line-height: 120%;
    font-family: 'HelveticaNeueLTPro Roman', sans-serif;
    text-align: center;
}