@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('theme.css'); */
@import url('bootstrap-icons.min.css');
@import url('top-navigation.css');
@import url('footer.css');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --bs-primary: #132847;
  --bs-success: #02612e;
  --bs-gray: #555555;
  --bs-white: #ffffff;
  --bs-secondary-light: #f1efef;
  --bs-primary-dark: #07162c;
  --bs-success-light: #4fa255;

  --we-font-jost: "Jost", sans-serif;
  --we-body-font-family: var(--we-font-jost);
  --we-body-font-size: 16px;
  --we-body-font-weight: 400;
  --we-body-line-height: 1.49;
  --we-link-color: #02612e;
  --we-link-hover-color: #024420;
}


body {
  position: relative;
  font-family: var(--we-body-font-family);
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-size: var(--we-body-font-size);
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-success {
  background-color: var(--bs-success) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-success {
  color: var(--bs-success) !important;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.btn-success {
  background-color: var(--bs-success);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--we-body-font-family);
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: 40px;
  line-height: normal;
  font-weight: 600;
}

h2 {
  font-size: 20px;
  line-height: 36px;
}

h3 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
}

h5 {
  font-size: 22px;
  line-height: 38px;
  font-weight: 400;
}

h6 {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
}


.form-control:focus,
.form-select:focus,
.form-check-input:focus,
button:focus,
.btn:focus,
.btn-close:focus,
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.btn {
  border-radius: 4px;
  padding: 6px 33px;
  font-size: 18px;
}

.link-btn {
  font-size: 18px;
}

.section-title {
  font-weight: 600;
  border-bottom: 2px solid var(--bs-success);
  display: inline-block;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 50px;
}

.para {
  /* font-size: 18px;
  line-height: 24px; */
  color: var(--bs-gray);
}

/* Carousel */
#introCarousel,
#introCarousel .carousel-inner,
#introCarousel .carousel-item,
#introCarousel .carousel-item.active {
  height: calc(100vh - 76px);
}

#introCarousel .carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#introCarousel .carousel-item:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

#introCarousel .carousel-item {
  position: relative;
}

#introCarousel .carousel-indicators .active {
  background-color: var(--bs-success);
}

#introCarousel h1 {
  font-size: 30px;
}

#introCarousel .carousel-caption {
  right: 5%;
  left: 5%;
  bottom: 40px;
}

.section-about .container {
  width: 100%;
  max-width: 100%;
}

.section-our-services {
  padding: 60px 0;
}

.card-text {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 20px;
}


.section-reach-us {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-reach-us:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(24, 54, 74, 0.85);
  position: absolute;
  top: 0;
  left: 0;
}

.section-reach-us .section-title {
  border-bottom: 2px solid var(--bs-white);
}

.reach-text {
  font-size: 30px;
  line-height: 40px;
}

/* testimonial */
.section-testimonial {
  padding: 115px 0;
}


/*--------------------------------------------------------------
# Media queries
--------------------------------------------------------------*/

@media (max-width: 800px) {
  h4 {
    font-size: 20px;
  }
}

@media (min-width: 576px) {

  .container-sm,
  .container {
    max-width: 96%;
  }

  #introCarousel,
  #introCarousel .carousel-inner,
  #introCarousel .carousel-item,
  #introCarousel .carousel-item.active {
    height: calc(100vh - 157px);
  }

}

@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    max-width: 95%;
  }

  #introCarousel h1 {
    font-size: 36px;
  }

  .section-our-services .card-header {
    height: 273px;
  }

  .section-our-services .card-header img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (min-width: 992px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 94%;
  }

  #introCarousel .carousel-caption {
    right: 10%;
    left: 10%;
  }

  #introCarousel h1 {
    font-size: 56px;
    line-height: 60px;
  }

  .section-our-services {
    padding: 115px 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  #introCarousel .carousel-caption {
    right: 20%;
    left: 20%;
  }
  .au-content {
    margin-left: 100px;
    max-width: 500px;
    width: 100%;
  }

}

@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }

  .au-content {
    max-width: 445px;
    margin-right: auto;
  }

}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
  #introCarousel .carousel-caption {
    right: 26%;
    left: 26%;
  }
  

}

@media (max-width: 767px) and (orientation: landscape) {

  #introCarousel,
  #introCarousel .carousel-inner,
  #introCarousel .carousel-item,
  #introCarousel .carousel-item.active {
    height: calc(100vh - 120px);
  }
}


.stats .unit {
    font-size: 60px;
}


@media (min-width: 1600px) {
    /* .container {
      max-width: 1320px;
    } */
    .container p:last-child {
        margin-bottom: 0;
    }
  
  }