@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1.	Fonts
2.	Body and some general stuff
3.	Header
	3.1 Logos
4.	Hero section (Slider)
5.	Top Destination SECTION (SLIDER-CAROUSEL)
6.	CTA
7. Footer
	7.1 Footer - About
	7.2 Footer - contact Info
8. Copyright


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
@font-face
{
	font-family: 'Beyond';
	src: url('../fonts/beyond_the_mountains.otf')  format('truetype'),
		 url('../fonts/beyond_the_mountains.ttf')  format('opentype');
}

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
	color: #929191;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}

h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
.form-control
{
	color: #db5246;
}

.form-text 
{
	border-bottom: thick solid black;
}
.form-text:focus 
{
	border-bottom: thin solid lightgray;
}

.nav-tabs
{
	border-bottom: none !important;
}
.tab-content
{
	border-radius: 0px 20px 20px 20px;
}

#nav-profile-tab
{
	border-radius: 20px 0px 0px 0px;
}

#nav-home-tab
{
	border-radius: 0px 20px 0px 0px;
}

.nav-tabs .nav-link.active
{
	background-color: white !important;
	color: #dc3545 !important;

}

.nav-tabs .nav-link
{
	background-color: #dc3545 !important;
	color: white;
}

.card-curves
{
	border-radius: 20px;
}

.card-img 
{
	border-radius: 20px 20px 0 0;
	height: 200px;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.button
{
	display: inline-block;
	height: 53px;
	border-radius: 27px;
	overflow: hidden;
}
.button_bcg
{
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	background: white;
	z-index: -1;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.button:hover .button_bcg
{
	left: -100%;
}
.button a
{
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #c30000;
	text-transform: uppercase;
	line-height: 53px;
	padding-left: 46px;
	padding-right: 46px;
	white-space: nowrap;
	z-index: 2;
}
.button span
{
	display: inline-block;
	vertical-align: middle;
	width: 5.75px;
	height: 5.63px;
	background: #c30000;
	border-radius: 50%;
	margin-right: 2px;
}
.button span:first-child
{
	margin-left: 10px;
}
.button span:nth-child(2)
{
	opacity: 0.6;
}
.button span:last-child
{
	opacity: 0.4;
	margin-right: 0px;
}

.text-title
{
	font-weight: 500;
	color: #2d2c2c;
	margin-top: -14px;
}
.card
{
	border: none;
}
.card-width
{
	width: 18rem;
}





/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	width: 100%;
	z-index: 12;
}
.nav-bar
{
	height: 60px;
}

/*********************************
3.1 Logo
*********************************/
.logo a img
{
	width: 90px;
	display: inline-block;
	vertical-align: baseline;
	margin-right: 9px;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}




/*********************************
4 Hero section (Slider)
*********************************/

#slide-1
{
	background-image: url('../images/pexels-cats-coming-707581.jpg');
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	width: 100%;
}

#slide-2
{
	background-image: url('../images/pexels-jean-van-der-meulen-1457842.jpg');
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	width: 100%;
}

#slide-3
{
	background-image: url('../images/pexels-engin-akyurt-2725675.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
}

.slide
{
	height: 680px;
}

.slide-content
{
	padding: 200px 200px;
	background: rgba(0, 0, 0, 0.2);
	height: 100%;
	color:white;
}
.toggle-section
{
	margin-top: -250px;
}





/* /* ********************************
5.	Top Destination SECTION (SLIDER-CAROUSEL)
******************************** */

#news-slider{
	margin-top: 30px;
}
.post-slide{
	background: #fff;
	margin: 20px 15px 20px;
	border-radius: 27px;
	padding-top: 1px;
}
.post-slide .post-img{
	position: relative;
	overflow: hidden;
	border-radius: 27px;
	margin: -12px 15px 8px 15px;
	margin-left: -10px;
}
.post-slide .post-img img{
	width: 100%;
	height: auto;
	transform: scale(1,1);
	transition:transform 0.2s linear;
}
.post-slide:hover .post-img img{
	transform: scale(1.1,1.1);
}

.owl-controls .owl-buttons{
	text-align:center;
	margin-top:20px;
}
.owl-controls .owl-buttons .owl-next{
	background: #fff;
	position: absolute;
	top:-13%;
	right: 15px;
	padding: 0 15px 0 18px;
	border-radius: 50px;
	box-shadow: -3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
}
/* .owl-controls .owl-buttons .owl-prev:after, */
.owl-controls .owl-buttons .owl-next:after{
	content:"\f104";
	font-family: FontAwesome;
	color: #333;
	font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
	content:"\f105";
}
@media only screen and (max-width:1280px) {
	.post-slide .post-content{
		padding: 0px 15px 25px 15px;
	}
}

.cheapest-hotel
{
	background-color: #e0e8ff33;
}



/*********************************
6. CTA
*********************************/

.cta
{
	background-image:url(/images/pexels-cats-coming-707581.jpg);
	background-size: cover;
	background-position: center;
	border-radius: 20px !important;
}
.img-holder img
{
	width: 50%;
	margin-left: 100px;
	border-radius: 30px;
}
.cta-text
{
	font-weight: 800;
}
.cta-contained
{
	background-image:url(/images/cta.jpg);
	border-radius: 30px;
}
.cta-btn
{
	margin: -120px 400px 0px 0px;
}




/*********************************
7. Footer
*********************************/

.footer
{
	width: 100%;
	padding-top: 50px;
	padding-bottom: 20px;
	background: #212529!important;
	/* background: #330000; */
}
.footer-text-color a
{
	color: white;
}
.footer-width a img
{
	width: 150px;
}
.footer-logo
{
	padding-top: 67px;
}
.footer-list a:hover
{
	color: #fa9e1c;
}





/*********************************
8. Copyright
*********************************/

.copyright
{
	background: #05000a;
}
.copyright_content
{
	padding-top: 16px;
	text-align: center;
	height: 52px;
}
.copyright_content div
{
	font-size: 12px;
	font-weight: 600;
	color: #6f4444;
}