:root {
  --dark-blue: #2b296d;
  --white: white;
  --gold: #d1be83;
  --light-blue: #00b1ea;
  --black: black;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.page-wrapper {
  color: #fff;
  font-family: bebas-neue-pro-expanded, sans-serif;
}

.hero {
  text-align: center;
  background-color: #000;
  background-image: radial-gradient(circle at 50% 100%, #2b296d, #000);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.heading {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: bebas-neue-pro-expanded, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 72px;
}

.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-top: 40px;
  display: grid;
}

.div-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--dark-blue);
  color: var(--white);
  border-bottom: 1px solid #ffffff36;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
}

.div-block.ver {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
}

.dac-logo {
  width: 100px;
}

.dac-logo.small {
  width: auto;
  max-height: 48px;
}

.text-block {
  color: #d1be82;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 18px;
}

.text-block.special {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 28px;
}

.flex-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 20px;
}

.flex-block.centre {
  flex-direction: row;
  align-items: center;
}

.text-block-2 {
  font-family: bebas-neue-pro, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}

.text-block-3 {
  font-family: bebas-neue-pro-expanded, sans-serif;
  line-height: 24px;
}

.text-block-4 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: bebas-neue-pro-semiexpanded, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 48px;
}

.image {
  width: 230px;
  margin-bottom: 10px;
}

.button {
  background-color: var(--gold);
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
}

.button:hover {
  background-color: #e5d6a4;
}

.button.hide {
  display: none;
}

.image-2 {
  width: 300px;
  margin-top: -45px;
}

.div-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  display: flex;
}

.image-3 {
  width: 380px;
  margin-bottom: 10px;
}

.date {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 28px;
}

.date.reduce {
  text-align: center;
  letter-spacing: 3px;
  font-size: 20px;
}

.div-block-3 {
  flex: 1;
}

.navbar {
  background-color: #fff;
  border-radius: 30px;
  width: 98%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: 1% 0% auto;
  box-shadow: 0 5px 10px 5px #0003;
}

.nav-container {
  width: 100%;
  max-width: none;
}

.navlink {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
}

.navlink:hover {
  color: #d1be83;
}

.navlink.w--current {
  color: var(--light-blue);
}

.navlink.reg {
  background-color: #d1be83;
  border-radius: 25px;
  margin: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navlink.reg:hover {
  color: #000;
  background-color: #e5d6a4;
}

.section {
  border-top: 1px solid var(--dark-blue);
  color: #000;
  padding-top: 65px;
  padding-bottom: 65px;
  font-size: 16px;
  line-height: 22px;
}

.section.hide {
  display: none;
}

.dbrand {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--dark-blue);
  text-transform: uppercase;
  align-items: center;
  width: 420px;
  padding: 6px 6px 6px 20px;
  font-size: 28px;
  display: flex;
}

.dbrand.w--current {
  color: var(--dark-blue);
  width: 420px;
}

.section-head {
  color: var(--dark-blue);
  text-transform: uppercase;
  font-family: bebas-neue-pro, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 52px;
}

.heading-3 {
  color: var(--light-blue);
  text-transform: uppercase;
  margin-top: 0;
}

.div-block-4 {
  border: 2px solid #000;
  padding: 10px;
}

.flex-block-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.text-span {
  color: var(--light-blue);
}

.div-block-5 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.div-block-6 {
  background-color: var(--dark-blue);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  display: flex;
}

.div-block-6.hide {
  display: none;
}

.line {
  background-color: var(--gold);
  width: 100px;
  height: 4px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-block-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-5 {
  color: #ffffffba;
  font-size: 12px;
  line-height: 16px;
}

.heading-4 {
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
}

.footer {
  background-color: #2e3a41;
  padding-top: 57px;
  padding-bottom: 57px;
}

.div-block-8 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: flex-end;
  display: flex;
}

.rw {
  width: 70px;
}

.image-4 {
  width: 80px;
}

.div-block-9 {
  justify-content: space-between;
  display: flex;
}

.supervalu {
  width: 300px;
}

.supervalu.reduce {
  width: 180px;
}

.heading-5 {
  margin-top: 10px;
}

.table {
  border-top: 2px solid #000;
  width: 100%;
  margin-bottom: 20px;
}

.row {
  border-bottom: 1px solid #d6d6d6;
  display: flex;
}

.item {
  text-align: right;
  width: 33%;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.item.right {
  text-align: left;
  border-left: 1px solid #e6e6e6;
  flex: 1;
  padding-left: 10px;
  font-weight: 400;
}

.info-flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-top: 1px solid #d8d8d8;
  padding-top: 35px;
  padding-bottom: 35px;
}

.header-side {
  text-align: right;
  width: 400px;
}

.info-content {
  flex: 1;
}

.gap-top {
  margin-top: 60px;
}

.more-info {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
}

.comer {
  width: 220px;
}

.comer.small {
  width: 180px;
}

@media screen and (max-width: 991px) {
  .div-block {
    flex-direction: column;
  }

  .dbrand, .dbrand.w--current {
    width: 100px;
  }

  .flex-block-2 {
    flex-direction: column;
  }

  .text-block-6 {
    display: none;
  }

  .header-side {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding: 20px;
  }

  .menu-button {
    background-color: var(--dark-blue);
    border-radius: 50%;
    margin: 5px;
    padding: 15px;
  }

  .menu-button.w--open {
    background-color: var(--gold);
  }

  .nav-menu {
    background-color: #fff;
    border-radius: 30px;
  }

  .div-block-10 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 20px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .flex-block {
    text-align: center;
    flex-direction: column;
  }

  .button {
    order: 1;
  }

  .image-2 {
    margin-top: 0;
  }

  .div-block-2 {
    flex-direction: column;
    align-items: center;
  }

  .navbar, .div-block-6 {
    width: 95%;
  }

  .div-block-8 {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }

  .div-block-9 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item {
    width: 25%;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 4px;
    font-family: Oswald, sans-serif;
    font-size: 12px;
    font-weight: 400;
  }

  .info-flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .header-side {
    text-align: left;
    width: 100%;
  }
}

#w-node-_1e9c5dea-b616-6c2b-ad9a-51e3e1cdd679-9347ab97 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1e9c5dea-b616-6c2b-ad9a-51e3e1cdd68d-9347ab97, #w-node-ec9028d2-c0c0-c6a8-79be-94a203b473d0-9347ab97, #w-node-_1e9c5dea-b616-6c2b-ad9a-51e3e1cdd69a-9347ab97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_1e9c5dea-b616-6c2b-ad9a-51e3e1cdd679-9347ab97 {
    grid-column: span 1 / span 1;
  }
}


