/******************/
/* Loader */
/******************/

/* .loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
}

.loader img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #514e61;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 8rem;
  width: 100%;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  color: #fff;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #66b1ef;
}

.main-nav-link::after {
  content: none;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #075797;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #075797;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #514e61;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}
/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background: linear-gradient(
    250.59deg,
    #322c38 0%,
    #514e61 28.53%,
    #1c2137 75.52%
  );
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #fff;
}

.hero-text-box h3 {
  color: #fff;
  margin: 0 0 35px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.h3-span {
  padding: 0.8rem 0.8rem 0.8rem 0.8rem;
  border-radius: 0.5rem;
  background: #075797;
  color: #fff;
}
.one {
  display: inline-block;
  margin-right: 15px;
  height: 32px;
  padding: 0 15px;
  line-height: 32px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 5px;
  background: #075797;
  color: #fff;
}
.two {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #075797;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.45s ease;
  text-decoration: none;
}
.btn:hover {
  transform: scale(0.9);
}
.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-left: 35px;
  text-decoration: none;
}
.btn2 span i {
  height: 55px;
  width: 55px;
  background: #075797;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.45s ease;
  text-decoration: none;
}
.btn2 span i:hover {
  transform: scale(1.1) translateY(5px);
}
.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
  transform: translateY(-50%);
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.delivered-text span {
  color: #075797;
  font-weight: 700;
}

/**************************/
/* Socials*/
/**************************/

/**************************/
/* Socials*/
/**************************/

.social-icons {
  position: absolute;
  top: 60%;
  padding: 4rem;
  border-bottom: none;
  margin-top: 5rem;
}
.social-icons i {
  display: block;
  margin: 25px 0;
  color: #fff;
  text-decoration: none;
  list-style: none;
  font-size: 25px;
  transition: all 0.6s;
  text-decoration-color: transparent;
  border-bottom: none;
}
.social-icons i:hover {
  transform: rotate3d(0, 0, 1, 360deg);
}

.scroll-btn {
  position: absolute;
  bottom: 7%;
  left: 9%;
}
.scroll-btn a {
  font-size: 15px;
  color: #fff;
}

.bx .social-icons a {
  text-decoration: none !important; /* Remove underline */
}

/**************************/
/* ABOUT SECTION */
/**************************/

.about {
  background: linear-gradient(
    250.59deg,
    #322c38 0%,
    #514e61 28.53%,
    #1c2137 75.52%
  );
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 2.8rem 2.8rem 7.6rem 2.8rem;
}

.about-img img {
  max-width: 70rem;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
}
.about-text h2 {
  font-size: 4.4rem;
  line-height: 1;
  color: #66b1ef;
}
.about-text h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ebeaeb;

  line-height: 1.7;
  margin: 15px 0 30px;
}
.about-text p {
  color: #fff;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  justify-content: center;
  align-items: center;
}

/**************************/
/* QUOTE SECTION */
/**************************/

/*#075797; */

/* after #66b1ef; */

.section-quote {
  padding: 2.8rem 2.8rem 7.6rem 2.8rem;
  background-color: #514e61;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #075797;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 80%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 80%;

  background-color: #66b1ef;
  z-index: -2;
}

.step-img-box::after {
  width: 65%;
  padding-bottom: 65%;
  background-color: #075797;
  z-index: -1;
}

.step-img {
  width: 80%;
  height: auto;
  /* z-index: 10; */
}

/*************************/
/* QUOTES*/
/**************************/

.quote-container {
  width: fit-content;
  max-width: 130em;
  padding: 3.8rem 3.8rem;
  border-radius: 10px;
  line-height: 1.8;
  background: linear-gradient(
    250.59deg,
    #322c38 0%,
    #514e61 28.53%,
    #1c2137 75.52%
  );
  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.quote-text {
  font-size: 3rem;
  line-height: 1.8;

  font-weight: 500;
}

.long-quote {
  font-size: 2.3rem;
  font-weight: 400;
}

.fa-quote-left {
  font-size: 4rem;
}

.quote-author {
  margin-top: 15px;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: "Young Serif", serif;
  font-style: italic;
}

.button-container {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

button {
  cursor: pointer;
  font-size: 1.2rem;
  height: 2.5rem;
  border: none;
  border-radius: 10px;
  color: #fff;
  background: #333;
  outline: none;
  padding: 0.5rem 1.8rem;
  box-shadow: 0 0.3rem rgba(121, 121, 121, 0.65);
}

button:hover {
  filter: brightness(110%);
}

button:active {
  transform: translate(0, 0.3rem);
  box-shadow: 0 0.1rem rgba(255, 255, 255, 0.65);
}

.twitter-button:hover {
  color: #38a1f3;
}

.fa-twitter {
  font-size: 1.5rem;
}

.fa-github {
  font-size: 2.5rem;
}
.fa-linkedin {
  font-size: 2.5rem;
}
.fa-link {
  font-size: 2.5rem;
}

/*************************************/
/*FOOTER SECTION*/
/*************************************/

.footer {
  background-color: #514e61;
  padding: 12.8rem 0;
  color: #fff;
  border-top: 1px solid #514e61;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
  width: 8rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: auto;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:link,
.footer-link:visited {
  color: #ffe;
}

/* Loader*/

/* Media Query : Tablet or Smaller*/
/*@media screen and (max-width: 1000px) {
  .quote-container {
    margin: auto 10px;
  }
  .quote-text {
    font-size: 2.5rem;
  }
} */

/* Media Query: Mobile or Smaller */
/*@media screen and (max-width: 600px) {
  .quote-container {
    margin: auto 15px;
    padding: 20px 15px;
  }

  .quote-text {
    font-size: 1.5rem;
  }

  .fa-quote-left {
    font-size: 3rem;
  }

  .quote-author {
    font-size: 0.95rem;
  }

  .long-quote {
    font-size: 1.3rem;
  }

  button {
    font-size: 1rem;
  }
} */
