:root {
  --primary-color: #0acf97;
  --secondary-color: #ff8b03;
  --dark-color: #120d0b;
  --gray-background: #f8f8f8;
  --dark-blue: #093f68;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
}

.standout {
  color: var(--primary-color);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px;
}
/* Page navigation */
.page-nav__header {
  min-height: 100vh;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-nav__header nav {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo {
  flex: 1;
}
.logo svg {
  margin-top: 2rem;
}
.nav-item__container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.nav-items li a {
  font-size: 16px;
  color: var(--dark-color);
  font-weight: 500;
}
.nav-items li a:hover {
  color: var(--primary-color);
}
.auth-buttons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 1.3rem;
}
.button {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 0.2rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
.input{
  padding: 1rem .8rem;
  border-radius: 4px;
  border: 1px solid transparent;
  background: transparent;
}
.signup {
  color: #fff;
  background: var(--dark-color);
}

.signup:hover {
  background: var(--primary-color);
}
.login {
  color: #fff;
  background: var(--primary-color);
}

.login:hover {
  background: var(--dark-color);
}

*[role="button"] {
  cursor: pointer;
}
.toggler {
  display: none;
}

/* -- Hero section -- */
.hero-wrapper {
  margin-top: 3rem;
  width: 100%;
}

.hero-wrapper .wrapper-content {
  display: flex;
  justify-content: space-between;
}
.wrapper-content .wrapper-text__container {
  padding-top: 3rem;
}
.wrapper-text__container .intro-text {
  font-weight: bold;
  color: var(--secondary-color);
  padding-bottom: 1rem;
}

.big-text {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--dark-blue);
  max-width: 425px;
}
.small-text {
  padding-top: 2rem;
  line-height: 21px;
  color: var(--dark-color);
  font-size: 16px;
  max-width: 400px;
  position: relative;
  line-height: 25px;
}
.small-text .dot {
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 25%;
}
.small-text .pizza-svg {
  position: absolute;
  top: 0;
  right: -20%;
}
.wrapper-text__container .search-wrapper {
  margin-top: 2rem;
  width: 373px;
}
.search-wrapper .inner {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  border-radius: 50px;
}
.inner input {
  display: block;
  padding: 0 1rem;
  height: 40px;
  width: calc(373px - 40px);
  font-size: 16px;
}
.inner input::placeholder {
  color: #093f686b;
}
.inner button {
  display: block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
}
.payment-section {
  margin: 2rem 0;
  width: 373px;
  text-align: center;
  padding-top: 2rem;
}

.head {
  font-size: 16px;
  font-weight: bold;
  color: #093f68;
}
.payment-options {
  display: flex;
  padding: 1.5rem 0;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.quotes{
  display: flex;
  gap: 2rem;
}
.quotes .quote{
border-left: 4px solid var(--secondary-color);
padding: 0 .5rem;
font-size: 13px;
}
.quote p{
  padding: .2rem 0;
}
.quote p:nth-child(2){
  color: var(--dark-blue);
  font-weight: bold;
}
/* --Hero section end-- */

/* Media query  */
@media (max-width: 1025px) {
  .page-nav__header,
  .search-wrapper,
  .payment-options {
    width: 100%;
  }
  .toggler {
    display: block;
  }
  .nav-item__container {
    display: none;
  }
  .nav-items {
    display: block;
  }
  .nav-items li {
    padding: 1rem 0;
  }
  .auth-buttons {
    display: block;
  }
  .auth-buttons a {
    display: block;
    margin: 1rem;
  }
  .display-nav {
    position: fixed;
    display: block;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0%;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px #cccccc;
    z-index: 900;
    background: #fff;
  }
}

/* How it works */
.how-we__work, .work-with__us, .location-wrapper {
  background: var(--gray-background);
  min-height: 400px;
}

.how-we__work .container .big-text,
.how-we__work .container .small-text,
.work-with__us .container .big-text,
.work-with__us .container .small-text,
.location-wrapper .container .big-text,
.location-wrapper .container .small-text
{
  text-align: center;
  margin: auto;
  padding: 1rem 0;
}
.how-we__work .you-container,.how-we__work .we-container {
  margin: 4rem 0;

}

.you-container .text, .we-container .text {
  text-align: center;
  font-weight: bold;
  padding: 4rem 0;
}
.how-we__work__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
}
.how-we__work__wrapper .how-we__work__content {
  text-align: center;
  min-height: 320px;
}
.how-we__work__content .title {
  color: var(--dark-blue);
  font-weight: bold;
}
.how-we__work__content .icon {
  padding-bottom: 1rem;
}
.how-we__work__content .small {
  padding-top: 1rem;
  line-height: 25px;
}

.separator{
  border-top: 2px solid var(--dark-blue);
}
/* end How it works */

/* work with use */

.work-with__us .wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  padding: 1.5rem .5rem;
}
.work-with__us .wrapper:nth-child(even) .icon-wrapper{
order: 2;
}
.work-with__us .wrapper .text-wrapper{
  padding: 1rem 0;
}
.work-with__us .wrapper .head-text{
  font-weight: bold;
  font-size: 1.5rem;
}
.work-with__us .wrapper .button-wrapper .button{
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.work-with__us .wrapper .button-wrapper .button:hover{
  color: #fff;
  background-color: var(--primary-color);
}
/* end work with us */

/* location */
.location-wrapper .small-text{
margin-bottom: 2rem !important;
}
.location-items{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.location-items .items{
  display: flex;
  align-items: center;
  margin: 1rem 0;
  padding: .6rem;
  font-weight: bold;
  color: var(--dark-blue);
}
.location-items .items .item-name{
  margin-left: .8rem;
}
.search-location{
  margin: 1rem auto;
  
}
.search-location .form{
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-location .form input{
  /* flex: 1; */
  border-color:#093f686b;
  font-size: 15px;
  min-width: 380px;
}
.search-location .form input::placeholder{
  color: #093f686b;
  font-weight: bold;
}
.search-location .form button{
  min-width: 120px;
  margin-left: 1rem;
  background: var(--dark-blue);
  color: #fff;
}
.search-location .form button:hover{
color: var(--dark-blue);
  background: transparent;
  border: 1px solid var(--dark-blue);
 
}
.search-location .search-text{
  font-weight: 500;
  padding: 1rem 0;
  text-align: center;
}
/* end location */


/* footer */
.footer-container{
  /* min-height: 500px; */
  background: var(--dark-blue);
}
.subscribe-section{
  padding: 2rem 0;
}
.subscribe-section .form{
  max-width: 500px;
  display: flex;
  gap: 1rem;
  margin: 0 auto;
}
.subscribe-section .form .input{
  min-width: 320px;
  border: 1px solid var(--primary-color);
  color:#ffffff80 ;
}

.subscribe-section .form .input::placeholder{
  color: #ffffff80;
}
.subscribe-section .form .button{
  min-width: 180px;
  background: var(--primary-color);
  color: #fff;
}

.subscribe-section .form .button:hover{
  border:1px solid var(--primary-color);
  color: #fff;
  background-color: transparent;
}

.footer-container .other a{
  color: #fff;
  font-size: 14px;
  display: block;
  padding: .5rem 0;
  margin: .1rem 0;
}
.footer-container .other{
  margin:3rem 0;
  display: flex;
}
.footer-container .other .social{
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.footer-container .other .social .head-text p{
  font-size: 1.3rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: bold;
}
.footer-container  .outro{
  display: flex;
  align-items: center;
  gap: 1rem;

justify-content: center;}
.footer-container  .outro span{

  color: #fff;
  font-size: 14px;
  display: block;
  padding:.5rem 0;
}
/* end footer */


@media (max-width: 767px) {
  .big-text {
    font-size: 1.5rem;
  }
  .container {
   width: 95%;
  }
  .page-nav__header,
  .search-wrapper,
  .payment-options {
    width: 100% !important;
  }

  .hero-wrapper {
    margin-top: 0;
    display: block;
  }
  .small-text .pizza-svg {
    display: none;
  }

  .hero-wrapper .wrapper-content {
    display: block;
  }
  .wrapper-illustration__container {
    display: none;
  }
  .wrapper-text__container .cta-button,
  .wrapper-text__container .small-text {
    width: 100%;
  }
  .how-we__work__wrapper {
    display: block;
  }
  .work-with__us .wrapper{
    display: block;
    text-align: center;
  }
  .work-with__us .wrapper:nth-child(even) .icon-wrapper{
    order: 1;
    }
  .work-with__us .wrapper .small-text{
    text-align: center !important;
  }
  .location-items{
    grid-template-columns: repeat(2, 1fr);
  }
  .search-location .form{
    display: block;
    width: 100%;
  }
  .search-location .form input{
  min-width:100%;
  margin: 1rem 0;
  }
  .search-location .form button{
    min-width: 100%;
    margin-left: 0;

  }
  .subscribe-section .form{
    display: block;
  }
  .subscribe-section .form .input{
    min-width: 100%;
  }

  .subscribe-section .form .button{
    min-width:100%;
   margin-top: 1rem;
  }

  .footer-container .other{
    display: block;
  }
  .footer-container .other .logo{
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer-container .other .social{
   display: block;
   text-align: center;
  }
}
@media(max-width:400px){
  .location-items{
display: block;
  }
  .location-items .items{
    justify-content: center;
  }
}