*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
	position: relative;
}
:root{
	--baseColor: #F4624E;
	--secondaryColor: #030303;
	--lightColor: #FFFFFF;
	--darkColor: #232323;
	--grayColor: #F4F4F4;
	
	--baseHeading: 'Raleway', sans-serif;
	--baseParagraph: 'Montserrat', sans-serif;
}

/* ========== Custom CSS Starts ========== */


/* ===== CSS For "Common Cases" Starts Here ===== */
.vertical_padding{
	padding: 50px 0px;
	padding-top: 30px;
}
/* ========================= */
.heading{
	max-width: 760px;
	margin: 0px auto;
	margin-bottom: 40px;
	text-align: center;
}
.heading h2{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 32px;
	text-transform: capitalize;
	margin-bottom: 0px;
}
.heading p{
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0px;
	margin-top: 10px;
}
.heading .headline{
	margin:15px 0px;
	margin-bottom:25px;
	line-height:0;
	font-size:0px;
}
.heading .headline span{
	display: inline-block;
	width: 100px;
	height: 2px;
	background: var(--baseColor);
}
/* ========================= */
.texts{
	text-align: center;
}
.texts h4 {
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 22px;
	margin-bottom: 10px;
}
.texts p{
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0px;
	margin-top: 0px;	
}
/* ========================= */
.clickable_link{
	text-align: center;
	margin-top: 25px;
}
.clickable_link a{
	text-decoration: none;
	color: var(--lightColor);
	background: var(--baseColor);
	display: inline-block;
	text-align: center;
	padding: 10px 30px;
	border-radius: 5px;
	width: 275px;
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 20px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.clickable_link a:hover{
	transform: scale(1.05);
}
.clickable_link a img{
	width: 24px;
}
/* ========================= */
.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;	
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ===== CSS For "Navbar" Starts Here ===== */
/* ===== Humberger Menu Icon ===== */
.navbar-toggler{
	padding:0px;
}
.navbar-toggler:focus{
	outline: none;
}
.humberger_icon{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.humberger_icon span{
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.humberger_icon span {
	background: var(--baseColor);
}
.humberger_icon span:nth-child(1) {
	top: 0px;
}
.humberger_icon span:nth-child(2),
.humberger_icon span:nth-child(3) {
	top: 10px;
}
.humberger_icon span:nth-child(4) {
	top: 20px;
}
.humberger_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.humberger_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.humberger_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.humberger_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

.navbar{
	background: var(--lightColor);
	padding: 10px 10px;
	box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-brand{
	padding: 0px;
}
.navbar .navbar-brand img{
	max-width: 220px;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 10px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 16px;
	padding: 7.5px 10px;
	text-decoration: none;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item.active .nav-link{
	color: var(--baseColor);
}
.navbar .navbar-nav .nav-item .nav-link:after {
	content: "";
	background: var(--baseColor);
	width: 0%;
	height: 2px;
	position: absolute;
	left: 10px;
	bottom: 8px;
	border-radius: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item:hover .nav-link:after,
.navbar .navbar-nav .nav-item.active .nav-link:after{
	content:"";
	width: 70%;
}

.navbar .navbar-nav .nav-item .search_link{
	padding-right: 0px;
}
.navbar .navbar-nav .nav-item .search_link:after{
	content:"";
	display: none;
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Banner" Starts Here ===== */
.banner_wrap{
	background: url(images/Header_Bg.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
}
.banner_wrap .overlay{
	background: rgba(0,0,0, 0.25);
	padding: 55px 0px;
}

.banner_wrap .traveler_quote{
	max-width: 760px;
	margin: 0px auto;
	background: rgba(0,0,0, 0.75);
	padding: 25px;
	border-radius: 10px;
}
.banner_wrap .traveler_quote .quote_icon{
	text-align: center;
	margin-bottom: 20px;
}
.banner_wrap .traveler_quote .quote_icon i{
	color: var(--baseColor);
	font-size: 50px;
	text-align: center;
	border-radius: 50%;
}
.banner_wrap .traveler_quote p{
	color: var(--lightColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 22px;
	font-style: italic;
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.banner_wrap .traveler_quote h6{
	color: var(--baseColor);
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 0px;
	text-align: center;
	text-transform: capitalize;
}

.banner_wrap .set_places{
	max-width: 760px;
	margin: 0px auto;
	background: rgba(0,0,0, 0.75);
	padding: 25px;
	border-radius: 10px;
	margin-top: 30px;	
}
.banner_wrap .set_places .fields_wrap{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 50px 15px 1fr;
    grid-template-columns: 1fr 50px 1fr;
    grid-auto-rows: auto;
    gap: 15px;	
}

.banner_wrap .set_places .fields_wrap label{
	color: var(--lightColor);
	font-family: var(--baseParagraph);
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 2.5px;
}
.banner_wrap .set_places .fields_wrap .form-control{
	color: var(--lightColor);
	font-family: var(--baseParagraph);
	font-weight: 500;
	font-size: 18px;
	padding: 15px 15px;
	height: inherit;
	background: rgba(0,0,0, 0.75);
	border-radius: 5px;
	border: 1px solid #6C756E;
}
.banner_wrap .set_places .fields_wrap .form-control:active,
.banner_wrap .set_places .fields_wrap .form-control:focus{
	border: 1px solid var(--baseColor);
}

.banner_wrap .set_places .place_exchange{
	text-align: center;
}
.banner_wrap .set_places .place_exchange a{
	display: block;
	margin-top: 34px;
}
.banner_wrap .set_places .place_exchange i{
	color: var(--baseColor);
	background: var(--grayColor);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	border-radius: 50%;
}

.banner_wrap .set_places .submit_button{
	margin-top: 15px;
}
.banner_wrap .set_places .submit_button button{
	color: var(--lightColor);
	background: var(--baseColor);
	width: 100%;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 18px;
	border-radius: 5px;
	padding: 12.5px 15px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.banner_wrap .set_places .submit_button button:hover{
	background: #C63420;
	-webkit-transform: scale(1.025);
	-ms-transform: scale(1.025);
	transform: scale(1.025);
}
/* ===== CSS For "Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Trending Maps" Starts Here ===== */
.trending_maps{
	background: url(images/world_map.png) no-repeat;
	background-position: center center;
	background-size: cover;		
}
.trending_maps .single_map{
	margin: 0px 15px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.075);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.075);
	border-radius: 5px;
}
.trending_maps .single_map a{
	text-decoration: none;
}
.trending_maps .single_map .map_image{
	
}
.trending_maps .single_map .map_image img{
	display: block;
	width: 100%;
	height: 220px;
	border-radius: 5px 5px 0px 0px;
	-o-object-fit: cover;
	object-fit: cover;
}
.trending_maps .single_map .map_title{
	padding: 15px 10px;
}
.trending_maps .single_map .map_title h4{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 18px;
	font-style: italic;
	margin-bottom: 0px;
	text-align: center;
}

.trending_maps .slick-track{
	padding: 15px 0px;
}

.trending_maps .slick-prev:before{
	display:none;
}
.trending_maps .slick-next:before{
	display:none;
}
.trending_maps .slick-prev{
	background: url(images/left_arrow.png) no-repeat;
	background-position: center center;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	z-index: 99999;
	left: -20px;
}
.trending_maps .slick-next{
	background: url(images/right_arrow.png) no-repeat;
	background-position: center center;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	z-index: 99999;
	right: -20px;
}


.trending_maps .single_map a{
	text-decoration: none;
}
.trending_maps .single_map .image_wrap{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.trending_maps .single_map .image_wrap img{
	width: 100%;
	height: 220px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}
.trending_maps .single_map .image_wrap:hover img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
.trending_maps .single_map .image_wrap h5{
	color: #121212;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0px;
	background: rgba(255,255,255, 0.75);
	padding: 5px 15px;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	text-align: center;
	border-radius: 0px 0px 5px 5px;
}
/* ===== CSS For "Trending Maps" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "What Looking" Starts Here ===== */
.what_looking{
	background: var(--grayColor);
}
.what_looking .topics{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 15px;	
}
.what_looking .topics .single_topic{
	
}
.what_looking .topics .single_topic a{
	text-decoration: none;
}
.what_looking .topics .single_topic .image_wrap{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.what_looking .topics .single_topic .image_wrap img{
	width: 100%;
	height: 180px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}
.what_looking .topics .single_topic .image_wrap:hover img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
.what_looking .topics .single_topic .image_wrap h5{
	color: #121212;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	background: rgba(255,255,255, 0.75);
	padding: 5px 15px;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	text-align: center;
	border-radius: 0px 0px 5px 5px;
}
/* ===== CSS For "What Looking" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Services" Starts Here ===== */
.services{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 30px;	
}
.services .single_service{
	border-radius: 5px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0, 0.25);
}
.services .single_service a{
	text-decoration: none;
}
.services .single_service .image{
	
}
.services .single_service .image img{
	width: 100%;
	height: 260px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px 5px 0px 0px;
}
.services .single_service .texts{
	min-height: 70px;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
	background: var(--grayColor);
	border-radius: 0px 0px 5px 5px;
}
.services .single_service .texts h5{
	color: var(--darkColor);
	font-family: va(--baseHeading);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	text-align: center;
	text-transform: capitalize;
	padding: 10px 15px;
}
/* ===== CSS For "Services" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */



/* ===== CSS For "Recent Trip" Starts Here ===== */
.recent_trip_wrap{
	background: url(images/world_map.png) no-repeat;
	background-position: center center;
	background-size: cover;
}
.recent_trip{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 20px;	
}
.recent_trip .single_trip{
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.075);
	border-radius: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.recent_trip .single_trip:hover{
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.recent_trip .single_trip a{
	text-decoration: none;
}
.recent_trip .single_trip .trip_image{
	
}
.recent_trip .single_trip .trip_image img{
	display: block;
	width: 100%;
	height: 180px;
	border-radius: 5px 5px 0px 0px;
	-o-object-fit: cover;
	object-fit: cover;
}
.recent_trip .single_trip .trip_title{
	padding: 15px 10px;
	background: var(--lightColor);
	border-radius: 0px 0px 5px 5px;
}
.recent_trip .single_trip .trip_title h5{
	color: var(--darkColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "Recent Trip" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */



/* ===== CSS For "Subscribe Us" Starts Here ===== */
.subscribe_us{
	text-align: center;
	background: var(--baseColor);
	padding: 50px 0px;
}
.subscribe_us h2{
	color: var(--lightColor);
	font-family: var(--baseHeading);
	font-weight: 700;
	font-size: 36px;
	margin-bottom: 15px;
}
.subscribe_us p{
	color: var(--lightColor);
	font-family: var(--baseParagraph);
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 15px;
	text-transform: capitalize;
}
.subscribe_us .fields_wrap{
	max-width: 680px;
	margin: 0px auto;
	position: relative;
}
.subscribe_us .fields_wrap .form-control{
	color: var(--darkColor);
	border: none;
	background: var(--grayColor);
	font-family: var(--baseParagraph);
	font-weight: 500;
	font-size: 16px;
	height: inherit;
	padding: 13px 15px;
	padding-right: 150px;
	border-radius: 3.5px;
}
.subscribe_us .fields_wrap button{
	color: var(--lightColor);
	background: var(--baseColor);
	font-family: var(--baseParagraph);
	font-weight: 600;
	font-size: 20px;
	position: absolute;
	right: 2.5px;
	top: 3px;
}
/* ===== CSS For "Subscribe Us" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */



/* ===== CSS For "Latest Blog" Starts Here ===== */
.blogs_wrap{
	background: var(--grayColor);
}
.blogs{
	max-width: 960px;
	margin: 0px auto;
}
.blogs .single_blog{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 350px 25px 1fr;
    grid-template-columns: 350px 1fr;
    grid-auto-rows: auto;
    gap: 25px;
	margin-bottom: 25px;
	background: var(--lightColor);
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.10);
}
.blogs .single_blog:last-child{
	margin-bottom: 0px;
}

.blogs .single_blog .blog_image{
	
}
.blogs .single_blog .blog_image img{
	width: 100%;
	border-radius: 5px;
}
.blogs .single_blog .blog_texts{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;	
}
.blogs .single_blog .blog_texts h3{
	margin-bottom: 10px;
}
.blogs .single_blog .blog_texts h3 a{
	color: var(--darkColor);
	text-decoration: none;
	font-family: var(--baseHeading);
	font-weight: 600;
	font-size: 24px;
	display: block;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.blogs .single_blog .blog_texts h3 a:hover{
	color: var(--baseColor);
}
.blogs .single_blog .blog_texts p{
	color: var(--darkColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 15px;
}
.blogs .single_blog .blog_texts .read_more_link a{
	text-decoration: none;
	color: var(--baseColor);
	font-family: var(--baseHeading);
	font-weight: 500;
	font-size: 16px;
	padding: 7.5px 25px;
	display: inline-block;
	border: 1px solid var(--baseColor);
	border-radius: 5px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.blogs .single_blog .blog_texts .read_more_link a i{
	font-size: 14px;
}
.blogs .single_blog .blog_texts .read_more_link a:hover{
	color: var(--lightColor);
	background: var(--baseColor);
}
/* ===== CSS For "Latest Blog" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */



/* ===== CSS For "Footer" Starts Here ===== */
.footer_wrap{
	background: var(--secondaryColor);
	padding: 7.5px 0px;
}
.footer{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 15px;
}
.footer .copyright{
	
}
.footer .copyright p{
	color: var(--lightColor);
	font-family: var(--baseParagraph);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}

.footer .social_info ul{
	margin-bottom: 0px;
	text-align: right;
}
.footer .social_info ul li{
	list-style: none;
	display: inline-block;
	margin-left: 15px;
}
.footer .social_info ul li:first-child{
	margin-left: 0px;
}
.footer .social_info ul li a{
	display: block;
}
.footer .social_info ul li i{
	color: var(--lightColor);
	background: var(--baseColor);
	font-size: 18px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.footer .social_info ul li:nth-child(1) i:hover{
	background: #3b5999;
}
.footer .social_info ul li:nth-child(2) i:hover{
	background: #55acee;
}
.footer .social_info ul li:nth-child(3) i:hover{
	background: #e4405f;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ============================== */
.scrolltotop{
	color: #FFFFFF;
	background: var(--baseColor);
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	cursor:pointer;
	border-radius: 2.5px;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	transition:all 0.2s linear;
	position:fixed;
	bottom: 51px;
	right: 3%;
	z-index:99999999;	
}
.scrolltotop:hover{
	-webkit-box-shadow:0px 0px 10px var(--baseColor);
	-moz-box-shadow:0px 0px 10px var(--baseColor);
	box-shadow:0px 0px 10px var(--baseColor);
}
.scrolltotop img{
	width: 24px;
}
/* ============================== */


/* ============================== */
/* ============================== */
/* ============================== */


.my_travel_plans_container h2{
    font-size:14px;
}