@font-face {
  font-family: 'plaak-45bbold';
  src: url(../fonts/plaak-45bbold-webfont.woff2) format("woff2"),
    url(../fonts/plaak-45bbold-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'plaak-43bbold';
  src: url(../fonts/plaak-43boldcondensed-webfont.woff2) format("woff2"),
    url(../fonts/plaak-43boldcondensed-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'plaak-35reg';
  src: url(../fonts/plaak-35regular-webfont.woff2) format("woff2"),
    url(../fonts/plaak-35regular-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal
}

.wow {
  visibility: hidden;
}

hr {
  max-width: 1366px
}

.grid-container {
  max-width: 85rem;
}

header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  /* -webkit-transition: background .5s ease;
  transition: background .5s ease; */
  /* height: 120px; */
}

header.active {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  background: transparent;
}

header.active h1 .st0, header.active h1 .st2, header.active h1 .st3 {
  fill: #fff;
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

header.active span.menu {
  /* -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) */
  color: #ffffff
}

header.active span.menu #Group-5 {
  fill: #fff;
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

nav {
  position: fixed;
  overflow: hidden;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a2133;
  z-index: 99;
  height: 100vh;
  min-height: 400px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform .75s ease;
  transition: -webkit-transform .75s ease;
  transition: transform .75s ease;
  transition: transform .75s ease, -webkit-transform .75s ease
}

a {
  cursor: pointer;
}

nav.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

#navbar {
  position: relative;
  top: 0;
  width: 100%;
  display: block;
  transition: top 0.3s;
}

nav ul {
  margin: 0;
  list-style: none;
  text-align: left;
  position: absolute;
  left: 80px;
  bottom: 40px;
}

nav ul li a {
  font-size: 36px;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: 'plaak-45bbold';
  color: #aea28a;
  /* -webkit-transition: color .3s ease;
  transition: color .3s ease */
}

nav ul li a:hover {
  text-decoration: underline;
  color: #fff
}

header span.menu.active i {
  background-color: #fff
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */
header span.menu {
  cursor: pointer;
  width: 50px;
  height: 40px;
  margin: auto;
  position: relative;
  right: 60px;
  top: 80px;
  bottom: 0;
  float: right;
  background: #3c5269;
  padding: 10px;
}

header span.menu i {
  background-color: #fff;
  content: '';
  display: block;
  width: 100%;
  height: 3px;
}

header span.menu i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header span.menu i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header span.menu i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

header.active span.menu i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

header.active span.menu i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

header.active span.menu i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(7px) rotate(0deg);
  }

  100% {
    transform: translateY(7px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(0deg);
  }

  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

#hero {
  /* background-image: url('../img/homepage-new.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right; */
  position: relative;
  background-color: #0a2133;
  height: 100vh;
  width: 100vw;
  min-height: 690px
}

#hero .left {
  position: absolute;
  bottom: 0px;
  left: 80px
}

#hero .address {
  position: absolute;
  bottom: 40px;
  right: 80px
}

#hero .address p {
  color: #fff;
  font-size: 40px;
  font-family: 'plaak-45bbold';
  line-height: 1.4
}

#hero .address h3 {
  color: #aea28a;
  font-size: 40px;
  font-family: 'plaak-45bbold';
  line-height: 1.4
}

.logo {
  position: absolute;
  left: 80px;
  top: 80px;
  z-index: 9999
}

.logo img {
  width: 250px;
}

#about {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0a2133;
}

#about .introText, #about .sub-introText {
  padding: 0 40px;
  text-align: center;
}

#about .introText h2 {
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .5em
}

#about .introText .text, #about .sub-introText .text {
  font-family: 'plaak-35reg';
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 1.3
}

#about .sub-introText h2 {
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .5em;

}
#about .sub-introText a .text{
  color: #aea28a;
  text-decoration: underline;
  margin-top: 1em
}
#specification {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

#specification .introText {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#specification .introText h2 {
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .5em
}

#specification .introText h3 {
  color: #3c5269;
  font-size: 55px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .5em
}

#specification .introText .text {
  font-family: 'plaak-35reg';
  font-size: 23px;
  text-align: center;
  color: #2e2d2c;
  line-height: 1.2;
  margin-bottom: 1em
}

#specification .icons-wrapper, #specification .icons-wrapper-group {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
}

#specification .icons-wrapper .icons {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 20%;
  margin-bottom: 2em
}

#specification .icons-wrapper-group .icons {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 25%;
  margin-bottom: 2.5em
}

#specification .icons-wrapper .icons img {
  margin: 0 auto;
  margin-bottom: 15px;
}

.icon-img {
  display: inline-block;
  vertical-align: middle;
  max-width: 40%;
  height: auto;
}

#specification .icons-wrapper .icons span {
  color: #2e2d2c;
  line-height: 1.4;
  font-family: 'plaak-35reg';
  font-size: 15px;
  margin-bottom: 15px
}

#specification .icons-wrapper-group .icons img {
  margin: 0 auto;
  margin-bottom: 15px;
}

#specification .icons-wrapper-group .icons span {
  color: #2e2d2c;
  line-height: 1.4;
  font-family: 'plaak-35reg';
  font-size: 15px;
  margin-bottom: 15px
}

#specification .infoTrip p {
  color: #2e2d2c;
  font-size: 18px;
  font-family: 'plaak-35reg';
  line-height: 1;
  margin-bottom: 1em;
  text-align: center;
}

#accommodation {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0a2133;
}

#accommodation h2 {
  color: #fff;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .4em
}

#accommodation .introText h3 {
  color: #aea28a;
  font-size: 55px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: 1em
}

#accommodation img {
  padding-bottom: 2em
}

#accommodation table {
  width: 95%
}

#accommodation table tbody {
  background: none;
  border: none
}

#accommodation table tbody tr {
  border: none;
  background: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  font-family: 'plaak-43bbold';
}

#accommodation table.unit-a tbody tr {
  border-bottom: 2px solid #3c5269
}

#accommodation table.unit-b tbody tr {
  border-bottom: 2px solid #3c5269
}

#accommodation table.unit-c tbody tr {
  border-bottom: 2px solid #3c5269
}

#accommodation table.unit-d tbody tr {
  border-bottom: 2px solid #3c5269
}

#accommodation table tbody tr.total {
  font-family: 'plaak-43bbold';
  font-size: 18px;
}

#accommodation table tbody tr td {
  padding: .5rem 0;
}

#accommodation table tbody .right {
  text-align: right;
}

#accommodation ul {
  margin-top: 2em;
  margin-bottom: 2em
}

#accommodation ul li {
  color: #fff;
  font-size: 18px;
  text-align: left;
  font-family: 'plaak-43bbold';
}

.accommodation-icons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: 3em;
}

.acc-icon {
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2em;
  padding: 0 10px;
}

.acc-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: -15px;
  display: block;
}

.acc-icon span {
  color: #fff;
  font-size: 12px;
  font-family: 'plaak-35reg';
  line-height: 1.3;
  text-align: center;
}

#accommodation .download button {
  color: #fff;
  font-size: 18px;
  font-family: 'plaak-43bbold';
  border: 1px solid #3c5269;

  text-align: center;
  padding: 10px 30px;
  margin-top: 1em
}
/* #accommodation table tbody tr:last-child {
  border-bottom: none
} */
/* #accommodation .gallery {
  padding-top: 40px;
  padding-bottom: 20px
}
#accommodation .gallery .left img {
  padding-right: 20px
}
#accommodation .gallery .small-group img {
  margin-top: 20px
} */
#location {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #0a2133;
}

#location .introText h2 {
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .5em
}

/* #location table {
  width: 95%
} */
#location img {
  margin-bottom: 2em
}

#location table tbody {
  background: none;
  border: none
}

#location table tbody tr {
  border: none;
  background: none;
  color: #fff;
  font-size: 22px;
  text-align: left;
  font-family: 'plaak-43bbold';
  text-transform: uppercase;
  border-bottom: 2px solid #3c5269
}

#location table tbody tr td {
  padding: .5rem 0;
}

#location table tbody .right {
  text-align: right;
}

#location table tbody tr.header {
  color: #aea28a;
}

#location .infoTrip p {
  color: #fff;
  font-size: 18px;
  font-family: 'plaak-35reg';
  line-height: 1;
  margin-bottom: 1em;
}

#gallery {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

#gallery .introText h2{
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: .5em
}
#video{
  padding-top: 40px;
  padding-bottom: 40px;
  background: #0a2133;
}

#news {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}
#video .introText h2, #news .introText h2{
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: 0
}
#news .news-group h3  {
  color: #aea28a;
  font-size: 40px;
  font-family: 'plaak-43bbold';
  line-height: 1;
  margin-bottom: 1em;
  margin-top: 1em
}

.news-group {
  margin-top: 2em;
  margin-bottom: 2em
}
.news-group h5 {
   color: #3c5269;
   font-family: 'plaak-43bbold';
   line-height: 1;
   margin-bottom: .5em;

}
.news-group a {
  color: #aea28a;
  font-family: 'plaak-43bbold';
  font-size: 22px;
}
.news-group a.back {
  color: #3c5269;
  font-family: 'plaak-43bbold';
  font-size: 26px;
}
#contact {
  /* padding-top: 80px; */
  padding-bottom: 30px;
  background: #0a2133;
}

#contact .introText {
  margin-bottom: 1em
}

#contact .introText h2 {
  color: #aea28a;
  font-size: 80px;
  font-family: 'plaak-43bbold';
  line-height: 1;
}

#contact .introText p {
  color: #fff;
  font-size: 25px;
  font-family: 'plaak-35reg';
  line-height: 1;
  margin-bottom: 1em
}

#contact .details .group {
  margin-bottom: 50px;
  margin-left: 20px
}

#contact .details {
  margin-top: 3em
}

#contact .details .group h5 {
  color: #aea28a;
  font-size: 28px;
  font-family: 'plaak-43bbold';
  line-height: 1.0;
  margin-bottom: 0
}

#contact .details .group p {
  font-size: 22px;
  font-family: 'plaak-35reg';
  line-height: 1.4;
}

#contact .details .group a {
  color: #fff;
}

#contact .download h4 {
  color: #fff;
  font-size: 30px;
  font-family: 'plaak-45bbold';
  line-height: 1;
  margin-top: .5em;
  cursor: pointer;
}

#contact .download {
  margin-top: 2em;
}

#contact .download button {
  color: #fff;
  font-size: 26px;
  font-family: 'plaak-43bbold';
  border: 1px solid #3c5269;
  max-width: 500px;
  text-align: center;
  padding: 10px 50px;
  margin-bottom: 2em
}

#contact .misrep {
  margin-top: 5em;
  color: #fff;
  font-size: 11px;
  font-family: 'plaak-35reg';
  line-height: 1.1;
  text-align: justify;
}

#contact .misrep a {
  color: #fff;
}

#contact .dev-logo {
  margin-top: 2.5em;
}

#contact .dev-logo span {
  color: #fff;
  font-size: 22px;
  font-family: 'plaak-43bbold';
}
#contact .dev-logo a{
  color: #fff;
  font-size: 18px;
  font-family: 'plaak-43bbold';

}

#contact .dev-logo img {
  width: 210px;
  margin-top: 1em;
    margin-bottom: 1em
}

#contact .dev-logo img.curzon-logo {
  width: 250px;
  max-width: 100%;
}

#hero .left .short, #hero .left .double-short{
  display: none
}
@media screen and (max-width:1023px) {
  .logo {
    left: 40px;
    top: 60px;
  }

  .logo img {
    width: 200px;
  }

  nav ul {
    left: 40px;
  }

  nav ul li a {
    font-size: 30px;
  }

  header span.menu {
    right: 30px;
    top: 50px
  }

  #hero .address {
    left: 40px;
    bottom: 60px !important
  }

  #specification, #location, #contact, #about, #accommodation, #gallery{
    padding: 50px 30px
  }
  #video {
    padding: 0px 30px 50px 30px
  }
  #specification .introText h2, #accommodation h2, #about .introText h2, #about .sub-introText h2,  #location .introText h2, #contact .introText h2, #gallery .introText h2, #video .introText h2 {
    font-size: 60px
  }

  #specification .introText h3, #accommodation .introText h3 {
    font-size: 45px
  }

  #specification .introText .text, #accommodation .introText .text, #about .introText .text, #about .sub-introText .text {
    font-size: 20px
  }

#specification .icons-wrapper .icons {
  width: 25%;
}

#about .sub-introText h2 {
  margin-top: 1em
}

#contact .details .group a, #contact .download button {
    font-size: 20px
  }

  /* #contact .details .group h5, #location .left-col .text {
    font-size: 22px
  } */

#contact .details .group {
  margin-left: 0;
  margin-top: 1.5em
}

.acc-icon {
  width: 50%;
}
}

@media screen and (max-width:768px) {
  #hero .address p, #hero .address h3 {
    font-size: 30px;
  }
  #specification .icons-wrapper .icons, #specification .icons-wrapper-group .icons {
    width: 50%;
  }

  .acc-icon {
    width: 50%;
  }

#contact .introText p {
  font-size: 20px;
  line-height: 1.4
}
}
@media screen and (max-width:639px) {
  #contact .details {

    margin-top: 2em
  }
  #contact .misrep {
    font-size: 10px
  }
  #contact .download h4 {
    font-size: 25px
  }
  #contact .dev-logo img {
    width: 180px
  }
  #specification .icons-wrapper .icons img, #specification .icons-wrapper-group .icons img {
    width: 90px
  }
  #specification .icons-wrapper .icons span, #specification .icons-wrapper-group .icons span {
    font-size: 13px
  }
}
@media screen and (max-width:500px) {
  .logo img {
    width: 180px;
  }

  #hero .address p, #hero .address h3 {
    font-size: 25px;
  }

    #specification .introText h2, #accommodation h2, #about .introText h2, #about .sub-introText h2,  #location .introText h2, #contact .introText h2, #gallery .introText h2, #video .introText h2 {
    font-size: 40px
  }
  #specification .introText h3, #accommodation .introText h3 {
    font-size: 35px
  }
  #specification, #location, #contact, #accommodation, #gallery {
    padding: 60px 20px;
  }
  #video {
    padding: 0px 20px 60px 20px
  }
#specification .introText .text, #accommodation .introText .text, #about .introText .text ,#about .sub-introText .text,  #contact .details .group p {

    font-size: 17px
  }



  /* #location .right-col table tbody tr, #location .right-col table tbody tr:nth-child(even), #contact .details .group a, #contact .download button {
    font-size: 16px;
  } */



  /* #contact .address h4 {
    margin-top: 2em
  }

  #hero .address {
    bottom: 120px
  } */
}

@media screen and (max-width:375px) {
  /* .logo img {
    width: 230px;
    height: 72px
  } */

  #hero .address p {
    font-size: 22px
  }

  #hero .address h3 {
    font-size: 38px
  }

  header span.menu {
    right: 20px;
    top: 60px;
  }

  .logo, nav ul, #hero .address {
    left: 20px
  }

  nav ul li a {
    font-size: 30px
  }

  #specification, #location, #contact, #accommodation, #gallery {
    padding: 60px 20px
  }

  #specification .introText h2, #accommodation .introText h2, #location .introText h2, #about .introText h2, #about .sub-introText h2, #gallery .introText h2, #contact .introText h2, #video .introText h2  {
    font-size: 35px
  }

  #specification .introText .text, #contact .details .group h5, #location .left-col .text {
    font-size: 16px
  }



  #accommodation .left-col table tbody tr, #accommodation .left-col table tbody tr:nth-child(even) {
    font-size: 13px
  }

  #location .right-col table tbody tr, #location .right-col table tbody tr:nth-child(even) {
    font-size: 14px
  }

  #contact .address h4 {
    font-size: 20px
  }
}
@media screen and (max-height:950px) and (min-width:1024px) {
  #hero .left .short{
    display: block
  }
  #hero .left .long{
    display: none
  }

}
@media screen and (max-height:870px) and (min-width:1024px) {
  #hero .left .long{
    display: none
  }
  #hero .left .double-short{
    display: block
  }
  #hero .left .short{
    display: none
  }

}
@media screen and (max-height:770px) and (min-width:1024px) {
  #hero .left{
    display: none
  }
}
