@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary_color:#4D0234;
    --secondary_color:#D2DE31;
	--hd_clr:#812061;
    --bg_color:#EFFDD9;
    --bg_color2:#D0DC2F59;
    --bg_smoke:#E8E9E759;
}
body{
    font-size: 16px;
    color: #000;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	line-height: 150%;
}
:is(a,a:hover){
    text-decoration: none;
}
.head{
	margin-bottom: 20px;
}
h1,h2,h3,h4,h5,h6{
	font-weight: inherit;
	line-height: 1.3;
}
.head,
.rm_hd{
	font-size: 35px;
	color: var(--hd_clr);
	margin-top: 0;
}
ul{
    margin: 0;
    list-style: none;
}
p{
	margin-bottom: 20px;
}
.text_center{
	text-align: center;
}
.img_responsive{
	max-width: 100%;
	margin:0 auto;
	display: block;
}
.default_container{
	display: block;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 50px;
}
.grid_two{
	grid-template-columns: repeat(2,1fr);
	
}
.grid_three{
	grid-template-columns: repeat(3,1fr);
}
.grid_four{
	grid-template-columns: repeat(4,1fr);
	grid-gap:30px;
}
.grid_two,
.grid_three{
	grid-gap:20px;
}
.grid_two,
.grid_three,
.grid_four{
	display:grid;
}
.padd{
	padding:60px 0;
}
.form_control{
	padding:12px 24px;
	font-size:16px;
	box-sizing:border-box;
	width:100%;
	border-radius:0;
	border:1px solid #CF3B95;
	background: transparent;
	outline: none;
	border-radius: 15px;
}
header{
	background-color: var(--primary_color);
	padding:15px 0;
}
header.sticky{
    position: fixed;
 width: 100%;
 top:0;
 z-index:999;
    
}
.logo{
	margin-right: 20px;
	display: flex;
	align-items: center;
}
.logo .img{
	max-height: 45px;
}
.logo .txt{
	max-width: 200px;
}
.menu{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu_right{
    display: flex;
	align-items: center;
	position:relative;
}
.menu_right_inner{
	display: flex;
	align-items: end;
	flex-direction: column;
}
.menu_right_inner p{
	font-size:20px;
	color:#fff;
	margin-bottom: 0;
}
.menu_right_inner p a{
	color:var(--secondary_color);
	font-weight: 700;
}
.menu_list{
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.menu_list li a{
	padding: 10px;
	color: #fff;
	display: inline-flex;
}
.menu_list li a:not(:last-child){
	margin-right: 10px;
}
.menu_list li a:hover{
	color: var(--secondary_color);
}
.menu_top{
   display: flex;
	align-items: center; 
}
.hamburger{
    margin-left:15px;
    display:none;
}
.hamburger .line{
  width: 35px;
  height: 3px;
  background-color: var(--secondary_color);
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  -o-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  -o-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}

.mobile_menu {
    position: absolute;
    top: 80px;
    width: 100%;
    left: -100%;
    z-index: 999;
    background-color: var(--hd_clr);
    padding: 15px 20px;
    transition:0.5s;
}
.mb_active{
    left: 0;
}
.mbmenu_list{
    list-style:none;
    
}
.mbmenu_list li a {
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
    display: inline-flex;
}
.price {
	position: relative;
	padding: 10px;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.4);
	color: #999;
	text-decoration: none;
	margin-left:20px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font: 700 30px consolas;
	overflow: hidden;
}

.price span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, #4D0234, #cddc3f);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.price span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 2px;
	background: linear-gradient(to bottom, #4D0234, #cddc3f);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.price span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to left, #4D0234, #cddc3f);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.price span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 2px;
	background: linear-gradient(to top, #4D0234, #cddc3f);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}
.bnr_slider div{
	min-height: 600px;
	background-size: cover;
	background-position: center;
}
.bnr_slider .slick-dots{
	bottom: 20px;
}
.bnr_slider.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.slick-dots li button{
	display: none;
}
.bnr_slider .slick-dots li{
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 50%;
	margin:0 2px;
}
.bnr_slider .slick-dots li.slick-active{
	background-color:var(--secondary_color);
}
.bnr_slider .slick-prev,
.bnr_slider .slick-next{
    z-index:10;
    width:35px;
    height:35px;
    border-radius:10px;
    background-color:var(--secondary_color);
}
.bnr_slider .slick-next:before,.bnr_slider .slick-prev:before{
    font-family:FontAwesome;
    font-size: 24px;
    color:#fff;
}
.bnr_slider .slick-prev{
    left: 10px;
}
.bnr_slider .slick-next{
    right: 10px;
}
.bnr_slider .slick-next:before{
    content:'\f101';
}
.bnr_slider .slick-prev:before{
    content:'\f100';
}


.marquee {
  overflow: hidden;
  color: var(--secondary_color);
  background-color: var(--hd_clr);
  font-weight: 600;
  font-size: 28px;
}

.marquee__inner {
  display: flex;
}

.marquee__line {
  flex-shrink: 0;
  margin: 0;
  padding: 20px 15px;
  min-width: 100%;
  white-space: nowrap;
  animation-name: marqueeLine;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  text-align: center;
  
}

@keyframes marqueeLine {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(-100%);
  }
}

.amenities_sec {
	background-color: #E8E9E759;
	padding:30px 0;
}
.amen_slider{
	padding-top: 30px;
}
.amen_item {
	text-align: center;
}
.amen_item img {
    margin: 0 auto 10px;
    max-width: 35px;
    object-fit: contain;
    object-position: center;
    height: 35px;
}
.amen_item p{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}
.color_bg{
	background-color: var(--bg_color);
}
.about_sec{
	margin-top: 150px;
}
.about_grid{
	display: grid;
	grid-template-columns: 0.6fr 1fr;
	grid-gap: 30px;
	align-items: center;
}
.about_item img{
	margin-top: -130px;
}
.outline_btn{
	padding: 10px 30px;
	border:1px solid var(--primary_color);
	border-radius: 50px;
	text-align: center;
	font-size: 15px;
	display: inline-block;
	margin: 10px 0 20px;
	color: var(--primary_color);
	transition: all 0.5s;
}
.outline_btn:hover{
	background-color: var(--primary_color);
	color: #fff;
}
.about_item p{
	text-align: justify;
}

.rm_hd{
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;	
}
.rm_hd img{
	max-width: 40px;
	margin-right: 5px;
	transform: rotateY(180deg);
}
.para{
	color: var(--hd_clr);
}
.rooms_sec .grid_two{
	grid-gap:0;
	align-items: end;
	margin:40px 0 50px;
}
.rooms_img{
	outline: 2px solid #fff;
	outline-offset: -20px;
	min-height: 380px;
	position: relative;
}
.cont_top h3 {
    font-size: 30px;
    background-color: var(--primary_color);
    color: #fff;
    padding: 15px 40px;
	font-weight: 600;
    width: max-content;
    border-radius: 0 30px 30px 0;
	z-index: 1;
	position: relative;
}
.rm_info{
    padding: 70px 20px 40px;
    background: #fff;
	margin-top: -30px;
}
.rm_info li{
	display: inline-flex;
	align-items: center;
	padding:0 15px;
	color: #240931;
	font-size: 18px;
	font-weight: 600;
}
.rm_info li img{
	margin-right: 10px;
	max-height: 40px;
}
.cont_btm{
	background-color: var(--bg_color2);
	padding: 20px 30px 30px;
	border-radius:0 0 80px 0;
}
.amenities_list,
.rm_info{
	display: flex;
    align-items: center;
	flex-wrap: wrap;
}
.amenities_list li img{
	opacity: 0.5;
	max-width: 30px;
	margin:0 10px;
}
.more_btn{
	padding: 10px 30px;
	color:#fff;
	background-color: #CF3B95;
	font-size: 16px;
	border-radius:20px;
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
.more_btn i{
	font-size: 22px;
	margin-left: 8px;
	color:#D2DE31;
}
.rooms_sec .grid_two:nth-child(odd) .rooms_img{
	order: 1;
}
.rooms_sec .grid_two:nth-child(odd) .rooms_cont{
	text-align: right;
	
}
.rooms_sec .grid_two:nth-child(odd) .cont_top h3{
	margin-left: auto;
	border-radius: 30px 0 0 30px;
}
.rooms_sec .grid_two:nth-child(odd) .amenities_list{
	justify-content: center;
}
.rooms_sec .grid_two:nth-child(odd) .rm_info{
	justify-content: center;
}
.rooms_info{
	max-width: 80%;
}
.rooms_sec .grid_two:nth-child(odd) .rooms_info{
	margin-left: auto;
}
.rooms_sec .grid_two:nth-child(odd) .cont_btm{
	border-radius: 0 0 0 80px;
}
.rooms_sec .grid_two:nth-child(odd) .more_btn{
	left: 30px;
	right: unset;
}


/* Image slider Start */

.swiper-container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin:0 auto;
	overflow: hidden;
}
.swiper-slide {
	display: flex;
	background: #eee;
	align-items: center;
	justify-content: center;
	transition: all 200ms linear;
	transform: scale(0.8);
}
.swiper-slide.swiper-slide-active {
	transform: scale(1);
	z-index: 10;
}
.swiper-button-next, .swiper-button-prev{
	width: 50px;
	height: 50px;
	background: #D2DE31;
	border-radius:50%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-family:'FontAwesome';
	font-size:20px;
	color:#000;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
	content:"\f177";
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
	content:"\f178";
}
/* Image slider End */

.info_img{
	min-height: 550px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	border-radius: 20px;
}
.info_cont{
	background: rgba(118, 37, 127, 0.8);
	padding: 20px;
	color: #fff;
	border-radius: 0 0 20px 20px;
}
.info_cont h3{
	font-size: 28px;
	margin-bottom: 10px;
	margin-top: 0;
}
.info_cont p{
	font-size: 16px;
}

.testimonial_cont{
	padding: 30px 50px;
}
.testimonial_cont p{
	font-size: 16px;
}
.testimonial_cont{
	font-size: 18px;
	font-weight: 600;
}
.testimonial_cont h3{
    color:#CF3B95;
}
.testimonial_slider .slick-arrow{
	z-index: 2;
}

.testimonial_slider .slick-next,
.testimonial_slider .slick-prev{
	top: 30%;
}
.testimonial_slider .slick-next:before,
.testimonial_slider .slick-prev:before{
	font-family: 'FontAwesome';
	font-size: 40px;
	font-weight: 900;
	color:var(--primary_color);
}
.testimonial_slider .slick-next:before{
	content:"\f105";
}
.testimonial_slider  .slick-prev:before{
	content:"\f104";
}
.testimonial_slider .slick-next{
	right: 0;
}
.testimonial_slider .slick-prev{
	left: 0;
}
.testimonial_slider .slick-dots li button{
	display: none;
}
.testimonial_slider .slick-dots li {
	border-radius: 50%;
	width: 15px;
	height: 15px;
	border: 1px solid rgba(209, 221, 49, 1);
	background: rgba(209, 221, 49, 1);
}
.testimonial_slider .slick-dots li.slick-active {
	border: 1px solid var(--primary_color);
	background: transparent;
}
.testimonial_slider .slick-dots{
	width: auto;
	margin-left: 40px;
}

.widget_sec{
	padding: 50px 0;
}
.widget_title{
	font-size:26px;
	color:var(--hd_clr);
	margin-bottom: 20px;
}
.widget_item p i{
	color: #FF5EC0;
	margin-right: 5px;
}
.widget_form label{
	color: var(--hd_clr);
	font-weight: 500;
	margin-bottom: 5px;
	display: block;
}
.form_grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap:20px;
}
.form_group{
	margin-bottom: 15px;
}
.widget_p{
	color: #333535;
}
.widget_item p a{
	color: #000;
}
.widget_item p a:hover{
	color: #FF5EC0;
}
.social_media {
	display: flex;
	align-items: center;
}
.social_media a{
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	margin: 5px;
	justify-content: center;
	color:#fff;
}
.insta{
	background: linear-gradient(135deg, #FFE184 0%, #FDBA37 21%, #F05477 38%, #ED3894 52%, #8D509F 74%, #5E5DA9 100%);

}
.facebook{
	background: linear-gradient(135deg, #4272B8 0%, #4069B3 23%, #3B51A4 59%, #342F8F 100%);

}
.utube{
	background: linear-gradient(135deg, #ED2224 0%, #9B1B1F 100%);

}
.whatsapp{
	background: linear-gradient(135deg, #6FC05E 0%, #0BB25B 100%);

}
.widget_btm{
	padding: 10px;
	text-align: center;
	background-color: var(--primary_color);
	color: #fff;
}
.widget_btm p{
	margin-bottom: 0;
}
.submit_btn{
    padding:10px 20px;
    border-radius:50rem;
    background-color:var(--primary_color);
    color:#fff;
    font-size:16px;
    display:inline-block;
    margin:10px 0;
    transition:0.5s;
    cursor:pointer;
    width:100%;
    max-width:200px;
    text-align:center;
}
.submit_btn:hover{
    background-color: #CF3B95;
}

/* Additional page style start */
.add_head{
	padding:30px 50px;
	text-align: center;
}
.add_head h1{
	font-weight: 600;
	margin: 0;
}
.slider div{
	min-height: 600px;
	background-size: cover;
	background-position: center;
}
.slider .slick-next,
.slider .slick-prev,
.slider-nav .slick-next,
.slider-nav .slick-prev{
	z-index: 9;
}
.slider .slick-prev,
.slider-nav .slick-prev{
	left: 20px;
}
.slider .slick-next,
.slider-nav .slick-next{
	right: 20px;
}
.slider .slick-next:before,
.slider .slick-prev:before{
	font-family:'FontAwesome';
	font-size:30px;
	color:var(--hd_clr);
}
.slider .slick-next:before{
	content: "\f054";
}
.slider .slick-prev:before{
	content: "\f053";
}
.slider-nav div img{
	height: 200px;
	object-fit: cover;
	object-position: center;
	border:2px solid #fff;
}
.slider-nav .slick-next:before,
.slider-nav .slick-prev:before{
	font-family:'FontAwesome';
	font-size:30px;
	color:var(--hd_clr);
}
.slider-nav .slick-next:before{
	content: "\f054";
}
.slider-nav .slick-prev:before{
	content: "\f053";
}
.content_sec{
	padding: 30px;
}
.icon_list{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.icon_list li{
	width: 33.33%;
	display: flex;
	align-items: center;
}
.icon_list li p{
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
	max-width: 200px;
}
.icon_list li img {
    margin-right: 5px;
    max-width: 70px;
}
.sub_hd{
	margin-bottom: 20px;
}
.icon_grid{
	display: grid;
	grid-template-columns: repeat(5,1fr);
	grid-gap:20px;
}
.icon_item{
	display: flex;
	align-items: center;
}
.icon_item img{
	margin-right: 10px;
}
.error{
    border:1px solid #f03!important;
}
/* Additional page style End */
@media (max-width:1200px) {
	.default_container{
	    padding:0 30px;
	}
	.rooms_info{
		max-width: 100%;
	}
	.cont_top h3{
	    font-size: 24px;
	    padding: 12px 34px;
	}
	.logo .img {
        max-height: 30px;
    }
    .logo .txt {
        max-width: 160px;
    }
    .menu_right p{
        font-size: 18px;
    }
    .icon_grid{
    	grid-template-columns: repeat(4,1fr);
    }
    .menu_list{
        display:none;
    }
    .hamburger{
        display:block;
    }
}
@media (max-width:992px) {
	.about_sec {
        margin-top: 120px;
    }
    .padd {
        padding: 40px 0;
    }
    .rooms_sec .grid_two:nth-child(odd) .rooms_img {
        order: 0;
    }
    .rm_info {
        padding: 100px 20px 40px;
        margin-top: -60px;
    }
    
    .info_cont{
        width: 100%;
    }
    .rooms_img{
        background-size: cover;
        min-height: 500px;
    }
    .about_grid,.grid_two,.grid_three{
        grid-template-columns: auto;
    }
    .about_item img {
        max-width: 60%;
    }
    .rooms_sec .grid_two:nth-child(odd) .cont_top h3 {
        margin-left: unset;
        border-radius: 0 30px 30px 0;
    }
    .rooms_sec .grid_two:nth-child(odd) .rm_info,
    .rooms_sec .grid_two:nth-child(odd) .amenities_list{
        justify-content: initial;
    }
    .rooms_sec .grid_two:nth-child(odd) .cont_btm {
        border-radius: 0  0 80px 0;
    }
    .icon_list li p {
        font-size: 18px;
    }
    .icon_grid{
    	grid-template-columns: repeat(3,1fr);
    }
    .icon_list{
        flex-wrap: wrap;
    }
    .icon_list li{
        width: 50%;
    }
    .icon_list li img {
        max-width: 50px;
    }
    .booking{
        display:none;
    }
    .bnr_slider div,
    .slider div{
        min-height: 450px;
    }
}
@media (max-width:768px) {
    .default_container {
        padding: 0 20px;
    }
	 .icon_grid{
    	grid-template-columns: repeat(2,1fr);
    }
    .icon_list li p {
        font-size: 16px;
    }
    .bnr_slider div,
    .slider div{
        min-height: 350px;
    }
    .add_head {
        padding:20px;
    }
    .content_sec {
        padding: 20px;
    }
}
@media (max-width:576px) {
	.icon_grid{
    	grid-template-columns: auto;
    }
    .price{
        display:none;
    }
    .icon_list li{
        width: 100%;
    }
    .head, .rm_hd {
        font-size: 25px;
    }
    .info_cont h3 {
        font-size: 25px;
    }
    .info_cont p {
        font-size: 15px;
    }
    .cont_top h3 {
        font-size: 20px;
        padding: 10px 34px;
    }
    .rooms_img {
        min-height: 300px;
    }
    .bnr_slider div {
        min-height: 300px;
    }
    .cont_btm{
        padding: 20px;
    }
    .amenities_list li img {
        max-width: 25px;
        margin: 0 5px;
    }
    .rm_info li {
        padding: 0px 10px;
        font-size: 16px;
    }
    .form_grid{
        grid-template-columns: auto;
    }
    .marquee__line{
        font-size: 18px;
    }
    .content_sec {
        padding:20px 0;
    }
    .slider-nav div img{
    	height: 150px;
    }
}
@media (max-width:480px) {
	.rooms_img,
	.bnr_slider div,
	.slider div{
        min-height: 250px;
    }
}
@media (max-width:380px) {
	.head, .rm_hd {
        font-size: 22px;
    }
    .info_cont p {
        font-size: 14px;
    }
    .cont_top h3 {
        font-size: 18px;
    }
}