@import url(https://fonts.googleapis.com/css?family=Poppins:200,300,regular,500,600,700,800);
html {
  scroll-behavior: smooth;
}

.bg-brand-gray {
  background: #edf2fa !important;
}

body {
  font-family: Poppins, "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.text-justify {
  text-align: justify;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.brand-logo {
  max-width: 250px;
  width: 100%;
}

.first-fold-container {
  min-height: 700px;
}

.nav-item:hover,
.active:hover {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.navbar-nav .nav-link.active {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.first-fold {
  background-image: url("../assets/first-fold.webp");
  /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
  /* Adjust padding as needed */
  position: relative;
  z-index: 1;
  /* Set a higher z-index to place it above the background */
  filter: grayscale(100%);
}
.first-fold .container {
  min-height: 100vh;
}
.first-fold ::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2);
  /* Adjust the alpha value for the desired opacity */
  cursor: default;
}
.first-fold h1 {
  font-size: 4em;
  font-weight: 700;
}
.first-fold p {
  font-size: 2rem;
  margin-bottom: 30px;
}
.first-fold button {
  padding: 16px 48px;
  font-size: 1.25em;
  border: none;
  background-color: white;
  color: #000;
  cursor: pointer;
  letter-spacing: 1px;
}

#about-us {
  background: #111E29;
}
#about-us .svg-icon {
  width: 80px; /* Set the desired width */
  min-height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Responsive adjustment */
}
#about-us .about-us-process {
  background: #3260AC;
  color: white;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: -120px;
  position: relative;
  z-index: 2;
}
#about-us .about-us-process img {
  max-width: 100px;
  width: 100%;
}

#our-services {
  background: #111E29;
}
#our-services #our-projects h2 {
  color: #3260AC;
}

#services-slider .nav-link.active {
  /* color: black !important; */
  background-color: #0044d6 !important;
}

#turnover .turnover-timeline {
  min-height: 800px;
}
#turnover .timeline {
  list-style: none;
  padding: 0;
  display: flex;
  /* overflow-x: auto; */
  justify-content: center;
  white-space: nowrap;
  margin: 0;
}
#turnover .timeline-item {
  flex: 0 0 auto;
  width: 250px;
  margin-right: 20px;
  position: relative;
}
#turnover .timeline-card {
  background: linear-gradient(to bottom, #0044d6, #001c7a);
  border-radius: 25px;
  color: #fff;
  padding: 20px;
  position: relative;
  text-align: center;
  /* overflow: hidden; */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#turnover .triangle {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 65px solid #0044d6;
  position: absolute;
  top: -85%;
  left: 50%;
  transform: translateX(-50%);
}
#turnover .timeline-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
#turnover .event-name {
  color: #001c7a;
  position: absolute;
  top: -180%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: bold;
}
#turnover .downside .timeline-card {
  background: linear-gradient(to top, #001c7a, #0044d6); /* Reverse gradient to top */
  color: #fff;
  padding: 20px;
  position: relative;
  left: 25%;
  text-align: center;
  border-radius: 0 0 25px 25px;
}
#turnover .downside .triangle {
  border-top: 65px solid #001c7a; /* Reverse color to match gradient */
  border-bottom: 0;
  top: auto;
  bottom: -85%;
}
#turnover .downside .timeline-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
#turnover .downside .event-name {
  position: absolute;
  top: auto;
  bottom: -320%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}

#our-clients {
  background: #3260AC;
}

.input-group .input-group-text {
  background: #3260AC !important;
}
.input-group .input-group-text .fas {
  color: #edf2fa;
}

::-moz-placeholder {
  color: #b4b4b4 !important;
}

::placeholder {
  color: #b4b4b4 !important;
}

.spacer {
  height: 50px !important;
}

.contact-now-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #3260AC;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.contact-now-btn:hover {
  border: 2px solid #0044d6;
  background-color: #edf2fa;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: #0044d6;
}
.contact-now-btn:focus {
  outline: none;
}
.contact-now-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-us-side-display .contact-info {
  position: relative;
  background: url("../assets/antoine-barres-jay5BqVyf5A.jpg") center/cover no-repeat;
  padding: 2rem;
  border-radius: 0.5rem;
  color: #fff;
  overflow: hidden;
}
#contact-us-side-display .contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(hsla(217.38, 54.95%, 43.53%, 0.75), hsla(207, 41%, 11%, 0.9)), url("../assets/antoine-barres-jay5BqVyf5A.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
#contact-us-side-display .contact-info h5, #contact-us-side-display .contact-info p {
  position: relative;
  z-index: 2;
  color: #fff;
}
#contact-us-side-display .contact-info i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #0044D6;
  margin-right: 8px;
  font-size: 18px;
  padding: 5px;
}
#contact-us-side-display .contact-info .small {
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  .h6, h6 {
    font-size: 0.8rem;
  }
  .first-fold p {
    font-size: 100%;
  }
  #turnover .turnover-timeline {
    min-height: 500px;
  }
  #turnover .timeline-title {
    font-size: 100%;
  }
  #turnover .timeline-item {
    margin-right: 4px;
    width: auto;
  }
  #turnover .timeline-card {
    padding: 12px 24px;
  }
  #turnover .event-name {
    top: -180%;
    font-size: 0.8em;
  }
  #turnover .triangle {
    border-bottom: 25px solid #0044d6;
    top: -45%;
  }
  #turnover .downside .timeline-title {
    font-size: 100%;
  }
  #turnover .downside .timeline-card {
    padding: 12px 24px;
  }
  #turnover .downside .event-name {
    bottom: -220%;
    font-size: 0.8rem;
  }
  #turnover .downside .triangle {
    border-top: 25px solid #001c7a;
    bottom: -40%;
  }
}/*# sourceMappingURL=style.css.map */