/* Navbar Modifier */
/* .navbar{
  height: 80px;
  position: absolute;
  width:100%;
  z-index:10;
  max-width:100;
  background-color: rgba(255, 255, 255, 0.9);
  align-items: flex-end;
  padding-right: 0px;
  padding-left: 3.5%;
}
.navbar-collapse{
  background-color: rgba(255, 255, 255, 0.9);
} */

.navbar-brand{
  padding-bottom: 0px;
}
.navbar>.navbar-brand>img{
  max-height: 70px;
}
ul.nav.navbar-nav {
  justify-content: space-around;
  width: 100%;
  font-family: 'Myriad-pro';
}

.logo-imagen{
  max-width: 90px !important;
}

/* Carousel 100% Fullscreen */
html, body {
  height:100%;
  margin:0;
  padding:0;
  font-family: 'Myriad-proLight';
}
.carousel, .carousel-item, .active {
  height:100%;
}
.carousel-inner {
  height:100%;
}

.text-section{
    padding-right: 20%;
    padding-left: 20%;
}

#slider1{
  background: url('../images/carousel1.JPG') no-repeat center top;
  background-size: cover;
}
#slider2{
  background: url('../images/carousel2.JPG') no-repeat center top;
  background-size: cover;
}
#slider3{
  background: url('../images/carousel3.JPG') no-repeat center top;
  background-size: cover;
}

.hidden {
  display: none;
}

/*Other css*/
.fill {
    min-height: 100%;
    height: 100%;
    width: 100%;
    margin: 0;
}
.row{
  margin: 0;
}
.main-color{
  color: #5C2727;
}
.light-color{
  color: #896D39;
}
.light-color-bkg{
  background-color: #896D39;
  color: white;
}
.image-container{
  position: relative;
  text-align: center;
  filter: brightness(50%);
  transition: all 0.2s ease;
  background-size: 110%;
}
.img-centered-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-text{
  text-decoration: none;
  color: white;
  text-shadow: 3px 3px 8px #000000;
}
/* .img-container, img{
  filter: brightness(50%);
  transition: all 0.2s ease;
} */
.image-container:hover{
  filter: brightness(80%);
  background-size: 100%;
}
.clickable:hover{
  cursor: pointer;
}
.btn{
  padding: 10px 30px;
}
#vertical-divider{
  border-left: 1px solid #896D39;
}
footer{
  font-family: 'Myriad-proLight';
  font-size: 15px;
  background-color: #896D39;
  color: white;
  padding: 30px;
}

.hidden-text{
  position: relative !important;
  padding: 0 !important;
}

.cover-image{
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute !important;
}




/* Animations */
.animation-element {
  opacity: 0;
  position: relative;
}


/*animation element sliding left*/

.animation-element.slide-left {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate3d(-50px, 0, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-element.slide-left.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-right {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate3d(50px, 0, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-element.slide-right.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.slide-bottom {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide-bottom.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

/* Fade In */
.fade-in{
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: fadein 1s; /* Firefox < 16 */
      -ms-animation: fadein 1s; /* Internet Explorer */
       -o-animation: fadein 1s; /* Opera < 12.1 */
          animation: fadein 1s;
}


/* PXSOL */

#widgetpxsol {
    position: fixed !important;
    top: 91px !important;
    width: 800px !important;
    padding: 0px !important;
    height: auto !important;
    background: #fff !important;
    max-width: 100% !important;
}

#widgetpxsol .px_search .priceoverview {
    color: white  !important;
    font-family: "Kaushan Script", Helvetica, Arial, sans-serif  !important;
    background: #896d39  !important;
    width: 150px  !important;
    padding: 10px 5px  !important;
    text-align: left  !important;
    font-size: 12px  !important;
    text-transform: uppercase  !important;
    line-height: 16px  !important;
    letter-spacing: 1px  !important;
}

#widgetpxsol .px_search .priceoverview .ahora {
    display: none  !important;
}

#widgetpxsol #px_search_form .fechas_ancho {
    border: none  !important;
    border-right: 1px solid #ddd  !important;
}

#widgetpxsol  #NightError {
    display: none  !important;
}

#widgetpxsol #px_search_form .SelectorInitial {
    border: none  !important;
}

#widgetpxsol .RemoveRoomButton {
    color: #000 !important;
    padding: 4px 0px  !important;
}

#widgetpxsol #px_search_form #px_acion_search, #widgetpxsol #px_acion_search {
    padding: 16px 10px  !important;
    border-radius: 0px  !important;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Font */
@font-face {
  font-family: 'Myriad-pro';
  src:url(../fonts/MyriadPro-Regular.otf);
}
@font-face {
  font-family: 'Myriad-proLight';
  src:url(../fonts/MyriadPro-LightSemiExt.otf);
}

@media (max-width : 450px) {
 
    .carousel, .carousel-item, .active {
      height:80%;
    }
    .carousel-inner {
      height:100%;
    }
    #map{
        height: 350px !important;
    }
    .text-section{
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    
    .image-container{
        filter: brightness(100%);
    }
    
}
