/*! Pushy - v1.0.0 - 2016-3-1
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
    position: fixed;
    width: 400px;
    height: 100%;
    top: 0;
    z-index: 20000;
	background-color: #ffffff;
    background-image: url("../images/mansfield_bug.svg"), -webkit-linear-gradient(top, #ffffff, #b0b0b0);
    background-image: url("../images/mansfield_bug.svg"), -moz-linear-gradient(top, #ffffff, #b0b0b0);
    background-image: url("../images/mansfield_bug.svg"), -ms-linear-gradient(top, #ffffff, #b0b0b0);
    background-image: url("../images/mansfield_bug.svg"), -o-linear-gradient(top, #ffffff, #b0b0b0);
    background-image: url("../images/mansfield_bug.svg"), linear-gradient(top, #ffffff, #b0b0b0);
    background-size: 100% auto, cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 15%);
    overflow: auto;
    visibility: hidden;
    border-left: 2px solid #ffffff;
    -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}
.pushyBtn {
    padding: 5px 0 20px 24px!important;
}
.pushy-link {
    color: #173a64;
    text-decoration: none;
	text-transform: uppercase;
    outline: 0;
    transition: 0.4s;
	font-size: 110%;
	font-weight: 500;
    padding: 5px;
	display: inline-block;
	white-space: nowrap;
}
.pushy-link:hover {
    color: #6bc3b9;
    transition: 0.4s;
    text-decoration: none;
}
.pushy-link:focus {
    color: #6bc3b9;
    text-decoration: none;
}
.pushy ul {
    margin: 0;
    padding: 0;
	list-style-type: none;
}
.pushy li {
    padding-top: 10px;
}
.pushy .btn1 {
    margin-top: 5px;
    display: inline-block;
}
.pushy.pushy-right {
    right: 0;
}

/* Menu Movement */

.pushy-right {
	text-align: left;
	padding: 40px 25px;
    -webkit-transform: translate3d(600px, 0, 0);
    -ms-transform: translate3d(600px, 0, 0);
    transform: translate3d(600px, 0, 0);
}

.pushy-open-right .push {
    -webkit-transform: translate3d(600px, 0, 0);
    -ms-transform: translate3d(600px, 0, 0);
    transform: translate3d(600px, 0, 0);
}

.pushy-open-right .pushy {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Menu Transitions */
#navContainer, .pushy, .push {
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
    display: none;
}

.pushy-open-right .site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(23, 58, 100, 0.85);
    -webkit-animation: fade 500ms;
    animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px)
and (orientation: portrait) {

.pushy {
    position: fixed;
    width: 600px;
}
}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px)
and (orientation: landscape) {

.pushy {
    position: fixed;
    width: 500px;
}
}