* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
}
.sticky {
  position: sticky;
  top: 0;
}

/* Header Styling */
.header {
  position: relative;
  height: 90px;
  width: 100%;
  background-color: #f8f9fa;
}
.header .hamburger-lines,
.header input[type="checkbox"] {
  display: none;
}
.header .logo {
  height: 80px;
  width: 100px;
  margin-top: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.navbar-wrapper {
  height: 50px;
  width: 100%;
  background-color: #f8f9fa;
  transition: all 0.35s ease-in-out;
  z-index: 100;
}
.navbar-wrapper .navbar {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.navbar .navitems-wrapper {
  display: flex;
}
.navitems-wrapper .navitem {
  list-style: none;
  margin: 0 5px;
}
.navitem .navlink {
  color: black;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}
.mobile-no {
  position: absolute;
  left: 135px;
  top: -50px;
  font-size: 12px;
  color: #555555;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.mobile-no .fa-phone {
  margin-right: 10px;
}

/* Introduction Styling*/
.intro-wrapper {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.intro-wrapper .data-wrapper,
.intro-wrapper .image-wrapper {
  height: 450px;
  width: 50%;
}
.intro-wrapper .data-wrapper {
  position: relative;
  background: #dd330e;
}
.data-wrapper .data-line {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}
.data-line .data-line-span {
  color: #f8d649;
}
.intro-btn {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #fff;
  background: #383e44;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.15s ease-in-out;
  animation: intro-btn-animation 1.5s ease-in-out 0s forwards;
}
@keyframes intro-btn-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.intro-btn:hover {
  background: #2c3136;
}
.image-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
}

/* Description Styling */
.desc-wrapper {
  height: 100vh;
}
.desc-wrapper .desc-heading {
  margin: 30px auto;
  font-size: 34px;
  text-align: center;
  color: #dd330e;
}
.desc-details {
  height: 80%;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.desc-details .desc-text-box {
  height: auto;
  width: 60%;
  padding: 0 20px;
}
.desc-text-box .secondary-heading {
  margin: 20px 0;
  font-size: 18px;
  color: #397b21;
}
.desc-text-value {
  width: 80%;
  margin-left: 20px;
  line-height: 20px;
}
.desc-text-box .title {
  display: inline;
  font-size: 14px;
}
.desc-text-box p {
  color: #555555;
  display: inline;
  letter-spacing: 0.25px;
}
.desc-details .desc-image {
  height: 100%;
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.desc-image img {
  display: block;
  width: 100%;
}

/* Services Styling */
.services-wrapper {
  height: auto;
  padding: 55px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #dd330e;
}
.services-wrapper .service-heading {
  width: 100%;
  margin-bottom: 55px;
  font-size: 30px;
  text-align: center;
  color: #fff;
}
.services-wrapper .service-box {
  height: 440px;
  width: 350px;
}
.service-box .service-box-image {
  height: 48%;
  width: 100%;
}
.service-box-image img {
  height: 100%;
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.service-box-text {
  height: 52%;
  width: 100%;
  padding: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
}
.service-box-text .service-name {
  color: #397b21;
  font-size: 12px;
}
.service-box-text p {
  color: #555555;
  margin-top: 5px;
  line-height: 20px;
  word-spacing: 0.5px;
  letter-spacing: 0.5px;
}

/* Contact Page Styling */
.contact-wrapper {
  height: auto;
  width: 80%;
  margin: 0px auto;
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-wrapper .form-wrapper {
  width: 640px;
  height: 1191px;
}
.contact-wrapper .location-wrapper {
  width: 38%;
  height: auto;
}
.location-wrapper h2 {
  font-size: 16px;
  margin-bottom: 50px;
}
.location-wrapper .address,
.location-wrapper .call,
.location-wrapper .email {
  line-height: 20px;
  color: #383e44;
  margin-bottom: 15px;
}
.location-wrapper i {
  margin-right: 5px;
}
.location-wrapper img {
  display: block;
  height: 250px;
}

/* Footer */
footer {
  height: 150px;
  width: 100%;
  background-color: #343a40;
}
/* Privacy Link */
.privacy-link {
  display: block;
  width: 100%;
  line-height: 100px;
  text-decoration: none;
  margin: 0 auto;
  font-size: 10px;
  text-align: center;
  color: black;
  background-color: #fff;
}
.privacy-link:hover {
  text-decoration: underline;
}
/* Footer Title */
footer p {
  padding-top: 15px;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  color: #fff;
}
/* Privacy Policy */
.policy-box {
  width: 80%;
  height: auto;
  margin: 0 auto;
  margin-top: 50px;
}
.policy-box .policy-title {
  font-size: 12px;
}
.policy-box .policy-line {
  line-height: 20px;
  color: #555555;
  margin-bottom: 20px;
}
.single-page-footer {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  color: #fff;
}

/* Requirements Page Styling*/
.requirements-wrapper {
  height: auto;
  width: 100%;
  padding: 35px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #dd330e;
}
.requirements-heading {
  width: 100%;
  margin-bottom: 50px;
  font-size: 30px;
  text-align: center;
  color: #fff;
}
.note-box {
  order: 3;
  width: 320px;
  padding: 15px 10px;
  margin: 25px 0;
  line-height: 20px;
  border-radius: 5px;
  background-color: #fff;
}
.box-wrapper {
  order: 2;
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.box {
  height: auto;
  width: 425px;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
}
.box img {
  display: block;
  height: 400px;
  width: 100%;
}
.box .box-heading {
  margin: 20px 0;
  font-size: 18px;
  color: #397b21;
}
.box .box-lines {
  display: block;
  width: 100%;
  height: 150px;
  text-align: justify;
  color: #555555;
  line-height: 20px;
  letter-spacing: 0.25px;
  word-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 840px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  }
  .header .logo {
    left: 5%;
    transform: translateX(0%);
  }
  .header .hamburger-lines,
  .header input[type="checkbox"] {
    display: block;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
    width: 32.5px;
  }
  .header .hamburger-lines {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
  }
  .hamburger-lines .line {
    height: 2.5px;
    width: 100%;
    display: block;
    background: black;
  }
  .header input[type="checkbox"] {
    opacity: 0;
    z-index: 10;
  }
  .navbar-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: gray;
  }
  .navbar-wrapper .navbar {
    padding-top: 100px;
    align-items: start;
    background-color: #fff;
  }
  .navitems-wrapper {
    flex-direction: column;
  }
  .navitems-wrapper .navitem {
    margin-bottom: 20px;
    text-align: center;
  }
  .navbar .mobile-no {
    top: 260px;
    left: 50%;
    padding-top: 5px;
    transform: translateX(-50%);
    border-top: 1.2px solid #555555;
  }
  .header .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: all 0.35s ease-in-out;
  }
  .header .hamburger-lines .line2 {
    transition: all 0.35s ease-in-out;
  }
  .header .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: all 0.35s ease-in-out;
  }
  .header input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  .header input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    opacity: 0;
  }
  .header input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  .intro-wrapper .data-wrapper,
  .intro-wrapper .image-wrapper {
    width: 100%;
  }
  .intro-wrapper .data-wrapper {
    height: 240px;
    order: 1;
  }
  .data-wrapper .intro-btn {
    bottom: 10px;
  }
  .desc-wrapper {
    height: auto;
    margin: 20px auto;
  }
  .desc-details .desc-text-box {
    width: 100%;
  }
  .desc-text-box .desc-text-value {
    width: 100%;
    margin: 0;
  }
  .desc-details .desc-image {
    display: none;
  }
  .services-wrapper {
    height: auto;
    display: block;
  }
  .services-wrapper .service-box {
    height: 440px;
    width: 80%;
    max-width: 350px;
    margin: 25px auto;
  }
  .services-wrapper .service-heading {
    margin-bottom: 0px;
  }
  .contact-wrapper {
    width: 90%;
    display: block;
  }
  .contact-wrapper .form-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }
  .contact-wrapper .location-wrapper {
    width: 100%;
  }
  .location-wrapper img {
    margin: auto;
  }
  .contact-form .input-box {
    width: 100%;
  }
  .requirements-wrapper .note-box {
    order: 2;
  }
  .requirements-wrapper .box-wrapper {
    order: 3;
  }
  .box-wrapper {
    display: block;
  }
  .box {
    margin: 25px auto;
  }
}
@media (max-width: 500px) {
  .intro-wrapper .image-wrapper {
    height: 240px;
  }
  .data-wrapper .data-line {
    width: 100%;
    font-size: 24px;
  }
  .contact-form input[type="submit"] {
    width: 25%;
    margin-left: 75%;
  }
  .box-wrapper {
    width: 90%;
  }
  .box {
    width: 100%;
  }
  .box img {
    height: 300px;
  }
  .box .box-lines {
    height: auto;
  }
  .note-box {
    width: 90%;
  }
  .policy-box {
    width: 90%;
  }
}
