/* Media breakpoints
@media (min-width: 1300px) {}
@media (min-width: 992px) and (max-width: 1299px) {}

@media (min-width: 768px) and (max-width: 991px) {}

@media (min-width: 576px) and (max-width: 767px) {}
@media (max-width: 575px) {}
*/
.current {
  background: white;
  padding: .5rem .5rem 3rem;
}

.current__head {
  margin-bottom: 3rem;
}

.current__head--img {
  background: url('/dk/managed/current/imgs/layout/current-happenings.jpg') no-repeat;
  display: block;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.current .current__head--cap {
  color: white;
  font-family: 'roboto slab', sans-serif;
  font-size: 5rem;
  text-shadow: 1px 3px 10px black;
}

.current .current__header {
  background-color: white;
  border: 0;
  text-align: center;
}

.current .current__header--title {
  color: #be1920;
  font-family: 'roboto slab', sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
}

.current .current__header--subtitle {
  color: #343A40;
  font-family: 'roboto condensed bold', sans-serif;
  font-size: 1.5rem;
}

.current .current__body a {
  display: block;
  line-height: 1.5;
  color: black;
  text-align: center;
}

.current .current__body a:hover {
  text-decoration: underline;
  color: black;
}

.current .current__promos,
.current .current__rebates,
.current .current__events {
  background: white;
  border: 0;
}

/*********************/
/*Promos Card styles*/
/*********************/
.current__promos--img,
.current__rebates--img,
.current__events--img {
  margin: 1.5rem 0;
  min-height: 150px;
}

.current__promos--img {
  background: url('/dk/managed/current/imgs/layout/promos.png') no-repeat center;
  background: url('/dk/managed/current/imgs/layout/promos.svg') no-repeat center, linear-gradient(transparent, transparent);
}

.current__rebates--img {
  background: url('/dk/managed/current/imgs/layout/rebates.png') no-repeat center;
  background: url('/dk/managed/current/imgs/layout/rebates.svg') no-repeat center, linear-gradient(transparent, transparent);
}

.current__events--img {
  background: url('/dk/managed/current/imgs/layout/calendar.png') no-repeat center;
  background: url('/dk/managed/current/imgs/layout/calendar.svg') no-repeat center, linear-gradient(transparent, transparent);
}

/*********************/
/*Breakpoint media styles*/
/*********************/

@media (max-width: 1299px) {
  .current__head--img {
    height: 300px;
  }

  .current .current__header--title {
    font-size: 2.25rem;
  }

  .current__head {
    margin-bottom: 2rem;
  }
}

@media (max-width: 991px) {
  .current__head--img {
    height: 220px;
  }

  .current .current__head--cap {
    font-size: 3rem;
  }

  .current .current__body a {
    font-size: .875rem;
  }

  .current .current__header--subtitle {
    font-size: 1.25rem;
  }

  .current__head {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .current .current__head--cap {
    text-align: center;
  }

  .current .current__body a {
    font-size: 1rem;
  }

  .current__head--img {
    height: 170px;
  }

  .current__head {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 575px) {
  .current .current__head--cap {
    font-size: 2.5rem;
    text-align: center;
  }

  .current__head--img {
    height: 125px;
  }

  .current .current__header--title {
    font-size: 2.25rem;
  }
}

.current .current__body {
  display: flex;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .current .current__body {
    flex-direction: column;
  }

  .current__promos--img,
  .current__rebates--img,
  .current__events--img {
    margin: 1rem 0;
    min-height: 110px;
  }
}