@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-padding: 10rem 0 0 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.service_card {
  overflow: hidden;
  height: auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.service_card .service_info {
  color: #1D1D1D;
  padding: 2rem 1rem;
}
.service_card .service_info h4 {
  padding-bottom: 0.5rem;
}
@media (min-width: 960px) {
  .service_card .service_info h4 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .service_card .service_info h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .service_card .service_info p {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .service_card .service_info p {
    font-size: 1rem;
  }
}

.hidden {
  opacity: 0;
  filter: blur(3px);
  transform: translateX(-20%);
  transition: all 1.5s;
  transition-delay: 100ms;
}

.fade_int {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(20%);
  transition: all 1s;
  transition-delay: 100ms;
}

.fade_in {
  opacity: 0;
  filter: blur(3px);
  transition: all 1s;
  transition-delay: 100ms;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.about_info:nth-child(2) {
  transition-delay: 400ms;
}

.service_card:nth-child(2) {
  transition-delay: 100ms;
}

.service_card:nth-child(3) {
  transition-delay: 300ms;
}

.service_card:nth-child(4) {
  transition-delay: 400ms;
}

.contact_detail:nth-child(2) {
  transition-delay: 300ms;
}

.contact_detail:nth-child(3) {
  transition-delay: 500ms;
}

.navbar_scrolled {
  background-color: rgba(69, 143, 222, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 999;
  background-color: #FDFDFD;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 2em 1.5em;
  display: none;
  flex-direction: column;
}
@media (min-width: 0px) {
  .sidebar {
    width: 100vw;
  }
}
@media (min-width: 720px) {
  .sidebar {
    width: 40vw;
  }
}
.sidebar .navh {
  position: relative;
  width: auto;
  color: #FDFDFD;
}
.sidebar .navh:after {
  content: "";
  position: absolute;
  background-color: #458fde;
  height: 1px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}
.sidebar .navh:hover:after {
  width: 100%;
}
.sidebar .logo {
  max-width: 40%;
  padding-bottom: 1.5em;
}
.sidebar .navlinks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 0.5em;
}
.sidebar .navlinks a {
  color: #458fde;
  padding-bottom: 1em;
}

nav {
  transition: all 0.5s ease;
}
@media (min-width: 0px) {
  nav {
    padding: 0.5rem 0;
  }
}
@media (min-width: 960px) {
  nav {
    padding: 1.5rem 0;
  }
}
@media (min-width: 1200px) {
  nav {
    padding: 2rem 0;
  }
}
nav .menu_mob {
  display: none;
}
@media (min-width: 0px) {
  nav .menu_mob {
    display: block;
  }
}
@media (min-width: 960px) {
  nav .menu_mob {
    display: none;
  }
}
nav .navbar {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 0px) {
  nav .navbar .navlinks {
    display: none;
  }
}
@media (min-width: 960px) {
  nav .navbar .navlinks {
    display: block;
  }
}
nav .navbar .navlinks .navl {
  position: relative;
  padding: 0 1.2em;
  width: auto;
  color: #FDFDFD;
}
nav .navbar .navlinks .navl:after {
  content: "";
  position: absolute;
  background-color: #FDFDFD;
  height: 1px;
  width: 0;
  left: 0px;
  bottom: -5px;
  transition: 0.3s;
}
nav .navbar .navlinks .navl:hover:after {
  width: 100%;
}
nav .logo {
  height: auto;
}
@media (min-width: 0px) {
  nav .logo {
    width: 80%;
  }
}
@media (min-width: 720px) {
  nav .logo {
    width: 60%;
  }
}
@media (min-width: 960px) {
  nav .logo {
    width: 40%;
  }
}
nav a {
  color: #FDFDFD;
}

.sticky {
  position: fixed;
  top: 0%;
  width: 100%;
  z-index: 99;
}

@media (min-width: 0px) {
  .wrapper {
    margin: 0 auto;
    width: 90%;
  }
}
@media (min-width: 960px) {
  .wrapper {
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    max-width: 1140px;
    margin: auto;
    width: 100%;
  }
}

.hero_banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/hero_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 0px) {
  .hero_banner {
    height: 90vh;
  }
}
@media (min-width: 720px) {
  .hero_banner {
    height: 80vh;
  }
}
@media (min-width: 1200px) {
  .hero_banner {
    height: 100vh;
  }
}
@media (min-width: 0px) {
  .hero_banner .hero {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .hero_banner .hero {
    width: 60%;
  }
}
@media (min-width: 0px) {
  .hero_banner .hero h1 {
    font-size: 2rem;
  }
}
@media (min-width: 720px) {
  .hero_banner .hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 0px) {
  .hero_banner .hero p {
    font-size: 1rem;
  }
}
@media (min-width: 720px) {
  .hero_banner .hero p {
    font-size: 1.5rem;
  }
}

.intro {
  position: relative;
}
@media (min-width: 0px) {
  .intro {
    display: flex;
    flex-direction: column;
    padding: 3rem 0;
  }
}
@media (min-width: 960px) {
  .intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 5rem 0;
  }
}
.intro img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}
@media (min-width: 960px) {
  .intro img {
    box-shadow: -20px 20px;
    color: #458fde;
    width: 800px;
    height: 500px;
  }
}
@media (min-width: 1200px) {
  .intro img {
    width: 900px;
    height: 500px;
  }
}
.intro .about_info {
  height: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 4;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (min-width: 720px) {
  .intro .about_info {
    position: relative;
    top: -40px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: -80px;
  }
}
@media (min-width: 960px) {
  .intro .about_info {
    position: absolute;
    top: 400px;
    left: 400px; /* Adjust based on how much you want it to overlap */
    width: calc(100% - 400px); /* Make the width fill out the remaining space */
  }
}
@media (min-width: 1200px) {
  .intro .about_info {
    top: 300px;
    left: 600px; /* Adjust based on how much you want it to overlap */
    width: calc(100% - 600px); /* Make the width fill out the remaining space */
  }
}
@media (min-width: 720px) {
  .intro .about_info h2 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .intro .about_info h2 {
    font-size: 2rem;
    width: 80%;
  }
}
@media (min-width: 960px) {
  .intro .about_info p {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .intro .about_info p {
    font-size: 1rem;
  }
}

#button {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #458fde;
  color: #FDFDFD;
  border: none;
  border-radius: 0.5rem;
  text-align: start;
  width: auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#buttonw {
  font-size: 0.8rem;
  padding: 0.9rem 1rem;
  background-color: #FDFDFD;
  color: #1D1D1D;
  border: none;
  border-radius: 0.5rem;
  text-align: start;
  width: auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#button:hover {
  background: none;
  outline: solid 1px #458fde;
  color: #458fde;
  transition: 200ms ease;
  transform: scale(1.05);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#buttonw:hover {
  background: none;
  outline: solid 1px #FDFDFD;
  color: #FDFDFD;
  transition: 200ms ease;
  transform: scale(1.05);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#services {
  background-color: #458fde;
}
#services .services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FDFDFD;
}
@media (min-width: 0px) {
  #services .services {
    padding: 5rem 0;
  }
}
@media (min-width: 1200px) {
  #services .services {
    padding: 10rem 0;
  }
}
#services .services h3 {
  font-size: 2rem;
  padding-bottom: 2rem;
}
#services .services .card_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

#about {
  background-color: #458fde;
  color: #FDFDFD;
}

.about_banner {
  background-color: #458fde;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/mission.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FDFDFD;
  height: auto;
}
.about_banner .about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 0;
  width: 80%;
}

@media (min-width: 0px) {
  .about_mob {
    display: block;
  }
  .about_mob .item_wrapper {
    width: 100%;
    height: 40vh;
  }
  .about_mob .image {
    position: relative;
    height: 100%;
  }
  .about_mob img {
    width: 100%;
    height: 100%;
  }
  .about_mob .content_mob {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: column;
    padding: 5rem 0;
  }
  .about_mob .content_mob h2 {
    font-size: 1.5rem;
  }
  .about_mob .content_mob p {
    font-size: 1rem;
  }
}
@media (min-width: 960px) {
  .about_mob {
    display: none;
  }
}

.about_item_container {
  padding: 5rem 0;
}
@media (min-width: 0px) {
  .about_item_container {
    display: none;
  }
}
@media (min-width: 960px) {
  .about_item_container {
    display: block;
  }
}
.about_item_container h3 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 5rem;
}
@media (min-width: 960px) {
  .about_item_container h3 {
    padding-bottom: 3rem;
  }
}
@media (min-width: 1200px) {
  .about_item_container h3 {
    padding-bottom: 5rem;
  }
}

#invert {
  margin-bottom: 24rem;
}

.about_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding-bottom: 7rem;
  position: relative;
}
.about_item img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: #458fde;
  width: 800px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_item #img_right {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: #458fde;
  width: 800px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: end;
  position: absolute;
}
.about_item .about_item_left {
  top: 170px;
  height: auto;
  padding: 2rem 1.5rem;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1D1D1D;
  z-index: 4;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (min-width: 720px) {
  .about_item .about_item_left {
    position: relative;
  }
}
@media (min-width: 960px) {
  .about_item .about_item_left {
    margin: 5rem 0;
    position: absolute;
    width: calc(100% - 400px); /* Make the width fill out the remaining space */
  }
}
@media (min-width: 1200px) {
  .about_item .about_item_left {
    width: calc(100% - 600px); /* Make the width fill out the remaining space */
  }
}
.about_item .about_item_left h2 {
  font-size: 1.5rem;
  width: 80%;
}
.about_item .about_item_left p {
  font-size: 1rem;
}
.about_item .about_item_info {
  position: absolute;
  top: 230px;
  height: auto;
  padding: 2rem 1.5rem;
  background-color: #FDFDFD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1D1D1D;
  z-index: 4;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (min-width: 960px) {
  .about_item .about_item_info {
    left: 400px; /* Adjust based on how much you want it to overlap */
    width: calc(100% - 400px); /* Make the width fill out the remaining space */
  }
}
@media (min-width: 1200px) {
  .about_item .about_item_info {
    left: 600px; /* Adjust based on how much you want it to overlap */
    width: calc(100% - 600px); /* Make the width fill out the remaining space */
  }
}
.about_item .about_item_info h2 {
  font-size: 1.5rem;
  width: 80%;
}
.about_item .about_item_info p {
  font-size: 1rem;
}

#contact {
  background-color: #458fde;
  position: relative;
}

.contact {
  position: relative;
}
@media (min-width: 0px) {
  .contact {
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    gap: 3rem;
  }
}
@media (min-width: 960px) {
  .contact {
    display: grid;
    grid-template-columns: 4fr 8fr;
    padding: 5rem 0;
    gap: 5rem;
  }
}
@media (min-width: 1200px) {
  .contact {
    gap: 10rem;
  }
}
.contact .contact_detail {
  color: #FDFDFD;
}
@media (min-width: 0px) {
  .contact .contact_detail span {
    display: none;
  }
}
@media (min-width: 960px) {
  .contact .contact_detail span {
    display: block;
  }
}
.contact form {
  width: 100%;
  height: auto;
  z-index: 80;
  display: flex;
  padding: 3rem 0;
  border-radius: 4rem 0 0 4rem;
  flex-wrap: wrap;
}
.contact form h3 {
  font-size: 2rem;
  width: 100%;
}
.contact form input {
  height: 3rem;
  outline: none;
  border: none;
  margin-bottom: 1rem;
  background: none;
  border-bottom: 1px solid #458fde;
  color: #1D1D1D;
}
@media (min-width: 0px) {
  .contact form input {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .contact form input {
    width: 48%;
  }
}
@media (min-width: 720px) {
  .contact form #lastName,
  .contact form #mobile {
    margin-left: 1rem;
  }
}
.contact form textarea {
  border: none;
  background: none;
  outline: none;
  border-bottom: 1px solid #458fde;
  color: #1D1D1D;
  font-size: 1rem;
  margin: 2rem 0;
  height: auto;
  min-width: 100%;
  max-width: 100%;
}

.bg {
  background-color: #FDFDFD;
  position: absolute; /* Changed to absolute to control its position relative to #contact */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  overflow-x: hidden;
}
@media (min-width: 0px) {
  .bg {
    width: 100%;
    height: 65%;
    bottom: 0;
  }
}
@media (min-width: 960px) {
  .bg {
    left: 36%; /* Aligns to the right of #contact */
    width: 64%; /* Adjust width according to your layout */
    height: 100%;
    top: 0; /* Aligns with the top of #contact */
    border-radius: 4rem 0 0 4rem;
  }
}
@media (min-width: 1200px) {
  .bg {
    left: 40%; /* Aligns to the right of #contact */
    width: 60%; /* Adjust width according to your layout */
  }
}

.footer {
  background-color: #FDFDFD;
  padding: 2rem 0;
}
.footer .f_logo {
  height: auto;
  padding-bottom: 1rem;
}
@media (min-width: 0px) {
  .footer .f_logo {
    width: 60%;
  }
}
@media (min-width: 720px) {
  .footer .f_logo {
    width: 13%;
  }
}
.footer .f_logo img {
  width: 100%;
  height: auto;
  padding-bottom: 1rem;
}
@media (min-width: 0px) {
  .footer .footer_items {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 960px) {
  .footer .footer_items {
    gap: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .footer_items .f_details {
  height: auto;
}
.footer .footer_items .f_details p {
  padding: 0;
}
.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
}
.footer .input-group {
  display: flex;
  justify-content: start;
  align-items: flex-end;
  gap: 1rem;
}
.footer .input-group .input {
  width: 50%;
  height: 2rem;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid #458fde;
  color: #1D1D1D;
}
.footer .sm_items {
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: right;
}
@media (min-width: 0px) {
  .footer .sm_items span {
    display: none;
  }
}
@media (min-width: 960px) {
  .footer .sm_items span {
    display: block;
  }
}
.footer .sm_items h5 {
  text-align: right;
  padding-top: none;
}
@media (min-width: 0px) {
  .footer .sm_items h5 {
    display: none;
  }
}
@media (min-width: 960px) {
  .footer .sm_items h5 {
    display: block;
  }
}
.footer .sm_items i {
  padding-left: 0.5rem;
}
@media (min-width: 0px) {
  .footer .sm_items i {
    font-size: 3rem;
  }
}
@media (min-width: 960px) {
  .footer .sm_items i {
    font-size: 2rem;
  }
}
.footer span {
  display: block;
  height: 1px;
  width: 100%;
  margin-bottom: 1rem;
  background-color: #458fde;
}

.s_white {
  display: block;
  height: 1px;
  width: 100%;
  margin-bottom: 1rem;
  background-color: #FDFDFD;
}/*# sourceMappingURL=index.css.map */