:root {
  --black: #000;
  --light-black: #191818;
  --dark: #4a4a4a;
  --light-dark: #4b4b4b;
  --white: #ffffff;
  --green: #34c682;
  --yellow: #fcbe1e;
  --footer: #ecf9f3;
}
.noScroll{
  overflow: hidden;
}
/* Hamburger */
.menuBtn {
  width: 60px;
  height: 60px;
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  z-index: 2;
  display: none;
}
.navBar {
  display: inline-block;
  width: 28px;
  height: 24px;
  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;
  vertical-align: bottom;
}
.navBar span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #34c682;
  opacity: 1;
  -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;
}
.navBar span:nth-child(even) {
  left: 50%;
}
.navBar span:nth-child(odd) {
  left: 0px;
}
.navBar span:nth-child(1),
.navBar span:nth-child(2) {
  top: 0px;
}
.navBar span:nth-child(3),
.navBar span:nth-child(4) {
  top: 10px;
}
.navBar span:nth-child(5),
.navBar span:nth-child(6) {
  top: 20px;
}
.navBar.open span:nth-child(1),
.navBar.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navBar.open span:nth-child(2),
.navBar.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navBar.open span:nth-child(1) {
  left: 5px;
  top: 4px;
}
.navBar.open span:nth-child(2) {
  left: calc(50% - 1px);
  top: 4px;
}
.navBar.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.navBar.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.navBar.open span:nth-child(5) {
  left: 5px;
  top: 12px;
}
.navBar.open span:nth-child(6) {
  left: calc(50% - 1px);
  top: 12px;
}

/* Header */
.header {
  padding: 25px 0;
  background-color: var(--white);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 177px;
  display: inline-flex;
}
.logo a {
  display: inline-flex;
}
.headerRight{
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.topNav {
  display: flex;
}
.topNav li {
  display: inline-flex;
  margin-left: 40px;
}
.topNav li a {
  display: inline-flex;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
}
.topNav li a:hover,
.topNav li a.active {
  color: var(--light-black);
  font-weight: 700;
}
.getinTouch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 38px;
  border: 2px solid #34c682;
  border-radius: 30px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-left: 40px;
}
.getinTouch.active {
  background-color: var(--green);
  color: var(--white);
}

/* Home Page */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.homeSection__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0;
}
.homeLeft {
  width: 400px;
  flex-shrink: 0;
  margin-right: 40px;
}
.homeLeft h3 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: var(--light-dark);
}
.homeLeft h3 > span {
  font-weight: 800;
  color: var(--green);
}
.homeLeft h3 > span span {
  font-weight: 500;
}
.learnMore__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  width: 170px;
  height: 55px;
  background: var(--green);
  border-radius: 2px;
  outline: 0;
  border: 0;
  margin-top: 40px;
}
.homeRight {
  flex: 1;
}
.homeRight img {
  width: 100%;
  vertical-align: top;
}

/* About */
.bannerOuter {
  background: #f1faf6;
  padding: 80px 0;
}
.banner {
  height: 270px;
  background: url(../images/InnerPageBanner@2x.png) top center no-repeat;
  background-size: 1237px 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner h2 {
  font-size: 50px;
  color: #34c682;
  font-weight: 600;
}
.content {
  padding: 80px 0;
}
.aboutContent {
  display: flex;
  justify-content: space-between;
  column-gap: 60px;
  margin-bottom: 100px;
}
.aboutContent:last-child {
  margin-bottom: 0;
}
.aboutContent__col {
  flex: 1;
  flex-shrink: 0;
}
.aboutContent h3 {
  font-size: 44px;
  line-height: 54px;
  color: var(--light-dark);
  margin-bottom: 45px;
}
.aboutContent p {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-dark);
  margin-bottom: 40px;
}
.aboutContent p:last-child {
  margin-bottom: 0;
}

/* Our Team */
.teamList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teamList li {
  width: 290px;
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-shrink: 0;
}
.memberImg {
  height: 270px;
  background: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.memberImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teamList li h3 {
  font-size: 40px;
  line-height: 50px;
  color: var(--light-dark);
  margin-bottom: 25px;
}
.teamList li p {
  font-size: 22px;
  line-height: 30px;
  color: #5c5c5c;
}
.teamList li p a {
  color: #5c5c5c;
}

/* Projects */
.project__tabOuter {
  padding: 50px 0 30px 0;
  position: sticky;
  position: -webkit-sticky;
  top: 85px;
  z-index: 1;
  background-color: #fff;
}
.project__tab {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.project__tab::-webkit-scrollbar {
  display: none;
}
.project__tab li {
  color: #5c5c5c;
  font-size: 26px;
  cursor: pointer;
  padding: 0 20px 20px 20px;
}
.project__tab li.selected {
  color: #34c682;
  font-weight: 700;
  position: relative;
}
.project__tab li.selected::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #34c682;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 4px;
}

.projectList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.projectList > li {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 4px 10px 25px rgba(158, 158, 158, 0.15);
  border-radius: 4px;
  flex-shrink: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.projectList__img {
  height: 200px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background-color: #ccc;
  margin-bottom: 20px;
}
.projectList__img img {
  width: 100%;
}
.projectList__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.projectList__content h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #4b4b4b;
  margin-bottom: 6px;
}
.projectList__content h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 23px;
}
.projectList__footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.projectList__footerLeft {
  text-align: left;
}
.projectList__footerRight {
  text-align: right;
}
.title {
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  color: #4b4b4b;
}
.subTitle {
  font-size: 16px;
  font-weight: 400;
  color: #4b4b4b;
}
.completed {
  background-color: #45cc4a;
  padding: 5px 10px;
  border-radius: 0 4px 4px 0;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.under-construction {
  background-color: #fcbe1e;
  padding: 5px 10px;
  border-radius: 0 4px 4px 0;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.commingSoon {
  background-color: #4b4b4b;
  padding: 5px 10px;
  border-radius: 0 4px 4px 0;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.projectSection {
  padding-bottom: 80px;
}

/* Contact */
.contactSection {
  background-color: #f1faf6;
  padding: 125px 0;
}
.contactContainer {
  display: flex;
}
.contactLeft {
  width: 450px;
  flex-shrink: 0;
  margin-right: 50px;
}
.contactLeft h3 {
  font-size: 50px;
  line-height: 62px;
  font-weight: 600;
  color: #34c682;
  margin-bottom: 17px;
}
.contactLeft p {
  font-size: 22px;
  line-height: 28px;
  color: #4b4b4b;
}
.contactRight {
  flex: 1;
}
.formRow {
  margin-bottom: 30px;
}
.textInput {
  width: 100%;
  padding: 20px;
  border: 0;
  outline: 0;
  background-color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #4b4b4b;
}
.textArea {
  width: 100%;
  height: 150px;
  padding: 20px;
  border: 0;
  outline: 0;
  background-color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #4b4b4b;
  resize: none;
}
.btnSubmit {
  width: 204px;
  height: 60px;
  background: #34c682;
  border-radius: 2px;
  border: 0;
  outline: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Footer */
.footer {
  background-color: var(--footer);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__inner p {
  font-size: 14px;
  color: var(--light-black);
}
.footer__inner p a {
  color: var(--light-black);
}
