@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
.nav_link {
  color: #6b7280;
}
.nav_link.active {
  color: #34d399;
}
@media screen and (max-width: 991px) {
  .nav_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    padding: 3.5rem 1.5rem 0;
    background: #70da55;
    transition: 0.4s;
    z-index: 50;
  }
  .nav_menu .list_item {
    margin-bottom: 2rem;
  }
  .nav_link.active {
    color: white;
  }
  .nav_link {
    color: #374151;
  }
  .services_text::after {
    width: 20% !important;
  }
}

.show {
  right: 0;
}

.hero {
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/02.jpg");
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  filter: brightness(0.5);
  z-index: -2;
}

.info_container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.services,
.works,
.our_team,
.testimonials,
.contact_us,
.locate_map {
  max-width: 1200px;
  margin-left: 1rem;
  margin-right: 1rem;
  height: 100%;
}
.services_text {
  position: relative;
}
.services_text::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: 0;
  width: 5%;
  height: 3.5px;
  background-color: blue;
}
.card {
  transition: all 0.4s;
}
.card:hover {
  transform: translateY(-10px);
}

.splide__slide {
  width: 250px !important;
  height: fit-content !important;
}
.splide__arrows {
  display: none !important;
}
.splide__pagination {
  bottom: -2rem !important;
}
.work_info {
  font-size: 15px !important;
}

.email_inp,
.name_inp {
  width: 550px;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (min-width: 1200px) {
  .services,
  .works,
  .our_team,
  .testimonials,
  .contact_us,
  .locate_map {
    margin: 0 auto;
  }
}

.align-middle {
  margin-left: 20%;
  margin-right: 20%;
}
