.fixed-background-image {
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
}

@-webkit-keyframes crossFade {
  0% {
    opacity: 1;
  }
  18.75% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  93.75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes crossFade {
  0% {
    opacity: 1;
  }
  18.75% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  93.75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.crossfade-wrapper div:nth-of-type(1) {
  background-image: url(bg4.jpg);
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.crossfade-wrapper div:nth-of-type(2) {
  background-image: url(bg3.jpg);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.crossfade-wrapper div:nth-of-type(3) {
  background-image: url(bg2.jpg);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.crossfade-wrapper div:nth-of-type(4) {
  background-image: url(bg1.jpg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.crossfade-animation {
  -webkit-animation: crossFade 4s infinite;
  animation: crossFade 4s infinite;
}

.container {
  width: 300px;
  height: 600px;
  overflow: hidden;
  font-family: arial, helvetica, sans-serif;
}

.small {
  position: absolute;
  color: white;
  transform: rotate(-90deg);
  left: -118px;
  top: 390px;
  font-size: 11px;
  z-index: 10;
}

.show3 {
  display: inline-block;
  position: absolute;
  top: 460px;
  right: 25px;
  color: white;
  text-align: right;
}

.show4 {
  width: 300px;
  text-align: center;
  position: absolute;
  top: 520px;
}

.tag1,
.tag2,
.tag3,
.tag4 {
  padding: 4px 4px 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tag1 {
  background: #183962;
}

.tag2 {
  background: #E7AF12;
}

.tag3 {
  background: #821A17;
}

.tag4 {
  background: #045253;
}

.lead {
  font-size: 13px;
  font-weight: 500;
  margin-top: 9px;
  margin-bottom: 4px;
}

.baseline {
  margin-top: 0;
  margin-bottom: 0;
  color: #055B7D;
  font-size: 9px;
}

.show4 {
  width: 100%;
  display: flex;
  margin-top: 50px;
  padding-left: 25px;
  padding-right: 25px;
  align-items: center;
}

.show4 p:nth-of-type(2) {
  width: 400px;
}