body {
  font-family: "Lato";
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
}

.navContainer {
  max-width: 85%;
  @media (max-width: 768px) {
    max-width: 100%;
    padding: 0;
  }
}
/* nav section */
nav.navbar {
  margin: 4vh 0;

  @media (max-width: 576px) {
    margin: 2vh 0;
  }
}

.logoImg {
  width: 7.5vw;

  @media (max-width: 768px) {
    width: 29.95vw;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    width: 20vw;
  }
}

.contactBtn,
.loginBtn {
  font-size: 1.4vw;
  font-family: "Lato";
  border-radius: 60px;
  padding: 0.5rem 1.4rem;
  white-space: nowrap;
}

.contactBtn {
  color: #ffffff;
  background-color: #0f6cb3;
  border: none;
}

.loginBtn {
  color: #0f6cb3;
  background: #ffffff;
  border: 1px solid #0f6cb3;
}

@media (max-width: 768px) {
  .contactBtn,
  .loginBtn {
    font-size: 3.38vw;
    padding: 0.3rem 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contactBtn,
  .loginBtn {
    font-size: 3vw;
  }
}

/* hero section */

.hero-container {
  @media (max-width: 576px) {
    padding: 0 2vw;
  }
}

.hero-title {
  font-weight: 700;
  font-size: 3.75vw;
  width: max-content;

  @media (max-width: 768px) {
    font-size: 8.7vw;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 5vw;
    width: max-content;
  }
}

.personalTouch {
  color: #0f6cb3 !important;
}

.trustedIndustry {
  font-weight: 500;
  font-size: 1.67vw;
  color: #000000;
  font-family: "Lato";

  @media (max-width: 768px) {
    font-size: 3.86vw;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.5vw;
    width: max-content;
  }
}

.brighterFuture {
  color: #646464;
  font-size: 1.56vw;
  margin-bottom: 1.5rem;
  font-family: "Lato";
  font-weight: 500;

  @media (max-width: 768px) {
    font-size: 3.86vw;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.5vw;
    width: max-content;
  }
}

.book-call-btn {
  display: inline-flex;
  align-items: center;
  width: max-content;
  background-color: #0f6cb3;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.04vw;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  padding: 5px 14px;
  line-height: 1;
  white-space: nowrap;

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.2vw;
    width: max-content;
    height: 4.5vh !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .book-call-btn {
    font-size: 16px;
    height: 3.5vh !important;
    background-color: red !important; /* test only */
  }
}

.icon-circle {
  background-color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  position: relative;
  left: 0.8vw;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 576px) {
  .book-call-btn {
    font-size: 3.14vw;
    height: 6.18vh;
    padding: 0 14px;
  }

  .icon-circle {
    width: 30px;
    height: 30px;
    left: 2.4vw;
  }

  .booking-icon {
    width: 14px;
    height: 14px;
  }
}

.heroMob {
  display: none;
}

@media (max-width: 768px) {
  .heroMob {
    display: block;
    width: 100%;
    height: 100%;
    /* height: 50vh; */
    position: relative;
    bottom: 10vw;
    background-image: url(../assets/images/bgGraph.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left calc(100% - -132px);
    z-index: -1;
  }
}

.firstSection {
  background-image: url(../assets/images/graphImg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left calc(100% - -170px);
  height: 48vh;
  bottom: 52vh;
  margin-bottom: -40vh;
  width: 98vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;

  @media (max-width: 768px) {
    display: none;
  }
}

/* slider section */
.carousel {
  width: 98vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  @media (max-width: 768px) {
    width: fit-content;
    max-width: 100%;
  }
}

.logo-slider {
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  padding: 20px 0;

  @media (max-width: 768px) {
    padding: 30px;
  }
}

.logo-track {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 40px;
  filter: grayscale(100%);
  transition: filter 0.3s;
  @media (max-width: 768px) {
    height: 30px;
    margin: 0 30px;
  }
}

.logo-track img:hover {
  filter: none;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-track > * {
  display: inline-block;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-bottom: 14vh;

  @media (max-width: 768px) {
    margin-bottom: 0;
  }
}
.heromainContainer {
  max-width: 85%;
  @media (max-width: 768px) {
    max-width: 100% !important;
    padding: 0;
  }
}

.heroContainer {
  margin: 0;
  padding: 0;
  @media (max-width: 768px) {
    width: 100%;
    /* transform-origin: center; */
    /* transform: scale(1.5); */
    /* margin-top: 12vh; */
  }
}

.hero-img {
  display: block;
  position: relative;
  z-index: 1;

  @media (max-width: 768px) {
    display: none;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    margin-left: -8vh !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 20px;
  }
}

/* About us section */

.aboutUsTitle {
  font-size: 3.75vw;
  font-family: "Lato";
  font-weight: 700;
  color: #000000;

  @media (max-width: 768px) {
    font-size: 8.7vw;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 5vw;
  }
}

.marketingMeet {
  font-size: 2.29vw;
  font-family: "Lato";
  font-weight: 500;
  color: #373737;

  @media (max-width: 768px) {
    font-size: 5.56vw;
    margin-top: 2vh;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 3vw;
    margin-top: 0;
  }
}

.aboutUsParagraph {
  color: #000000;
  font-size: 2.19vw;
  font-family: "Lato";
  font-weight: 300;
  width: max-content;
  line-height: 100%;
  opacity: 90%;

  @media (max-width: 768px) {
    display: none;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.75vw !important;
    width: max-content !important;
  }
}

.aboutUsParagraphMob {
  display: none;

  @media (max-width: 768px) {
    display: block;
    color: #000000;
    font-size: 4.83vw;
    font-family: "Lato";
    font-weight: 300;
    width: 100%;
    opacity: 90%;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.75vw !important;
    width: max-content !important;
  }
}

.aboutImg {
  width: 100%;

  @media (min-width: 768px) and (max-width: 1024px) {
    margin-left: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .aboutImg {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

/* Building Section */
.buildingContainer {
  background-color: #f6f6f6;
  padding: 6vh 0 20px 0;

  @media (max-width: 768px) {
    padding: 0;
  }

  @media (max-width: 1024px) {
    padding: 0;
  }
}

.buildingSection {
  position: relative;
  z-index: 0;

  @media (max-width: 768px) {
    padding-bottom: 0 !important;
  }
}

.buildingSubContainer {
  min-height: 100%;

  @media (min-width: 768px) and (max-width: 1024px) {
    flex-direction: row !important;
  }
}

@media (min-width: 768px) {
  .buildingSubContainer {
    display: flex;
  }
}

@media (max-width: 768px) {
  .buildingSubContainer {
    flex-direction: column-reverse;
  }

  .buildingSubContainer .col-md-6:first-child {
    height: auto;
  }
}

.buildingContent {
  margin-top: 14vh;

  @media (min-width: 768px) and (max-width: 1024px) {
    margin-top: 0vh !important;
  }

  @media (max-width: 1024px) {
    margin-top: 0vh !important;
  }
}

.buildingWrapper {
  overflow: hidden;
  position: relative;
  height: 92vh;

  @media (min-width: 768px) and (max-width: 1200px) {
    height: auto !important;
  }
}

.buildingImg {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  transform: scale(2.5);
  /* margin-left: -10vw; */
  margin: 10vh 0 0 -10vw;

  @media (min-width: 768px) and (max-width: 1024px) {
    margin-top: 4vh !important;
  }
}

@media (max-width: 767px) {
  .buildingImg {
    transform: scale(2.5);
    margin: 16vh 0;
    margin-left: 0;
    margin-top: 8vh;
  }
}

.buildingTitle {
  font-size: 2.29vw;
  font-family: "Lato";
  color: #373737;
  text-align: end;
  font-weight: 600;
  margin-bottom: 20px;
  /* max-width: 480px; */
  /* width: max-content; */

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 4vw;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 4vw !important;
  }
}

.buildingParagraph {
  color: #000;
  font-size: 2.19vw;
  font-family: "Lato";
  font-weight: 300;
  text-align: end;
  line-height: 100%;
  /* max-width: 480px; */
  opacity: 90%;

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.75vw;
    width: max-content;
  }
}

.buildingParagraphMob {
  display: none;
}

/* Mobile  */
@media (max-width: 768px) {
  .buildingTitle {
    font-size: 5.56vw;
    text-align: start;
    margin-bottom: 1rem;
  }

  .buildingParagraph {
    display: none;
  }

  .buildingParagraphMob {
    display: block;
    font-size: 4.83vw;
    color: #000;
    font-family: "Lato";
    font-weight: 300;
    text-align: start;
    line-height: 1.6;
    opacity: 90%;
    @media (min-width: 768px) and (max-width: 1024px) {
      font-size: 2.75vw !important;
    }
  }
}

/* contact us */

.contactSection {
  display: flex;
  align-items: center;
  @media (max-width: 768px) {
    display: block;
    padding: 0;
  }
}

.contact-section {
  margin-top: 4vh;
}

.contact-title {
  font-size: 3.75vw;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;

  @media (max-width: 768px) {
    font-size: 8.7vw;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 4vw;
  }
}

.contact-description,
.contact-description-mob {
  font-size: 2.19vw;
  color: #000000;
  font-weight: 300;
  margin-bottom: 4vh;
  opacity: 90%;
  line-height: 100%;
  width: 100%;

  @media (max-width: 768px) {
    display: none;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    width: max-content !important;
    font-size: 2.75vw !important;
  }
}

.contact-description-mob {
  display: none;

  @media (max-width: 768px) {
    display: block;
    font-size: 4.83vw;
    width: max-content;
  }
}

.request-title {
  font-size: 2.29vw;
  font-weight: 600;
  margin: 4vh 0;
  color: #373737;

  @media (max-width: 768px) {
    font-size: 5.56vw;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 3vw;
  }
}

.formContainer {
  width: 65%;

  @media (max-width: 767.98px) {
    width: 100%;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    width: 100% !important;
  }
}

.form-field {
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-bottom: 1px solid transparent;
  box-shadow: 0 2px 0px -2px #0000004d;
  background-color: #fff;
  transition: all 0.3s ease;
  width: 100%;
}

@media (max-width: 767.98px) {
  .row .col-md-6 {
    width: 100%;
  }
}

.mobile-space {
  display: flex;
  justify-content: space-between;
  gap: 1.5vw;
  @media (max-width: 768px) {
    display: block;
    gap: 2px;
  }
}

.form-field:focus {
  outline: none;
  border: none;
}

.form-control::placeholder {
  color: #a8a8a8;
  font-family: "Lato";
  opacity: 1;
}

@media (max-width: 576px) {
  .form-field {
    font-size: 14px;
  }
}

.contact-btn {
  background-color: #0f6cb3;
  font-size: 1.25vw;
  font-weight: 400;
  font-family: "Lato";
  border: none;
  padding: 10px;
  @media (max-width: 768px) {
    font-size: 3.5vw;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2.3vw;
  }
}

.contact-btn:hover {
  background-color: #09528a;
}

.contactImgContainer {
  @media (min-width: 768px) and (max-width: 1024px) {
    transform: scale(1) !important;
  }
}

.contact-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  transform: scale(1.5);
  margin-left: calc(-50vw + 75%);
  @media (max-width: 768px) {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 38%);
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.5);
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    margin-left: calc(-50vw + 75%);
  }
}

.scroll-btn-wrapper {
  text-align: end;
}

.scroll-top-btn {
  position: relative;
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  box-shadow: none;
}

/* Footer */
.footerContainer {
  padding: 0 2vw;

  @media (max-width: 768px) {
    padding: 0;
  }
}

.footerLogo {
  width: 7.5vw;
  height: 2.86vw;
  margin-bottom: 8px;
  max-width: 120px;
  @media (max-width: 768px) {
    width: 34.78vw;
    height: 13.29vw;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    width: 30vw;
    height: 8vw;
  }
}

.footerContent .col-md-4 {
  padding-left: 2rem;
  padding-right: 2rem;

  @media (max-width: 768px) {
    padding: 0;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    padding-left: 0 !important;
  }
}

.footer-subContainer {
  background-color: #0f6cb3;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 0 !important;
  border-radius: 50px;

  @media (max-width: 768px) {
    position: absolute;
    left: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    position: relative !important;
    bottom: 0;
    width: -webkit-fill-available;
    border-radius: 60px !important;
    margin: 0 2vw 2vw 2vw !important;
  }
}

footer h5,
footer h6 {
  margin-bottom: 0.5rem;
}

.whatsappBtn {
  /* width: 16.67vw; */
  font-size: 1.04vw;
  font-weight: 700;
  border-radius: 60px;
  background-color: #27b53d;
  border-color: #27b53d;
  @media (max-width: 768px) {
    font-size: 4.83vw;
    width: auto;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 1.5vw !important;
    width: max-content !important;
  }
}

.whatsappBtn:hover {
  background-color: #27b53d;
  border-color: #27b53d;
}
.whatsappLogo {
  width: 30px;
  height: 30px;
}

.companyName {
  font-size: 1.61vw;
  color: #ffffff;
  font-weight: 700;

  @media (min-width: 768px) and (max-width: 1024px) {
    width: max-content;
    font-size: 2vw !important;
  }
  @media (max-width: 769px) {
    font-size: 6.76vw;
  }
}

.socialMedia {
  display: flex;
  gap: 12px;
  margin: 3vh 0;
}

.socialMedia img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

footer p {
  margin-bottom: 0.25rem;
}

.addressTitle {
  font-family: "Lato";
  color: #ffffff;
  font-weight: 400;
  margin-top: 2vh;
}

.addressContainer {
  margin-bottom: 3vh;
}

.locationDetails,
.phoneNumber {
  font-weight: 700 !important;
}

.phoneNumber {
  text-decoration: underline;
}
.phoneNumber:hover {
  background-color: #148ce8;
  width: max-content;
}

.addressTitle,
.locationDetails,
.phoneNumber {
  font-size: 1.04vw;
  font-weight: 400;
  @media (max-width: 768px) {
    font-size: 4.83vw !important;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    width: auto;
    font-size: 2vw !important;
    margin-top: 0;
  }
}

.term-condition {
  font-size: 1.4vw !important;
  font-weight: 400;
  font-family: "Lato" !important;

  @media (max-width: 768px) {
    font-size: 4.83vw !important;
    padding-left: 0 !important;
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    font-size: 2vw !important;
  }
}
