@import url(http://fonts.googleapis.com/css?family=Montserrat);

* {margin:0; padding:0;}
html,body {
  width:100%;
  height:100%;
  background-color: white;
  font-family: 'Montserrat', sans-serif;
}

.menu-container {
  padding: 60px;
  box-sizing:;
}

#logo {
  position:fixed;
  left:35px;
  top:30px;
  z-index: 999;
}

.burger-menu {
  position: fixed;
  right: -30px;
  width: 500px;
  height: 30px;
  color: #60635E;
  text-transform: uppercase;
  z-index: 999;
}

.burger-click-region {
  position: absolute;
  right: 100px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: white;
  padding:10px;
  box-sizing:border-box;
}

.burger-menu-txt {
  display: block;
  font-size: 18px;
  left: 0;
  top: 5px;
  cursor: default;
  opacity:0;
  -webkit-transition: opacity 200ms ease-out, -webkit-transform 200ms cubic-bezier(0.34, 0.55, 0.25, 0.83);
          transition: opacity 200ms ease-out, transform 200ms cubic-bezier(0.34, 0.55, 0.25, 0.83);
}
.is-open .burger-menu-txt {
  opacity: 1;
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
}

.burger-menu-txt ul {
  list-style-type: none;
}

.burger-menu-txt ul li {
  float: left;
  padding: 0 20px;
}

.burger-menu-piece {
  display: block;
  position: absolute;
  margin-top:16px;
  width: 40px;
  border-top: 6px solid #C2C2C2;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 400ms ease-out;
          transition: transform 400ms ease-out;
}
.burger-menu-piece:nth-child(1) {
  top: 0;
}
.burger-menu-piece:nth-child(2) {
  top: 12px;
  opacity: 1;
  -webkit-transition: -webkit-transform 400ms ease-out, opacity 0ms linear 200ms;
          transition: transform 400ms ease-out, opacity 0ms linear 200ms;
}
.burger-menu-piece:nth-child(3) {
  top: 24px;
}
.active .burger-menu-piece:nth-child(1) {
  -webkit-animation: burger-open-top 400ms ease-out forwards;
          animation: burger-open-top 400ms ease-out forwards;
}
.active .burger-menu-piece:nth-child(2) {
  opacity: 0;
  -webkit-transition: -webkit-transform 400ms ease-out, opacity 0ms linear 200ms;
          transition: transform 400ms ease-out, opacity 0ms linear 200ms;
}
.active .burger-menu-piece:nth-child(3) {
  -webkit-animation: burger-open-bot 400ms ease-out forwards;
          animation: burger-open-bot 400ms ease-out forwards;
}
.closing .burger-menu-piece:nth-child(1) {
  -webkit-animation: burger-close-top 400ms ease-out forwards;
          animation: burger-close-top 400ms ease-out forwards;
}
.closing .burger-menu-piece:nth-child(3) {
  -webkit-animation: burger-close-bot 400ms ease-out forwards;
          animation: burger-close-bot 400ms ease-out forwards;
}

@-webkit-keyframes burger-open-top {
  50% {
    -webkit-transform: translate3d(0, 12px, 0);
            transform: translate3d(0, 12px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
            transform: translate3d(0, 12px, 0) rotate(45deg);
  }
}

@keyframes burger-open-top {
  50% {
    -webkit-transform: translate3d(0, 12px, 0);
            transform: translate3d(0, 12px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
            transform: translate3d(0, 12px, 0) rotate(45deg);
  }
}
@-webkit-keyframes burger-open-bot {
  50% {
    -webkit-transform: translate3d(0, -12px, 0);
            transform: translate3d(0, -12px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
            transform: translate3d(0, -12px, 0) rotate(-45deg);
  }
}
@keyframes burger-open-bot {
  50% {
    -webkit-transform: translate3d(0, -12px, 0);
            transform: translate3d(0, -12px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
            transform: translate3d(0, -12px, 0) rotate(-45deg);
  }
}
@-webkit-keyframes burger-close-top {
  0% {
    -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
            transform: translate3d(0, 12px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 12px, 0) rotate(0deg);
            transform: translate3d(0, 12px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes burger-close-top {
  0% {
    -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
            transform: translate3d(0, 12px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 12px, 0) rotate(0deg);
            transform: translate3d(0, 12px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes burger-close-bot {
  0% {
    -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
            transform: translate3d(0, -12px, 0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate3d(0, -12px, 0) rotate(0deg);
            transform: translate3d(0, -12px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes burger-close-bot {
  0% {
    -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
            transform: translate3d(0, -12px, 0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate3d(0, -12px, 0) rotate(0deg);
            transform: translate3d(0, -12px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}




/*SECTION*/

.content {
  height:100%;
  position: relative;
}

/*.section1 {background: red;}
.section2 {background: blue;}*/

.asylogo {
  width:200px;
  position: absolute;
  top:50%;
  left:50%;
  margin-top:-200px;
  margin-left:-100px;
}



       

        .mo {
            -webkit-animation: fadeIn .3s infinite;
            animation: fadeIn .3s infinite;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-duration: 1.8s;
            animation-duration: 1.8s;
            opacity: 0;
        }

        .meshi1 {
            border-top: 1.125em solid transparent;
            border-right: none;
            border-bottom: 1em solid transparent;
            border-left: 1.875em solid #D03838;
            position: absolute;
            transform: rotate(-1deg);
            top: 0px;
            left: 50%;
            margin-top: 18.4px;
            transform-origin: left bottom;
            border-radius: 3px 3px 0 0;
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .meshi2 {
            border-top: 1.125em solid transparent;
            border-right: none;
            border-bottom: 1em solid transparent;
            border-left: 1.875em solid #D03838;
            position: absolute;
            transform: rotate(-244deg);
            transform: rotateY(180deg);
            top: 0px;
            left: 50%;
            margin-top: 35.3px;
            margin-left: 30px;
            transform-origin: left bottom;
            border-radius: 3px 3px 0 0;
            -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
        }

        .meshi3 {
            border-top: 1.125em solid transparent;
            border-right: none;
            border-bottom: 1em solid transparent;
            border-left: 1.875em solid #D03838;
            position: absolute;
            transform: rotate(124deg);
            transform: rotateX(194deg);
            top: 0px;
            left: 50%;
            margin-top: 19.4px;
            transform-origin: left bottom;
            border-radius: 3px 3px 0 0;
            -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
        }

        .meshi4 {
            border-top: 1.125em solid transparent;
            border-right: none;
            border-bottom: 1em solid transparent;
            border-left: 1.875em solid #D03838;
            position: absolute;
            transform: rotate(-61deg);
            top: 0px;
            left: 50%;
            margin-left: -0.52px;
            margin-top: 18px;
            transform-origin: left bottom;
            border-radius: 3px 3px 0 0;
            -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
        }

        .meshi5 {
            border-top: 1.125em solid transparent;
            border-right: none;
            border-bottom: 1em solid transparent;
            border-left: 1.875em solid #D03838;
            position: absolute;
            transform: rotate(600deg);
            transform: rotateY(0deg);
            top: 0px;
            left: 50%;
            margin-top: 35.3px;
            margin-left: -30px;
            transform-origin: left bottom;
            border-radius: 3px 3px 0 0;
            -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
        }

        .meshi6 {
            border-top: 1.125em solid transparent;
            border-right: none;
            border-bottom: 1em solid transparent;
            border-left: 1.775em solid blue;
            position: absolute;
            transform: rotate(-60deg);
            top: 0px;
            left: 50%;
            margin-top: 52.4px;
            margin-left: -0.70px;
            transform-origin: left bottom;
            border-radius: 3px 3px 0 0;
            -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
        }

        @-webkit-keyframes fadeIn {
            0% {
                opacity: 0;
            }

            40% {
                opacity: 1;
            }

            60% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            40% {
                opacity: 1;
            }

            60% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }


.vertical-text {
  opacity: 0.3;
  font-size: 3em;
  letter-spacing: 5px;
  color:#444;
  transform: rotate(-90deg);
  float: left;
  position: absolute;
  left:-50%;
  margin-left:-50px;
  top:50%;
}

.vertical-text-active {
  left:0;
}

.asy_aboutus {
  margin-top: 250px;
  text-align: center;
}

.asy-about {
  box-sizing:border-box;
  paddding:10px 30px;
}

.asy_icon {
  opacity: 0.5;
   transition: opacity .3s ease-in-out;
   -moz-transition: opacity .3s ease-in-out;
   -webkit-transition: opacity .3s ease-in-out;
}

.asy_icon:hover {
  opacity: 1;
}

/*FORM*/

#asy-add {
  margin-top: 200px;
  margin-left:100px;
}

#asy-form {
  margin-top: 100px;
  margin-left:100px;
}

.awesome-form {
  margin:20% auto 0 auto;
  padding:20px;
  height:auto;
}

.awesome-form .input-group,
.awesome-form input,
.awesome-form textarea,
.awesome-form label {
  display:block;
}

.awesome-form .input-group {
  position:relative;
}

.awesome-form input,
.awesome-form label,
.awesome-form textarea
{
  margin-bottom: 20px;
  margin-right:20px;
  padding:20px 0;
  width:250px;
  font-family:georgia;
  font-size:18px;
}

.awesome-form input {
  outline:none;
  background:transparent;
  border:none;
  border-bottom:2px solid cornflowerblue;
  color:gray;
}

.awesome-form textarea {
  outline:none;
  background:transparent;
  border:none;
  border-bottom:2px solid cornflowerblue;
  color:gray;
}

.awesome-form input[type="submit"] {
  padding:20px;
  width:auto;
  border:2px solid cornflowerblue;
  color:cornflowerblue;
  cursor:pointer;
  font-family:tahoma;
}

.awesome-form input[type="submit"]:hover {
  background:cornflowerblue;
  color:white;
}

.awesome-form label {
  position:absolute;
  top:50%;
  left:0;
  transform:translateY(-50%);
  pointer-events:none;
  font-style:italic;
  color:#bbb;
  transition:.2s ease all;
}

.awesome-form input:focus {
  border-color:lightgray;
}

.awesome-form input:focus ~ label,
.awesome-form input.has-value ~ label {
  top:0;
  font-size:12px;
  color:cornflowerblue;
} 


$main-text: #2d313f; 
$link: #d36868;
$background: #e7eaf0; 
$color-1: #2d313f; 
$color-2: #d36868; 
$color-3: #ffffff;



$primary-font: 'Lora', serif;



@function calculateRem($size) {
  $remSize: $size / 16px;
  @return $remSize * 1rem;
}

@mixin font-size($size) {
  font-size: $size;
  font-size: calculateRem($size);
}


  
$S:     320px;   
$M:     768px;     
$L:     1170px;         


@mixin MQ($canvas) {
  @if $canvas == S {
   @media only screen and (min-width: $S) { @content; } 
  }
  @else if $canvas == M {
   @media only screen and (min-width: $M) { @content; } 
  }
  @else if $canvas == L {
   @media only screen and (min-width: $L) { @content; } 
  }
}


#google-container {
   position: relative;
width: 100%;
height: auto;
max-height: 100%;
background-color: $background;
min-height: 100%;
bottom:0;

    @include MQ(M) {
      height: 300px;
    }

    @include MQ(L) {
      height: 600px;
    }
}

#cd-google-map {
  position: relative;

  address {
    display:none;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba($color-2, .9);
    color: $color-3;
    @include font-size(13px);

    @include MQ(M) {
      @include font-size(15px);
      text-align: center;
    }
  }
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: rgba(214,70,70, .9);
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-controller.svg');

  .no-touch &:hover {
    background-color: rgba($color-2, 1);
  }

  @include MQ(M) {
    margin-left: 50px;
  }
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 120px;
  margin-bottom: 1px;

  @include MQ(M) {
    margin-top: 50px;
  }
}

#cd-zoom-out {
  background-position: 50% -32px;
}


#gmap {
  width: 300px;
  height:100%;
  position: absolute;  
  right:0;
  bottom:0;
}

#cd-google-map{
  height:100%;
}