/* =========================================================
   Delivery page-specific CSS
   Global reset, fonts, headings, container, buttons,
   images, header, nav, basket, and footer come from core.css.
   Load this file after core.css.
========================================================= */

.delivery-page {
  overflow: hidden;
}

.main-nav .nav-wrapper {
  border-bottom: 1px solid var(--border-color);
}

.delivery-info-area {
  padding: clamp(30px, 5vw, 60px) 0 clamp(70px, 8vw, 120px);
}

.delivery-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.delivery-hero h1 {
  margin-bottom: 28px;
  text-transform: uppercase;
}

.delivery-hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.delivery-hero-img img {
  width: auto;
  max-width: 160px;
}

.delivery-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  background-color: #fff;
  border: 2px dashed #f9ad4b;
  border-radius: 20px;
}

.delivery-info-block + .delivery-info-block {
  margin-top: clamp(34px, 4vw, 46px);
}

.delivery-info-title {
  margin-bottom: 14px;
  text-align: left;
  text-transform: uppercase;
}

.delivery-content p {
  margin: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .delivery-info-area {
    padding: 40px 0 50px;
  }

  .delivery-hero h1 {
    margin-bottom: 24px;
  }

  .delivery-hero-img {
    margin-bottom: 34px;
  }

  .delivery-hero-img img {
    max-width: 130px;
  }

  .delivery-content {
    padding: 28px 22px 36px;
  }

  .delivery-info-title {
    text-align: center;
  }

  .delivery-content p {
    text-align: center;
  }
}

@media screen and (max-width: 969px) {
  .header-bottom-sm {
    border-bottom: 1px solid var(--border-color);
  }
}