.google-maps {
  position: relative;
  padding-bottom: 33%; // This is the aspect ratio
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

#driving-centers {
  margin-bottom:20px;
  padding:10px;
  border:1px solid #222222;
  background:#333333;
}

#driving-centers p {
  margin-bottom:10px;
  font-size:1.4rem;
  text-align:center;
}

#ajax-contact-form input[type="text"], textarea {
  font-size:1.3rem;
  font-weight:300;
  color:#222;
  border:2px solid #1EAEDB;
  padding:15px 0px 15px 15px;
  height:60px;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
#ajax-contact-form input[type="text"]:focus, textarea:focus {
  border:2px solid #FF6600;
}

#ajax-contact-form input[type="text"] {
  width:100%;
}

#ajax-contact-form textarea {
  width:100%;
  min-height:212px;
  padding:30px 15px;
}

#ajax-contact-form .button.blue {
  background:#1EAEDB;
  border-radius:0px;
}

#ajax-contact-form .button.blue:hover {
  background:#FFF;
  color:#1EAEDB;
}

#ajax-contact-form input[type="submit"] {
  display:block;
  background: rgba(255,255,255,0.2);
  border:5px solid #FFF;
  padding:24px 48px;
  text-decoration:none;
  color:#FF6600;
  text-shadow:1px 1px 1px rgba(0,0,0,0.5);
  font-size:3.0rem;
  max-width:420px;
  transition: background ease 0.4s, color ease 0.4s, border-color ease 0.4s;
}

#ajax-contact-form input[type="submit"]:hover {
  text-align:center;
  background: #FF6600;
  border:5px solid #FF6600;
  padding:24px 48px;
  text-decoration:none;
  color:#FFF;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* Larger than mobile */
@media (min-width: 400px) {



}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {

  #ajax-contact-form input[type="text"], textarea {font-size:2.0rem;}

}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

