.theme__featured section:nth-child(2n+2) {
  background-color: #d1effc;
  margin-top: 156px;
  margin-bottom: 5vw;
}
.theme__featured section:nth-child(2n+2) .floating-boat {
  background-image: url(../images/riverboat.svg);
  transform: rotate(5deg);
  background-size: contain;
  width: 100px;
  height: 56px;
  position: absolute;
  top: -125px;
  right: 410px;
}
.theme__featured section:nth-child(2n+2):before {
  content: "";
  width: 100%;
  height: 156px;
  left: 0;
  top: -156px;
  position: absolute;
  background-image: url(../images/wave-top.svg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme__featured section:nth-child(2n+2):after {
  content: "";
  width: 100%;
  height: 5vw;
  left: 0;
  top: 100%;
  position: absolute;
  background-image: url(../images/wave-bottom.svg?ver=1.3);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme__featured section:nth-child(4n+2) .floating-boat {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1) rotate(5deg);
  filter: FlipH;
  -ms-filter: "FlipH";
  left: 410px;
  right: auto;
}
.theme__featured section:nth-child(4n+2):before {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
@media print {
  .theme__featured section {
    background-color: white !important;
    margin: 0 !important;
    justify-content: center;
  }
  .theme__featured section .floating-boat {
    display: none;
  }
  .theme__featured section:after, .theme__featured section:before {
    display: none;
  }
}