@media only screen and (max-width: 760px) {

html {
    max-width: 100vw;
}

.siteContainer {
    max-width: 100vw;
}

.mobileMenu {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8); 
    color: var(--color1);
    z-index : 1;
    width: 100%; 
    height: 100vh;
    font-size: 1.75em;
    padding-top: 22px;
}

.mobileMenu a {
    display: block; 
    text-align: center; 
    padding: 10px 18px; 
    text-decoration: none; 
    color: var(--color1);
}

.mobileMenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 12%;
    overflow: hidden;
}

.mobileMenu li a:hover, .btns:hover {
    background-color: var(--color2);
}

.btns {
    display: block; 
    border: none;
    color: var(--color0); 
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center; 
    padding: 7px 20px; 
    text-decoration: none;
}

.burgerSocials {
    display: block; 
    width: 100%;
    margin: auto;
    text-align: center;
    align-items: center;
}

#btnFacebook, #btnTwitter {
    display: inline-block;
}

.header {
    position: relative;
    margin-top: 16px;
    padding-left: 4px;
}

.headerContent ul {
    display: none;
}

.headerText h1 {
    font-size: 1.5em;
}

.pitch {
    margin-bottom: 150px;
    height: 393px;
}

.welcome h2 {
    width: 90%;
    padding-left: 2%;
}

.welcomeContent {
    background-image: url('img/lighthousebg-mobile.png');
}

.flexCard {
    width: 99%;
    height: 200px;
}

.pricingColL, .pricingColR {
    width: 100%;
}

.pricingColR {
    margin-top: 4px;
    margin-bottom: 30px;
    margin-left: -1px;
    padding-right: 0;
}

.help {
    margin-top: 0;
}

.helpContent {
    padding-top: 26px;
}

.helpColR {
    width: 100%;
    margin-bottom: 50px;
}

.mobileOn {
    display: block;
}

.mobileOff {
    display: none;
}

.footer

.footerContent ul {
    float: none;
}

.©PP {
    float: none;
}

.privacyPolicy {
    float: left;
    padding-left: 32px;
    margin-top: 0
}

.termsOfService {
    float: right;
    padding-right: 10px;
    margin-top: 0
}

.©PP {
    text-align: center;
}

.ContactUs {
    width: 66%;
}

.youChoose {
    font-size: .9em;
}

.placard {
    padding: 6px;
    padding-top: 20px;
}






}

/* BURGER STUFF */
#burgerMenu {
    position: fixed;
    float: right;
    right: 4%;
    margin-top: -50px;
    z-index: 1000;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: black;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 3px;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;  
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Just a quick hamburger  */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* Transform all the slices of hamburger into a crossmark. */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(-45deg) translate(-1px, -1px);
  background: #c5c5c5;
}

/*  * But let's hide the middle one. */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(45deg) translate(1px, 0px);
}

/* The last one should go the other direction  */
#menuToggle input:checked ~ span:nth-last-child(2) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

