html {
    /*background-image: url(../images/danielle-cerullo-CQfNt66ttZM-unsplash.jpg);*/
    /*background-image: -webkit-linear-gradient(45deg, blue 0%, blue 33%, white 33%, white 66%, red 66%, red 100%); 
    background-image: -moz-linear-gradient(45deg, blue 0%, blue 33%, white 33%, white 66%, red 66%, red 100%); */    
    /*background-image: -webkit-linear-gradient(to right, white 0%, red 100%);
    background-image: -moz-linear-gradient(to right, white 0%, red 100%);   
    background-image: linear-gradient(to bottom left, blue, white, blue);*/
    background-color: #89CFF0;
}


body{
    /*width: 1000px;*/
    width: 80%;
    background-image: linear-gradient(to top , #f5f5f5, #0892d0);    
    margin: 15px auto;
}
header img {
    float: left;
    /*margin: 1em;*/
    padding: 1% 3%;
}
header {
    width: 100%;
    padding: 5px 0;
    /*background-color: #0892d0;*/
    background-image: linear-gradient(to top , #f5f5f5, #0892d0);    
}
header h2{
    font-size: 200%;
    text-align: left;
    color: firebrick;
    /*float: right;*/
}
header h3{
    font-size: 150%;
    font-style: italic;
    text-align: left;
    color: darkred;
    padding-top: 2px;
    /*float: right;*/
    text-shadow: 2px 2px 2px #a9a9a9;
}
img.social {
    float: right;
    padding: 1%;
}
/* -------------MENU-------------*/
#navigating ul { 
    width: 100%; /**/
    margin: 0;
    padding: 0;
    list-style-type: none; /*eliminate bullets*/
    position: relative;
}
#navigating ul li { 
    width: 25%;
    float: left;
}
#navigating ul ul {
    display: none;
    position: absolute;
    top: 100%;
}
#navigating ul ul li {
    float: none;
    /*position: relative;*/
}
/*#navigating ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
}*/
#navigating ul li:hover > ul {
    display: block;
}
#navigating > ul::after {
    content: "";
    clear: both;
    display: block;
}
#navigating ul li a { 
    text-align: center;
    display: block; /*entire block is linkable*/
    /*width: 247px;*/
    width: 99%;  /*24.87%;*/
    padding: 1em 0;
    text-decoration: none;
    background-color: firebrick;
    /*border-radius: 10px;*/
    color: white;
    font-weight: bold;
    /*border-right: 2px solid #87CEEB;*/
}
#navigating ul li a.lastitem { 
    border-right: 3px solid firebrick; 
    /*border-right: none;*/
}

#navigating ul li a:hover, #navigating ul li a:focus {
    background-color: darksalmon;
}

/* -------------END MENU-------------*/

main{
    clear: left;
}
aside{    
    width: 21%;
    float: left;  
    padding: 1% 2%;
    text-align: center;
}
aside ul {
    padding:.5em 2%;
    text-align: center;
}
aside li {
    list-style-type: square;
    list-style-position: inside;
    padding: 0.3em 5%;
    text-align: left; 
}
section {
    /*background-color: white;   */
    width: 71%;
    padding: 1% 2%;
    height: auto;
    float: right;
    /*position: static;*/
}

section iframe {
    /*height: 80%;*/
    width: 100%;
    padding: 10px 0;
}


section img {
    height: 95%;
    width: 100%;
    padding: 10px 0;
    /*align-content: center;    */  
}
/*section p {
    align-content: center;
    padding: 5px;
}*/

form {
  background: #FFF5EE;
  padding: 2%;
  margin: 0 auto;
  width: 80%;
  border: 2px solid firebrick;
  }

label {
  display: block;
  position: relative;
  margin: 12px 0;
}
#membershipI input {
  position: relative;
  /*left: 100px;*/
}
#nameI, #lnameI, #emailI, #inteI {
    width: 70%;
}
#ageI, #phoneI {
    width: 20%;
}
#submitB{
    text-align: center;
}
input{
    background-color: white;
    font-size: 1em;
}
footer {
    /*border: 2px solid firebrick;*/
    border-top: 2px solid firebrick;
    clear: both;
}
footer p {
    text-align: center;
    color: firebrick;
    padding: 2%;
} 

#mobile_menu { display: none; }

/* --- Desktop-first design --- */
/*Table portrait layout 768px to 959px*/
@media only screen and (max-width:959px) {
    * { font-size: 90%; }
    #email_a { font-size: 60%; }
    #mobile_menu { display: block; }
    #navigating { display: none; }
}
/*Mobile landscape layout 480px to 767px*/
@media only screen and (max-width:767px) {
    * { font-size: 90%; }
    #email_a { font-size: 60%; }
    #mobile_menu { display: block; }
    #navigating { display: none; }
}
/*Mobile portrait layout 479px or less*/
@media only screen and (max-width:479px) {
    * { font-size: 90%; }
    #email_a { font-size: 60%; }
    #mobile_menu { display: block; }
    #navigating { display: none; }
}