*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  outline: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 50%;
  }
}

body {
  box-sizing: border-box;
  color: #000000;
}

a {
  text-decoration: none;
  outline: none;
}

.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 10;
}
@media only screen and (max-width: 800px) {
  .header {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.6rem 4rem;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo h2 {
  font-size: 1.8rem;
  font-family: "Buljirya", sans-serif;
  color: #004385;
  margin-left: 1.6rem;
}
.header__links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  color: #000000;
  padding-left: 20px;
}
@media only screen and (max-width: 800px) {
  .header__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 32rem;
    max-width: 90%;
    height: 100%;
    padding: 2rem;
    background-color: #fff;
    transition: all 0.3s;
    z-index: 12;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.header__link {
  position: relative;
}
.header__link:not(:last-child) {
  margin-right: 3.1rem;
}
.header__link a {
  color: inherit;
}
.header__link a::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 0.2rem;
  background-color: #004385;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.header__link a.active {
  font-weight: 700;
}
.header__link a.active::before,
.header__link a:hover::before {
  transform: scale(1);
}
@media only screen and (max-width: 800px) {
  .header__link:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3.1rem;
  }
}
@media only screen and (max-width: 800px) {
  .header .btn,
  .header .get_app {
    display: none;
  }
}

.hamburger {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  z-index: 10;
  transition: all 0.25s;
  display: none;
}
@media only screen and (max-width: 800px) {
  .hamburger {
    display: block;
  }
}
.hamburger-top, .hamburger-middle, .hamburger-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #000;
  transform: rotate(0);
  transition: all 0.5s;
}
.hamburger-middle {
  transform: translateY(7px);
}
.hamburger-bottom {
  transform: translateY(14px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

@media only screen and (max-width: 800px) {
  .hidden {
    transform: translateX(-100%);
  }
}
.mobile-link {
  display: none;
}

@media only screen and (max-width: 800px) {
  .mobile-link {
    display: block !important;
    width: 100%;
  }
  .mobile-link:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.btn {
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  background-color: #004385;
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-align: center;
}
.btn:hover {
  background-color: #00509f;
}
.get_app {
    margin-left: auto;
    margin-right: 0;
}
.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__left {
  width: 100% !important;
  flex: 0.2;
}
@media only screen and (max-width: 1100px) {
  .hero__left {
    flex: 1;
  }
}
.hero__left--title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__left h1 {
  font-size: 2.4rem;
  font-family: "Buljirya";
  margin-right: 0.5rem;
}
@media only screen and (max-width: 1200px) {
  .hero__left h1 {
    font-size: 2rem;
  }
}
.hero__left h1 span {
  display: block;
  color: #004385;
}
.hero__left p {
  font-size: 1.6rem;
  font-family: "Nunito", sans-serif;
  color: #264653;
}
.hero__left p span {
  font-weight: 700;
}
.hero__left p:not(:last-child) {
  margin-bottom: 2.5rem;
}
.hero__left ul {
  margin-top: 2.1rem;
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  padding-left: 9.8rem;
}
.hero__left ul li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.hero__left--get-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.8rem;
}
.hero__left--get-app > * {
  margin-right: 4rem;
}
@media only screen and (max-width: 750px) {
  .hero__left--get-app {
    justify-content: space-around;
  }
  .hero__left--get-app > * {
    margin-right: 0;
  }
  .hero__left--get-app > img {
    display: none;
  }
  .hero__left--get-app a img {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .hero__left--get-app {
    flex-direction: column;
  }
  .hero__left--get-app a:not(:last-child) img {
    margin-bottom: 2rem;
  }
}
.hero__right {
  flex: 0.8;
}
.hero__right img {
  max-width: 100%;
}
@media only screen and (max-width: 1100px) {
  .hero__right {
    display: none;
  }
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7rem;
}
@media only screen and (max-width: 900px) {
  .section-title img {
    width: 5rem;
  }
}
.section-title h2 {
  position: relative;
  align-self: flex-end;
  margin-left: 1.2rem;
  font-size: 3.6rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 900px) {
  .section-title h2 {
    font-size: 2.4rem;
  }
}
.section-title h2::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 5rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #004385;
}
.section-title.reverse {
  flex-direction: row-reverse;
}
.section-title.reverse h2 {
  margin-left: 0;
  margin-right: 1.2rem;
}

.features {
  padding-top: 10rem;
}
.features__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}
@media only screen and (max-width: 800px) {
  .features__container {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.feature:not(:last-of-type) {
  border-right: 1px solid #004385;
}
@media only screen and (max-width: 800px) {
  .feature:not(:last-of-type) {
    border: 0;
    margin-bottom: 6rem;
  }
}
.feature p {
  font-size: 1.6rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  margin-top: 4.6rem;
  width: 50%;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .feature p {
    width: 100%;
  }
}

.how-it-works {
  padding-top: 10rem;
}
.how-it-works__place-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 1100px) {
  .how-it-works__place-order img {
    width: 60%;
    margin-bottom: 4.3rem;
  }
}
@media only screen and (max-width: 1100px) {
  .how-it-works__place-order {
    flex-direction: column;
  }
}
.how-it-works__place-order .place-order__description h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
}
.how-it-works__place-order ul {
  margin-top: 3.2rem;
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  margin-left: 4rem;
}
.how-it-works__place-order ul li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.how-it-works__fulfill-order {
  position: relative;
  background-image: url("../../assets/fulfill-order.png");
  width: 100%;
  height: 48.8rem;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 500px) {
  .how-it-works__fulfill-order {
    background-image: url("../../assets/fulfill-order 2.png");
    height: 47rem;
    background-repeat: no-repeat;
  }
}
.how-it-works__fulfill-order .fulfill-order__description {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 13rem;
}
@media only screen and (max-width: 900px) {
  .how-it-works__fulfill-order .fulfill-order__description {
    left: 10rem;
  }
}
@media only screen and (max-width: 650px) {
  .how-it-works__fulfill-order .fulfill-order__description {
    left: 5rem;
  }
}
@media only screen and (max-width: 500px) {
  .how-it-works__fulfill-order .fulfill-order__description {
    top: 3rem;
    transform: translateX(-50%);
    left: 40%;
  }
}
.how-it-works__fulfill-order .fulfill-order__description div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.how-it-works__fulfill-order .fulfill-order__description div img {
  width: 7rem;
}
.how-it-works__fulfill-order .fulfill-order__description h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  align-self: flex-end;
}
.how-it-works__fulfill-order ul {
  margin-top: 1.4rem;
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  margin-left: 8rem;
}
.how-it-works__fulfill-order ul li:not(:last-child) {
  margin-bottom: 1.2rem;
}

.accordion {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  border: 1px solid #004385;
  border-radius: 5px;
  cursor: pointer;
  background-color: #ffffff;
}
@media only screen and (max-width: 600px) {
  .accordion {
    max-width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .accordion {
    max-width: 100%;
  }
}
.accordion:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.accordion__content-box {
  position: relative;
  margin: 2.5rem 2rem;
  font-family: "Nunito", sans-serif;
}
.accordion__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.accordion__label span {
  margin-right: 1rem;
}
.accordion__label img {
  transition: transform 0.3s ease;
}
.accordion__content {
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 1.6rem;
  font-weight: 400;
}
.accordion__content-box.active .accordion__label > img {
  transform: rotateX(180deg);
}

.help {
  margin-top: 10rem;
}
.help p {
  font-size: 1.6rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  width: 100%;
  max-width: 80%;
  text-align: center;
  margin: 0 auto;
}

.footer {
  margin-top: 6.7rem;
  border-top: 2px solid #e0e0e0;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 750px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__left {
  flex: 1;
  border-right: 2px solid #e0e0e0;
  padding: 1.6rem 4rem;
}
@media only screen and (max-width: 750px) {
  .footer__left {
    border: 0;
  }
}
.footer__left .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}
.footer__left .logo h2 {
  font-size: 1.8rem;
  font-family: "Buljirya", sans-serif;
  color: #004385;
  margin-left: 1.6rem;
}
.footer__left p {
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  margin-bottom: 2.3rem;
}
.footer__left--get-app > * {
  margin-right: 4rem;
}
@media only screen and (max-width: 750px) {
  .footer__left--get-app img {
    width: 15rem;
    margin-bottom: 1.5rem;
  }
}
.footer__right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1.3;
  padding: 1.6rem 4rem;
  font-family: "Nunito", sans-serif;
}
@media only screen and (max-width: 750px) {
  .footer__right {
    flex-direction: column;
  }
}
.footer__right h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #004385;
  margin-bottom: 2rem;
}
.footer__right .privacy a,
.footer__right .contact a {
  display: block;
  margin-bottom: 2.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: inherit;
  color: #000000;
}
.footer__right .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__right .contact a span {
  margin-left: 1.4rem;
}
.phone_image {
  text-align: left;
  float:left;
}
.phone_text {
  text-align: left;
  float:left;
  display: block;
  margin-left: 1.4rem;
  margin-bottom: 2.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: inherit;
  color: #000000;
}
.footer__right .social {
  display: none;
}
.footer__right .social a:not(:last-of-type) {
  margin-right: 3rem;
}
.footer .copyright {
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  color: #264653;
  text-align: center;
  border-top: 2px solid #e0e0e0;
  padding: 3rem 0;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.6rem 4rem;
  flex: 1;
}

.place_holder {
  margin-top: 6.7rem;
}
.place_holder a {
  display: block;
  margin-bottom: 2.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: inherit;
}