
@font-face {
  font-family: Gotham;
  src: url(fonts/Gotham-Light.otf);
  font-weight: 300;
}

@font-face {
  font-family: Gotham;
  src: url(fonts/Gotham-Book.otf);
  font-weight: 400;
}

@font-face {
  font-family: Gotham;
  src: url(fonts/Gotham-Medium.otf);
  font-weight: 500;
}

@font-face {
  font-family: Gotham;
  src: url(fonts/Gotham-Bold.otf);
  font-weight: bold;
}


* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

html, body {
  border: 0;
  font-size: 16px;
  line-height: 23px;
  font-family: Gotham, sans-serif, arial, Helvetica;
  color: #002554;
  background-color: #fff;
  height: 100%;
}

body.ppshown {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #002554;
  margin: 0;
  line-height: 1;
  word-wrap: break-word;
}

h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #002554;
  text-decoration: none;
}

.valign-center {
  align-items: center !important;
}

.valign-bottom {
  align-items: flex-end !important;
}


/* Button */

.cc-btn, .cc-btn:visited {
  display: block;
  background-color: #059da7;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  padding: 16px 32px;
  border: 0 none;
  border-radius: 26px;
  max-width: 260px;
  cursor: pointer;
  outline: none;
  transition: background-color .15s linear;
  user-select: none;
}

.cc-btn:active, .cc-btn:focus {
  color: #fff;
}

.cc-btn:hover {
  color: #fff;
  background-color: #01636a;
}


/* Header */

header {
  min-height: 100vh;
  background-image: url(img/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  word-break: break-word;
}

header::after {
  content: " ";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 1;
}

header video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

header .container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

header .container:last-child {
  flex: 1 1 auto;
}

header .nav-holder {
  height: 60px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .logo {
  max-width: 110px;
}

header .logo img {
  display: block;
  width: 136px;
  max-width: 100%;
}

header nav {
  margin-left: 24px;
  white-space: nowrap;
}

header nav a, header nav a:hover, header nav a:active, header nav a:focus, header nav a:visited, header nav span {
  margin: 0 5px;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

header nav span {
  font-weight: bold;
}

header .content {
  text-align: center;
  padding: 90px 24px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.89px;
  margin: 16px 0 32px;
  flex: 1 1 auto;
}

header h3 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}

header .cta .cc-btn {
  font-weight: 500;
  display: inline-block;
  min-width: 156px;
}

header .cta {
  text-align: center;
  margin-bottom: 90px;
}

header .offer {
  font-size: 14px;
  line-height: 1.29;
  text-align: center;
  background-color: #fff;
  padding: 6px 24px;
  min-height: 24px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

header .offer > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .offer .title strong {
  font-weight: 500;
}

header .offer .tooltip-ref {
  position: relative;
}

header .offer .tooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 12px;
}

header .offer .tooltip .tticon {
  cursor: pointer;
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  background-image: url(img/icon-info.svg);
  background-repeat: no-repeat;
  background-position: center;
  order: 1;
  -webkit-tap-highlight-color: transparent;
}

header .offer .tooltip .ttbox {
  display: block;
  visibility: hidden;
  color: #002554;
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 1.25;
  text-align: center;
  padding: 12px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  max-width: 450px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity .25s ease-out;
  z-index: -1;
}

header .offer .tooltip .ttbox strong {
  font-weight: 500;
}

header .offer .tooltip .tticon.active {
  background-image: url(img/icon-info-blue.svg);
}

header .offer .tooltip .tticon.active + .ttbox {
  visibility: visible;
  opacity: 1;
  z-index: 20;
}

header .offer.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform .25s ease-out;
}

header .offer.sticky.show {
  transform: translateY(0);
}

header .offer.sticky .tooltip .ttbox {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}


/* Main */

main {
  position: relative;
  display: block;
}

main img {
  display: block;
  max-width: 100%;
}

section h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

section h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.45px;
}

section .info {
  padding: 0 24px;
  margin: 60px 0;
}

section .info .desc {
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 30px;
}

section#benefits {
  order: 1;
}

section#benefits .header {
  margin: 42px 0;
  display: flex;
  justify-content: center;
}

section#benefits .header span {
  font-size: 20px;
  line-height: 1;
  margin: 0 16px;
  opacity: 0.5;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section#benefits .header span.active {
  font-weight: bold;
  text-decoration: underline;
  opacity: 1;
}

section#benefits .holder {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
}

section#benefits .holder > div {
  display: flex;
  flex-direction: row;
  position: relative;
  left: 0;
  transition: left ease-out .3s;
}

section#benefits .tab {
  flex: 0 0 100%;
  max-height: 900px;
  max-width: 100%;
  opacity: 0;
  transition: all linear .3s;
}

section#benefits .tab.active,
section#benefits .tab.tns-slide-active {
  max-height: 7000px;
  opacity: 1;
}

section#benefits .tab .content {
  padding: 0 24px;
  overflow: hidden;
}

section#benefits .tab .img {
  margin: 0 -24px;
  position: relative;
  overflow: hidden;
  height: 250px;
}

section#benefits .tab .img img {
  max-width: 125%;
}

section#benefits .tab .img > div,
section#benefits .tab .img > div:after {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin: 0 -70px;
  padding: 0 24px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  background-color: #fff;
  overflow: hidden;
}

section#benefits .tab .img > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}

section#benefits .tab .img > div:after {
  content: " ";
  height: 440px;
  top: 175px;
  z-index: 2;
}

section#benefits .tab .items {
  font-size: 18px;
  line-height: 1.45;
  margin-top: 80px;
}

section#benefits .tab .item {
  margin-top: 30px;
}

section#benefits .tab .more a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-align: center;
  color: #059da7;
  margin-top: 16px;
  padding: 9px 26px;
  border-radius: 25px;
  border: solid 2px #059da7;
  background-color: #fff;
  outline: none;
  transition: all .15s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section#benefits .tab .more a:hover {
  color: #fff;
  background-color: #059da7;
  border: solid 2px #059da7;
}

section#benefits .ppmore {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  z-index: 10;
}

section#benefits .ppmore.show {
  opacity: 1;
  top: 0;
  bottom: 0;
}

section#benefits .ppmore .ppclose {
  font-size: 45px;
  color: #fff;
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #059da7;
  height: 52px;
  width: 52px;
  overflow: hidden;
  border-radius: 28px;
  z-index: 2;
  outline: none;
  transition: background-color .15s linear;
  user-select: none;
}

section#benefits .ppmore .ppclose:hover {
  background-color: #01636a;
}

section#benefits .ppmore .container > div > div {
  margin: 12px;
  background-color: #fff;
  box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

section#benefits .ppmore .items > div {
  display: none;
}

section#benefits .ppmore .items > .active {
  display: block;
}

section#benefits .ppmore .img {
  height: 190px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

section#benefits .ppmore .img img {
  transition: opacity linear 0.2s;
}

section#benefits .ppmore .content {
  padding: 20px 24px 64px;
}

section#benefits .ppmore .imgs {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

section#benefits .ppmore .imgs > div {
  width: 77px;
  margin: 0 10px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

section#benefits .ppmore h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.31;
  letter-spacing: -0.49px;
}

section#benefits .ppmore .details .desc {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.41px;
}

section#club {
  background-color: #f7f7f7;
}

section#club .holder {
  padding-top: 1px;
  margin-top: -1px;
}

section#club .img {
  margin: 64px 0;
}

section#club .price {
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: center;
  margin-top: 20px;
  max-width: 324px;
}

section#club .price .old,
section#club .price .new {
  font-size: 28px;
  letter-spacing: 0.93px;
  white-space: nowrap;
}

section#club .price .old {
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 12px;
}

section#club .items {
  padding: 0 24px 56px;
}

section#club .items h3 {
  display: flex;
  align-items: center;
  margin: 48px 0 16px;
}

section#club .items .desc {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.38px;
  opacity: 0.8;
}

section#club .items img {
  margin-right: 16px;
}


/* Footer */

footer {
  color: #fff;
  background-color: #051d42;
  font-size: 14px;
  font-weight: 400;
}

footer .container {
  padding: 24px;
  text-align: center;
}

footer .menu a {
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

footer .menu a:hover {
  text-decoration: underline;
}
 
footer .copyright {
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.85;
}


/* Media queries */

@media screen and (min-width: 551px) {
  
  section#benefits .ppmore .img {
    height: 280px;
  }
  
  section#benefits .ppmore .content {
    padding: 30px 24px 80px;
  }
  
  section#benefits .ppmore .imgs {
    margin-bottom: 40px;
  }
  
  section#benefits .ppmore .imgs > div {
    width: 122px;
    margin: 0 16px;
    border-radius: 4px;
  }
  
  section#club .price {
    max-width: none;
    text-align: left;
  }
  
  section#club .price .old {
    margin-right: 8px;
  }
  
  section#club .price br {
    display: none;
  }
  
}

@media screen and (min-width: 551px) and (max-width: 768px) {
  
  section#benefits .tab .img {
    margin: 0 -90px;
    height: 380px;
  }
  
  section#benefits .tab .img > div, 
  section#benefits .tab .img > div:after {
    margin: 0 -24px;
    height: 400px;
  }
  
  section#benefits .tab .img > div:after {
    height: 500px;
    top: 275px;
  }
  
}

@media screen and (min-width: 769px) {
  
  body.ppshown {
    overflow: auto;
  }
  
  .cc-btn, .cc-btn:visited {
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 31px;
    display: inline-block;
    min-width: 182px;
    max-width: none;
  }
  
  header .logo {
    max-width: 339px;
  }
  
  header .nav-holder {
    padding: 24px 40px;
  }
  
  header .logo {
    max-width: none;
  }
  
  header .logo img {
    width: 169px;
  }
  
  header nav a, header nav a:hover, header nav a:active, header nav a:focus, header nav a:visited, header nav span {
    margin: 0 6px;
    font-size: 18px;
  }
  
  header .content {
    padding: 90px 40px;
  }
  
  header h1 {
    font-size: 60px;
    line-height: 1;
    margin: 20px 0 40px;
    flex: none;
  }
  
  header h1 br {
    display: inline;
  }
  
  header h3 {
    font-size: 28px;
  }
  
  header .offer {
    letter-spacing: 0.76px;
    padding: 8px 40px;
  }
  
  header .offer .title br {
    display: none;
  }
  
  header .offer .tooltip .tticon {
    order: 0;
  }
  
  header .offer .tooltip .tticon:hover {
    background-image: url(img/icon-info-blue.svg);
  }
  
  header .offer .tooltip .tticon:hover + .ttbox {
    visibility: visible;
    opacity: 1;
    z-index: 20;
  }
  
  header .offer .tooltip .ttbox {
    letter-spacing: 0.4px;
    padding: 12px 16px;
    top: 42px;
    max-width: 510px;
  }
  
  section .container > .info {
    padding: 12px 40px 64px;
    margin: 0;
  }
  
  section h2 {
    font-size: 48px;
  }
  
  section#benefits {
    order: 0;
  }
  
  section#benefits > .container {
    max-height: 2000px;
    overflow: hidden;
  }
  
  body.ppshown section#benefits > .container {
    max-height: 0;
  }
  
  section#benefits .holder {
    margin: 0 -40px;
  }
  
  section#benefits .header span {
    margin: 0 22px;
  }
  
  section#benefits .tab .content {
    padding: 0 40px;
  }
  
  section#benefits .tab .img {
    margin: 0 -64px;
    height: 400px;
  }
  
  section#benefits .tab .img > div {
    height: 400px;
  }
  
  section#benefits .tab .img > div:after {
    height: 615px;
    top: 290px;
  }
  
  section#benefits .tab .img img {
    max-width: 105%;
  }
  
  section#benefits .tabs h2,
  section#benefits .tab .desc {
    max-width: 520px;
  }
  
  section#benefits .tab .items > div {
    display: flex;
  }
  
  section#benefits .tab .item {
    max-width: 326px;
  }
  
  section#benefits .tab .item:not(:last-child) {
    margin-right: 46px;
  }
  
  section#benefits .ppmore {
    position: static;
    max-height: 0;
    background-color: #fff;
    order: 1;
  }
  
  section#benefits .ppmore.show {
    opacity: 1;
    top: 0;
    bottom: 0;
    max-height: 2000px;
    background-color: #f7f7f7;
    overflow: visible;
  }
  
  section#benefits .ppmore .container > div {
    padding-top: 40px;
  }
  
  section#benefits .ppmore .container > div > div {
    margin: 0 40px;
  }
  
  section#benefits .ppmore .img {
    height: 350px;
  }
  
  section#benefits .ppmore .content {
    padding: 30px 40px 56px;
    display: flex;
    justify-content: space-between;
  }
  
  section#benefits .ppmore .details {
    order: 1;
    flex: 0 1 600px;
  }
  
  section#benefits .ppmore .imgs {
    flex-direction: column;
    margin: 0 0 0 90px;
    order: 2;
  }
  
  section#benefits .ppmore .imgs > div {
    margin: 16px 0;
  }
  
  section#club .info {
    display: flex;
    padding: 0 40px;
    margin-bottom: 72px;
  }
  
  section#club .info > .content {
    flex: 1 0 57%;
  }
  
  section#club .img {
    flex: 0 1 43%;
    padding-left: 72px;
    margin: 134px 0 0;
  }
  
  section#club .img img {
    margin-left: auto;
  }
  
  section#club .items {
    padding: 0 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  section#club .items .desc {
    max-width: 375px;
  }
  
  section#club .items > div {
    flex: 0 0 45%;
  }
  
  section#club .items h3 {
    font-weight: 500;
  }
  
  footer .container {
    padding: 24px 40px;
  }
  
  footer .menu a {
    margin: 0;
  }
  
  footer .menu a:not(:first-child) {
    margin-left: 32px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header .offer {
    font-size: 16px;
  }
  
  header h1 {
    font-size: 80px;
    margin-bottom: 46px;
  }
  
  header h3 {
    font-size: 40px;
  }
  
  section h2 {
    font-size: 45px;
    line-height: 1.11;
  }
  
  section .container > .info {
    margin: 0;
    padding: 0 40px;
  }
  
  section .info .desc {
    max-width: 470px;
    font-size: 20px;
    line-height: 1.4;
  }
  
  section#benefits .tabs {
    display: flex;
    flex-direction: column;
  }
  
  section#benefits .header {
    justify-content: flex-start;
    margin: -56px 0 40px;
    position: relative;
    z-index: 1;
    order: 2;
  }
  
  section#benefits .header span {
    font-size: 16px;
  }
  
  section#benefits .header span:first-child {
    margin-left: 0;
  }
  
  section#benefits .holder {
    order: 1;
  }
  
  section#benefits .holder > div {
    transition: none;
  }
  
  section#benefits .tab {
    display: flex;
    transition: all linear .1s;
  }
  
  section#benefits .tab .content {
    padding: 70px 40px 100px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 60%;
    flex: 1 1 auto;
  }
  
  section#benefits #tab_travel .content {
    background-image: url(img/travel/travel-lg.jpg);
  }
  
  section#benefits #tab_dining .content {
    background-image: url(img/dining/dining-lg.jpg);
  }
  
  section#benefits #tab_activities .content {
    background-image: url(img/activities/activities-lg.jpg);
  }
  
  section#benefits .tab .img {
    display: none;
  }
  
  section#benefits .tabs h2 {
    max-width: 450px;
  }
  
  section#benefits h3 {
    font-size: 22px;
  }
  
  section#benefits .tab .desc {
    max-width: 470px;
  }
  
  section#benefits .tab .items {
    font-size: 20px;
    max-width: 475px;
  }
  
  section#benefits .tab .items > div {
    display: block;
  }
  
  section#benefits .tab .item {
    max-width: 368px;
    margin-right: 0;
  }
  
  section#club .holder {
    background-image: url(img/dbgw.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 60%;
  }
  
  section#club .info {
    margin-top: 72px;
  }
  
  section#club .info > .content {
    flex: 1 0 53%;
  }
  
  section#club .items {
    padding-bottom: 100px;
  }
  
  section#club .img {
    flex: 0 1 47%;
    padding-left: 84px;
    margin-top: 64px;
  }
  
  footer .container {
    text-align: left;
  }
  
  footer .container > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .menu {
    text-align: right;
    flex: 1 0 auto;
    order: 2;
  }

  footer .copyright {
    padding-top: 0;
    margin: 0 45px 0 0;
    order: 1;
  }

  footer .copyright span {
    white-space: nowrap;
  }
  
}

@media screen and (min-width: 1121px) {
  
  section h2 {
    font-size: 60px;
    line-height: 1;
  }
  
  section .info .desc {
    font-size: 22px;
    line-height: 1.4;
  }
  
  section#benefits .header span {
    font-size: 18px;
  }
  
  section#benefits .header {
    margin-top: -58px;
  }
  
  section#benefits .tab .content {
    padding-bottom: 164px;
  }
  
  section#benefits .tab .desc {
    max-width: 500px;
  }
  
  section#benefits .tabs h2 {
    max-width: 560px;
  }
  
  section#benefits .ppmore h2 {
    font-size: 40px;
    letter-spacing: -0.75px;
  }
  
  section#benefits .ppmore .img {
    height: 425px;
  }
  
  section#benefits .ppmore .details {
    flex-basis: 800px;
  }
  
  section#benefits .ppmore .details .desc {
    font-size: 24px;
    line-height: 1.67;
    letter-spacing: -0.45px;
  }
  
  section#benefits .ppmore .imgs {
    margin-left: 100px;
  }
  
  section#benefits .ppmore .imgs > div {
    width: 158px;
  }
  
  footer .copyright {
    font-size: 14px;
  }
  
}

@media screen and (min-width: 1280px) {
  
  .container {
    width: 1160px;
    margin: 0 auto;
  }
  
  .cc-btn {
    font-size: 24px;
    padding: 18px 40px;
  }
  
  header .nav-holder {
    padding: 52px 0 46px;
  }
  
  header nav a, 
  header nav a:hover, 
  header nav a:active, 
  header nav a:focus, 
  header nav a:visited, 
  header nav span {
    margin: 0 7px;
  }
  
  header .content {
    padding: 90px 0;
  }
  
  section h3 {
    font-size: 35px;
    margin: 32px 0;
  }
  
  section .container > .info {
    padding: 0;
  }
  
  section .info .desc {
    font-size: 20px;
    line-height: 1.4;
  }
  
  section#benefits .tabs h2 {
    max-width: 750px;
  }
  
  section#benefits .tab .desc {
    max-width: 470px;
  }
  
  section#benefits .header {
    margin-top: -60px;
  }
  
  section#benefits .header span {
    font-size: 20px;
  }
  
  section#benefits h3 {
    font-size: 24px;
  }
  
  section#benefits .ppmore .container > div {
    margin: 0 -40px;
  }
  
  section#club .holder {
    margin-left: -40px;
    margin-right: -40px;
  }
  
  section#club .info {
    padding: 0 40px;
  }
  
  section#club .items {
    padding: 0 40px 150px;
  }
  
  section#club .items h3 {
    font-weight: bold;
    font-size: 26px;
  }
  
  footer .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 0;
  }
  
}

/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}
