footer a:hover { color: gold; }

.slide { padding: 1rem;}

.card:hover {
	border-radius: 50%;
	border: 20px solid rgba(200,220,220,1);
	background-color: yellow;
	transition: ease-in-out 0.5s;
}

#photo:hover { }

.shadow-drop-2-center:hover {
	color: blue;
	-webkit-animation: shadow-drop-2-center 0.8s cubic-bezier(0.470, 0.000, 0.745, 0.715) infinite both;
	        animation: shadow-drop-2-center 0.8s cubic-bezier(0.470, 0.000, 0.745, 0.715) infinite both;
}
/* ----------------------------------------------
 * Generated by Animista on 2023-7-10 18:48:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shadow-drop-2-center
 * ----------------------------------------
 */
@-webkit-keyframes shadow-drop-2-center {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px);
            transform: translateZ(50px);
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
            box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-2-center {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px);
            transform: translateZ(50px);
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
            box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}


.container {
	width: 100%;
}

@media (min-width: 640px) {
	.container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
	.container {
		max-width: 1280px;
	}
}

@media (min-width: 1536px) {
	.container {
		max-width: 1536px;
	}
}


h5 {
	text-transform: uppercase;
}

html {
	scroll-behavior: smooth;
}

/*-- Body Reset --*/
body {
	overflow-x: hidden;
	font-family: 'Montserrat', sans-serif;
	color: #616971;
}

.dropdown-item.active,
.dropdown-item:active {
	color: #fff !important;
	text-decoration: none;
	background-color: #96b0dc;
}

.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
}

.bg-light {
	background: #fff !important;
}

.bio {
	border-radius: 15px;
}

.highlight {
	color: #6F4E37 !important;
}

/*============= TOP BAR HEADER =============*/
.top-bar {
	background: #777;
	height: 2.8rem;
	padding: .5rem 0;
}

.top-bar a {
	color: white;
	text-decoration: none;
	font-size: 1.1rem;
}

/*============= NAVIGATION =============*/

.navbar-nav .nav-link {
	padding-left: 1rem;
}

.navbar-brand img {
	height: 5rem;
}

.navbar {
	padding-top: 1rem;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: .01rem;
	box-shadow: 0 .5rem .5rem rgb(0, 0, 0, .15);
}

.nav-item {
	font-weight: 450;
	padding: .2rem;
	white-space: nowrap;
}

.nav-link {
	color: #093C5B !important;
}

.nav-link.active,
.nav-link:hover {
	color: white !important;
	background: #3196d7;
	text-shadow: none !important;
}

.nav-link.active {
	background: #ffde5f;
	font-weight: 500;
	color: navy !important;
}

.swiper-button-next,
.swiper-button-prev{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: var(--white);
    color: var(--black);
	top: calc(50% - 3rem) !important;
	margin-top: 0px !important;
	margin-left: 0.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: var(--primary);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 2rem;
}



.room .slide{
    background: var(--white);
    border: .1rem solid rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
}

.room .slide .image{
    height: 20rem;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.room .slide .image img{
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.room .slide .image .price{
    position: absolute;
    top: 2.5rem; left: 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-size: 1.7rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    text-transform: lowercase;
}

.room .slide .image .fa-shopping-cart{
    position: absolute;
    top: 2.5rem; right: 2.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    font-size: 2rem;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
}

.room .slide .image .fa-shopping-cart:hover{
    background: var(--secondary);
    color: var(--white);
}

.room .slide .content{
    padding: 2rem;
    padding-top: 0;
}

.room .slide .content h3{
    font-size: 2.5rem;
    color: var(--black);
}

.room .slide .content p{
    font-size: 1.6rem;
    color: #666;
    padding: .5rem 0;
    line-height: 1.5;
}

.room .slide .content .stars{
    padding: 1rem 0;
}

.room .slide .content .stars i{
    font-size: 1.7rem;
    color: var(--primary);
}

/*============= CAROUSEL =============*/

#carousel {

	box-shadow: 0 1rem 1rem rgb(0, 0, 0, .15);

}

.carousel-inner {
	max-height: 30rem !important;
}

/*---Change Carousel Transition Speed --*/

.carouse-item-prev,
.carousel-item-next,
.carousel-item-active {
	transition: transform 3s ease;
}


/*-- Carousel Content --*/



/*===== FIXED BACKGROUND IMG =====*/



/*-- Emoji Navbar --*/



/*============= FOOTER =============*/

footer {
	background-color: #183248;
	padding: 1rem 2rem 3rem;
}

footer img {
	height: 3.5rem;
	margin: 1.5rem auto;
}

footer p,
footer a {
	color: white;
	text-decoration: none;
}


ul.social {
	list-style: none;
	display: flex;
	max-width: 16rem;
	margin: 0 auto;
	padding: 0
}

ul.social li {
	margin: 0 auto;
}

footer .svg-inline--fa {
	font-size: 2.3rem;
}

footer .svg-inline--fa:hover {
	columns: #68a0d2;
}

/*============= SOCKET =============*/

.socket {
	background-color: #222;
	border-top: 01.rem solid #4981b3;
}

  
@media screen and (min-width: 1200px) and (max-width: 1400px) {
	.cucu { 
		font-size: 0.7rem !important;
		left: 75% !important;
		line-height: 2 !important;
		top: -8.8rem !important;
		max-width: max-content;
		width: 100% !important;
	}
}

/* Devices under 1199px (xl) */
@media (max-width: 1199.98px) {

	#bio1 { display: none;}

}

/* Devices under 768px (md) */
@media (max-width: 767.98px) {

	.nomobile {
		display: none;
	}

	#photo {
		height: 10rem !important;
	}

	#headbck,
	.carousel {
		height: 40vw !important;
	}
}


@media (max-width: 1080px) {
	.navbar-brand img {
		height: 3rem;
	}

	#photo {
		height: 15rem !important;
	}

}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

/*-- Bootstrap Mobile Gutter Fix --*/
.row,
.container-fluid {
	margin-left: 0px !important;
	margin-right: 0px !important;
}

/*-- Fixed Background Image --*/
.fixed-background {
	position: relative;
	width: 100%;
	z-index: 1000 !important;
}

.fixed-wrap {
	clip: rect(0, auto, auto, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -999 !important;
}

.fixed {
	z-index: -999 !important;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
}

.btn-primary {
	background: #2a52a2 !important;
	border-radius: 15px;
}

@media (max-width: 1050px) {
	.carousel-caption {
		top: 3rem !important;
	}

	.carousel-caption h1 {
		font-size: 3rem !important;
	}

	.carousel-caption h2 {
		font-size: 1rem !important;
	}
}

.carousel-caption {
	top: 9rem;
	text-shadow: -1px -1px 2px black;
	background: rgb(0, 0, 0, 0.75);
	border-radius: 50px;
	height: 25rem;
}

.carousel-caption h1 {
	font-size: 3.8rem;
}

.carousel-caption h2 {
	font-size: 2rem;
}

.carousel-caption h3 {
	font-size: 1.5rem;
}