


/* HORIZON */
nav.pushy {
  position: fixed;
  width: 310px;
  height: 110%;
  top: 0;
  z-index: 9999;
  box-sizing: border-box;
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff, #eeeeee);
  box-shadow: 0px 0px 10px #000000;
  border-right: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1030px) {
nav.pushy {
	margin-left: -20px;
}
}
nav.pushy div#pushy-logo a {
	width: 100%;
	max-width: 200px;
	margin-left: auto;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	box-sizing: border-box;
	height: auto;
	display: block;
	transition: 0.3s;
}
nav.pushy div#pushy-logo a img {
	display: block;
	width: 100%;
}
nav.pushy div.pushy-content ul {
  margin: 0px;
  padding: 0px;
}
nav.pushy div.pushy-content ul li a {
	display: block;
	font-size: 21px;
	text-align: left;
	padding: 22px;
	padding-left: 100px;
	transition: 0.3s;
	color: #2c2b26;
	background-repeat: no-repeat;
	background-position: 40px center;
	text-decoration: none;
	background-size: 50px 50px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #ffffff;
}
nav.pushy div.pushy-content ul li a:hover {
	background-color: #ffffff;
	text-decoration: none;
	opacity: 1;
}
nav.pushy div.pushy-content ul li.home a {
	background-image: url(/images/icon-home.png);
}
nav.pushy div.pushy-content ul li.destinations a {
	background-image: url(/images/icon-destinations.png);
}
nav.pushy div.pushy-content ul li.blog a {
	background-image: url(/images/icon-travel-blog.png);
}
nav.pushy div.pushy-content ul li.about a {
	background-image: url(/images/icon-about.png);
}
/* HORIZON END */








/* PLUGIN CORE */
.pushy-content {
  visibility: hidden;
}
/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-550px, 0, 0);
  -ms-transform: translate3d(-550px, 0, 0);
  transform: translate3d(-550px, 0, 0);
}

.pushy-open-left #container, .pushy-open-left .push {
  -webkit-transform: translate3d(550px, 0, 0);
  -ms-transform: translate3d(550px, 0, 0);
  transform: translate3d(550px, 0, 0);
}
.pushy-right {
  -webkit-transform: translate3d(550px, 0, 0);
  -ms-transform: translate3d(550px, 0, 0);
  transform: translate3d(550px, 0, 0);
}
.pushy-open-right #container, .pushy-open-right .push {
  -webkit-transform: translate3d(-550px, 0, 0);
  -ms-transform: translate3d(-550px, 0, 0);
  transform: translate3d(-550px, 0, 0);
}
.pushy-open-left .pushy, .pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pushy-open-left .pushy-content, .pushy-open-right .pushy-content {
  visibility: visible;
}
/* Menu Transitions */
#container,.pushy, .push {
  transition: transform 0.3s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}
.pushy-content {
  transition: visibility 0.3s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}
/* Site Overlay */
.site-overlay {
  display: none;
}
.pushy-open-left .site-overlay, .pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 1000ms;
  animation: fade 1000ms;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* PLUGIN CORE END */







