html, body {
	max-width: 100%;
    overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
	-ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.navbar {
  overflow: hidden;
  background-color: #fff !important;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  z-index: 1;
}

.nav-link {
	font-weight: 700;
	font-size: 20px;
	color: #1a1a1a;
    border-bottom: 2px solid #fff;
	transition: 0.3s;
}

.nav-link:hover {
	border-bottom: 2px solid #333;
}

.jumbotron1 {
  display: flex;
  align-items: center;
  background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8) ), url(images/JumboBG2.jpg);
  color: #ffffff;
  height: 100vh;
  margin-top: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jumbotron2 {
  display: flex;
  align-items: center;
  background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ), url(images/JumboBG5.jpg);
  color: #ffffff;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.JL {
	height: 65vh;
	margin: auto;
}

.about {
	margin-top: 150px;
	margin-bottom: 150px;
}

.abouthead {
	font-weight: 700;
	font-size: 65px;
	color: #1a1a1a;
	margin-bottom: 75px;
}

p {
	font-size: 18px;
	margin-top: 10px;
	text-align: ;
}

hr {
	margin: auto;
	width: 65%;
}

.services {
	margin-top: 150px;
	margin-bottom: 150px;
}

.servicetitle {
	font-weight: 700;
	font-size: 65px;
	margin-bottom: 75px;
	color: #1a1a1a;
}

.htransition {
  position: relative;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  margin: auto;
}

.middle {
  transition: .1s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: ;
  font-family: 'Roboto', sans-serif;
  cursor: default;
}

.htransition:hover .middle {
  opacity: 1;
  transition-duration:.7s;
}

.htransition {
	padding: 5px; 
	display: inline-block;
	text-decoration: none; 
	transition: all 0.2s;
	background-size: 100% 200%; 
	background-image: linear-gradient(to top, #1a1a1a 50%, #fff 50%); 
	color: #000;
	}
	
.htransition:hover { 
	background-position: 0 100%; 
	color: #fff; 
	}

.fbox {
  width: 750px;
  position: relative;
  padding: 35px;
  margin-top: 10px;
  
}

form {
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

input[type='text'], [type='email'], select, textarea {
	background: none;
  border: none;
	border-bottom: solid 2px #fff;
	color: #fff;
	font-size: 1.000em;
  font-weight: 400;
  letter-spacing: 1px;
	margin: 0em 0 1.875em 0;
	padding: 0 0 0.875em 0;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

input[type='text']:focus, [type='email']:focus, textarea:focus {
	outline: none;
	padding: 0 0 0.875em 0;
	background: none;
}

textarea {
	line-height: 150%;
	height: 150px;
	resize: none;
    width: 100%;
	overflow: auto;
	margin-bottom: 5px;
}

#form_button {
  background: none;
  border: solid 2px #fff;
  color: #fff;
  cursor: pointer;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  margin-top: 5px;
  padding: 20px 35px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#form_button:hover {
  background: #fff;
  color: #1a1a1a;
}

::-webkit-input-placeholder {
	color: #fff;
}

:-moz-placeholder { 
	color: #fff;
	opacity: 1;
}

::-moz-placeholder {
	color: #fff;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;

}

footer {
	background-color: #1a1a1a;
	
}

@media only screen and (max-width: 576px)  {  /* Regular Phone Screen Portrait Mode*/
      h1 {
          font-size: 25px;
      }
	  
	  .fbox {
		  width: 100%;
		  padding: 5px;
	  }
	  	  
	  .jumbotron1 {
		  height: 75vh;
	  }
	  
	  .jumbotron2 {
		  height: 110vh;
	  }
	  
	  .abouthead {
		  font-size: 50px;
      }
	  
	  .servicetitle {
		  font-size: 50px;
      }
	  
	  p {
		  padding: 10px;
		  
	  }
}


@media only screen and (max-width: 330px)  {  /*Galaxy Fold Portrait Screen Mode*/
	  
	  .jumbotron2 {
		  height: 120vh;
	  }
	  
	  .g-recaptcha {
		  transform:scale(0.80);
		  transform-origin:0 0;
		  display:flex;
	  }
	  
	  
}

@media only screen and (max-height: 576px)  {  /* Regular Phone Screen Landscape Mode*/
	  
	  .jumbotron2 {
		  height: 200vh;
	  }
}

@media only screen and (max-height: 330px)  {  /* Galaxy Fold Screen Landscape Mode*/
	  
	  .jumbotron2 {
		  height: 250vh;
	  }
}

@media only screen /*Google Nest Hub*/
    and (device-width : 1024px) 
    and (device-height: 600px) {
		.jumbotron2 {
			height: 150vh;
		}
		
}