* {
  padding: 0;
  margin: 0;
}

:root {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  --brand-color: #3954A5;
  --white-1: #fff;
  --white-2: #eee;
  --black-1: #000;
  --black-2: #121212;
  font-size: 16px;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100vw;
  margin-top: 65px;
}

.ctaBtn {
  cursor: pointer;
  text-decoration: none;
}

.whatsAppContainer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 101;
}
.whatsAppContainer .whatsAppLink {
  font-size: 5rem;
  color: #25d366;
  cursor: pointer;
}
.whatsAppContainer .whatsAppLink:visited, .whatsAppContainer .whatsAppLink:enabled {
  color: #29dc6a;
}
.whatsAppContainer .whatsAppLink:active, .whatsAppContainer .whatsAppLink:hover {
  color: #1cd15e;
}

.navBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: var(--white-1);
  box-shadow: 0 0 5px var(--black-2);
  transition: 0.5s;
  z-index: 100;
}
.navBar.headerScrolled {
  top: 0;
}
.navBar .navLeft .logoContainer {
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}
.navBar .navLeft .logoContainer .logo {
  color: var(--brand-color);
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  height: 2.6rem;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.navBar .navRight {
  width: 50%;
  max-width: 340px;
  padding-right: 20px;
}
.navBar .navRight .navList {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}
.navBar .navRight .navList .navItem {
  position: relative;
  font-size: 1rem;
  text-decoration: none;
  color: var(--black-1);
  overflow: hidden;
  padding: 5px 0;
}
.navBar .navRight .navList .navItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: var(--brand-color);
  transition: 0.2s;
}
.navBar .navRight .navList .navItem:hover::after {
  right: 0;
}
.navBar .navRight .navList .navItem.active::after {
  right: 0;
}
.navBar .navRight .navList .ctaBtn {
  font-size: 1rem;
  border: solid 2px var(--black-1);
  color: var(--black-1);
  background: transparent;
  border-radius: 100px;
  padding: 6px 15px;
  transition: 0.5s;
}
.navBar .navRight .navList .ctaBtn:hover {
  color: var(--white-1);
  background: var(--black-1);
}

@media screen and (max-width: 560px) {
  body {
    margin-top: 96px;
  }
}
#mainContent .section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#mainContent .heroSection {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  padding-left: 10%;
  box-shadow: inset 0 0 10px 2px #121212;
  position: relative;
  background: none;
  min-height: unset;
  height: auto;
  padding: 0;
}
#mainContent .heroSection .heroImg {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#mainContent .heroSection .whiteCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
}
#mainContent .heroSection .textContainer {
  position: absolute;
  top: 50%;
  left: 5%;
  max-width: 440px;
  padding: 10px;
  transform: translateY(-50%);
}
#mainContent .heroSection .textContainer h2 {
  font-size: 3.2rem;
  color: var(--brand-color);
  padding-bottom: 10px;
}
#mainContent .heroSection .textContainer p {
  font-size: 1.6rem;
  color: var(--brand-color);
  text-align: justify;
  padding-bottom: 10px;
}
#mainContent .heroSection .btnContainer {
  margin-top: 20px;
  width: 100%;
}
#mainContent .heroSection .btnContainer .ctaBtn {
  font-size: 1.2rem;
  background-color: var(--brand-color);
  color: var(--white-1);
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  transition: 0.5s;
}
#mainContent .heroSection .btnContainer .ctaBtn:hover {
  background-color: var(--white-1);
  color: var(--brand-color);
  box-shadow: 0 0 10px var(--brand-color);
}
#mainContent .introSection {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: relative;
  width: 100%;
}
#mainContent .introSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: var(--brand-color);
  z-index: -1;
}
#mainContent .introSection .imgContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
}
#mainContent .introSection .imgContainer img {
  box-shadow: 0 0 10px #121212;
  width: 80%;
}
#mainContent .introSection .textContainer {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 50%;
}
#mainContent .introSection .textContainer h6 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.8rem;
  width: 90%;
  padding-bottom: 10px;
}
#mainContent .introSection .textContainer p {
  font-size: 1rem;
  width: 90%;
  text-align: justify;
  padding-bottom: 15px;
}
#mainContent .introSection .textContainer .ctaBtn {
  font-size: 1rem;
  border: solid 2px var(--black-1);
  background: var(--white-1);
  color: var(--black-1);
  border-radius: 100px;
  margin-top: 10px;
  padding: 6px 15px;
  transition: 0.5s;
}
#mainContent .introSection .textContainer .ctaBtn:hover {
  background: var(--black-1);
  color: var(--white-1);
}
#mainContent .serviceListSection {
  height: auto;
}
#mainContent .serviceListSection .listContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1500px;
  margin: 30px 0;
}
#mainContent .serviceListSection .listContainer.swiper {
  padding: 20px 0;
  display: none;
}
#mainContent .serviceListSection .listContainer .listColumn {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 0;
       column-gap: 0;
  flex: 1;
}
#mainContent .serviceListSection .listContainer .listColumn .listItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  width: 80%;
  padding: 20px 10%;
}
#mainContent .serviceListSection .listContainer .listColumn .listItem.swiper-slide {
  padding: 0;
}
#mainContent .serviceListSection .listContainer .listColumn .listItem .listImg {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  width: 50%;
}
#mainContent .serviceListSection .listContainer .listColumn .listItem .textContainer {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 50%;
}
#mainContent .serviceListSection .listContainer .listColumn .listItem .textContainer .listTitle {
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
#mainContent .serviceListSection .listContainer .listColumn .listItem .textContainer .listDesc {
  font-size: 1rem;
  text-align: justify;
}
#mainContent .serviceListSection .btnContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--brand-color);
  width: 100%;
  padding: 30px 0;
}
#mainContent .serviceListSection .btnContainer .ctaBtn {
  font-size: 1.5rem;
  border: none;
  background: #fff;
  color: var(--black-1);
  border-radius: 100px;
  padding: 10px 25px;
  transition: 0.5s;
}
#mainContent .serviceListSection .btnContainer .ctaBtn:hover {
  background: var(--black-2);
  color: var(--white-1);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100vw;
  height: auto;
  padding: 10% 0;
}
footer .connectSection {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
}
footer .connectSection h4 {
  width: 80%;
  font-size: 2.5rem;
  font-weight: 400;
  padding-bottom: 1rem;
}
footer .connectSection .infoContainer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 80%;
}
footer .connectSection .infoContainer address {
  padding-bottom: 1rem;
}
footer .connectSection .infoContainer address b {
  font-weight: 800;
}
footer .connectSection .infoContainer p {
  padding-bottom: 5px;
}
footer .connectSection .infoContainer .ctaBtn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  margin: 20px 0;
  font-size: 1.5rem;
  border: solid 2px var(--black-1);
  background: transparent;
  color: var(--black-1);
  border-radius: 100px;
  padding: 10px 25px;
  transition: 0.5s;
}
footer .connectSection .infoContainer .ctaBtn ion-icon {
  color: #25d366;
  margin-right: 10px;
  font-weight: 500;
}
footer .connectSection .infoContainer .ctaBtn:hover {
  background: var(--black-1);
  color: var(--white-1);
}
footer .connectSection .mapContainer {
  width: 80%;
  height: 300px;
}
footer .connectSection .mapContainer iframe {
  border: none;
  width: 100%;
  height: 100%;
}
footer .formContainer {
  width: 50%;
}

@media screen and (max-width: 990px) {
  #mainContent .introSection {
    flex-direction: column;
    height: auto;
  }
  #mainContent .introSection::before {
    display: none;
  }
  #mainContent .introSection .imgContainer {
    width: 90%;
    padding: 40px 0;
  }
  #mainContent .introSection .imgContainer img {
    width: 100%;
  }
  #mainContent .introSection .textContainer {
    width: 90%;
    padding: 0 0 20px;
  }
  #mainContent .introSection .textContainer h6 {
    width: 100%;
    font-size: 2rem;
    line-height: 2.2rem;
  }
  #mainContent .introSection .textContainer p {
    width: 100%;
  }
  #mainContent .serviceListSection .listContainer {
    display: none;
  }
  #mainContent .serviceListSection .listContainer.swiper {
    display: block;
  }
  #mainContent .serviceListSection .btnContainer {
    padding: 15px 0;
  }
  #mainContent .serviceListSection .btnContainer .ctaBtn {
    padding: 5px 25px;
  }
}
@media screen and (max-width: 800px) {
  :root {
    font-size: 14px;
  }
  footer {
    flex-direction: column;
  }
  footer .connectSection {
    width: 100%;
  }
  footer .connectSection .infoContainer .ctaBtn {
    padding: 5px auto;
    font-size: 1.2rem;
  }
  footer .formContainer {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  #mainContent .heroSection {
    align-items: center;
    padding: 0;
  }
  #mainContent .heroSection .textContainer {
    width: 90%;
  }
  #mainContent .heroSection .btnContainer {
    width: 90%;
    max-width: 440px;
  }
}
@media screen and (max-width: 750px) {
  #mainContent .heroSection .textContainer {
    width: 50%;
    max-width: 50%;
  }
  #mainContent .heroSection .textContainer h2 {
    font-size: 5.2vw;
  }
  #mainContent .heroSection .textContainer p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 560px) {
  .navBar {
    flex-direction: column;
  }
  .navBar .navLeft {
    padding: 0;
  }
  .navBar .navLeft .logoContainer {
    padding: 0;
  }
  .navBar .navLeft .logoContainer h1 {
    font-size: 2rem;
  }
  .navBar .navLeft .logoContainer .logo {
    padding: 10px 0;
  }
  .navBar .navRight {
    justify-content: space-between;
    width: 90%;
    padding: 0px 0 5px;
  }
}/*# sourceMappingURL=indexStyle.css.map */