@import url(global.css);
@import url("home.css");
@import url("about.css");
@import url("why.css");
@import url("cardcommon.css"); /* services/ testimonial/ project css */
@import url("contact.css");
@import url("faq.css");
@import url("footer.css");

@import url(./components/header.css);
@import url(./components/hero.css);
@import url(./components/achievementsbar.css);



/* Home Section CSS */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
  font-size: 16px;
}

body {
  font-family: sans-serif;
  line-height: 1.5;
  height: 100vh;
  width: 100%;
  color: #004322;
  font-weight: bold;
}

/* seciton common class end */

.section-container {
  height: 100%;
  scroll-margin-top: 10vh; 
  width: 100%;
  /* border: 3px solid black; */
}

/* section common class end */

@media (max-height:667px){
  .section-container{
    min-height: 667px;
  }
}