*{
	margin: 0;
	padding: 0;
	font-family: 'Josefin Sans', sans-serif;
}

.header{
	height: 80vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(pics/bg.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}

nav{
	display: flex;
	padding: 1% 4%;
	justify-content: space-between ;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

nav img{
	padding-top: 7px;
	width: 125px;
}

.links{
	flex: 1;
	text-align: right;
}

.links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.links ul li a{
	color: #2b4355;
	text-decoration: none;
	font-size: 13px;
}
.links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #f44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.links ul li:hover::after{
	width: 100%;
}

.text{
	width: 90%;
	color: white;
	position: absolute;
	left: 5%;
	top: 50%;
	text-align: center;
}
.text h1{
	font-size: 62px;
}
.text p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: white;
}
.text img{
	align-self: center;
	width: 25%
}

.visitus{
	display: inline-block;
	text-decoration: none;
	color: white;
	border: 1px solid #99a5b1;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.visitus:hover{
	border: 1px solid #99a5b1;
	background: #99a5b1;
	transition: 1s;
}

nav .close
{
	display: none;
}
.close img
{
	width: 15px;
	align-items: center;
	margin: 10px;
	cursor: pointer;
}

@media(max-width: 700px)
{
	.text h1
	{
		font-size: 5px;
	}
	.text img
	{
		align-self: center;
		width: 55%;
	}
	.links ul li
	{
		display: block;

	}
	.links
	{
		position: fixed;
		background: #d2d4d7;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .close
	{
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.links ul
	{
		padding: 30px;
	}
	nav img
	{
		size: 10px;
	}
	.row
	{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
	}
	.aboutpara img
	{
	height: 100px;
	}
}


/*--DESTINATIONS--*/
.DESTINATIONS{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

h1{
	font-size: 36px;
	font-weight: 600;
}

p{
	color: #2b4355;
	font-size: 17px;
	font-weight: 350;
	line-height: 22px;
	padding: 10px;
}

.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

.para{
	flex-basis: 30%;
	background: whitesmoke;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}

h3{
	text-align: center ;
	font-weight: 600;
	margin: 10px 0;
}

.para:hover{
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@media(max-width: 700px)
{
	.row{
		flex-direction: column;
	}
}

.blog{
	
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}


.para{
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 30px;
	margin: 5px;
	position: relative;
	overflow: hidden;
}
.para img{
	width: 100%;
	display: block;
}

.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}

.layer:hover{
	background: rgba(0,0,0,0.7);
}
.layer h3{
	width: 100%;
	font-weight: 500;
	color: white;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
}

.layer:hover h3{
	bottom: 49%;
	opacity: 1;
}

.discover{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.discoverpara{
	flex-basis: 40%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: center;
}
.discoverpara img{
	width: 50%;
	border-radius: 10px;
}

.discoverpara p{
	padding: 0;
}

.discoverpara h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: center;
}

.trend{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.booknow{
	margin: 100px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url(pics/longlife.jpg) ;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.booknow h1{
	color: white;
	margin-bottom: 40px;
	padding: 0;
}

.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
}
.footer h4{
	margin-bottom: 25px;
	margin-top: 25px;
	font-weight: 600;
}

.icons img{
	width: 30px;
	height: 30px;
	align-items: center;
	margin: 5px;
	cursor: pointer;
}

/*--ABOUT PAGE--*/

.headerabout{
	height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)),url(pics/aboutbanner.jpg);
	background-position: center;
	background-size: cover ;
	text-align: center;
	color: white;
}
.headerabout h1{
	text-align: center;
	padding-top: 150px;
}

.about{
	width: 80%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;
}

.aboutpara{
	flex-basis: 48%;
	padding: 30px 2px;
}

.aboutpara img{
	height: 400px;
}

@media
.aboutpara h1{
	padding-top: 0;
}
.aboutpara p{
	padding: 15px 0 25px;
}

.clr{
	border: 1px solid cadetblue;
	background: transparent;
	color: cadetblue;
}
.clr:hover{
	color: white;
}

.travelblog{

	width: 80%;
	margin: auto;
	padding: 60px 0;
}


.blogpost{
	flex-basis: 65%;
}
.blogpost img{
	width: 100%;
}
.blogpost h2{
	color: black;
	font-weight: 600;
	margin: 30px 0;
}
.blogpost p{
	color: #999;
	padding: 0;
}

.destinationsblog{
	flex-basis: 32%;
}
.destinationsblog h3{
	background: cadetblue;
	color: white;
	padding: 7px 0;
	font-size: 16px;
	margin-bottom: 20px;
}
.destinationsblog div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: grey;
	padding: 8px;
	box-sizing: border-box;
}

.comment{
	border-radius: 1px solid #ccc;
	margin: 50px 0;
	padding: 10px 20px;
}
.comment h3{
	text-align: left;
}

.commentbox input, .commentbox textarea{
	width: 100%;
	padding: 10px;
	margin: 15px 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	background: whitesmoke;
}

.login{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.signup{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}


.signup_para{
	width: 500px;
	height: 410px;
	background-color: white;
	border-radius: 4px;
	text-align: center;
	padding: 20px;
	position: relative;
}

.carousel-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: carouselAnimation 20s infinite linear;
}

.carousel-track img {
  width: 100%;
  height: 200px;
  margin-right: 10px;
}

@keyframes carouselAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.location
{
	width: 80%;
	margin: auto;
	padding: 80px 0;
}
.location iframe
{
	width: 100%;
}
.contact
{
	width: 80%;
	margin: auto;
}
.contactcol
{
	flex-basis: 48%;
	margin-bottom: 30px;
}
.contactcol div
{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.contactcol div p
{
	padding: 0;
}
.contactcol div h5
{
	font-size: 20px;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}
.contactcol input, .contactcol textarea
{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
}
