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

/*--------------------------------------------------------------
# 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;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* 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;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/universityhome.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 5s;
  animation-name: animate;
  animation-direction: alternate-reverse;
  animation-duration: 20s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid blue;
}

#hero .btn-get-started:hover {
  background: blue;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px), (max-height: 700px) {
  #hero {
    height: 100vh;
    padding: 100px 0;
  }

  #hero h2 {
    font-size: 28px;
  }
}
@keyframes animate {
  0% {
    background-image: url("../img/meetinghome.jpg");
  }
  20% {
    background-image: url("../img/companyhome.jpg");
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 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;
}

/*-----------------------------------------------------------------
#GEO
-----------------------------------------------------------------*/
.geoservices .container {
  margin-top: 111px;
}

.geoservices .container .icon img {
  width: 100%;
  height: 600px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .container {
  margin-top: 111px;
}

.services .container .card {
  width: 100%;
  height: 200px;
  padding: 0px 0px;
  margin: 23px;
  transition-property: background-color;
  transition-duration: 0.95s;
}
.services .container .row .card .card-body .card-title {
  font-size: 16px;
  font-family: inherit;
}
.services .container .card:hover {
  background-color: green;
}

.services .container .card .icon {
  height: 150px;
  /* width: 275px; */
}
.services .container .card .icon img {
  width: 100%;
  height: 132px;
}

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

/*--------------------------------------------------------------
# Case Studies
--------------------------------------------------------------*/
.casestudies .container {
  margin-top: 110px;
}

.casestudies .container .casestudiesimg {
  width: 95%;
  height: 300px;
  padding: 0px 0px;
}

.casestudies .container .card {
  width: 100%;
  height: 95%;
  padding: 0px 0px;
  margin: 23px;
  transition-property: background-color;
  transition-duration: 0.95s;
}

.casestudies .container .row .card .card-body .card-title {
  font-size: 16px;
  font-family: inherit;
  font-weight: bold;
}

.casestudies .container .card:hover {
  background-color: green;
}

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

/*--------------------------------------------------------------
# Segment
--------------------------------------------------------------*/
.segment .container {
  margin-top: 110px;
}

.segment .container .card {
  width: 100%;
  height: 200px;
  padding: 0px 0px;
  margin: 23px;
  transition-property: background-color;
  transition-duration: 0.95s;
}

.segment .container .row .card .card-body .card-title {
  font-size: 16px;
  font-family: inherit;
}

.segment .container .card:hover {
  background-color: green;
}

.segment .container .card .icon {
  height: 150px;
  /* width: 275px; */
}
.segment .container .card .icon img {
  width: 100%;
  height: 132px;
}

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

/*--------------------------------------------------------------
# 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);
}
