/*old color: body: 222222, accennt 333333, 555*/
@font-face {
    font-family: "Galano Grotesque";
    src: url(fonts/galano_grotesque-webfont.ttf)format('truetype');
    src: url(fonts/galano_grotesque-webfont.woff)format('woff'),
         url(fonts/galano_grotesque-webfont.woff2)format('woff2');
}
body {
	margin: 0px;
	background-color: #050c1e;
    font-size: 18px;
    font-family: 'Galano Grotesque', serif;
    color: #fff;
    box-shadow: 0px 1px 20px 0px black;
}
b, strong {
    font-family: 'Galano Grotesque', serif;
    color: #ba8a2d;
    font-weight: 900;
}
.medium-body-text {
    font-size: 1.9rem;
    line-height: 1.3em;
    margin-top: 30px;
}
.modal-body-text {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 30px;
    padding-right: 35px;
}
.small-body-text {
    font-size: 1rem;
    margin-top: 30px;
}
@media screen and (min-width: 1350px) {
    .small-body-text {
        font-size: 1.5rem;
    }
    .medium-body-text {
        font-size: 2.3rem;
    }
    #hidden-gem-container p {
        font-size: 2.8rem;
    }
}
@media only screen and (max-width: 768px){
    html{
        font-size: 9px !important;
    }
    .small-body-text {
        font-size: 1.3rem;
    }
}
#scroll-bttn{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #b48c36;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    transition: 0.3s all ease;
}
#scroll-bttn:hover {
    background-color: #836628;
}
#parallax-wrapper {
    margin-bottom: 245px;
}
#main-content-wrapper {
    position: relative;
    z-index: 1;
}

/*Header*/
#header-container {
    position: relative;
    padding-top: 56.25%;
}
#header-container iframe {
    position: absolute !important;
}

#header-logo {
	background-repeat: no-repeat;
	z-index: 1;
	background-size: 42% auto;
	top: 6.25%;
	left: 3.5%;
    pointer-events: none;
}

#header-container:after {
    will-change: height;
	content: '';
	clip-path: polygon(75% 0%, 0% 0%, 0% 100%);
    -webkit-clip-path: polygon(75% 0%, 0% 0%, 0% 100%);
	display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    height: 110%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    -webkit-animation-name: upper-shutter;
    -webkit-animation-duration: 7s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay: 6s;
    -webkit-animation-fill-mode: forwards;
    animation-name: upper-shutter;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-delay: 4s;
    animation-fill-mode: forwards;

}

#header-container:before {
	content: '';
    will-change: height;
	clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
    -webkit-clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
	display: block;
    position: absolute;
    bottom: -2px;
    left: 0px;
    z-index: 1;
    height: 134%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    -webkit-animation-name: lower-shutter;
    -webkit-animation-duration: 7s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay: 6s;
    -webkit-animation-fill-mode: forwards;
    animation-name: lower-shutter;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-delay: 4s;
    animation-fill-mode: forwards;
    pointer-events: none;
}
@keyframes upper-shutter {
    0%   {height: 110%;}
    100% {height: 37.5%}   
}
@keyframes lower-shutter {
    0%   {height: 134%;}
    100% {height: 11%}   
}
.animation-1-5 {
    -webkit-animation-delay: 2s;
    -webkit-animation-duration: 2.5s;
    animation-delay: 2s;
    animation-duration: 2.5s;
}
/**/
/*Scroll down*/
.animation-9 {
    -webkit-animation-delay: 9s;
    -webkit-animation-duration: 2.5s;
    animation-delay: 9s;
    animation-duration: 2.5s;  
}
#scroll-down:hover {
    cursor: pointer;
}
.scroll-container {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 91%;
  left: 90%;
  z-index: 2;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #b48c36;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Galano Grotesque", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
/**/

/*Hidden gem*/
#hidden-gem-container {
    position: relative;
}
#hidden-gem-container:before {
	content: '';
	clip-path: polygon(100% 0%, 0% 0%, 0% 100%);
    -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 100%);
	display: block;
    position: absolute;
    left: 0px;
    z-index: 1;
    height: 11%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    margin-top: -2px;
}

#hidden-gem-title {
	position: relative;
	top: 10px;
	z-index: 2;
}

.uk-height-viewport{
	min-height: 0px !important;
}

#hidden-gem-container p{
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.5em;
}
/**/

/*Accommodation*/

#accommodation-outer-wrap{
    height: 100%;
}
#accommodation-container {
    position: relative;
    background-color: #050c1e;
    margin-top: 150px;
}

#accommodation-container:after {
    content: '';
    clip-path: polygon(100% 0%, -15% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0%, -15% 100%, 100% 100%);
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 0;
    height: 37.5%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    margin-bottom: -2px;
}

#accommodation-title {
    padding-right: 20px;
    padding-bottom: 25px;
    position: relative;
    top: 10px;
    z-index: 2;
}

#accommodation-body-text p{
    line-height: 1.5em;
    font-size: 38px;
    text-align: center;
}

.accommodation-content {
    z-index: 1;
}

.accommodation-tile-content p {
    font-size: 1.5vmax;
    line-height: 0.7em;
}

.accommodation-tile-content i {
    font-size: 20px;
    padding: 20px;
    -webkit-animation-name: tile-hover-icon;
    -webkit-animation-duration: 3s;
    animation-name: tile-hover-icon;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes tile-hover-icon {
    0%   {color: #fff;}
    50%  {color: #b48c36}
    100% {color: #fff}   
}

@keyframes tile-hover-icon {
    0%   {color: #fff;}
    50%  {color: #b48c36}
    100% {color: #fff}   
}
#accommodation-testimonial-wrap {
    padding-left: 7%;
    padding-right: 7%;
    z-index: 3;
    font-family: cormorant;
    line-height: 34px;
}
#testimonial-quote-wrap {
    display: inline-block;
}
#testimonial-quote-wrap hr{
    display: -webkit-inline-box;
    width: 40px;
    border-top: 1px solid #b48c36;
}
#testimonial-quote-wrap p{
    display: -webkit-inline-box;
    padding-left: 10px;
}
.uk-modal-dialog {
    background: #323846;
}
#modal-heading {
    width: 85%;
}
@media only screen and (max-width: 767px) {
    .modal-image {
        visibility: hidden;
        display: none;
    }
    .modal-content {
        height: 100vh;
    }
    .accommodation-tile-content p {
        font-size: 3vmax;
        padding-top: 25px;
        line-height: 1em;
    }
}
@media only screen and(min-width: 968px) {
    .accommodation-tile-content p{
        font-size: 1.7vmax;
    }
}
/*UHD*/
#uhd-container{
    position: relative;
    margin: 0px;
}
#uhd-container:before {
    content: '';
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
    -webkit-clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
    display: block;
    position: absolute;
    left: 0px;
    z-index: 0;
    height: 37.5%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    margin-top: -1px;
}
#uhd-text-container {
    z-index: 2;
    margin-top: 25px;
}
#uhd-image-container {
    z-index: 2;
    margin-top: 25px;
}
#uhd-heading {
    padding-bottom: 25px;
}
/**/
/*perfect-day*/
#perfect-day-container {
    margin-top: 125px;  
    position: relative;
}

#perfect-day-upper {

}
#perfect-day-text-container {
    padding-right: 35px;
    margin-top: 25px;
}
#perfect-day-heading-image {
    margin-top: 25px;
    padding-right: 25px;
    padding-bottom: 20px;
}
#perfect-day-lower {
    padding-top: 100px;
}
.perfect-day-tile-text {
    font-size: 1.5rem;
    line-height: 1.5em;
}
/**/
/*Gallery*/
#gallery-container {
    position: relative;
    margin-top: 125px;
}
#gallery-container:before {
    content: '';
    clip-path: polygon( 0% 0%, 0% 100%, 100% 50%);
    -webkit-clip-path: polygon( 0% 0%, 0% 100%, 100% 50%);
    display: block;
    position: absolute;
    left: 0px;
    z-index: 0;
    height: 37.5%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    margin-top: -1px;
}
#gallery-title {
    position: relative;
    z-index: 2;
    width: 40%;
    padding-left: 10%;
    padding-bottom: 10px;
}

/**/
/*Bookings*/
#bookings-wrap {
    position: relative;

}
#bookings-container {
    width: 100%;
    margin-left: 0px;
    position: relative;
    padding-top: 140px;
}
#bookings-wrap:before {
    content: '';
    clip-path: polygon(75% 0%, 100% 0%, 100% 50%, 0% 100%, 0% 40%);
    -webkit-clip-path: polygon(75% 0%, 100% 0%, 100% 50%, 0% 100%, 0% 40%);
    display: block;
    position: absolute;
    left: 0px;
    z-index: 0;
    height: 50%;
    width: 100%;
    background: #323846;
    background-image: linear-gradient(180deg, #323846 0%, #323846 100%);
    margin-top: -1px;
}
#rental-prices-container {
    z-index: 1;
}
#prices-heading {
    padding-right: 5%;
    padding-bottom: 5%;
}
#prices-text-wrap table {
    margin: 0px auto;
    width: 100%;
    text-align: center;
    padding: 5% 10%;
    background-color: #ba8a2d;
    font-size: 1.6rem;
    line-height: 2rem;
}
#contact-form-wrap {
    z-index: 1;
}
#contact-form-inner {
    margin: 0 25px;
    background-color: #494e5b;
}
#contact-form-inner p {
    margin: 0px 10% !important;
    padding-bottom: 25px;
    word-wrap: break-word;
}
#contact-form-heading {
    width: 70%;
    padding-left: 10%;
    padding-top: 8%;
}
#contact-form {
    padding: 25px 10%;
}

#contact-form fieldset div {
    padding: 8px 0px;
}
input {
    color: #fff !important;
}
textarea {
    color: #fff !important;
}
.form-input {
    border: 0px !important;
    background-color: #2f2c30 !important;
}
.form-input-wrap {
    width: 100%;
}
fieldset {
    width: 100%;
    min-width: 100%;
}
.form-submit {
    width: 50%;
    background-color: #323846;
    border: 0px;
}
input[type="submit" i]{
    transition: background-color 0.5s ease;
}
input[type="submit" i]:hover{
    background-color: #ba8a2d;
}
/*datepicker*/
.uk-dropdown {
    background: #323846 !important;
    color: #fff !important;
}
.uk-datepicker-table a.uk-active {
    background: #ba8a2d !important;
}
.uk-datepicker-date-disabled {
    color: grey !important;
}
.uk-datepicker-table a:not(.uk-datepicker-date-disabled) {
    color: #fff !important;
}
/**/
/*location*/
#location-container {
    margin: 0px 10%;
    padding: 25px 0px;
    position: relative;
}
#location-heading {
    padding: 25px 0px;
}
#location-pdf {
    height: fit-content;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-table;
}
#location-pdf-background-spoof {
    visibility: hidden;
}
#map-wrapper{
    height: 520px;
}
/**/
/*footer*/
footer {
    background-color: #323846;
    position: fixed;
    width: 100%;
    z-index: -1;
    bottom: 0px;
}
#footer-main {
    height: 200px;
    background-color: #323846;
}
#footer-bottom {
    height: 45px;
    background-color: #ba8a2d;
    padding: 0px 5%;
}
#address-wrapper {
    padding-top: 15px;
}
@media only screen and (max-width: 960px){
    #developed-by, #copyright {
        visibility: hidden;
        display: none;
    }
}
#tc a, #developed-by a, #contact-form-inner p a {
    color: #fff;
    text-decoration: underline;
    padding: 0px 3px;
}
/**/