body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #0880e8;
}

a:hover {
  color: #2b99f8;
  text-decoration: none;
}

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

a {
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: blue;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: green;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0880e8;
  border-top-color: #bfe0fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  overflow: hidden;
  color: #fff;
  background-color:#fff!important;
  z-index: 996;
}

/* #topbar.topbar-scrolled {
  top: -60px;
} */

/*#topbar .contact-info a {*/
/*  line-height: 0;*/
/*  color: #fff;*/
/*  transition: 0.3s;*/
/*}*/

/*#topbar .contact-info a:hover {*/
/*  color: #fff;*/
/*  text-decoration: underline;*/
/*}*/

/*#topbar .contact-info i {*/
/*  color: #fff;*/
/*  line-height: 0;*/
/*  margin-right: 5px;*/
/*}*/

/*#topbar .contact-info .phone-icon {*/
/*  margin-left: 15px;*/
/*}*/

/*#topbar .cta {*/
/*  background: transparent;*/
/*}*/

/*#topbar .cta a {*/
/*  color: #fff;*/
/*  background: #fff;*/
/*  padding: 6px 22px 8px 24px;*/
/*  display: inline-block;*/
/*  transition: 0.3s;*/
/*  border-radius: 50px;*/
/*}*/

/*#topbar .cta a:hover {*/
/*  background:#fff;*/
/*}*/

/*#topbar .container .cta .social-links a {*/
/*  font-size: 16px;*/
/*  display: inline-block;*/
/*  background: rgba(255, 255, 255, 0.1);*/
/*  color: #fff;*/
/*  line-height: 1;*/
/*  padding: 10px;*/
/*  margin-right: 4px;*/
/*  border-radius: 50%;*/
/*  text-align: center;*/
/*  width: 36px;*/
/*  height: 36px;*/
/*  transition: 0.3s;*/
/*}*/

/*#topbar .container .social-links a:hover {*/
/*  background: #fff;*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*}*/

/*--------------------------------------------------------------
# Whatsapp button
--------------------------------------------------------------*/
.whatsapp-btn-container {
  position: fixed;
  right: 30px;
  opacity: 0;
  bottom: -50px ;
  bottom: 24px;
  padding: 24px;
  z-index: 100;
  animation: fade-up 1000ms forwards;
  animation-delay: 1000ms ;
}

@keyframes fade-up {
  100%{
    bottom: 24px;
    opacity: 1;
  }
}

.whatsapp-btn-container .whatsapp-btn {
  font-size: 48px;
  color: #25d366;
  display: inline-block;
  transition: all 400ms;
}
.whatsapp-btn-container .whatsapp-btn:hover {
  transform: scale(1.2);
}
.whatsapp-btn-container span {
  position: absolute;
  top: 0;
  left: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #25d366;
  transform: rotateZ(20deg) translateX(10px);
  opacity: 0;
  transition: all 400ms;
}
.whatsapp-btn-container .whatsapp-btn:hover + span {
  transform: rotateZ(0deg) translateX(0px);
  opacity: 1;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 0px;
}

#header.header-scrolled {
  background: rgb(86, 86, 230);
  top: 0;
}

#header.header-scrolled .navbar a,
.navbar a:focus {
  color: white;
}

#header .logo {
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  left: 200px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
    position: absolute;
    width: 145px;
    height: 52px;
    left: 48px;
    top: 5px;
    border-radius: 10px;
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 10px 30px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: brown;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: green;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: green;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: blue;
}

@media (max-width: 991px) {
  #header.header-scrolled .navbar a,
.navbar a:focus {
  color: brown;
}
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .about .container .carousel-item {
    text-align: center;
    left: 0;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 70px;
  right: 40px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: brown;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: green;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: green;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: brown;
}

.section-title p {
  font-size: 16px;
  margin-bottom: 0;
  font-style: italic;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding: 140px 0;
  position: relative;
}
.about:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .container {
  position: relative;
}

.about .content h2 {
  font-weight: 600;
  font-size: 26px;
}

.about .container .content p{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about {
    padding: 140px 0;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.whyus {
  padding: 20px 0;
  position: relative;
}
.whyus .container .content p{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}


@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }
}

/*--------------------------------------------------------------
# Credentials
--------------------------------------------------------------*/
.credentials {
  padding: 50px 0;
  position: relative;
}
.credentials .container .content p{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}
.credentials .container .section-title img {
  width: 250px;
  height: 250px;
  border-radius: 125px;
  margin-bottom: 4px;
}
.credentials .container .section-title {
  font-size: 28px;
  display: block;
  color: #2b69dd;
  line-height: 1;
  padding: 10px 0;
  margin: 10px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  margin: 2px;
  bottom: 2px;
}

/*--------------------------------------------------------------
# Philosophy
--------------------------------------------------------------*/
.philosophy {
  padding-top: 120px;
  padding-bottom: 20px;
  position: relative;
}
.philosophy .container .content p{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}
.philosophy:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.philosophy .container {
  position: relative;
}
.philosophy .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .philosophy {
    padding: 140px 0;
  }
}

/*--------------------------------------------------------------
# Vision
--------------------------------------------------------------*/
.vision {
  padding-top: 120px;
  padding-bottom: 20px;
  position: relative;
}
.vision .container .content p{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}
.vision:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.vision .container {
  position: relative;
}
.vision .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .vision {
    padding: 140px 0;
  }
}

/*--------------------------------------------------------------
# Advisors
--------------------------------------------------------------*/

.advisors .content-title {
  text-align: center;
  padding-bottom: 30px;
}

.advisors .content-title h2{
  font-size: 28px;
  display: block;
  color: #2b69dd;
  line-height: 1;
  padding: 10px 0;
  margin: 10px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  margin: 2px;
  bottom: 2px;
}
.advisors .content-title p{
  font-size: 20px;
  color: #000000;
}
.advisors .content-title img{
  width: 230px;
  height: 230px;
  border-radius: 120px;
  margin-bottom: 4px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .content-title {
  text-align: center;
  padding-bottom: 30px;
}

.testimonials .content-title h2{
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: black; 
}
.testimonials .content-title img{
  width: 250px;
  height: 250px;
  border-radius: 125px;
  margin-bottom: 4px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: brown;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: brown;
  padding: 50px 0 20px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: green;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5db1f9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 2px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: rgb(233, 230, 59);
}