@charset "UTF-8";


.q_slide {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 44.6em; /* fix for browsers which doesn't support vh measurment */
    height: 100vh;
    z-index: 1;
}

.q_slide .q_slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
}

.q_slide .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    z-index: 1;
}

.q_slide .grad-btm {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    opacity: .7;
}

.q_slide .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.68);
}

.q_slide .slide.q_current {
    display: block;
}

.q_slide .slide.is-loaded {
    opacity: 1;
}

.q_slide .slide .caption {
    position: absolute;
    left: 50%;
    bottom:35%;
    width: 70%;
  /*  max-width: 480px; */
    text-align: center;
    -webkit-transform: translateX(-50%) translateY(0);
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -o-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

.q_slide .slide .caption h1 {
     letter-spacing: 3px;
	  font-size: 27px;
	font-family: 'Sentinel';
    margin-top: 0px;
    text-transform: uppercase;
    margin-bottom: 0; 
	 font-weight: normal;
}

@media screen and (max-width: 540px) {
    .q_slide .slide .caption h1 {
        font: 700 16px/1.3 'Sentinel';
        letter-spacing: 3px;
    }
}

.q_slide .slide .caption h6 {
 font-family: 'Sentinel';
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 1);
    position: relative;
    font-size: 36px;
    letter-spacing: 3px;
    font-weight: normal;
}

.q_slide .slide .caption .sep {
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    margin: 30px auto;
    display: none;
}

.q_slide .slide .caption p {
    font: 400 14px/1.8 "Open Sans", sans-serif;
    max-width: 400px;
    margin: 0 auto;
    letter-spacing: 1px;
    margin-top: 30px;
}

@media screen and (max-width: 540px) {
    .q_slide .slide .caption p {
        margin-top: 70px;
    }
}

.q_slide .slide .caption .q_magnet {
    padding: 50px 20px 20px;
    display: inline-block;
}

@media screen and (max-width: 540px) {
    .q_slide .slide .caption {
        bottom: 120px;
    }
}

.q_slide .slide .caption.right {
    left: auto;
    right: 10%;
    text-align: right;
}

.q_slide .slide .image-container, .q_slide .slide .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
}

.q_slide .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
    opacity: .8;
}

.q_slide .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.q_slide .slide .btn {
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px 30px;
    color: #fff;
    font: 400 11px/1.3 "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
}

.q_slide .slide .btn:hover {
    background-color: #fff;
    color: #000;
}

.q_slide .slide .btn::before {
    background: #fff;
}

.q_slide .pagination {
    position: absolute;
    left: 10%;
    cursor: default;
    z-index: 2;
    bottom: 10%;
    margin-top: -56px;
}

@media screen and (max-width: 540px) {
    .q_slide .pagination {
        display: none;
    }
}

.q_slide .pagination .item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
    margin: 0 15px;
}

.q_slide .pagination .item + .page {
    margin-left: 0;
}

.q_slide .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 1);
    transition: background 0.2s ease;
    border-radius: 50%;
}

.q_slide .pagination .item::after {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -11px;
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.2s ease;
}

.q_slide .pagination .item:hover::before, .q_slide .pagination .item.q_current::before {
    background-color: #fff;
}

.q_slide .pagination .item:hover::after, .q_slide .pagination .item.q_current:hover::after {
    opacity: 1;
    transform: scale(1);
}

.q_slide .arrows .arrow {
    display: block;
    padding: 20px;
    position: absolute;
    bottom: 40%;
    margin-bottom: -20px;
    cursor: pointer;
    z-index: 3;
    right: 40px;
}

@media screen and (max-width: 540px) {
    .q_slide .arrows .arrow {
        left: 0;
    }
}

.q_slide .arrows .arrow:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 8px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all 0.2s ease;
    transform: scale(0.5);
    opacity: 0;
	 display:none;
}

.q_slide .arrows .arrow:hover:before {
    transform: scale(1);
    opacity: 1;
}

.q_slide .arrows .arrow .svg {
    opacity: 1;
}

.q_slide .arrows .arrow:hover .svg {
    opacity: 1;
}

.q_slide .arrows .prev { 
	margin-right: 70px;
    left: 40px;
}

@media screen and (max-width: 540px) {
    .q_slide .arrows .next {
        left: 50px;
    }
}

.q_slide .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: opacity 0.2s ease;
}

.q_slide.full-width {
    height: 90vh;
    overflow: visible;
}

.q_slide.full-width .image {
    opacity: .8;
}

.q_slide.full-width .arrows .arrow {
    bottom: 0;
    padding: 20px 29px 17px;
    text-align: center;
    cursor: pointer;
    background: #5f5c68;
    display: block;
    width: 11px;
}

.q_slide.full-width .arrows .arrow svg {
    fill: #fff;
}

.q_slide.full-width .arrows .arrow:before {
    display: none;
}

@media screen and (max-width: 540px) {
    .q_slide.full-width .arrows .arrow.next {
        left: 72px;
    }
}

.q_slide.kenburns .slides .slide .image-container .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
    animation: kenburns 30s linear;
    -ms-animation: kenburns 30s linear;
    -webkit-animation: kenburns 30s linear;
    -o-animation: kenburns 30s linear;
    -moz-animation: kenburns 30s linear;
}

@-webkit-keyframes kenburns {
    0% {
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
        transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -moz-transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -moz-transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -moz-transform: scale(1);
    }
}

.block-card-overlap .overlap-wrapper {
    position: relative;
    padding-bottom: 130px;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .overlap-wrapper {
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 768px) {
    .block-card-overlap .overlap-wrapper {
        padding-bottom: 0;
    }
}

.block-card-overlap .box {
    position: absolute;
    top: 60px;
    right: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 10, 40, 0.05);
    z-index: 0;
}

@media screen and (max-width: 540px) {
    .block-card-overlap .box {
        display: none;
    }
}

.block-card-overlap .type-1 .block-entry,
.block-card-overlap .type-3 .block-entry {
    right: 0;
}

.block-card-overlap .type-1 .block-entry .title-line,
.block-card-overlap .type-3 .block-entry .title-line {
    right: -125px;
    transform-origin: right;
    -webkit-transform-origin: right;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .type-1 .block-entry .title-line,
    .block-card-overlap .type-3 .block-entry .title-line {
        left: 90px;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .type-1 .block-entry .title-line,
    .block-card-overlap .type-3 .block-entry .title-line {
        left: 50px;
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .type-1 .block-entry .title-line,
    .block-card-overlap .type-3 .block-entry .title-line {
        left: 40px;
    }
}

.block-card-overlap .type-2,
.block-card-overlap .type-4 {
    -webkit-box-flex-direction: row-reverse;
    -moz-box-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.block-card-overlap .type-2 .block-entry,
.block-card-overlap .type-4 .block-entry {
    left: 0;
}

.block-card-overlap .type-2 .block-entry .inner,
.block-card-overlap .type-4 .block-entry .inner {
    text-align: right;
}

.block-card-overlap .type-2 .block-entry .title-line,
.block-card-overlap .type-4 .block-entry .title-line {
    right: 125px;
    transform-origin: left;
    -webkit-transform-origin: left;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .type-2 .block-entry .title-line,
    .block-card-overlap .type-4 .block-entry .title-line {
        right: 90px;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .type-2 .block-entry .title-line,
    .block-card-overlap .type-4 .block-entry .title-line {
        right: 50px;
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .type-2 .block-entry .title-line,
    .block-card-overlap .type-4 .block-entry .title-line {
        right: 40px;
    }
}

.block-card-overlap .type-2 .block-entry p,
.block-card-overlap .type-4 .block-entry p {
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .block-card-overlap .type-2 {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
}

.block-card-overlap .type-3 .block-entry .title-line {
    background: #679334 65px;
    background: -webkit-linear-gradient(right, #679334 65px, #FFFFFF 65px);
    background: -o-linear-gradient(left, #679334 65px, #FFFFFF 65px);
    background: -moz-linear-gradient(left, #679334 65px, #FFFFFF 65px);
    background: linear-gradient(to left, #679334 65px, #FFFFFF 65px);
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .type-3 .block-entry .title-line {
        background: #679334 45px;
        background: -webkit-linear-gradient(right, #679334 45px, #FFFFFF 45px);
        background: -o-linear-gradient(left, #679334 45px, #FFFFFF 45px);
        background: -moz-linear-gradient(left, #679334 45px, #FFFFFF 45px);
        background: linear-gradient(to left, #679334 45px, #FFFFFF 45px);
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .type-3 .block-entry .title-line {
        background: #679334 20px;
        background: -webkit-linear-gradient(right, #679334 20px, #FFFFFF 20px);
        background: -o-linear-gradient(left, #679334 20px, #FFFFFF 20px);
        background: -moz-linear-gradient(left, #679334 20px, #FFFFFF 20px);
        background: linear-gradient(to left, #679334 20px, #FFFFFF 20px);
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .type-3 .block-entry .title-line {
        background: #679334 15px;
        background: -webkit-linear-gradient(right, #679334 15px, #FFFFFF 15px);
        background: -o-linear-gradient(left, #679334 15px, #FFFFFF 15px);
        background: -moz-linear-gradient(left, #679334 15px, #FFFFFF 15px);
        background: linear-gradient(to left, #679334 15px, #FFFFFF 15px);
    }
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .type-4 .block-entry .title {
        justify-content: flex-end;
        -webkit-justify-content: flex-end;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .type-4 .block-entry .title {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.block-card-overlap .type-4 .block-entry .title-line {
    background: #679334 65px;
    background: -webkit-linear-gradient(left, #679334 65px, #FFFFFF 65px);
    background: -o-linear-gradient(right, #679334 65px, #FFFFFF 65px);
    background: -moz-linear-gradient(right, #679334 65px, #FFFFFF 65px);
    background: linear-gradient(to right, #679334 65px, #FFFFFF 65px);
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .type-4 .block-entry .title-line {
        background: #679334 45px;
        background: -webkit-linear-gradient(left, #679334 45px, #FFFFFF 45px);
        background: -o-linear-gradient(right, #679334 45px, #FFFFFF 45px);
        background: -moz-linear-gradient(right, #679334 45px, #FFFFFF 45px);
        background: linear-gradient(to right, #679334 45px, #FFFFFF 45px);
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .type-4 .block-entry .title-line {
        background: #679334 20px;
        background: -webkit-linear-gradient(left, #679334 20px, #FFFFFF 20px);
        background: -o-linear-gradient(right, #679334 20px, #FFFFFF 20px);
        background: -moz-linear-gradient(right, #679334 20px, #FFFFFF 20px);
        background: linear-gradient(to right, #679334 20px, #FFFFFF 20px);
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .type-4 .block-entry .title-line {
        background: #679334 15px;
        background: -webkit-linear-gradient(left, #679334 15px, #FFFFFF 15px);
        background: -o-linear-gradient(right, #679334 15px, #FFFFFF 15px);
        background: -moz-linear-gradient(right, #679334 15px, #FFFFFF 15px);
        background: linear-gradient(to right, #679334 15px, #FFFFFF 15px);
    }
}

.block-card-overlap .block-picture {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 55%;
}

.block-card-overlap .block-picture.wide {
    width: 95%;
}

@media screen and (max-width: 768px) {
    .block-card-overlap .block-picture {
        width: 100%;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .block-picture {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .block-picture {
        margin-bottom: 15px;
    }
}

.block-card-overlap .block-picture .picture {
    position: relative;
    margin: 0;
    padding: 0 30px 0 20px;
    height: 100%;
}

@media screen and (max-width: 540px) {
    .block-card-overlap .block-picture .picture {
        padding: 0 20px 0 0;
    }
}

.block-card-overlap .block-entry {
    position: absolute;
    margin-top: 80px;
    top: 0;
    width: 54%;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    z-index: 25;
}

@media screen and (max-width: 768px) {
    .block-card-overlap .block-entry {
        width: 70%;
        right: 10%;
        margin-top: 150px;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .block-entry {
        width: calc(100% - 40px);
        position: relative;
        top: 0;
        margin: auto;
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .block-entry {
        width: calc(100% - 25px);
        margin-top: -90px;
    }
}

.block-card-overlap .block-entry .inner {
    padding: 50px 60px 70px;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .block-entry .inner {
        padding: 35px 45px;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .block-entry .inner {
        padding: 30px;
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .block-entry .inner {
        padding: 25px;
    }
}

.block-card-overlap .block-entry .title {
    font: 400 35px/1 "Playfair Display", serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    display: block;
    line-height: 56px;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .block-entry .title {
        font-size: 32px;
        line-height: 42px;
    }

    .block-card-overlap .block-entry .title .split-line {
        margin-right: 10px;
    }

    .block-card-overlap .block-entry .title .split-line:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 540px) {
    .block-card-overlap .block-entry .title {
        font-size: 28px;
        line-height: 36px;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 320px) {
    .block-card-overlap .block-entry .title {
        font-size: 24px;
        line-height: 32px;
    }
}

.block-card-overlap .block-entry .title-line {
    height: 1px;
    background-color: #679334;
    margin: 35px 0 40px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .block-entry .title-line {
        margin: 20px 0 25px;
    }
}

.block-card-overlap .block-entry p {
    max-width: 300px;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .block-card-overlap .block-entry p {
        max-width: 100%;
    }
}

.block-card-overlap ul.facilities {
    padding: 0;
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
}

.block-card-overlap ul.facilities li {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #e5e7e9;
}

.block-card-overlap .bg-vanilla {
    background-color: #f0f0f5;
}

.block-card-overlap .bg-green {
    background-color: #679334;
}

.block-card-overlap .bg-green .title,
.block-card-overlap .bg-green p {
    color: #FFFFFF;
}

.block-card-overlap .bg-green .title:after {
    background: #679334 62px;
    background: -webkit-linear-gradient(left, #679334 62px, #FFFFFF 62px);
    background: -o-linear-gradient(right, #679334 62px, #FFFFFF 62px);
    background: -moz-linear-gradient(right, #679334 62px, #FFFFFF 62px);
    background: linear-gradient(to right, #679334 62px, #FFFFFF 62px);
}

@media (min-width:1000px) and (max-width:1100px){
.q_slide .slide { height: 55vh;}
.q_slide { height: 55vh;}
.q_slide .arrows .next { left: 71px;}
}
@media (min-width:768px) and (max-width:999px){
.q_slide .slide { height: 55vh;}
.q_slide { height: 55vh;}
.q_slide .arrows .next { left: 71px;}
}
@media (min-width:240px) and (max-width:768px){
.q_slide .slide { height: 55vh;}
.q_slide { height: 55vh;}
.q_slide .arrows .next { left: 71px;}
.q_slide .arrows .prev {  margin-right: 70px; left: 0;}
.q_slide .arrows .next { left: inherit;}
.q_slide .arrows .arrow{ right:0;bottom: 46%;}
}
@media screen and (max-width: 480px) {
.q_slide {height: 30vh;}
}
