.featured {
    padding-top: 32px;
    padding-bottom: 52px;
    width: 100%;
    background-color: #F6F6F6;
    position: relative;
    margin-bottom: 25px;
}

.featured__wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: baseline;
    padding-left: 16px;
}

.featured__item {
    display: none;
    flex-flow: row nowrap;
}

.featured__item-img {
    width: 379px;
}

.featured__item-active {
    display: flex;
}

.featured__item-label {
    font-family: "Andes";
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #787878;
    margin-bottom: 16px;
}

.featured__item-title a {
    font-family: "Andes";
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #2F879F;
    margin-bottom: 8px;
}

.featured__item-body {
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.featured__nav {
    padding: 6px 8px;
    display: block;
    height: 12px;
    width: 8px;
    background-color: #ffffff;
    position: absolute;
    border-radius: 2px;
    top: calc(50% - 12px);
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

.featured__nav img {
    display: block;
    height: 12px;
}

.featured__nav-left {
    left: 24px;
}

.featured__nav-right {
    right: 24px;
    transform: rotate(180deg);
}

.featured__dots {
    display: flex;
    flex-flow: row nowrap;
    position: absolute;
    bottom: 24px;
}

.featured__dots-item {
    display: block;
    width: 16px;
    height: 4px;
    border-radius: 2px;
    margin-right: 4px;
    background-color: #2F879F;
    opacity: .6;
}

.featured__dots-active {
    background-color: #2F879F;
    opacity: 1;
}

@media screen and (max-width: 768px) {
  .featured__item-active {
    display: flex;
    flex-direction: column;
  }
  .featured__item-img {
    margin-bottom: 10px;
  }
  .featured__item-img, .featured__item-img img {
    width: 100%;
  }
  .featured__wrapper {
    padding-left: 0;
  }
  .featured__nav-right, .featured__nav-left {
      top: calc( 100% - 40px );
  }
  .featured__dots {
    width: 100%;
    justify-content: center;
    left: 0;
  }
}
