/*------------------------------
 Anime
------------------------------*/
.fadeIn {
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  transform: translateY(80px);
}

.fadeDown {
  opacity: 0;
  transform: translateY(-120px);
}



.fadeRight {
  opacity: 0;
  transform: translateX(-80px);
}

.fadeLeft {
  opacity: 0;
  transform: translateX(80px);
}

.zoomIn{
  opacity: 0;
}



/*------------------------------
 Delays
------------------------------*/

.delay01s {
  animation-delay: 0.1s;
}

.delay02s {
  animation-delay: 0.2s;
}

.delay03s {
  animation-delay: 0.3s;
}

.delay04s {
  animation-delay: 0.4s;
}

.delay05s {
  animation-delay: 0.5s;
}

.delay06s {
  animation-delay: 0.6s;
}

.delay07s {
  animation-delay: 0.7s;
}

.delay08s {
  animation-delay: 0.8s;
}

.delay09s {
  animation-delay: 0.9s;
}

.delay1s {
  animation-delay: 1s;
}

.delay2s {
  animation-delay: 2s;
}



/*------------------------------
 Is-Anime
------------------------------*/

.fadeIn.is-animated {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.zoomIn.is-animated {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}




.fadeUp.is-animated {
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeDown.is-animated {
  animation-name: fadeDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeRight.is-animated {
  animation-name: fadeRight;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeLeft.is-animated {
  animation-name: fadeLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
}






@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.96);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}










/*------------------------------
 Inquiries
------------------------------*/

#pagetop1 {
  position: fixed;
  right: 0;
  bottom: 0;
  padding:18px;
  width: 180px;
  height: auto;
  font-size:.9em;
  color:#fff;
  text-align:center;
  background: #9c893a;
  z-index: 10000;
}


#pagetop1:hover{
	background:#990000;
	transition-duration: 2s;
	transition-property: background-color;
}


#pagetop1 img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}



#pagetop2 {
  position: fixed;
  right: 0;
  bottom: 50px;
  padding:18px;
  width: 180px;
  height: auto;
  font-size:.9em;
  color:#fff;
  text-align:center;
  background: #846c0a;
  z-index: 10000;
}


#pagetop2:hover{
	background:#990000;
transition-duration: 2s;
transition-property: background-color;
}


#pagetop2 img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}

a{
  text-decoration:none;
}




.booking{
  position:absolute;
  top:0;
  right:0;
  background:rgba(0,0,0, .99);
  padding:20px 50px;
}
.booking a{
  color:#fff;
  text-align:center;
}

.booking:hover{
  background:#990000;
  text-decoration:none;
}
























