@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900&family=Roboto+Condensed&subset=latin-ext');

html, body {
    min-height: 100%;
    position: relative;
    color: #333;
    font-family: "Roboto Condensed";
}

div.site {
    min-height: 100vh;
}

a {
    transition: all .3s;
}

.wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}

:root {
    --main: #c19461;
    --gold: #c19461;
}

/* TOP */

#top {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    background-color: #FFF;
}

#top a {
    display: inline-block;
    color: #000;
    font-family: "Roboto Condensed";
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1px;
    padding: 0;
    margin: 0;
}
#top a:hover {
    color: var(--main);
    text-decoration: none;
}
#top a i {
    color: var(--main);
    font-size: 10px;
    font-weight: 700;
    padding-right: 4px;
}

#top .social a {
    text-transform: uppercase;
}
#top .social a:not(:last-of-type) {
    margin-right: 15px;
}
#top .social a i {
    font-size: 12px;
}

/* HEADER */

#header {
    position: fixed;
    top: 20px;
    width: 100%;
    transition: all .3s;
    z-index: 999;
}
#header.fixed {
    top: 0;
    background-color: #FFF;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .05);
}
#header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 95%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 95%);
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    position: absolute;
    top: 20px; left: 0;
}
.homepage #header::before {
    background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
#header.fixed::before {
    display: none;
}
#header > * {
    position: relative;
    z-index: 9;
}

#header .logo img {
    max-height: 120px;
    transition: all .3s;
}
#header .logo img.fixed {
    display: none;
}
#header.fixed .logo img.fixed {
    display: block;
    max-height: 90px;
}
#header.fixed .logo img:not(.fixed) {
    display: none;
}

#header .phone {
    padding: 30px 0 27px 25px;
    border-left: 1px solid #f2f2f2;
}
#header .phone a {
    position: relative;
    display: inline-block;
    color: var(--main);
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 2px 0 3px 0;
    margin: 0;
    border-bottom: 2px solid transparent;
}
#header .phone a:hover {
    text-decoration: none;
    border-color: var(--main);
}

#header .contact a {
    display: inline-block;
    height: 59px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 57px;
    letter-spacing: 0;
    padding: 0 40px;
    margin: 0 0 0 25px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 3px;
}
#header .contact a:hover {
    color: var(--gold);
    text-decoration: none;
    background-color: transparent;
}

/* NAV */

.navigation {
    width: 465px;
}

.navbar {
    padding: 0;
    margin: 0 30px;
}
.navbar .nav li {
    position: relative;
    margin: 0 12px;
}
.navbar.navbar-1 .nav li:nth-child(n+5) {
    display: none;
}
.navbar.navbar-2 .nav li {
    display: none;
}
.navbar.navbar-2 .nav li:nth-last-child(-n+3) {
    display: block;
}
.navbar .nav li a {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid transparent;
}
#header.fixed .navbar .nav li a {
    color: #000;
}
.navbar .nav li.current a {
    color: var(--gold);
    text-decoration: none;
    border-bottom-color: var(--gold);
}
.navbar .nav li:hover a {
    text-decoration: none;
    border-bottom-color: var(--gold);
}

.navbar .nav li .nav-child {
    width: 230px;
    list-style: none;
    position: absolute;
    top: 30px;
    left: -20px;
    padding: 5px 20px;
    background-color: #FFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    visibility: hidden;
    opacity: 0;
    z-index: -1111;
}
.navbar .nav li .nav-child::before {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    position: absolute;
    top: -15px;
    left: 0;
}
.navbar .nav li:hover .nav-child {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}
.navbar .nav li .nav-child li {
    margin: 15px 0;
}
.navbar .nav li .nav-child li a {
    display: block;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
    border-bottom: 0;
}
.navbar .nav li .nav-child li a:hover {
    color: var(--gold);
}

/* SLIDER */

#slider ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#slider h1 {
    color: #FFF;
    font-size: 70px;
    font-weight: 900;
    line-height: 70px;
    letter-spacing: -1px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .25);
    padding: 0;
    margin: 0;
}
#slider p {
    color: rgba(255, 255, 255, .8);
    font-size: 36px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .25);
    padding: 15px 0 0 0;
    margin: 0;
}

.subpage #slider,
.subpage #slider li {
    height: 390px;
    overflow: hidden;
}
.subpage #slider li img {
    position: relative;
    top: -50%;
}

/* BOOKING */

#booking-area {
    position: relative;
    padding-bottom: 30px;
    background-color: rgb(193 148 97 / 50%);
    z-index: 99;
}
.homepage #booking-area {
    top: -150px;
    padding-bottom: 0;
    margin-bottom: -86px;
    background-color: transparent;
}
#booking-area #kwh-widget.l-kwh-widget {
    background-color: rgba(255, 255, 255, .4);
}
#booking-area #kwh-widget .c-kwh-widget__btn {
    font-weight: 700;
    background-color: #c19461;
}
#booking-area #kwh-widget .c-kwh-widget__btn:hover {
    background-color: #6ab4e9;
}

/* ABOUT */

#about {
    width: calc(100% - 140px);
    margin: 0 auto;
    background-color: rgba(106, 180, 233, .1);
}

#about .headline p {
    color: var(--gold);
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#about .headline p::after {
    content: "";
    display: block;
    width: 210px;
    height: 13px;
    margin-top: 20px;
    background-color: var(--main);
}

#about .content {
    padding-left: 80px;
}
#about .content p {
    color: #333;
    font-size: 19px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0;
    padding: 0;
}
#about .content a {
    display: inline-block;
    position: relative;
    color: var(--main);
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 2px 0;
    margin: 20px 0 0 0;
    border-bottom: 1px solid var(--main);
    transition: all .3s;
}
#about .content a:hover {
    text-decoration: none;
    border-bottom-color: var(--gold);
}

/* BOXES */

#boxes .headline h2 {
    color: #000;
    font-size: 50px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#boxes .headline h2::after {
    content: "";
    display: block;
    width: 210px;
    height: 13px;
    margin-top: 30px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--main);
}

#boxes .box:nth-child(n+5) {
    margin-top: 60px;
}
#boxes .box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
#boxes .box a:hover {
    text-decoration: none;
}

#boxes .box .content {
    flex: 1;
    text-align: center;
}
#boxes .box .content .photo {
    width: 100%;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    transition: all .3s;
}
#boxes .box a:hover .content .photo {
    transform: scale(1.05);
}
#boxes .box .content h3 {
    color: var(--main);
    font-size: 38px;
    font-weight: 800;
    line-height: 42px;
    letter-spacing: 0;
    padding: 25px 0 0 0;
    margin: 0;
}
#boxes .box .content p {  
    color: #333;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0;
    padding: 15px 30px 0 30px;
    margin: 0;
}
#boxes .box a:hover .learn-more {
    border-bottom-color: var(--main);
}

/* CONTACT */
 
#contact {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: rgb(193 148 97 / 28%);
}

#contact .content {
    position: relative;
    z-index: 4;
}
#contact .content h3 {
    color: var(--gold);
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 0;
    padding: 0 0 10px 0;
    margin: 0;
}
#contact .content p {
    color: #333;
    font-size: 21px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

#contact .buttons {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#contact .buttons a {
    display: inline-block;
    width: 400px;
    height: 69px;
    font-size: 21px;
    font-weight: 600;
    line-height: 66px;
    letter-spacing: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    border-width: 2px;
    border-style: solid;
    border-radius: 3px;
    z-index: 4;
}
#contact .buttons a span {
    color: var(--dark);
    font-weight: 400;
}
#contact .buttons a:hover {
    text-decoration: none;
    background-color: transparent !important;
}

#contact .buttons a.now {
    color: #FFF;
    background-color: var(--main);
    border-color: var(--main);
}
#contact .buttons a.now:hover {
    color: var(--main);
}

#contact .buttons a.phone {
    color: var(--main);
    margin-top: 5px;
    background-color: #FFF;
    border-color: #FFF;
}
#contact .buttons a.phone u {
    text-decoration: none;
    border-bottom: 1px solid var(--main);
}

/* PHOTO + TEXT */

#textbox {
    overflow: hidden;
}

#textbox .row:nth-child(even) { 
    flex-direction: row-reverse;
}

#textbox .photo {
    flex: 0 0 calc(50% + 160px);
    max-width: calc(50% + 160px);
    margin-left: -160px;
    padding-right: 0;
}
#textbox .row:nth-child(even) .photo {
    padding-right: 15px;
    padding-left: 0;
    margin-left: 0;
    margin-right: -160px;
}
#textbox .photo > div {
    display: block;
    width: 100%;
    height: 540px;
    background-size: cover;
    background-position: top center;
}

#textbox .content {
    position: relative;
    padding-left: 90px;
}
#textbox .row:nth-child(even) .content {
    padding-left: 15px;
    padding-right: 90px;
}
#textbox .content h2 {
    color: var(--dark);
    font-size: 45px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#textbox .content h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 10px;
    margin: 18px 0 25px 0;
    background-color: var(--main);
}
#textbox .content p {
    color: #333;
    font-size: 18px;
    font-weight: 300;
    line-height: 29px;
    letter-spacing: 0;
    padding: 0 0 27px 0;
    margin: 0;
}
#textbox .content a {
    display: inline-block;
    position: relative;
    color: var(--main);
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 2px 0;
    margin: 0;
    border-bottom: 1px solid var(--main);
    transition: all .3s;
}
#textbox .content a:hover {
    text-decoration: none;
    border-bottom-color: var(--gold);
}

/* MAP */

.map {
    font-size: 0;
    overflow: hidden;
}
.map iframe {
    margin-top: -60px;
}

/* FOOTER */

/* #footer {
    background-color: #f2f2f2;
} */

#footer h4 {
    position: relative;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 10px 0 0 0;
    margin: 0;
}
#footer h4::after {
    content: "";
    display: block;
    width: 55px;
    height: 5px;
    margin: 9px 0 11px 0;
    background-color: var(--main);
}

#footer .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}
#footer .links ul li,
#footer .contact .box address {
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
#footer .links ul li a {
    color: #333;
}
#footer .links ul li a:hover {
    color: #000;
    text-underline-offset: 3px;
}

#footer .contact .box a {
    display: inline-block;
    color: var(--main);
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--main);
}
#footer .contact .box a:hover {
    text-decoration: none;
    border-bottom-color: var(--gold);
}

#footer .row.row-2 {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}
/* #footer .row.row-2::before {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background-color: #d3cece;
    position: absolute;
    top: 0; left: 15px;
} */

#footer .copyright p {
    color: #666;
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

/* SUBPAGE */ 

.subpage main {
    position: relative;
    margin-top: -390px;
    z-index: 99;
}

.page-header {
    text-align: center;
    padding-top: 180px !important;
    padding-bottom: 50px !important;
    background-color: rgb(193 148 97 / 50%);
}
.page-header h1 {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.item-page h1, 
.item-page h2,
.item-page h3,
.item-page h4,
.item-page h5 {
    padding: 20px 0;
}

.item-page h1, .item-page h2 {
    color: var(--gold);
    font-size: 33px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0;
}
.item-page h3 {
    color: var(--gold);
    font-size: 29px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0;
}
.item-page h4 {
    color: var(--gold);
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.23px;
}
.item-page h5, .item-page h6 {
    color: var(--gold);
}

.item-page .article-info {
    display: none;
}

.item-page p,
.item-page ul li,
.item-page ol li {
    color: #333;
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    padding: 0;
}
.item-page p:last-of-type {
    margin-bottom: 0;
}
.item-page p strong {
    font-weight: 700;
}

.item-page img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.item-page a {
    color: var(--main);
}

.wa a {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.5s ease 0s;
    position: fixed;
    bottom: 25px;
    right: 40px;
    background-color: rgb(77, 194, 71) !important;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    z-index: 999;
}

.blog .row.row-0 {
    margin-top: -25px;
}
.blog .post {
    margin-top: 25px;
}
.blog .item a:hover {
    text-decoration: none;
}
.blog .item .item-image {
    height: 230px;
}
.blog .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog .item .content a {
    display: block;
    padding: 25px 30px;
    border: 1px solid #ddd;
}
.blog .item .content a:hover {
    background-color: rgb(193 148 97 / 15%);
} 
.blog .item .content h3 {
    color: var(--main);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 15px 0;
    margin: 0;
}
.blog .item .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0.18px;
    padding: 0;
    margin: 0;
    overflow: hidden;
} 