.useOfferBar {
  background-color: rgba(93, 65, 214, 0.96);
  padding: 30px;
  color: #fff;
}
.offerList {
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .offerList {
    margin: 0;
  }
}
.offerList::after {
  content: "";
  clear: both;
  display: table;
}
.offerList .offerListItem {
  width: calc(50% - 30px);
  margin: 15px;
  float: left;
  transition: all 200ms ease-in-out;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
@media (max-width: 767px) {
  .offerList .offerListItem {
    width: 100%;
    margin: 15px 0;
    float: none;
  }
}
.offerList .offerListItem:hover {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  /*transform: scale(1.02)*/
}
.offerList .offerListItem a {
  font-weight: bold;
}
.offerList .offerListItem .imageContainer {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  overflow: hidden;
}
.offerList .offerListItem .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 300ms;
}
.offerExtraImages {
  margin: 2em 0;
  margin-left: -1%;
  margin-right: -1%;
}
.offerExtraImages img {
  float: left;
  width: 31.333%;
  margin: 1%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}
.offerExtraImages img:nth-child(even) {
  transform: rotate(2deg);
}
.offerExtraImages img:nth-child(odd) {
  transform: rotate(-2deg);
}
.offerExtraImages::after {
  content: "";
  clear: both;
  display: table;
}
.header {
  position: relative;
  /*margin: -20px;*/
  margin-bottom: 20px;
  overflow: hidden;
}
.header .titleContainer {
  position: absolute;
  bottom: 20px;
  /*background-color: rgba(255,255,255,.3);*/
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 30px 20px;
  /*backdrop-filter: blur(5px);*/
}
.header .titleContainer *:first-child {
  margin-top: 0;
}
.header .titleContainer *:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .header .titleContainer {
    position: relative;
    background-color: #372C9E;
  }
}
.header .titleContainer h2,
.header .titleContainer h3 {
  color: #fff !important;
  font-size: 3em;
  font-weight: 200;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
@media (max-width: 576px) {
  .header .titleContainer h2,
  .header .titleContainer h3 {
    font-size: 2em;
    line-height: 1;
    margin-bottom: 0.5em;
  }
}
.header .titleContainer h2 {
  font-weight: bold;
}
.header .titleContainer h3 {
  font-size: 2em;
}
@media (max-width: 576px) {
  .header .titleContainer h3 {
    font-size: 1em;
  }
}
.header .primaryImage img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
/*# sourceMappingURL=offermod.css.map */