/* Colors */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 16px;
  background-color: #ffffff;
  color: #222222;
  font-size: 16px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 5px 0 !important;
  margin: 5px 0 !important;
}


h2 {
  font-weight: 800;
  color: #003366;
}


@media (max-width: 768px) {
  .navbar.fixed-top {
    transition: top 0.3s;
  }

  .hidden-navbar {
    top: -100%;
  }
}
html {
  scroll-padding-top: 80px; 
}
.button {
  background-color: #003366;
  color: #ffffff;
  padding: 15px 25px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 800;
  border-radius: 20px;
  margin: 0px 0 !important;
}

.button:hover {
  color: #003366;
  background-color: #ffffff;
}

.navbar {
  background-color: #00336694 !important;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 10px #000000;
  backdrop-filter: blur(15px);
}

.navbar .nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width:1000px) {
  .navbar h5 {
    width: 100%;
    text-align: center;
  }
}

@media (max-width:767px) {
  .navbar h5 {
    width: auto;
    text-align: none;
  }
}

.navbar .callus {
  background-color: #579578;
  color: #ffffff;
  border: 2px solid transparent;
  padding: 0.712rem 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #000000;
  font-size: 0.8125rem;
  font-weight: 600;
}

.navbar .callus:hover {
  border: 2px solid #e58b7b;
  background-color: #e58b7b;
  color: #579578;
}

.navbar span {
  color: #ffffff;
}

.navbar span .button:hover {
  background-color: #ffffff;
  color: #222222;
}

.navbar .cn {
  font-size: 30px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 15px #000;
}

#hero {
  top: 40px;
  flex-direction: column;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  align-items: center;
  color: white;
  text-align: center;
  padding: 10px;
  overflow: hidden;
}

#hero>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: -1;
}

#hero>div {
  background: #0000005c;
  width: 90%;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  align-content: center;
}

#hero h1 {
  text-shadow: 0 0 5px #000;
}

#hero p {
  text-shadow: 0 0 15px #000;
  font-size: 20px;
  margin: 16px 0 !important;
}

.about-section {
  padding: 4rem 1.2rem;
  background-color: #68bcd9;
}

.about-section h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 1.2rem;
  color: #579578;
  margin-top: 1.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.about-section p {
  text-align: justify;
  color: #003366;
  margin: 16px 0 !important;
}

.about-section img {
  box-shadow: 5px 5px 15px #000;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
}
@media (max-width: 767px) {
  .about-section img {
        margin-top: 30px;
    }
}
.service-section {
  padding: 4rem 0;
}

.service-section p {
  text-align: justify;
}

.service-section .service-item {
  position: relative;
  padding: 20px;
  background-color: #003366;
  color: #ffffff;
}

.service-section .service-item .icon {
  width: 100px;
  height: 100px;
  position: relative;
  margin-right: 20px;
  line-height: 0;
  background-color: #ffffff;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}

.service-section .service-item .icon::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background: rgb(255 255 255 / 33%);
  border-radius: 50px;
  z-index: 1;
  bottom: -8px;
  left: 8px;
  transition: 0.3s;
}

.service-section .service-item .icon i {
  color: #003366;
  font-size: 30px;
  z-index: 2;
  position: relative;
}

.service-section .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.gallery-section {
  padding: 4rem 0;
}

.gallery-section img {
  height: 219px;
  width: 100%;
  border: 4px solid transparent;
  object-fit: cover;
  object-position: center;
  transition: .2s;
}

.gallery-section img:hover {
  box-shadow: 0 0 5px 5px #000000;
  z-index: 1;
}

@media (max-width:600px) {
  .gallery-section img:hover {
    box-shadow: 0 0 5px 5px #000000;
    position: relative;
    left: 50%;
    right: unset;
  }

  .gallery-section img.right:hover {
    left: unset;
    right: 50%;
  }
}

.features {
  padding: 4rem 1.2rem;
  background-color: #68bcd9;
  color: #003366;
}

.features img {
  box-shadow: 5px 5px 15px #000;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

@media (max-width:991px) {
  .features img {
    margin-top: 40px;
  }
}

.features h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 1.2rem;
  color: #ffffff;
  margin-top: 1.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.features .list-item {
  margin: 1.875rem 0;
  padding: 0;
  list-style: none;
}

.features .list-item li {
  display: block;
  margin: 1rem 0;
  list-style: none;
  font-size: 1rem;

  text-align: justify;
}

.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 img{
  width: 60px;
  height: 60px;
}

.testimonials h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 1.2rem;
  color: #579578;
  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;
}

.contact-section {
  text-align: center;
  padding: 64px 19.2px;
  background-color: #f1f1f1;
}

.contact-section p {
  text-align: justify;
  font-size: 20px;
  line-height: 1.5;
}

.footer {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.footer p {
  margin: 0 4rem !important;
}


.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: 2rem;
}
.badges{
  background-color: #fff;
  padding: 50px;
}

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

.badges .container .badge{
  color:#fff;
  width: 24%;
  border: 5px solid #003366;
  background: #003366;
  box-shadow: 1px 1px 8px #000;
  border-radius: 25px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.badges .container .badge .badge-icon{
  
margin-top: 15px;
}
.badges .container .badge .badge-icon i {
  border-radius: 50%;
  /* border: 5px solid #fff; */
  font-size: 60px;
  padding: 5px;
} 


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

.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%;
    margin:10px 0;
  }
}

@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;
  }
}


/* Call Now Button */
#callnowbutton {
  display: none;
}

@media screen and (max-width: 650px) {
  #callnowbutton {
      position: fixed;
      right: 10px;
      padding: 10px 20px;
      z-index: 9999;
      cursor: pointer;
      bottom: 10px;
      display: inline-block;
      background-color: #81d742;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      border: none;
      transition: .3s;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      -o-transition: .3s;
      -ms-transition: .3s;
  }

  #callnowbutton a img {
      height: 2em;
  }
}
/* END Call Now Button */