/* --------------------------------

Primary style

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

body {
    opacity: 1;
    transition: 1s opacity;
}
body.fade-out {
    opacity: 0;
    transition: none;
}

body {
  font-size: 100%;
  font-family: 'Karla', sans-serif;
  color: #fff;
  background-color: white;
  text-rendering: geometricPrecision;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}

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

a:hover {
	color: #86754D;
	text-decoration: none;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.mishiguene-bg {
	background-color: #000;
}

/* --------------------------------

Main components

-------------------------------- */
html, body {
  height: 100%;
}

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(2, 23, 37, 0);
  height: 50px;
  width: 100%;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
    background: transparent;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -80px;
    background-color: rgba(2, 23, 37, 0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: rgba(0, 0, 0, 0);
  }
}

.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    left: 2.6em;
  }
}

.cd-secondary-nav {
	font-size: 13px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  /* hidden on small devices */
  display: block;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 1em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  border: solid 1px white;
  padding: 5px;
}

.cd-secondary-nav a:hover {
	color: #86754D;
	background: #fff;
	border: solid 1px white;
	text-decoration: none;
}

@media only screen and (min-width: 768px) {
	.cd-secondary-nav {
		font-size: 13px;
	  position: absolute;
	  top: 50%;
	  bottom: auto;
	  -webkit-transform: translateY(-50%);
	  -moz-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  -o-transform: translateY(-50%);
	  transform: translateY(-50%);
	  right: 5em;
	  /* hidden on small devices */
	  display: block;
	}
	.cd-secondary-nav li {
	  display: inline-block;
	  margin-left: 1em;
	}
	.cd-secondary-nav a {
	  display: inline-block;
	  color: white;
	  text-transform: uppercase;
	  font-weight: 700;
	  border: solid 1px white;
	  padding: 5px;
	}

	.cd-secondary-nav a:hover {
		color: #86754D;
		background: #fff;
		border: solid 1px white;
		text-decoration: none;
	}
}

.cd-primary-nav-trigger {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: transparent;
}
.cd-primary-nav-trigger .cd-menu-text {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  float: none;
  position: relative;
  margin-left: 75px;
  /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -7px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 7px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 100px;
    padding-left: 1em;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2;
  text-align: center;
  padding: 10px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 1em 2.6em;
  text-align: center;
  text-transform: uppercase;
}
.cd-primary-nav a {
  display: inline-block;
  padding: 0;
  color: #86754D;
}
.no-touch .cd-primary-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.cd-primary-nav .cd-label {
  color: #06446e;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 24px 2.6em 0 2.6em;
}

.cd-primary-nav .cd-label img {
  width: 150px;
  height: auto;
}

.cd-primary-nav .cd-label-2 {
  margin: 24px 2.6em 0 2.6em;
}

.cd-primary-nav .cd-label-2 img {
  width: 47px;
  height: auto;
}

.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0;
}
.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-facebook a {
  background-image: url("https://2ce3ee.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/facebook_mobile.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.cd-primary-nav .cd-instagram a {
  background-image: url("https://8eaf6f.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/instagram_mobile.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.cd-primary-nav .cd-twitter a {
   background-image: url("https://ce93d1.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/twitter_mobile.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.cd-primary-nav .cd-tripadvisor a {
   background-image: url("https://46700b.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/tripadvisor_mobile.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.cd-primary-nav .cd-mail a {
   background-image: url("https://7a12d1.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mail_mobile.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.cd-primary-nav .cd-maps a {
   background-image: url("https://5012e1.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/maps_mobile.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
	.cd-primary-nav {
		padding: 80px 0;
	}
	.cd-primary-nav .cd-label {
	  color: #06446e;
	  text-transform: uppercase;
	  font-weight: 700;
	  font-size: 14px;
	  font-size: 0.875rem;
	  margin: 2em 2.6em;
	}

	.cd-primary-nav .cd-label img {
	  width: 110px;
	  height: auto;
	}

  .cd-primary-nav .cd-label-2 {
	  margin: 2em 2.6em;
	}

	.cd-primary-nav .cd-label-2 img {
	  width: 80px;
	  height: auto;
	}

}
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
  }
  .cd-primary-nav .cd-label {
	  color: #06446e;
	  text-transform: uppercase;
	  font-weight: 700;
	  font-size: 14px;
	  font-size: 0.875rem;
	  margin: 2em 2.6em;
  }
}

.cd-intro {
  position: relative;
  height: 100%;
  background: url("https://b5c9f2.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cd-background-img.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-filosofia {
  position: relative;
  height: 225px;
  background: url("https://02a332.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mishiguene_bg_filosofia.jpg") no-repeat center bottom;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-filosofia h1 {
	padding: 0 10px;
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 1px;
	font-weight: 700;
}

.cd-menu {
  position: relative;
  height: 225px;
  background: url("https://7f3771.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_menu.jpg") no-repeat center top;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-menu h1 {
	padding: 0 10px;
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 1px;
	font-weight: 700;
}


.col-12-img {
	padding: 0 0 44px 0;
}


.cd-landing {
  position: relative;
  height: 100vh;
  background: url("/assets/www.mishiguene.com/img/mishiguene_bg_01.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px;
  }
}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}
@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.mishiguene-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 64px;
	background-color: #000;
	z-index: 2;
	margin: 0;
	padding: 0;
	border: none;
	text-align: center;
	float: none;
}

.logos-wrapper {
	display: table;
	width: 650px;
	height: 64px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}


.logos-wrapper a {
	display: inline-block;
	margin: 0;
	padding: 0;
	position: relative;
	float: left;
}

.mishiguene {
 width: 176px;
 height: 64px;
 display:block;
 background:transparent url('https://a61daf.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mishiguene_w.svg') center top no-repeat;
}

.mishiguene:hover {
   background-image: url('https://41e72e.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mishiguene_g.svg');
}

.diaspora {
 width: 208px;
 height: 64px;
 display:block;
 background:transparent url('https://cb8d35.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/diaspora-logo.svg') center center no-repeat;
}

.tujes {
 width: 88px;
 height: 64px;
 display:block;
 margin-left:20px!important;
 background:transparent url('https://319dbd.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/tujes.svg') center center no-repeat;
}

.latam2017 {
 width: 35px;
 height: 64px;
 display:block;
 margin-left:20px!important;
 background-image: url('https://f05a61.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/50best2017.svg');
}

.latam2018 {
 width: 35px;
 height: 64px;
 display:block;
 margin-left:20px!important;
 background-image: url('https://a3b342.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/50best2018.svg');
}

.facebook {
 width: 64px;
 height: 64px;
 display:block;
 background:transparent url('https://cc75fc.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/facebook_hover.svg') center top no-repeat;
}

.facebook:hover {
   background-image: url('https://d8ca69.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/facebook.svg');
}

.instagram {
 width: 64px;
 height: 64px;
 display:block;
 background:transparent url('https://5d16fc.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/instagram_hover.svg') center top no-repeat;
}

.instagram:hover {
   background-image: url('https://acf47f.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/instagram.svg');
}

.twitter {
 width: 64px;
 height: 64px;
 display:block;
 background:transparent url('https://3d21f2.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/twitter_hover.svg') center top no-repeat;
}

.twitter:hover {
   background-image: url('https://50ff21.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/twitter.svg');
}

.tripadvisor {
 width: 64px;
 height: 64px;
 display:block;
 background:transparent url('https://6099a4.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/tripadvisor_hover.svg') center top no-repeat;
}

.tripadvisor:hover {
   background-image: url('https://0a4970.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/tripadvisor.svg');
}

.mail {
 width: 64px;
 height: 64px;
 display:block;
 background:transparent url('https://5c853b.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mail_hover.svg') center top no-repeat;
}

.mail:hover {
   background-image: url('https://a5cc90.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mail.svg');
}

.maps {
 width: 64px;
 height: 64px;
 display:block;
 background:transparent url('https://3e8cb6.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/maps_hover.svg') center top no-repeat;
}

.maps:hover {
   background-image: url('https://15db87.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/maps.svg');
}

.icon path {
  fill: #86754D;
}

.icon:hover path {
  fill: #fff;
}

.social-wrapper {
	position: relative;
	float: right;
	text-align: right;
	width: 460px;
	height: 64px;
	margin: 0;
	padding: 0;
	border: none;
}

.social-wrapper ul {
	position: relative;
	float: right;
	text-align: right;
}

.social-wrapper ul li {
	width: 64px;
	height: 64px;
	display: inline-block;
	margin: 0;
	padding: 0;
}

.social-wrapper li a {
	text-decoration: none;
	margin: 0;
	padding: 0;
	border: none;
}

.social-wrapper li a img{
	padding: 0;
	margin: 0;
}

.spacing-120px {
	padding-top: 40px;
}

.lazy-container-portrait {
 display: block;
 position: relative;
 height: 0;
}

.post .lazy-container-portrait {
 padding-bottom: 125.6%;
}

.lazy-container-portrait img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}

.item {
    padding-top: 20px;
    padding-bottom: 20px;
}

.body-container {
	padding-top: 20px;
	padding-bottom: 64px;
}

.newsletter-container {
	padding: 20px 0;
}

.grid-item-cell {
	margin: 20px 0;
}



@media (min-width:768px) {
	.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
		position: relative;
		min-height: 1px;
		padding-right: 20px;
		padding-left: 20px;
	}
	.spacing-120px {
		padding-top: 120px;
	}

	.cd-filosofia {
	  position: relative;
	  height: 450px;
	  background: url("https://02a332.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mishiguene_bg_filosofia.jpg") no-repeat center bottom;
	  background-size: cover;
	  z-index: 1;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	}

	.cd-filosofia h1 {
		height: 450px;
		line-height: 450px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}

	.cd-menu {
	  position: relative;
	  height: 450px;
	  background: url("https://7f3771.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_menu.jpg") no-repeat center center;
	  background-size: cover;
	  z-index: 1;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	}

	.cd-menu h1 {
		height: 450px;
		line-height: 450px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}

	.col-12-img {
		padding: 64px 0;
	}
	.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 25%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2;
  text-align: left;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.cd-primary-nav li {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 1em 2.2em;
  text-transform: uppercase;
  text-align: left;
}

.logos-wrapper {
	width: 650px;
	position: relative;
	float: left;
	height: 64px;
	margin: 0;
	padding: 0;
	text-align: left;
}

.mishiguene-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 64px;
	background-color: #000;
	z-index: 2;
	margin: 0;
	padding: 0;
	border: none;
	text-align: left;
}
}

.reviews {
	margin: 0 auto;
	display: table;
	padding: 23px 0;
	text-align: center;
}


.reviews a {
	display: inline-block;
	margin: 0 20px;
	padding: 0;
	position: relative;
	float: left;
}

.50best {
	margin-bottom: 10px;
	width: 48px;
	height: 93px;
	display:block;
	background:transparent url('https://edb493.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/50best_w.svg') center center no-repeat;
	opacity: 1;
}

.50best:hover {
   opacity: 1;
}

.nytimes {
	margin-bottom: 10px;
	width: 202px;
	height: 48px;
	display:block;
	background:transparent url('https://ac5e5e.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/nytimes.svg') center center no-repeat;
	opacity: 1;
}

.nytimes:hover {
   opacity: 1;
}

.ft {
	margin-bottom: 10px;
	width: 133px;
	height: 48px;
	display:block;
	background:transparent url('https://34e3f2.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/ft.svg') center center no-repeat;
	opacity: 1;
}

.ft:hover {
   opacity: 1;
}

.israel {
	margin-bottom: 10px;
	width: 168px;
	height: 48px;
	display:block;
	background:transparent url('https://e1078f.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/timesisrael.svg') center center no-repeat;
	opacity: 1;
}

.israel:hover {
   opacity: 1;
}

.condenast {
	margin-bottom: 10px;
	width: 133px;
	height: 48px;
	display:block;
	background:transparent url('https://cb1d79.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/condenast.svg') center center no-repeat;
	opacity: 1;
}

.condenast:hover {
   opacity: 1;
}

.lanacion {
	margin-bottom: 10px;
	width: 170px;
	height: 48px;
	display:block;
	background:transparent url('https://cfa0e0.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/lanacion.svg') center center no-repeat;
	opacity: 1;
}

.lanacion:hover {
   opacity: 1;
}

@media (min-width: 768px) {
	.50best {
		margin-bottom: 10px;
		width: 48px;
		height: 93px;
		display:block;
		background:transparent url('https://edb493.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/50best_w.svg') center center no-repeat;
		opacity: 0.65;
	}

	.50best:hover {
	   opacity: 1;
	}

	.nytimes {
		margin-bottom: 10px;
		width: 202px;
		height: 48px;
		display:block;
		background:transparent url('https://ac5e5e.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/nytimes.svg') center center no-repeat;
		opacity: 0.65;
	}

	.nytimes:hover {
	   opacity: 1;
	}

	.ft {
		margin-bottom: 10px;
		width: 133px;
		height: 48px;
		display:block;
		background:transparent url('https://34e3f2.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/ft.svg') center center no-repeat;
		opacity: 0.65;
	}

	.ft:hover {
	   opacity: 1;
	}

	.israel {
		margin-bottom: 10px;
		width: 168px;
		height: 48px;
		display:block;
		background:transparent url('https://e1078f.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/timesisrael.svg') center center no-repeat;
		opacity: 0.65;
	}

	.israel:hover {
	   opacity: 1;
	}

	.condenast {
		margin-bottom: 10px;
		width: 133px;
		height: 48px;
		display:block;
		background:transparent url('https://cb1d79.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/condenast.svg') center center no-repeat;
		opacity: 0.65;
	}

	.condenast:hover {
	   opacity: 1;
	}

	.lanacion {
		margin-bottom: 10px;
		width: 170px;
		height: 48px;
		display:block;
		background:transparent url('https://cfa0e0.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/lanacion.svg') center center no-repeat;
		opacity: 0.65;
	}

	.lanacion:hover {
	   opacity: 1;
	}
}

.menues {
	margin: 0 auto;
	display: table;
	padding: 20px 0 5px 0;
	text-align: center;
}


.menues a {
	display: inline-block;
	margin: 0 8px;
	padding: 0;
	position: relative;
	float: left;
}

.menu-esp {
 width: 35px;
 height: 24px;
 display:block;
 background:transparent url('https://278c24.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_esp_m.svg') center bottom no-repeat;
}

.menu-esp:hover {
   background:transparent url('https://278c24.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_esp_m.svg') center bottom no-repeat;
}

.menu-eng {
 width: 35px;
 height: 18px;
 display:block;
 background:transparent url('https://2a1116.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_eng_m.svg') center bottom no-repeat;
}

.menu-eng:hover {
   background:transparent url('https://2a1116.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_eng_m.svg') center bottom no-repeat;
}


.vinos {
 width: 37px;
 height: 24px;
 display:block;
 background:transparent url('https://ccad90.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/vinos_m.svg') center bottom no-repeat;
}

.vinos:hover {
   background-image: url('https://ccad90.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/vinos_m.svg');
}

.wine {
 width: 33px;
 height: 18px;
 display:block;
 background:transparent url('https://e9e909.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/wine_m.svg') center center no-repeat;
}

.wine:hover {
   background-image: url('https://e9e909.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/wine_m.svg');
}

.cocteleria {
 width: 70px;
 height: 24px;
 display:block;
 background:transparent url('https://aa3fdb.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cocteleria_m.svg') center bottom no-repeat;
}

.cocteleria:hover {
   background-image: url('https://aa3fdb.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cocteleria_m.svg');
}

.cocktails {
 width: 63px;
 height: 18px;
 display:block;
 background:transparent url('https://221237.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cocktails_m.svg') center center no-repeat;
}

.cocktails:hover {
   background-image: url('https://221237.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cocktails_m.svg');
}

@media (min-width: 767px) {

	.menues {
		margin: 20px auto 0 auto;
		display: table;
		padding: 23px 0;
		text-align: center;
	}


	.menues a {
		display: inline-block;
		margin: 0 40px;
		padding: 0;
		position: relative;
		float: left;
	}

	.menu-esp {
	 margin-bottom: 10px;
	 width: 52px;
	 height: 34px;
	 display:block;
	 background:transparent url('https://311b7b.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_esp.svg') center top no-repeat;
	}

	.menu-esp:hover {
	   background-image: url('https://7c710c.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_esp_hover.svg');
	}

	.menu-eng {
	 margin-bottom: 10px;
	 width: 52px;
	 height: 26px;
	 display:block;
	 background:transparent url('https://0bec14.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_eng.svg') center top no-repeat;
	}

	.menu-eng:hover {
	   background-image: url('https://63789e.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu_eng_hover.svg');
	}

	.vinos {
	 margin-bottom: 10px;
	 width: 56px;
	 height: 34px;
	 display:block;
	 background:transparent url('https://9d7c14.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu03.svg') center top no-repeat;
	}

	.vinos:hover {
	   background-image: url('https://31c59b.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu03_hover.svg');
	}

	.wine {
	 margin-bottom: 10px;
	 width: 48px;
	 height: 26px;
	 display:block;
	 background:transparent url('https://929335.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/wine.svg') center top no-repeat;
	}

	.wine:hover {
	   background-image: url('https://09f270.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/wine_hover.svg');
	}

	.cocteleria {
	 margin-bottom: 10px;
	 width: 105px;
	 height: 34px;
	 display:block;
	 background:transparent url('https://858dd0.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu04.svg') center top no-repeat;
	}

	.cocteleria:hover {
	   background-image: url('https://52e677.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/menu04_hover.svg');
	}

	.cocktails {
	 margin-bottom: 10px;
	 width: 93px;
	 height: 26px;
	 display:block;
	 background:transparent url('https://ed1806.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cocktails.svg') center top no-repeat;
	}

	.cocktails:hover {
	   background-image: url('https://343a42.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/cocktails_hover.svg');
	}

}


/* Queries */

.container-fluid {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -10px;
  margin-left: -10px;
}

.cover-filosofia {
	position: relative;
	height: 225px;
	background: url("https://5d95aa.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_filosofia.jpg") no-repeat center bottom;
	background-size: cover;
	z-index: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-filosofia h1 {
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
}

.cover-menu {
	position: relative;
	height: 225px;
	background: url("https://7f3771.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_menu.jpg") no-repeat center center;
	background-size: cover;
	z-index: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-menu h1 {
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
}

.cover-brigada {
	position: relative;
	height: 225px;
	background: url("https://db0b34.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_brigada.jpg") no-repeat center center;
	background-size: cover;
	z-index: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-brigada h1 {
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
}

.cover-rrhh {
	position: relative;
	height: 225px;
	background: url("https://92a9fe.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_rrhh.jpg") no-repeat center center;
	background-size: cover;
	z-index: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-rrhh h1 {
	font-family: karla, sans-serif;
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
}

.cover-reservas {
	position: relative;
	height: 225px;
	background: url("https://50101d.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_reservas.jpg") no-repeat center center;
	background-size: cover;
	z-index: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-reservas h1 {
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
}

.cover-contacto {
	position: relative;
	height: 225px;
	background: url("https://0bafa4.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_contacto.jpg") no-repeat center center;
	background-size: cover;
	z-index: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-contacto h1 {
	font-family: karla, sans-serif;
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
}

.cover-prensa {
	position: relative;
	height: 225px;
	background: url("https://afc9c9.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_prensa.jpg") no-repeat center center;
	background-size: cover;
	z-index: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cover-prensa h1 {
	height: 225px;
	line-height: 225px;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 0;
	font-style: normal !important;
}


.spacer-200 {
	padding-top: 40px;
}

.col-6-text {
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	padding: none;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 400;
}

.col-12-text {
	font-family: karla, sans-serif;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	padding: 20px 0;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.col-12-text h1 {
	font-family: Georgia, serif;
	font-weight: normal;
	font-size: 30px;
	padding-top: 20px;
	text-transform: none;
	color: white;
}

.col-12-text h2 {
	font-family: karla, sans-serif;
	font-size: 30px;
	line-height: 48px;
	text-transform: uppercase;
	padding: none;
	color: #86754D;
	letter-spacing: 1px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.col-12-text p span {
	font-family: karla, sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	padding: none;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

.btn {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.brigada img {
	width: 100%;
	height: auto;
}
.brigada h1 {
	color: #fff;
	width: 100%;
	padding-top: 20px;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}

.brigada h2 {
	color: #fff;
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 1px;
	padding-bottom: 20px;
}

.brigada p {
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.brigada p span {
	font-weight: 700;
}

/* Formularios */

.black-forms {

}

.form-item {
	    padding-top: 10px;
	    padding-bottom: 10px;
	}

	.form-item p {
		font-family: Georgia, serif;
		font-size: 24px;
		line-height: 60px;
		text-transform: lower;
		flex: 1;
		color: #fff;
	}

.black-forms input {
	width: 100%;
	font-family: georgia, serif;
	font-weight: normal;
	font-style: italic;
	font-size: 24px;
	padding: 10px 5px;
	border: none;
	border-bottom: solid 1px #86754D;
	transition: border 0.3s;
	background-color: black;
}


.black-forms input:focus,
.black-forms input.focus {
  border-bottom: solid 1px #fff;
  outline: none;;
}

.black-forms textarea {
	font-family: georgia, serif;
	font-weight: normal;
	font-style: italic;
	font-size: 24px;
	padding: 10px;
	border: solid 1px #86754D;
	transition: border 0.3s;
	background-color: black;
	width: 300px;
	height: 320px;
}

.black-forms textarea:focus,
.black-forms textarea.focus {
  border: solid 1px #fff;
  outline: none;;
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    font-family: Georgia, Serif;
	font-style: italic;
    font-size: 30px;
    color: #86754D;
    /* 20px */
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 10px;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

::-webkit-input-placeholder {
   color: #86754D;
}

:-moz-placeholder { /* Firefox 18- */
   color: #86754D;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #86754D;
}

:-ms-input-placeholder {
   color: #86754D;
}

/* style 4 */

.inputfile-4 + label {
    color: #d3394c;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #722040;
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d3394c;
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #722040;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}
.select-titles {
	position: relative;
	display: inline-block;
	width: 80px;
}

.select-titles p {
	font-family: Georgia, serif;
	font-size: 30px;
	line-height: 60px;
	font-weight: normal;
	color: #fff;
}

.select-date {
	position: relative;
	display: inline-block;
	width: 70px;
	float: left;

}

.select-date p {
	font-family: Georgia, serif;
	font-size: 30px;
	line-height: 64px;
	font-weight: normal;
	color: #fff;
}

.select {
  position: relative;
  display: inline-block;
  width: 240px;
  font-family: Georgia, Serif;
	font-style: italic;
    font-size: 30px;
    line-height: 36px;
    color: #86754D;
}
.select select {
  display: inline-block;
  width: 240px;
  cursor: pointer;
  padding: 15px 10px;
  outline: 0;
  border: 0;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #86754D;
  transition: border 0.3s;
  background-color: black;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select input {
	position: relative;
  display: inline-block;
  width: 240px;
  cursor: pointer;
  padding: 15px 10px;
  outline: 0;
  border: 0;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #86754D;
  transition: border 0.3s;
  background-color: black;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #fff;
  background: black;
  border-bottom: solid 1px white;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #86754D transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #fff;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

#map {
    height: 450px;
}

@media (min-width:768px) {

	.body-container {
		padding-top: 44px;
		padding-bottom: 64px;
	}

	.container-fluid {
	  padding-right: 40px;
	  padding-left: 40px;
	  margin-right: auto;
	  margin-left: auto;
	}

	.item {
	    padding-top: 20px;
	    padding-bottom: 40px;
	}

	.form-item {
	    padding-top: 10px;
	    padding-bottom: 10px;
	}

	.form-item p {
		font-family: Georgia, serif;
		font-size: 24px;
		line-height: 60px;
		text-transform: lower;
		color: #fff;
	}

	.row {
	  margin-right: -20px;
	  margin-left: -20px;
	}
	.cover-filosofia {
		position: relative;
		height: 420px;
		background: url("https://5d95aa.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_filosofia.jpg") no-repeat center top;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-filosofia h1 {
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}

	.cover-menu {
		position: relative;
		height: 420px;
		background: url("https://7f3771.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_menu.jpg") no-repeat center center;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-menu h1 {
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}
	.cover-brigada {
		position: relative;
		height: 420px;
		background: url("https://db0b34.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_brigada.jpg") no-repeat center center;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-brigada h1 {
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}
	.cover-rrhh {
		position: relative;
		height: 420px;
		background: url("https://92a9fe.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_rrhh.jpg") no-repeat center top;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-rrhh h1 {
		font-family: karla, sans-serif;
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}
	.cover-reservas {
		position: relative;
		height: 420px;
		background: url("https://50101d.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_reservas.jpg") no-repeat center center;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-reservas h1 {
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}

	.cover-contacto {
		position: relative;
		height: 420px;
		background: url("https://0bafa4.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_contacto.jpg") no-repeat center center;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-contacto h1 {
		font-family: karla, sans-serif;
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
	}

	.cover-prensa {
		position: relative;
		height: 420px;
		background: url("https://afc9c9.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/header_prensa.jpg") no-repeat center center;
		background-size: cover;
		z-index: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.cover-prensa h1 {
		height: 420px;
		line-height: 420px;
		color: #fff;
		text-transform: uppercase;
		font-size: 30px;
		letter-spacing: 1px;
		font-weight: 700;
		padding: 0;
		font-style: normal;
	}

	.spacer-200 {
		padding-top: 80px;
	}
	.col-6-text {
		font-size: 16px;
		line-height: 22px;
		padding: 20px;
	}
	.col-12-text {
		font-size: 16px;
		line-height: 22px;
		padding: 20px 0;
	}

	.brigada h1 {
		color: #fff;
		width: 100%;
		font-size: 20px;
		line-height: 24px;
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: 1px;
	}

	.brigada h2 {
		color: #fff;
		width: 100%;
		font-size: 16px;
		line-height: 24px;
		text-transform: uppercase;
		font-weight: 400;
		letter-spacing: 1px;
	}

	.brigada p {
		color: #fff;
		font-size: 16px;
		line-height: 22px;
		font-weight: 400;
		text-rendering: geometricPrecision !important;
	}

	.brigada p span {
		color: #fff;
		font-weight: 700;
		text-rendering: geometricPrecision !important;
	}

	/* Formularios */

	.black-forms input {
		width: 560px;
		font-family: georgia, serif;
		font-weight: normal;
		font-style: italic;
		font-size: 30px;
		padding: 10px;
		border: none;
		border-bottom: solid 1px #86754D;
		transition: border 0.3s;
		background-color: black;
	}


	.black-forms input:focus,
	.black-forms input.focus {
	  border-bottom: solid 1px #fff;
	  outline: none;;
	}

	.black-forms textarea {
		font-family: georgia, serif;
		font-weight: normal;
		font-style: italic;
		font-size: 30px;
		padding: 10px;
		border: solid 1px #86754D;
		transition: border 0.3s;
		background-color: black;
		width: 560px;
		height: 320px;
	}

	.black-forms textarea:focus,
	.black-forms textarea.focus {
	  border: solid 1px #fff;
	  outline: none;;
	}

	.js .inputfile {
	    width: 0.1px;
	    height: 0.1px;
	    opacity: 0;
	    overflow: hidden;
	    position: absolute;
	    z-index: -1;
	}

	.inputfile + label {
	    font-family: Georgia, Serif;
		font-style: italic;
	    font-size: 30px;
	    color: #86754D;
	    /* 20px */
	    font-weight: normal;
	    text-overflow: ellipsis;
	    white-space: nowrap;
	    cursor: pointer;
	    display: inline-block;
	    overflow: hidden;
	    padding: 10px;
	    /* 10px 20px */
	}

	.no-js .inputfile + label {
	    display: none;
	}

	.inputfile:focus + label,
	.inputfile.has-focus + label {
	    outline: 1px dotted #000;
	    outline: -webkit-focus-ring-color auto 5px;
	}

	.inputfile + label * {
	    /* pointer-events: none; */
	    /* in case of FastClick lib use */
	}

	.inputfile + label svg {
	    width: 1em;
	    height: 1em;
	    vertical-align: middle;
	    fill: currentColor;
	    margin-top: -0.25em;
	    /* 4px */
	    margin-right: 0.25em;
	    /* 4px */
	}

	::-webkit-input-placeholder {
	   color: #86754D;
	}

	:-moz-placeholder { /* Firefox 18- */
	   color: #86754D;
	}

	::-moz-placeholder {  /* Firefox 19+ */
	   color: #86754D;
	}

	:-ms-input-placeholder {
	   color: #86754D;
	}

	/* style 4 */

	.inputfile-4 + label {
	    color: #d3394c;
	}

	.inputfile-4:focus + label,
	.inputfile-4.has-focus + label,
	.inputfile-4 + label:hover {
	    color: #722040;
	}

	.inputfile-4 + label figure {
	    width: 100px;
	    height: 100px;
	    border-radius: 50%;
	    background-color: #d3394c;
	    display: block;
	    padding: 20px;
	    margin: 0 auto 10px;
	}

	.inputfile-4:focus + label figure,
	.inputfile-4.has-focus + label figure,
	.inputfile-4 + label:hover figure {
	    background-color: #722040;
	}

	.inputfile-4 + label svg {
	    width: 100%;
	    height: 100%;
	    fill: #f1e5e6;
	}
	.select-titles {
		position: relative;
		display: inline-block;
		width: 90px;
	}

	.select-titles p {
		font-family: Georgia, serif;
		font-size: 30px;
		line-height: 60px;
		font-weight: normal;
		color: #fff;
	}

	.select-date {
		position: relative;
		display: inline-block;
		width: 90px;
		float: left;

	}

	.select-date p {
		font-family: Georgia, serif;
		font-size: 30px;
		line-height: 64px;
		font-weight: normal;
		color: #fff;
	}

	.select {
	  position: relative;
	  display: inline-block;
	  width: 240px;
	  font-family: Georgia, Serif;
		font-style: italic;
	    font-size: 30px;
	    line-height: 36px;
	    color: #86754D;
	}
	.select select {
	  display: inline-block;
	  width: 240px;
	  cursor: pointer;
	  padding: 15px 10px;
	  outline: 0;
	  border: 0;
	  border: none;
	  border-radius: 0;
	  border-bottom: solid 1px #86754D;
	  transition: border 0.3s;
	  background-color: black;
	  appearance: none;
	  -webkit-appearance: none;
	  -moz-appearance: none;
	}

	.select input {
		position: relative;
	  display: inline-block;
	  width: 240px;
	  cursor: pointer;
	  padding: 15px 10px;
	  outline: 0;
	  border: 0;
	  border: none;
	  border-radius: 0;
	  border-bottom: solid 1px #86754D;
	  transition: border 0.3s;
	  background-color: black;
	  appearance: none;
	  -webkit-appearance: none;
	  -moz-appearance: none;
	}
	.select select::-ms-expand {
	  display: none;
	}
	.select select:hover,
	.select select:focus {
	  color: #fff;
	  background: black;
	  border-bottom: solid 1px white;
	}
	.select select:disabled {
	  opacity: 0.5;
	  pointer-events: none;
	}
	.select__arrow {
	  position: absolute;
	  top: 30px;
	  right: 10px;
	  width: 0;
	  height: 0;
	  pointer-events: none;
	  border-style: solid;
	  border-width: 8px 5px 0 5px;
	  border-color: #86754D transparent transparent transparent;
	}
	.select select:hover ~ .select__arrow,
	.select select:focus ~ .select__arrow {
	  border-top-color: #fff;
	}
	.select select:disabled ~ .select__arrow {
	  border-top-color: #ccc;
	}

	#map {
	    height: 450px;
	}

}

@media (min-width:992px) {
	.spacer-200 {
		padding-top: 160px;
	}
	.col-6-text {
		font-size: 16px;
		line-height: 22px;
		padding: 40px;
	}
}

@media (min-width:1200px) {
	.spacer-200 {
		padding-top: 200px;
	}
	.col-6-text {
		font-size: 16px;
		line-height: 22px;
		padding: 80px;
	}

}

.wp-container {
	z-index: 1;
	position: relative;
}

/* Modals */

.modal-content {
  position: relative;
  background: url("https://77d267.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/fayer-bg.jpg") no-repeat center center;
  background-size: cover;
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 0px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.modal-header {
  padding: 15px;
  border-bottom: none;
}

.close {
  float: right;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-shadow: none;
  opacity: 1;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}

.modal-titulo {
	font-family: 'Teko', sans-serif;
	font-size: 36px;
  margin-top: 20px;
  margin-bottom: 5px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
}

.modal-subtitulo {
	font-family: 'Teko', sans-serif;
	font-size: 24px;
  margin-top: 0;
  margin-bottom: 10px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
}

.modal-copy {
  margin: 10px 0;
  border-top: solid 1px white;
  padding: 10px 0;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

@media (min-width:768px) {
  .modal-titulo {
  	font-family: 'Teko', sans-serif;
  	font-size: 48px;
    margin-top: 40px;
    margin-bottom: 10px;
  	text-transform: uppercase;
  	color: #fff;
  	font-weight: 500;
  }

  .modal-subtitulo {
  	font-family: 'Teko', sans-serif;
  	font-size: 30px;
    margin-top: 0;
    margin-bottom: 10px;
  	text-transform: uppercase;
  	color: #fff;
  	font-weight: 500;
  }

  .modal-copy {
    margin: 20px 0;
    border-top: solid 1px white;
    padding: 10px 0;
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
  }
}

.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

#imglink {
text-decoration:none;
border:0;
outline:none;
}

.resmio-button .btn {
	font-family: karla, sans-serif;
	font-size: 18px;
	background-color: #86754D;
	background-image: none !important;
	border-style: none;
	border-color: none;
	text-shadow: none;
	border-color: none !important;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none !important;
    padding: 14px;
    text-rendering: optimizeLegibility;
}

.resmio-button .btn:hover, .resmio-button .btn:focus {

  background-color: #66593a;

  background-image: none !important;

  border-style: 1px solid #49260a;

  border-color: #011a32;

}

img {
  pointer-events: none;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}


.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}


/* rrhh form */

/*
Contact Form by html-form-guide.com
You can customize all the aspects of the form in this style sheet
All the style elements use form id selector(notice the #contactus). So, including this
stylesheet does not affect the other elements at all!
*/

#contactus fieldset
{

}

#contactus .error
{
   font-family: 'Karla', Arial, sans-serif;
   font-size: 12px;
   color: #fff;
}

#contactus fieldset#antispam
{
   padding:2px;
   border-top:1px solid #EEE;
   border-left:0;
   border-right:0;
   border-bottom:0;
   width:350px;
}

#contactus fieldset#antispam legend
{
   font-family : Arial, sans-serif;
   font-size: 0.8em;
   font-weight:bold;
   color:#333;
}

#contactus .short_explanation
{
   font-family : Arial, sans-serif;
   font-size: 0.6em;
   color:#333;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/
#contactus .spmhidip
{
   display:none;
   width:10px;
   height:3px;
}
#fg_crdiv
{
   font-family : Arial, sans-serif;
   font-size: 0.3em;
   opacity: .2;
   -moz-opacity: .2;
   filter: alpha(opacity=20);
}
#fg_crdiv p
{
    display:none;
}

.full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-caption {
	margin: 0 auto;
	width: 100%;
  position: absolute;
  left:0;
  bottom: 120px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
.carousel-caption a {
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

.sound-icon {

	position: absolute;
	top: 32px;
	right: 80px;
	z-index: 12;
}
.sounds {
	width: 31px;
	height: 24;
	background-color: fuchsia;
}

.scroll-wrapper {
	-webkit-overflow-scrolling: touch;
  	overflow-y: scroll;

	width: 100%;
	height: 100%;
}
/* RESPONSIVE */
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
.logos-wrapper {
  width: 300px;
}

.mishiguene {
 width: 20%;
 height: 64px;
 background:transparent url('https://a61daf.claudeassets.com/20200704133733im_/http://www.mishiguene.com/img/mishiguene_w.svg') center center no-repeat;
 background-size: contain;	
}

.diaspora {
 width: 20%;
 height: 64px;
 margin-left:8px;
}

.tujes {
 width: 18%;
 height: 64px;
 margin-left:10px!important;
}

.latam2017 {
  margin-left: 10px!important;
}
.latam2018 {
  margin-left: 10px!important;
}

}

/*
     FILE ARCHIVED ON 06:38:02 Jun 11, 2020 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 06:34:27 Sep 18, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.433
  exclusion.robots: 0.038
  exclusion.robots.policy: 0.028
  esindex: 0.006
  cdx.remote: 50.482
  LoadShardBlock: 584.749 (3)
  PetaboxLoader3.datanode: 428.918 (4)
  PetaboxLoader3.resolve: 194.577 (2)
  load_resource: 57.127
*/