.bold {
  font-weight: bold;
}
strong {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.font-primary {
  color: #004f7c;
}
.font-white {
  color: #ffffff;
}
.font-grey {
  color: #636363;
}
.font-12 {
  font-size: 12px;
}
.pointer {
  cursor: pointer;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.text-shadow {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
.slider {
  position: relative;
  overflow: hidden;
  height: 340px;
  width: 100%;
}
.slider__wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.slider__item-wrap {
  padding: 0 60px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.slider__item {
  background-position: center center;
  background-size: cover;
  background-color: rgba(0, 79, 124, 0.7);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  float: left;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.slider .arrow {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 2;
  width: 12px;
  height: 20px;
  cursor: pointer;
}
.slider .arrow--previous {
  left: 20px;
  background: url("../assets/images/icons/arrow-previous.svg");
}
.slider .arrow--next {
  right: 20px;
  background: url("../assets/images/icons/arrow-next.svg");
}
@media (max-width: 830px) {
  .slider__item-wrap {
    justify-content: flex-end;
    padding-bottom: 30px;
  }
}
