:root {
  --bs-body-font-family: "Inter Tight", sans-serif;
  --bs-body-font-size: 14px;
}

.splide__pagination {
  bottom: 2em;
}
.splide__slide img {
  height: 100dvh;
}
@media (min-width: 992px) {
  .splide__slide img {
    width: 100%;
    height: auto;
  }
}
.splide__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.splide__caption {
  position: absolute;
  left: 8%;
  bottom: 10%;
  color: #FFF;
  z-index: 2;
  letter-spacing: -0.05em;
  text-transform: capitalize;
}
.splide__caption h2 {
  line-height: 1 !important;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.hero-slider {
  position: relative;
}
.hero-slider .splide {
  z-index: 2;
}

.page-header {
  position: relative;
  background-color: #3e4095;
  padding: 180px 0 100px;
  text-align: center;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #4062bb;
  background: linear-gradient(135deg, #372596, #032796);
  background-image: url(../images/hero/page-header.jpg);
  background-size: cover;
  height: 100%;
  width: 100%;
}
.page-header .container {
  position: relative;
  z-index: 2;
}

.btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
}

.project-row {
  background: #fff;
  margin: 24px 0;
  border: 1px solid #ddd;
  border-radius: 16px;
}
.project-row .project-cover {
  overflow: hidden;
  display: block;
  border-radius: 12px;
}
.project-row .project-cover img {
  transition: all 0.2s ease-in-out;
  filter: grayscale(0.5);
  border-radius: 12px;
}
.project-row:hover .project-cover {
  overflow: hidden;
  border-radius: 12px;
}
.project-row:hover .project-cover img {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
  filter: grayscale(0);
  border-radius: 12px;
}

.bg-light-blue {
  background-color: #f5fcff;
}

footer {
  background-color: #3e4095;
  background-attachment: fixed;
  border-top: 10px solid #0bb2f0;
}
footer .address {
  font-size: 16px;
  font-weight: 500;
}/*# sourceMappingURL=main.css.map */