nav {
  width: 100%;
  padding: 10px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background-color: #ffeaa78a;
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-container .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3436;
  text-decoration: none;
  font-family: "Laila", sans-serif;
}

.nav-container ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.nav-container ul li a {
  text-decoration: none;
  color: #2d3436;
  font-weight: 500;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1,
.hero p {
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.hero p {
  font-size: 1rem;
  color: #636e72;
  margin-bottom: 2em;
}

.hero .cta-btn {
  text-align: center;
  text-decoration: none;
  background-color: #2d3436;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 700;
}

.app-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 5px;
}

.app-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.app-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3436;
}

.app-card-body {
  padding: 10px;
  flex: 1 1;
  font-size: 0.85rem;
  color: #1a1a1b;
  word-break: break-word;
  line-height: 1.5;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 33.33%);
  grid-gap: 20px;
}

.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.features {
  padding: 50px 0px;
}

.features a {
  text-decoration: none;
}

.footer {
  padding-top: 1rem;
}

.footer h6 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #2d3436;
}

.footer ul {
  list-style: none;
}

.footer ul:not(.d-flex) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer ul li a {
  font-size: 0.8rem;
  text-decoration: none;
  color: #2d3436;
}

.footer-nav li a {
  text-align: left;
}

.foot-note {
  padding: 0.1rem 15px;
  margin-top: 2em;
}
.logo-md {
  height: auto;
  width: 2em;
  display: inline-block;
}

.footer-btn,
.footer-title {
  font-size: 1rem !important;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-btn {
  text-align: left !important;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem !important;
}

.footer-nav {
  gap: 10px;
}

.social-section h6 {
  margin-bottom: 0;
}

.social {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.social span {
  font-size: 1.5rem;
  display: inline-block;
}

.social span:first-child {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.social span:not(:first-child) {
  margin: 0.5rem;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
  user-select: none;
  padding: 10px;
  display: none;
}

.menu-btn:active,
.menu-btn:focus,
.menu-btn:hover {
  outline: none;
  background: none;
  background-color: transparent;
}

@media screen and (max-width: 992px) {
  .footer-btn {
    border-bottom: 1px solid #d5d5d5;
    border-radius: 0;
    padding-bottom: 0.6rem !important;
  }

  .app-grid {
    grid-template-columns: repeat(2, 50%);
  }

  .menu-btn {
    display: inline-block;
  }

  .nav-container ul {
    flex-wrap: wrap;
    position: absolute;
    top: 55px;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    background-color: #ffeaa78a;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 20px;
    display: none;
  }

  .nav-container ul.active {
    display: flex;
  }
}

@media screen and (max-width: 688px) {
  .copy-pro-pane {
    margin: 0 auto;
  }

  .app-grid {
    grid-template-columns: repeat(1, 100%);
  }
}

@media screen and (max-width: 595px) {
  .footer {
    bottom: 0;
    z-index: 1;
  }

  .w-xs-100 {
    width: 100% !important;
  }

  .footer-nav {
    justify-content: space-between !important;
  }
}
