@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background-color: #fff;
  font-family: "Poppins", sans-serif !important;
}

/* Sidebar */
.navbar {
  padding: 15px 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 40px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
  border: none;
}

.wrapper {
  width: 100%;
}

#sidebar {
  min-width: 270px;
  max-width: 270px;
  background: #fff;
  color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  box-shadow: 5px 0px 83px -16px rgba(0, 0, 0, 0.83);
  -webkit-box-shadow: 5px 0px 83px -16px rgba(0, 0, 0, 0.83);
  -moz-box-shadow: 5px 0px 83px -16px rgba(0, 0, 0, 0.83);
}
#sidebar .h6 {
  color: #000;
}
#sidebar.active {
  margin-left: -270px;
}
#sidebar.active .custom-menu {
  margin-right: -50px;
}
#sidebar h1 {
  margin-bottom: 20px;
  font-weight: 700;
}
#sidebar h1 .logo {
  color: #fff;
}
#sidebar ul.components {
  padding: 0;
}
#sidebar ul li {
  font-size: 16px;
}
#sidebar ul li > ul {
  margin-left: 10px;
}
#sidebar ul li > ul li {
  font-size: 14px;
}
#sidebar ul li a {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
#sidebar ul li a:hover {
  color: #00888b;
}
#sidebar ul li.active > a {
  background: transparent;
  color: #00888b;
}
@media (max-width: 991.98px) {
  #sidebar {
    margin-left: -270px;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #sidebar .custom-menu {
    margin-right: -60px !important;
    top: 10px !important;
  }
}
#sidebar .custom-menu {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 0;
  margin-right: -20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
@media (prefers-reduced-motion: reduce) {
  #sidebar .custom-menu {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
#sidebar .custom-menu .btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0px;
}
#sidebar .custom-menu .btn.btn-primary {
  background: #00888b;
  border-color: #00888b;
}
#sidebar .custom-menu .btn.btn-primary:hover,
#sidebar .custom-menu .btn.btn-primary:focus {
  background: #00888b !important;
  border-color: #00888b !important;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  #sidebarCollapse span {
    display: none;
  }
}

#content {
  width: 100%;
  padding: 0;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* Footer */
footer {
  border-top: #00000018 1px solid;
  text-align: center;
  padding: 20px;
}

/* Home Page */
.hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-logo img {
  max-width: 450px;
}
.btn-custom {
  background-color: #00888b;
  color: #fff;
  border: none;
}
.experience {
  background: #00888b;
  color: #fff;
  padding: 20px 60px;
  text-align: center;
}
.about {
  background: #fff;
  padding: 60px 60px;
  text-align: center;
  font-style: italic;
}
.quote {
  background: #f4f4f4;
  padding: 60px 60px;
  text-align: center;
  font-style: italic;
}
.quote span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #00888b;
}
.projects {
  padding: 60px 60px;
}

@media screen and (max-width: 768px) {
  .projects {
    padding: 30px 15px;
  }
}

.projects img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.projects img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0, 136, 139, 0.25);
}

/* About Us */
.header-about {
  color: #fff;
  text-align: center;
  background-image: url("../img/about-background.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  min-height: 350px;
}
.section-title {
  background: #009688;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin: 0;
}
.counters {
  background: #666;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
.counters h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.blastoff {
  background: #00888b;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.blastoff img {
  width: 60px;
  margin-bottom: 20px;
}
.blastoff .btn {
  background: #fff;
  color: #00888b;
  border: none;
  margin-top: 20px;
}

/* Our Work */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: #00888b !important;
}

.nav-pills .nav-link {
  background: none !important;
  border: 0 !important;
  border-radius: #00888b !important;
}

.nav-link {
  color: #00888b !important;
  text-decoration: none !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out !important;
}

.btn-primary {
  background-color: #00888b !important;
  border-color: #00888b !important;
}
.carousel-control-next-icon {
  background: #00888b !important;
  border-radius: 50% !important;
}

.carousel-control-prev-icon {
  background: #00888b !important;
  border-radius: 50% !important;
}
