
/************************ ANIMATIONS ************************/

@-moz-keyframes pushdown { 0% { top: -5px; opacity: 0; } 50% { opacity: .7; } 100% { top: 5px; opacity: 1; } }
@-webkit-keyframes pushdown { 0% { top: -5px; opacity: 0; } 50% { opacity: .7; } 100% { top: 5px; opacity: 1; } }
@keyframes pushdown { 0% { top: -5px; opacity: 0; } 50% { opacity: .7; } 100% { top: 5px; opacity: 1; } }

@keyframes scrollme {
    from {
        opacity:0;
        -webkit-transform: translateY(-6px);
        -moz-transform: translateY(-6px);
        -o-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    to {
        opacity:1;
        -webkit-transform: translateY(3px);
        -moz-transform: translateY(3px);
        -o-transform: translateY(3px);
        -ms-transform: translateY(3px);
        transform: translateY(3px);
    }
}



@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-moz-keyframes biggerloader { 0% { width:100px; height:100px; } 50% { width:200px; height:200px; } 100% { width:100px; height:100px; } }
@-webkit-keyframes biggerloader { 0% { width:100px; height:100px; } 50% { width:200px; height:200px; } 100% { width:100px; height:100px; } }
@keyframes biggerloader { 0% { width:100px; height:100px; } 50% { width:200px; height:200px; } 100% { width:100px; height:100px; } }

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); transform: rotate(0deg); }
    to { -moz-transform: rotate(359deg); transform: rotate(359deg); }
}

@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg);  transform: rotate(0deg); }
    to {  -ms-transform: rotate(359deg);  transform: rotate(359deg); }
}

@-o-keyframes spin {
    from { -o-transform: rotate(0deg); transform: rotate(0deg); }
    to { -o-transform: rotate(359deg); transform: rotate(359deg); }
}

.loading {
    -webkit-animation: biggerloader 1s ease infinite ;
    -moz-animation: biggerloader 1s infinite ;
    -ms-animation: biggerloader 1s infinite ;
    -o-animation: biggerloader 1s infinite ;
    animation: biggerloader 1s infinite ;
}

.div-explore img {
    -webkit-animation: pushdown 1.2s ease infinite;
    -moz-animation: pushdown 1.2s ease infinite;
    animation: pushdown 1.2s ease infinite;
}


/************************ TAGS ************************/

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100%;
}

p {
    font-size: 1.15em;   
}

a {
    color: #484848;
}

a:hover, a:focus, a:active {
    color: #484848;
    text-decoration: none;
    outline: none;
}

.transition {
    -webkit-transition: all 0.4s ease;                  
    -moz-transition: all 0.4s ease;                 
    -o-transition: all 0.4s ease;   
    -ms-transition: all 0.4s ease;          
    transition: all 0.4s ease;   
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px;   
}

.btn {
    display: inline-block;
    padding: 15px 50px;
    margin: 0px 10px;
    border-radius: 30px;
    font-size: 16px;
}

.btn-border {
    border: 1px solid #fff;
    color: #fff;
}

.btn-border:hover {
    color: #fff;
    background: rgba(0,0,0,.1);
}

.btn-solid {
    background: #fff;
    color: #4a4a4a;
    opacity: .9;
}

.btn-solid:hover {
    color: #4a4a4a;
    opacity: 1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,.5);
}

/************************ MENU ************************/

.navbar-collapse {
    padding: 0px;
}

.navbar-default {
    background-color: transparent;
    border: none;
    border-color: transparent;   
    margin: 0px;
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    
}

.menu-toggle {
    width: 30px;
    height: 45px;
    position: relative;
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-toggle.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  left: 0px;
}

.menu-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 0px;
}


/************************ CONTENT ************************/

.box-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #2c1c3a;
    z-index: 100;
}

.box-loader .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%); 
    display: none;
}

.box-loader .loading {
    margin: 10% auto;
    border:15px solid white;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    height: 50px;
    width: 50px;
}


/************************ RESPONSIVE ************************/

/* XX-Large desktop */
@media (min-width: 1600px) {

}

/* X-Large desktop */
@media (max-width: 1599px) {
    
  
    
}

/* Large desktop */
@media (max-width: 1199px) {
    
    .navToggle 
    {
      position: absolute;
      width: 30px;
      height: 60px;
      top: 0px;
      right: 15px;
      z-index:300;
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
    }
    .navToggle:hover {
      cursor: pointer;
    }
    .navToggle .icon-left {

      position: absolute;
      height: 4px;
      top: 25px;
      width: 15px;
      background-color: rgba(255, 255, 255, 0.87);
        -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
    }
    .navToggle .icon-left:before {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      position: absolute;
      width: 15px;
      height: 4px;
      background-color: rgba(255, 255, 255, 0.87);
      content: "";
      top: -10px;
    }
    .navToggle .icon-left:after {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      position: absolute;
      width: 15px;
      height: 4px;
      background-color: rgba(255, 255, 255, 0.87);
      content: "";
      top: 10px;
    }
    .navToggle .icon-right {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      position: absolute;
      height: 4px;
      top: 25px;
      width: 15px;
      background-color: rgba(255, 255, 255, 0.87);
      left: 15px;
    }
    .navToggle .icon-right:before {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      position: absolute;
      width: 15px;
      height: 4px;
      background-color: rgba(255, 255, 255, 0.87);
      content: "";
      top: -10px;
    }
    .navToggle .icon-right:after {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      position: absolute;
      width: 15px;
      height: 4px;
      background-color: rgba(255, 255, 255, 0.87);
      content: "";
      top: 10px;
    }
    .navToggle.active-menu .icon-left {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      background: transparent!important;
    }
    .navToggle.active-menu .icon-left:before {
      -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
              transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
    }
    .navToggle.active-menu .icon-left:after {
      -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
              transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
    }
    .navToggle.active-menu .icon-right {
      -webkit-transition-duration: 0.5s;
              transition-duration: 0.5s;
      background: transparent!important;
    }
    .navToggle.active-menu .icon-right:before {
      -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
              transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 2px);
    }
    .navToggle.active-menu .icon-right:after {
      -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
              transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -2px);
    }


    .active-menu.navToggle .icon-left:after,.active-menu.navToggle .icon-right:after,.active-menu.navToggle .icon-left:before,.active-menu.navToggle .icon-right:before
    {
         background-color: rgba(255, 255, 255, 0.87)!important;
    }

    .white-menu .navToggle .icon-left,.white-menu .navToggle .icon-right,.white-menu .navToggle .icon-left:after,.white-menu .navToggle .icon-right:after,.white-menu .navToggle .icon-left:before,.white-menu .navToggle .icon-right:before
    {
        background-color: rgba(0, 0, 0, 0.87);
    }
    
    .white-menutrue .navToggle .icon-left,.white-menutrue .navToggle .icon-right,.white-menutrue .navToggle .icon-left:after,.white-menutrue .navToggle .icon-right:after,.white-menutrue .navToggle .icon-left:before,.white-menutrue .navToggle .icon-right:before{
        background-color: rgba(0, 0, 0, 0.87);
    }
    
    
}

/* Destinations tabs contact form */
.texto-seleccionado{
    background-color: #db2562;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    margin-right: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.background-white {
    background-color: white;
}
.marginTop5marginBottom16{
    margin-bottom: 16px;
    margin-top: 5px;
}

/* Portrait tablet to landscape and desktop */
@media (max-width: 991px) {     
     
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
   
}

/* Landscape phones and down */
@media (max-width: 480px) {    
    
}