#pg-delivery {
  background-color: #f5ebdc;
  color: #502314;
  /* height: 60vh; */
}

.section-main-delivery {
  max-width: 500px;
  padding-top: 50px;
}


.main-delivery-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em; 
  grid-template-rows: repeat(3, auto);
  grid-template-areas: 
      "title title"
      "glovo uber"
      "bolt ."
      "order order";
}
.main-delivery-wrapper div {
  /* padding: 1em; */
}
.main-delivery-title {
  grid-area: title;
  justify-self: center;
  color: #502314;
}
.main-delivery-title h1 {
  font-family: Flame-Bold;
  font-size: 2em;
  padding-bottom: 0.5em;
  text-align: center;
}
.main-delivery-title p {
  font-family: Flame-Sans;
  font-size: 1em;
  padding-bottom: 1em;
}
.main-delivery-glovo {
  grid-area: glovo;
  justify-self: center;
}
.main-delivery-jumia {
  grid-area: jumia;
  justify-self: center;
}
.main-delivery-bolt {
    grid-area: bolt;
    justify-self: center;
}
.main-delivery-uber {
    grid-area: uber;
    justify-self: center;
}
.main-delivery-btn-order {
  grid-area: order;
  justify-self: center;
  display: grid;
  padding: 1em 2em;
  width: 75%;
}
.main-delivery-btn-order a {
  color: #f5ebdc;
  background-color: #d62300;
  text-decoration: none;
  text-align: center;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}


.main-delivery-glovo, .main-delivery-jumia, .main-delivery-bolt, .main-delivery-uber {
  display: grid;
}
.main-delivery-glovo span, .main-delivery-jumia span, .main-delivery-bolt, .main-delivery-uber span {
  font-family: Flame-Sans;
  padding-top: 5px;
  text-align: center;
}
.main-delivery-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  box-shadow: 0 2px 4px 0 rgb(44 44 49 / 10%);
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #fff;
  cursor: pointer;
}
.main-delivery-pill.active {
  border: 2px solid #d62300;
}

.main-delivery-pill img {
  width: 100px;
  height: auto;
}