@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Island+Moments&display=swap');
:root {
  --primary:#4dc5f6;
  --secondary:#FFC0CB;
  --white:#fff;
  --black:#000;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary)12%, var(--secondary) 100%); 
  border-radius: 10px;
}

body {
    margin: 0;
    padding: 0 !important;
	font-family: "Manrope", serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
    color: var(--white) !important;
    font-weight: 400;
    font-size: 15px;
    border-radius: 10px;
    letter-spacing: 1px;
    padding: 11px 25px;
    text-transform: uppercase;
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(270deg, var(--primary), var(--secondary)) !important;
    color: var(--white) !important;
}


input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    font-family: "Manrope", serif;
    background: var(--white);
    border: solid 1px #f1f1f1;
    color: #444;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 15px;
    padding: 12px 20px;
    width: 100%;
    outline: 0;
    border-radius: 15px;
}
input[type="submit"] {
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    padding: 11px 25px;
    font-size: 14px;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    border-radius: 10px;
    font-family: "Manrope", serif;
    color: var(--white);
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 15px 0;
    color: var(--black);
    font-family: "Yeseva One", serif;
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
}
h1 {
  font-size:32px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Manrope", serif;
    color: #444;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
ul, li, a{
  list-style-type: none;
  font-family: "Manrope", serif;
  color: #444;
  line-height: 25px;
  font-size: 15px;
font-weight: 400;	
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading, .leftheading {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 55px;
    position: relative;
    font-weight: 500;
    width: fit-content;
}
.subheading {
    display: block;
    text-transform: capitalize;
    color: var(--primary);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 0;
    width: fit-content;
    letter-spacing: 1px;
    line-height: normal;
    font-family: "Island Moments", serif;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}
/* TOP BAR CSS */
.headtop{
   background: var(--primary);
}
.topbar {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    background: #fbfbfb;
}
.toplist {
    background: #ffffff1c;
    padding: 5px 20px;
    border-radius: 50px;
    column-gap: 40px;
    position:relative;
}
.toplist:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 46%;
    height: 6px;
    width: 6px;
    background: var(--secondary);
    transform: translate(-50%, -50%);
    border-radius: 50px;
}
.toplist p {
    font-size: 14px;
}
.topbar-rgt a.topphn {
    background: var(--primary);
    color: var( --white);
    padding: 5px 15px 8px;
    border-radius: 0 0 30px;
}
.topbar-rgt a.topphn i {
    border: solid 1px #ddd;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 6px;
}
.smoicons {
    column-gap: 20px;
    background: #f9f9f90f;
    padding: 5px 20px;
    border-radius: 50px;
}
.smoicons i {
    color: var(--primary);
    font-size: 17px;
}
.top-contact p {
    padding: 0 15px;
}
.top-contact p:first-child {
    padding-left: 0;
    border-right: 1px solid #ffffff26;
}
.top-contact i {
    color: var(--primary);
    font-size: 18px;
    margin-right: 8px;
}
.top-contact p a, .top-contact p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.topbar-rgt {
    column-gap: 45px;
}
.topbar a.arrow-btn {
    display: inline-block;
    color: var(--white);
    transition-delay: 0.1s;
}
.topbar a.arrow-btn i {
    padding-left: 5px;
}

/* Header */

header {
    background: var(--white);
}
header .row {align-items: center;}
header img {
    width: 200px;
}

.menubar {
    display: flex;
    align-items: center;
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}
.logo {
    position: absolute;
    top: -50px;
}
.logo img {
    width: 123px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid #dddddd;
}

/* Menubar */

.mainmenu.fixed {
    position: fixed;
    width: 100%;
    background: var(--white);
    top: 0;
    box-shadow: 3px 3px 13px #00000014;
    z-index: 10;
}
.menubar p{
	margin:0;
}
.menubar form .wpcf7-form-control{
	border:unset;
	padding:0;
}    
.hdrcnt a {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    background: var(--gradient);
    border-radius: 50px;
    padding: 4px 15px;
    color: var(
    --white);
}
.hdrcnt i {
padding-left:8px;
}
.hdrcnt {
    column-gap: 13px;
}

/* Main Slider */

.mainslider .carousel-item {
	position:relative;
	z-index:0;
	overflow:hidden;
}

.mainslider figure{
	margin:0;
	position: relative;
}
.carousel-item img {
    filter: brightness(0.6);
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.mainslider video {
    height: 650px;
    width: 100%;
    object-fit: cover;
}
.mainslider .carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    position: absolute;
}
.mainslider .carousel-content {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.btn i {
    height: 30px;
    width: 30px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    margin-left: 10px;
}
.mainslider .subheading {
    border-right-color: var(--white);
    border-left-color: var(--white);
    padding: 3px 20px;
    letter-spacing: 4px;
    line-height: 25px;
    margin: 0 auto 15px;
    background: var(--gradient);
    font-weight: 500;
    color: var(--white);
    font-size: 23px;
    border-radius: 5px;
}
.mainslider .carousel-caption h2, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h2 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 500;
    letter-spacing: .5px;
    opacity: 0;
    animation: lts .5s ease-in-out .38s forwards;
    text-transform: capitalize;
    margin-bottom: 0;
}
.mainslider .carousel-caption h2 span{
    display: block;
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}
.carousel-content h4 {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    animation: lts .5s ease-in-out .08s forwards;
    margin-bottom: 20px;
    font-family: "Manrope", serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #0000004a;
    padding: 7px 20px;
    border-radius: 50px;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-content p {
    margin: 15px 0;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    font-weight: 300;
}
.mainslider .carousel-content .btn-primary {
    animation: lts .5s ease-in-out 1.2s forwards;
    background: none !important;
    color: var(--white);
    font-weight: 300;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 9px 30px;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
/* About Us */

.about {
    padding: 50px 0 60px;
    background: url(../images/aboutbg.jpg) center;
}
.about-content {
    height: 100%;
    padding-left: 15px;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.aboutimg img {
    width: 100%;
    height: 100%;
}
.aboutexperience {
    position: absolute;
    top: 0;
    text-align: center;
    height: 170px;
    width: 170px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-direction: column;
    padding: 20px;
    transform: rotate(-20deg);
}
.experiencenumber {
    outline: 1px dashed var(--white);
    border-radius: 50%;
    outline-offset: 12px;
}
.aboutexperience h2 {
    color: var(--white);
    font-size: 50px;
    margin: 0;
}
.aboutexperience p {
    color: var(--secondary);
    line-height: 21px;
    margin-top: 5px;
}
.aboutus .about img {
    width: 100%;
    height: 100%;
}
.topimg img {
    width: 40px;
    margin-right: 10px;
}
.topimg{
 margin-bottom:22px;
}


/* ROOM SECTION CSS */

.room {
    background: #e6fbfa;
    padding: 60px 0;
}
.room .row {
    row-gap: 22px;
}
.room-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.room-item img {
    height: 350px !important;
    object-fit: cover;
    width: 100%;
}
.room-info {
	position: absolute;
    z-index: 1111;
    bottom: 30px;
    left: 30px;
}
.room-info h3 {
    color: var(--white);
    font-size: 28px;
}
.room-info li {
    color: var(--white);
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.room-info ul {
    column-gap: 25px;
}
.room-info img {
    width: 20px  !important;
    height: 19px  !important;
}
.room-info p {
    font-size: 24px;
}
.room-info p span {
    font-family: "Manrope", serif;
    text-transform: uppercase;
    font-size: 18px;
}
h2.woocommerce-loop-product__title {
    font-size: 28px;
    color: var(--white);
}
span.price {
    display: block;
    margin-bottom: 17px;
    font-weight: 500;
    color: #fff;
}
.add_to_cart_button {
    background: #fff !important;
    padding: 10px 25px !important;
    transition: all ease-in-out .5s;
}
.add_to_cart_button:hover {
    background: #f7c0cd !important;
}


/* PRODUCT SECTION CSS */

.product.type-product {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.woocommerce-product-gallery__wrapper {
    border-radius: 10px  !important;
    overflow: hidden;
}
.woocommerce div.product form.cart .button {
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
    font-weight: 500;
    font-size: 15px;
}
.woocommerce .quantity .qty {
    width: 60px !important;
    text-align: center;
    padding: 9px;
    border: 1px solid #69c4efad;
    border-radius: 4px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #958e09;
    font-size: 18px !important;
}
.woocommerce-product-gallery__wrapper img {
    height: 400px !important;
    object-fit: cover;
}




/* FEATURES SECTION CSS */

.fetures {
    background: url(../images/featurebg.png);
    padding: 60px 0;
}
.feturesldr {
    width: 45%;
}
.feturesldr figure {
    border-radius: 15px !important;
    overflow: hidden;
}
.features-flex {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
}
.fetures-list {
    width: 55%;
    padding-left: 50px;
}
.fetures-list .row {
    row-gap: 22px;
}
.fetures-item {
    background: var(--white);
    padding: 15px 10px;
    text-align: center;
    border-radius: 15px;
	height:100%;
}
.fetures-item figure {
    height: 50px;
    width: 50px;
    margin: 0 auto;
}
.feturesldr img {
    height: 520px;
    object-fit: cover;
}
.fetures-item figure:before {
    position: absolute;
    top: 0;
    left: -10px;
    height: 54px;
    width: 54px;
    background: url(../images/corebg.png);
    content: '';
}
.fetures-item img {
    width: 50px !important;
}
.fetures-item h3 {
    margin: 10px 0 10px 0;
    font-size: 20px;
}
.feturesldr {
    position: relative;
}
.feturesldr .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

/* WOOCOMMERCE SECTION CSS */

.woocommerce-message {
    display: none;
}
.woocommerce-info {
    display: none !important;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 100% !important;
}
.woocommerce-billing-fields {
    background: #f3f3f3 !important;
    padding: 30px !important;
    border-radius: 6px !important;
    margin-bottom: 20px !important;
}
.woocommerce form .form-row .input-text{
    padding: 13px !important;
    border-radius: 10px !important;
    border: 1px solid #cccccca8 !important;
}
.woocommerce form .form-row select {
    padding: 13px !important;
    border-radius: 10px !important;
    border: 1px solid #cccccca8 !important;
}
span.select2-selection.select2-selection--single {
    border-radius: 10px !important;
    border: 1px solid #cccccca8 !important;
    padding: 4px !important;
}
#place_order {
    background: linear-gradient(270deg, var(--primary), var(--secondary)) !important;
    color: var(--white) !important;
    font-weight: 400;
}

/* REVIEW SECTION CSS */

.review {
    padding: 60px 0;
}
.review-item {
    border: 1px solid #dddddd;
    padding: 30px;
	border-radius:20px;
}
.review-info {
    margin-top: 25px;
}
.review-profile {
    column-gap: 15px;
}
.review-title span {
    font-family: "Manrope", serif;
    font-size: 17px;
    font-weight: 400;
    color: #444;
    padding-top: 7px;
}

/* RESTAURANT SECTION CSS */

.restaurant {
    background: #f1f1f1;
    padding: 50px 0 60px;
}
.restaurant-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 14px #f3f3f3;
    height: 100%;
	background:var(--white);
}
.restaurant-info {
    padding: 20px;
}



/* Services */

.services {
    padding: 45px 0 60px;
    position:relative;
}
.services .row {
    row-gap: 22px;
}
.services-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 14px #f3f3f3;
	height:100%;
}
.services-item figure img {
    height: 270px;
    object-fit: cover;
}
.services-info {
    padding: 20px;
}
.services-info h3 {
    font-size: 23px;
    line-height: 28px;
}
.services .btn-primary {
    font-size: 13px;
    padding: 9px 20px;
}




/* footer top section  */

footer {
    background: #1c171d;
    padding-top: 50px;
}
.ftrtop h2 {
    color: var(--white);
    font-size: 45px;
    width: 52%;
    font-weight: 600;
    line-height: 58px;
}
.ftrtop .btn {
    margin-top: 20px;
}

/* about etails page section  */
.msnvsn {
    background: url(../images/featurebg.png);
    padding: 60px 0;
}
.msnvsn-item {
    background: var(--white);
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #315f2e0d;
    height: 100%;
}
.about-msnvsn h3 {
    margin-bottom: 10px;
}
.msnvsn-item figure {
    height: 80px;
    width: 80px;
    background: #315f2e1c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
}
.msnvsn-item figure img {
    width: 55px;
}
.chooseus {
    margin-top: 60px;
    background: #315f2e12;
    padding: 45px 0;
}
.chooseus p {
    width: 75%;
    margin: 25px auto 10px;
    text-align: center;
    color: #000000bf;
}
.moreaboutcnt {
    text-align: center;
    background: #f8c32c17;
    padding: 40px 30px;
    margin-top: 60px;
    border-radius: 20px 0 20px 0;
    border: 1px dashed var(--secondary);
}
.moreabout p {
    line-height: 35px;
    margin: 0;
}
.ourteam img {
    width: 85px !important;
    display: block;
    margin: 0 auto;
}
.ourteam {
    padding: 60px 0 10px;
}
.ourteam img {
    width: 75px !important;
    display: block;
    margin: 0 auto;
    outline: 2px solid var(--primary);
    border-radius: 50%;
    outline-offset: 14px;
    margin-bottom:32px;
}
.aboutteams p {
    text-align: center;
    width: 85%;
    margin: 0 auto;
}
.valuesystem {
    background: #315f2e0d;
    padding: 45px 0 60px;
    margin-top: 60px;
}
.aboutsystems {
    background: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}
.valuesystem .row {
    justify-content: center;
    row-gap: 20px;
}
.aboutsystems figure {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #315f2e14;
    border-radius: 50%;
    margin-bottom: 15px;
}
.aboutsystems figure img {
    width: 50px;
}
.aboutsystems {
    background: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 15px 0 15px 0;
    height: 100%;
    border: 1px solid #315f2e26;
}


/* GALLERY SECTION CSS */

.ourgallery {
    background: #f9f9f9;
    padding: 60px 0;
}
.ourgallery .row {
    row-gap: 15px;
}
.ourgallery .gallerylightboxlist {
    height: 230px !important;
    background-size: cover;
	border-radius:15px;
}
.ourgallery {
    padding-bottom: 50px;
}
.ourgallery .gallery-item {
    position: relative;
	overflow:hidden;
}
.ourgallery .gallery-item::before {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.ourgallery .gallery-item:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .60s;
}

@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 100%;
		height: 100%;
		opacity: 0;
	}
}










/* Blog */

.homeblog {
    padding: 60px 0;
}
.homeblog .row, .blogpost .row {
    row-gap: 25px;
}
.homebloglist {
    background: #fafafa;
    border-radius: 15px;
    transition: .5s;
    overflow: hidden;
    border: dotted 1px #ffc0cb4f;
}
.homebloglist:hover {
    transform: translateY(-2px);
    background: var(--white);
}
.homebloglist:hover img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}
.homeblogbox h3 {
    line-height: 35px;
    font-weight: 400;
    margin: 0 0 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.homeblogbox span {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding-bottom: 10px;
    display: block;
    font-family: "Manrope", serif;
    letter-spacing: 1px;
}
.homebloglist figure {
    margin: 0;
    overflow: hidden;
	position:relative;
}
.homebloglist img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: right;
    transition: .5s;
}
.homeblogbox {
    padding: 20px;
    position: relative;
}
.homebloglist p {
    margin: 10px 0 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.homebloglist ul {
    display: flex;
    column-gap: 20px;
    border-bottom: solid 1px #dddddd8c;
    padding: 10px 0 20px;
}
.homebloglist ul li, .homebloglist ul li a {
    font-size: 15px;
}
.homebloglist ul li i {
    margin-right: 5px;
    color: var(--primary);
}

.homeblogbox .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
}
.blogpost .homeblog {
    background: none;
    padding: 0;
}

.homebloglist figure:before, .whychoose-thumb:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
    transition: all .3s ease;
	z-index:-3;
}
.homebloglist:hover figure:before, .whychoose-thumb:hover:before {
    animation: shine 1s;
	z-index: 1;

}

@keyframes shine{
	100% {
    left: 125%;
}
}
.homeblog .blogcategory {
    padding: 8px 20px 6px;
    background: #ffffffc9;
    border-radius: 30px;
    transition: all .4s;
    color: var(--primary);
    content: "";
    width: fit-content;
    height: fit-content;
    top: -20px;
    left: 10px;
    opacity: 0;
    font-weight: 600;
}
.homebloglist:hover .blogcategory{
	top:10px;
	opacity:1;
}
.blogpage .row {
    row-gap: 25px;
}



/* Footer */

footer {
    background: #1c171d;
    padding-top: 60px;
}
.ftr-logo {
    border: 1px solid #ffffff1c;
    border-radius: 0 0 50% 50%;
    height: 100%;
    padding: 40px;
}
.ftr-logo img {
    width: 100%;
}
.ftr-logo h3 {
    font-weight: 500 !important;
    font-size: 30px;
    margin: 20px 0;
    color: var(--primary);
}
footer .border-start {
    border-left: 1px solid #dee2e640!important;
}
a.footer-logo {
    margin-bottom: 18px;
    display: block;
}
footer .col-sm-4 {
    padding: 0 35px;
}
footer a, footer ul li {
    color: var(--white);
    transition: 0.5s ease-in-out;
}
footer a:hover {
    color: var(--secondary);
}
.ftrcontact li i {
    height: 35px;
    width: 35px;
    background: #ffc0cb14;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.ftr-link .btn-primary {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
}
.ftrcontact li{
	margin-bottom:15px;
}
footer i{
    font-size: 13px;
    margin-right: 6px;
}
footer p {
    margin-bottom: 0;
    color: #efefef;
}
footer .ftr-link img {
    width: 160px;
    margin: 0 auto;
    display: block;
}
footer .supporter {
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
}
.ftricons {
    margin-top: 15px;
    column-gap: 5px;
}
.ftricons li i {
    color: #ffffffe0;
    font-size: 13px;
    background: #ffffff12;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.ftr-link li {
    padding-left: 20px;
    position: relative;
    line-height: 31px;
}
#menu-quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ffffff12;
    border-top: 1px solid #ffffff12;
    padding: 15px 0;
    column-gap: 45px;
    margin-top: 40px;
}
#menu-quick-links li a {
    text-transform: uppercase;
    font-size: 14px;
}
.ftr-link h3 {
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    font-size: 25px;
}
footer ul.hours li{
 line-height: 26px;	
}
.ftr-link li:before {
    position: absolute;
    content: "\f35a";
    font-family: 'Font Awesome 5 Free';
    left: 0;
    font-weight: 600;
    font-size: 12px;
}
.ftr-contact {
    display: flex;
    column-gap: 20px;
    border-bottom: 1px solid #ffffff1f;
    padding-bottom: 25px;
}
.ftr-contact li {
    width: 33.333%;
    border: 1px solid #ffffff21;
    padding: 15px;
    background: #0000003d;
    text-align: center;
    border-radius: 6px;
}
.ftr-contact li i {
    color: var(--white);
    font-size: 16px;
    background: #ffffff1f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
}
.ftr-contact li h4 {
    font-size: 18px;
    color: var(--white);
    margin: 18px 0 5px;
    font-weight: 600;
}
.copyright {
    padding: 20px 0;
}
.copyright ul{
	column-gap:15px;
}
.copyright p {
    color: #efefef;
    letter-spacing: .5px;
    font-size: 15px;
}
.copyright p a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
	transition:0.5s ease-in-out;
}
.copyright p a:hover{
	color:var(--secondary);
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 99999999;
    padding: 0;
    border: 1px solid var(--white);
    background: var(
    --primary);
    width: 45px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    text-decoration: none;
    padding-top: 11px;
    color: var(--black);
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}

#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}

@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
    margin-top: 10px;
}

.secondary-container {
	padding: 60px 0;
}
.breadcrumb {
    background: linear-gradient(90deg, var(--primary)12%, var(--secondary) 100%);
    padding: 30px 0;
    text-align: center;
    border-top: solid 1px #dddddd3b;
}
.breadcrumb h1, .breadcrumb p {
    color: var(--white);
    margin-bottom: 10px;
}
.breadcrumb p {
    margin: 0;
}
.breadcrumb a {
    color: var(--white);
    margin-right: 25px;
    position: relative;
}
.breadcrumb a:after {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 12px;
    top: -1px;
    right: -21px;
    color: var(--white);
}



/* ACCOMMODATION DETAILS PAGE CSS */

.accommodation-content img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}
.accommodation-content {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ebebeb;
}
.accommodation-info {
    margin-top: 20px;
}
.accommodation-info h3 {
    color: var(--black);
    font-size: 25px;
}
.accommodation-content p {
    font-size: 15px;
}
.accommodation-content span {
    top: 10px;
    left: 10px;
    background: #0000008a;
    color: var(--white);
    font-size: 15px;
    padding: 6px 20px;
    border-radius: 10px;
    border: 1px solid #ffffff78;
}
.accommodation-info ul {
    column-gap: 10px;
    margin-bottom: 15px;
}
.accommodation-info li {
    background: var(--white);
    padding: 10px 25px;
    text-align: center;
    border-radius: 10px;
}
.accommodation-info li img {
    width: 30px;
    height: 30px;
}
.accommodation-info li h3 {
    font-size: 18px;
    margin: 10px 0 0;
}
.accommodation-sidebar {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ebebeb;
}
.accommodation-sidebar ul {
    row-gap: 10px;
    display: flex;
    flex-wrap: wrap;
}
.accommodation-sidebar .current-menu-item {
    background: linear-gradient(270deg, var(--primary), var(--secondary)) !important;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.accommodation-sidebar .current-menu-item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    background: var(--white);
    z-index: 1;
    border-radius: 50px 0 0 50px;
}
.accommodation-sidebar .menu-item {
    background: var(--white);
    padding: 10px 15px;
    width: 100%;
    border-radius: 7px;
}
.accommodation-sidebar .current-menu-item a {
    color: var(--white);
}




/* Modal Multi Step Form */

.modalformbox {
    width: 60%;
    margin: 0 auto;
}
.modalformbox h3 {
    font-size: 28px;
    font-weight: 500;
}
.modalformbox .wpcf7-list-item {
    width: 100%;
    background: #e1e1e1 !important;
    border: solid 1px #333;
    border-radius: 6px;
    padding: 6px 15px;
    margin: 10px 0;
    position: relative;
}
.modalformbox input[type="radio"] {
    position: absolute;
    right: 0;
    text-align: right;
    cursor: pointer;
}
.modalformbox input[type="radio"] {
    position: absolute;
    right: 8px;
    text-align: right;
    cursor: pointer;
    height: 100%;
    top: -2px;
    width: 22px;
}
.modalformbox input[type="radio"]:checked {
    accent-color: #222;
}
.modalformbox .cf7mls-btns button {
    margin: 0 !important;
    border-radius: 6px;
    font-size: 16px;
    background: #111;
    letter-spacing: 1px;
}
.modalformbox p>label {
    font-size: 20px;
}
.modalformbox input[type="text"], .modalformbox input[type="email"], .modalformbox input[type="tel"] {
    border: none;
    border-bottom: solid 1px #777;
    border-radius: 0;
    font-size: 28px;
    font-weight: normal;
    padding: 15px 0;
    color: #777;
}
.modalformbox .cf7mls_back {
    background: #eee !important;
}
.modalformbox .offcanvas-header {
    justify-content: flex-end;
}
.wpcf7-not-valid-tip {
    display: none !important;
}
.wpcf7-not-valid::placeholder {
    color: red;
}

/* CONTACT US PAGE CSS  */

.contact-us {
    padding: 60px 0;
}
.contact-us .contact-cnt {
    border-bottom: 1px solid #00276847;
}
.contact-us .cnt-text{
    width: 85%;
    border-radius: 8px;
    margin: 20px auto;
}
.contact-us form {
    background: #f5f5f58c;
    padding: 27px;
    border-radius: 10px;
    box-shadow: inset 0 0 30px #1c39741c;
}
.contact-us  h2{
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 0 !important;
}
.cntaddrbox {
    text-align: center;
    padding: 30px 10px 15px;
    box-shadow: inset 0 0 30px #1c39742b;
    border-radius: 10px;
    height: 100%;
}
.cntaddrbox h4 {
    margin: 15px 0 5px;
}
.cntaddrbox i {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
    font-size: 23px;
    border-radius: 50px;
    outline-offset: 5px;
    outline: 1px solid #ff9a024f;
    background: linear-gradient(90deg, #193775, #f39c12);
}
.contact-us h4 {
    margin: 15px 0px 5px;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}
.cntaddrbox p a {
    font-size: 16px;
    font-weight: 500;
}
.googlemap iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}
.contact-us .contact-details{
    margin-top: 30px;
}
.about-cnt li a{
    font-size: 14.8px;;
    font-weight: 500;
}
.googlemap iframe{
	width:100%;
}
section.related.products {
    display: none !important;
}
.secondary-container.contactus form {
    background: #f5f5f58c;
    padding: 27px;
    border-radius: 6px;
    box-shadow: inset 0 0 30px #1c39741c;
}


/* Services Details */ 

.servicesdtls-sidebar {
    position: sticky;
    top: 0;
    background: var(--primary);
    padding: 15px;
    border-radius: 6px;
}
.servicesdtls-item {
    box-shadow: 3px 3px 12px #0000001a;
    padding: 15px;
    border: 2px dotted #2bb3ff;
    border-radius: 6px;
    margin-bottom: 15px;
    background: var(--white);
}
.servicesdtls-item:last-child {
    margin-bottom: 0;
}
.servicesdtls-sidebar h3 {
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.servicesdtls-sidebar h3:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2.8px;
    background: #d1d1d1;
    border-radius: 13px;
}
.servicesdtls-content {
    box-shadow: 3px 3px 13px #ddd;
    border-radius: 6px;
    padding: 15px;
}
.servicesdtls-content img {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    object-fit: cover;
}
.servicesdtls-content h2 {
    color: var(--primary);
    line-height: 29px;
    background: var(--white);
    position: relative;
    width: fit-content;
    margin: -33px 0 12px;
    padding: 2px 25px;
    border-radius: 6px 6px 0 0;
    border-left: solid;
    border-right: solid;
}
.servicesdtls-item ul li.current_page_item a {
    color: var(--primary);
}
.servicesdtls-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 45px;
}
.servicesdtls-item ul li:before {
    content: '\f0e7';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    color: var(--primary);
    left: 0;
    top: 5px;
    font-weight: 600;
    font-size: 16px;
    border: solid 1px var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicesdtls-content h5 strong {
    color: var(--primary);
}

/* Policy */

.policy h3 {
    font-size: 18px;
    margin: 15px 0 10px;
}
.policy ul li {
    margin: 8px 0;
    list-style-type: disc;
    list-style-position: inside;
}
.policy h4 {
    margin: 20px 0 10px;
}
span.rmp-menu-title-link span {
    display: none;
}

/* project details section  */
.industrial-thumb figure img {
    border-radius: 8px;
}
.woocommerce .woocommerce-breadcrumb {
    display: none;
}

@media only screen and (max-width:1199px){
.topbar {
    padding: 6px 0;
}	
.topbar-rgt, .hdrcnt{
    display: none !important;
}	
.menubar nav {
    display: none;
}
}

@media only screen and (max-width:991px){
   .topbar {
    display: none;
}

.mainmenu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    z-index: 9;
}
.mainmenu .btn {
    display: none;
}
.logo {
    left: 50px;
    top: 10px;
}
#rmp_menu_trigger-573 {
    top: 32px !important;
}
.logo img {
    width: 110px !important;	
}
.mainslider figure img {
    height: auto;
}
.about .row {
    row-gap: 15px;
}
.contact .col-sm-6 {
    width: 100%;
}
.ourgallery .col-sm-3 {
    width: 50%;
}
.ourgallery .gallerylightboxlist {
    height: 200px;
    background-size: cover;
}
.contact iframe {
    width: 100%;
}
.contact .row {
   row-gap:10px;
}
div#rmp-menu-additional-content-573 {
    display: none !important;
}
input.rmp-search-box {
    display: none !important;
}
.msnvsn .row {
    justify-content: center;
    row-gap: 15px;
}
.about .row {
    row-gap: 30px;
} 
.heading, .leftheading {
    text-align: center;
    margin: 0 auto 25px;
}
.fetures-list {
    width: 100%;
    padding: 0 50px;
}
.fetures-list p {
    text-align: center;
}
.feturesldr {
    width: 100%;
}
.fetures .d-flex {
    flex-wrap: wrap;
    row-gap: 25px;
}
footer .col-sm-4 {
    width: 100%;
}
.ftr-logo img {
    width: 150px;
}
footer .row {
    row-gap: 20px;
}
#menu-quick-links {
    column-gap: 20px;
}
.subheading {
    text-align: center;
    margin: 0 auto;
}
.about-content {
    text-align: center;
}
#rmp_menu_trigger-573 {
    background: var(--primary) !important;
}
#rmp-container-573 {
    background-color: var(--secondary) !important;
}
#rmp-menu-wrap-573 .rmp-menu-current-item .rmp-menu-item-link {
    color: #fff;
    border-color: unset !important;
    background-color: var(--primary) !important;
}
.contact-info .row {
    row-gap: 20px;
}
.secondary-container.contactus .col-sm-6 {
    width: 100%;
}
}
@media only screen and (max-width:767px){

.mainslider .carousel-content {
    width: 85%;
}
.mainslider .carousel-content p {
    margin: 8px 0 15px !important;
}
.carousel-control-prev {
    left: 5px;
}
.carousel-control-next {
    right: 5px;
}
.ourgallery .col-sm-3 {
    width: 100%;
}
#menu-quick-links {
    flex-wrap: wrap;
    row-gap: 10px;
}
.mainslider .carousel-caption h2 {
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 0;
}
.mainslider .carousel-content p {
    margin: 8px 0 5px;
    line-height: 26px;
    font-size: 16px;
}
.gallerylightboxlist {
    height: 300px;
}
.projectsgallery h3 {
    font-size: 17px;
}
.privategallery {
    padding: 40px 0;
    margin-bottom;40px
}
.projectsgallery {
    padding: 40px 0;
}
.services {
    padding: 40px 0;
}
footer .row {
    row-gap: 15px;
}
.services .col-sm-4 {
    width: 100%;
}
.room-info {
    z-index: 1;
}
}
@media only screen and (max-width:667px){
 .mainslider .carousel-caption h2 {
    font-size: 36px;
    margin-bottom: 15px !important;
}
 .mainslider .carousel-content p {
    display: none;
}
.mainslider .carousel-caption h2 {
    margin-bottom: 5px;
}
.heading, .leftheading {
    margin-bottom: 14px !important;
    padding-left:0;
}
div#wpcf7-f156-o1 p {
    margin: 0;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    margin: 0px 0 8px;
}
.about {
    padding: 40px 0;
}
.heading, .leftheading {
    font-size: 30px;
    line-height: 40px;
}
.room {
    padding: 40px 0;
}
.fetures .col-sm-6 {
    width: 100%;
}
.review {
    padding: 40px 0;
}
.ourgallery {
    padding: 40px 0;
}
}
@media only screen and (max-width:568px){
  .mainslider .carousel-caption h2 {
    font-size: 30px;
    line-height: 38px;
}
button.slick-prev.slick-arrow {
    left: -5px !important;
}
button.slick-next.slick-arrow {
    right: -5px !important;
}
.secondary-container {
    padding: 40px 0;
}
}
@media only screen and (max-width:479px){
.carousel-control-next, .carousel-control-prev {
    width: 38px;
    height: 38px;
}
.mainslider .carousel-caption h2 {
    font-size: 25px;
    line-height: 30px;
}
.about-content .leftheading {
    margin-bottom: 10px !important;
    font-size: 25px;
}
.ourgallery .col-sm-3 {
    width: 100%;
}
.ourgallery .gallerylightboxlist {
    height: 250px !important;
}.clients {
    padding: 40px 0;
}
.breadcrumb h1 {
    color: var(--white);
    font-size: 20px;
    margin: 0 0 8px 0;
}
.breadcrumb p{
  font-size:18px;
}
p {
    margin: 0 0 5px 0;
}
.carousel-content h4 {
    font-size: 11px;
    margin-bottom: 15px;
}
.logo img {
    width: 95px !important;
}
.logo {
    left: 25px;
}
#rmp_menu_trigger-573 {
    width: 50px;
    height: 50px;
}
.mainslider .carousel-content .btn-primary {
    padding: 7px 25px !important;
}
footer .col-sm-4:first-child {
    padding-left: 30px !important;
}
.ftr-link h3 {
    padding-bottom: 0px !important;
}
}
@media only screen and (max-width:414px){
header img {
    width: 140px;
}
.carousel-content h4 {
    font-size: 10px;
    margin-bottom: 20px;
}

.mainslider .carousel-caption h2 {
    font-size: 23px !important;
}
button#rmp_menu_trigger-573 {
    height: 40px;
    width: 40px;
}
.mainslider .carousel-content {
    width: 100%;
}
.mainslider .carousel-caption h2 {
    font-size: 20px;
    line-height: 20px;
}
.btn-primary {
    font-size: 14px;
    padding: 8px 18px;
}
.heading, .leftheading {
    font-size: 25px;
}
.privategallery {
    margin-bottom: 35px;
}
h4 {
    font-size: 17px;
}
}
@media only screen and (max-width:375px){
 .about-content .leftheading {
    font-size: 20px;
}
.carousel-content h4 {
    font-size: 8px;
}
.mainslider .carousel-caption h2 {
    line-height: 35px !important;
}
.about-content .leftheading {
    font-size: 23px;
    line-height: 35px;
}
.logo img {
    width: 85px !important;
}
.logo {
    left: 15px !important;
}
}
