/* Flying text animation */
body{
    overflow-x: hidden !important;
    margin: 0px !important;
}
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
  }
.body{
    overflow-x: hidden !important;
    margin: 0px !important;
}
.hero-text {
    font-size: 2rem; /* Initial size */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    will-change: transform, opacity, letter-spacing;
}

#launcher{
    display: none !important;
}

/* Landing slider */
.sina-content-slider .owl-nav {
    display: block !important; /* Forces the navigation to be always visible */
  }
  
  .sina-content-slider .owl-nav button.owl-prev,
  .sina-content-slider .owl-nav button.owl-next {
    opacity: 1 !important; /* Ensures the buttons are always opaque */
  }
  
  /* Optional: Adjust button styles for better visibility */
  .sina-content-slider .owl-nav button.owl-prev,
  .sina-content-slider .owl-nav button.owl-next {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white; /* White arrow color */
    padding: 10px;
    border-radius: 5px;
    position: absolute; /* Position them relative to the slider */
    top: 50%;
    transform: translateY(-50%);
  }
  
  .sina-content-slider .owl-nav button.owl-prev {
    left: 10px; /* Adjust left position */
  }
  
  .sina-content-slider .owl-nav button.owl-next {
    right: 10px; /* Adjust right position */
  }
  
  .sina-content-slider .owl-nav button.owl-prev:hover,
  .sina-content-slider .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.7); /* Slightly darker background on hover */
  }
  
  /* Ensure the slider container has relative positioning for proper navigation placement */
  .sina-content-slider {
    position: relative;
  }
/* Full screen menu*/
#close-menu, #close-menu-text{
    display: none;
}


#menu-overlay{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;/*Quizá se remueve para vista móvil*/
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
/* Prevent scrolling when overlay is active */
/*.no-scroll {
    overflow: hidden;
    height: 100vh;
}*/
.no-scroll{
    position: fixed;
    width: 100%;
    overflow-y: scroll;
}
/*#dac-menu {
    width: 100% !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
}*/
#dac-menu {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.hide-menu {
    top: -100px !important; 
}

/*.hide-menu {
    top: -100px !important; 
}*/

table.plus-table{
    width: 100% !important;
}

/* Marketing forms */


/*@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');*/
body{
    background: #e7ded9;
}
/*body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(115deg, #56d8e4 10%, #9f01ea 90%);
}*/
.container-form{
  max-width: 100%;
  /*background: #fff;*/
  width: 100%;
  /*padding: 25px 40px 10px 40px;*/
  /*box-shadow: 0px 0px 10px rgba(0,0,0,0.1);*/
}
.container-form .text{
  text-align: center;
  font-size: 41px;
  font-weight: 300;
  font-family: 'Nexa', sans-serif !important;
  /*background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*.container-form form{
  padding: 30px 0 0 0;
}*/
.container-form form .form-row{
  display: flex;
  margin: 32px 0;
}
form .form-row .input-data{
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}
/*form .form-row .textarea{
  height: 70px;
}*/
.input-data input,
.textarea textarea{
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(0,0,0, 0.12);
}
/*.input-data input:focus ~ label, .textarea textarea:focus ~ label,
.input-data input:valid ~ label, .textarea textarea:valid ~ label,
.input-data input:not(:placeholder-shown) ~ label{
  transform: translateY(-20px);
  font-size: 16px;
  color: #413926;
}*/
.input-data input:focus ~ label, 
.input-data input:not(:placeholder-shown) ~ label,
.textarea textarea:focus ~ label, 
.textarea textarea:valid ~ label{
  transform: translateY(-20px);
  font-size: 16px;
  color: #413926;
}
/*.textarea textarea{
  resize: none;
  padding-top: 10px;
}*/
.input-data label{
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
  color: #413926 !important;
  font-weight: 300;
  font-family: 'Nexa', sans-serif !important;
}
/*.textarea label{
  width: 100%;
  bottom: 40px;
  background: #e7ded9;
}*/
.input-data .underline{
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}
.input-data .underline:before{
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #CFBFB4;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.input-data input:focus ~ .underline:before,
.input-data input:not(:placeholder-shown)  ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before{
  transform: scale(1);
}


/*.submit-btn .input-data{
  overflow: hidden;
  height: 45px!important;
  width: 25%!important;
}
.submit-btn .input-data .inner{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
  transition: all 0.4s;
}
.submit-btn .input-data:hover .inner{
  left: 0;
}*/
.input-data-input{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Nexa', sans-serif !important;
    color: #413926 !important;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 300;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    /*cursor: pointer;*/
    position: relative;
    z-index: 2;
}

.input-data-textarea{
    margin: 0;
    padding: 10px 0 0 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Nexa', sans-serif !important;
    color: #413926 !important;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 300;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    /*cursor: pointer;*/
    position: relative;
    z-index: 2;
}

.percentage10{
  width: 10% !important;
}
.percentage20{
  width: 20% !important;
}
.percentage25{
    width: 25% !important;
  }
.percentage30{
  width: 30% !important;
}  
.percentage40{
    width: 40% !important;
}   
.percentage50{
    width: 50% !important;
  }   
.percentage60{
    width: 60% !important;
  }   
.percentage70{
    width: 70% !important;
  }   
.percentage80{
    width: 80% !important;
  }    
.percentage90{
    width: 90% !important;
  }   
.percentage100{
    width: 100% !important;
  }   
.text-form{
  font-size: 17px;
  font-weight: 400;
  color: #413926;
  padding-left: 40px;
  margin-top: 5px;
  font-weight: 300;
  font-family: 'Nexa', sans-serif !important;
}
.input-checkbox-form{
    padding-left: 20px;
    color: #413926 !important;
    margin-top: 20px;
}

/* Round checkbox */
.round-checkbox {
    position: relative;
    margin-bottom: -20px;
  }
  
  .round-checkbox label {
    background-color: #CFBFB4;
    border: 1px solid #413926;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
  }
  
  .round-checkbox label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
  }
  
  .round-checkbox input[type="checkbox"] {
    visibility: hidden;
  }
  
  .round-checkbox input[type="checkbox"]:checked + label {
    background-color: #664047;
    border-color: #413926;
  }
  
  .round-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }

  .label-round-checkbox{
    font-size: 17px;
    margin-left: 40px;
    font-weight: 300;
    font-family: 'Nexa', sans-serif !important;
  }
  
  .submit-btn-form{
    background: #664047;
    color: #CFBFB4 !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: 'Aboreto', sans-serif !important;
    margin-left: 20px;
  }
  .empty-div{
    height: 0px !important;
  }
/*1024*/
@media (max-width: 767px) {
    .percentage25{
        width: 100% !important;
    }
    .percentage50{
        width: 100% !important;
    }
  .container-form .text{
    font-size: 30px;
  }
  .container-form form{
    padding: 10px 0 0 0;
  }
  .container-form form .form-row{
    display: block;
  }
  form .form-row .input-data{
    margin: 35px 0!important;
  }
  .submit-btn .input-data{
    width: 40%!important;
  }
  .text-form{
    padding-left: 0px;
  }
  .submit-btn-form-div{
    text-align: center;
  }
  .submit-btn-form{
    margin-left: 0px;
  }
  .input-checkbox-form{
    padding-left: 0px;
  }

}








/***********************************/

/*Contact */

.wrapper{
    background: #e7dfd9 !important;
}

.default-form input, .default-form textarea, .form-right-context input, .form-right-context textarea {
    display: block;
    width: 100%;
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 14px;
    color: #413926 !important;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    background-color: transparent;
    padding: 8px 0;
}

.default-form .label, .form-right-context .label {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 14px;
    color: #413926 !important;
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}

.default-form button, .form-right-context button {
    font-weight: 300 !important;
    font-family: 'Aboreto', sans-serif !important;
    width: 160px;
    float: right;
    font-size: 12px !important;
    color: #CFBFB4 !important;
    background-color: #664047 !important;
    border-radius: 30px !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 16px 0 12px;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}


.page-contact .section-contact-list form {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.page-contact {
    background-color: white !important;
    padding-top: 80px;
    padding: 5rem 15rem !important;
}
@media (max-width: 1024px) {
    .page-contact {
        padding-top: 80px;
        padding: 5rem 3rem !important;
    }
}

@media (max-width: 767px) {
    .page-contact {
        padding-top: 80px;
        padding: 2rem 1rem !important;
    }
}

.cf-headtext01{
    font-weight: 300 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 16px;
    color: #454B2F;
    text-align: center;
}
.cf-headtext02{
    font-weight: 300 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 28px;
    color: #454B2F;
    text-align: center;
    margin-top: 2rem;
}
.cf-contactustext{
    font-weight: 300 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 32px;
    color: #454B2F;
    margin-top: 3rem;
    width: 15.5rem;
    border-bottom: 3px solid #664047;
    margin-bottom: -4rem;
}

@media (max-width: 1024px) {
    .cf-contactustext{
        margin-bottom: 0rem;
    }
}

@media (max-width: 767px) {
    .cf-contactustext{
        margin-bottom: 0rem;
    }
}
/***********************************/

/* Departure styles */
.change_month, .change_year{
    height: 14px;
}
.departure-search-info{
    padding-top: 13px !important;
    height: 50px;
}
.v-align-t:before{
    height: 0px !important;
}

.availability-breadcrumb li {
    font-weight: 700 !important;
    font-family: 'Aboreto', sans-serif !important;
    color: #e7dfd9 !important;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 14px;
}

.availability-breadcrumb li.active {
    font-weight: 700 !important;
    color: #664047 !important;
}

.availability-breadcrumb li.line {
    width: 70px;
    height: 2px !important;
    background: #e7dfd9 !important;
    margin-right: -5px;
    margin-top: 2px !important;
}

.availability-breadcrumb li.line.active {
    background: #664047 !important;
    height: 2px !important;
}



.departure-search-info {
    max-width: 570px;
    margin: 0 auto 30px;
    border-top: none !important;
    border-bottom: 2px solid #664047 !important;
    padding: 10px 0;
}

.departure-search-info li {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    width: 49%;
    color: #413926 !important;
    font-weight: 300;
    font-family: Raleway, sans-serif;
    font-size: 14px;
}

.page-availability .departure-picker .month-picker>div.active {
    border-color: #664047 !important;
    background: #664047 !important;
    color: #fff;
}

.page-availability .departure-picker .month-picker>div {
    font-weight: 700 !important;
    font-family: 'Nexa', sans-serif !important;
    display: inline-block;
    width: -webkit-calc(33% - 22px);
    width: calc(33% - 22px);
    color: #8e8e8e;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 15px;
    margin: 6px 10px;
    text-align: center;
    cursor: pointer;
}

.page-availability .departure-picker .year-picker>div.active, .page-availability .departure-picker .year-picker>div:hover {
    border-color: #664047 !important;
    background: #664047 !important;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.page-availability .departure-picker .year-picker>div {
    font-weight: 700 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 16px;
    color: #8e8e8e;
    padding: 15px;
    text-align: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.page-dates-rates {
    background-color: #e7dfd9 !important;
}

.page-dates-rates .room-item {
    background-color: #e7dfd9 !important;;
    margin: 0 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none !important;
    /*border: 1px solid #eaeaea;*/
    /*border: 1px solid #d4b1b8;*/

}

.page-dates-rates .room-item h4 {
    font-weight: 400 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 30px;
    margin-bottom: .5em;
    color: #413926 !important;
    border-bottom: 3px solid #664047 !important;
    width: 10.5rem !important;
}

.page-dates-rates .room-item .select-departure-title {
    font-weight: 700 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 14px;
    color: #664047 !important;
    margin-bottom: 14px;
}

.page-dates-rates .room-item .list-days-available li .input-radio label {
    width: 100%;
    font-size: 12px !important;
    font-weight: 300;
    color: #000;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    padding: 12px 6px;
    position: absolute;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.page-dates-rates .room-item .list-days-available li .input-radio input:checked~label {
    font-weight: 700 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 12px !important;
    border: 1px solid #664047 !important;
    color: #664047 !important;
    font-weight: 700;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.page-dates-rates .room-item .btn-continue {
    font-weight: 400 !important;
    font-family: 'Aboreto', sans-serif !important;
    background-color: #664047 !important;
    color: #CFBFB4 !important;
    width: 130px;
    height: 38px;
    font-size: 13px;
    border-radius: 30px !important;
    opacity: 1;
    margin-top: 15px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.page-availability #availability {
    background-color: #e7dfd9 !important;
    min-height: 80vh;
    width: 100%;
    padding-top: 0em !important;
}

.availability-breadcrumb {
    margin-bottom: 30px;
    background-color: #d4b1b8 !important;
    height: 5rem !important;
    padding-top: 1.6rem !important;
}
.v-align-t:before {
    content: "";
    display: none !important;
    width: 0;
    height: 100%;
}

.back-button {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 16px;
    font-family: Raleway, sans-serif;
    font-weight: 300;
    color: #664047 !important;
    margin-bottom: 0;
    word-spacing: 5px;
}

.page-dates-rates .departure-title li h1, .page-dates-rates .departure-title li h2 {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 18px !important;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #413926 !important;
    margin-bottom: 0;
}
.departure-title-bold{
    font-weight: 700 !important;
}
.page-dates-rates .departure-title {
    max-width: 700px;
    margin: 0 auto !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 4rem !important;
    border-bottom: 1px solid #664047 !important;
}

.page-dates-rates h3 {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    color: #664047 !important;
    font-size: 20px;
    margin-bottom: 40px;
    text-align: left !important;
}
.page-dates-rates .select-item .select-room .content {
    width: 70%;
    padding: 25px;
    position: relative;
    text-align: left !important;
}
.page-dates-rates .select-item .select-room .content .title {
    font-family: 'Aboreto', sans-serif !important;
    color: #413926 !important;
    font-weight: 300 !important;
    font-size: 28px;
    margin-bottom: 15px;
}
.page-dates-rates .select-item .select-room .content .price {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    color: #413926 !important;
    font-size: 12px;
    margin-bottom: 15px;
}
.page-dates-rates .select-item .select-room .content .availability {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    color: #757373 !important;
    font-size: 12px;
    font-family: Raleway, sans-serif;
    margin-bottom: 5px;
}
.page-dates-rates .select-item .select-room .content .capacity {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    color: #757373 !important;
    font-size: 12px;
    font-family: Raleway, sans-serif;
}
.page-dates-rates .select-item .select-room .content .select-qty .title {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    color: #664047 !important;
    font-size: 12px;
    font-family: Raleway, sans-serif;
    font-weight: 300;
}

.page-dates-rates .select-item .select-room .content .select-qty .input-number input {
    width: 40px;
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    color: #413926 !important;
    font-size: 22px;
    text-align: center;
    font-family: Raleway, sans-serif;
    font-weight: 700;
    border-bottom: none;
    padding: 0;
    margin: 0 12px;
}
.page-dates-rates .select-item .select-room .content .select-qty .input-number .down-qty, .page-dates-rates .select-item .select-room .content .select-qty .input-number .up-qty {
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 40px !important;
    width: 30px !important;
    height: 30px !important;
    background: #664047 !important;
    color: #D3C8CA !important;
    text-align: center;
    border-radius: 100%;
    line-height: 40px  !important;
    cursor: pointer;
    padding-top: 1px !important;
}

.page-dates-rates .floating-mobile .total-price-section {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 28px 0;
    color: #664047 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Nexa', sans-serif !important;
    margin-top: 10px;
}

.page-dates-rates .floating-mobile .total-price-section .price {
    color: #664047 !important;
    margin-left: 30px;
    font-weight: 300 !important;
    font-family: 'Nexa', sans-serif !important;
}

.page-dates-rates .select-item .select-room {
    border-radius: 15px !important;
    border: 1px solid #BDBBBB !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
    position: relative;
}

.page-dates-rates .select-item .select-room .image {
    width: 30%;
    background-size: cover;
    border-radius: 15px 0 0 15px !important;
}

.page-dates-rates .floating-mobile .btn-submit {
    font-family: 'Aboreto', sans-serif !important;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding: 18px;
    width: 15rem !important;
    text-transform: none;
    margin: 30px 0px 0px 0px !important;
    float: none !important;

}

.page-dates-rates .floating-mobile .total-price-section {
    border-top: 1px solid #BDBBBB  !important;
    border-bottom: 1px solid #BDBBBB  !important;
    padding: 28px 0;
    color: #cd4716;
    font-size: 18px;
    font-weight: 700;
    font-family: Raleway, sans-serif;
    margin-top: 10px;
}

.departure-reserve-information {
     background: none !important;
     margin-top: 0px !important; 
}

.departure-reserve-information h1 {
    color: #664047 !important;
    font-family: 'Nexa', sans-serif !important;
    font-size: 20px !important;
    margin-bottom: 30px;
    font-weight: 300;
    border-bottom: 1px solid #664047;
    width: 40rem !important;
    text-align: center !important;
    float: none !important;
    margin: 0 auto !important;
    padding-bottom: 1rem !important;
}

.departure-reserve-information .reserve-form .input-field input.error+.placeholder, .departure-reserve-information .reserve-form .input-field input.is-valid+.placeholder, .departure-reserve-information .reserve-form .input-field input:active+.placeholder, .departure-reserve-information .reserve-form .input-field input:focus+.placeholder {
    top: -15px;
    padding: 5px 10px;
    height: 24px;
    font-size: 11px;
    color: #664047 !important;
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    left: 10px;
    background: none !important;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.departure-reserve-information .reserve-form {
    border: none !important;
    border-radius: 5px;
    padding: 0px !important;
}

.departure-reserve-information .reserve-form .input-field input {
    border: none !important;
    border-bottom: 1px solid #CFBFB4 !important;
    border-radius: 0px !important;
    font-size: 17px !important;
    color: #413926 !important;
    padding: 15px 5px !important;
    width: 100%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.departure-reserve-information .reserve-form .input-field label.placeholder {
    font-size: 17px !important;
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300;
    color: #413926 !important;
    position: absolute;
    padding: 20px 16px;
    height: 59px;
    line-height: 20px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    left: 0;
    top: 0;
}
.departure-reserve-information .reserve-form .input-field {
    margin-bottom: 20px;
    position: relative;
    padding: 0rem 1rem !important;
}

.default-form, .form-right-context {
    margin-top: 4rem !important;
    vertical-align: top;
}

.departure-reserve-information .reserve-form button {
    width: 15rem !important;
    float: none !important;
    margin-top: 2rem !important;
    color: #fff;
    font-size: 16px;
    font-family: Raleway, sans-serif;
    padding: 20px;
    border-radius: 5px;
    background: #6a8b2d;
    margin-left: 1rem !important;
    
}
.request-reservation-div-button{
    text-align: center;
}

/* BLOG */
.page-blog, .page-single-post{
    background-color: white !important;
}

.blog-list .blog-sidebar {
    width: 30%;
    float: left;
    border: none !important;
    padding-left: 0px !important;
}

.blog-list .blog-sidebar h2 {
    color: #664047 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-weight: 400;
    font-size: 30px !important;
    margin-bottom: 20px;
}

.blog-list .blog-sidebar .list-categories li a {
    color: #413926 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
}

.blog-list .blog-sidebar .list-categories li a:hover {
    color: #413926 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
    text-decoration: underline !important;
}

.blog-list .post-entries .entry .info .title {
    color: #413926 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #664047 !important;
    padding-bottom: 1rem !important;
}

.blog-list .post-entries .entry .info .excerpt {
    font-size: 16px;
    color: #413926 !important;
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    margin-bottom: 25px;
    line-height: 24px;
}

.blog-list .post-entries .entry .info .btn {
    color: #664047 !important;;
    border: 1px solid #664047 !important;;
    border-radius: 25px  !important;
    padding: 15px 25px;
    font-weight: 700;
    text-transform: uppercase;
}
.blog-list .post-entries .entry .thumb img {
    width: 100%;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.blog-list .post-entries .entry .thumb .date {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #664047 !important;
    color: white !important;
    max-width: 300px;
    padding: 8px;
}

.blog-list .post-entries .entry .info .date {
    font-size: 18px;
    color: #664047 !important;
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    margin-bottom: 25px;
    line-height: 24px;
}

nav.is-active:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: none !important;
}

.page-blog nav.pagination .nav-links .page-numbers {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    font-size: 20px;
    font-weight: 400;
    color: #999;
    padding: 0 10px;
}
.page-blog nav.pagination .nav-links .page-numbers.current {
    color: #664047 !important;
}
.page-blog nav.pagination .nav-links {
    text-align: center;
    margin-top: 10rem !important;
}

.section-post-content .post-content .title {
    color: #413926 !important;
    font-family: 'Aboreto', sans-serif !important;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 30px;
    border-bottom: 2px solid #664047 !important;
    padding-bottom: 1rem !important;
}
.default-style li, .default-style p {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    color: #413926 !important;
    line-height: 1.6em;
    margin: 1em 0;
}

.default-style .h3, .default-style h3 {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.625em;
    line-height: 1.61538462em;
    margin-top: .80769231em;
    margin-bottom: 0;
}


.default-style a, .default-style b, .default-style code, .default-style em, .default-style i, .default-style small, .default-style strong {
    line-height: 1.5 !important;
}

.blog-list .blog-sidebar .recent-posts .post .title {
    font-size: 18px;
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    color: #413926 !important;
    text-align: center;
    margin-bottom: 8px;
}

.blog-list .blog-sidebar .recent-posts .post .date {
    font-family: 'Nexa', sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px;
    color: #664047 !important;
    text-align: center;
    text-transform: uppercase;
}

.blog-list .blog-sidebar .recent-posts .post {
    width: 90%;
    margin: 25px 0px !important;
}

