@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);
* {
  font-family: "Roboto";
}

body{
  overflow-x: hidden;
  overflow-y: scroll;
}

.clr {
  clear: both;
}

.background {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  perspective: 1000px;
}

.container {
  width: 90%;
  max-width: 500px;
  margin: 250px auto;
  transform: rotateX(20deg);
  color: black;
  box-shadow: 0px 0 30px 1px rgba(0,0,0,.5);
}

.anm {
 -webkit-animation: slide-in-elliptic-bottom-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
          animation: slide-in-elliptic-bottom-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}

@-webkit-keyframes slide-in-elliptic-bottom-fwd {
  0% {
    -webkit-transform: translateY(600px) rotateX(30deg) scale(0);
            transform: translateY(600px) rotateX(30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
            transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% -1400px;
            transform-origin: 50% -1400px;
    opacity: 1;
  }
}
@keyframes slide-in-elliptic-bottom-fwd {
  0% {
    -webkit-transform: translateY(600px) rotateX(30deg) scale(0);
            transform: translateY(600px) rotateX(30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
            transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% -1400px;
            transform-origin: 50% -1400px;
    opacity: 1;
  }
}


.anm2 {
  -webkit-animation: text-blur-out 1.2s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s reverse both;
          animation: text-blur-out 1.2s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s reverse both;
}

@-webkit-keyframes text-blur-out {
  0% {
    -webkit-filter: blur(0.01);
            filter: blur(0.01);
  }
  100% {
    -webkit-filter: blur(12px) opacity(0%);
            filter: blur(12px) opacity(0%);
  }
}
@keyframes text-blur-out {
  0% {
    -webkit-filter: blur(0.01);
            filter: blur(0.01);
  }
  100% {
    -webkit-filter: blur(12px) opacity(0%);
            filter: blur(12px) opacity(0%);
  }
}


.outer {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 0px 2px 1px #aaa;
  font-size: 2em;
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 40px;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
}

.outer .outer-content {
  position: relative;
  z-index: 1;
  clear: both;
}

.outer .outer-corner {
  height: 40px;
  width: 40px;
  border-right: 5px solid rgba(255, 255, 255, 0.5);
  border-top: 5px solid white;
  position: absolute;
  right: -30px;
  top: -30px;
}

.main {
  background: linear-gradient(to bottom, transparent, white 40px);
  transform: translateY(-40px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}
.main p {
  margin: 0px;
  font-weight: 300;
}
.main p.st {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}

.main p.st:first-of-type {
  margin-top: 0px;
}

.main .pd {
  padding: 40px;
}

.main .map {
  width: 250px;
  height: 200px;
  background: url("https://s32.postimg.org/rienefced/Ultra_Light_with_Labels_Snazzy_Maps_Free_Sty.png");
  background-size: 220%;
  -webkit-filter: contrast(100%);
  position: absolute;
  left: 950px;
  top: 20px;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
}

.main .img {
  position: absolute;
  bottom: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  background: url(https://images.unsplash.com/photo-1452110040644-6751c0c95836?crop=entropy&dpr=2&fit=crop&fm=jpg&h=825&ixjsv=2.1.0&ixlib=rb-0.3.5&q=50&w=1450);
  background-size: cover;
  width: 100%;
  height: 10px; 
}

.main .main-outer {
  height: 40px;
  width: 40px;
  border-left: 5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 5px solid white;
  position: absolute;
  left: -30px;
  bottom: -30px;
}

@media only screen and (max-width: 360px) {
  .arrow-ct_top {
    display: none;
  }

  .container {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 1360px) {
 .background {
  margin-top: -5%;
 }
}