/*TABLE OF CONTETN*/
/* ------------------------------- 
 . General
 2. Navbar
 3. Slider
 4. About
 5. Rooms
 6. Services
 7. Team
 8. Gallery
 9. Price
 10. Blogs
 11. Footer

 -----------------------------*/

 /*1. General*/
 @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

html{
    overflow-x:hidden;
}
:root{
	/*background-color: ;*/
	--primary-color: #021032;
	--secondary-color: #707070;
	--other-color:#f8f7f1;
	--heading-color: #707070;
	--bg-color: #f4f4f4;
	--bg-white: #fff;
	--bg-black: #000;

	/*Text Style*/
	--primary-font: 'Poppins', sans-serif;
	--secondary-font: 'Poppins', sans-serif;
	--primary-text: #021832;
	--secondary-text: #707070;
	--text-white: #fff;
	--text-black: #000;
	--text-gray: #e4e4e4;
}
@font-face{
font-family: 'Blacksword';
src: url('Blacksword.otf')
}
body{
	font-family: var(--primary-font);
	background-color: var(--bg-white);
	color: var(--text-black);
}

.row{
    margin-left:0px;
     margin-right:0px;
}
a{
	text-decoration: none;
}
::-webkit-scrollbar{
	width: .375rem;
}
::-webkit-scrollbar-track{
	background: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--primary-color);
}

section{
	padding: 3.125rem 0;
}
.main-btn{
	font-size: 18px;
    color: var(--text-white);
    background: var(--secondary-color);
    border: 0rem solid var(--secondary-color);
    padding: 15px 25px;
    border-radius: 0;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
    letter-spacing: 0.06em;
}
.main-btn:hover{
	background: var(--secondary-color);
	color: var(--text-white);
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder { /* Edge */
  color: #bbb;
}

input:-ms-input-placeholder, select:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bbb;
}

input::placeholder select::placeholder {
  color: #bbb;
}

h1{
	font-size: 3.75rem;
	line-height: 4.25rem;
	font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    /*text-transform: uppercase;*/
    font-family: var(--secondary-font);
}
h3{
	margin-bottom: 1.375rem;
	line-height: 1.875rem;
	font-weight: 700;
	font-size: 2.25rem;
	color: var(--primary-text);
	/*text-transform: uppercase;*/
	font-family: var(--secondary-font);
}
h3 span{
	color: var(--secondary-color);
}
h5{
	font-size: 1.5rem;
	line-height: 1;
	color: var(--primary-text);
	font-weight: 500;
	/*text-transform: uppercase;*/
	font-family: var(--secondary-font);
}
h6{
	font-size: 1.5rem;
	margin-bottom: .9375rem;
	color: var(--primary-text);
	/*text-transform: uppercase;*/
	font-weight: 300;
	font-family: var(--secondary-color);
}
p{
	font-size: 1rem;
	line-height: 1.625rem;
	color: var(--text-black);
}
.section-title:after{
	content: '';
	background-image: url('../images/title-icon.webp');
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	margin-top: -0.937rem;
    height: .9375rem;

}
header.header {
    position: absolute;
    width: 100%;
}
/*2. Navbar*/
.header .navbar{
	padding: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
	-webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
	transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    z-index:1;
}

.header .navbar-toggler{
	border: 0;
	color: var(--primary-text);
	line-height: 2;
}
.header .navbar-toggler:focus{
	box-shadow: none;
}
.header .nav-item{
	margin: 0;
}
.header .nav-item .nav-link{
font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    display: inline-block;
    border-bottom: 3px solid transparent;
    padding: 22px 20px;
}
.header .nav-item .nav-link:hover,
.header .nav-item .nav-link.active{
	border-color: var(--text-white);
}

header.header img{
    width: 135px;
}
.navbar.header-scrolled{
	/*position: fixed;*/
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: rgb(255,255, 255, .58);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeIdDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeIdDown;
}
@keyframes fadeIdDown{
	0%{
		top: -30%;
	}
	50%{
		top: -15%;
	}
	100%{
		top: 0%;
	}
}

.social_icon ul{
	margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0;
}
.social_icon ul li{
	margin-left: 15px;
}
.social_icon ul li i{
	color: var(--primary-text);
    font-size: 20px;
}

/*video section*/

.banner-wrapper{
	height: 100vh;
}
.video-sec {
    height: 100%;
    overflow: hidden;
    position:relative;
}

.video-sec button {
    display:none;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #ae745a6b; */
    z-index: 0;
}
.hero-scetion .hero-content {
    height: 100%;
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    position: relative;
}
.hero-scetion .hero-content {
    width: 90%;
    text-align: center;
    margin: auto;
    color: rgb(255, 255, 255);
}

.nst {
    font-size: 5rem;
}
.hero-content{
	    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}
.h-big {
    font-family: 'Blacksword';
    width: 100%;
    text-shadow: 0px 0px 4px #000;
    color: #ffffff;
    font-weight: 300;
    /*margin: auto;*/
    line-height: 88px;
    font-size: 58px;
    line-height: 1.2em;
    text-align: center;
}
.h-li-big {
   margin: 10px 0px 0px 0px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-family: var(--primary-font);
    letter-spacing: 0.05em;
    display: block;
    transition: all .5s ease-in-out 0s;
    font-size: 27px;
    text-shadow: 0px 0px 4px #000;
}
/*end video*/

.booking-area{
	position: absolute;
    margin: auto;
    justify-content: center;
    width: 68%;
    left: 0;
    right: 0;
    bottom: 1rem;
  background: var(--text-white);
    box-shadow: 0px 0px 6px #000;
    align-items: center;
    padding: 10px 20px;
    border-radius: 40px;
}
.booking-area .form-control{
	height: 46px;
	font-size: 14px;
	color: #777777;
	line-height: 34px;
	font-weight: 400;
	border-radius: 0px;
	padding: 12px 22px 11px 45px;
	background: transparent;
	border: 0px solid #e0e0e0;
	border-right: 2px solid var(--secondary-color);
}
.booking-area .icns i{
    color: var(--secondary-color);
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 18px;
    display: flex;
}

.booking-area .col-lg.md-3.icns.mb-lg-0.position-relative {
   padding-left: 0px;
    padding-right: 0px;
    display: flex;
    align-items: center;
}

.booking-area .form-select{
	padding: 10px;
	text-indent: 1.7rem;
	border-radius: 0;
	font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
        background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #757272
	padding: 10px;
	border: 0.13rem solid var(--secondary-color);
}


.srch-btn .main-btn {
padding: 6px;
    width: 170px;
    margin-right: 10px;
    border-radius: 40px;
    text-transform: uppercase;
    height: 55px;
    font-size: 16px;
    letter-spacing: 0px;
}

.srch-btn .main-btn:hover{
    /* background-color: #c29d59a9; */
}


/*start about*/

.about_wrapper{
	padding-top: 80px;
	padding-bottom: 80px;
}

.about_wrapper a{
    font-size: 1rem;
    /* font-weight: 500; */
    color: var(--text-white);
    background: var(--secondary-color);
    border: 0.0625rem solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 0;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

.about_wrapper a:hover{
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.heading_sec{
	margin-bottom: 50px;
	text-align: center;
}

.about-img1{
	text-align: left;
}
.about-img1 img{
	height: 370px;
    object-fit: cover;
}

.col-lg-6.mb-4.mb-lg-0.ps-lg-4.position-relative.text-center {
    padding-left: 0px !important;
}

.about-img2 {
    /* text-align: right; */
}

.about-img2 img{
	/* position: absolute; */
	/* right: 0; */
	/* width: 336px; */
	/* bottom: -130px; */
	/* height: 300px !important; */
	/* border: 12px solid #fff; */
	object-fit: cover;
	width: 85%;
	height: auto;
}
.about_wrapper .about-pd-r1 .about-dec p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    padding-left: 18px;
    line-height: normal;
    margin-bottom: 1rem;
}
.about_wrapper .col-lg-6.text-center.text-lg-start p{
	font-size: 17px;
    text-align: justify;
}
.subhead {
    color: #caa269;
    font-size: 18px;
    /*line-height: 35px;*/
}
.about_wrapper .col-lg-6.text-center.text-lg-start{
	padding-right: 5%;
}

.about_wrapper h2{
    font-size:50px;
    margin:10px 0;
    font-family: var(--primary-font);
    /* color: var(--heading-color); */
    font-weight: bold;
}

p.abt {
    font-weight: 600;
    letter-spacing: 1px;
}


section.second-sec {
    padding-top: 0px;
    padding-bottom: 50px;
    text-align: center;
}

.second-sec-title {
    display: flex;
    align-items: center;
    justify-content: center;
   padding-right: 40px;
}

.left-s {
    width: 40px;
    height: 40px;
    margin-right: 30px;
}

.left-s svg {
    width: 100%;
    height: 100%;
}

.left-s svg path {
    fill: var(--secondary-color) !important;
}

.middle-s h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 0px;
}

.right-s {
    padding-left: 30px;
}
/*end about section*/

/*property*/

/*end property*/


/*Booking seciton*/
.booking_sec{
	/*background-image: url(../images/hero_Kauai.webp);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    background-attachment: fixed;
    padding: 0px 0px;
}

.booking_sec h3{
    color: var(--text-white);
    margin-top: 20px;
    font-size: 35px;
}

.booking_sec .main-container {
    padding: 0px 0px;
    background-color: rgba(0,0,0,0.3);
}

.booking_img{
	position: absolute;
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -24%;
    box-shadow: 0px 0px 0px 10px #ffffff85;
}
.booking_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left;
	display:none;
}

.bookin_box h2{
    line-height: 1.2;
    font-size: 2rem;
    border-left: 0px solid #fff;
    padding-left: 0px;
    font-weight: 700;
    font-family: var(--primary-font);
}
.bookin_box p{
font-size: 16px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px !important;
}

.bookin_box a{
    margin-top: 0rem !important;
    margin-bottom: 0px !important;
}
.booking-right_sec{
	height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    justify-content: center;
    color: #fff;
    width: 100%;
    margin-left: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}
.booking-right_sec p{
	font-size: 18px;
    color: #fff;
    margin-top: 20px;
}

.booking-right_sec h2{
    font-size: 55px;
    line-height: 1.2;
    border-left: 3px solid #fff;
    padding-left: 29px;
}



/*end bookind section*/

/*Property section*/

.property-sec {
    padding: 60px 0;
    background: #efefef;
}


.contain {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.item {
    align-items: center;
    background-color: transparent;
    color: white;
    display: flex;
    height: 100%;
    justify-content: center;
}
.booking.item{
    height:auto;
}
.contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-details-area{
    padding:0 0 40px;
}
.pro-sec-right h6 {
    font-size: 22px;
    font-family: var(--secondary-font);
    color: var(--text-black);
    font-weight: bold;
}
.pro-sec-right h2 {
    font-family: var(--secondary-font);
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
    margin: 18px 0;
}

section.property-sec h3.price {
    color: var(--text-black);
}

section.property-sec .pro-sec-right p{
    max-height: 110px;
    overflow: hidden;
}

.location {
    margin-bottom: 10px;
}
.location .fa-location-dot {
    color: var(--secondary-color);
}
.price {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: var(--primary-font);
}
.price span {
    font-size: 16px;
    font-weight: 400;
    color:#000;
}
.elementor-button-wrapper {
    margin-top: 25px;
    border-top: 2px dashed #bbb;
    padding-top: 10px;
    border-bottom: 2px dashed #bbb;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.elementor-counter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
}
.amnt {
    text-align: center;
}
.amnt .elementor-counter-number {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--primary-font);
}

/*attractions start*/
.fourth-sec {
    padding: 60px 0px 60px;
    text-align: center;
}
.fourth-sec .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
.attr-f {
    position: relative;
    margin-top: 0px;
    padding: 0;
}

.attr-f h4 a{
    color:#fff;
    font-weight:bold;
}
.fourth-sec h3{
	margin-bottom: 0;
    font-size: 40px;
    color: var(--text-black);
    line-height: 1.2;
}
.attr-f img {
    width: 100%;
    height: 450px;
    position: relative;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    top: 0;
    padding: 20px;
    width: 100%;
    z-index: 9;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 90%);
}
.text-overlay h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 13px;
    display: flex;
    margin-bottom: 13px;
    align-items: flex-start;
    height: auto;
    font-family: var(--secondary-font);
    justify-content: center;
}
.text-overlay p {
    font-size: 16px;
    color: #fff;
    display: block;
    height: 130px;
    overflow: hidden;
}
.attr-f:nth-child(2) img {
    object-position: 10%;
}


/*end attractions*/
.catch-f {
    background-image: url(../img/back-bg.jpg);
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
    padding-bottom: 12rem;
}
.catch-f .row{
	width: 100%;
	padding: 0;
  margin: 0;
}
.catch-f .row .col-lg-6{
	padding: 0;
}
.catch-f .row .pro-sec-right {
    padding: 50px;
    padding-top: 15px;
    background: #fff;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}
.catch-f .row .pro-sec-right p:nth-child(2), .catch-f .row .pro-sec-right p.location {
    margin-bottom: 5px;
}
.pro-sec-right a{
	margin-top: 0rem;
}
p.subhead {
    font-weight: bold;
}

.catch-f .row .pro-sec-right p.subhead{
    font-size: 22px;
    font-family: var(--secondary-font);
}

.catch-f h3{
    font-size: 44px;
    font-family: 'Oswald', sans-serif;
    line-height: 38px;
    color:#000;
}
/*Review section*/
.testimonial-sec {
    padding: 60px 0;
    background: #f8f7f1;
    border-top: 1px solid #6e6c6c;
}
.testimo-centent {
    padding: 0px 30px;
    width: 100%;
    margin: 0rem auto 1rem;
    text-align: center;
}
.testimonial-sec h3{
	margin-bottom: 0;
    font-size: 45px;
    width: 72%;
    color: #525252;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}

.col-lg-6.test-head{
     display: flex;
    align-items: center;
}
.testimo-centent .slick-arrow {
    position: absolute;
    color: #6e6c6c;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    cursor:pointer;
}
.testimo-centent .fa-angle-left {
    left: -20px;
}
.testimo-centent .fa-angle-right {
    position: absolute;
    right: 0;
    text-align: right;
}

.testimo-centent p {
    font-size: 20px;
    text-align: center;
    text-align: justify;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 10px;
}

.slick-list.draggable {
    height: 100% !important;
}

.testimo-centent h4 {
    font-size: 20px;
    font-weight: bold;
    text-align:left;
}

/*end Review section*/

/*Footer section*/
footer{
	/*margin-top: 4rem;*/
	/*background: url(../images/footer-bg.jpg);*/
	background-size: cover !important;
	background-repeat: no-repeat !important;
	height: 100%;
	position: relative;
	width: 100%;
	padding: 50px 0 0;
	background-position: center;
}

footer::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #000;
    left: 0;
    right: 0;
    top: 0;
    /*z-index: -1;*/
    opacity: .6;
}
.footer_overlay{
	width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 53%);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
footer .container{
	z-index: 1;
	position: relative;
}
.footer_links h4{
	font-size: 24px;
    text-transform: capitalize;
    color: var(--text-white);
    margin-bottom: 15px;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.footer_links p{
    color: #b3adad;
    font-size: 15px;
    list-style-type: none;
    padding-bottom: 0px;
}
.footer-social ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    margin-top: 20px;
    float: left;
}
.footer-social ul{
	padding-left: 0;
	margin-left: 0;
}
.footer-social ul li {
    display: inline-block;
    color: #b3adad;
    margin-right: 10px;
}
.footer-social ul li span {
    display: inline-block;
    margin-right: 4px;
    font-size: 14px;
    color: #b3adad;
}
.footer-social ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 30px;
    font-size: 12.5px;
    border: 1px solid #716f6f;
}
.footer_link{
	padding: 0;
	margin: 0;
}
.footer_links ul li{
	list-style-type: none;
    margin-bottom: 6px;
    color: #b3adad;
    line-height: 30px;
    font-size: 15px;
}
.footer_links ul li a{
	color: #b3adad;
    font-size: 15px;
}
.footer_logo img{
	width: 135px;
	margin-bottom: 0rem;
}
.copyright p{
margin: auto;
    font-size: 15px !important;
    color: #c3c0c0;
}
.right_copyright{
	text-align: right;
}
.copyright{
	   margin-top: 30px;
    background: transparent;
    padding: 20px 0;
    position: relative;
}
.right_copyright p img{
	width: 135px;
}

.license h4{
    margin-top:25px;
}

.copyright::before {
    content: '';
    position: absolute;
    background-color: #1a422d;
    height: 1px;
    width: 92%;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
}
/*end footer section*/


/*=============================  ABOUT US PAGE =======================*/

.page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top 40% center;
    height: 290px;
    padding-top: 0px;
    padding-bottom: 0px;
}
.page-title .auto-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}
.page-title h1 {
    position: relative;
    /*top: 2rem;*/
    color: #ffffff ;
    font-weight: 800 ;
    line-height: 1.2em ;
    font-family: var(--secondary-font);
    font-size: 40px ;
    text-transform: capitalize;
    text-shadow: 2px 1px 4px #000;
    margin-top: 20px;
    margin-bottom: 0px;
}
.checklist {
    text-align: left;
    background: #fff;
    border-radius: 40px;
    z-index: 9;
    width: fit-content;
    margin-bottom: 10px;
    margin-top: 20px;
}
.checklist p {
    font-size: 16px;
    padding: 0px 0px 0px 30px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primary-font);
}
.checklist a.g-transparent-a {
    justify-content: end;
    position: relative;
    right: auto;
    background-color: var(--secondary-color);
    border-radius: 0px 40px 40px 0px;
    padding: 18px 25px;
    margin-left: 1rem;
    display: block;
    font-size: 16px;
    color: #fff;
    height: 60.8px;
    cursor: initial;
}

.checklist a span{
    color: #021832 !important;
}

.agency-section{
	padding: 70px 0;
}

.agency-section h2{
    font-size:50px;
    font-weight:bold;
}
.agency-section p{
	line-height: 1.8em;
	font-size: 17px;
	font-family: var(--primary-font);
	padding-right: 0px;
	text-align: justify;
}
.agency-section .image{
	text-align: right;
}
.agency-section .image img {
    height: 420px;
    width: 94% ;
}

.image img {
    border-radius: 30px;
    object-fit: cover;
}


/*======================= ATRACTION ========================*/


.summary-section p {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.summary-section .inner-column .image img {
    width: 106%;
    display: block;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 4px #060606;
    max-width: 107%;
    position: absolute;
}
.dot{
	position: absolute;
    right: -2rem;
    bottom: -3.6rem;
    left: auto;
    text-align: end;
    width: fit-content;
}
.summary-section .row{
	margin-bottom: 6rem;
}
.summary-section .row:nth-child(even) .inner-column .image img{
	right: 0;
}
.summary-section .row:nth-child(even) .dot{
	left: -2rem;
}
.inner-column-content {
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0px 0px 1px #060606;
    right: 0;
    top: 20px;
    background: #fff;
    min-height: 435px;
    z-index: 1;
    padding: 20px;
    height: 100%;
}

section.summary-section a{
    position: relative;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 30px;
    font-family: var(--secondary-font);
}

.line{
    height: 2px;
    width: 100px;
    background: var(--secondary-color);
    position: relative;
    top: -7px;
}

.rights::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -20px;
    right: -20px;
}

.rights::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -5px;
    right: -34px;
    -webkit-transform: rotate( 90deg );
    transform: rotate( 90deg );
}
/*=====================  CONTACT US =======================*/
.contact-page-section {
    position: relative;
    padding: 100px 0px 70px;
}
.contact-info-box {
    position: relative;
    margin-bottom: 30px;
    border-right: 1px solid #cdcdcd;
}
.box-inner {
    position: relative;
    padding: 40px 0px 40px 0px;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 12%);
}
.contact-info-box .box-inner {
    position: relative;
    padding: 0px 9px;
}
.contact-info-box .box-inner a{
	color: var(--text-black);
}
.contact-info-box .box-inner h5 {
    position: relative;
    font-family: var(--secondary-font);
    color: var(--text-black);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}
.contact-info-box .box-inner p {
    position: relative;
    color: var(--text-black);
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.7em;
}
.contact-info-box:nth-last-child(1) {
    border-right: 0px solid #cdcdcd;
}
.contact-page-section .inner-container {
    position: relative;
    padding: 40px 40px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.contact-form {
    position: relative;
    margin-top: 0rem;
}
.contact-form .form-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}
.contact-form .ui-selectmenu-button.ui-button, .contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 13px;
    color: #060606;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 10px 20px 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    resize: none;
}
.contact-map {
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 5px #ccc;
}
.contact-map iframe {
    position: relative;
    top: 0rem;
    height: 100%;
}

.contact-page-section .sec-title h3{
    margin-bottom: 2rem;
}

/*====================== PROPERT DETAILS =====================*/

.upper-box {
    position: relative;
}
.upper-box .rating {
    position: relative;
    color: var(--text-black);
    font-size: 14px;
}
.upper-box .rating .fa {
    position: relative;
    margin-right: 1px;
    display: inline-block;
}
.upper-box h3 {
    position: relative;
    line-height: 1.3em;
    margin-top: 4px;
    text-align: left;
    font-size: 28px;
}
.upper-box .hotel-info {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 0px;
    margin-top: 0px;
}
.hotel-info i {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-black);
    margin-right:5px;
}
.price {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.upper-box .price {
    position: relative;
    width: 100%;
    height: 98px;
    color: #060606;
    float: right;
    font-size: 23px;
    padding-top: 20px;
    line-height: 1.3em;
    border-radius: 50px;
    text-align: right;
    display: inline-block;
    background-color: #ffffff;
}
.upper-box .food-list {
    position: relative;
    padding: 15px 0px 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #efefef;
}
.upper-box .food-list li {
    position: relative;
    color: #060606;
    font-size: 17px;
    margin-right: 15px;
    display: inline-block;
}
.food-list li i {
    color: #000;
}
.amenities{
	list-style-type: none;
	padding-left: 0.5rem;
}
.amenities i{
	color: var(--secondary-color);
}
.amenities li{
	display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.properties-amenities h4{
	color: var(--secondary-color);
	margin-bottom: 1rem;
}
.comment-meta h3{
	font-size: 22px;
    margin-top: 0.5rem;
    margin-bottom: 10px;
}
.comment span{
	font-weight: 600;
}
.contact-page-sec{
	padding: 35px;
    box-shadow: 0px 0px 5px #dadada;
}
.contact-page-section.lv .contact-form .form-group.col-lg-6.col-md-6 {
    width: 50%;
}
.contact-page-section.lv{
    padding:0;
}
.contact-page-section.lv .contact-form{
    margin-top:0;
}
.contact-page-section.lv .contact-form .form-group.col-lg-4.col-md-4.col-sm-6, .contact-page-section.lv .contact-form .form-group.col-lg-4.col-md-4.col-sm-12 {
    width: 33%;
}
.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: left;
    border: 0;
    font-size: 0;
}
fieldset.score input {
    display: none !important;
}
.score label {
    display: inline-block !important;
    width: 1.2em;
    height: 0.9em;
    overflow: hidden;
    text-indent: 100%;
}
.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}
.score label::before {
    content: "☆";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}
.score label:hover:before, .score label:hover ~ label:before, .score input:checked ~ label:before {
    content: "★";
    color: #ffbb04;
}
.get-quote{
	padding: 0px;
    box-shadow: 0px 0px 0px #ccc;
    border-radius: 5px;
    position: sticky;
    top: 1rem;
    text-align: center;
}
.forms-booking-tab ul{
	background: var(--secondary-color);
    padding: 7px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}
.ovabrw_datetime_wrapper{
	    position: relative;
    width: 49%;
    display: inline-block;
}
.ovabrw_datetime_wrapper input{
	  width: 100%;
    padding: 8px 0 8px 30px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
}
.ovabrw_datetime_wrapper i, .ovabrw_service_select.rental_item i, .pets i{
	position: absolute;
    left: 0.5rem;
    top: 0.7rem;
    font-size: 18px;
    color: var(--secondary-color);
}

.pets i {
    left: 1.3rem;
}

.pets select{
    font-size:14px;
    text-indent: 20px;
    height: 39px;
    margin-top: 1rem !important;
    border: 1px solid var(--secondary-color) !important;
}

.pets {
    position: relative;
}

div#gaurav-new-data-area a{
     color: var(--secondary-color);
}

div#gaurav-new-data-area .col-md-6{
    text-align: left;
}
.ovabrw_service_select.rental_item{
	     width: 100%; 
    margin: 1rem 0;
    position: relative;
}

.ovabrw_service_select.rental_item select{
	width: 100%;
    padding: 10px;
    border: 1px solid var(--secondary-color);
    color: #bbb;
    text-indent: 20px;
}
.ovabrw-book-now button{
	width: 100%;
    font-size: 19px;
    margin-bottom: 1rem;
}


/*  Gaurav*/


/*Property page css start*/



section.blog-details-area.ptb-90 {
    padding: 0;
}

img.rsImg.rsMainSlideImage {
    margin-left: auto !important;
}

.property_meta {
    margin-top: 2rem;
}

h3.heading-2 {
    font-size: 28px;
    color: #000;
}

.rsDefault .rsThumbsArrow{
    height:100% !important;
}
.abouttext h4 {
   font-size: 1.5rem !important;
    font-family: var(--secondary-font);
    font-weight: 600;
}

.properties-amenities ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 0;
}

.abouttext ul li, .comment-content p {
    font-size: 15px;
}

.properties-amenities ul li {
    line-height: 1.5rem;
    margin-bottom: 14px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    z-index: -1;
    margin-left: -33px;
}

.properties-amenities ul li i{
    margin-right: 5px;
}
tbody, td, tfoot, th, thead, tr {
    padding: 10px;
}

.responsiveTab tr:nth-of-type(odd) {
    background: #eee;
}

.responsiveTab th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-family: var(--secondary-font);
}

.comment-meta span.checked, .comment-content span.checked {
    color: goldenrod;
}

.comment-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.comments .contact-form {
    background: #ffffff;
    padding: 0px;
    box-shadow: 0px 0px 0px #dfdede;
    width: 100%;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.comments .contact-form .form-group input, .comments .contact-form .form-group select, .comments .contact-form .form-group textarea {
    border: 1px solid var(--secondary-color);
    padding: 10px;
}

.elementor-widget-container.get-quote {
    position: sticky;
    top: 5px;
}

.forms-booking-tab {
    padding: 30px 20px;
    box-shadow: 0px 0px 13px #dad9d9;
    border-radius: 10px;
}

.forms-booking-tab ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.booking {
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--text-white);
    background: var(--secondary-color);
}

.rental_item {
    margin-bottom: 1rem;
    display: inline-block;
    width: 48%;
}

.forms-booking-tab .romancy-booking label {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.ovabrw_datetime_wrapper {
    position: relative;
}

.forms-booking-tab .romancy-booking .ovabrw-container select, .forms-booking-tab .romancy-booking .ovabrw-container input {
    border: 1px solid #cacaca;
    border-radius: 8px;
    height: 52px;
    width: 100%;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    caret-color: var(--primary-color);
}

.forms-booking-tab .ovabrw_booking_form .wrap_fields .ovabrw_datetime_wrapper input {
    padding: 15px 15px 15px 42px;
}

.ovabrw_datetime_wrapper .modal-bodyss i, .ovabrw_service_select.rental_item .modal-bodyss i {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 22px;
    color: var(--secondary-color);
    left: auto;
    cursor:pointer;
}

.ovabrw_service_select.rental_item {
    position: relative;
    width: 100%;
}

.forms-booking-tab .romancy-booking .ovabrw-container select {
    text-indent: 47px;
}

.ovabrw_service_select.rental_item i {
    left: 0.5rem;
}

.ovabrw-book-now {
   position: relative;
    width: 100%;
    gap: 0rem;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 0px 0px 5px 5px;
}

.ovabrw-book-now .main-btn {
    width: 100%;
}

.score input {
    position: absolute!important;
    top: -2em;
    clip: rect(0,0,0,0);
}

.score label::before {
    content: "☆";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}

.score label:hover::before, .score label:hover ~ label::before, .score input:checked ~ label::before {
    content: "★";
    color: rgb(255, 187, 4);
}

.score label {
    display: inline-block !important;
    line-height: 2rem;
    width: 1.2em;
    height: 1em;
    overflow: hidden;
    text-indent: 100%;
}

.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    border: 0;
    text-align: left;
}
/*Property page css end*/


input#show-target-data {
    padding: 10px 10px 10px 35px;
    font-size: 14px;
    background-color: #fff;
    height:39px;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
}

#guestsss {
    width: 100%;
    min-width: 300px;
    background: #fff;
    padding: 25px 20px;
    position: absolute;
    z-index: 9;
    left: 0;
    border-radius: 10px;
  
    display: none;
    box-shadow: 0px 0px 3px 0px #888888;
}

.booking-area .icns .modal-bodyss i {
    position: absolute;
 top: 5px !important;
    right: 20px !important;
    left: auto !important;
    font-size: 18px;
    color: var(--secondary-color);
cursor: pointer;
}

.booking-area input#show-target-data{
    font-size: 14px;
    background-color: #fff;
    border: 0px solid var(--secondary-color);
    height: 46px;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 12px 22px 11px 45px;
    transition: all 300ms ease;
    color: rgba(0, 0, 0, 0.63) !important;
}

.ac-box {
    margin-bottom: 20px;
}

.ac-box, .btnssss {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adult {
    display: flex;
    color: #000;
    font-size: 15px;
    align-items: center;
}

.adult p {
    margin-bottom: 0px;
}

.button1 {
    background: transparent;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    line-height: 40px;
    margin-left: 14px;
    border: 1px solid #717171;
    color: #717171;
    transition: all .3s;
    cursor: pointer;
}

.adult-popup .modal-bodyss button.main-btn.btn {
    width: 100%;
    color:#fff !important;
    border-radius: 40px;
}

.booking-area .col-lg.md-4.md-lg-0.srch-btn {
    padding-left: 0px;
    padding-right: 0px;
    display:flex;
}

button.main-btn.btn {
    background: var(--secondary-color) !important;
    border: 0.0625rem solid var(--secondary-color) !important;
}


section.get-quote-sec h2{
    font-weight: 400;
    font-size: 2.45rem;
    color: var(--secondary-color);
    /* text-transform: uppercase; */
    font-family: var(--secondary-font);
    margin-bottom: 1.375rem;
}

section.get-quote-sec .container{
    max-width: 990px;
}

section.get-quote-sec th{
background: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 15px;
}

.table-bordered>:not(caption)>*>*,.table-bordered>:not(caption)>*{
    border-color:var(--secondary-color);
}

section.get-quote-sec td{
    font-weight:bold;
    font-size: 15px;
}

section.get-quote-sec b, section.get-quote-sec strong{
   font-weight:bold; 
}

section.get-quote-sec label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

section.get-quote-sec .form-control{
    border-color:var(--secondary-color);
}

.About-sec th{
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.About-sec td{
    border:1px solid var(--secondary-color);
    font-weight: bold;
    font-size: 15px;
}

.About-sec b, .About-sec strong{
   font-weight:bold; 
}

.About-sec .t1{
    border-color:transparent;
}

.About-sec .book{
    background-color:transparent;
    color:#000;
}

section.about_wrapper.error {
    padding: 5rem 0;
}

section.about_wrapper.error h1 {
    color: var(--secondary-color);
    font-size: 100px;
    font-weight: bold;
    font-family: var(--primary-font);
    margin-bottom: 40px;
}

section.about_wrapper.error .row.m-0 {
    text-align: center;
}

section.about_wrapper.error a {
    width: 150px;
    margin: auto;
}

#sig-canvas{
    width:100%;
}

.rsDefault .rsThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.Blog-details img{
    width: 550px;
    margin-right: 20px;
    object-fit: cover;
}

section.Blog-details .container{
    display: flex;
}form#booking_form p{
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
}

form#booking_form p a{
    color: var(--secondary-color);
    }

        .showReadMores .morecontent span {display: none;}
    .showReadMores .ReadMore {display: visible;}
    .footer-sec{margin-top: 0rem;}
    .ac, .kapat {
            display: inline-block !important;
            background: #79a0fb;
            width: 140px !important;
            padding: 7px 20px;
            font-size: 16px;
            text-align: center;
            color: #fff;
            text-decoration: none;
            margin-top: 19px;
        }
        .theme-item-page-desc.more {
            font-size: 17px;
        }
.more + [data-readmore-toggle], .more[data-readmore] {
    display: block;
    width: 100%;
    overflow: hidden;
}

#less{
    display: none;
}

.btn-check:focus+.btn-success, .btn-success:focus{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem var(--secondary-color);
}

.modal-footer{
    display:none;
}

.overview-content {
    height: 180px;
    overflow: hidden;
}

#more, #less{
    cursor:pointer;
}

.btn-success {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    border-radius: 0px;
}

.btn-success:hover {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
}

.form-control:focus{
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.sticky.main-btn {
    transform: rotate(-90deg);
    position: fixed;
    left: auto;
    right: -45px;
    top: 52%;
    z-index: 999;
    display: none;
    color: #fff !important;
    background: var(--secondary-color);
}

.prop.slick-testimonial img{
    height: 422px;
}

.prop .slick-list.draggable {
    height: 422px !important;
}

.prop .slick-arrow {
    position: absolute;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    cursor: pointer;
}

.prop .slick-arrow.fa-angle-right{
   right:10px; 
}

.prop .fa-angle-left {
    left: 10px;
    z-index: 9;
}

section.property-sec {
    padding: 60px 0;
    background: #efefef;
}

section.amn{
    background:var(--other-color);
    padding:60px 0;
}

section.amn h3{
    color: var(--text-black);
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 0px;
}

.left-amn span {
    font-size: 25px;
}

.left-amn h2 {
    font-size: 30px;
    margin: 10px 0;
    color: #00a9dd;
    font-weight:bold;
}

.left-amn p{
    font-size: 18px;
}

.left-amn {
    margin-bottom: 50px;
}

.amn .img-fluid {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 40px;
    width:100%;
}

p.cancll{
    font-family: 'Poppins', sans-serif !important;
    color: #000;
    font-size: 15px !important;
}

p.cancll .clck{
    color: red;
    cursor: pointer;
}

.cancl {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 2px 2px 2px 2px #888888;
    color: #000;
    position: relative;
    display: none;
}

.cancl i {
    position: absolute;
    right: 30px;
    font-size: 18px;
    cursor: pointer;
}

.cancl strong {
    color: #000;
}
.cancl p {
    font-family: 'Poppins', sans-serif !important;
    color: #000;
    font-size: 15px !important;
}

section.get-quote-sec table{
    margin-bottom:5px;
}

span.start {
    font-size: 20px;
}

.row.text-center.mt-4.bttn {
    justify-content: center;
    display: flex;
    align-items: center;
}

.row.text-center.mt-4.bttn p{
    margin-bottom: 0px;
    width: 60px;
    font-size: 20px;
}

.row.text-center.mt-4.bttn div{
   width: auto;
    text-align: center;
    padding: 0px;
}

.row.text-center.mt-4.bttn label{
    display:none;
}

.upper-box .col-lg-9, .upper-box  .col-lg-3{
    padding:0px;
}

div#calender_nrj{
     padding:0px;
}

section.get-quote-sec .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
    padding: 0px;
}
.about_wrapper .line{
    margin-left: 0px;
    margin-bottom: 20px;
}
.about-upper{
 padding-left:12px;
  padding-right:12px;
}
 .hero-section .head-sec{
    margin-bottom: 40px;
  }
.hero-section{
    align-items: flex-start;
    display: flex;
    min-height: 100%;
    justify-content: center;
    background: var(--white-color);
  }
  
  .hero-section .card-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    max-width: var(--width-container);
    width: 100%;
  }
  
  @media(min-width: 540px){
    .hero-section .card-grid{
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  @media(min-width: 960px){
    .hero-section   .card-grid{
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .hero-section .card{
    list-style: none;
    position: relative;
    border: none;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .hero-section .card:before{
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
  }
  
  .hero-section .card__background{
    background-size: cover;
    background-position: center;
    border-radius: var(--spacing-l);
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    trsnsform: scale(1) translateZ(0);
    transition: 
      filter 200ms linear,
      transform 200ms linear;
  }
  
  .hero-section .card:hover .card__background{
    transform: scale(1.05) translateZ(0);
  }
  
  .hero-section .card-grid:hover > .card:not(:hover) .card__background{
    filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
  }
  
  .hero-section  .card__content{
    left: 0;
    padding: 24px;
    position: absolute;
    top: 0;
  }
  
  .hero-section .card__category{
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-s);
    text-transform: uppercase;
  }
  
  .hero-section .card__heading{
    color: #fff;
    font-size: 25px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    line-height: 1.4;
    word-spacing: 0vw;
    text-transform: capitalize;
    height: 35px;
    overflow: hidden;
  }
  .hero-section .hero-btn a.main-btn{
    display: block;
    width: 150px;
    text-align: center;
    margin: auto;
  }
  .hero-btn {
    text-align: center;
    margin-top: 30px;
}
.hero-section{
    background: var(--white-color);
}
.hero-section .head-sec{
    text-align: center;
}
.hero-section .head-sec h2{
	font-family: var(--secondary-font);
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
}


 section.testimonial .bg-img{
     background: url('../images/test.jpg');
     height: 610px;
     padding: 0;
     background-size: cover;
     position: relative;
     z-index: 1;
 }
  section.testimonial .attr-bnt {
    position: absolute;
    bottom: 7.7%;
    right: 45%;
    z-index: 1;
}
 section.testimonial .para {
 max-height: 115px;
 overflow: hidden;
 }
 
 section.testimonial {
    background: var(--white-color);
     position: relative;
     padding: 0;
 }
 
 
 section.testimonial .col-6.cont-head{
     margin-top: 88px;
     padding: 105px 27px 0;
     background: transparent url(../images/testi-bg-a.jpg) no-repeat;
     background-position: center center;
     background-size: 100% 100%;
     position: relative;
     z-index: 1;
     display: none;
 }
 section.testimonial .col-6.cont-head::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: #000;
     opacity: 0.50;
 }
 section.testimonial .head-sec{
     position: relative;
     text-align: left;
     width: 100%;
     padding-left: 30px;
     padding-top: 50px;
     margin-bottom: 20px;
 }
 section.testimonial .head-sec h2{
	 font-family: var(--secondary-font);
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
 }
 section.testimonial .icon{
         border-radius: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         position: absolute;
         right: 0;
         z-index: 1;
         top: -5px;
 }
 section.testimonial .icon img{
     height: 50px;
 }
 section.testimonial .testy {
   margin: auto;
   padding: 0;
   padding-bottom: 0;
   border-radius: 0px;
   background: transparent;
   position: relative;
   z-index: 2;
 }
 section.testimonial .item {
     padding-left: 15px;
     padding-right: 15px;
     padding-bottom: 5px;
 }
 section.testimonial .top-text {
     position: relative;
     /* height: 100px; */
 }
 section.testimonial .overlay{
    /* background-color: #f5f5f5; */
    width: 120%;
    margin: auto;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0px;
    position: relative;
    left: -180px;
    padding: 50px 80px;
    z-index: 1;
    height: auto;
 }
 section.testimonial .owl-nav {
     display: flex;
    gap: 10px;
    position: relative;
    left: 140px;
    top: 30px;
    justify-content: flex-end;
    width: 80%;
 }
 .owl-carousel .owl-stage-outer{
    padding-left: 0;
    padding-right: 0px;
 }
 section.testimonial button.owl-prev{
     font-size: 16px;
     border-radius: 0px;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--secondary-color) !important;
     border: 0px solid !important;
     color: #fff !important;
 }
 section.testimonial button.owl-next{
     font-size: 16px;
     border-radius: 0px;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--secondary-color) !important;
     border: 0px solid !important;
     color: #fff !important;
 }
 section.testimonial button.owl-prev:hover, section.testimonial button.owl-next:hover{
     background: var(--secondary-color) !important;
 }
 section.testimonial .test-pro {
     height: 100px;
     overflow: hidden;
     -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
     -o-transition: all 0.3s;
     transition: all 0.3s;
     position: relative;
 }
 section.testimonial .test-pro:before {
     content: '';
     position: absolute;
     z-index: 1;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: rgba(0, 0, 0, 0.3);
 }
 section.testimonial .test-pro img {
     position: absolute;
     /*top: -35%;*/
     -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
     -o-transition: all 0.3s;
     transition: all 0.3s;
     max-width: none;
 }
 section.testimonial .user-icon {
     position: absolute;
     z-index: 1;
     left: 17%;
     top: 20%;
     -webkit-transform: translate3d(-50%, -10px, 0);
     -moz-transform: translate3d(-50%, -10px, 0);
     transform: translate3d(-50%, -10px, 0);
     -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
     -o-transition: all 0.3s;
     transition: all 0.3s;
 }
 section.testimonial .user-icon img{
     width: 70px;
     height: 70px;
     object-fit:cover;
     border-radius: 50%;
     border: 2px solid #fff;
 }
 
 
 section.testimonial .test-card {
     text-align: center;
     background: #fff;
     border-radius: 0px;
     /* box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1); */
     padding-bottom: 0;
     max-width: 900px;
     margin: auto;
     box-shadow: 0 2px 13px 0 rgba(0,0,0,.07);
     padding: 25px;
     height: 280px;
 }
 section.testimonial .test-card p{
     color: var(--primary-color);
     line-height: 1.6;
     margin-bottom: 0;
     margin-top: var(--m10);
 }
 
 section.testimonial .test-card h4 {
     font-size: var(--f20);
     margin-bottom: var(--m7);
     font-weight: 600;
     color: var(--heading-color);
 }
 section.testimonial .cont-sec{
     margin-top: 70px;
     text-align: center;
 }
 section.testimonial i.fa-solid.fa-star {
     color: #FCAF3D;
     font-size: 10px;
     margin-right: 3px;
 }
 section.testimonial hr {
     width: 200px;
     opacity: 1;
     border-top: 3px solid;
     color: var(--white-color);
 }
 section.testimonial h3 {
   padding-left: 0;
   font-size: 20px;
   font-weight: 700;
   text-align: center;
   color: var(--heading-color);
   margin-bottom: 0;
 }
 section.testimonial .container-fluid{
     padding: 0;
 }
 
 section.testimonial .owl-item.active:first-child .item{
     border-right: 2px solid var(--white-color);
 }
 section.testimonial .para p{
    text-align: center;
    width: 90%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    color: #000;
    height: auto;
    max-height: 141px;
    margin-top: 10px;
    font-size: var(--f16);
    overflow: hidden;
    margin-bottom: 20px;
 }
 section.testimonial .para i{
     font-size:var(--f30);
 }
 section.testimonial i.fa-solid.fa-quote-right {
     position: absolute;
     right: 20px;
     bottom: -10px;
 }
 section.testimonial i.fa-solid.fa-quote-left {
     position: absolute;
     left: 20px;
     top: -10px;
 }
 section.testimonial p.clt-name{
     color: var(--heading-color);
     font-weight: bold;
     text-transform: uppercase;
     margin-top: var(--m15);
     margin-bottom: 0px;
 }
 
 section.testimonial span {
     height: auto;
     overflow: hidden;
     display: block;
 }
 section.testimonial .test-card:hover .test-pro {
     height: 180px;
 }
 section.testimonial .test-card:hover .test-pro img {
     top: 0;
     height:100%;
 }
section.testimonial .attr-bnt {
    position: absolute;
    bottom: 3.5%;
    right: 45%;
    z-index: 1;
}
 section.testimonial a.main-btn{
    display: inline-block;
    
 }