#limoFormContainer {
  	position: relative;
 	display: flex;
  	flex-direction: row;
  	justify-content: center;
  	background: url(../../graphics/fillers/dallas-limo-rental-services.jpg);
  	background-size: cover;
  	background-attachment: fixed;
  	width: 100%;
  	height: 100%;
  	min-height: 800px;
}

#limoFormOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
#limoFormContent {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 5em;
  width: 100%;
  @media only screen and (max-width: 992px) {
    flex-direction: column;
    padding: 2em;
    gap: 2em;
  }
}
#limoFormContentMessage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
  height: 100%;
  @media only screen and (max-width: 992px) {
    h2 {
      font-size: 60px !important;
    }
    width: 100%;
  }
}
#limoFormContentIFrame {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35%;
  @media only screen and (max-width: 992px) {
    width: 100%;
  }
}