@charset "utf-8";

/* CSS Document */

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    color: #808080;
}

.center {
    width: 1000px;
    margin: 0px auto;
    /*text-align:left;*/
}

.clear {
    clear: both;
}

a img,
img a,
a {
    border: none;
    text-decoration: none;
}

ul,
li,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    list-style: disc;
    list-style-image: #0f0;
    margin: 0 0 0 20px;
}


/******** TITLES **********/

h1 {
    font-size: 25px;
    font-weight: 400;
    color: #808080;
}

h2 {
    font-size: 25px;
    font-weight: 300;
    color: #006837;
    margin: 15px 0 0 0;
    padding: 0 0 0 0;
}

h3 {
    font-size: 12px;
    font-weight: 700;
    color: #000daf;
    margin: 10px 0 10px 0;
    padding: 0 0 0 0;
}

h4 {
	color: #fff;
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

h5 {}

h6 {}


/******** COLUMNS **********/

.col-25 {
    width: 25%;
    float: left;
}

.col-33 {
    width: 33%;
    float: left;
}

.col-50 {
    width: 50%;
    float: left;
}

.col-66 {
    width: 66%;
    float: left;
}

.col-75 {
    width: 75%;
    float: left;
}


/******** BOTONES **********/

a.boton1:link,
a.boton1:visited {
    font-size: 18px;
    font-weight: bold;
    padding: 7px 20px;
    border-radius: 8px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: inline-block;
    color: #fff;
}

a.boton1 strong {
    font-size: 13px;
    font-weight: normal;
}

a.purple:link,
a.purple:visited {
    background-image: linear-gradient(to bottom, #009145, #03592a);
}

a.purple:hover {
    background-image: linear-gradient(to top, #009145, #03592a);
}

a.gray:link,
a.gray:visited {
    background-image: linear-gradient(to bottom, #000daf, #000c63);
}

a.gray:hover {
    background-image: linear-gradient(to top, #000daf, #000c63);
}

a.white:link,
a.white:visited {
    background-image: linear-gradient(to bottom, #fff, #ccc);
    color: #009145;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

a.white:hover {
    background-image: linear-gradient(to top, #fff, #ccc);
}

/******** BOTON SUSCRIBITE **********/
.bookingline {
	position: fixed;
	right: 0;
	z-index: 11;
}
.bookingline img {
	vertical-align: bottom;
}
a.boton-booking:link, a.boton-booking:visited,
a.boton-booking-mobile:link, a.boton-booking-mobile:visited {
	padding: 8px 15px 8px 15px;
	margin: 0 20px 0 0;
	background: #fff;
	background-image: linear-gradient(to bottom, #fff 75%, #ccc);
	color: #006837;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	border-right: 4px solid #006837;
	border-left: 4px solid #006837;
	display: inline-block;
}
a.boton-booking:hover,
a.boton-booking-mobile:hover {
	background: #006837;
	border-right: 4px solid #03592a;
	border-left: 4px solid #03592a;
	color: #fff;
}
.bookingline a.boton-booking-mobile {
	display: none;
	margin: 0 5px 0 0;
	padding: 17px 7px 13px 7px;
}
a.boton-booking-mobile img {
	width: 29px;
	height: auto;
	vertical-align: middle;
}


/******** MENU TOP **********/

#menutop {
    /*background-image: linear-gradient(to top, #720044, #bb4c88);*/
    background: url("img/menu-top-bg.png") bottom center #009145;
    border-bottom: 4px solid #006837;
    position: fixed;
    width: 100%;
    z-index: 10;
}

.logo {
    float: left;
}

.menu-desktop {
    padding: 20px 0 0 0;
	text-align: left;
}

.menu-desktop a:link,
.menu-desktop a:visited,
.dropdown-content a:link,
.dropdown-content a:visited {
    color: #fff;
    padding: 30px 10px 10px 10px;
    margin: 10px;
    border-radius: 10px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.menu-desktop a:hover,
.dropdown-content a:hover {
    background-image: linear-gradient(to bottom, rgba(0, 104, 55, 0.8), rgba(0, 104, 55, 0.4));
}

.menu-mobile {
    text-align: left;
    margin: 10px 0 0 5px;
    float: left;
    display: none;
}

.menu-burger img {
    /*filter: invert(50%);*/
    width: 25px;
    height: auto;
}

a.menu-burger {
    padding: 5px 5px 0 5px;
    border-radius: 5px;
    display: block;
}

.dropdown:hover a.menu-burger,
a.menu-burger:hover {
    background: #006837;
    width: 25px;
}

.dropdown:hover a.menu-burger img,
a.menu-burger:hover img {
    filter: invert(0%);
}

.dropdown-content {
    display: none;
    margin: 19px 0 0 0;
    width: 200px;
    background-image: linear-gradient(to top, #009145, #006837 50%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: fixed;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:link,
.dropdown-content a:visited {
    font-size: 15px;
    padding: 8px 10px;
    display: block;
    color: #fff;
}

.dropdown-content a:hover {
    background: rgba(0, 0, 0, 0.2);
}


/******** HEADER ********/

#header {
    padding: 55px 0 30px 0;
}

.header-image {
    height: 400px;
    width: 100%;
    background: url("img/header-bg.png") center center no-repeat;
	background-size: 100% auto;
}

.header-image-in {
    padding: 80px 0 0 25%;
    width: 45%;
    text-align: left;
}

.header-image-in a:link,
.header-image-in a:visited {
    padding: 15px;
    margin: 20px 0 0 0;
    border: 1px solid #000;
}
.header-text {
    padding-bottom: 20px;
    color: #808080;
    font-size: 20px;
    line-height: 28px;
    padding: 10px 15%;
}


/******** SERVICES **********/

#services {
    border-top: 4px solid #006837;
    background-image: linear-gradient(to bottom, #f2f2f2, #bfbfbf);
    width: 100%;
}

.services-in {
    padding: 20px;
}
#services .service-item {
      min-height: 570px;
}

.service-item {
    width: 390px;
    min-height: 570px;
    background: #fff;
    box-shadow: 0 0 5px rgba(107, 59, 90, 0.4);
    padding: 0 0 20px 0;
    margin: 5px;
    text-align: left;
    font-size: 12px;
    display: inline-table;
}

.service-item img {
    width: 100%;
    height: auto;
}

.service-item ul,
.service-item h2,
.service-item h3,
.service-item p {
    padding-left: 20px;
    padding-right: 20px;
}

.service-item ul,
.service-item p {
    font-family: 'Open Sans', sans-serif;
}

.service-item-in {
	min-height: 320px;
}

.service-botones {
    text-align: center;
    padding: 15px 0 0 0;
}

/******** TESTIMONIALS **********/
#testimonials {
	background: url("img/testimonials.png") bottom center no-repeat #000;
	min-height: 430px;
	margin: 60px 0 0 0;
}
.testimonials-in {
	color: #fff;
	padding: 30px 15% 0 15%;
}
.testimonials-in p {
	line-height: 24px;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
#testimonials .mySlides1 {
	/*width: 70%;
	margin: 0 auto;*/
}
.slider-fade {
	width: 100%;
	/*margin: 20px 0 -4px 0;*/
	text-align: center;
	overflow: hidden;
}
.mySlides1 {
	position: relative;
	/*height: 500px;*/
}
.animate-fading {animation: fading 1s 1;}
@keyframes fading {
	from{bottom:-300px;opacity: 0}
	to{bottom:0;opacity: 1}
}



/******** GOLF COURSES **********/

#golfcourses {
    padding: 50px 0;
}

.golfcourse1 {
    text-align: left;
    background: #000daf;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.golfcourse-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.golfcourse-gradient {
    background-image: linear-gradient(to top, #720044 25%, rgba(114, 0, 48, 0.0));
    height: 50px;
    margin-bottom: -50px;
}

.golfcourse-in {
    padding: 20px;
    background-image: linear-gradient(to bottom, #000daf, #000c63);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.golfcourse-left {
    float: left;
    width: 70%;
}

.golfcourse-left h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.golfcourse-left p {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 12px;
}

.golfcourse-right {
    float: right;
    padding: 40px 0 0 0;
}


/******** DESTINATION **********/

#activities {
    border-top: 4px solid #006837a;
    background-image: linear-gradient(to bottom, #f2f2f2, #bfbfbf);
    padding: 20px;
}

.activities-in {
    padding: 20px 0 20px 0;
}

.activities-item {
    width: 180px;
    min-height: 230px;
    background: #989898;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    margin: 3px;
    text-align: center;
    display: inline-table;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.activities-item p {
    padding: 5px 5px 10px 5px;
    margin: 0;
}

.activities-item img {
    width: 100%;
    height: auto;
}


/******** DESTINATION **********/

#destination {
    padding: 40px 0 0 0;
}

.destination-in {
    background: url("img/destination-image.png") center left no-repeat #006837;
    background-size: 50% auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.destination-image {
    display: none;
    background: #e0e0e0;
}

.destination-image img {
    width: 100%;
    height: auto;
}

.destination-text {
    text-align: left;
    color: #fff;
    float: right;
    width: 48%;
    padding: 20px;
}

.destination-text p {
    font-style: italic;
    font-size: 13px;
    line-height: 22px;
}

.destination-text h1,
.destination-text p,
.destination-text a.boton1 {
    color: #fff;
    margin-left: 20px;
}


/******** CONTACT US **********/

#contactus {
    padding: 0 0 30px 0;
}

.contactus-in {
    background: #e0e0e0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.about-us {
    text-align: left;
    color: #fff;
    color: #808080;
    font-style: italic;
    font-size: 13px;
    line-height: 22px;
}

.about-us h2 {
    color: #fff;
    color: #808080;
    padding: 20px 20px 0 20px;
}

.about-us p {
    padding: 10px 20px;
}

.contact-form {
    background: #f2f2f2;
    border-bottom-right-radius: 20px;
}

.contact-form h2 {
    padding: 20px 0 10px 0;
}

.contact-form form {
    padding: 0 0 20px 0;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    font-size: 12px;
    padding: 5px;
    margin: 0 0 5px 0;
    border: 1px solid #bfbfbf;
    font-family: 'Open Sans', sans-serif;
}


/******** FOOTER **********/

#footer {
    height: 150px;
    background: url("img/footer-bg.png") bottom repeat-x;
    border-bottom: 4px solid #006837;
}

.footer-logo {
    background: #006837;
    display: inline-table;
    padding: 10px 20px 5px 20px;
    margin: 77px 0 0 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


/******** responsive **********/

@media screen and (max-width: 1000px) {
    .center {
        width: 100%;
    }
    .golfcourse1 {
        margin: 20px;
    }
    .contactus-in,
    .destination-in,
    .contact-form {
        border-radius: 0;
    }
	.menu-mobile,
    .destination-image {
        display: block;
    }
    .menu-desktop {
        display: none;
    }
    .logo {
        margin-left: 10px;
    }
}

@media screen and (max-width: 800px) {
	.header-image {background-size: auto 100%;}
	.header-text {padding: 10px 20px;}
	    .header-image-in {
        width: auto;
        padding: 80px 20px 0 20px;
    }
	
}

@media screen and (max-width: 700px) {
    .destination-text,
    .col-50,
    .golfcourse-left,
    .golfcourse-right {
        width: 100%;
    }
    #header p {
        padding: 10px 20px;
    }
    .golfcourse-right {
        padding: 10pX 0 20px 0;
    }
    #activities {
        padding: 10px;
    }
    .destination-in {
        background-image: none;
    }
    .destination-text {
        padding: 0;
    }
    .destination-text h1 {
        margin: 20px;
    }
    .destination-text p {
        margin: 0 20px 20px 20px;
    }
}

@media screen and (max-width: 600px) {
	.testimonials-in {padding: 20px;}
}


@media screen and (max-width: 500px) {
    .service-item {
        width: 100%;
    }
	.bookingline a.boton-booking {display: none;}
	.bookingline a.boton-booking-mobile {display: block;}
	h4 {font-size: 30px;}
}


/******** Formulario respuesta ********/

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:hover {
    color: #000;
    text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
    opacity: .75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button.close.disabled {
    pointer-events: none;
}

button.boton1 {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: -0.5px;
    padding: 7px 20px;
    border-radius: 8px;
    display: inline-block;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

button.purple {
    background-image: linear-gradient(to bottom, #009145, #03592a);
}

button.purple:hover {
    background-image: linear-gradient(to top, #009145, #03592a);
}

.captcha {
    display: flex;
    justify-content: center;
}

.padding20 .slick-prev:before,
.padding20 .slick-next:before {
    color: #838383 !important;
}

.padding20 {
    padding: 20px;
}