body{
	 font-family: 'Merienda';font-size: 15px;
}
.nav-item{
	padding-right: 12px;
	padding-left: 12px;
}
.flag{
	max-height: 20px;
	max-width: 20px;
	margin-top: 10px;
}
.navbar-nav .nav-link {
	position: relative;
	color: #8B0000;
	transition: all 0.3s ease;
	padding-bottom: 5px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
	color: #8B0000;
	text-decoration: none;
  }

  .navbar-nav .nav-link.active {
	color: #8B0000;
	font-weight: 600;
  }

  .navbar-nav .nav-link.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background-color: #8B0000;
  }

.reserve-container{
	position: relative;
}
.card-body{
	-webkit-transition: all 1s ease; /* Safari and Chrome */
  	-moz-transition: all 1s ease; /* Firefox */
  	-o-transition: all 1s ease; /* IE 9 */
  	-ms-transition: all 1s ease; /* Opera */
  	transition: all 1s ease;
}
.card-body:hover{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.reserve-text{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-reserve{
	opacity: 0.4;
	max-height: 750px;
}

.carousel-caption{
	top: 40%;
}

.img-slider{
	min-height: 320px;
}

.navMenu{
	padding-top: 75px;
	padding-bottom: 20px;
}

.card-img-top{
	height: 200px;
}

.map{
	height: 320px;
}

@media screen and (max-width : 1920px){
  .only-mobile{
  visibility:hidden;
  }
}

@media screen and (max-width : 506px){
 
 .only-mobile{
  visibility:visible;
  }
}

.footer{
	margin-bottom: 30px;
	margin-top: 30px;
	padding-top: 20px;
}
.social-icon{
	font-size:28; 
}

footer{
	position: fixed;
	bottom: 0px;
	padding-top: 20px;
}


.bubble {
	padding: 20px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	position: relative;
	font-family: 'Merienda', cursive;
	color: #333;
	font-size: 1rem;
	line-height: 1.6;
  }
  
  .bubble::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
  }
  
  .bubble.left::after {
	left: -20px;
	top: 20px;
	border-width: 10px 20px 10px 0;
	border-color: transparent #fff transparent transparent;
  }
  
  .bubble.center::after {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 20px 20px 0 20px;
	border-color: #fff transparent transparent transparent;
  }
  
  .bubble.right::after {
	right: -20px;
	top: 20px;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent #fff;

	
  }
  .bubble.bottom::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 30%;
	transform: translateX(-50%);
	border-width: 20px 20px 0 20px;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
  }
  
  