* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  /* overflow: hidden; Prevent scrollbars */
}

#connecting-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Make sure it is behind other content */
  pointer-events: none; /* Allow clicks to pass through */
}

.container1 {
  width: 90%;
  margin: 0 auto;
  margin-top: 14vh;
  position: inherit;
  z-index: 2;
}

.hero {
  background: #f4f4f4;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 4em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.hero .cta-button {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.hero {
  /* background-image: url(ORFA2.png);
  background-position: center;
  background-size: cover; */
  background-color: black;
  height: 100vh;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.97);
  overflow-x: hidden;
  transition: 2s;
  /* overflow-y: hidden; */
}

/* .overlay-content {
  position: relative;
  top: 25%;
  width: 60%;
  text-align: center;
  margin-top: 30px;
  margin-left: 20vw;
} */

.overlay-content{
  transition: none 0s;
  animation: none 0s;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  /* transition: 0.3s; */
}

.aboutp {
  font-weight: 200;
  margin-top: 5vh;
}

.about {
  font-weight: 500;
}

.ham {
  color: white;
  text-align: center;
  margin-left: 0vw;
  margin-bottom: 30vh;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.mainA{
  color: #117CF9;
}

.ServiceDescription{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  margin-left: -5vw;
  margin-top: 5vh;
}

.ServiceContainer1{
  width: 30vw;
  margin-left: 13vw;
  margin-top: 30vh;
  
}





.Serviceh3{
  
  font-size: 20px;
  font-weight: 300;
  color: gray;
}

.Serviceh4{
  margin-bottom:20px;
  color: gray;
  font-size: 85%;

}


.smalltext{
  margin-top: 80vh;
  margin-left: 17vw;
  /* margin-bottom: 20vh; */
}

.smalltext p {
  font-size: 23px;
  color: white;
  font-weight: 200;
}

.smalltext span{
  color: grey;
}

ul{
  list-style-type: none;
  
}


.MainQuote{
  margin-left: 17vw;
  margin-top: 3vh;
  width: 60vw;
  margin-bottom: 8vh;
}

.MainQuote h2{
  font-weight: 300;
  font-size: 50px;
}

.ServiceBody{
  background-color: black;
  color: white;
}

.serviceLi{
  font-size: 300%;
  font-weight: 500;
  margin-bottom: 5vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  opacity: .65;
  transition: 1s;
}

.serviceLi:hover{
  opacity: 1;
}

.ServiceContainer2{
  float: right;
  margin-left: 10vw;
 /* margin-right: 10vw; */
  
  margin-top: 20vh;
}

.Serviceh42{

 margin-bottom:20px;
  color: gray;
  font-size: 85%;
}

.overlay::-webkit-scrollbar {
  width: 10px;
  background-color: black;
  
}
.overlay::-webkit-scrollbar-thumb {
  background-color: black;
  
}
.overlay::selection {
  background: black;
  color: black;
}


.formoverlay {
	position: fixed;
  z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.formoverlay:target {
	visibility: visible;
	opacity: 1;
}
.formwrapper {
	margin: 70px auto;
	padding: 20px;
	background: #18191a;
	border-radius: 15px;
	width: 30%;
	position: relative;
	transition: all 5s ease-in-out;
  top: -5vh;
}
.formwrapper h2 {
	margin-top: 0;
	color: white;
}
.formwrapper .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.formwrapper .close:hover {
  color: #117CF9;
}
.formwrapper .formcontent {
	max-height: 30%;
	overflow: auto;
}
/*form*/

.formcontainer {
	border-radius: 5px;
	background-color: #18191a;
	padding: 20px 0;
}
form label {
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 3px;
}
input[type=text], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
}

input[type=email], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
}

input[type="submit"] {
	background-color: #413b3b;
	color: #fff;
	padding: 15px 50px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.about{
  background-color: black;
  margin-top: -5vh;
}

section{
  margin: 0;
}