/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, images {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/*=================================================
			GENERAL
===================================================*/
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

/*=================================================
			CLEARFIX
===================================================*/
.clearfix {
  clear: both;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.cf {
  width: 100%;
  height: 0;
  clear: both;
}

.cf_5 {
  width: 100%;
  height: 2px;
  clear: both;
}

.cf_10 {
  width: 100%;
  height: 10px;
  clear: both;
}

.cf_20 {
  width: 100%;
  height: 20px;
  clear: both;
}

/*=================================================
			MAIN GENERAL
===================================================*/
/*
font-family: 'Roboto', sans-serif;
font-family: 'Merriweather', serif;
*/
header {
  background: #f9f9f9;
  border-bottom: solid 2px #222;
}

.brand {
  margin: 0 auto;
  width: 960px;
}

.brand .logo {
  float: left;
}

.text-brand {
  text-align: right;
  font-family: 'Roboto', sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  float: right;
}

.title-1 {
  color: #069;
  font-size: 36px;
  line-height: normal;
}

.title-2 {
  color: #069;
  font-size: 18px;
  line-height: 1.3;
}

.title-3 {
  color: #c00;
  font-size: 16px;
  line-height: 1.5;
}

.sk_navbar {
  background: #eee;
  padding: 0;
  margin: 0 auto;
  min-height: 40px;
  padding: 5px 0;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.4);
  /*background: url(../images/linemenu.png) bottom center repeat-x;*/
}

.sk_navbar .nav {
  display: block;
  margin: 0 auto;
  width: 960px;
  text-align: center;
  background: none;
  list-style: none;
}

.sk_navbar .nav li {
  text-align: center;
  float: left;
  display: block;
  line-height: 40px;
  position: relative;
  border-right: solid 1px #fff;
  padding: 0 15px;
  zoom: 1;
}

.sk_navbar .nav li a {
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 22px;
  font-weight: 800;
  color: #333;
  background: transparent;
  border: none;
  letter-spacing: 2px;
  text-shadow: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sk_navbar .nav li:hover a {
  color: #f90;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sk_navbar li::after {
  content: "";
  position: absolute;
  height: 40px;
  top: 0;
  right: -2px;
  border-right: solid 1px #ccc;
  line-height: 40px;
}

.sk_navbar .nav li:last-child {
  border: none !important;
}

.sk_navbar .nav li:last-child::after {
  border: none !important;
}

.sp {
  font-weight: bold;
  background-color: #069;
  -webkit-animation: pulse 1s infinite alternate;
  -moz-animation: pulse 1s infinite alternate;
  animation: pulse 1s infinite alternate;
}

@-webkit-keyframes pulse {
  0% {
    background-color: #FF9200;
  }

  50% {
    background-color: #FFCD00;
  }

  100% {
    background-color: #FF1E00;
  }
}

@-moz-keyframes pulse {
  0% {
    background-color: #FF9200;
  }

  50% {
    background-color: #FFCD00;
  }

  100% {
    background-color: #FF1E00;
  }
}

/**********OTRO MENU**********/
#topmenu {
  position: relative;
  width: 100%;
  background: #eee;
  padding: 0;
  margin: 0 auto;
  min-height: 40px;
  padding: 5px 0;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.4);
}

#topmenu ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 960px;
}

#topmenu ul li {
  display: block;
  float: left;
  text-align: center;
  line-height: 40px;
  position: relative;
  border-right: solid 1px #fff;
  padding: 0 15px;
  zoom: 1;
}

#topmenu ul li a {
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 22px;
  font-weight: 800;
  color: #333;
  background: transparent;
  border: none;
  letter-spacing: 2px;
  text-shadow: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#topmenu ul li a:hover {
  color: #f90;
}

#topmenu ul li:hover>a {
  color: #f90;
}

#topmenu ul li::after {
  content: "";
  position: absolute;
  height: 40px;
  top: 0;
  right: -2px;
  border-right: solid 1px #ccc;
  line-height: 40px;
}

#topmenu ul li:last-child {
  border: none !important;
}

#topmenu ul li:last-child::after {
  border: none !important;
}

#topmenu ul li ul.sublist {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0px;
  top: 41px;
  background: #eee;
  width: 150px;
  opacity: 0;
  z-index: 9;
  visibility: hidden;
  -moz-transition: opacity 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  -webkit-transition: opacity 0.3s ease-out, visibility 0.1s 0.1s linear;
  -o-transition: opacity 0.3s ease-out, visibility 0.1s 0.1s linear;
  transition: opacity 0.3s ease-out, visibility 0.1s 0.1s linear;
}

#topmenu ul li ul.sublist li {
  border: none;
  border-bottom: solid 1px #fff;
  clear: both;
  margin-top: -15px;
  padding: 0;
  width: 100%;
  -moz-transition: opacity 0.1s 0.15s ease-out, margin 0.3s 0.1s ease-out;
  -webkit-transition: opacity 0.1s 0.15s ease-out, margin 0.3s 0.1s ease-out;
  -o-transition: opacity 0.15s 0.15s ease-out, margin 0.3s 0.1s ease-out;
  transition: opacity 0.15s 0.15s ease-out, margin 0.3s 0.1s ease-out;
}

#topmenu ul li ul.sublist li:after {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  bottom: 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

#topmenu ul li ul.sublist li a {
  display: block;
  line-height: 40px;
  color: rgba(51, 51, 51, 0);
}

#topmenu ul li:hover ul.sublist {
  opacity: 1;
  visibility: visible;
}

#topmenu ul li:hover ul.sublist li {
  margin-top: 0;
  opacity: 1;
}

#topmenu ul li:hover ul.sublist li a {
  color: #333;
  -moz-transition: color 0.1s ease-out;
  -webkit-transition: color 0.1s ease-out;
  -o-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
}

#topmenu ul li:hover ul.sublist li a:hover {
  color: #f90;
  -moz-transition: color 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

#topmenu ul li:hover ul.sublist li:hover>a {
  color: #f90;
}

/* SUB SUB LIST */
#topmenu ul li ul.sublist li ul.subsublist {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 61px;
  top: 0px;
  background: #222;
  width: 150px;
  opacity: 0;
  visibility: hidden;
  -moz-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  -webkit-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  -o-transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
  transition: opacity 0.2s 0.01s ease-in-out, left 0.2s 0.1s ease-out, visibility 0.1s 0.1s linear;
}

#topmenu ul li ul.sublist li ul.subsublist li {
  border: none;
  border-bottom: 1px solid #ccc;
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
  opacity: 1;
}

#topmenu ul li ul.sublist li:hover ul.subsublist {
  opacity: 1;
  left: 91px;
  visibility: visible;
}

/*****************************/
#bann {
  background: url(../images/fondo_header.png);
  border-bottom: #000 solid 2px;
  border-top: #000 solid 2px;
}

#wrapper {
  width: 960px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
  position: relative;
}

#main_content {
  background: url(../images/bg-content.png);
}

#content {
  margin: 0 auto;
  width: 960px;
}

#contn_1 {
  background: #5798ac;
  float: left;
  font-family: 'Roboto', sans-serif;
  width: 32.2%;
  border-radius: 5px;
  margin: 5px;
  color: #FFF;
  padding: 10px;
}

#contn_2 {
  background: #fe8b2e;
  float: left;
  width: 32.2%;
  font-family: 'Roboto', sans-serif;
  border-radius: 5px;
  margin: 5px;
  color: #FFF;
  padding: 10px;
}

#contn_3 {
  background: #b4ca58;
  float: left;
  width: 32.2%;
  font-family: 'Roboto', sans-serif;
  border-radius: 5px;
  margin: 5px;
  color: #FFF;
  padding: 10px;
}

.contn {
  float: left;
  font-family: 'Roboto', sans-serif;
  width: 32.2%;
  border-radius: 5px;
  margin: 5px;
  color: #FFF;
  padding: 10px;
}

.bg_light-blue {
  background: #5798ac;
}

.bg_orange {
  background: #fe8b2e;
}

.bg_light-green {
  background: #b4ca58;
}

.imgini {
  border: #FFF solid 3px;
  display: block;
  margin: 10px;
}

#paquetes {
  width: 460px;
  float: left;
  margin: 5px 10px;
  height: 250px;
}

.paquetes {
  width: 460px;
  display: block;
  float: left;
  margin-bottom: 10px;
  clear: both;
}

.paquetes h5 {
  color: #f00;
  padding: 5px 0;
  font-size: 20px;
}

.paquetes p {
  font-style: italic;
}

#paquetes a {
  color: #F00;
  font-size: 16px;
  padding: 5px;
  margin-bottom: 10px;
  text-decoration: none;
}

.sp-text {
  padding: 10px 25px;
}

.text-center {
  text-align: center !important;
}

.imgleft {
  float: left;
  margin-right: 10px;
}

.imgright {
  display: block;
  float: right;
  margin-left: 10px;
}

.imgdestinos {
  float: left;
  border-radius: 5px;
  margin: 5px 0 5px 12px;
  border: #003 solid 2px;
  cursor: pointer;
}

#contright {
  float: right;
  width: 400px;
  min-height: 300px;
}

#contleft {
  float: left;
  width: 450px;
  min-height: 300px;
  margin-left: 20px;
}

.precios {
  color: #F00;
  font-size: 20px;
  font-style: oblique;
}

.scroll-content {
  margin: auto;
  position: relative;
  width: 97%;
}

.nav {
  background: #eee;
  border: solid 2px #036;
  position: fixed;
  width: 200px;
  z-index: 99;
}

.nav ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav ul li {
  display: block;
  border-bottom: solid 1px #036;
  width: 100%;
}

.nav ul li a {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  padding: 5px;
  color: #003F5D;
}

.nav ul li a:hover {
  color: #f90;
}

.txt-content {
  float: right;
  width: 720px;
}

.title {
  font-size: 28px !important;
  font-weight: bold;
  line-height: normal;
  color: #333;
}

.post {
  padding: 10px 0;
  border-bottom: solid 2px #606060;
  width: 100%;
}

.post p {
  font-size: 16px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*/////STYLE GRAL/////*/
.main_title {
  font: normal 36px/normal 'Merriweather', serif;
  color: #333;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  margin-bottom: 20px;
  top: 0 !important;
}

.main_title_ver2 {
  font: normal 36px/normal 'Merriweather', serif;
  color: #f9f9f9;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
  margin-top: 10px;
  padding: 0;
  margin-bottom: 20px;
  top: 0 !important;
}

.imgcenter {
  display: block;
  margin: 0 auto 10px;
}

.imgcenter-promo {
  display: block;
  margin: 0 auto;
}

.separator {
  display: block;
  width: 90%;
  margin: 10px auto;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.separator:after {
  content: "";
  clear: both;
}

p {
  font: 400 16px/22px 'Roboto', sans-serif;
  text-align: justify;
  color: #676467;
  margin: 0;
  padding: 0 15px;
}

.sub_title {
  font: 400 30px/normal 'Roboto', serif;
  line-height: 34px;
  font-weight: normal;
  text-transform: uppercase;
  padding: 5px 20px;
  background: #1b7dd0;
  color: #FFF;
  border-radius: 5px;
}

.tours a {
  display: block;
  float: left;
  padding: 10px;
  margin: 10px 0;
  width: 33%;
}

.tours a span {
  background: #f90;
  display: block;
  margin: 0 auto;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
}

.telefonos {
  font: 400 36px/normal 'Roboto', serif;
  color: #F00;
  font-style: oblique;
  text-align: center;
}

.direccion {
  font: 400 18px/normal 'Roboto', serif;
  text-align: center;
}

.mail {
  text-decoration: none;
  color: #f90;
  font-weight: bold;
  font-size: 18px;
}

/*/////HELPERS/////*/
.row_1 {
  padding: 0 0 30px;
}

.mat_2 {
  margin-top: 20px;
}

.mat_4 {
  margin-top: 40px;
}

.mat_6 {
  margin-top: 60px;
}

.mab_2 {
  margin-bottom: 20px;
}

.mab_3 {
  margin-bottom: 30px;
}

.mab_4 {
  margin-bottom: 40px;
}

.txt_ctr {
  text-align: center !important;
}

.tours a {
  display: block;
  float: left;
  padding: 5px;
  width: 33%;
}

.tours a img {
  display: block;
  margin: auto;
}

/**************************/
footer {
  height: 230px;
  background: #222222;
  background: -moz-linear-gradient(top, #222222 0%, #222222 50%, #000000 100%);
  background: -webkit-linear-gradient(top, #222222 0%, #222222 50%, #000000 100%);
  background: linear-gradient(to bottom, #222222 0%, #222222 50%, #000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#000000', GradientType=0);
  display: block;
  clear: both;
}

#footers {
  margin: 0 auto;
  width: 1000px;
  height: 210px;
  font-size: 16px;
}

.footer1 {
  width: 180px;
  float: left;
  margin: 10px;
  display: block;
  color: #F00;
}

.footer2 {
  width: 360px;
  float: left;
  margin: 10px;
  display: block;
  color: #F00;
}

.footer1 a {
  color: #FFF;
  display: block;
  background: url(../images/bg_footer_li.gif) bottom repeat-x;
  text-decoration: none;
  padding: 1px;
  font-size: 14px;
}

.footer1 a:hover {
  background: #000;
}

.imgleft1 {
  margin: 10px 0 10px 20px;
  border: solid 1px #999999;
}

.margin_bottom_10 {
  clear: both;
  width: 100%;
  height: 10px;
  font-size: 1px;
}

.margin_bottom_20 {
  clear: both;
  width: 100%;
  height: 20px;
  font-size: 1px;
}

.margin_bottom_30 {
  clear: both;
  width: 100%;
  height: 30px;
  font-size: 1px;
}

.margin_bottom_40 {
  clear: both;
  width: 100%;
  height: 40px;
  font-size: 1px;
}

.margin_bottom_50 {
  clear: both;
  width: 100%;
  height: 50px;
  font-size: 1px;
}

.margin_bottom_60 {
  clear: both;
  width: 100%;
  height: 60px;
  font-size: 1px;
}

/*carrousel*/
.thumb-carousel {}

.thumb-carousel .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  padding-bottom: 19px;
  background: url(../images/sh1.png) left bottom no-repeat;
}

.thumb-carousel figure {
  position: relative;
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  background: none;
  border: none;
}

.thumb-carousel .thumbnail a {
  position: relative;
  display: block;
  text-decoration: none;
  background: #e6e6e6;
  padding: 6px;
}

.thumb-carousel .thumbnail a:hover {
  background: #38caf8;
}

.thumb-carousel .thumbnail a .img {
  width: 100%;
}

.thumb-carousel .caption {
  padding-top: 15px;
  text-align: center;
}

.thumb-carousel .thumbnail a .caption .txt1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.thumb-carousel .thumbnail a:hover .txt1 {
  color: #fff;
}

.thumb-carousel .thumbnail a .caption .txt2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: #000000;
  font-size: 20px;
	
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 5px;
}

.thumb-carousel .thumbnail a:hover .txt2 {
  color: #fff;
}

.thumb-carousel .thumbnail a .caption .carousel_line {
  height: 1px;
  background: #e3dcd8;
  margin-top: 10px;
  margin-bottom: 10px;
}

.thumb-carousel .thumbnail a .caption .txt3 {
  text-align: left;
  padding: 0 10px 0px;
}

.thumb-carousel .thumbnail a .caption .txt3_1 {
  float: left;
  font-size: 13px;
  line-height: 18px;
  color: #9c948f;
  text-align: left;
}

.thumb-carousel .thumbnail a:hover .txt3_1 {
  color: #fff;
}

.thumb-carousel .thumbnail a .caption .txt3_2 {
  float: right;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: #bd4541;
  padding-top: 10px;
}

.thumb-carousel .thumbnail a .caption .txt4_2 {
  float: right;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #bd4541;
  padding-top: 10px;
}

.thumb-carousel .thumbnail a:hover .txt3_2 {
  color: #fff;
}

.thumb-carousel .thumbnail a .caption .txt3_2 span {
  font-size: 12px;
  line-height: 30px;
}

.thumb-isotope {}

.thumb-isotope .thumbnail {
  padding: 0px;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  padding-bottom: 19px;
  background: url(../images/sh1.png) left bottom no-repeat;
}

.thumb-isotope figure {
  position: relative;
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  padding: 0;
  background: none;
  border: none;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb-isotope .thumbnail a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 6px;
  background: #fff;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb-isotope .thumbnail a:hover {
  background: #38caf8;
}

.thumb-isotope .thumbnail a:hover figure {}

.thumb-isotope .thumbnail a img {
  width: 100%;
}

.thumb-isotope .thumbnail a em {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../images/photo1.png) center center no-repeat;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb-isotope .thumbnail a:hover em {
  opacity: 1;
  filter: alpha(opacity=100);
}

.thumb-isotope .thumbnail .caption {
  padding: 15px 0px;
  line-height: 22px;
  font-size: 16px;
  color: #fcf4db;
  text-align: center;
}

.thumb-isotope .thumbnail a .caption {
  text-align: center;
  padding-bottom: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: #000;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb-isotope .thumbnail a:hover .caption {
  color: #fff;
}

/*--end carousel -- */
/*-- img responsive -- */
.img-responsive {
  display: block;
  width: auto;
  border: none !important;
  max-width: 100%;
  height: auto;
}

div.sticky {
  position: fixed;
  top: 50px;
  right: 10px;
  z-index: 1;
}
.pb-60 {padding-bottom:60px;}
.pt-60 {padding-top:60px;}

/* -- end img responsive -- */
