@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
/*=============navbar start=================*/
body {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Arial, Helvetica, sans-serif;
  background-color: #190d40;
}
nav {
  background-color: #5425af;
  padding: 11px 16px !important;
  padding-bottom: 20px !important;
}
.opennavbar {
  position: fixed;
  width: 100%;
  z-index: 111;
}
nav .navbar-brand {
  display: inline-block;
  max-width: 100%;
  max-height: 58px;
}
nav .navbar-brand img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
}
.custom-collape {
  display: none;
}
.nav-container {
  max-width: 1490px;
  width: 100%;
  margin: 0 auto;
  padding-left: 17px;
  padding-right: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .btn-primary {
  color: #000 !important;
  background-color: #c0ff2e !important;
  border-color: #c0ff2e !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  padding: 10px 12px !important;
  margin-right: 0 !important;
  margin-left: 30px !important;
  border-radius: 6px;
}
footer {
  background-color: #5425af;
}
.navbar-nav .active > .nav-link {
  font-weight: 600;
  color: #81d052 !important;
}

nav .navbar-nav .nav-item .nav-link {
  color: white;
  font-weight: 500;
  font-size: 15px;

  margin-left: 11px;
  margin-right: 11px;
}

.logo-narrow {
  width: 100px;
}
.nav-menu-btn {
  width: 60px;
}
.nav-bar-icon {
  width: 150px;
}
/* navbar End */
.btn-primary {
  color: #fff !important;
  background-color: #b6d323 !important;
  border-color: #b6d323 !important;
}

.btn-primary:hover {
  color: #fff !important;
  background-color: #b6d323 !important;
  border-color: #b6d323 !important;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(35, 46, 83, 0.5) !important;
}
.text-primary {
  color: #b6d323 !important;
}
.home-page-section img {
  height: 350px;
  padding-top: 30px;
  width: 100% !important;
}
.home-page-section h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.home-page-section h6 {
  font-size: 17.9176px;
}
footer {
  padding: 15px 8px;
}
footer a {
  font-size: 13px;
  text-align: center;
  margin-top: 15px;
}

footer .footer-main div > div {
  margin: 0 16px;
}
footer a:hover {
  text-decoration: none;
}
footer p {
  font-size: 14px;
  text-align: center;
  color: white;
}
.sub-btn {
  color: #190d40 !important;
  font-weight: 600;
  font-size: 20px;
}
.price-section {
  padding: 60px !important;
}
.price-section ul {
  list-style: none;
  padding: 0;
}

.price-section li {
  display: flex;
  /*  align-items: center;*/
  margin-bottom: 10px; /* Adjust this value to add space between items */
}

.price-section li::before {
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  color: #2ecc71;
}

.price-section li:nth-child(1)::before {
  content: "\f058";
} /* Icon code for the first list item */
.price-section li:nth-child(2)::before {
  content: "\f058";
} /* Icon code for the second list item */
.price-section li:nth-child(3)::before {
  content: "\f058";
} /* Icon code for the third list item */
.price-section li:nth-child(4)::before {
  content: "\f058";
} /* Icon code for the fourth list item */
.price-section li:nth-child(5)::before {
  content: "\f058";
} /* Icon code for the fifth list item */
.price-section li:nth-child(6)::before {
  content: "\f058";
} /* Icon code for the sixth list item */

@media (max-width: 900px) {
  .banner-text {
    font-size: 25px;
  }
}

@media screen and (max-width: 991.98px) {
  nav {
    padding: 36px 16px !important ;
  }
  .nav-container {
    display: flex;
    justify-content: center;
  }
  .navbar-expand-lg .navbar-toggler {
    position: absolute;
    right: 0;
  }
  .navbar-nav {
    display: none;
  }

  .fa {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all ease 0.4s;
  }
  .custom-collape {
    width: 100%;
    height: 522px;
    z-index: 11;
    position: absolute;
    top: 109px;
    background-color: #5425af;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
  }
  .open {
    transition: all 0.5s ease;
    opacity: 1;
    position: fixed;
    z-index: 11;
  }

  .custom-collape ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .custom-collape ul li {
    list-style: none;
  }
  .custom-collape ul li a {
    color: white !important;
    font-weight: 500;
    font-size: 42px;
    z-index: 11;
    transform: translateY(30px);
    opacity: 0;
    transition: all ease 0.5s;
    text-decoration: none;
  }
  .open ul li a {
    transform: translateY(0px);
    opacity: 11;
    transition: all ease 0.5s;
  }
  .custom-collape .btn-primary {
    color: #000 !important;
    background-color: #c0ff2e !important;
    border-color: #c0ff2e !important;
    font-size: 16px !important;
    margin: 0 !important;
    padding: 10px 80px !important;
    transform: translateY(30px);
    opacity: 0;
    transition: all ease 0.5s;
  }
  .open .btn-primary {
    transform: translateY(0px);
    opacity: 11;
    transition: all ease 0.5s;
  }

  .menu {
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    right: 30px;
  }
  .menu div {
    width: 35px;
    height: 100%;

    position: relative;
  }
  .menu span {
    background: #fff;
    width: 100%;
    height: 3px;

    display: block;
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    transition: all ease 0.5s;
  }
  .menu .line-1 {
    transform: translate(-50%, -10px);
  }
  .menu .line-2 {
    width: 50%;
    left: unset;
    right: -11px;
    display: block;
  }
  .menu .line-3 {
    transform: translate(-50%, 8px);
  }
  .openmenu .line-1 {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .openmenu .line-3 {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .openmenu .line-2 {
    opacity: 0;
  }

  nav .navbar-brand {
    display: inline-block;
    max-width: 100%;
    max-height: 38px;
  }
  nav .navbar-brand img {
    width: auto;
    max-width: 100%;
    max-height: 38px;
  }
}

@media screen and (max-width: 767.98px) {
  footer {
    padding: 20px;
  }
  footer .footer-main > div div {
    margin: 10px 0;
  }
  footer .footer-main a {
    text-decoration: underline;
    color: #c0ff2e !important;
  }
}

@media screen and (max-width: 575.98px) {
  footer p{
    text-align: start;
  }
  .custom-collape ul li a {
    font-size: 28px;
  }
}
