/* Colors */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  line-height: 150%;
  color: #000000;
}


.button {
  background-color: #f85a40;
  color: #ffffff;
  border: 0px;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  border-radius: 50px;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: all ease-out 0.5s;
}

.headeractive {
  background-color: #008374;
}

.navbar {
  background-color: black;
  color: #ffffff;
}
.navbar .navbar-brand {
  font-size: 1.125rem;
  color: #ffffff;
}
.navbar .nav-link {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #ffffff;
}
.navbar .nav-link:hover {
  color: #f85a40;
}
.navbar .callbtn {
  background-color: #f85a40;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: 0px;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar a.callus {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  color: #f85a40;
  border: 2px solid #f85a40;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar .navbar-toggler {
  background-color: #f85a40;
  border-radius: 0px;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  color: #ffffff !important;
}

.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 5px red;
}
.hero p {
  color: #ffffff;
  margin: 5px 0 0 0;
  font-size: 22px;
  font-weight: 500;
  text-shadow: 2px 2px 5px red;
}

.about-section {
  padding: 4rem 0;
}
.about-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
}
.about-section h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.875rem;
}
.about-section img {
  border-radius: 30px;
}
.about-section ul {
  list-style: none;
  padding: 0;
}
.about-section ul li {
  padding: 0 0 10px 30px;
  position: relative;
}
.about-section ul li i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #008374;
}

.gallery-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.gallery-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 2rem;
}
.gallery-section .img-boxes .img-box {
  padding: 0px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  height: 300px;
}
.gallery-section .img-boxes .img-box img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border-radius: 30px;
}
.gallery-section .img-boxes .img-box img:hover {
  transform: scale(0.9);
}

.service-section {
  padding: 4rem 0;
  background-color: #f6f6f6;
}
.service-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
  text-align: center;
}
.service-section .service-item {
  position: relative;
  padding: 40px;
  background-color: #ffffff;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #f85a40;
  box-shadow: 2px 2px 5px red;
}
.service-section .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 70px;
}
.service-section .service-item .icon::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f1f1f1;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}
.service-section .service-item .icon i {
  color: #000000;
  font-size: 56px;
  z-index: 2;
  position: relative;
}
.service-section .service-item h3 {
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
}
.service-section .service-item:hover .icon::before {
  background: #008374;
}
.service-section .service-item:hover h3 {
  border-bottom: 4px solid #008374;
}

.feature-section {
  padding: 4rem 0;
}
.feature-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
}
.feature-section .list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-section .list-item li {
  margin: 10px 0;
  padding: 0;
  display: block;
  list-style: none;
}
.feature-section .list-item li i {
  margin-right: 5px;
}
.feature-section img {
  border-radius: 30px;
}

.testimonial-section {
  padding: 4rem 0;
  text-align: center;
}
.testimonial-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
  text-align: center;
}
.testimonial-section .carousel-control-prev-icon {
  background-image: none;
  color: #777777;
}
.testimonial-section .carousel-control-next-icon {
  background-image: none;
  color: #777777;
}
.testimonial-section .carousel-control-next {
  position: inherit;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.testimonial-section .carousel-control-prev {
  position: inherit;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.footer {
  background-color: #008374;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}
.footer .social-icons {
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer .social-icons li {
  margin: 0 0.5rem;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.footer .social-icons li a {
  color: #ffffff;
  font-size: 1.5rem;
}/*# sourceMappingURL=main.css.map */


html {
  scroll-padding-top: 40px;
}

@media only screen and (min-width: 768px) {
  header div.container-fluid {
    display: flex;
    flex-direction: column;
  }
  header div.navbar-collapse.collapse {
    display: flex;
    flex-direction: column;
  }
  html {
    scroll-padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) {
  header div.navbar-collapse.collapse {
    display: flex;
    flex-direction: row;
  }
  html {
    scroll-padding-top: 60px;
  }
}

@media only screen and (min-width: 1400px) {
  header div.container-fluid {
    display: flex;
    flex-direction: row;
  }
  html {
    scroll-padding-top: 40px;
  }
}

#services .row.gy-4 {
  display: flex;
  justify-content: center;
}