/*============================
=            BASE            =
============================*/
#demo-nav {
	top: auto;
	bottom: 0;
	margin: 0;
	width: 260px;
	left: 50%;
	transform: translateX(-50%);
}
/* body {
	padding-top: 0 !important;
} */
a, .btn {
	transition: all 300ms ease;
}
.btn-custom {
  background-color: #12a3a3;
  border-color: #12a3a3;
  color: #fff;
}

.push-wrap {
	/* min-height: 1000px; */
	position: relative;
	background-position: 50% 0;
	background-repeat: no-repeat;
	-ms-background-size: cover;
	background-size: cover;
}
#topper {
	margin-bottom: 30px;
}
.burger-x {
    position: absolute;
    top: 45%;
    left: 0;
    display: block;
    width: 100%;
    height: 8px;
    background-color: #fff;
    font-size: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 225ms ease;
    margin: 0 auto;
}
.burger-x:before, .burger-x:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: '';
    transition: all 225ms ease;
}
.burger-x:before {
    transform: translateY(-200%);
}
.burger-x:after {
    transform: translateY(200%);
}
.show-nav .burger-x, .show-nav .burger-x:before, .show-nav .burger-x:after {
    background: rgb(255, 69, 112);
}
.toggle-nav {
	position: absolute;
	left: 30px;
	top: 15px;
	color: #fff;
	font-size: 40px;
	display: block;
	width: 60px;
	height: 60px;
}
.toggle-nav:hover {
	transform: scale(1.05);
}
.toggle-nav .option {
	position: absolute;
	font-size: 12px;
	text-transform: uppercase;
	width: 80px;
	left: 125%;
	text-align: center;
	top: 20%;
}
#mobile-nav {
  background: #2b343f;
  text-align: center;
  box-shadow: inset -1.5em 0 1.5em -0.75em rgba(0, 0, 0, 0.5);
}
#mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#mobile-nav ul li a {
  display: block;
  text-decoration: none !important;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  color: #fff;
  border-bottom: solid 1px #333D4A;
}
#mobile-nav ul li a:hover {
  background: #4EFFFF;
  color: #000;
}

    /* Large Devices, Wide Screens */
    @media only screen and (max-width : 1200px) {

    }

    /* Medium Devices, Desktops */
    @media only screen and (max-width : 992px) {
		#content h1 { font-size: 60px; }
    }

    /* Small Devices, Tablets */
    @media only screen and (max-width : 768px) {
		#content h1 { font-size: 45px; }
		#content h2 { font-size: 20px; }
    }

    /* Extra Small Devices, Phones */
    @media only screen and (max-width : 480px) {
		#content h1 { font-size: 30px; }
    }

    /* Custom, iPhone Retina */
    @media only screen and (max-width : 320px) {

    }
