:root{
		--worksans: "Work Sans", sans-serif;
		--mulish: "Mulish", sans-serif;
		--bg1: #f1f6f9;
		--white: #ffffff;
		--black: #1a213d;
		--dorado: #6B5755;
		--crystal-blue: #5CB3FF;
		--400: 400;
		--500: 500;
		--600: 600;
		--700: 700;
		--60: 60px;
		--36: 36px;
		--30: 30px;
		--28: 28px;
		--25: 25px;
		--22: 22px;
		--18: 18px;
		--16: 16px;
}
body{
		font-family: var(--worksans);
		font-size: var(--16);
		font-weight: var(--400);
		color: var(--dorado);
		line-height: var(--30);
}
.common_title{
		margin-bottom: 15px;
		font-family: var(--mulish);
		font-size: var(--36);
		font-weight: var(--600);
		text-transform: capitalize;
		color: var(--black);
}
.common_subtitle{
		font-family: var(--worksans);
		font-size: var(--18);
		font-weight: var(--400);
		color: var(--dorado);
}
.common_description{
		margin-bottom: 15px;
}
.common_padding{
		padding: 100px 0;
}
.bg1{
		background: var(--bg1);
}
/*=======header css start=========*/
.my_navbar{
		padding: 20px 0;
		background: rgba(26, 31, 61, 0.8);
}
.header_logo{}
.header_logo img{}


.header_search{
		position: relative;
}
.header_search input{
		padding: 5px 5px 5px 50px;
		font-family: var(--worksans);
		color: var(--white);
		background: rgba(255, 255, 255, 0.25);
		border-radius: 0;
		border: none;
}
.header_search input::placeholder{
		font-family: var(--worksans);
		color: var(--white);
}
.header_search input:focus{
		box-shadow: none;
		outline: none;
}
.header_search button{
		border: none;
		color: var(--white);
		background: none;
		position: absolute;
		left: 26px;
		top: 50%;
		transform: translate(-50%, -50%);
}
.header_search button:focus-visible{
		outline: none;
}
.header_nav_toggler{
		border: 2px solid var(--white);
}
.header_nav_toggler:focus{
		box-shadow: none;
		outline: none;
}
.header_nav_toggler i{
		padding: 5px;
		font-size: var(--25);
		color: var(--white);
}
.header_menu ul li a{
		margin-right: 30px;
		font-size: var(--16);
		font-weight: var(--600);
		text-transform: capitalize;
		color: var(--white) !important;
		transition: 0.33s linear;
}
.header_menu ul li:last-child a{
		margin-right: 0;
}
.header_menu ul li a:hover{
		color: var(--crystal-blue) !important;
}
.header_menu ul li a:focus-visible{
		box-shadow: none;
}
.signin_btn{
		margin-right: 30px;
}
.signin_btn,
.listing_btn{
		padding: 10px 30px;
		font-family: var(--worksans);
		font-size: var(--16);
		font-weight: var(--400);
		color: var(--white) !important;
		text-transform: capitalize;
		background: var(--crystal-blue);
		border: none;
		transition: 0.33s linear;
}
.signin_btn,
.listing_btn{
		position: relative;
		z-index: 1;
}
.signin_btn:focus
.listing_btn:focus{
		box-shadow: none;
		outline: none;
}
.signin_btn:focus-visible,
.listing_btn:focus-visible{
		outline: none;
}
.signin_btn:before,
.listing_btn:before{
		content: '';
		position: absolute;
		width: 0;
		height: 100%;
		left: 0;
		top: 0;
		background: var(--black);
		z-index: -1;
		transition: 0.33s linear;
}
.signin_btn:hover:before,
.listing_btn:hover:before{
		width: 100%;
}
/*===========header css end==============*/
/*===========banner css start============*/
.banner_section{
		background: url(../images/h1_hero.jpg) no-repeat center top;
		background-size: cover;
		padding: 300px 0 200px 0;
		position: relative;
		z-index: 1;
}
.banner_section:after{
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
		background: rgba(26, 32, 61, 0.65);
		z-index: -1;
}
.banner_text{
		color: var(--white);
}
.b_title{
		font-size: var(--60);
		font-weight: var(--700);
		color: var(--white);
}
.b_p{
		padding: 0 125px;
		font-size: var(--22);
}
.banner_sform{
		margin: 40px 0;
		padding: 15px;
		background: rgba(255, 255, 255, 0.2);
}
.banner_sform input{
		padding: 12px 10px 12px 100px;
		border-radius: 0;
}
.banner_sform input:focus{
		box-shadow: 0 0 0 .25rem rgba(92, 179,255, .25);
}
.search_service label,
.search_city label{
		position: absolute;
		left: 50px;
		top: 50%;
		transform: translate(-50%, -50%);
}
.search_btn button{
		padding: 10px 30px 10px 50px;
		width: 100%;
		display: block;
}
.search_btn i{
		font-size: var(--16);
		color: var(--white);
		position: absolute;
		left: 25px;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
}
.banner_menu ul li a{
		margin-right: 10px;
		padding: 10px 25px;
		text-transform: capitalize;
		text-decoration: none;
		color: var(--white);
		background: rgba(255, 255, 255, 0.4);
		border-radius: 30px;
		display: block;
		transition: 0.33s linear;
}
.banner_menu ul li a:hover{
		background: var(--crystal-blue);
}
.banner_menu ul li:last-child a{
		margin-right: 0;
}
/*===========banner css end============*/
/*===========destination css start===========*/
.dest_title{
		margin-bottom: 40px;
}
.destination{
		margin-top: 20px;
}
.dest_img{
		border-radius: 50%;
		position: relative;
}
.dest_img:after{
		content: "";
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		border-radius: 50%;
		position: absolute;
		background: rgba(26, 32, 61, 0.5);
		opacity: 0;
		transition: 0.33s linear;
}
.destination:hover .dest_img:after{
		opacity: 1;
}
.dest_img a{
		font-weight: var(--600);
		text-transform: capitalize;
		text-decoration: none;
		color: var(--white);
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: 0.33s linear;
}
.dest_img a:hover{
		font-size: 17px;
}
.destination:hover .dest_img a{
		opacity: 1;
		visibility: visible;
}
.dest_img a:after{
		content: "\f105";
		font-family: FontAwesome;
		margin-left: 5px;
}
.dest_curcle:after{
		content: "";
		width: 90%;
		height: 90%;
		left: 5%;
		top: 5%;
		border: 2px dotted var(--white);
		border-radius: 50%;
		position: absolute;
		opacity: 0;
		visibility: hidden;
		z-index: 1;
		animation-name: dest_curcle;
		animation-duration: 30s;
		animation-iteration-count: infinite;
		animation-timing-function: linear;
		transition: 0.33s linear;
}
.destination:hover .dest_curcle:after{
		opacity: 1;
		visibility: visible;
}
@keyframes dest_curcle {
  0%{
		transform: rotate(0deg);
  }
  100%{
		transform: rotate(360deg);
  }
}
.destination h2 a{
		padding-top: 20px;
		font-size: var(--22);
		text-decoration: none;
		display: block;
		transition: 0.33s linear;
}
.destination:hover h2 a{
		color: var(--crystal-blue);
}
/*==============destination css end================*/
/*===================feature css start==============*/
.feature_top{
		margin-bottom: 50px;
}
.slick-slide {
    margin: 10px;
}
.pt_slider_item{
		border-radius: 10px;
		box-shadow: 0px 6px 6px 0px rgba(2,25,65,0.08);
}
.feature_item,
.shopping{
		margin-top: 20px;
		position: relative;
}
.f_img,
.shopping_img{
		border-radius: 15px;
		overflow: hidden;
		position: relative;
		z-index: 0;
}
.f_img:after,
.shopping_img:after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 50%;
		background: -moz-linear-gradient(90deg, #010a27 0%, #010a27 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, #0b34c9 100%);
		background: -webkit-linear-gradient(90deg, #010a27 0%, #010a27 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, #0b34c9 100%);
}
.f_img img{
		max-height: 300px;
		transition: 0.33s linear;
}
.feature_item:hover img{
		transform: scale(1.1);
}
.feature_item a{
		font-size: var(--18);
		font-weight: var(--600);
		text-decoration: none;
		text-transform: capitalize;
		color: var(--white);
		position: absolute;
		left: 20px;
		bottom: 20px;
		z-index: 1;
}
.shopping_img img{
		max-height: 600px;
		transition: 0.33s linear;
}
.shopping:hover img{
		transform: scale(1.1);
}
.shopping_text{
		padding: 20px 70px 20px 20px;
		position: absolute;
		left: 0;
		bottom: 0;
}
.shopping_text a{
		color: var(--white);
		text-decoration: none;
}
.shopping_text P{
		font-size: var(--16);
		font-weight: var(--400);
		line-height: var(--25);
		color: var(--white);
}
.shopping_btn{
		padding: 15px 30px;
		background: var(--crystal-blue);
		border-radius: 100px;
		transition: 0.33s linear;
}
.shopping_btn:hover{
		background: var(--black);
}
.slick-arrow{
		position: absolute;
		top: -40px;
}
.slick-prev{
		left: 10px;
}
.slick-prev:before {
	  content: "\f053";
	  font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 25px;
    color: var(--black);
}
.slick-next{
		right: 10px;
}
.slick-next:before {
	  content: "\f054";
	  font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 25px;
    color: var(--black);
}
/*=================feature css end=================*/
/*=================popular things css start================*/
.popular_things{
		margin-bottom: 60px;
}
.pt_carousel_button{
		position: absolute;
		border: 0;
		background: none;
}
.pt_carousel_prev{
		left: 0;
		top: -80px;
}
.pt_carousel_next{
		right: 0;
		top: -80px;
}
.pt_carousel_prev i,
.pt_carousel_next i{
		font-size: var(--22);
		color: var(--black);
}
.pt_carousel{
		display: flex;
}
.pt_carousel_item{
		margin-right: 0;
		display: block;
		flex: 0 0 calc(100%/4);
}
.pt_carousel_card{
		margin: 10px;
		box-shadow: 0px 6px 6px 0px rgba(2,25,65,0.08);
}
.pt_carousel_img{
		position: relative;
}
.pt_carousel_img::after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 50%;
		background: -moz-linear-gradient(90deg, #010a27 0%, #010a27 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, #0b34c9 100%);
		background: -webkit-linear-gradient(90deg, #010a27 0%, #010a27 0%, rgba(6,31,120,0.3) 70%, rgba(11,52,201,0.01) 100%, #0b34c9 100%);
}
.pt_carousel_img ul{
		position: absolute;
		left: 20px;
		bottom: 10px;
		z-index: 1;
}
.pt_carousel_img ul li i{
		font-size: 14px;
		color: var(--crystal-blue);
}
.pt_carousel_img ul li span{
		font-size: 14px;
		color: var(--white);
}
.pt_img_text{
		position: absolute;
		left: 20px;
		top: 20px;
}
.pt_img_text span{
		padding: 10px 15px;
		font-size: 14px;
		text-transform: capitalize;
		color: var(--white);
		background: var(--crystal-blue);
		border-radius: 50px;
}
.pt_img_icon{
		position: absolute;
		right: 20px;
		top: 20px;
}
.pt_img_icon i{
		padding: 10px;
		font-size: 14px;
		color: var(--white);
		background: var(--crystal-blue);
		border-radius: 50px;
}
.pt_carousel_body{
		padding: 20px 0 0 20px;
}
.pt_carousel_body h2{
		margin-bottom: 5px;
		font-size: var(--18);
}
.pt_carousel_body h2 a{
		text-decoration: none;
		color: var(--black);
}
.pt_carousel_body h2::after{
		padding: 5px;
		content: "\f058";
		font-family: 'Font Awesome\ 5 Free';
		font-size: 15px;
		font-weight: var(--700);
		color: var(--crystal-blue);
}
.pt_carousel_body p{
		font-size: 15px;
		text-transform: capitalize;
}
.pt_carousel_body p::before{
		margin-right: 5px;
		content: "\f3c5";
		font-family: 'Font Awesome\ 5 Free';
		font-size: 15px;
		font-weight: var(--700);
		color: var(--crystal-blue);
}
.pt_carousel_footer{
		padding: 20px;
		border-top: 1px solid #ebeff4;
}
.pt_footer_left{
		align-items: center;
}
.pt_footer_left i{
		padding: 14px;
		font-size: var(--16);
		color: var(--white);
		background: var(--dorado);
		border-radius: 50px;
}
.pt_footer_left a{
		margin-left: 5px;
		font-size: 14px;
		font-weight: var(--600);
		color: var(--black);
		text-decoration: none;
		text-transform: capitalize;
}
.pt_footer_right .fa-phone{
		margin-right: 5px;
}
.pt_footer_right .fa-phone,
.pt_footer_right .fa-envelope{
		padding: 8px;
    font-size: 16px;
    color: var(--crystal-blue);
    background: rgba(48, 76, 187, 0.14);
    border-radius: 50%;
    transition: 0.33s linear;
}
.pt_footer_right .fa-phone:hover,
.pt_footer_right .fa-envelope:hover{
		color: var(--white);
		background: var(--dorado);
}
.pl_find{
		margin-top: 30px;
		padding: 30px 50px;
		border: 1px solid #DEE0E5;
		border-radius: 5px;
}
.plf_text h2{
		margin-bottom: 8px;
		font-size: var(--25);
}
.plf_text p{
		margin: 0;
}
.plf_button a{
		padding: 15px 30px;
		text-decoration: none;
		display: block;
		color: var(--white);
		background: var(--crystal-blue);
		border-radius: 30px;
		position: relative;
		z-index: 1;
		overflow: hidden;
}
.plf_button a:after{
		content: "";
		width: 0;
		height: 100%;
		left: 0;
		top: 0;
		position: absolute;
		background: var(--black);
		z-index: -1;
		transition: 0.33s linear;
}
.plf_button a:hover:after{
		width: 100%;
}
/*=============popular things css end================*/
/*=============how it work css start==================*/
.ht_title{
		margin-bottom: 40px;
}
.hw_item{
		padding: 20px 40px;
}
.hw_icon{
		margin: 0 auto;
		width: 80px;
		height: 80px;
		background: #304cbb;
		border-radius: 50%;
}
.hw_icon i{
		padding: 25px;
		font-size: var(--30);
		color: var(--white);
		display: flex;
		align-items: center;
		justify-content: center;
}
.hw_text h2 a{
		font-size: var(--25);
		text-decoration: none;
		color: var(--black);
		transition: 0.33s linear;
}
.hw_item:hover .hw_text h2 a{
		color: var(--crystal-blue);
}
/*================how it work css end==============*/
/*================testimoniyal css start==============*/
.tsm_left{
		background: url(../images/video-bg.jpg) center center no-repeat;
		height: 430px;
}
.tsm_popup_button a i{
		font-size: 50px;
		color: var(--white);
		opacity: 0.5;
		position: relative;
}
.tsm_popup_button a i:after{
		content: "";
    width: 110px;
    height: 110px;
    border: 20px solid var(--white);
    border-radius: 100px;
    position: absolute;
    left: -106%;
    top: -66%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: play_btn 2s linear infinite;
}
@keyframes play_btn{
		0%{
			transform: scale(1.1);
			opacity: 0.3;
		}
		25%{
			opacity: 0.7;
		}
		50%{
			opacity: 0.6;
			transform: scale(1.2);
		}
		75%{
			opacity: 0.5;
		}
		100%{
			transform: scale(1.4);
			opacity: 0;
		}
}
.tsm_item{
		padding: 50px;
}
.tsm_description{
		font-size: 20px;
		padding: 30px 100px 30px 30px;
		margin-bottom: 50px;
		background: #F1F6F9;
		position: relative;
}
.tsm_description:after{
		content: "";
		width: 30px;
		height: 30px;
		background: #F1F6F9;
		position: absolute;
		left: 30px;
    bottom: -15px;
		transform: rotate(45deg);
		z-index: -1;
}
.tsm_img{
		width: 80px;
		height: 80px;
}
.tsm_img img{
	border-radius: 50%;
}
.tsm_about{
		padding-left: 20px;
}
.tsm_item_title{
		font-size: 20px;
		font-weight: 700;
		line-height: 30px;
		margin: 0;
}
.tsm_item_designation{
		margin: 0;
		line-height: 20px;
}

/*==============testimoniyal css end===============*/
/*==============footer css start===================*/
footer{
		padding-bottom: 0 !important;
		background: #1A213D;
}
.f_top{
	margin-top: 30px;
}
.f_logo{
		margin-bottom: 40px;
}
.f_text .common_description{
		color: #A4A6AE;
}
.f_social a i{
		font-size: 20px;
		margin-right: 10px;
		color: #A4A6AE;
		transition: 0.33s;
}
.f_social a i:hover{
		transform: rotateY(180deg);
		color: var(--crystal-blue);
}
.fm_title{
		font-size: 20px;
		color: #ffffff;
}
.f_menu ul li a{
		font-size: var(--16);
		font-weight: var(--400);
		text-decoration: none;
		color: #A4A6AE;
		display: inline-block;
		margin-top: 15px;
		position: relative;
		transition: 0.3s;
}
.f_menu ul li a:hover{
		color: var(--crystal-blue);
}
.f_menu ul li a:after{
		content: "";
		width: 0;
		height: 2px;
		background: var(--crystal-blue);
		right: 0;
		bottom: 0;
		position: absolute;
		transition: 0.33s;
}
.f_menu ul li a:hover:after{
		width: 100%;
		left: 0;
}
.fn_description{
		margin-top: 25px;
		color: #A4A6AE;
}
.fn_form{
	position: relative;
}
.f_email{
	padding: 10px 50px 10px 20px;
	width: 100%;
	border: 1px solid #A4A6AE;
	border-radius: 100px;
	color: #A4A6AE;
	background: transparent;
}
.f_email:focus{
	outline: 0;
}
.f_email::placeholder{
	color: #A4A6AE;
}
.f_submit{
	border: 0;
	color: var(--crystal-blue);
	background: transparent;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
}
.footer_bottom{
	padding-top: 50px;
	color: #A4A6AE;
}
.footer_bottom a{
	text-decoration: none;
}
/*==========footer css end==============*/