/*
Project Name: Project 3: Transportaion
Description: For this project you will be designing a website for your assigned mode of transportation. There is no limit on the purpose of the website, as long as the primary focus is on your assigned mode of transportation. It could be e-commerce, marketing, catalog for new models, etc. Think differently about just the standard way the mode of transportation is used and put your own creative spin on it.
Author: Lawrence Sybblis
Version: 1.0
License: 

Tags: (optional)

General comments (optional)

Table of Contents in CSS
1. Global
2. Links
3. Headings
4. Header
5. Navigation
6. Middle
6a. Index
6b. FAQ
6c. Flight Info
6d. About Us
6e. Contact Us
6f. Safety
6g. 404
7. Forms
8. Extras
9. Footer
10. Media Queries
*/
/* 1. Global */
@font-face {
    font-family: 'manropebold';
    src: url('../fonts/bold-webfont.woff2') format('woff2'),
         url('../fonts/bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'manropelight';
    src: url('../fonts/light-webfont.woff2') format('woff2'),
         url('../fonts/light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'manropemedium';
    src: url('../fonts/medium-webfont.woff2') format('woff2'),
         url('../fonts/medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'manroperegular';
    src: url('../fonts/regular-webfont.woff2') format('woff2'),
         url('../fonts/regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'manropesemibold';
    src: url('../fonts/semibold-webfont.woff2') format('woff2'),
         url('../fonts/semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'manropethin';
    src: url('../fonts/thin-webfont.woff2') format('woff2'),
         url('../fonts/thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
html,body  { 
  margin: 0;
  padding: 0;
   font-family: 'manroperegular';
   font-size: 16px;
}
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
/*    padding: 0 4px;*/
}
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
/*    padding: 0 4px;*/
}
.column img {
    vertical-align: middle;
    max-width: 100%;
}
.container {
  width: 85%;
  margin: 0 auto;
  clear: both;
}
h2 {
   font-family: 'manropebold';
   font-size: 3.5rem;
   line-height: 1.5em;
}
h3 {
   font-family: 'manropebold';
   font-size: 2rem;
   line-height: 1.5em;
}
h4 {
    font-family: 'manropesemibold';
    font-size: 2em;
    line-height: 1em;
}
p {
   line-height: 2em;
}
.textbox {
    padding: 5% 15%;
}
.title-light {
    font-family: 'manropethin';
}
.center {
    display: flex;
    align-items: center;
        justify-content: center;
}
/* 2. Links */
nav a {
  display: inline-block;
  color: #333;
  text-decoration: none;
   font-family: 'manropebold';
   text-transform: uppercase;
}
nav ul.navbar-menu li a {
  color: #666;
  font-size: 14px;
}
nav ul.navbar-menu li a:hover {
    color: #f45866;
}
.linkbox {
   background-color: #f44336;
   padding: 12px 25px;
   color: #fff;
}
a.action-link:link, a.action-link:visited {
   font-family: 'manropebold';
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
/*   margin-right: 5%;*/
}
a.action-link:hover, a.action-link:active {
    background-color: red;
}
/* 3. Headings */
.header {
  position: fixed;
  left: 0;
  right: 0;
  height: 66px;
  line-height: 66px;
  color: #fff;
  background-color: #3f51b5;
}

.header__logo {
  font-weight: 700;
  padding: 0 25px;
  float: left;
}
/* 4. Header */
.heroheader { 
   margin-top: -5.8%;
}
.heroheader h2 {
    color: #fff;
    font-size: 8em;
    text-align: center;
    padding: 5%;
}
.faq-head {
    background: url("../images/heroheader1.jpg") 0 0 no-repeat;
    background-size: cover;
   height: 500px;
}
.flightinfo-head {
    background: url("../images/heroheader2.jpg") 0 0 no-repeat;
    background-size: cover;
   height: 500px;
}
.safety-head {
    background: url("../images/heroheader3.jpg") 0 0 no-repeat;
    background-position: center;
    background-size: cover;
   height: 500px;
}
/* 5. Navigation */
nav {
  background: #fff;
  height: 80px;
  line-height: 80px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
   padding: 0.5%;
  z-index: 9998;
  transition: all 0.5s;
}
nav.scrollUp {
  transform: translateY(-80px);
}
nav ul.navbar-menu {
  margin: 0;
  padding: 0;
  display: inline-block;
  float: right;
}
nav ul.navbar-menu li {
  display: inline-block;
  margin: 0 10px;
}
nav a#brand {
  text-transform: uppercase;
  width: 10%;
  float: left;
    padding-top: 1%;
}

nav button {
  background: none;
  width: 30px;
  height: 40px;
  margin-top: 20px;
  border: none;
  float: right;
  display: inline-block;
  cursor: pointer;
  display: none;
}
nav button span {
  width: 30px;
  height: 40px;
  height: 2px;
  background: #333;
  display: block;
  margin: 5px 0;
}
ul.breadcrumb {
    font-family: 'manropemedium';
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
     margin-top: 6.5%;
    padding: 0.5% 8%;
}
ul.breadcrumb li {
    display: inline;
    font-size: 1em;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
/* 6. Middle */
/* 6A. INDEX */
.hero {
   background: url("../images/herobackground.jpg") 0 0 no-repeat;
   background-size: cover;
   height: 850px; 
   margin-top: -0.5%;
}
.hero-text {
  font-family: 'manropebold';
   font-size: 3em;
   line-height: 3.4em;
   color: #fff;
   z-index: 999;
    padding-top: %;
}
.hero-balloon {
   width: 40%;
   position: absolute;
   top: 25%;
   left: 50%;
    z-index: 9;
}
.hero-link a {
   margin-right: 3%; 
   margin-bottom: 13%;
}
.promo-banner h3 {
   font-family: 'manropebold';
   font-size: 0.6em;
   color: #fff;
   background-color: #252525;
   padding: 0.5%;
   text-align: center;
   margin-top: -1%
}
.higher {
    background: url("../images/hotairballoon2.png") 0 0 no-repeat;
   background-size: 45%;
    background-position: 70% 30%;
    
   padding: 0 15%;
}
.higher h2 {
   width: 50%;
}
.higher-balloon {
   width: 40%;
   position: absolute;
   left: 40%; 
   top: 145%;
}
.higher p {
   width: 30%;
}
.solid-banner {
   padding: 0.5%;
   margin: 5% 0 0;
}
.red {
   background-color: #f44336;
}
.blue {
   background-color: #293241;
}
.coral {
    background-color: #f45866;
}
.flywithus {
   background-color: #222a68;
    color: #fff;
   padding-bottom: 10%;
}
.flywithus h3 {
   width: 30%;
   float: left;
}
.flywithus p {
   width: 60%;
   float: right;
/*
   position: absolute;
   left: 40%;
  top: 268.5%;
*/  
}
.flywithus a {
      
}
.letscreate p {
    width: 30%;
}
.letscreate img {
    width: 50%;
    float: right;
    box-shadow: 25px 25px #e3e2e2;
}
.birthday h4 {
    
}
.birthday p {
    width: 42%;
    float: right;
}
.birthday img {
    width: 50%;
    float: left;
    box-shadow: 25px 25px #e3e2e2;
}
.birthday a {
    display: flex;
    justify-content: flex-end
}
.anniday p {
    width: 45%;
    float: left;
}
.anniday img {
    width: 50%;
    float: right;
    box-shadow: 25px 25px #e3e2e2;
}
.anniday a {
    margin-left: ;
}
.copyright {
    background-color: #f45866;
    color: #fff;
    text-align: center;
    padding: 0.1%;
}
.copyright li, .copyright li a {
    display: inline;
    color: #fff;
    list-style: none;
    text-decoration: none;
    padding: 0% 1%;
    width: 45%;
}
/* 6B. FAQ */
.faq-text {
    padding: 0 15%;
    margin-bottom: 10%;
}
/* 6C. FLIGHT INFO */
.flightinfo-text {
    padding: 0 15%;
    margin-bottom: 10%;
}
/* 6D. ABOUT US */
.aboutus-intro, .aboutus-social {
    padding: 10% 15% 15%;
    text-align: center;
}
.aboutus-intro h4 {
    font-size: 3em;
}
.aboutus-text {
    padding: 0 15%;
    margin: 10% 0;
}
.aboutus-text p {
     
}
.aboutus-photo {
    width: 50%;
    float: left;
    box-shadow: 25px 25px #e3e2e2;
}
.aboutus-photo__alt {
    width: 50%;
    float: right;
    margin-top: 20%; 
    box-shadow: 25px 25px #e3e2e2;
}
.aboutus-text__para_one {
   width: 40%;
    float: right;
}
.aboutus-text__para_two {
   width: 40%;
    float: left;
    margin-top: 18%;
}
.aboutus-photo__caption {
    font-size: 0.7em;
    font-family: 'manropelight';
    position: absolute;
    width: 30%;
    left: 50%;
    top: 305%;
}
.aboutus-social__icons i{
    font-size: 2em;
    padding: 0 2%;
}
.aboutus-social__icons i:hover {
    color: #f45866;
}
/* 6E. CONTACT US */
.contactus {
    margin-top: -1%;
    padding: 3% 15% 5%;
    color: #fff;
    float: left;
     background: #f45866 url("../images/hotairballoon2.png") 0 0 no-repeat;
   background-size: 40%;
    background-position: 70% 30%;
}
.contactus p {
    width: 50%;
}
.contactus-balloon {
   width: 40%;
   position: absolute;
   left: 40%; 
   top: 20%;
}
/* 6F. SAFETY */
.safety p {
    width: 45%;
    float: left;
}
.safety img {
    width: 50%;
    float: right;
    box-shadow: 25px 25px #e3e2e2;
}
.safety-banner {
    width: 45%;
  margin: 0 auto;
  clear: both;
    padding: 0.0% 15%;
    background-color: #f45866;
    color: #fff;
}
/* 6G. 404 */
.error-page {
    background: url('../images/error.jpg') 0 0 no-repeat;
    color: #fff;
    padding: 3% 15%;
}
.error-text {
  font-family: 'manropebold';
   font-size: 5em;
   line-height: 3.4em;
   color: #fff;
   z-index: 999;
}
.error-link {
    margin-bottom:   
}
/* 7. Forms */
.contactus-form input[type=text], textarea {
    width: 100%;
    padding: 12px;
    resize: vertical;
   outline: none;
}
.contactus-form label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}
.contactus-form input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 14px 55px;
    border: none;
    cursor: pointer;
    float: right;
    margin-top: 10%;
    margin-left: 25%;
   font-size: 1em;
   font-family: 'manropebold';
}
.contactus-form input[type=submit]:hover {
    background-color: #45a049;
}
.contactus-form {
/*    border-radius: 5px;*/
    width: 40%;
    padding: 11% 1% 0; 
}
.addy-address p {
    line-height: 1.5em;
    width: 15%;
    position: absolute;
   top: 135%;
   left: 51%;
}
.addy-contact p {
    line-height: 1.5em;
    width: 15%;
    position: absolute;
   top: 135%;
   left: 71%;
}
.contactus-map {
   width: 40%;
   position: absolute;
   top: 149%;
   left: 51%;
}
/* 8. Extras */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 2% 3%;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin: 0.5% 0;
}
.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
    transition: 0.4s;
}
.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
    transition: 0.4s;
}
.active, .accordion:hover {
    background-color: #ccc; 
}
.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}
/* 9. Footer */
footer {
    background-color: #222a68;
    color: #fff;
    padding: 15% 0 22%;
    
}
.footerlogo {
    width: 20%;
    float: left;
}
footer h4 {
    text-align: center;
    width: 65%;
    font-size: 2.5em;
    letter-spacing: 0.1em;
    float: left;
}
footer ul {
    float: right;
}
footer li, footer li a {
    color: #fff;
    text-decoration: none;
    list-style: none;
    text-align: right;
    font-size: 1em;
    line-height: 2em;
}
.footer-social__icons {
    text-align: center;
    width: 85%;
}
.footer-social__icons i {
    text-align: center;
    font-size: 1.25em;
    padding: 0 3%;
}
.footer-social__icons i:hover {
    color: #f45866;
}
/* 10. Media Queries */
@media screen and (max-width: 1024px) {
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
    }
    .container {
      padding: 0 5%;
      margin: 0 auto;
      clear: both;
    }
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
    .clearfix::after {
    content: "";
    clear: both;
    display: table;
    }
    html,body  { 
      margin: 0;
      padding: 0;
       font-family: 'manroperegular';
       font-size: px;
    }
    h2 {
       font-family: 'manropebold';
       font-size: 2rem;
       line-height: 2em;
    }
    h3 {
       font-family: 'manropebold';
       font-size: 2rem;
       line-height: 1.5em;
    }
    h4 {
        font-family: 'manropesemibold';
        font-size: 2em;
        line-height: 1em;
    }
    p {
       line-height: 2.5em;
    }
    .textbox {
        padding: 5% 1%;
    }
    nav a {
        display: inline-block;
        color: #333;
        text-decoration: none;
        font-family: 'manropebold';
        text-transform: uppercase;
    }
    /*
    nav ul.navbar-menu li a {
      color: #666;
      font-size: 14px;
    }
    */
    .linkbox {
       background-color: #f44336;
       padding: 5px 15px;
       color: #fff;
    }
    a.action-link:link, a.action-link:visited {
       font-family: 'manropebold';
        color: white;
        padding: 7px 12.5px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 1em;
        }
    a.action-link:hover, a.action-link:active {
        background-color: red;
    }
    .heroheader { 
       margin-top: -4.5%;
    }
    .heroheader h2, .faq-head h2, .flightinfo-head h2, .safety-head h2, {
        color: #fff;
        font-size: 3.5em;
        text-align: center;
        padding: 5%;
    }
    .faq-head {
        background: url("../images/heroheader1.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 300px;
        margin-top: -10.5%;
    }
    .flightinfo-head {
        background: url("../images/heroheader2.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 300px;
        margin-top: -10.5%;
    }
    .safety-head {
        background: url("../images/heroheader3.jpg") 0 0 no-repeat;
        background-position: center;
        background-size: cover;
       height: 300px;
        margin-top: -10.5%;
    }
    nav {
      background: #fff;
      height: 70px;
      line-height: 80px;
      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
       padding: 0.5%;
      z-index: 9998;
      transition: all 0.5s;
    }
    nav.scrollUp {
      transform: translateY(-80px);
    }
    nav a#brand {
      text-transform: uppercase;
      float: left;
      width: 10%;
      padding: 1% 0;
    }
    nav a#brand img {
       width: 80%;
    }
    nav button {
      background: none;
      width: 30px;
      height: 40px;
      margin-top: 20px;
      border: none;
      float: right;
      display: inline-block;
      cursor: pointer;
      display: none;
    }
    nav button span {
      width: 30px;
      height: 40px;
      height: 2px;
      background: #333;
      display: block;
      margin: 5px 0;
    }
    ul.breadcrumb {
        font-family: 'manropemedium';
        padding: 10px 16px;
        list-style: none;
        background-color: #eee;
         margin-top: 8%;
        padding: 0.5% 8%;
    }
    ul.breadcrumb li {
        display: inline;
        font-size: 1em;
    }
    ul.breadcrumb li+li:before {
        padding: 8px;
        color: black;
        content: "/\00a0";
    }
    ul.breadcrumb li a {
        color: #0275d8;
        text-decoration: none;
    }
    ul.breadcrumb li a:hover {
        color: #01447e;
        text-decoration: underline;
    }
    /* 6. Middle */
    .hero {
       background: url("../images/herobackground.jpg") 0 0 no-repeat;
       background-size: cover;
       height: 600px; 
       margin-top: 7%;
    }
    .hero-text {
      font-family: 'manropebold';
       font-size: 2em;
       line-height: 3.4em;
       color: #fff;
       z-index: 999;
        margin-top: 5%
    }
    .hero-balloon {
       width: 30%;
       position: absolute;
       top: 9%;
       left: 63%;
        z-index: 9;
    }
    .hero-link a {
       margin-right: 3%; 
       margin-bottom: 13%;
    }
    .promo-banner h3 {
       display: none;
    }
    .higher {
       padding: 0 1%;
    }
    .higher h2 {
       width: 50%;
    }
    .higher-balloon {
/*       display: none;*/
         width: 40%;
        position: absolute;
        left: 55%; 
        top: 45%;
    }
    .higher p {
       width: 50%;
    }
    .solid-banner {
       padding: 0.5%;
       margin: 5% 0 0;
    }
    .red {
       background-color: #f44336;
    }
    .blue {
       background-color: #293241;
    }
    .coral {
        background-color: #f45866
    }
    .flywithus {
       background-color: #222a68;
        color: #fff;
       padding-bottom: 10%;
    }
    .flywithus h3 {
       width: 30%;
       float: left;
    }
    .flywithus p {
       width: 60%;

    /*
       position: absolute;
       left: 40%;
      top: 268.5%;
    */  
    }
    .flywithus a {
        position: absolute;
        top: 147%;
        left: 42%;   
    }
    .letscreate p {
        width: 30%;
    }
    .letscreate img {
        width: 50%;
        float: right;
        box-shadow: 25px 25px #e3e2e2;
    }
  
    .birthday h4 {

    }
    .birthday p {
        width: 42%;
        float: right;
    }
    .birthday img {
        width: 50%;
        float: left;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday a {
        margin-top: 10%;
        margin-left: 0%;
    }
    .anniday p {
        width: 45%;
        float: left;
    }
    .anniday img {
        width: 50%;
        float: right;
        box-shadow: 25px 25px #e3e2e2;
    }
    .anniday a {
        margin-top: 10%;
        margin-left: 5%;
    }
    .copyright {
        background-color: #f45866;
        color: #fff;
        text-align: center;
        padding: 0.1%;
    }
    .copyright li, .copyright li a {
        display: inline;
        color: #fff;
        list-style: none;
        text-decoration: none;
        padding: 0% 1%;
        width: 45%;
        font-size: 0.9em;
    }
    /* FAQ */
    .faq-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* FLIGHT INFO */
    .flightinfo-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* ABOUT US */
    .aboutus-intro, .aboutus-social {
        padding: 10% 15% 15%;
        text-align: center;
    }
    .aboutus-intro h4 {
        font-size: 3em;
    }
    .aboutus-text {
        padding: 0 1%;
        margin: 10% 0;
    }
    .aboutus-text p {

    }
    .aboutus-photo {
        width: 65%;
        float: left;
        box-shadow: 25px 25px #e3e2e2;
        margin-bottom: 10%;
    }
    .aboutus-photo__alt {
        width: 50%;
        float: right;
        margin-top: 20%; 
        box-shadow: 25px 25px #e3e2e2;
    }
    .aboutus-text__para_one {
       width: 60%;
        float: right;
    }
    .aboutus-text__para_two {
       width: 40%;
        float: left;
        margin-top: 18%;
    }
    .aboutus-photo__caption {
        font-size: 0.7em;
        font-family: 'manropelight';
        position: absolute;
        width: 45%;
        left: 50%;
        top: 237%;
    }
    .aboutus-social__icons i{
        font-size: 2em;
        padding: 0 2%;
    }
    .aboutus-social__icons i:hover {
        color: #f45866;
    }
    /* CONTACT US */
    .contactus {
        margin-top: -1.65%;
        padding: 3% 1% 5%;
        color: #fff;
        background-color: #f45866;
        float: left;
    }
    .contactus p {
        width: 49%;
    }
    .contactus-balloon {
       width: 40%;
       position: absolute;
       left: 50%; 
       top: 20%;
    }
    /* 7. Forms */
    .contactus-form input[type=text], textarea {
        width: 90%;
        padding: 12px;
        resize: vertical;
       outline: none;
        border: 1px solid #f2f2f2;
    }
    .contactus-form label {
        padding: 12px 12px 12px 0;
        display: inline-block;
        
    }
    .contactus-form input[type=submit] {
        background-color: #4CAF50;
        color: white;
        padding: 14px 55px;
        border: none;
        cursor: pointer;
        float: right;
        margin-top: 5%;
        margin-left: 25%;
       font-size: 1em;
       font-family: 'manropebold';
    }
    .contactus-form input[type=submit]:hover {
        background-color: #45a049;
    }
    .contactus-form {
    /*    border-radius: 5px;*/
        width: 100%;
        padding: 15% 1% 75%;
        
    }
    .addy-address p {
        line-height: 1.5em;
        width: 25%;
        position: absolute;
       top: 115%;
       left: 31%;
        
    }
    .addy-contact p {
        line-height: 1.5em;
        width: 25%;
        position: absolute;
       top: 115%;
       left: 67%;
    }
    .contactus-map {
       width: 81%;
       position: absolute;
       top: 125%;
       left: 9%;
        margin-bottom: 10%;
    }
    /* SAFETY */
    .safety p {
        width: 45%;
        float: left;
    }
    .safety img {
        width: 50%;
        float: right;
        box-shadow: 25px 25px #e3e2e2;
    }
    .safety-banner {
        width: 45%;
      margin: 0 auto;
      clear: both;
        padding: 0.0% 15%;
        background-color: #f45866;
        color: #fff;
    }
    /* 8. Extras */
    .accordion {
        background-color: #eee;
        color: #444;
        cursor: pointer;
        padding: 2% 3%;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        transition: 0.4s;
        margin: 0.1% 0;
    }
    .accordion:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 13px;
        color: #777;
        float: right;
        margin-left: 5px;
        transition: 0.4s;
    }
    .active:after {
        content: "\2796"; /* Unicode character for "minus" sign (-) */
        transition: 0.4s;
    }
    .active, .accordion:hover {
        background-color: #ccc; 
    }
    .panel {
        padding: 0 18px;
        display: none;
        background-color: white;
        overflow: hidden;
    }
    footer {
        background-color: #222a68;
        color: #fff;
        padding: 15% 0 22%;

    }
    .footerlogo {
        width: 20%;
        float: left;
    }
    footer h4 {
        text-align: center;
        width: 65%;
        font-size: 2em;
        letter-spacing: 0.1em;
        float: left;
    }
    footer ul {
        float: right;
    }
    footer li, footer li a {
        color: #fff;
        text-decoration: none;
        list-style: none;
        text-align: right;
        font-size: 1em;
        line-height: 2em;
    }
    .footer-social__icons {
        text-align: center;
        width: 85%;
    }
    .footer-social__icons i {
        text-align: center;
        font-size: 1.15em;
        padding: 0 3%;
    }
    .error-page {
        background: url('../images/error.jpg') 0 0 no-repeat;
        background-size: cover;
        
        color: #fff;
        padding: 3% 15%;
    }
    .error-text {
      font-family: 'manropebold';
       font-size: 5em;
       line-height: 3.4em;
       color: #fff;
       z-index: 999;
    }
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
        padding: 0 0 5% 0;
    }
}
@media screen and (max-width: 800px) {
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
    }
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 768px) {
    nav ul.navbar-menu {
        display: none;
    }
    nav a#brand {
      text-transform: uppercase;
      float: left;
      width: 25%;
      padding: % 0;
    }
    nav button {
        display: block;
    }
    .container {
      padding: 0 5%;
      margin: 0 auto;
      clear: both;
    }
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
    .clearfix::after {
    content: "";
    clear: both;
    display: table;
    }
    html,body  { 
      margin: 0;
      padding: 0;
       font-family: 'manroperegular';
       font-size: 16px;
    }
    h2 {
       font-family: 'manropebold';
       font-size: 1.5rem;
       line-height: 2em;
    }
    h3 {
       font-family: 'manropebold';
       font-size: 2rem;
       line-height: 1.5em;
    }
    h4 {
        font-family: 'manropesemibold';
        font-size: 1.5em;
        line-height: 1em;
    }
    p {
       line-height: 2.5em;
    }
    .textbox {
        padding: 5% 1%;
    }
    nav a {
        display: inline-block;
        color: #333;
        text-decoration: none;
        font-family: 'manropebold';
        text-transform: uppercase;
    }
    /*
    nav ul.navbar-menu li a {
      color: #666;
      font-size: 14px;
    }
    */
    .linkbox {
       background-color: #f44336;
       padding: 5px 15px;
       color: #fff;
    }
    a.action-link:link, a.action-link:visited {
       font-family: 'manropebold';
        color: white;
        padding: 7px 12.5px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 1em;
        }
    a.action-link:hover, a.action-link:active {
        background-color: red;
    }
    .heroheader { 
       margin-top: -4.5%;
    }
    .heroheader h2, .faq-head h2, .flightinfo-head h2, .safety-head h2, {
        color: #fff;
        font-size: 3.5em;
        text-align: center;
        padding: 5%;
    }
    .faq-head {
        background: url("../images/heroheader1.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 300px;
        margin-top: -13.8%;
    }
    .flightinfo-head {
        background: url("../images/heroheader2.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 300px;
        margin-top: -13.8%;
    }
    .safety-head {
        background: url("../images/heroheader3.jpg") 0 0 no-repeat;
        background-position: center;
        background-size: cover;
       height: 300px;
        margin-top: -13.8%;
    }
    nav {
      background: #fff;
      height: 60px;
      line-height: 80px;
      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
       padding: 0.5%;
      z-index: 9998;
      transition: all 0.5s;
    }
    nav.scrollUp {
      transform: translateY(-80px);
    }
    nav a#brand {
      text-transform: uppercase;
      float: left;
      font-weight: 800;
      font-size: 20px;
    }
    nav a#brand img {
       width: 70%;
    }
    nav button {
      background: none;
      width: 30px;
      height: 40px;
      margin-top: 20px;
      border: none;
      float: right;
      display: inline-block;
      cursor: pointer;
      display: none;
    }
    nav button span {
      width: 30px;
      height: 40px;
      height: 2px;
      background: #333;
      display: block;
      margin: 5px 0;
    }
    ul.breadcrumb {
        font-family: 'manropemedium';
        padding: 10px 16px;
        list-style: none;
        background-color: #eee;
         margin-top: 9%;
        padding: 0.5% 8%;
    }
    ul.breadcrumb li {
        display: inline;
        font-size: 1em;
    }
    ul.breadcrumb li+li:before {
        padding: 8px;
        color: black;
        content: "/\00a0";
    }
    ul.breadcrumb li a {
        color: #0275d8;
        text-decoration: none;
    }
    ul.breadcrumb li a:hover {
        color: #01447e;
        text-decoration: underline;
    }
    /* 6. Middle */
    .hero {
       background: url("../images/herobackground.jpg") 0 0 no-repeat;
       background-size: cover;
       height: 500px; 
       margin-top: 9%;
    }
    .hero-text {
      font-family: 'manropebold';
       font-size: 2em;
       line-height: 3.4em;
       color: #fff;
       z-index: 999;
    }
    .hero-balloon {
       width: 30%;
       position: absolute;
       top: 15%;
       left: 63%;
        z-index: 9;
    }
    .hero-link a {
       margin-right: 3%; 
       margin-bottom: 13%;
    }
    .promo-banner h3 {
       display: none;
    }
    .higher {
        
       padding: 0 1%;
    }
    .higher h2 {
       width: 50%;
    }
    .higher-balloon {
/*       display: none;*/
         width: 35%;
        position: absolute;
        left: 55%; 
        top: 65%;
    }
    .higher p {
       width: 50%;
    }
    .solid-banner {
       padding: 0.5%;
       margin: 5% 0 0;
    }
    .red {
       background-color: #f44336;
    }
    .blue {
       background-color: #293241;
    }
    .coral {
        background-color: #f45866
    }
    .flywithus {
       background-color: #222a68;
        color: #fff;
       padding-bottom: 10%;
    }
    .flywithus h3 {
       width: 30%;
       float: left;
    }
    .flywithus p {
       width: 60%;

    /*
       position: absolute;
       left: 40%;
      top: 268.5%;
    */  
    }
    .flywithus a {
        position: absolute;
        top: 201%;
        left: 42%;   
    }
    .letscreate p {
        width: 45%;
    }
    .letscreate img {
        width: 50%;
        float: right;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday h4 {

    }
    .birthday p {
        width: 43%;
        float: right;
    }
    .birthday img {
        width: 50%;
        float: left;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday a {
        margin-top: 10%;
        margin-left: 0%;
    }
    .anniday p {
        width: 45%;
        float: left;
    }
    .anniday img {
        width: 50%;
        float: right;
        box-shadow: 25px 25px #e3e2e2;
    }
    .anniday a {
        margin-top: 10%;
        margin-left: 5%;
    }
    .copyright {
        background-color: #f45866;
        color: #fff;
        text-align: center;
        padding: 0.1%;
    }
    .copyright li, .copyright li a {
        display: inline;
        color: #fff;
        list-style: none;
        text-decoration: none;
        padding: 0% 1%;
        width: 45%;
        font-size: 0.9em;
    }
    /* FAQ */
    .faq-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* FLIGHT INFO */
    .flightinfo-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* ABOUT US */
    .aboutus-intro, .aboutus-social {
        padding: 10% 15% 15%;
        text-align: center;
    }
    .aboutus-intro h4 {
        font-size: 3em;
    }
    .aboutus-text {
        padding: 0 1%;
        margin: 10% 0;
    }
    .aboutus-text p {

    }
    .aboutus-photo {
        width: 65%;
        float: left;
        box-shadow: 25px 25px #e3e2e2;
        margin-bottom: 10%;
    }
    .aboutus-photo__alt {
        width: 50%;
        float: right;
        margin-top: 20%; 
        box-shadow: 25px 25px #e3e2e2;
    }
    .aboutus-text__para_one {
       width: 60%;
        float: right;
    }
    .aboutus-text__para_two {
       width: 40%;
        float: left;
        margin-top: 18%;
    }
    .aboutus-photo__caption {
        font-size: 0.7em;
        font-family: 'manropelight';
        position: absolute;
        width: 45%;
        left: 50%;
        top: 299%;
    }
    .aboutus-social__icons i{
        font-size: 2em;
        padding: 0 2%;
    }
    .aboutus-social__icons i:hover {
        color: #f45866;
    }
    /* CONTACT US */
    .contactus {
        margin-top: -1.77%;
        padding: 3% 1% 5%;
        color: #fff;
        background-color: #f45866;
        float: left;
    }
    .contactus p {
        width: 49%;
    }
    .contactus-balloon {
       width: 40%;
       position: absolute;
       left: 50%; 
       top: 20%;
    }
    /* 7. Forms */
    .contactus-form input[type=text], textarea {
        width: 90%;
        padding: 12px;
        resize: vertical;
       outline: none;
        border: 1px solid #f2f2f2;
    }
    .contactus-form label {
        padding: 12px 12px 12px 0;
        display: inline-block;
        
    }
    .contactus-form input[type=submit] {
        background-color: #4CAF50;
        color: white;
        padding: 14px 55px;
        border: none;
        cursor: pointer;
        float: right;
        margin-top: 5%;
        margin-left: 25%;
       font-size: 1em;
       font-family: 'manropebold';
    }
    .contactus-form input[type=submit]:hover {
        background-color: #45a049;
    }
    .contactus-form {
    /*    border-radius: 5px;*/
        width: 100%;
        padding: 15% 1% 75%;
        
    }
    .addy-address p {
        line-height: 1.5em;
        width: 30%;
        position: absolute;
       top: 147%;
       left: 27%;
        
    }
    .addy-contact p {
        line-height: 1.5em;
        width: 25%;
        position: absolute;
       top: 147%;
       left: 65%;
    }
    .contactus-map {
       width: 81%;
       position: absolute;
       top: 160%;
       left: 9%;
        margin-bottom: 10%;
    }
    /* SAFETY */
    .safety p {
        width: 45%;
        float: left;
    }
    .safety img {
        width: 50%;
        float: right;
        box-shadow: 25px 25px #e3e2e2;
    }
    .safety-banner {
        width: 45%;
      margin: 0 auto;
      clear: both;
        padding: 0.0% 15%;
        background-color: #f45866;
        color: #fff;
    }
    /* 8. Extras */
    .accordion {
        background-color: #eee;
        color: #444;
        cursor: pointer;
        padding: 2% 3%;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        transition: 0.4s;
        margin: 1% 0;
    }
    .accordion:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 13px;
        color: #777;
        float: right;
        margin-left: 5px;
        transition: 0.4s;
    }
    .active:after {
        content: "\2796"; /* Unicode character for "minus" sign (-) */
        transition: 0.4s;
    }
    .active, .accordion:hover {
        background-color: #ccc; 
    }
    .panel {
        padding: 0 18px;
        display: none;
        background-color: white;
        overflow: hidden;
    }
    footer {
        background-color: #222a68;
        color: #fff;
        padding: 15% 0 22%;

    }
    .footerlogo {
        width: 20%;
        float: left;
    }
    footer h4 {
/*
        text-align: center;
        width: 85%;
        font-size: 2em;
        letter-spacing: 0.1em;
        float: left;
*/
       display: none;
    }
    footer ul {
        float: right;
    }
    footer li, footer li a {
        color: #fff;
        text-decoration: none;
        list-style: none;
        text-align: right;
        font-size: 1.1em;
        line-height: 2em;
    }
    .footer-social__icons {
        text-align: center;
        width: 85%;
    }
    .footer-social__icons i {
        text-align: center;
        font-size: 2em;
        padding: 0 3%;
    }
    .error-page {
        background: url('../images/error.jpg') 0 0 no-repeat;
        color: #fff;
        padding: 3% 15%;
    }
    .error-text {
      font-family: 'manropebold';
       font-size: 4em;
       line-height: 3.4em;
       color: #fff;
       z-index: 999;
    }
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
        padding: 0 0 5% 0;
    }
}
@media screen and (max-width: 414px) {
    nav ul.navbar-menu {
        display: none;
    }
     nav a#brand {
      text-transform: uppercase;
      float: left;
      width: 40%;
      padding: % 0;
    }
    nav button {
        display: block;
    }
    .container {
      padding: 0 5%;
      margin: 0 auto;
      clear: both;
    }
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
    .clearfix::after {
    content: "";
    clear: both;
    display: table;
    }
    html,body  { 
      margin: 0;
      padding: 0;
       font-family: 'manroperegular';
       font-size: 16px;
    }
    h2 {
       font-family: 'manropebold';
       font-size: 1.5rem;
       line-height: 2em;
    }
    h3 {
       font-family: 'manropebold';
       font-size: 1.25rem;
       line-height: 1.5em;
    }
    h4 {
        font-family: 'manropesemibold';
        font-size: 1.25em;
        line-height: 1em;
    }
    p {
        font-size: 0.9em;
       line-height: 2.25em;
    }
    .textbox {
        padding: 5% 1%;
    }
    nav a {
        display: inline-block;
        color: #333;
        text-decoration: none;
        font-family: 'manropebold';
        text-transform: uppercase;
    }
    /*
    nav ul.navbar-menu li a {
      color: #666;
      font-size: 14px;
    }
    */
    .linkbox {
       background-color: #f44336;
       padding: 5px 15px;
       color: #fff;
    }
    a.action-link:link, a.action-link:visited {
       font-family: 'manropebold';
        color: white;
        padding: 20px 12.5px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 0.8em;
        width: 91%;
        }
    a.action-link:hover, a.action-link:active {
        background-color: red;
    }
    .heroheader { 
       margin-top: -4.5%;
        font-size: 0.7em;
    }
    .heroheader h2, .faq-head h2, .flightinfo-head h2, .safety-head h2, {
        color: #fff;
        font-size: 1.5em;
        text-align: center;
        padding: 5%;
    }
    .faq-head {
        background: url("../images/heroheader1.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 250px;
        margin-top: -27.5%;
    }
    .flightinfo-head {
        background: url("../images/heroheader2.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 250px;
        margin-top: -27.5%;
    }
    .safety-head {
        background: url("../images/heroheader3.jpg") 0 0 no-repeat;
        background-position: center;
        background-size: cover;
       height: 250px;
        margin-top: -27.5%;
    }
    nav {
      background: #fff;
      height: 60px;
      line-height: 80px;
      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
       padding: 0.5%;
      z-index: 9998;
      transition: all 0.5s;
    }
    nav.scrollUp {
      transform: translateY(-80px);
    }
    nav a#brand {
      text-transform: uppercase;
      float: left;
    }
    nav a#brand img {
       width: 60%;
    }
    nav button {
      background: none;
      width: 30px;
      height: 40px;
      margin-top: 20px;
      border: none;
      float: right;
      display: inline-block;
      cursor: pointer;
      display: none;
    }
    nav button span {
      width: 30px;
      height: 40px;
      height: 2px;
      background: #333;
      display: block;
      margin: 5px 0;
    }
    ul.breadcrumb {
        font-family: 'manropemedium';
        padding: 10px 16px;
        list-style: none;
        background-color: #eee;
         margin-top: 9%;
        padding: 0.5% 8%;
    }
    ul.breadcrumb li {
        display: inline;
        font-size: 1em;
    }
    ul.breadcrumb li+li:before {
        padding: 8px;
        color: black;
        content: "/\00a0";
    }
    ul.breadcrumb li a {
        color: #0275d8;
        text-decoration: none;
    }
    ul.breadcrumb li a:hover {
        color: #01447e;
        text-decoration: underline;
    }
    /* 6. Middle */
    .hero {
       background: url("../images/herobackground.jpg") 0 0 no-repeat;
       background-size: cover;
       height: 550px; 
       margin-top: 15%;
    }
    .hero-text {
      font-family: 'manropebold';
       font-size: 1.5em;
       line-height: 3.4em;
       color: #fff;
       z-index: 999;
    }
    .hero-balloon {
       width: 30%;
       position: absolute;
       top: 15%;
       left: 63%;
        z-index: 9;
    }
    .hero-link a {
       margin-right: 3%; 
       margin-bottom: 5%;
    }
    .promo-banner h3 {
       display: none;
    }
    .higher {
       padding: 0 1%;
    }
    .higher h2 {
       width: 70%;
    }
    .higher-balloon {
/*       display: none;*/
         width: 35%;
        position: absolute;
        left: 55%; 
        top: 80%;
    }
    .higher p {
       width: 100%;
    }
    .solid-banner {
       padding: 0%;
       margin: 10% 0 0;
    }
    .red {
       background-color: #f44336;
    }
    .blue {
       background-color: #293241;
    }
    .coral {
        background-color: #f45866
    }
    .flywithus {
       background-color: #222a68;
        color: #fff;
       padding-bottom: 20%;
    }
    .flywithus h3 {
       width: 50%;
       float: left;
    }
    .flywithus p {
       width: 100%;

    /*
       position: absolute;
       left: 40%;
      top: 268.5%;
    */  
    }
    .flywithus a {
        position: absolute;
        top: 266%;
        left: 2%;
        width: 50%;
    }
    .letscreate p {
        width: 100%;
    }
    .letscreate img {
        width: 60%;
        float: right;
        margin-bottom: 6%;
        margin-left: 3%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday h4 {

    }
    .birthday p {
        width: 100%;
        float: right;
    }
    .birthday img {
        width: 90%;
        float: left;
        margin-bottom: 6%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday a {
        margin-top: 10%;
    }
    .anniday p {
        width: 100%;
        float: left;
    }
    .anniday img {
        width: 90%;
        float: left;
        margin-bottom: 6%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .anniday a {
        margin-top: 10%;
        margin-left: 5%;
        
    }
    .copyright {
        background-color: #f45866;
        color: #fff;
        text-align: center;
        padding: 0.1%;
    }
    .copyright li, .copyright li a {
        display: block;
        color: #fff;
        list-style: none;
        text-decoration: none;
        padding: 1% 1%;
        width: 100%;
        font-size: 0.9em;
    }
    /* FAQ */
    .faq-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* FLIGHT INFO */
    .flightinfo-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* ABOUT US */
    .aboutus-intro, .aboutus-social {
        padding: 10% 15% 15%;
        text-align: center;
    }
    .aboutus-intro h4 {
        font-size: 3em;
    }
    .aboutus-text {
        padding: 0 1%;
        margin: 10% 0;
    }
    .aboutus-text p {
        width: 100%;
    }
    .aboutus-photo {
        width: 95%;
        float: left;
        box-shadow: 25px 25px #e3e2e2;
        margin-bottom: 10%;
    }
    .aboutus-photo__alt {
        width: 95%;
        float: left;
        margin-top: 5%;
        margin-bottom: 20%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .aboutus-text__para_one {
       width: 100%;
        float: right;
    }
    .aboutus-text__para_two {
       width: 100%;
        float: left;
        margin-top: 18%;
    }
    .aboutus-photo__caption {
        font-size: 0.7em;
        font-family: 'manropelight';
        position: absolute;
        width: 83%;
        left: 9%;
        top: 361%;
        
    }
    .aboutus-social__icons i{
        font-size: 2em;
        padding: 0 3%;
    }
    .aboutus-social__icons i:hover {
        color: #f45866;
    }
    /* CONTACT US */
    .contactus {
        margin-top: -3.77%;
        padding: 3% 1% 5%;
        color: #fff;
        background-color: #f45866;
        float: left;
    }
    .contactus p {
        width: 100%;
    }
    .contactus-balloon {
       width: 40%;
       position: absolute;
       left: 50%; 
       top: 11%;
    }
    /* 7. Forms */
    .contactus-form input[type=text], textarea {
        width: 85%;
        padding: 12px;
        resize: vertical;
       outline: none;
        border: 1px solid #f2f2f2;
    }
    .contactus-form label {
        padding: 12px 12px 12px 0;
        display: inline-block;
        
    }
    .contactus-form input[type=submit] {
        background-color: #4CAF50;
        color: white;
        padding: 14px 55px;
        border: none;
        cursor: pointer;
        float: right;
        margin-top: 5%;
        margin-left: 25%;
       font-size: 1em;
       font-family: 'manropebold';
    }
    .contactus-form input[type=submit]:hover {
        background-color: #45a049;
    }
    .contactus-form {
    /*    border-radius: 5px;*/
        width: 100%;
        padding: 15% 1% 100%;
        
    }
    .addy-address p {
        line-height: 1.5em;
        width: 43%;
        position: absolute;
       top: 168%;
       left: 39%;
        
    }
    .addy-contact p {
        line-height: 1.5em;
        width: 51%;
        position: absolute;
       top: 180%;
       left: 39%;
    }
    .contactus-map {
       width: 81%;
       position: absolute;
       top: 190%;
       left: 9%;
        margin-bottom: 20%;
    }
    /* SAFETY */
    .safety p {
        width: 100%;
        float: left;
    }
    .safety img {
        width: 100%;
        float: right;
        margin-bottom: 6%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .safety-banner {
        width: 50%;
      margin: 0 auto;
      clear: both;
        padding: 1% 15%;
        background-color: #f45866;
        color: #fff;
    }
    /* 8. Extras */
    .accordion {
        background-color: #eee;
        color: #444;
        cursor: pointer;
        padding: 5% 5%;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        transition: 0.4s;
        margin: 1.5% 0;
    }
    .accordion:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 13px;
        color: #777;
        float: right;
        margin-left: 5px;
        transition: 0.4s;
    }
    .active:after {
        content: "\2796"; /* Unicode character for "minus" sign (-) */
        transition: 0.4s;
    }
    .active, .accordion:hover {
        background-color: #ccc; 
    }
    .panel {
        padding: 0 18px;
        display: none;
        background-color: white;
        overflow: hidden;
    }
    footer {
        background-color: #222a68;
        color: #fff;
        padding: 15% 0 42%;

    }
    .footerlogo {
        width: 30%;
        float: left;
    }
    footer h4 {
/*
        text-align: center;
        width: 85%;
        font-size: 2em;
        letter-spacing: 0.1em;
        float: left;
*/
       display: none;
    }
    footer ul {
        float: right;
    }
    footer li, footer li a {
        color: #fff;
        text-decoration: none;
        list-style: none;
        text-align: right;
        font-size: 0.9em;
        line-height: 2em;
        
    }
    .footer-social__icons {
        text-align: center;
        width: 100%;
    }
    .footer-social__icons i {
/*
        text-align: center;
        font-size: 2em;
        padding: 0 3%;
*/
        display: none;
    }
    .error-page {
        background: url('../images/error.jpg') 0 0 no-repeat;
        color: #fff;
        padding: 3% 15%;
    }
    .error-text {
        font-family: 'manropebold';
        font-size: 2.5em;
        line-height: 3.4em;
        color: #fff;
        z-index: 999;
    }
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
        padding: 0 0 5% 0;
    }
}
@media screen and (max-width: 375px) {
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
    }
    .container {
      padding: 0 5%;
      margin: 0 auto;
      clear: both;
    }
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
    .clearfix::after {
    content: "";
    clear: both;
    display: table;
    }
    html,body  { 
      margin: 0;
      padding: 0;
       font-family: 'manroperegular';
       font-size: 16px;
    }
    h2 {
       font-family: 'manropebold';
       font-size: 1.5rem;
       line-height: 2em;
    }
    h3 {
       font-family: 'manropebold';
       font-size: 1.25rem;
       line-height: 1.5em;
    }
    h4 {
        font-family: 'manropesemibold';
        font-size: 1.25em;
        line-height: 1em;
    }
    p {
        font-size: 0.9em;
       line-height: 2.25em;
    }
    .textbox {
        padding: 5% 1%;
    }
    nav a {
        display: inline-block;
        color: #333;
        text-decoration: none;
        font-family: 'manropebold';
        text-transform: uppercase;
    }
    /*
    nav ul.navbar-menu li a {
      color: #666;
      font-size: 14px;
    }
    */
    .linkbox {
       background-color: #f44336;
       padding: 5px 15px;
       color: #fff;
    }
    a.action-link:link, a.action-link:visited {
       font-family: 'manropebold';
        color: white;
        padding: 20px 12.5px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 0.8em;
        width: 91%;
        }
    a.action-link:hover, a.action-link:active {
        background-color: red;
    }
    .heroheader { 
       margin-top: -4.5%;
        font-size: 0.7em;
    }
    .heroheader h2, .faq-head h2, .flightinfo-head h2, .safety-head h2, {
        color: #fff;
        font-size: 1.5em;
        text-align: center;
        padding: 5%;
    }
    .faq-head {
        background: url("../images/heroheader1.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 225px;
        margin-top: -27.5%;
    }
    .flightinfo-head {
        background: url("../images/heroheader2.jpg") 0 0 no-repeat;
        background-size: cover;
       height: 225px;
        margin-top: -27.5%;
    }
    .safety-head {
        background: url("../images/heroheader3.jpg") 0 0 no-repeat;
        background-position: center;
        background-size: cover;
       height: 225px;
        margin-top: -27.5%;
    }
    nav {
      background: #fff;
      height: 60px;
      line-height: 80px;
      box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
       padding: 0.5%;
      z-index: 9998;
      transition: all 0.5s;
    }
    nav.scrollUp {
      transform: translateY(-80px);
    }
    nav a#brand {
      text-transform: uppercase;
      float: left;
    }
    nav a#brand img {
       width: 60%;
    }
    nav button {
      background: none;
      width: 30px;
      height: 40px;
      margin-top: 20px;
      border: none;
      float: right;
      display: inline-block;
      cursor: pointer;
      display: none;
    }
    nav button span {
      width: 30px;
      height: 40px;
      height: 2px;
      background: #333;
      display: block;
      margin: 5px 0;
    }
    ul.breadcrumb {
        font-family: 'manropemedium';
        padding: 10px 16px;
        list-style: none;
        background-color: #eee;
         margin-top: 9%;
        padding: 0.5% 8%;
    }
    ul.breadcrumb li {
        display: inline;
        font-size: 1em;
    }
    ul.breadcrumb li+li:before {
        padding: 8px;
        color: black;
        content: "/\00a0";
    }
    ul.breadcrumb li a {
        color: #0275d8;
        text-decoration: none;
    }
    ul.breadcrumb li a:hover {
        color: #01447e;
        text-decoration: underline;
    }
    /* 6. Middle */
    .hero {
       background: url("../images/herobackground.jpg") 0 0 no-repeat;
       background-size: cover;
       height: 525px; 
       margin-top: 16%;
    }
    .hero-text {
      font-family: 'manropebold';
       font-size: 1.5em;
       line-height: 3.4em;
       color: #fff;
       z-index: 999;
    }
    .hero-balloon {
       width: 25%;
       position: absolute;
       top: 18%;
       left: 66%;
        z-index: 9;
    }
    .hero-link a {
       margin-right: 3%; 
       margin-bottom: 5%;
    }
    .promo-banner h3 {
       display: none;
    }
    .higher {
       padding: 0 1%;
    }
    .higher h2 {
       width: 70%;
    }
    .higher-balloon {
/*       display: none;*/
         width: 30%;
        position: absolute;
        left: 60%; 
        top: 90%;
    }
    .higher p {
       width: 100%;
    }
    .solid-banner {
       padding: 0%;
       margin: 10% 0 0;
    }
    .red {
       background-color: #f44336;
    }
    .blue {
       background-color: #293241;
    }
    .coral {
        background-color: #f45866
    }
    .flywithus {
       background-color: #222a68;
        color: #fff;
       padding-bottom: 20%;
    }
    .flywithus h3 {
       width: 50%;
       float: left;
    }
    .flywithus p {
       width: 100%;

    /*
       position: absolute;
       left: 40%;
      top: 268.5%;
    */  
    }
    .flywithus a {
        position: absolute;
        top: 302%;
        left: 2%;
        width: 50%;
    }
    .letscreate p {
        width: 100%;
    }
    .letscreate img {
        width: 60%;
        float: right;
        margin-bottom: 10%;
        margin-left: 3%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday h4 {

    }
    .birthday p {
        width: 100%;
        float: right;
    }
    .birthday img {
        width: 90%;
        float: left;
        margin-bottom: 6%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .birthday a {
        margin-top: 10%;
    }
    .anniday p {
        width: 100%;
        float: left;
    }
    .anniday img {
        width: 90%;
        float: left;
        margin-bottom: 6%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .anniday a {
        margin-top: 10%;
        margin-left: 5%;
        
    }
    .copyright {
        background-color: #f45866;
        color: #fff;
        text-align: center;
        padding: 0.1%;
    }
    .copyright li, .copyright li a {
        display: block;
        color: #fff;
        list-style: none;
        text-decoration: none;
        padding: 1% 1%;
        width: 100%;
        font-size: 0.9em;
    }
    /* FAQ */
    .faq-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* FLIGHT INFO */
    .flightinfo-text {
        padding: 0 1%;
        margin-bottom: 10%;
    }
    /* ABOUT US */
    .aboutus-intro, .aboutus-social {
        padding: 10% 1% 15%;
        text-align: center;
    }
    .aboutus-intro p {
        width: 100%;
    }
    .aboutus-intro h4 {
        font-size: 3em;
    }
    .aboutus-text {
        padding: 0 1%;
        margin: 10% 0;
    }
    .aboutus-text p {
        width: 100%;
    }
    .aboutus-photo {
        width: 90%;
        
        box-shadow: 25px 25px #e3e2e2;
        margin-bottom: 10%;
    }
    .aboutus-photo__alt {
        width: 90%;
        float: left;
        margin-top: 5%;
        margin-bottom: 30%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .aboutus-text__para_one {
       width: 100%;
        float: right;
    }
    .aboutus-text__para_two {
       width: 100%;
    
        margin-top: 18%;
    }
    .aboutus-photo__caption {
        font-size: 0.7em;
        font-family: 'manropelight';
        position: absolute;
        width: 80%;
        left: 9%;
        top: 365%;
    }
    .aboutus-social__icons i{
        font-size: 1.5em;
        padding: 0 4%;
    }
    .aboutus-social__icons i:hover {
        color: #f45866;
    }
    /* CONTACT US */
    .contactus {
        margin-top: -3.77%;
        padding: 3% 1% 5%;
        color: #fff;
        background-color: #f45866;
        float: left;
    }
    .contactus p {
        width: 100%;
    }
    .contactus-balloon {
       width: 40%;
       position: absolute;
       left: 50%; 
       top: 11%;
    }
    /* 7. Forms */
    .contactus-form input[type=text], textarea {
        width: 85%;
        padding: 12px;
        resize: vertical;
       outline: none;
        border: 1px solid #f2f2f2;
    }
    .contactus-form label {
        padding: 12px 12px 12px 0;
        display: inline-block;
        
    }
    .contactus-form input[type=submit] {
        background-color: #4CAF50;
        color: white;
        padding: 14px 55px;
        border: none;
        cursor: pointer;
        float: right;
        margin-top: 5%;
        margin-left: 25%;
       font-size: 1em;
       font-family: 'manropebold';
    }
    .contactus-form input[type=submit]:hover {
        background-color: #45a049;
    }
    .contactus-form {
    /*    border-radius: 5px;*/
        width: 100%;
        padding: 15% 1% 100%;
        
    }
    .addy-address p {
        line-height: 1.5em;
        width: 49%;
        position: absolute;
       top: 191%;
       left: 41%;
        
    }
    .addy-contact p {
        line-height: 1.5em;
        width: 56%;
        position: absolute;
       top: 204%;
       left: 35%;
    }
    .contactus-map {
       width: 81%;
       position: absolute;
       top: 216%;
       left: 9%;
        margin-bottom: 20%;
    }
    /* SAFETY */
    .safety p {
        width: 100%;
        float: left;
    }
    .safety img {
        width: 91%;
        float: left;
        margin-bottom: 6%;
        box-shadow: 25px 25px #e3e2e2;
    }
    .safety-banner {
        width: 50%;
      margin: 0 auto;
      clear: both;
        padding: 1% 15%;
        background-color: #f45866;
        color: #fff;
    }
    /* 8. Extras */
    .accordion {
        background-color: #eee;
        color: #444;
        cursor: pointer;
        padding: 5% 5%;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        transition: 0.4s;
        margin: 1.5% 0;
    }
    .accordion:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 13px;
        color: #777;
        float: right;
        margin-left: 5px;
        transition: 0.4s;
    }
    .active:after {
        content: "\2796"; /* Unicode character for "minus" sign (-) */
        transition: 0.4s;
    }
    .active, .accordion:hover {
        background-color: #ccc; 
    }
    .panel {
        padding: 0 18px;
        display: none;
        background-color: white;
        overflow: hidden;
    }
    footer {
        background-color: #222a68;
        color: #fff;
        padding: 15% 0 42%;

    }
    .footerlogo {
        width: 30%;
        float: left;
    }
    footer h4 {
/*
        text-align: center;
        width: 85%;
        font-size: 2em;
        letter-spacing: 0.1em;
        float: left;
*/
       display: none;
    }
    footer ul {
        float: right;
    }
    footer li, footer li a {
        color: #fff;
        text-decoration: none;
        list-style: none;
        text-align: right;
        font-size: 0.9em;
        line-height: 2em;
        
    }
    .footer-social__icons {
        text-align: center;
        width: 100%;
    }
    .footer-social__icons i {
/*
        text-align: center;
        font-size: 2em;
        padding: 0 3%;
*/
        display: none;
    }
    .error-page {
        background: url('../images/error.jpg') 0 0 no-repeat;
        color: #fff;
        padding: 3% 15%;
    }
    .error-text {
        font-family: 'manropebold';
        font-size: 2.5em;
        line-height: 3.4em;
        color: #fff;
        z-index: 999;
    }
    nav ul.navbar-menu {
        display: none;
    }
    nav button {
        display: block;
        padding: 0 0 5% 0;
    }
}