body {
  margin: 0;
  text-rendering: optimizeLegibility;
}

a {
  position: relative;
  color: #FFF;
  background-color: #032334;
  text-decoration: none;
  display: block;
  overflow: hidden;
  border: 1px solid #000;
  width: 300px;
  height: 250px;
  box-sizing: border-box;
}

a:hover .cta {
  background-color: white;
}

.logo {
  width: 99px;
  position: absolute;
  top: 18px;
  left: 23px;
}

.frames {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frames .frame {
  position: absolute;
  opacity: 0;
  width: 100%;
  text-align: center;
  transition: all 0.5s ease-out;
}

.frames .frame.in {
  opacity: 1;
}

.frames .frame.out {
  opacity: 0;
}

.frames .frame:nth-of-type(1), .frames .frame:nth-of-type(2) {
  transform: translateX(300px);
}

.frames .frame:nth-of-type(1).in, .frames .frame:nth-of-type(2).in {
  transform: translateX(0);
}

.frames .frame:nth-of-type(1) {
  top: 85px;
}

.frames .frame:nth-of-type(1).out {
  transform: translateX(-300px);
}

.frames .frame:nth-of-type(1) img {
  width: 214px;
}

.frames .frame:nth-of-type(2) {
  top: 107px;
}

.frames .frame:nth-of-type(2) img {
  width: 172px;
}

.frames .frame:nth-of-type(3) {
  top: 83px;
}

.frames .frame:nth-of-type(3) img {
  width: 194px;
}

.cta {
  position: absolute;
  top: 177px;
  left: 50%;
  transform: translateX(-50%);
  height: 27px;
  width: 115px;
  background-color: #0078c1;
  opacity: 0;
  transition: opacity 0.4s 0.5s ease-out, background-color 0.1s ease-out;
}

.cta.in {
  opacity: 1;
}

.cta img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cta img.visible {
  opacity: 1;
}
