<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
Theme Name: Kea
Theme URI: https://www.cssigniter.com/themes/kea/
Author: CSSIgniter
Author URI: https://www.cssigniter.com/
Description: Hotel Theme for WordPress
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kea
*/

/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Hero Area
.. 05. Modules
.. 06. Footer
.. 07. Comments
.. 08. Widgets Styling
.. 09. WordPress defaults
.. .. 09a. Default styles
.. .. 09b. Gutenberg
.. 10. Mobile Menu
.. 11. External Plugins
.. 12. Grid Effects
.. 13. Utilities
.. 14. Global Mediaqueries
*/

@-webkit-keyframes rot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes rot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* -----------------------------------------
	01. General
----------------------------------------- */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: inherit;
}

*::before,
*::after {
  box-sizing: inherit;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

[hidden] {
  display: none !important;
}

/* Basic Typography
=================================== */

body {
  line-height: 1.625;
  font-size: 16px;
  background-color: #fff;
  color: #4b4b4b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: normal;
  margin: 0 0 30px;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  color: #242424;
  letter-spacing: -1px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0 0 20px;
}

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

a {
  -webkit-transition: color .18s ease, background-color .18s ease, border-color .18s ease;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
  color: #caad2a;
  text-decoration: none;
}

a:hover {
  color: #272727;
  text-decoration: none;
}

a:focus {
  outline: 1px dotted #caad2a;
}

b,
strong {
  font-weight: 500;
}

.group::after {
  content: "";
  display: table;
  clear: both;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* General Element Styling
=================================== */

/* Reset figure margin from normalize.css */

figure {
  margin: 0;
}

/* Lists */

ul,
ol {
  padding-left: 20px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dl {
  margin: 0 0 20px;
}

dt {
  font-weight: 500;
}

dd {
  margin: 0 0 15px;
}

mark {
  background: none;
  text-color: inherit;
}

/* Blockquotes */

blockquote {
  margin: 20px 0;
  padding-left: 15px;
  border-left: 3px solid #ebebeb;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
}

blockquote cite {
  display: block;
  margin: 10px 0 0;
  color: rgba(75, 75, 75, 0.8);
  font-size: 14px;
  font-style: normal;
}

/* Tables */

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  font-weight: 500;
}

.entry-content table {
  border-width: 1px 0 0 1px;
  margin-bottom: 24px;
}

.entry-content th,
.entry-content td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-content caption,
.entry-content th,
.entry-content td {
  font-weight: normal;
  text-align: left;
  padding: 5px;
  vertical-align: middle;
}

.entry-content th {
  border-width: 0 1px 1px 0;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 85%;
}

.entry-content td {
  border-width: 0 1px 1px 0;
}

/* Code */

code,
kbd,
tt,
var,
samp,
pre {
  font-family: monospace, serif;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-style: normal;
}

pre {
  margin: 15px 0;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: auto;
}

/* Various */

address {
  margin: 0 0 15px;
  font-style: normal;
  line-height: inherit;
}

/* Embeds and iframes
=================================== */

embed,
iframe,
object,
video,
audio {
  margin-bottom: 15px;
  max-width: 100%;
  border: 0;
}

p &gt; embed,
p &gt; iframe,
p &gt; object,
p &gt; audio,
p &gt; video,
span &gt; embed,
span &gt; iframe,
span &gt; object,
span &gt; audio,
span &gt; video {
  margin-bottom: 0;
}

#map *,
.map * {
  max-width: none !important;
}

/* General Form Styling
=================================== */

legend {
  font-family: inherit;
}

label {
  display: block;
  margin: 0 0 8px;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 13px;
}

input,
textarea,
select {
  display: inline-block;
  font-size: 15px;
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding: 6px 12px;
  line-height: normal;
  border: 1px solid #ebebeb;
  background-color: #fff;
  background-image: none;
  font-family: inherit;
  color: #4b4b4b;
  -webkit-transition: border-color .18s ease;
  transition: border-color .18s ease;
  box-shadow: 0 3px 1px #f3f3f3;
  border-radius: 0;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  outline: none;
  border-color: #c2c2c2;
}

textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-size: 9px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
  background-position: right .75rem center;
  background-repeat: no-repeat;
}

select::-ms-expand {
  background-color: transparent;
  border: 0;
}

input[type="search"] {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  height: auto;
  resize: vertical;
}

select {
  max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 4px 0 0;
  line-height: normal;
  width: auto;
  height: auto;
}

fieldset {
  margin: 0 0 15px;
  padding: 0;
  border: 0;
  min-width: 0;
}

/* Placeholder text color */

::-webkit-input-placeholder {
  font-weight: normal;
  opacity: .8;
}

:-moz-placeholder {
  font-weight: normal;
  opacity: .8;
}

::-moz-placeholder {
  font-weight: normal;
  opacity: .8;
}

:-ms-input-placeholder {
  font-weight: normal;
  opacity: .8;
}

/* Buttons
=================================== */

.btn,
.button,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button[type="submit"] {
  display: inline-block;
  font-weight: normal;
  margin: 0;
  line-height: normal;
  border: 0;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0;
  width: auto;
  height: auto;
  background-image: none;
  color: #4b4b4b;
  border: 2px solid #caad2a;
  background: none;
  padding: 13px 40px;
  font-size: 14px;
}

.btn.disabled,
.btn:disabled,
.button.disabled,
.button:disabled,
.comment-reply-link.disabled,
.comment-reply-link:disabled,
input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
button[type="submit"].disabled,
button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.btn:hover,
.button:hover,
.comment-reply-link:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button[type="submit"]:hover {
  text-decoration: none;
  color: #fff;
  background-color: #d6b938;
}

.btn:focus,
.button:focus,
.comment-reply-link:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button[type="submit"]:focus {
  outline: 0;
  box-shadow: 0 0 10px rgba(202, 173, 42, 0.7);
}

.btn .fa,
.button .fa,
.comment-reply-link .fa,
input[type="submit"] .fa,
input[type="reset"] .fa,
button[type="submit"] .fa {
  margin-right: 5px;
}

.btn-sm {
  padding: 10px 28px 9px;
  font-size: 12px;
}

.btn-lg {
  padding: 17px 58px;
  font-size: 14px;
  border-width: 3px;
}

.btn-block {
  min-width: 100%;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}

/* Magnific Popup Overrides
=================================== */

.mfp-bg {
  background-color: #000;
}

.mfp-preloader {
  color: #fff;
}

.mfp-preloader a {
  color: #fff;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-container:not(.mfp-s-error) .mfp-preloader {
  border: 6px solid rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.875);
  border-radius: 100%;
  height: 40px;
  width: 40px;
  -webkit-animation: rot .8s infinite linear;
  animation: rot .8s infinite linear;
  background-color: transparent;
  text-indent: -999em;
  margin: 0 auto;
}

button.mfp-close,
button.mfp-arrow {
  border: 0;
  opacity: 1;
}

button.mfp-close:hover,
button.mfp-arrow:hover {
  background: none;
  border: 0;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
}

.mfp-arrow {
  line-height: .3;
}

.mfp-arrow::before,
.mfp-arrow::after {
  border: 0;
}

.mfp-arrow::after {
  font-family: FontAwesome;
  font-size: 70px;
  color: #fff;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mpf-a {
  content: "\f105";
}

.mfp-arrow-left::after,
.mfp-arrow-left .mpf-a {
  content: "\f104";
}

.mfp-bottom-bar {
  color: #fff;
  font-size: 13px;
  padding: 10px 0 0;
  opacity: .7;
}

.mfp-bottom-bar .mfp-title,
.mfp-bottom-bar .mfp-counter {
  color: currentColor;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */

.nav {
  display: block;
}

.navigation-main {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
}

.navigation-main::after {
  content: "";
  display: table;
  clear: both;
}

.head-mast [class^="col-lg-12"] .navigation-main {
  margin-top: 10px;
}

.navigation-main li {
  position: relative;
}

.navigation-main &gt; li {
  display: inline-block;
}

.navigation-main a {
  display: block;
  white-space: nowrap;
}

.navigation-main ul {
  text-align: left;
  position: absolute;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
  transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
  transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s;
  transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

.navigation-main ul ul {
  top: -7px;
  left: 100%;
  margin: 0;
  -webkit-transform: translate(-10px, 0);
  transform: translate(-10px, 0);
}

.navigation-main li:hover &gt; ul {
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  visibility: visible;
  opacity: 1;
}

.navigation-main li:hover ul {
  z-index: 15;
}

.navigation-main &gt; li:hover &gt; ul {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.navigation-main li li:hover &gt; ul {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.navigation-main &gt; .nav-open-left ul {
  right: 0;
}

.navigation-main &gt; .nav-open-left ul ul {
  right: 100%;
  left: auto;
}

.navigation-main li .nav-open-left ul {
  right: 100%;
  left: auto;
}

.navigation-main li .nav-open-left.menu-item-has-children &gt; a::after {
  content: "\f0d9";
  font-size: 12px;
}

.navigation-main li.nav-open-left .menu-item-has-children &gt; a::after {
  content: "\f0d9";
  font-size: 12px;
}

.navigation-main ul {
  padding: 7px;
  list-style: none;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  margin-left: -7px;
}

.navigation-main a {
  position: relative;
  color: #242424;
  font-size: 12px;
}

.navigation-main &gt; li &gt; a {
  padding: 10px 0;
  margin: 0 15px;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 2px solid transparent;
}

.over-background .navigation-main &gt; li &gt; a {
  color: #fff;
}

.navigation-main &gt; li:hover &gt; a,
.navigation-main &gt; li &gt; a:focus,
.navigation-main &gt; .current-menu-item &gt; a,
.navigation-main &gt; .current-menu-parent &gt; a,
.navigation-main &gt; .current-menu-ancestor &gt; a {
  border-color: #caad2a;
}

.navigation-main li li a {
  padding: 9px 15px;
  font-size: 12px;
}

.navigation-main li li:hover &gt; a,
.navigation-main li li &gt; a:focus,
.navigation-main li .current-menu-item &gt; a,
.navigation-main li .current-menu-parent &gt; a,
.navigation-main li .current-menu-ancestor &gt; a {
  background-color: #272727;
  color: #fff;
}

.navigation-main .menu-item-has-children &gt; a::after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 10px;
  position: relative;
  top: -5px;
  right: -4px;
  line-height: normal;
}

.navigation-main li .menu-item-has-children &gt; a {
  padding-right: 25px;
}

.navigation-main li .menu-item-has-children &gt; a::after {
  content: "\f0da";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
}

.navigation-main .nav-button &gt; a {
  border: 2px solid #caad2a;
  padding: 12px 30px;
  margin-left: 10px;
  font-size: 12px;
}

.navigation-main .nav-button &gt; a::before {
  display: none;
}

.navigation-main .nav-button &gt; a:hover {
  background-color: #caad2a;
  color: #fff;
}

.navigation-main .nav-button:last-child &gt; a {
  margin-right: 0;
}

.navigation-main .mega-menu &gt; ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation-main .mega-menu &gt; ul &gt; li &gt; a {
  font-weight: 500;
  font-size: 1.05em;
}

.navigation-main .mega-menu &gt; ul &gt; li &gt; a,
.navigation-main .mega-menu &gt; ul &gt; li &gt; a:focus,
.navigation-main .mega-menu &gt; ul &gt; li.current-menu-item &gt; a,
.navigation-main .mega-menu &gt; ul &gt; li.current-menu-parent &gt; a,
.navigation-main .mega-menu &gt; ul &gt; li.current-menu-ancestor &gt; a {
  background-color: transparent;
  color: initial;
}

.navigation-main .mega-menu &gt; ul ul {
  display: block;
  opacity: 1;
  box-shadow: none;
  padding: 0;
  margin: 0;
  position: static;
  background: none;
  min-width: 180px;
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

.navigation-main .mega-menu &gt; ul a::after {
  display: none;
}

.navigation-main .mega-menu:hover ul ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  transform: none;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.navigation-main-right {
  text-align: right;
}

.navigation-main-right &gt; li:last-child ul {
  right: 0;
}

.navigation-main-right &gt; li:last-child ul ul {
  left: auto;
  right: 100%;
}

.navigation-main-right &gt; li:last-child .menu-item-has-children &gt; a::after {
  content: "\f0d9";
  font-size: 12px;
}

/* -----------------------------------------
	03. Header
----------------------------------------- */

.header {
  position: relative;
  z-index: 20;
}

.header-overlaid {
  position: absolute;
  width: 100%;
}

.site-logo {
  font-weight: 400;
  font-size: 36px;
  line-height: normal;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  color: #242424;
  letter-spacing: -1px;
  margin: 0;
  color: inherit;
}

.site-logo a {
  color: inherit;
}

.site-tagline {
  font-size: 14px;
  margin: 0;
  line-height: normal;
}

.head-intro {
  font-size: 13px;
  margin: 0;
  color: #fff;
  background-color: #272727;
  padding: 10px 0;
}

.head-intro a {
  color: inherit;
}

.head-intro-info span {
  margin-right: 20px;
}

.head-intro-info i {
  color: #caad2a;
  margin-right: 5px;
  font-size: 1.25em;
  position: relative;
  top: 1px;
}

.head-intro-addons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.head-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.head-search:not(:only-child)::before {
  content: "\007c";
  margin: 0 15px;
  opacity: .5;
}

.head-search-form {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .25s ease;
  transition: -webkit-transform .25s ease;
  transition: transform .25s ease;
  transition: transform .25s ease, -webkit-transform .25s ease;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  z-index: 25;
}

.head-search-form.head-search-expanded {
  max-width: 100%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.head-search-input {
  height: 56px;
}

.head-mast {
  padding: 15px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  border-bottom: 1px solid #ebebeb;
}

.head-mast.over-background {
  color: #fff;
  border: 0;
}

.head-sticky.is-stuck {
  z-index: 99;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #ebebeb;
}

.head-sticky.is-stuck.over-background {
  background-color: rgba(39, 39, 39, 0.8);
  border: 0;
}

/* -----------------------------------------
	04. Hero Area
----------------------------------------- */

/* Basic Styles
=================================== */

.page-hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 190px 0 50px;
  background-color: #272727;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  background-color: rgba(39, 39, 39, 0.5);
}

.slick-initialized .page-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-hero .btn {
  margin-top: 45px;
  color: inherit;
}

.page-hero-lg {
  height: 100vh;
  overflow: hidden;
  text-align: center;
  padding: 90px 0;
}

.page-hero-slideshow .page-hero-lg {
  height: 100%;
}

.page-hero-align-center {
  text-align: center;
}

.page-hero-align-left {
  text-align: left;
}

.page-hero-align-right {
  text-align: right;
}

.page-hero-align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-hero-align-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-hero-align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.page-hero-content {
  position: relative;
  z-index: 15;
}

.page-hero-title {
  margin: 0;
  font-size: 42px;
  line-height: 1;
}

.page-hero .page-hero-title {
  color: inherit;
}

.page-hero-lg .page-hero-title {
  font-size: 72px;
}

.page-hero-subtitle {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.page-hero-lg .page-hero-subtitle {
  font-size: 20px;
}

/* Video Backgrounds
=================================== */

.ci-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.ci-video-wrap.visible .ci-video-background {
  opacity: 1;
}

.ci-video-wrap.visible::before {
  display: none;
}

.ci-video-wrap::before {
  border: 6px solid rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.875);
  border-radius: 100%;
  height: 40px;
  width: 40px;
  -webkit-animation: rot .8s infinite linear;
  animation: rot .8s infinite linear;
  content: "";
  position: absolute;
  bottom: 50px;
  z-index: 1000;
  left: 50%;
  margin-left: -20px;
}

.ci-video-background {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .45s ease;
  transition: opacity .45s ease;
  height: 300%;
  top: -100%;
}

.ci-video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Slideshow
=================================== */

.page-hero-slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.page-hero-slideshow .slick-list,
.page-hero-slideshow .slick-track {
  height: 100%;
}

.page-hero-slideshow .slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.kea-slick-slider .slick-arrow {
  display: inline-block;
  font-weight: normal;
  margin: 0;
  line-height: normal;
  border: 0;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0;
  width: auto;
  height: auto;
  background-image: none;
  color: #4b4b4b;
  border: 2px solid #caad2a;
  background: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1001;
  width: 60px;
  height: 60px;
  font-size: 36px;
  padding: 0;
  text-align: center;
  line-height: 44px;
  background: none;
  border: 0;
  color: #caad2a;
}

.kea-slick-slider .slick-arrow.disabled,
.kea-slick-slider .slick-arrow:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.kea-slick-slider .slick-arrow:hover {
  text-decoration: none;
  color: #fff;
  background-color: #d6b938;
}

.kea-slick-slider .slick-arrow:focus {
  outline: 0;
  box-shadow: 0 0 10px rgba(202, 173, 42, 0.7);
}

.kea-slick-slider .slick-arrow .fa {
  margin-right: 5px;
}


.kea-slick-slider .slick-arrow:hover {
  background-color: #caad2a;
  color: #fff;
}

.kea-slick-slider .slick-arrow:focus {
  box-shadow: none;
}

.kea-slick-slider .slick-arrow .fa {
  margin: 0;
}

.kea-slick-slider .slick-next {
  right: 0;
  text-indent: 2px;
}

.kea-slick-slider .slick-next .fa {
  position: relative;
  left: 1px;
}

.kea-slick-slider .slick-prev {
  left: 0;
  text-indent: 2px;
}

.kea-slick-slider .slick-prev .fa {
  position: relative;
  left: -3px;
}

.kea-slick-slider .slick-dots {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  width: 100%;
  bottom: 40px;
}

.kea-slick-slider .slick-dots li {
  display: inline-block;
  margin: 0 3px;
}

.kea-slick-slider .slick-dots button {
  position: relative;
  text-indent: -999em;
  padding: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  border: 0;
  outline: 0;
}

.kea-slick-slider .slick-dots .slick-active button {
  background-color: #caad2a;
}

.hero-room-slideshow:not(.slick-initialized) &gt; div:not(:first-child) {
  display: none;
}

.hero-room-slideshow .slick-dots {
  bottom: 30px;
}

.hero-room-slideshow .slick-arrow {
  width: 44px;
  height: 44px;
  background-color: #fff;
  color: #caad2a;
  font-size: 24px;
}

.hero-room-slideshow .slick-prev {
  left: 19px;
}

.hero-room-slideshow .slick-next {
  right: 19px;
}

/* -----------------------------------------
	05. Modules
----------------------------------------- */

/* General Layout
=================================== */

.main {
  padding: 70px 0;
}

/* Sections
=================================== */

.widget-sections {
  padding: 0 !important;
}

.widget-section {
  padding: 70px 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.widget-section:not(.widget-section-padded) + .widget-section:not(.widget-section-padded) {
  margin-top: -70px;
}

.widget-section.widget-section-no-pad-bottom {
  padding-bottom: 0;
}

.footer-widget-sections .widget-section:first-child:not(.widget-section-padded) {
  padding-top: 0;
}

.widget-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.widget-section-parallax {
  background-attachment: fixed;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-size: 36px;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  font-size: 18px;
}

.section-subtitle a {
  color: #4b4b4b;
}

/* Entry Styles
=================================== */

.entry {
  margin: 0 0 100px;
}

.entry:only-of-type {
  margin-bottom: 0;
}

.entry-header {
  margin-bottom: 50px;
}

.entry-title {
  font-size: 32px;
  margin-bottom: 5px;
}

.entry-title a {
  color: #272727;
}

.entry-title a:hover {
  color: #caad2a;
}

.entry-meta {
  font-size: 13px;
}

.entry-meta a {
  color: #272727;
}

.entry-item-content .entry-meta {
  margin-top: -5px;
  margin-bottom: 13px;
}

.entry-meta span::after {
  content: "\007c";
  margin: 0 4px;
  opacity: .5;
}

.entry-meta span:last-child::after {
  display: none;
}

.entry-block-meta {
  font-size: 15px;
  margin-top: 10px;
}

.entry-item-content .entry-block-meta {
  margin-top: 0;
}

.entry-block-meta span {
  margin-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.entry-block-meta span::after {
  display: none;
}

.entry-block-meta span .fa {
  min-width: 20px;
  text-align: center;
  margin-right: 5px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  opacity: .4;
  font-size: 13px;
}

.entry-block-meta span b {
  margin-right: 5px;
}

.entry-thumb {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.entry-thumb img {
  border: solid 1px #ebebeb;
  padding: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.entry-thumb img:hover {
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
  border-color: #c2c2c2;
}

.entry-thumb.alignnone,
.entry-thumb.alignleft,
.entry-thumb.alignright,
.entry-thumb.aligncenter {
  margin-top: 0;
}

.entry-content::after {
  content: "";
  display: table;
  clear: both;
}

.entry-content + .row-items {
  margin-top: 30px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 30px 0 20px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
  margin-top: 0;
}

.entry-content img {
  border: solid 1px #ebebeb;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.entry-content a:hover &gt; img {
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
  border-color: #c2c2c2;
}

.entry-content .fluid-width-video-wrapper,
.entry-content audio,
.entry-content video,
.entry-content blockquote {
  margin: 40px 0;
}

.entry-content .fluid-width-video-wrapper:first-child,
.entry-content audio:first-child,
.entry-content video:first-child,
.entry-content blockquote:first-child {
  margin-top: 0;
}

.entry-content .fluid-width-video-wrapper:last-child,
.entry-content audio:last-child,
.entry-content video:last-child,
.entry-content blockquote:last-child {
  margin-bottom: 0;
}

.entry-content blockquote {
  background-color: #f7f7f7;
  border-radius: 3px;
  padding: 30px;
  margin-left: 85px;
  font-size: 20px;
  line-height: 1.3;
  color: #272727;
  position: relative;
  border: 0;
}

.entry-content blockquote::before {
  content: "\201C";
  font-family: Georgia, sans-serif;
  color: #caad2a;
  position: absolute;
  font-size: 128px;
  line-height: 1;
  left: -90px;
  top: 25px;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-tags {
  margin-top: 25px;
}

.entry-content-intro {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #272727;
}

.entry-more-btn {
  margin-top: 25px;
}

.entry-author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 75px 0;
  background-color: #f7f7f7;
  border-radius: 3px;
  padding: 30px;
}

.entry-author-box p:last-child {
  margin-bottom: 0;
}

.entry-author-thumbnail {
  width: 150px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 30px;
}

.entry-author-thumbnail img {
  border-radius: 3px;
}

.entry-author-title {
  margin-bottom: 0;
}

.entry-related {
  margin-top: 70px;
  margin-bottom: 70px;
}

.entry-related .section-heading {
  text-align: left;
  margin-bottom: 30px;
}

.entry-related .section-title {
  font-size: 28px;
}

/* Items &amp; Item Listings
=================================== */

.row-items {
  margin-bottom: -30px;
}

.row-items.no-gutters {
  margin-bottom: 0;
}

.entry-item {
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  padding: 20px 20px 30px;
  text-align: center;
  border: solid 1px #ebebeb;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.no-gutters .entry-item {
  margin-bottom: 0;
}

.entry-item:hover {
  background: #fff;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
  border-color: #c2c2c2;
}

.entry-item-thumb {
  margin-bottom: 20px;
}

.entry-item-title {
  font-size: 22px;
  margin-bottom: 3px;
  line-height: 1.2;
}

.entry-item-title a {
  color: #272727;
}

.entry-item-title a:hover {
  color: #caad2a;
}

.entry-item-excerpt {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.466666667;
}

.entry-room-price {
  font-size: 12px;
  color: #9c9c9c;
}

.entry-room-offer {
  position: absolute;
  top: 25px;
  right: -37px;
  padding: 5px 35px;
  background: #272727;
  color: #caad2a;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -.05em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 101;
}

.entry-item-read-more {
  font-size: 13px;
  display: inline-block;
  padding: 12px 25px;
  line-height: 1;
  border-radius: 1px;
  color: #272727;
  border: solid 2px #caad2a;
}

.entry-item-read-more .fa {
  margin-left: 10px;
  color: #272727;
  font-size: 1.1em;
  font-weight: 500;
  position: relative;
  top: 1px;
}

.entry-item-read-more:hover {
  background: #caad2a;
  border-color: #caad2a;
  color: #fff;
}

.entry-item-read-more:hover .fa {
  color: #fff;
}

.entry-room-amenities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 30px 0 20px;
  padding: 0;
  border: solid #ebebeb;
  border-width: 1px 0 0 1px;
}

.entry-room-amenities li {
  display: inline-block;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  border: solid #ebebeb;
  border-width: 0 1px 1px 0;
  width: 25%;
}

.entry-room-amenities li span {
  line-height: 1;
  font-size: 36px;
  display: block;
}

.room-amenities-4 li {
  width: 25%;
}

.room-amenities-5 li {
  width: 20%;
}

.room-amenities-6 li {
  width: 16.66667%;
}

.room-amenities-7 li {
  width: 14.28571%;
}

.room-amenities-8 li {
  width: 12.5%;
}

.room-amenities-9 li {
  width: 11.11111%;
}

.room-amenities-10 li {
  width: 10%;
}

/* Single column entry items in media layout */

.entry-item-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 1.466666667;
}

.entry-item-media:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.entry-item-media-thumb {
  width: 90px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 10px;
}

.entry-item-media-title {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: normal;
}

.entry-item-media-title a {
  color: #272727;
}

.entry-item-media-title a:hover {
  color: #caad2a;
}

.entry-item-media-excerpt {
  margin-bottom: 0;
  font-size: 12px;
  color: #9c9c9c;
}

.item-filters {
  margin-bottom: 30px;
}

.item-filter {
  display: inline-block;
  font-weight: normal;
  margin: 0;
  line-height: normal;
  border: 0;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0;
  width: auto;
  height: auto;
  background-image: none;
  color: #4b4b4b;
  border: 2px solid #caad2a;
  background: none;
  padding: 10px 28px 9px;
  font-size: 12px;
  margin: 0 5px 5px;
}

.item-filter.disabled,
.item-filter:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.item-filter:hover {
  text-decoration: none;
  color: #fff;
  background-color: #d6b938;
}

.item-filter:focus {
  outline: 0;
  box-shadow: 0 0 10px rgba(202, 173, 42, 0.7);
}

.item-filter .fa {
  margin-right: 5px;
}

.item-filter:first-child {
  margin-left: 0;
}

.item-filter:active {
  box-shadow: none;
}

.filter-active {
  color: #fff;
  border-color: #caad2a;
  background-color: #caad2a;
}

.filter-active:focus {
  box-shadow: none;
}

/* Hero Slideshow
=================================== */

.hero-room-slideshow-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-room-slideshow {
  margin-bottom: 50px;
  border: solid 1px #ebebeb;
  padding: 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.hero-room-slideshow:hover {
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
  border-color: #c2c2c2;
}

/* Testimonial Items
=================================== */

.item-testimonial {
  margin: 0 0 70px;
  padding: 0;
  border: 0;
  text-decoration: none;
}

.item-testimonial-content {
  background-color: #f7f7f7;
  border-radius: 3px;
  padding: 30px 30px 30px 85px;
  font-size: 20px;
  line-height: 1.3;
  color: #272727;
  position: relative;
}

.item-testimonial-content::before {
  content: "\201C";
  font-family: Georgia, sans-serif;
  color: #caad2a;
  position: absolute;
  font-size: 96px;
  line-height: 1;
  left: 30px;
  top: 25px;
}

.item-testimonial-content p:last-child {
  margin-bottom: 0;
}

.item-testimonial-cite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0 0 85px;
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}

.item-testimonial-cite-thumb {
  width: 64px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 15px;
  border-radius: 50%;
}

.item-testimonial-cite-name {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

.item-testimonial-cite-subtitle {
  display: block;
  font-size: 13px;
}

/* Pagination
=================================== */

.navigation {
  padding: 40px 0 0;
  margin: 40px 0 0;
  border-top: 1px solid #ebebeb;
}

.navigation a,
.navigation .page-numbers {
  display: inline-block;
  padding: 4px 14px;
  font-size: 15px;
  margin: 0 2px 3px;
  border: 2px solid transparent;
  color: #272727;
  background: none;
}

.navigation .current {
  background-color: #caad2a;
  color: #fff;
}

.navigation a:hover {
  border-color: #caad2a;
}

.navigation .nav-links::after {
  content: "";
  display: table;
  clear: both;
}

.navigation .nav-previous {
  float: left;
}

.navigation .nav-next {
  float: right;
}

.comment-navigation {
  margin: 30px 0;
}

.page-links {
  margin: 35px 0;
}

.page-links .page-number {
  display: inline-block;
  padding: 4px 14px;
  font-size: 14px !important;
  margin-bottom: 3px;
  border: 1px solid #4b4b4b;
  color: #4b4b4b;
  background: none;
}

.page-links .page-number:hover {
  border-color: #caad2a;
  color: #4b4b4b;
  background-color: #caad2a;
}

.page-links &gt; .page-number {
  border-color: #caad2a;
  color: #4b4b4b;
  background-color: #caad2a;
}

.page-links &gt; a:first-child,
.page-links &gt; span:first-child {
  margin-left: 10px;
}

/* Button Items
========================================= */

.item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  line-height: normal;
  background-color: #fff;
  color: #4b4b4b;
  border: solid 2px #caad2a;
  margin-bottom: 10px;
}

.item-btn:hover {
  background-color: #caad2a;
  color: #fff;
}

.item-btn:last-child {
  margin-bottom: 0;
}

.item-btn-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 12px;
  line-height: 1;
  font-size: 32px;
}

.item-btn-sm .item-btn-icon {
  font-size: inherit;
}

.item-btn-title {
  font-size: 15px;
  display: block;
}

.item-btn-subtitle {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: .65;
}

/* Social Icons
=================================== */

.list-social-icons {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .list-social-icons,
.footer-widgets .list-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: solid #ebebeb;
  border-width: 1px 0 0 1px;
}

.sidebar .list-social-icons li,
.footer-widgets .list-social-icons li {
  width: calc(100% / 5);
  border: solid #ebebeb;
  border-width: 0 1px 1px 0;
}

.list-social-icons li {
  display: inline-block;
}

.header .list-social-icons li {
  margin: 3px 0;
}

.social-icon {
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 46px;
  background-color: transparent;
  color: #4b4b4b;
}

.social-icon:hover {
  color: #fff;
  background-color: #caad2a;
  border-color: #caad2a;
}

.header .social-icon,
.footer-info .social-icon {
  color: inherit;
  font-size: inherit;
  width: auto;
  height: auto;
  border: 0;
  background: none;
  margin-left: 8px;
  line-height: normal;
}

.header .social-icon:hover,
.footer-info .social-icon:hover {
  color: inherit;
  background: none;
}

/* Styled data tables
=================================== */

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive th,
.table-responsive td {
  white-space: nowrap;
}

.entry-content .table-responsive {
  margin-top: 30px;
  margin-bottom: 30px;
}

.entry-content .table-responsive:first-child {
  margin-top: 0;
}

.entry-content .table-responsive:last-child {
  margin-bottom: 0;
}

.entry-content .table-responsive table {
  margin-bottom: 0;
}

table.table-styled {
  font-size: 14px;
  font-weight: 400;
  margin: 35px 0;
  width: 100%;
  max-width: 100%;
}

table.table-styled:first-child {
  margin-top: 0;
}

table.table-styled.no-footer {
  border-bottom: 1px solid #dedede;
}

table.table-styled th,
table.table-styled td {
  text-align: left;
  padding: 5px;
}

table.table-styled thead th {
  font-size: 14px;
  border: 0;
  background-color: #272727;
  color: #fff;
  text-transform: none;
  font-weight: 400;
  padding: 10px 18px 10px 10px;
}

table.table-styled thead th:first-child {
  border-top-left-radius: 4px;
}

table.table-styled thead th:last-child {
  border-top-right-radius: 4px;
}

table.table-styled thead .sorting,
table.table-styled thead .sorting_asc,
table.table-styled thead .sorting_desc {
  position: relative;
  background-image: none;
}

table.table-styled thead .sorting::after,
table.table-styled thead .sorting_asc::after,
table.table-styled thead .sorting_desc::after {
  content: "\f0dc";
  font-family: FontAwesome;
  opacity: .7;
  position: absolute;
  color: #fff;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

table.table-styled thead .sorting_asc::after {
  content: "\f0de";
  opacity: 1;
}

table.table-styled thead .sorting_desc::after {
  content: "\f0dd";
  opacity: 1;
}

table.table-styled tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

table.table-styled tbody td {
  border: 0;
  padding: 10px;
}

table.table-styled-lg thead th {
  padding: 12px 15px;
  font-size: 16px;
}

table.table-styled-lg tbody td {
  font-size: 15px;
  padding: 15px 15px;
}

/* -----------------------------------------
	06. Footer
----------------------------------------- */

.footer {
  border-top: 1px solid #ebebeb;
  background-color: #f7f7f7;
  color: #4b4b4b;
}

.footer-widgets {
  padding: 70px 0 10px;
}

.footer-info {
  padding: 15px 0;
  font-size: 13px;
  background: #272727;
  color: #fff;
}

.footer-copy {
  margin-bottom: 0;
}

/* -----------------------------------------
	07. Comments
----------------------------------------- */

.comments-area {
  margin: 30px 0 0;
}

.comments-title,
.comment-reply-title {
  margin-bottom: 30px;
}

.comment-list,
.commentlist {
  margin: 0;
  list-style: none;
  padding: 0;
}

.comment-list .children,
.commentlist .children {
  list-style: none;
}

.comment-list ol,
.commentlist ol {
  list-style: none;
}

.comment-list .comment-body,
.commentlist .comment-body {
  margin-bottom: 20px;
  padding-top: 20px;
}

.comment-list &gt; .comment:first-child &gt; .comment-body,
.commentlist &gt; .comment:first-child &gt; .comment-body {
  border-top: 0;
  padding-top: 0;
}

.post-comments {
  margin: 0 0 45px;
}

.comment-author .fn {
  font-weight: 500;
}

.comment-author .avatar {
  width: 64px;
  height: 64px;
  float: left;
  margin: 0 15px 15px 0;
  overflow: visible;
  border-radius: 3px;
}

.comment-content {
  overflow: hidden;
  zoom: 1;
  font-size: 13px;
}

.comment-metadata {
  font-size: 12px;
  margin: 0 0 5px;
}

.comment-reply-link {
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-left: 80px;
  height: auto;
  width: auto;
}

.bypostauthor &gt; article .fn::before {
  font-family: FontAwesome;
  content: "\f005";
  margin: 0 2px 0 -2px;
  position: relative;
  top: -1px;
  font-size: 11px;
}

.comment-respond {
  margin-top: 60px;
}

#cancel-comment-reply-link {
  font-size: 13px;
  font-weight: normal;
  margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
  font-size: 12px;
  line-height: 1.5;
  opacity: .75;
}

.form-submit {
  margin-bottom: 0;
  margin-top: 40px;
}

.no-comments {
  border: 1px solid #ebebeb;
  padding: 15px;
  margin-top: 40px;
  text-align: center;
}

/* -----------------------------------------
	08. Widgets Styling
----------------------------------------- */

.widget {
  margin: 0 0 60px;
  font-size: 15px;
  line-height: 1.466666667;
  /* Nullify bottom margin for last elements in widgets and sidebars */
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.widget p:last-child {
  margin-bottom: 0;
}

.widget select {
  width: 100%;
}

.widget-title {
  padding: 8px 0;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #272727;
  border-bottom: 1px solid #c2c2c2;
}

.widget-title label {
  text-transform: none;
  display: block;
  font-size: inherit;
  margin: 0;
  line-height: inherit;
  font-weight: inherit;
}

/* WIDGET: Theme - Contact Widget
========================================= */

.ci-contact-widget-title {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 15px;
}

.ci-contact-widget-items {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.ci-contact-widget-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}

.ci-contact-widget-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.ci-contact-widget-item i {
  text-align: center;
  min-width: 26px;
  margin-right: 5px;
}

/* WIDGET: Theme - Opening Hours
========================================= */

.ci-schedule-widget-intro {
  margin-bottom: 20px;
}

.ci-schedule-widget-table {
  text-align: left;
}

.ci-schedule-widget-table th,
.ci-schedule-widget-table td {
  padding: 10px 0;
}

.ci-schedule-widget-table tr {
  border-bottom: 1px solid #ebebeb;
}

/* WIDGET: Theme - Callout
========================================= */

.ci-box-callout {
  padding: 25px;
  border: 1px solid #c2c2c2;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
}

.ci-box-callout p:last-child {
  margin-bottom: 0;
}

.ci-box-callout-title {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: #272727;
}

/* WIDGET: Hero Homepage Widget
========================================= */

.widget-section-hero {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-section-hero.widget-section-hero-right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
}

.widget-section-hero.widget-section-hero-left {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.widget-section-hero .section-heading {
  text-align: inherit;
}

.widget-section-hero .section-title {
  font-size: 42px;
  margin-bottom: 10px;
  color: currentColor;
}

.widget-section-hero .section-subtitle {
  max-width: 600px;
  color: currentColor;
}

.widget-section-hero .btn {
  color: currentColor;
}

/* WIDGET: List Widgets
========================================= */

.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_product_categories ul,
.widget_layered_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_product_categories ul ul,
.widget_layered_nav ul ul {
  margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_product_categories li,
.widget_layered_nav li {
  line-height: normal;
  display: block;
  position: relative;
}

.widget_meta li a,
.widget_pages li a,
.widget_categories li a,
.widget_archive li a,
.widget_product_categories li a,
.widget_layered_nav li a {
  display: block;
  color: #4b4b4b;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 7px;
  padding-bottom: 7px;
  position: relative;
}

.widget_meta li a:hover,
.widget_pages li a:hover,
.widget_categories li a:hover,
.widget_archive li a:hover,
.widget_product_categories li a:hover,
.widget_layered_nav li a:hover {
  border-color: #caad2a;
}

.widget_meta li .count,
.widget_meta li .ci-count,
.widget_pages li .count,
.widget_pages li .ci-count,
.widget_categories li .count,
.widget_categories li .ci-count,
.widget_archive li .count,
.widget_archive li .ci-count,
.widget_product_categories li .count,
.widget_product_categories li .ci-count,
.widget_layered_nav li .count,
.widget_layered_nav li .ci-count {
  position: absolute;
  right: 0;
  top: 0;
  font-size: .9em;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_nav_menu ul ul {
  margin-left: 15px;
}

.widget_nav_menu &gt; div &gt; ul {
  border: solid 1px #c2c2c2;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
}

.widget_nav_menu li {
  display: block;
}

.widget_nav_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  line-height: normal;
  color: #242424;
  font-size: 15px;
}

.widget_nav_menu a:hover {
  background-color: #272727;
  color: #fff;
}

.widget_nav_menu .sub-menu a {
  font-size: 12px;
  padding: 10px;
}

.widget_nav_menu .current-menu-item &gt; a {
  background-color: #272727;
  color: #fff;
}

.widget_nav_menu .fa {
  min-width: 20px;
  margin-right: 3px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  line-height: 1;
  font-size: 14px;
}

.widget_recent_comments ul,
.widget_rss ul,
.widget_recent_entries ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget_recent_comments li,
.widget_rss li,
.widget_recent_entries li {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid #ebebeb;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.entry-tags a,
.tag-cloud-link {
  display: inline-block;
  font-weight: normal;
  margin: 0;
  line-height: normal;
  border: 0;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  transition: .18s background-color ease, .18s color ease, .18s border-color ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0;
  width: auto;
  height: auto;
  background-image: none;
  color: #4b4b4b;
  border: 2px solid #caad2a;
  background: none;
  padding: 5px 15px;
  font-size: 11px;
  margin-bottom: 5px;
}

.entry-tags a.disabled,
.entry-tags a:disabled,
.tag-cloud-link.disabled,
.tag-cloud-link:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.entry-tags a:hover,
.tag-cloud-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #d6b938;
}

.entry-tags a:focus,
.tag-cloud-link:focus {
  outline: 0;
  box-shadow: 0 0 10px rgba(202, 173, 42, 0.7);
}

.entry-tags a .fa,
.tag-cloud-link .fa {
  margin-right: 5px;
}

.tag-cloud-link {
  font-size: 11px !important;
}

/* WIDGET: #RSS
========================================= */

.rss-date {
  display: block;
  font-size: 12px;
  margin: 10px 0;
}

/* WIDGET: #Search
========================================= */

.searchform &gt; div {
  position: relative;
}

.searchform .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border: 0;
  padding: 0 20px;
  background: none;
  color: inherit;
  border-radius: 0;
}

/* WIDGET: #Text Widget
========================================= */

.widget_text p:last-child {
  margin-bottom: 0;
}

/* WIDGET: #Calendar
================================================== */

#wp-calendar {
  width: 100%;
}

#wp-calendar a {
  font-weight: 500;
  font-style: italic;
}

#wp-calendar caption {
  text-align: left;
  margin-top: 10px;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
  padding: 9px;
}

#wp-calendar thead {
  font-size: 10px;
}

#wp-calendar thead th {
  background: rgba(0, 0, 0, 0.1);
  font-weight: 500;
  padding: 8px;
}

#wp-calendar tbody td {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 3px;
}

#wp-calendar tbody td:hover {
  background: rgba(0, 0, 0, 0.1);
}

#wp-calendar tbody .pad {
  background: none;
}

#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}

#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

/* -----------------------------------------
	09a. WordPress Defaults - Default Styles
----------------------------------------- */

/* WordPress Galleries
=================================== */

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  margin: 40px 0;
}

.gallery:first-child {
  margin-top: 0;
}

.gallery:last-child {
  margin-bottom: 0;
}

.gallery-item {
  margin-bottom: 10px;
}

.gallery-item img {
  width: 100%;
  max-width: 100%;
}

.gallery-item img:hover {
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
  border-color: #c2c2c2;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-1 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14.28571%;
  flex: 0 0 14.28571%;
  max-width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12.5%;
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 11.11111%;
  flex: 0 0 11.11111%;
  max-width: 11.11111%;
}

.gallery-caption {
  background-color: #fff;
  color: #4b4b4b;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 0 5px;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  text-align: left;
  width: calc(100% - 20px);
  -webkit-transition: opacity .18s ease;
  transition: opacity .18s ease;
}

.gallery-caption::before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* WordPress Classes
=================================== */

/* Alignment */

.alignnone {
  margin: 5px 0 20px;
}

p .alignnone {
  margin-bottom: 0;
}

.aligncenter {
  display: block;
  margin: 7px auto;
}

.alignright {
  float: right;
  margin: 7px 0 7px 24px;
}

.alignleft {
  float: left;
  margin: 7px 24px 7px 0;
}

/* Captions */

.wp-caption {
  max-width: 100%;
  margin-bottom: 15px;
}

.wp-caption img {
  height: auto;
  margin: 0;
  width: auto;
}

.wp-caption .wp-caption-text {
  font-size: 12px;
  line-height: 17px;
  margin: 3px 0 5px;
  padding: 5px 0 0;
  text-align: left;
}

.sticky {
  /* Provide sticky styles if necessary */
}

/* -----------------------------------------
	09b. WordPress Defaults - Gutenberg
----------------------------------------- */

/* Block: Media &amp; Text
========================================= */

.wp-block-media-text__media img {
  border: 0;
  padding: 0;
}

/* -----------------------------------------
	10. Mobile menu
----------------------------------------- */

.mm-page {
  position: static;
}

.mm-opened .mm-page {
  position: relative;
}

#mobilemenu {
  display: none;
}

.mobile-nav-trigger {
  float: right;
  text-transform: uppercase;
  font-weight: 500;
  display: none;
  color: currentColor;
}

.mobile-nav-trigger:hover {
  color: inherit;
}

/* -----------------------------------------
	11. External Plugins
----------------------------------------- */

/* Jetpack Sharing */

.sharedaddy {
  margin-top: 30px;
}

/* WP Instagram */

.null-instagram-feed p {
  padding-top: 10px;
}

.null-instagram-feed a {
  color: #4b4b4b;
}

.footer .null-instagram-feed a {
  color: currentColor;
}

.instagram-pics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.instagram-pics li {
  width: 33.33333333333%;
}

.instagram-pics li a {
  display: block;
  color: #4b4b4b;
  padding: 5px;
  border: 1px solid #ebebeb;
}

.instagram-pics li a:hover {
  background: #fff;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.06);
  border-color: #c2c2c2;
}

.widget-section .instagram-pics {
  margin-left: -15px;
  margin-right: -15px;
}

.widget-section .instagram-pics li {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.widget-section .instagram-pics li a {
  padding: 10px;
}

/* Elementor */

.elementor .elementor-widget .entry-item .entry-item-thumb {
  margin-bottom: 15px;
}

/* Contact Form 7 */

input.wpcf7-submit {
  display: block;
  width: 100%;
  margin-top: 25px;
}

div.wpcf7-response-output {
  margin: 0;
  padding: 15px;
  font-size: 12px;
}

div.wpcf7-mail-sent-ok {
  border: solid 2px #4b4b4b;
}

div.wpcf7 .ajax-loader {
  display: none;
}

.page-template-front-page .wpcf7-form,
.page-template-builder .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.page-template-front-page .wpcf7-form p,
.page-template-builder .wpcf7-form p {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 5px 15px 5px;
}

.page-template-front-page .wpcf7-form div.wpcf7-response-output,
.page-template-builder .wpcf7-form div.wpcf7-response-output {
  width: 100%;
  margin: 15px 5px 0 5px;
  display: none;
}

.page-template-front-page .wpcf7-form span.wpcf7-form-control-wrap,
.page-template-builder .wpcf7-form span.wpcf7-form-control-wrap {
  padding-bottom: 40px;
}

.page-template-front-page .wpcf7-form span.wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.page-template-builder .wpcf7-form span.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 13px;
}

/* -----------------------------------------
	12. Grid Effects
----------------------------------------- */

.row-effect {
  position: relative;
}

.row-effect::before {
  border: 6px solid rgba(75, 75, 75, 0.35);
  border-top-color: rgba(75, 75, 75, 0.875);
  border-radius: 100%;
  height: 40px;
  width: 40px;
  -webkit-animation: rot .8s infinite linear;
  animation: rot .8s infinite linear;
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  margin-left: -20px;
}

.row-effect.row-images-loaded::before {
  display: none;
}

.row-effect &gt; [class^="col"] {
  opacity: 0;
}

.row-effect &gt; [class^="col"].ci-grid-shown {
  opacity: 1;
}

/* Fade In
========================================= */

@-webkit-keyframes ci-fade-in {
  0% {

  }

  100% {
    opacity: 1;
  }
}

@keyframes ci-fade-in {
  0% {

  }

  100% {
    opacity: 1;
  }
}

.row-effect-fade-in .ci-grid-animate {
  -webkit-animation: ci-fade-in .65s ease forwards;
  animation: ci-fade-in .65s ease forwards;
}

/* Move Up
========================================= */

@-webkit-keyframes ci-move-up {
  0% {

  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ci-move-up {
  0% {

  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.row-effect-move-up .ci-grid-animate {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-animation: ci-move-up .65s ease forwards;
  animation: ci-move-up .65s ease forwards;
}

/* Scale Up
========================================= */

@-webkit-keyframes ci-scale-up {
  0% {

  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ci-scale-up {
  0% {

  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.row-effect-scale-up .ci-grid-animate {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: ci-scale-up .65s ease-in-out forwards;
  animation: ci-scale-up .65s ease-in-out forwards;
}

/* Fall Perspective
========================================= */

@-webkit-keyframes ci-fall-perspective {
  0% {

  }

  100% {
    -webkit-transform: translateZ(0) translateY(0) rotateX(0);
    transform: translateZ(0) translateY(0) rotateX(0);
    opacity: 1;
  }
}

@keyframes ci-fall-perspective {
  0% {

  }

  100% {
    -webkit-transform: translateZ(0) translateY(0) rotateX(0);
    transform: translateZ(0) translateY(0) rotateX(0);
    opacity: 1;
  }
}

.row-effect-fall-perspective {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.row-effect-fall-perspective .ci-grid-animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
  transform: translateZ(400px) translateY(300px) rotateX(-90deg);
  -webkit-animation: ci-fall-perspective .8s ease-in-out forwards;
  animation: ci-fall-perspective .8s ease-in-out forwards;
}

/* Fly Up
========================================= */

@-webkit-keyframes ci-fly-up {
  0% {

  }

  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes ci-fly-up {
  0% {

  }

  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

.row-effect-fly-up {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.row-effect-fly-up .ci-grid-animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 50% 50% -300px;
  transform-origin: 50% 50% -300px;
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-animation: ci-fly-up .8s ease-in-out forwards;
  animation: ci-fly-up .8s ease-in-out forwards;
}

/* Flip
========================================= */

@-webkit-keyframes ci-flip {
  0% {

  }

  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes ci-flip {
  0% {

  }

  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

.row-effect-flip {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.row-effect-flip .ci-grid-animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotateX(-80deg);
  transform: rotateX(-80deg);
  -webkit-animation: ci-flip .8s ease-in-out forwards;
  animation: ci-flip .8s ease-in-out forwards;
}

/* Pop Up
========================================= */

@-webkit-keyframes ci-pop-up {
  0% {

  }

  70% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .8;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ci-pop-up {
  0% {

  }

  70% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .8;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.row-effect-pop-up {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.row-effect-pop-up .ci-grid-animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-animation: ci-pop-up .8s ease-in forwards;
  animation: ci-pop-up .8s ease-in forwards;
}

/* -----------------------------------------
	13. Utilities
----------------------------------------- */

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus,
.screen-reader-text-focusable:active,
.screen-reader-text-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden-xs-up {
  display: none !important;
}

.hidden-xl-down {
  display: none !important;
}

/* -----------------------------------------
	14. Global Mediaqueries
----------------------------------------- */

@media (min-width: 576px) {
  .gallery {
    margin-right: -5px;
    margin-left: -5px;
  }

  .gallery-columns-1 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-2 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-3 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-4 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-5 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-6 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-7 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-8 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-9 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .hidden-sm-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .entry-content-column-split {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }

  [class^="col-12"] &gt; .entry-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 20px;
  }

  [class^="col-12"] &gt; .entry-item .entry-item-thumb {
    max-width: 262px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin: 0 30px 0 0;
  }

  .gallery {
    margin-right: -5px;
    margin-left: -5px;
  }

  .gallery-columns-1 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-2 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-3 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-4 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-5 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-6 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-7 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-8 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-9 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .hidden-md-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .page-hero-subtitle {
    max-width: 50%;
  }

  .page-hero-align-center .page-hero-subtitle,
  .text-center .page-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-align-right .page-hero-subtitle,
  .text-right .page-hero-subtitle {
    margin-left: auto;
  }

  .gallery {
    margin-right: -5px;
    margin-left: -5px;
  }

  .gallery-columns-1 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-2 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-3 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-4 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-5 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-6 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-7 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-8 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-9 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .hidden-lg-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .header-fullwidth .container {
    width: 1600px;
  }

  .main &gt; .container &gt; .row &gt; .col-lg-8 {
    padding-right: 45px;
  }

  .main &gt; .container &gt; .row &gt; .push-lg-4 {
    padding-right: 15px;
    padding-left: 45px;
  }

  .footer-fullwidth .container {
    width: 1600px;
  }

  .gallery {
    margin-right: -5px;
    margin-left: -5px;
  }

  .gallery-columns-1 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-2 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-3 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-4 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-5 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-6 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-7 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-8 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .gallery-columns-9 .gallery-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .hidden-xl-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .page-hero-lg .page-hero-title {
    font-size: 62px;
  }

  .hidden-lg-down {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .ci-video-wrap::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .nav {
    display: none;
  }

  .head-sticky.is-stuck {
    position: static !important;
    background-color: inherit;
    padding: 0;
  }

  .head-sticky.is-stuck + div {
    display: none !important;
  }

  .stuck {
    display: none !important;
  }

  .page-hero-lg {
    height: 650px;
  }

  .page-hero-align-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-hero-align-bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-hero-title {
    font-size: 34px;
  }

  .page-hero-lg .page-hero-title {
    font-size: 48px;
  }

  .page-hero-slideshow {
    height: 650px;
  }

  .main {
    padding: 60px 0;
  }

  .sidebar {
    margin-top: 80px;
  }

  .widget-section {
    padding: 60px 0;
  }

  .widget-section:not(.widget-section-padded) + .widget-section:not(.widget-section-padded) {
    margin-top: -60px;
  }

  .entry-author-thumbnail {
    width: 100px;
    margin-right: 15px;
  }

  .item-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .item-filter {
    margin: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 49%;
    flex: 1 0 49%;
  }

  .footer-widgets {
    padding: 60px 0 10px;
  }

  .widget {
    margin-bottom: 50px;
  }

  .gallery-columns-6 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .gallery-columns-7 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .gallery-columns-8 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .gallery-columns-9 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  #mobilemenu {
    display: block;
  }

  .mobile-nav-trigger {
    display: inline-block;
  }

  .widget-section .instagram-pics {
    margin: 0;
  }

  .widget-section .instagram-pics li {
    padding: 0;
    margin: 0;
  }

  .hidden-md-down {
    display: none !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .site-logo {
    font-size: 28px;
  }

  .site-tagline {
    font-size: 12px;
  }

  .head-intro {
    text-align: center;
  }

  .head-intro-info span {
    margin: 0 3px;
  }

  .head-intro-addons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .head-mast {
    padding: 15px 0;
  }

  .page-hero-lg {
    height: 550px;
    padding-top: 160px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .page-hero-lg .page-hero-title {
    font-size: 32px;
  }

  .page-hero-lg .page-hero-subtitle {
    font-size: 16px;
  }

  .page-hero-subtitle {
    font-size: 16px;
  }

  .page-hero-slideshow {
    height: 550px;
  }

  .kea-slick-slider .slick-arrow {
    display: none !important;
    visibility: hidden;
  }

  .kea-slick-slider .slick-dots {
    bottom: 15px;
  }

  .main {
    padding: 50px 0;
  }

  .widget-section {
    padding: 50px 0;
  }

  .widget-section:not(.widget-section-padded) + .widget-section:not(.widget-section-padded) {
    margin-top: -50px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .entry-title {
    font-size: 28px;
  }

  .entry-content blockquote {
    margin-left: 0;
  }

  .entry-content blockquote::before {
    display: none;
  }

  .entry-content .alignleft,
  .entry-content .alignright {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .entry-content-intro {
    font-size: 18px;
  }

  .item-testimonial-content {
    font-size: 18px;
    line-height: 1.5;
  }

  .item-testimonial-cite {
    margin-left: 0;
  }

  .dataTables_wrapper {
    max-width: 100%;
    overflow-y: scroll;
  }

  .footer-widgets {
    padding: 50px 0 10px;
  }

  .comment-list ol,
  .commentlist ol {
    margin: 0;
    padding: 0;
  }

  .comment-reply-link {
    margin: 0;
  }

  .widget {
    margin-bottom: 40px;
  }

  .widget-section-hero .section-title {
    font-size: 28px;
  }

  .gallery-columns-1 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-2 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-3 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-4 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-5 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-6 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-7 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-8 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gallery-columns-9 .gallery-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .alignleft,
  .alignright {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .widget-section .instagram-pics li {
    width: 50%;
  }

  .hidden-sm-down {
    display: none !important;
  }
}

@media (max-width: 575px) {
  input,
  textarea,
  select {
    width: 100%;
  }

  .page-hero .container {
    width: 100%;
  }

  .entry-room-amenities li {
    width: 50%;
  }

  .comment-author .avatar {
    display: none;
  }

  .hidden-xs-down {
    display: none !important;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .page-hero-lg .ci-video-background {
    height: 100%;
    top: 0;
    width: 300%;
    left: -100%;
  }
}</pre></body></html>