.navbar-brand img {
  width: 80px;
  
}

.navbar-brand {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: black !important;
  font-size: 14px;
  padding: 5px 12px !important;
}

.header-area .main-nav {
  align-items: center;
}

.main-banner {
  position: relative;
}

.main-banner .hero-img {
  position: absolute;
  bottom: 15%;
  right: 0;
  width: 200px;

}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: 0.3s;
  color: #fff;
  margin-right: 10px;
}

.btn-download i {
  font-size: 20px;
  margin-right: 8px;
}

.android {
  background: #00a99d;
}

.ios {
  background: #000;
}

.android:hover {
  background: #087770;
}

.ios:hover {
  background: #333;
}

.color-p {
  color: #00a99d;
}

/*
# Hero Section
--------------------------------------------------------------*/
.hero.min-height {
  min-height: 400px;
}

.hero {
  width: 100%;
  min-height: 80vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  /* background: color-mix(in srgb, #0c2826, transparent 30%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.hero p {
  color: color-mix(in srgb, #eee, transparent 20%);
  margin: 10px 0 25px 0;
  font-size: 24px;
  max-width: 650px;
  text-align: center;
}

.hero .btn-get-started {
  background: #fff;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

.dropdown-item {
  line-height: 35px !important;
  color: white;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: white;
  color: black !important;
}

.dropdown-item:active {
  background-color: white;
  color: black !important;
}

.dropdown-menu {
  background: #e2409f;
  opacity: 0;
  transition: .4s;
  transform: scaleY(0);
}

.dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
}

@media (max-width: 995px) {
  .navbar-collapse {
    background-color: #01655d;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 25px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-download {
    font-size: 12px;
    padding: 10px;
  }

  footer {
    display: flex;
    border-radius: 0px !important;
    align-items: center;
  }

  footer p {
    line-height: initial !important;
  }
}