@font-face {
  font-family: proxima-nova-a-regular;
  src: url(./Fonts/ProximaNova-Regular.otf);
  font-weight: normal;
}
@font-face {
  font-family: proxima-nova-a-bold;
  src: url(./Fonts/ProximaNova-Semibold.otf);
  font-weight: bold;
}
@font-face {
  font-family: proxima-nova-a--cond-bold;
  src: url(./Fonts/ProximaNovaCond-Semibold.otf);
  font-weight: bold;
}
@font-face {
  font-family: proxima-nova-a--cond-regular;
  src: url(./Fonts/ProximaNovaCond-Regular.otf);
  font-weight: normal;
}
@font-face {
  font-family: proxima-nova-a-light;
  src: url(./Fonts/ProximaNova-Light.otf);
  font-weight: normal;
}
body {
  margin: 0;
  outline: none;
  font-family: proxima-nova-a-regular;
  font-size: 18px;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}

.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 20px;
}

.wrapper {
  border: 1.8px solid rgb(220, 229, 231);
  border-radius: 6px;
  margin: 10px 0;
}
.offers .offer {
  display: flex;
  padding: 15px 25px;
}
.right-side {
  padding-left: 15px;
  width: 50%;
}

.offer-image {
  width: 50%;
}
.offer-image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

.offer-text p {
  font-family: proxima-nova-a-bold, sans-serif;
  font-size: 1.4em;
  line-height: normal;
  margin: 0;
  margin-top: 25px;
}

.offer-type {
  font-family: proxima-nova-a--cond-regular;
  line-height: 1.2;
  justify-self: center;
  display: flex;
  margin: 5px 0;
}
.andPackage {
  margin-bottom: 7px;
}
.offer-type p {
  margin: 0;
}
.gold {
  color: #f9a526;
  font-family: proxima-nova-a--cond-bold;
  font-size: 15px;
}
.type {
  font-size: 15px;
  font-family: proxima-nova-a-regular;
}
.type::after {
  content: "-";
  visibility: hidden;
}
.summary p {
  font-family: proxima-nova-a-light;
  margin: 0;
  overflow: hidden;
  /* display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; */
  position: relative;
  transition: 0.5s;
  max-height: 90px;
}
.summary.showAll p {
  /* -webkit-line-clamp: unset; */
  max-height: 30rem;
}
.red-border {
  display: flex;
  margin-bottom: 5px;
  border-bottom: 2px solid red;
}
.red-border:hover {
  border: none;
  margin-bottom: 7px;
}
.show-more-helper {
  font-family: proxima-nova-a--cond-regular;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: red;
  margin-top: -10px;
  margin-bottom: 10px;
}
.show-more-helper span {
  margin-top: 2px;
}
.show-more-helper p {
  text-align: center;
  margin: 0;
  margin-top: 5px;
}
.expanded-container {
  padding: 15px;
}
.expanded {
  display: block;
}
.top {
  padding-bottom: 1.7em;
  border-bottom: 1px solid gray;
}
.video-container a {
  display: block;
  text-align: center;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: rgb(95, 7, 7);
}
.fancybox-button:hover {
  color: rgb(95, 7, 7);
}
.fancybox-button {
  background: #fff;
}
.fancybox-container .fancybox-is-open {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.content {
  display: flex;
  font-family: proxima-nova-a-light;
}
.content div {
  display: flex;
}
.content img {
  width: 20px;
  margin: 0 10px;
  align-self: flex-start;
  margin-top: 5px;
}
@media (max-width: 520px) {
  .content {
    flex-direction: column;
  }
  .content div {
    width: 100%;
  }
  .video-container {
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  .membersHeader {
    overflow: hidden;
  }
  .membersHeader img {
    max-width: none;
    width: 150%;
    margin-left: -24%;
  }
  body {
    font-size: 16px;
  }
  .summary p{
    max-height: 80px;
  }
}
@media (max-width: 680px) {
  body {
    font-size: 14px;
  }
  .summary p{
    max-height: 70px;
  }
  .show-more-helper {
    margin-top: -15px;
  }
  .offer-image {
    padding: 10px;
  }
  .offer-text span {
    width: 50px;
  }
  .offer-text p {
    font-size: 1.3em;
    margin-top: 10px;
  }
  .show-more-helper {
    font-size: 1.25em;
  }
}

@media (max-width: 560px) {
  .offer-image {
    padding: 5px;
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .offer-type {
    margin-bottom: 15px;
  }
  .offers .offer {
    display: block;
  }
  .offer-image {
    width: 100%;
  }
  .show-more-helper p {
    margin-top: 15px;
  }
  .right-side {
    width: 100%;
    padding: 0;
  }
  .video-container video {
    max-height: 200px;
  }
  .offer-text p {
    margin-top: 5px;
  }
}

.expanded {
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
}

.active {
  max-height: 50rem;
}
.less-or-more::after {
  content: "more";
}
span.less-or-more.less::after {
  content: "less";
}
