/* root defined colors */
html body {
  overflow-x: hidden;
}

.headSectionContainer {
  height: 100vh;
  background-color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../images/bgImageBlurred.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.headSectionContainer .headRow {
  display: none;
}
.headSectionContainer .headRow .headContent {
  display: flex;
  flex-direction: column;
  background-color: rgba(254, 254, 254, 0.5019607843);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 2px 2px #213c69;
}
.headSectionContainer .headRow .headContent img {
  height: 30vw;
}

.heroSectionContainer .heroSection {
  background-color: #fefefe;
}
.heroSectionContainer .heroSection div {
  margin-top: -35px;
  margin-bottom: 20px;
  z-index: 100;
}
.heroSectionContainer .heroSection div:nth-child(1) {
  min-height: 20vh;
  background: #213c69;
  color: #fefefe;
}
.heroSectionContainer .heroSection div:nth-child(2) {
  min-height: 20vh;
  background-color: #cfd5df;
}
.heroSectionContainer .heroSection div:hover {
  transform: 1.05;
}

.aboutUsContainer {
  background-color: #5e7192;
}
.aboutUsContainer .aboutUsImg {
  background-image: url("../../images/rafters.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40vh;
}

.servicesContainer .rulerMain {
  border-top: 3px solid #213c69;
  width: 12%;
  height: 10px;
  margin-top: -5px;
  margin-bottom: 5px;
}
.servicesContainer .servicesContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.servicesContainer .servicesContent .rulerInner {
  border-top: 3px solid #213c69;
  width: 12%;
  height: 10px;
  margin-top: -5px;
  margin-bottom: 5px;
}
.servicesContainer .servicesContent img {
  width: 100%;
  height: 250px;
}
.servicesContainer .servicesContent img:hover {
  transform: 1.05;
}

.testimonialsContainer {
  padding: 50px;
  background-image: url("../../images/bgImageBlurred.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.testimonialsContainer div {
  color: white;
  background: rgba(0, 0, 0, 0.3764705882);
}

.modalGallery {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow-x: scroll;
  height: 300px;
}

.formRequired::after {
  content: " *";
  color: red;
}

footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
footer div {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer div img {
  height: 200px;
  width: auto;
}
@media (max-width: 500px) {
  footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */