
:root{--blue:#598da5;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#49a35d;--teal:#20c997;--cyan:#3dadbe;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#598da5;--secondary:#6c757d;--success:#49a35d;--info:#3dadbe;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40; }

 /* Default background for the navbar */
 .navbar {
  background-color: transparent;
  transition: background-color 0.5s ease;
}

/* Background when scrolling */
.navbar-scrolled {
  background-color: #f8f9fa !important; /* Change this to any color you want */
}

.hero-header {
  margin-top:0px;
  background: url(../img/bg-hero2.png) center center no-repeat;
  background-color: rgba(0, 0, 0, 0);
background-size: auto;
  background-size: cover;

}

.hero-header-pages {
  margin-top:0px;
  background: url(../img/bg-hero-pages.png) center center no-repeat;
  background-color: rgba(0, 0, 0, 0);
  background-size: auto;
  background-size: cover;

}

.hero-background {
    background-color: #68a0ba;
}

.testimonial-background {
  background-color: #68a0ba;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}

.about-img {
    position: relative;
    overflow: hidden;
  }

  h1 { color: #3D6070;}


  .bg-primary { background-color: #3D6070 !important; }

  .btn-primary{ background-color: #3D6070 !important; } 

  .btn-outline-primary { color: #3D6070 !important; }
  .btn-outline-primary { border-color: #3D6070 !important; }
  a  { color: #3D6070 !important; }
  
  /*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}