*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    height: 100%;
    overflow-x: hidden;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    /* background: linear-gradient(45deg, #e6f7ff, #fffde8); */

    background: linear-gradient(45deg, #e6f7ff, #fffde8);
    background-size: 400% 400%;

    -webkit-animation: animateBg 10s ease infinite;
    -moz-animation: animateBg 10s ease infinite;
    animation: animateBg 10s ease infinite;
}


@-webkit-keyframes animateBg {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes animateBg {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes animateBg {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


.menu-btn {
    width: 50px;
    height: 50px;
    padding: 4px;
    cursor: pointer;
}
.navbar-app {
    box-shadow: 0 0 3px #ccc;
}

.menu-btn .bar {
    width: 100%;
    height: 6px;
    margin: 4px 0;
    border-radius: 4px;
    background-color: black;
    transition: all .5s ease;
}

.menu-btn:hover .bar {
    background-color: chocolate;
}
.menu-btn:hover .bar:nth-child(2) {
    width: 80%;
}
.menu-btn:hover .bar:nth-child(3) {
    width: 60%;
}



.top-bar {
    font-size: 14px;
    background-color: #ef6800;
    /* background: linear-gradient(45deg, #ef6800, #2196f3, #ff9800,#ff5722); */
    color: #fff;
    background: #588ab2;
}


.contactus {
    background: #3f4142;
    color: #ffffff;
    background-attachment: fixed;
}

.contactus-form .form-control {
    border-radius: 0;
    border: none
}

.contactus-form .btn-custom {
    background-color: #363636;
    color: #fff;
    cursor: pointer
}

.footer {
    background: #252525;
    color: #fff;
    padding: 20px 60px;
    position: relative
}

.footer::before {
    content: '';
    height: 40px;
    width: 100%;
    display: block;
    background: url(../assets/images/footer-img.png) no-repeat;
    position: absolute;
    top: -30px;
    left: 0;
    background-size: 100% 100%
}

.footer-links a {
    color: inherit;
    height: 25px;
    width: 25px;
    display: inline-block;
    margin: 1px 2px;
    text-align: center;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.footer-links a:hover {
    -webkit-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg)
}

.contact-details a{
    color: inherit;

}

h1.gradient, h2.gradient, h3.gradient, h4.gradient, h5.gradient, h6.gradient, .text.gradient {
    color: #e19108;
    background: linear-gradient(130deg, #d9af0a, #e19108 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Cardo", serif;
    font-weight: bold;
}

.text-justify {
    text-align: justify;
}

.home-img {
    box-shadow: -10px -10px 0px #b3cde2, 10px 10px 0px #83a184;
}

.nav-menu{
    width: 300px;
    height: 100%;
    background: #0b4776;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -400px;
    transition: all .7s ease-in;
}

#navMenu.show {
    right: 0;
}

.nav-menu ul {
    padding: 0;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-menu ul li {
    list-style: none;
}

.nav-menu ul li a {
    padding: 10px;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    transition: all .5s ease;
}

.nav-menu ul li a:hover {
    letter-spacing: 1.2px;
    color: #f8cf2d;
}


.close-btn {
    height: 65px;
    width: 65px;
    color: #ffffff;
    padding: 15px;
    transition: all .5s ease;
    transform-origin: center;
    cursor: pointer;
}

.close-btn:hover {
    transform: rotate(360deg);
    color: #f8f83e;
}

.payment-info {
    margin: 0;
    padding: 50px 20px;
    background: #dcf0ff;
}


.booking {
    background: #0b8075; 
    background: -webkit-linear-gradient(15deg, #07bcab, #0b8075);
    background: linear-gradient(15deg, #07bcab, #0b8075)
}

.book-icon{
	float: right;
	margin-top: 5px;
	opacity: 0;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.book-option{
	text-align: center;
	padding: 20px;
	background: rgba(239, 239, 239, 0.69);
	margin: 10px 30px;
	border-radius: 5px;
	-webkit-animation: anim-effect 3s linear infinite;
	        animation: anim-effect 3s linear infinite;
}
.book-option h2{
	color: #E91E63;
}
.book-option img{
	width: 200px;
	display: block;
	margin: 0 auto;
	margin-bottom: 30px;
}
.book-option a{
	height: 50px;
	background: #8BC34A;
	/* min-width: 180px; */
	max-width: 300px;
	margin: 10px auto;
	display: block;
	font-size: 20px;
	color: #ffffff;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
	text-decoration: none;
}

.book-option a:hover{
	text-decoration:none;
	-webkit-box-shadow: inset 0px 0px 150px #189c63;
	        box-shadow: inset 0px 0px 150px #189c63;
	letter-spacing: 2px;
}
.book-option a:hover .book-icon{opacity: 1;}
@-webkit-keyframes anim-effect{
	0% { -webkit-box-shadow: 0 0 0 rgba(38,44,60,0.5); box-shadow: 0 0 0 rgba(38,44,60,0.5)}
  70%{ -webkit-box-shadow: 0 0 0 20px rgba(38,44,60,0); box-shadow: 0 0 0 20px rgba(38,44,60,0)}
  100%{-webkit-box-shadow: 0 0 0 rgba(38,44,60,0);box-shadow: 0 0 0 rgba(38,44,60,0)}
}
@keyframes anim-effect{
	0% { -webkit-box-shadow: 0 0 0 rgba(38,44,60,0.5); box-shadow: 0 0 0 rgba(38,44,60,0.5)}
  70%{ -webkit-box-shadow: 0 0 0 20px rgba(38,44,60,0); box-shadow: 0 0 0 20px rgba(38,44,60,0)}
  100%{-webkit-box-shadow: 0 0 0 rgba(38,44,60,0);box-shadow: 0 0 0 rgba(38,44,60,0)}
}



.services-wrap {
    background-color: #4f5844;
}

.services-content {
    border: 1px solid #df9a08;
}

.amenities-container{
	max-width: 800px;
	margin-bottom: 30px;
    margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
    padding: 20px;
}

.amenities-container .amenity{
	min-width: 140px;
	text-align: center;
	padding: 30px 10px;
	flex: 1;
}
.amenities-container .amenity .amenity-icon{
	width: 80px;
	height: 80px;
	background: #a97f00;
	border-radius: 50%;
	font-size: 33px;
	text-align: center;
	color: #ffffff;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin-bottom: 10px;
    transition: all 1s ease;
    cursor: pointer;
}
.amenity-icon svg {
    max-width: 100%;
}
.amenity-icon + label {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: all 1s ease;
}
.amenities-container .amenity:hover .amenity-icon{
	color: #a97f00;
	background-color: #ffffff;
    transform: translateY(-10px);
}
.amenities-container .amenity:hover .amenity-icon + label {
	color: #a97f00;
}

.qr-code-container {   
    border-radius: 16px;
    max-width: 300px;
}