/* 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;
  margin: 0;
  padding: 0;
  line-height: 150%;
  background-color: #ffffff;
  color: #222222;
  font-size: 0.875rem;
}

.button {
  background-color: #0ea2bd;
  color: #ffffff;
  border: 2px solid transparent;
  padding: 10px 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: rgba(59, 93, 80, 0);
  transition: all ease-out 0.5s;
}

.headeractive {
  background-color: #ffffff;
}

.navbar {
  background-color: #143299;
  color: #000000;
}
.navbar .navbar-brand {
  font-size: calc(0.8em + 0.6vmax);
  color: #ffffff;
}
.navbar .nav-link {
  font-size: 15px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}
.navbar .nav-link:hover {
  color: #0ea2bd;
}
.navbar .callbtn {
  background-color: #0ea2bd;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  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: #ffffff;
  border: 2px solid #0ea2bd;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar .navbar-toggler {
  background-color: #0ea2bd;
  border-radius: 0px;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  color: #ffffff !important;
}

.hero {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  padding: 60px 0 60px 0;
}
.hero h2 {
  font-size: 45px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #143299;
  margin-top: 30px;
}
.hero p {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #143299;
  margin-top: 30px;
}
.hero .button {
  background-color: #143299;
  color: #ffffff;
  border: 2px solid transparent;
  padding: 10px 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
}

.about-section {
  padding: 4rem 0;
}
.about-section h2 {
  font-size: 2.875rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #143299;
  margin-bottom: 1.875rem;
}
.about-section h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(14, 162, 189, 0.1);
  color: #143299;
  border-radius: 7px;
  display: inline-block;
}
.about-section .img-boxes .img-box {
  padding: 6px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease-out 0s;
  background-color: #ffffff;
}
.about-section .img-boxes .img-box img {
  width: 100%;
  height: 100%;
}
.about-section .img-boxes .col-md-6:nth-child(2) .img-box, .about-section .img-boxes .col-md-6:nth-child(4) .img-box {
  margin-top: -40px;
}

.service-section {
  padding: 4rem 0;
}
.service-section h2 {
  font-size: 2.875rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #143299;
  margin-bottom: 1.875rem;
  text-align: center;
}
.service-section .service-item {
  position: relative;
  padding-top: 40px;
}
.service-section .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}
.service-section .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #143299;
  border-right: 5px solid #ffffff;
}
.service-section .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}
.service-section .service-item .icon::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(14, 162, 189, 0.2);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}
.service-section .service-item .icon i {
  color: #143299;
  font-size: 56px;
  z-index: 2;
  position: relative;
}
.service-section .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

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

.features {
  padding: 4rem 1.2rem;
}
.features .img-box {
  padding: 6px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease-out 0s;
  background-color: #ffffff;
}
.features .img-box img {
  width: 100%;
  height: 100%;
}
.features h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #143299;
  margin-top: 0;
}
.features h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-top: 1.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
.features .list-item {
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
.features .list-item li {
  display: block;
  margin: 1rem 0;
  list-style: none;
  font-size: 1rem;
}
.features .list-item li span {
  padding-right: 0.625rem;
}
.features .list-item li span i {
  font-size: 1.2rem;
}

.testimonials {
  text-align: center;
  padding: 4rem 1.2rem;
}
.testimonials h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #143299;
  margin-top: 0;
  text-align: center;
}
.testimonials h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: #0ea2bd;
  margin-top: 1.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
.testimonials .carousel-control-prev-icon {
  background-image: none;
  color: #222222;
}
.testimonials .carousel-control-next-icon {
  background-image: none;
  color: #222222;
}
.testimonials .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;
}
.testimonials .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 {
  color: #ffffff;
  background-color: #143299;
  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: #999999;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .about-section .img-boxes .col-md-6:nth-child(2) .img-box, .about-section .img-boxes .col-md-6:nth-child(4) .img-box {
    margin-top: 0px;
  }
}/*# sourceMappingURL=main.css.map */