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

h1, h2, h3, h4, h5 {
  font-family: "Lato", sans-serif;
}

p, li {
  font-family: "Lato", sans-serif;
}

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

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: rgba(55, 81, 126, 0.2);
  transition: all ease-out 0.5s;
}

.headeractive {
  background-color: #37517e;
}

.navbar {
  background-color: transparent;
  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: #47b2e4;
}
.navbar .callbtn {
  background-color: #47b2e4;
  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: #47b2e4;
  border: 2px solid #47b2e4;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar .navbar-toggler {
  background-color: #47b2e4;
  border-radius: 0px;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  color: #ffffff !important;
}

.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  /*padding: 60px 0 60px 0;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #37517e;
}
.hero div.container-fluid {
  min-height: 80vh;
}
.hero div.container-fluid div div.hero-img {
  min-height: 80vh;
}

.hero img {
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  color: #ffffff;
  margin: 5px 0 0 0;
  font-size: 18px;
}

.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: 16px;
  font-weight: 500;
  padding: 10px 0px;
  color: #47b2e4;
  margin-bottom: 0;
}
.about-section .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(15, 1fr);
}
.about-section .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}
.about-section .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}
.about-section img {
  border: 6px solid #ffffff;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.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: 2px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #ffffff;
  height: 300px;
}
.gallery-section .img-boxes .img-box img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border-radius: 10px;
}
.gallery-section .img-boxes .img-box img:hover {
  transform: scale(1.1);
}

.service-section {
  padding: 4rem 0;
}
.service-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
  text-align: center;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
.service-section .service-item {
  position: relative;
  padding: 20px;
  background-color: #47b2e4;
  color: #ffffff;
  margin: 10px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-section .service-item .icon {
  width: 70px;
  height: 70px;
  position: relative;
  line-height: 0;
  background-color: #ffffff;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}
.service-section .service-item .icon::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -8px;
  left: 8px;
  transition: 0.3s;
}
.service-section .service-item .icon i {
  color: #47b2e4;
  font-size: 30px;
  z-index: 2;
  position: relative;
}
.service-section .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.services-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  padding-left: 10px;
}
.services-list li {
  width: 50%;
}
@media (min-width: 981px) {
  .service-section .service-item {
    flex-direction: row;
  }
  .service-section .service-item .icon {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media (min-width: 1024px) {
  .services-list li {
      width: 33%;
  }
}

.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 h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 0px;
  color: #47b2e4;
  margin-bottom: 0;
}
.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: 6px solid #ffffff;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.testimonial-section {
  padding: 4rem 0;
}
.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 .testimonial-box {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.testimonial-section .testimonial-box .carousel-control-prev-icon {
  background-image: none;
  color: #777777;
}
.testimonial-section .testimonial-box .carousel-control-next-icon {
  background-image: none;
  color: #777777;
}

.footer {
  background-color: #47b2e4;
  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;
}

@media (max-width: 768px) {
  .hero .intro-text {
    padding: 40px;
  }
}/*# sourceMappingURL=main.css.map */
.badges{
  background-color: #fff;
  padding: 50px;
}

.badges .container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}

.badges .container .badge{
  color:#fff;
  width: 23%;
  /* border: 5px solid #f8c91a; */
  background: #37517e;
  box-shadow: 1px 1px 8px #000;
  border-radius: 18px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px 10px;
}

.badges .container .badge .badge-icon{
  
margin-top: 15px;
}
.badges .container .badge .badge-icon i {
  /* border: 5px solid #fff; */
  font-size: 60px;
  padding: 5px;
  /* animation: rotateIcon 10s linear infinite; */
  /* transition: animation-duration 0.3s ease;  */
}

.badges .container .badge:hover .badge-icon i {
  animation-duration: 2s; /* Faster rotation on hover */
}
.banner {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 25px;
    margin-top: 30px;
    background: #37517e;
    border-radius: 18px;
    box-shadow: 1px 1px 8px #000;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner p {
    margin-bottom: 0;
    color: #fff;
    max-width: 1000px;
    text-align: center;
    line-height: 1.3;
    font-size: 20px;
}

.banner p span {
    font-weight: bold;
}
@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.badges .container .badge .badge-title{
  font-size: 18px;
  /* margin-bottom: 25px; */
  text-wrap: wrap;
}

.badges .container .badge .badge-content{
  font-size: 18px;
  text-wrap: wrap;
  line-height: 25px;
  margin-bottom: 15px;
}

.badges .container .badge .badge-content a{
  text-decoration: none;
  color:#fff;
}

@media (max-width:1200px){
  .badges .container .badge{
    width: 49%;
  }
}

@media (max-width:600px){
  .badges .container .badge{
    width: 98%;
    margin:10px 0;
  }
}

@media (max-width:800px){
  .badges .container .badge .badge-icon i {
    font-size:75px;
  }
}

@media (min-width: 992px) {
  .intro-text {
    padding-top: 80px;
    margin-left: 10%;
  }
}

