/*!
Theme Name: Andros
Theme URI: https://www.cssigniter.com/themes/andros/
Author: CSSIgniter
Author URI: https://www.cssigniter.com/
Description: Hotel Theme for WordPress
Version: 1.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: andros
*/

/* -----------------------------------------
	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
.. 10. Mobile Menu
.. 11. External Plugins
.. 12. Grid Effects
.. 13. Utilities
*/

@-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 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  color: #2f2f2f;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: normal;
  margin: 0 0 20px;
  text-rendering: optimizeLegibility;
  color: #616161;
  text-transform: uppercase;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0 0 15px;
}

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: #bca857;
  text-decoration: none;
}

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

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

.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: bold;
}

dd {
  margin: 0 0 15px;
}

/* Blockquotes */

blockquote {
  margin: 20px 0;
  padding-left: 15px;
  border-left: 3px solid #a5a5a5;
  font-size: 17px;
  font-weight: 300;
}

blockquote cite {
  display: block;
  font-weight: bold;
  font-style: italic;
  margin: 10px 0 0;
  color: rgba(47, 47, 47, 0.8);
  font-size: 14px;
}

/* Tables */

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

.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 th:first-child,
.entry-content td:first-child {
  padding-left: 0;
}

.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: bold;
  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 > embed,
p > iframe,
p > object,
p > audio,
p > video,
span > embed,
span > iframe,
span > object,
span > audio,
span > video {
  margin-bottom: 0;
}

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

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

label {
  display: block;
  margin: 0 0 4px;
  font-weight: normal;
  font-size: 14px;
}

input,
textarea,
select {
  display: inline-block;
  font-size: inherit;
  width: 100%;
  max-width: 100%;
  height: 44px;
  padding: 6px 12px;
  box-shadow: none;
  line-height: normal;
  border: 1px solid #a5a5a5;
  background-color: #fff;
  background-image: none;
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #7f7f7f;
  box-shadow: inset 2px 2px 0 0 #f4f4f4;
}

label input,
label
textarea,
label
select {
  margin-top: 5px;
}

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;
  max-width: 100%;
}

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;
}

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 {
  color: rgba(47, 47, 47, 0.5);
  font-weight: normal;
  opacity: 1;
}

:-moz-placeholder {
  color: rgba(47, 47, 47, 0.5);
  font-weight: normal;
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(47, 47, 47, 0.5);
  font-weight: normal;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(47, 47, 47, 0.5);
  font-weight: normal;
  opacity: 1;
}

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

.btn,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button {
  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;
  text-transform: uppercase;
  color: #fff;
  background-color: #bca857;
  border: 0;
  font-weight: 700;
  padding: 13px 26px;
  font-size: 14px;
}

.btn.disabled,
.btn: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.disabled,
button:disabled {
  cursor: not-allowed;
  opacity: .65;
}

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

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

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 16px;
}

.btn-transparent {
  background-color: transparent;
  border: 2px solid #bca857;
  color: #bca857;
}

.btn-transparent:hover {
  color: #fff;
  border-color: #bca857;
  background-color: #bca857;
}

.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-size: 70px;
  color: #fff;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mpf-a {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.mfp-arrow-left::after,
.mfp-arrow-left .mpf-a {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* -----------------------------------------
	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 > 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);
  margin-left: 12px;
}

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

.navigation-main > li:first-child ul {
  margin-left: 0;
}

.navigation-main li:hover > 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 > li:hover > ul {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

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

.navigation-main ul {
  padding: 12px 0;
  list-style: none;
  background-color: #fff;
  min-width: 170px;
  border-radius: 3px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.navigation-main a {
  position: relative;
  color: #616161;
  text-transform: uppercase;
  font-size: 14px;
}

.navigation-main > li > a {
  padding: 10px 0;
  margin: 0 12px;
}

.navigation-main > li:first-child > a {
  margin-left: 0;
}

.navigation-main > li:hover > a,
.navigation-main > li > a:focus,
.navigation-main > .current-menu-item > a,
.navigation-main > .current-menu-parent > a,
.navigation-main > .current-menu-ancestor > a,
.navigation-main > .current_page_item > a,
.navigation-main > .current_page_ancestor > a {
  color: #2f2f2f;
}

.navigation-main li li a {
  padding: 6px 15px;
  font-size: 13px;
}

.navigation-main li li:hover > a,
.navigation-main li li > a:focus,
.navigation-main li .current-menu-item > a,
.navigation-main li .current-menu-parent > a,
.navigation-main li .current-menu-ancestor > a,
.navigation-main li .current_page_item > a,
.navigation-main li .current_page_ancestor > a {
  color: #2f2f2f;
}

.navigation-main .menu-item-has-children > a::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  position: relative;
  top: -6px;
  right: -3px;
  line-height: normal;
}

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

.navigation-main li .menu-item-has-children > a::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navigation-main .nav-button > a {
  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;
  text-transform: uppercase;
  color: #fff;
  background-color: #bca857;
  border: 0;
  font-weight: 700;
  padding: 9px 20px;
  font-size: 14px;
  margin-left: 10px;
}

.navigation-main .nav-button > a.disabled,
.navigation-main .nav-button > a:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.navigation-main .nav-button > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #b29d47;
}

.navigation-main .nav-button > a:focus {
  outline: 0;
  box-shadow: 0 0 10px rgba(188, 168, 87, 0.7);
}

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

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

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

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

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

.navigation-main-right li .menu-item-has-children > a::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.15em;
}

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

.header {
  position: relative;
  z-index: 20;
  padding: 0;
  border-bottom: 1px solid #f9f9f9;
}

.site-logo {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  letter-spacing: .24em;
  text-transform: uppercase;
  line-height: normal;
}

.site-logo a {
  color: #616161;
}

.site-tagline {
  font-size: 11px;
  margin: 0;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #616161;
}

.head-intro {
  padding: 8px 0;
  font-size: 12px;
  background-color: #f9f9f9;
  color: #616161;
}

.head-intro a {
  color: inherit;
}

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

.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: "";
  height: 12px;
  width: 1px;
  background-color: currentColor;
  margin: 0 15px;
  opacity: .2;
}

.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;
}

.head-sticky {
  will-change: transform;
}

.head-sticky.is-stuck {
  z-index: 99;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.admin-bar .head-sticky.is-stuck {
  top: 32px !important;
}

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

.head-language-selector::before {
  content: "";
  height: 12px;
  width: 1px;
  background-color: currentColor;
  margin: 0 15px;
  opacity: .2;
}

.head-language-dropdown-trigger {
  text-transform: uppercase;
  font-size: 12px;
}

.head-language-dropdown-trigger::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  position: relative;
  top: -3px;
  right: -1px;
  line-height: normal;
}

.head-language-dropdown {
  position: relative;
  z-index: 10;
}

.head-language-dropdown:hover .head-language-dropdown-options {
  -webkit-transition-delay: 0s, 0s, 0s;
  transition-delay: 0s, 0s, 0s;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 5px);
  transform: translate(0, 5px);
}

.head-language-dropdown-options {
  position: absolute;
  list-style: none;
  margin: 0;
  text-align: left;
  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;
  right: 0;
  -webkit-transform: translate(0, 15px);
  transform: translate(0, 15px);
  padding: 12px 0;
  background-color: #fff;
  min-width: 120px;
  border-radius: 3px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.head-language-dropdown-options a {
  display: block;
  padding: 3px 15px;
  text-transform: uppercase;
}

.head-language-dropdown-options a:hover {
  opacity: .8;
}

/* -----------------------------------------
	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: 65px 0;
  background-color: #bca857;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: #fff;
  max-width: 1570px;
  margin: 0 auto;
}

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

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

.page-hero .btn {
  margin-top: 25px;
}

.page-hero-lg {
  height: 800px;
  overflow: hidden;
  text-align: center;
}

.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 {
  color: inherit;
  margin: 0;
  letter-spacing: .25em;
  font-size: 24px;
}

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

.page-hero-subtitle {
  margin: 5px 0 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .15em;
}

/* 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;
  top: 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: 500%;
  top: -100%;
}

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

.page-hero-lg .ci-video-background {
  height: 300%;
}

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

.page-hero-slideshow {
  position: relative;
  height: 800px;
  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;
}

.andros-slick-slider {
  max-width: 1570px;
  margin: 0 auto;
  position: relative;
}

.andros-slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1001;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  font-size: 36px;
  padding: 0;
  text-align: center;
  line-height: normal;
  background: none;
}

.andros-slick-slider .slick-arrow:hover {
  color: #fff;
}

.andros-slick-slider .slick-next {
  right: 15px;
}

.andros-slick-slider .slick-next .fa {
  position: relative;
  left: 2px;
}

.andros-slick-slider .slick-prev {
  left: 15px;
}

.andros-slick-slider .slick-prev .fa {
  position: relative;
  right: 1px;
}

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

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

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

.andros-slick-slider .slick-dots button::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: opacity .18s ease;
  transition: opacity .18s ease;
}

.andros-slick-slider .slick-dots .slick-active button::before {
  opacity: 1;
}

.hero-room-slideshow > div:not(:first-of-type) {
  display: none;
}

.text-theme {
  color: #bca857;
}

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

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

.main {
  padding: 100px 0;
}

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

.widget-sections {
  padding: 0;
}

.widget-section {
  padding: 100px 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: -100px;
}

.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 {
  margin-bottom: 50px;
}

.widget-section .section-heading {
  text-align: center;
}

.section-heading::after {
  content: "";
  width: 30px;
  display: inline-block;
  margin-top: 20px;
  border-bottom: 2px solid #bca857;
}

.section-title {
  margin: 0;
  letter-spacing: .25em;
  font-size: 24px;
}

.section-subtitle {
  margin: 0 0 3px;
  color: #bca857;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .15em;
}

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

.entry {
  margin: 0 0 100px;
}

.single .entry {
  margin-bottom: 0;
}

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

[class^="col-sm-6"] .entry-header,
[class^="col-lg-4"] .entry-header {
  margin-bottom: 25px;
}

.entry-title {
  font-size: 24px;
  letter-spacing: .05em;
  margin-bottom: 5px;
}

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

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

[class^="col-sm-6"] .entry-title,
[class^="col-lg-4"] .entry-title {
  font-size: 20px;
}

.entry-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #616161;
}

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

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

[class^="col-sm-6"] .entry-meta,
[class^="col-lg-4"] .entry-meta {
  font-size: 12px;
}

.entry-thumb {
  margin-bottom: 35px;
}

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

[class^="col-sm-6"] .entry-thumb,
[class^="col-lg-4"] .entry-thumb {
  margin-bottom: 25px;
}

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

.entry-content p {
  margin-bottom: 25px;
}

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

.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 .fluid-width-video-wrapper,
.entry-content audio,
.entry-content video {
  margin: 40px 0;
}

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

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

.entry-content blockquote:not(.slide-testimonial) {
  font-size: 20px;
  position: relative;
  padding-left: 50px;
  border: 0;
  margin: 40px 0;
}

.entry-content blockquote:not(.slide-testimonial):first-child {
  margin-top: 0;
}

.entry-content blockquote:not(.slide-testimonial)::before {
  content: "\00201C";
  font-size: 5em;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 40px;
  color: #bca857;
}

.entry-content-intro {
  font-size: 19px;
  line-height: 1.421052632;
  margin-bottom: 40px;
}

.entry-content-column-split {
  margin: 25px 0;
}

.entry-amenities {
  margin: 30px 0 25px;
  padding: 0;
  list-style-type: none;
}

.entry-amenities li {
  margin-right: 15px;
  margin-bottom: 5px;
  display: inline-block;
}

.entry-amenities li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 7px;
  background-color: #bca857;
  position: relative;
  top: -1px;
}

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

[class^="col-sm-6"] .entry-more-btn,
[class^="col-lg-4"] .entry-more-btn {
  margin-top: 0;
}

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

.entry-author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 70px;
}

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

.entry-author-title {
  margin-bottom: 15px;
  letter-spacing: .15em;
}

.entry-author-subtitle {
  font-size: 14px;
  margin-top: -10px;
}

.section-related {
  margin-top: 65px;
}

.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: 15px 0 45px;
  padding: 0;
  border: solid #a5a5a5;
  border-width: 1px 0 0 1px;
}

.entry-room-amenities li {
  display: inline-block;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  border: solid #a5a5a5;
  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%;
}

/* Items & Item Listings
=================================== */

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

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

.item {
  margin-bottom: 65px;
  position: relative;
}

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

.item-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #bca857;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  padding: 7px 26px;
  text-align: center;
  white-space: nowrap;
}

[class^="col-xl-3"] .item-tooltip {
  font-size: 10px;
}

.item .item-tooltip {
  font-weight: 700;
}

.item-content {
  position: relative;
  background-color: #f9f9f9;
  box-shadow: 0 2px 0 #f4f4f4;
  text-align: center;
  padding: 35px 25px 45px;
}

.widget-section-padded .item-content {
  background-color: #fff;
}

.item-subtitle {
  font-size: 12px;
  letter-spacing: .15em;
  margin-bottom: 0;
  color: #bca857;
  text-transform: uppercase;
}

.item-title {
  font-size: 18px;
  letter-spacing: .15em;
  margin-bottom: 0;
  color: #616161;
  text-transform: uppercase;
  font-weight: 400;
  line-height: normal;
}

[class^="col-xl-3"] .item-title {
  font-size: 16px;
}

.item-read-more-btn {
  position: absolute;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

.item-filter {
  background-color: transparent;
  border: 2px solid #bca857;
  color: #bca857;
  padding: 9px 20px;
  font-size: 14px;
  color: #616161;
  border-color: #616161;
  margin: 0 5px 5px;
}

.item-filter:hover {
  color: #fff;
  border-color: #bca857;
  background-color: #bca857;
}

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

/* Testimonials
=================================== */

.slideshow-testimonials .slick-dots {
  position: static;
  margin-top: 30px;
}

.slideshow-testimonials .slick-dots button {
  background-color: #616161;
}

.slideshow-testimonials .slick-dots button::before {
  border-color: #616161;
}

.entry-content .slideshow-testimonials {
  margin: 40px 0;
}

.slide-testimonial {
  border: 0;
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.25;
  font-style: italic;
  text-align: center;
}

.slide-testimonial p {
  margin-bottom: 30px;
}

.slide-testimonial cite {
  font-size: 18px;
  font-style: normal;
  display: block;
  margin: 0;
  font-weight: 300;
}

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

.navigation {
  margin: 40px 0 0;
  text-align: center;
}

.navigation a,
.navigation .page-numbers {
  display: inline-block;
  padding: 4px 12px 3px;
  font-size: 14px !important;
  margin-bottom: 3px;
  border: 1px solid #616161;
  color: #616161;
  background: none;
  font-weight: 700;
}

.navigation a:hover,
.navigation .current {
  border-color: #bca857;
  color: #fff;
  background-color: #bca857;
}

.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 12px 3px;
  font-size: 14px !important;
  margin-bottom: 3px;
  border: 1px solid #616161;
  color: #616161;
  background: none;
  font-weight: 700;
}

.page-links .page-number:hover {
  border-color: #bca857;
  color: #fff;
  background-color: #bca857;
}

.page-links .current .page-number {
  border-color: #bca857;
  color: #fff;
  background-color: #bca857;
}

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

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

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

.list-social-icons li {
  display: inline-block;
  margin: 3px 5px;
}

.social-icon {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  color: #2f2f2f;
  border-radius: 50%;
}

.social-icon:hover {
  color: #bca857;
}

.header .social-icon {
  color: inherit;
  font-size: inherit;
}

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

.footer {
  border-top: 1px solid #f9f9f9;
}

.footer-widgets {
  padding: 100px 0 40px;
}

.footer-info {
  padding: 10px 0;
  font-size: 12px;
  border-top: 1px solid #f9f9f9;
  background-color: #f9f9f9;
  color: #616161;
}

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

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

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

.comments-title,
.comment-reply-title {
  margin-bottom: 30px;
  letter-spacing: .25em;
  font-size: 24px;
}

.comments-title::after,
.comment-reply-title::after {
  content: "";
  width: 30px;
  display: block;
  margin-top: 20px;
  border-bottom: 2px solid #bca857;
}

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

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

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

.comment-list > .comment:first-child > .comment-body {
  border-top: 0;
  padding-top: 0;
}

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

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

.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-content table,
.comment-content ul,
.comment-content ol {
  margin: 25px 0;
}

.comment-content ul ul,
.comment-content ul ol,
.comment-content ol ul,
.comment-content ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

.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 > article .fn::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 2px 0 -2px;
  position: relative;
  top: -1px;
  font-size: 11px;
}

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

.comment-form > p {
  margin-bottom: 25px;
}

.comment-form > p.comment-subscription-form {
  margin-bottom: 10px;
}

.comment-form > p:last-child {
  margin-bottom: 0;
}

#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;
  text-align: center;
}

.form-submit {
  margin-bottom: 0;
}

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

.comment-form-cookies-consent {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: normal;
}

.comment-form-cookies-consent [type="checkbox"] {
  margin: 2px 0 0;
}

.comment-form-cookies-consent label {
  display: inline-block;
  margin: 0 0 0 8px;
}

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

.widget {
  font-size: 14px;
  line-height: 1.571428571;
  margin: 0 0 60px;
  /* 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-title {
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: none;
}

.widget-title::after {
  content: "";
  border-bottom: 2px solid #bca857;
  width: 10px;
  display: block;
  margin-top: 10px;
}

.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: 600;
  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: 5px;
}

.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 {
  font-weight: 400;
}

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

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

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

.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu 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_nav_menu ul ul {
  margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_nav_menu 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_nav_menu li a {
  display: inline-block;
  margin-bottom: 8px;
  color: #2f2f2f;
}

.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 #a5a5a5;
  font-size: 14px;
}

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

.entry-tags a,
.tag-cloud-link {
  display: inline-block;
  padding: 3px 14px;
  font-size: 12px !important;
  border: 1px solid #2f2f2f;
  color: #2f2f2f;
  margin-bottom: 3px;
}

.entry-tags a:hover,
.tag-cloud-link:hover {
  border-color: #bca857;
  background-color: #bca857;
  color: #fff;
}

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

.searchform > div {
  position: relative;
}

.searchform .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

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

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

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

#wp-calendar {
  width: 100%;
}

#wp-calendar a {
  font-weight: bold;
  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: bold;
  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;
}

/* -----------------------------------------
	09. WordPress Defaults
----------------------------------------- */

/* 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: 50px 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: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: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 0 5px;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: calc(100% - 10px);
  -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 {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 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;
  font-style: italic;
}

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

/* -----------------------------------------
	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: inherit;
}

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

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

/* Jetpack Sharing */

.sharedaddy {
  margin-top: 30px;
}

/* WP Instagram */

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

.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: #2f2f2f;
}

.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;
}

/* Elementor */

.elementor-widget-andros_element .item-subtitle {
  margin-bottom: 0;
}

.elementor-widget-andros_element .item-title {
  font-size: 18px;
  margin: 0;
}

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

.row-effect {
  position: relative;
}

.row-effect::before {
  border: 6px solid rgba(47, 47, 47, 0.35);
  border-top-color: rgba(47, 47, 47, 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 > [class^="col"] {
  opacity: 0;
}

.row-effect > [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;
}

@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;
  }

  .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) {
  .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 > .container > .row > .col-lg-8 {
    padding-right: 45px;
  }

  .main > .container > .row > .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) {
  .site-logo {
    font-size: 20px;
  }

  .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;
    box-shadow: none;
  }

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

  .stuck {
    display: none;
  }

  .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: 22px;
  }

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

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

  .main {
    padding: 70px 0;
  }

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

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

  .entry {
    margin-bottom: 70px;
  }

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

  .item-title {
    font-size: 16px;
  }

  .item-read-more-btn {
    padding: 9px 20px;
    font-size: 14px;
    font-size: 13px;
    bottom: -17px;
  }

  .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%;
    font-size: 13px;
  }

  .slide-testimonial {
    font-size: 20px;
  }

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

  .sidebar {
    margin-top: 65px;
  }

  .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) {
  .site-logo {
    font-size: 18px;
  }

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

  .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;
  }

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

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

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

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

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

  .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-heading {
    margin-bottom: 35px;
  }

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

  .entry {
    margin-bottom: 50px;
  }

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

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

  .entry-content blockquote:not(.slide-testimonial) {
    font-size: 16px;
    padding-left: 40px;
  }

  .item-tooltip {
    font-size: 10px;
  }

  .slide-testimonial cite {
    font-size: 14px;
  }

  .slide-testimonial {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .comment-list .children {
    margin: 0;
    padding: 0;
  }

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

  .widget {
    margin-bottom: 40px;
  }

  .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%;
  }

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

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

@media (max-width: 575px) {
  input,
  textarea,
  select {
    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: 120%;
    top: 0;
    width: 300%;
    left: -100%;
  }
}