:root {
    --primary-color: #c39a5c;
    --secondary-color: #211c36;
    --hover-color: #402226;
    --text-light: #fff;
    --text-dark: #231f20;
    --filler-color: #75949f;
    --font-primary: 'Work Sans', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    font-weight: normal;
    font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
}

p {
    color: var(--text-dark);
    font-weight: 400;
}

.button,
a,
a:hover {
    cursor: pointer;
}

.header .container {
    max-width: 1750px;
}

.header .column:first-child {
    flex: 0 0 20%;
}

.logo-holder {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
}

.logo__link {
    text-indent: -9999px;
    color: transparent;
    height: 100%;
    width: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    position: absolute;
}

.header nav {
    height: 100%;
}

nav ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}


nav ul li a {
    display: inline-block;
    padding: 70px 20px;
    font-size: 16px;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:hover {
    color: var(--hover-color);
}

nav ul li:first-child a {
    padding-left: 0;
}

nav ul li:last-child a {
    padding-right: 0;
}

nav ul li:last-child {
    margin-left: auto;
}

.button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--font-primary);
    color: var(--text-light);
    font-size: 15px;
    text-align: center;
    border-radius: 3px;
    padding: 16px 40px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.button:hover {
    background-color: var(--hover-color);
    color: var(--text-light);
    border: 1px solid var(--hover-color);
    transition: 0.3s;
}

nav ul li a.button {
    padding: 20px 40px;
}

.section--hero {
    position: relative;
}

.hero-slider__item {
    position: relative;
    height: 900px;
}

.hero-slider--home .hero-slider__item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(117, 148, 159, 0.4);
    width: 100%;
    height: 100%;
    z-index: 9;
}

.hero-slider--home .hero-slider__item.youtube:after,
.hero-slider--home .hero-slider__item.vimeo:after {
    background-color: rgba(117, 148, 159, 0.2);
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.section--inner-hero .hero-text {
    top: 50%;
}

.hero-text p {
    font-size: 17px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 6.4px;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 110px;
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-weight: 700;
    max-width: 880px;
    line-height: 1;
    margin: 15px auto 60px;
}

.hero-slider .slick-dots {
    bottom: 50px;
}

.hero-slider .slick-dots li button {
    width: 30px;
    height: 30px;
    padding: 0;
}

.hero-slider .slick-dots li button::before {
    font-family: inherit;
    content: '';
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    opacity: 1;
}

.hero-slider .slick-dots li.slick-active button::before {
    background-color: var(--text-light);

}

.section--rooms {
    padding-top: 30px;
}

.section--rooms .container--bleed {
    padding: 0 30px;
}

.room {
    position: relative;
    overflow: hidden;
}

.room__img img {
    transition: transform .3s;
    height: 374px;
    object-fit: cover;
    width: 100%;
}

.room:hover {
    cursor: pointer;
    transition: transform .3s;
}

.room:hover .room__img img {
    transform: scale(1.1);
    transition: transform .3s ease-in-out;
}

.room__details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.room__details a {
    background-color: var(--primary-color);
    font-size: 36px;
    color: var(--text-light);
    font-family: var(--font-secondary);
    border-radius: 2px;
    font-weight: 700;
    padding: 18px 30px 22px;
    line-height: 1;
    transition: transform .10s;
}

.room:hover .room__details a {
    background-color: var(--hover-color);
    transition: transform .10s ease-in-out;
}

.intro {
    text-align: center;
    padding: 130px 0;
}

.intro span,
.title span,
.highlight-text span {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3.2px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.intro h2,
.title h2,
.highlight-text h2 {
    font-size: 48px;
    font-family: var(--font-secondary);
    margin: 10px 0 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

.intro p {
    max-width: 850px;
    margin: 0 auto;
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 23px;
    line-height: 1.8;
    font-weight: 400;
}

.title {
    text-align: center;
    margin-bottom: 90px;
}

.section-suites {
    padding-bottom: 140px;
}

.section-suites--landing {
    padding: 90px 0 0;
}

.columns--rooms .column {
    flex: 0 0 50%;
    margin-bottom: 30px;
}

.columns--rooms .column:last-child {
    flex: 0 0 100%;
}

.room-intro,
.section--room-features,
.section--location-intro {
    position: relative;
    background-image: url(../images/Donkey-bay.png);
    background-repeat: no-repeat;
    background-size: 81%;
    background-position: center -200px;
}

.section--higlight {
    background-color: #f3f3f3;
    position: relative;
}

.highlight-img {
    width: 50%;
}

.highlight-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 9;
}

.highlight-wrap .column {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 140px;
}

.highlight-wrap .columns {
    justify-content: flex-end;
}

.highlight-text ul {
    list-style-type: none;
    margin: 0 0 50px;
}

.highlight-text ul li {
    margin-bottom: 25px;
    font-size: 17px;

}

.footer {
    padding: 60px 0 20px;
}

.footer .container {
    max-width: 1100px;
}

.footer nav>ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer nav ul li:nth-child(4) {
    margin-left: auto;
}

.column--nav {
    position: relative;
}


.footer nav ul li:last-child {
    margin-left: inherit;
}

.social-list {
    list-style-type: none;
    margin: 0;
    justify-content: flex-end;
    display: flex;
}

.social-list li {
    margin-right: 15px;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--primary-color);
}

.social-list li:last-child {
    margin-right: 0;
}

.copy-text,
.copy-text a {
    color: #47425d;
    opacity: 0.54;
    font-size: 11px;
}

.section--room-features {
    padding: 90px 0 110px;
    position: relative;
}

.tabs {
    list-style-type: none;
    margin: 90px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.tabs li {
    padding: 0 30px;
}

.tabs li a {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 5px;
    color: var(--primary-color);
    letter-spacing: 3.2px;
    cursor: pointer;
}

.tabs li.active a {
    border-bottom: 1px solid var(--primary-color);
}

.room-features {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    height: 100%;
}

.room-features h2 {
    font-size: 38px;
    font-family: var(--font-secondary);
    margin: 10px 0 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

.room-features p {
    font-size: 17px;
    line-height: 1.765;
    margin-bottom: 30px;
}

.room-features span {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3.2px;
    font-weight: 700;
    font-family: var(--font-primary);
}


.room-img {
    padding-left: 50px;
}

.section--gallery {
    background-color: #f7f2ed;
    padding: 85px 0 110px;
    overflow: hidden;
    position: relative;
}

.room-slider .slick-track,
.related-slider .slick-track {
    margin: 0 -20px;
}

.room-slider .slick-slide,
.related-slider .slick-slide {
    padding: 0 20px;
}

.room-slider .room-slider__img img,
.related-slider img {
    width: 100%;
}

.room-slider .title {
    opacity: 0;
}

.room-slider .slick-active .title {
    opacity: 1;
}

.seciton--amentities {
    padding: 90px 0 140px;
}

.column--amenities ul {
    list-style-type: none;
    margin: 0;
    column-count: 3;
}


.column--amenities li {
    flex: 0 0 31%;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 300;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.column--amenities li:after {
    position: absolute;
    content: '';
    background-image: url(../images/list-anlge.png);
    background-repeat: no-repeat;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-size: contain;
}

.seciton--amentities .container {
    max-width: 1540px;
}

.section--related {
    padding: 90px 0 145px;
    background-color: #f3f3f3;
    overflow: hidden;
    position: relative;
}

.section--rooms-related {
    padding: 90px 0 0;
    background-color: #fff;
}

.related-slider__item {
    position: relative;
}

.related-slider__inner {

    overflow: hidden;
}

.related-slider__item img {
    height: 630px;
    width: 100%;
    object-fit: cover;
    object-position: right;
    transition: transform .3s;

}

.related-slider__item:hover img {
    transform: scale(1.1);
    transition: transform .3s ease-in-out;
}

.related-slider__item>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
}

.related-slider__item:hover .room__title {
    background-color: var(--hover-color);
}

.room__title {
    background-color: var(--primary-color);
    font-size: 36px;
    color: var(--text-light);
    font-family: var(--font-secondary);
    border-radius: 2px;
    font-weight: 700;
    padding: 25px 45px 30px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.related-slider__item p {
    margin-top: 40px;
    font-weight: 300;
    text-align: center;
    font-size: 23px;
    opacity: 0;
}

.slick-active.related-slider__item p {
    opacity: 1;
}

.slick-active:focus,
.slick-slide:focus {
    outline: 0;
    border: 0;
}

.tab-content .section--room-features {
    padding-top: 0;
}

.nav-arrows {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    z-index: 9;
}

.nav-arrows .column {
    display: flex;
    justify-content: space-between;
}

.slide-arrow {
    border: 0;
    background: transparent;
}

.section--gallery-inner {
    padding: 90px 0 0;
}

.section--contact-map iframe {
    width: 100%;
    height: 600px;
    display: none;
}

.section--contact-map {
    height: 600px;
}

#map {
    height: 600px;
    width: 100%;
}


.contact-wrap {
    padding: 80px 80px;
    background-color: #f3f3f3;
    margin-top: -150px;
    position: relative;
}

.contact-form .form-bx {
    padding: 0;
    background: transparent;
    max-width: none;
}

.contact-form .form-bx .field {
    margin-bottom: 5px;
}

.contact-form .form-bx .field label {
    position: relative;
    top: 0;
    background: transparent;
    left: 0;
    padding: 0;
    font-size: 16px;
}

.contact-form .form-bx .field textarea {
    margin-top: 0;
    background: transparent;
    font-family: inherit;
    border-radius: 3px;
}

.contact-form .form-bx .field input {
    background: transparent;
    font-family: inherit;
    border-radius: 3px;
}

.contact-form .form-bx .button {
    width: auto;
}

.contact-block {
    margin-bottom: 50px;
    max-width: 350px;
    display: flex;
    flex-flow: row wrap;
}


.contact-block h6 {
    font-size: 21px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-block p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

.contact-block p>a {
    color: var(--text-dark);
}

.contact-wrap .columns:last-child .column:first-child {
    flex: 0 0 55%;
}

.contact-wrap .columns:last-child .column:last-child {
    padding-left: 60px;
    padding-top: 30px;
    flex: 0 0 45%;
}

.contact-block__left {
    flex: 0 0 15%;
}

.contact-block__right {
    flex: 0 0 85%;
    padding-left: 15px;
}

.contact-block img {
    width: 42px;
}

.contact-wrap .title {
    margin-bottom: 55px;
}

.section--location-intro {
    padding: 90px 0;
}

.intro-details {
    padding-left: 50px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    height: 100%;
}

.intro-details span,
.dolphin-details span {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3.2px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.intro-details h2,
.dolphin-details h2 {
    font-size: 40px;
    font-family: var(--font-secondary);
    margin: 5px 0 30px;
    color: var(--secondary-color);
    font-weight: 700;
    max-width: 515px;
}

.intro-details p,
.location--details p,
.dolphin-details p {
    font-size: 17px;
    line-height: 1.765;
    margin-bottom: 30px;
}

.section--location--details {
    background-color: #f3f3f3;
    padding: 90px 0;
}

.section--location--details .title {
    text-align: left;
    margin-bottom: 40px;
}

.section--dolphin {
    padding: 90px 0 0;
}

.section--dolphin .column:last-child {
    display: flex;
    justify-content: flex-end;
}

.dolphin-details {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    height: 100%;
}

.dolphin-details .button {
    align-self: flex-start;
}

.section--building--details {
    padding: 0 0 40px;
}

.section--building--details .title {
    margin-top: 60px;
}

.section--building-features {
    background-color: #f3f3f3;
    padding: 90px 0;
}

.section--building-features .column:first-child {
    flex: 0 0 45%;
    padding-right: 50px;
}

.section--building-features .column:first-child .intro-details {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    height: 100%;
}

.title.title--inner {
    margin: 50px 0;
}

.section--gallery-inner .title {
    margin-bottom: 40px;
}

.section--blog-popular {
    padding: 90px 0;
}

.columns.columns--blog-more .column {
    flex: 0 0 33.33%;
}

.columns.columns--blog-more .news-slider__item {
    margin-bottom: 50px;
}

.section--blog-popular .news-slider__img {
    margin-bottom: 30px;
    position: relative;
}

.news-slider__img-link {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    cursor: pointer;
}

.section--blog-popular .news-slider__img img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 450px;
}

.news-slider__date {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.section--blog-popular .news-slider__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.news-slider__link {
    position: relative;
    padding-right: 80px;
    font-weight: 300;
    font-size: 18px;
    display: inline-block;
    color: var(--primary-color);
}

.news-slider__link:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-image: url(../images/arrow-next.png);
    background-repeat: no-repeat;
    width: 70px;
    height: 24px;
    background-size: contain;
}


.blog-detail__title h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    max-width: 700px;
    font-family: var(--font-secondary);
}

.blog-detail__content {
    padding: 20px 0 40px;
    width: 100%;
    margin: 0 auto;
}

.blog-detail__content p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog-detail__content p>a {
    color: var(--primary-color);
}

.blog-detail__content h5 {
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 20px;
}

.section--blog-hero img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.section--blog-hero {
    margin-bottom: 70px;
}

.slick-slide iframe {
    position: relative;
    pointer-events: none;
}

.slick-slide .slide-media {
    -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
    animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}

.slick-slide.slick-active {
    z-index: 1;
}

.slick-slide.slick-active .slide-media {
    -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
    animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}

.section--inner-hero .hero-slider__item {
    height: 760px;
}

.section--inner-hero .hero-slider__item img {
    height: 760px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.Fullwidth .room__img img {
    height: 440px;
}

.tab-content .section--room-features.section--landing-features {
    padding-top: 90px;
}

.tab-content .section--room-features.section--landing-features .container,
.section--location-intro .container,
.section--location--details .container,
.section--room-features .container,
.section--building-features .container,
.section--dolphin .container {
    max-width: 70%;
}

.room-features .button {
    align-self: flex-start;
}

.section--gallery-inner .title.title--inner h2 {
    font-size: 30px;
    color: var(--primary-color);
}

.section--location--details.section--building--details .title h2 {
    font-size: 40px;
}

.hero-slider__item.slick-slide img {
    height: 100%;
}


.tab-content .section--higlight h2 {
    font-size: 40px;
}

.section--building-features .intro-details {
    padding-left: 0;
}

.highlight-text .button {
    display: inline-block;
}

.hero-slider__item.vimeo iframe {
    width: 100%;
    height: 120%;
}

.hero-slider__item.vimeo {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: url('/uploads/images/homepage-banner-new-01.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-slider__item.vimeo iframe,
.hero-slider__item.vimeo object,
.hero-slider__item.vimeo embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section--instagram {
    padding-top: 90px;
}

.section--instagram .title {
    margin-bottom: 70px;
}

.section--instagram .title h2 {
    font-size: 42px;
}

.section--instagram .title h2>a {
    color: var(--text-dark);
}

.bsc-widget-button.bsc-bottom-left.bsc-margin-small.bsc-shadow-hover.bsc-square.bsc-regular.bsc-yellow {
    margin: 0;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    font-family: var(--font-primary);
    color: var(--text-light) !important;
    font-size: 15px;
    text-align: center;
    padding: 16px 40px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.bsc-widget-button.bsc-bottom-left.bsc-margin-small.bsc-shadow-hover.bsc-square.bsc-regular.bsc-yellow:hover {
    background-color: var(--hover-color) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--hover-color) !important;
    transition: 0.3s;
}

div.bsc-criteria,
div.bsc-footer {
    background-color: var(--primary-color) !important;
}

a.bsc-criteria-dec,
a.bsc-criteria-inc,
a.bsc-search {
    background-color: #000 !important;
    border: 0 !important;
    box-shadow: none;
    border-radius: 3px !important;
}

div.bsc-date:hover {
    background-color: var(--hover-color) !important;
}

div.bsc-date:hover span.bsc-rate {
    color: var(--text-light) !important;
}

.bsc-card * {
    font-family: var(--font-primary) !important;
}

.form input.highlight-form-field[type="text"],
form input.highlight-form-field[type="password"],
.coupon-field input.highlight-form-field {
    border: 1px solid #c50b37;
}

#introText {
    opacity: 1;
    transition: 0.3s;
}

.wrapper {
    max-width: 85%;
    margin: 0 auto;
}

.flex-row {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-content: flex-end;
    align-content: flex-end;
}

.testimonials-container {
    padding-top: 80px;
}

.testimonials-container h2 {font-size: 40px;font-family: var(--font-secondary);color: var(--secondary-color);font-weight: 700; margin-bottom: 30px;}

.testimonials-container .wrapper.flex-row {
    align-items: flex-start;
}

.testimonials-container .testimonial-item {
    width: 22%;
    padding: 50px 0;
    min-height: 380px;
    position: relative;
}

/* .testimonials-container .testimonial-item .testimonial-text {
    max-height: 280px;
    overflow: hidden;
    position: relative;
} */

/* .testimonials-container .testimonial-item .testimonial-text::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
   background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%); *
    width: 100%;
    height: 4em;
} */

.testimonial-bottom {position: absolute; bottom: 0;}

.testimonials-container .testimonial-item .readmore {
    margin: 10px 0;
}

.testimonial-item h2 {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3.2px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 15px;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.765;
    margin-bottom: 15px;
}

.testimonial-item p a {
    color: var(--primary-color);
}

.testimonial-item .extra {
    padding: 10px;
    background-color: #eee;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
}


.full-testimonial {
    max-width: 800px !important;
}

.full-testimonial h2 {
    text-align: left;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 10px;
    align-items: stretch;
}

.photo {
    transition: 0.4s;
    background-color: transparent;
    height: 280px;
    cursor: pointer;
}

.photo.is-active {
    width: 800px;
    height: auto;
    margin: 0 auto;
}

.photo a>img {
    pointer-events: none;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: grayscale(0.3);
    opacity: 1;
    transition: 0.4s;
}

.photo a:hover>img {
    opacity: 0.45;
}

.gallery.is-expanded {
    overflow: hidden;
    cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/344846/oie_11142375wYwgAkG.png"), auto;
}

.gallery.is-expanded>.photo:not(.is-active) {
    pointer-events: none;
    opacity: 0.2;
    transform: scale(0.8) skewX(6deg);
}

.photo.is-active {
    pointer-events: none;
    position: relative;
    z-index: 1;
    transition-duration: 0.5s;
}

.photo.is-active>img {
    filter: grayscale(0);
    opacity: 1;
}


.loading {
    display: inline-block;
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 164px;
    text-align: center;
    height: 64px;
}

.loading-animation {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.loading-animation>div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loading-animation>div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.loading>span {
    position: absolute;
    top: 114%;
    color: #fff;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 1.5;
}

@-webkit-keyframes ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.top-banner {padding: 20px; background: #402226;}
.top-banner p {text-align: center; color: #fff; margin: 0;}
.top-banner p a {color: inherit;}

.error-page-container {padding: 100px 0;}
.error-page-container article {max-width: 800px; margin: 0 auto; text-align: center;}
.error-page-container article h1 { font-size: 48px; font-family: var(--font-secondary); margin: 10px 0 30px; color: var(--secondary-color); font-weight: 700;}
.error-page-container article p {font-family: var(--font-primary); color: var(--text-dark); font-size: 23px; line-height: 1.8; font-weight: 400;}
.error-page-container article p .button {display: inline-block; margin-top: 30px;}

.main-menu-new {margin: 0 auto; display: flex;}

.specials-item-note {max-width: 85%; margin: 0 auto;}
.specials-item-note p {text-align: left; font-size: 17px;color: var(--secondary-color);line-height: 1.765;margin: 20px 0 10px 0;}
.specials-item-note ul p {margin: 0;}
.specials-item-note h2 {text-align: left; font-size: 48px;font-family: var(--font-secondary);margin: 10px 0 30px;color: var(--secondary-color);font-weight: 700;}
.specials-item-note ul {margin: auto;padding: 20px 70px 0 20px;font-size: 20px;}

.specials-item-note h3 {font-size: 30px;text-align: left; color: var(--primary-color);font-family: var(--font-secondary);font-weight: 700;}
.specials-item-note a {color: var(--primary-color);text-decoration: underline;}
.specials-item-note a:visited {text-decoration: none;}

.notes-split {display: flex;margin-top: 30px;}
.notes-left {width: 50%;}
.notes-right {width: 50%;}

.notes-left h3 {font-size: 16px;color: var(--primary-color);text-transform: uppercase;letter-spacing: 3.2px;font-weight: 700;font-family: var(--font-primary);}

.container-reverse {max-width: 70%;padding: 40px 15px 0 12px;margin: 0 auto;}
.rates-info {display: flex;flex-flow: column wrap;justify-content: center;height: 100%;padding-left: 50px;}
.rates-img {padding-right: 50px;}
.rates-info h2 {font-size: 38px;font-family: var(--font-secondary);margin: 10px 0 30px;color: var(--secondary-color);font-weight: 700;}
.rates-info h3 {font-size: 16px;color: var(--primary-color);text-transform: uppercase;letter-spacing: 3.2px;font-weight: 700;font-family: var(--font-primary);}
.rates-info p {font-size: 17px;line-height: 1.765;margin-bottom: 30px;}
.rates-info a {color: var(--primary-color);text-decoration: underline;}
.rates-info a:visited {text-decoration: none;}
.columns-reverse {display: flex;flex-flow: row wrap;margin-left: -15px;margin-right: -15px;}
