* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #003c71;
}

html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
body {
  background: #eff0f0;
  min-height: 100%;
  position: relative;
}
#contentwrapper {
  min-height: 100vh;
  margin-bottom: -50px;
}
.header-wrapper {
  width: 100vw;
  background-color: white;
  display: block;
}
.hero-wrapper,
.areas-wrapper,
.about-wrapper,
.services-wrapper {
  width: 100vw;
  display: block;
}
.footer-wrapper {
  width: 100vw;
  background-color: #003c71;
  display: block;
  position: absolute;
  bottom: 0px;
}
.logo img {
  width: 200px;
  padding-top: 4px;
}
p a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.headerbutton:hover,
p a:hover {
  color: #ff7438;
}
header {
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.headermenu {
  display: none;
  list-style-type: none;
}

.headerbutton {
  color: #003c71;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s ease-in-out;
}
#servicesbutton {
  position: relative;
}
.dropdown {
  visibility: hidden;
      z-index: 2;
  opacity: 0;
  display: block;
  position: absolute;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
    margin-top: 0;
  list-style-type: none;
  border-radius: 3px;
  background-color: #eff0f0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
#servicesbutton:hover + .dropdown,
.dropdown:hover {
  visibility: visible;
  opacity: 1;
    margin-top: 8px;
}
.headersubbutton {
  color: #003c71;
  font-weight: 400;
  margin-left: 0;
  padding: 8px 15px;
  border: none;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  overflow-x: hidden;
}
.headersubbutton:hover {
color: #ff7438;
  background-color: #fff;
  border-radius: 3px;
    transition: 0.3s ease-in-out;
}
#dashbutton {
  background-color: #003c71;
  color: #fff;
  font-weight: 400;
    margin-left: 20px;
  padding: 4px 10px;
  border: none;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.menubox {
  display: flex;
  flex-direction: column;
  background-color: #003c71;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  overflow-y: scroll;
  padding: 11px 30px;
  position: fixed;
  transition: all 0.35s ease-in-out;
  transform: translateX(100%);
  z-index: 1;
}
.menu {
  list-style-type: none;
}
.menu-open {
  transform: translateX(0%);
  opacity: 1;
}
.menubutton {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
  padding: 10px 56px;
  font-size: 18px;
  display: block;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.menusubbutton {
  text-decoration: none;
  font-weight: 300;
  margin: 5px 12px;
  padding-bottom: 10px;
  padding-left: 60px;
  font-size: 18px;
  display: block;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.menubutton:hover,
.menusubbutton:hover,
#closebtn:hover {
  color: #ff7438;
}

#nav-icon {
  width: 30px;
  height: 30px;
  padding: 0;
  top: 3px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 3;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #003c71;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon span:first-child {
  top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:last-child {
  top: 20px;
}

#nav-icon.open span:first-child {
  top: 10px;
  width: 0%;
  left: 50%;
  background-color: #ff7438;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ff7438;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ff7438;
}

#nav-icon.open span:last-child {
  top: 10px;
  width: 0%;
  left: 50%;
  background-color: #ff7438;
}
#hero,
#about, #map {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#services {
  display: flex;
  flex-direction: column;
  padding: 10px;
  padding-top: 0;
  padding-bottom: 200px;
}
#herotext,
#abouttext {
  padding: 30px;
}
#contacttext {
  background-color: #fff;
  border-radius: 3px;
  padding: 20px;
  margin: 10px;
}
#abouttext {
	padding-bottom: 0px;
}
#herotext h2,
#abouttext h2, .servicestext h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 15px;
}
#contacttext h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 15px;
  max-width: 330px;
}
.servicestext h2 {
  padding-bottom: 8px;
}
.servicestext h3 {
  color: #ff7438;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-top: 10px;
  margin-bottom: 4px;
}
.servicestext h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 10px;
}
.buttonCTA {
  background-color: #003c71;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 6px;
  width: 160px;
  border: none;
  border-radius: 3px;
  margin-top: 8px;
  transition: 0.3s ease-in-out;
}
.buttonCTA:hover,
#dashbutton:hover,
#loginbtn:hover {
  background-color: #002f59;
  color: #ff7438;
}

#heroimg {
  display: none;
	width: 100vw;
	height: auto;
	pointer-events: none;
}

#videobg {
  background: url(images/pentagonhero.jpg) no-repeat;
  background-size: cover;
}

#areas,
#about {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
#areas {
	  padding-bottom: 200px;
}
#map {
padding-top: 20px;
  padding-bottom: 190px;
}

.serviceicon {
  width: 70px;
  display: block;
  padding-right: 10px;
}
.servicemain {
  display: grid;
  grid-template-columns: 1fr;
}
.servicesub, .servicesimg {
  width: 100%;
  height: auto;
}
.servicesimg {
max-width: 400px;
margin-bottom: 20px;
object-fit: contain;
}
 .ssimg {
   display: flex;
   justify-content: center;
 }
.areablock, .toggle {
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.toggle {
padding: 20px;
margin-top: 20px;
  cursor: pointer;
}

.collapsible {
  padding: 0 20px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  border-radius: 0 0 3px 3px;
  transition: max-height 0.2s ease-out;
  display: grid;
  grid-template-columns: 1fr;
}

.areablock {
  margin: 10px;
}
.areablock::after, .toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out;
}
.areablock:hover::after, .toggle:hover::after {
  opacity: 1;
}
.toggle:before {
  content: '\002B';
  color: #ff7438;
  font-size: 26px;
  float: right;
}

.active:before {
  content: "\2212";
}
.areablock img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
  padding-bottom: 20px;
  display: block;
}
.areablock {
  padding: 20px;
}
.arealabel hr {
  border: none;
  border-top: solid 1px #8f93a2;
  padding-bottom: 20px;
}
.arealabel h3 {
  color: #003c71;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}
.arealabel p, #abouttext p, #contacttext p, #services p {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
}
.arealabel p, #abouttext p {
  margin-bottom: 10px;
}
#contacttext p {
  line-height: 30px;
}
#contacttext span {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}
.col {
  padding-top: 10px;
  display: flex;
}

.toggle:hover {
  background-color: #eff0f0;
}
.active {
  border-radius: 3px 3px 0 0;
  background-color: #fff;
}

footer {
  width: calc(100% - 60px);
  overflow-x: hidden;
  height: 110px;
  display: flex;
  flex-direction: column;
  background-color: #003c71;
  color: #fff;
  padding: 40px 30px;
}
footer a {
	color: #fff;
	margin: 0;
}
#addr {
  padding-bottom: 10px;
}
#addr h4,
#addr p,
#ph p {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
#addr h4 {
  font-weight: 500;
  text-transform: uppercase;
}




@media only screen and (min-width: 576px) {

  #areas, #services {
    padding: 30px 30px 170px 30px;
  }
  #map {
    padding-bottom: 140px;
  }
  #services {
    padding-top: 20px;
  }
  .areablock img {
    width: 100%;
  }
  .areablock {
    padding: 30px;
  }
  .servicestext {
    padding-left: 30px;
    padding-right: 30px;
  }
  #contacttext {
    margin: 20px 30px;
  }
  .toggle {
    padding: 30px;
  }
  .areablock {
    margin: 10px 0;
  }
  footer {
    flex-direction: row;
    align-items: flex-end;
    height: 60px;
  }
  #ph {
    padding-left: 40px;
  }
  #addr {
    padding-bottom: 0;
  }
  #heroimg {
  display: block;
  }
}
@media only screen and (min-width: 768px) {
	  #hero {
    background-color: #fff;
  }
  .hero-wrapper {
    background-color: #fff;
  }
  #areas {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 30px 170px 30px;
  }
#map {
		padding: 0 30px 180px 30px;
	}

  /* .areablock img {
    width: 100%;
  } */
  .servicemain {
    grid-template-columns: 1fr 1fr;
  grid-gap: 0px 40px;
  }
  .servicesub {
    width: 100%;
  }
  .servicesimg {
  margin-bottom: 0px;
  max-width: 450px;
  }
  .areablock {
    width: 26%;
    padding: 20px;
  }
  header {
    height: 100px;
  }
  .logo img {
    width: 230px;
  }
  #nav-icon {
    display: none;
  }
  .headermenu {
    display: flex;
    align-items: space-between;
  }
  #about {
    flex-direction: row;
    align-content: space-between;
    padding: 30px;
  }
  #abouttext {
    padding: 0;
    padding-right: 30px;
    max-width: 450px;
  }
	#contacttext {
margin: 0px;
		    width: 35%;
        padding: 30px;
	}
  .collapsible {
    grid-template-columns: 1fr 1fr;
grid-gap: 0px 40px;
  }
}
@media only screen and (min-width: 992px) {
  header,
  #hero,
	#map,
  #areas,
  #services,
  footer,
  #about {
    max-width: 992px;
    margin: 0 auto;
  }
	#heroimg {
		width: 992px;
	}

		.areablock {
    padding: 30px;
  }
}
@media only screen and (min-width: 1052px) {
		#herotext {
		padding-left: 0;
		max-width: 992px;
	}
}
/* @media only screen and (min-width: 1200px) {
} */
