/* Global styles */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	outline: 0;
}

.active a{
    color: #fff;
}


body {
	font-size: 62.5%;
	background-color: #fcf7f7;
}

h3 {
	color: #fff;
}


img {
	max-width: 100%;
}


/* Nav styles */


.navbar {
	position: fixed;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 60px;
	z-index: 60;
}

nav {
	background-color: #202124;
	box-shadow: 0 2px 4px rgba(0,0,0,.5);
	width: 100%;
}

nav ul, .mobile-nav {
	list-style: none;
}

nav li {
	float: left;
}

nav li:first-child {
	margin-left: 5em;
}

nav a, .mobile-nav a {
	color: #ccc;
	font-size: 1.8em;
	font-size: 2em;
	padding: 1em;
	transition: .3s ease-in-out;
	text-decoration: none;
}

nav a:hover {
	color: #fff;
	text-decoration: none;
	transition: .3s ease-in-out;
}

.mobile-nav {
	position: absolute;
	top: 0%;
	left: 0;
	width: 100%;
	background-color: #202124;
	overflow-x: hidden;
	z-index: 50;
	transition: .7s ease-in-out;
	transform: translateY(-100%);

}


.mobile-nav ul {
	margin: 12em 0;
	margin-left: 3em; 
}

.mobile-nav li {
	list-style: none;
	padding: 1.5em;
}

.nav-toggle {
	display: none;
	position: absolute;
	top: 3%;
	left: 5%;
	width: 70px;
	height: 70px;
	cursor: pointer;
	background: #3A8477;
	border-radius: 500px;
	box-shadow: 0 2px 4px rgba(0,0,0,.5);
	z-index: 90000;

}

.hamburger {
	width: 35px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: .5s;
}

.hamburger:before,
.hamburger:after {
	content: '';
	position: absolute;
	width: 35px;
	height: 3px;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: .5s;
}

.hamburger:before {
	top: -10px;	
}

.hamburger:after {
	top: 10px;
}

.nav-toggle.nav-open .hamburger {
	background: rgba(0, 0, 0, 0);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0);

}

.nav-toggle.nav-open .hamburger:before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle.nav-open .hamburger:after {
	top: 0;
	transform: rotate(135deg);
}

.open {
	transform: translateX(0%);
	overflow: hidden;
}

/* Section styles */

.features {
	padding: 5em;
	background-color: #f4f6ff;
	box-shadow: 0px -13px 34px;
}

.icon-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	list-style: none;
}

.icon-list li {
	padding: 2em;
}

.icon-description {
	margin: 1.2em 0;
	font-size: 2.2em;
	font-weight: bold;
}

.prices-and-availability, .find-us {
	padding: 4em;
}

.find-us .icon-description {
	font-size: 2.2em;

}









.teal {
	color: #3A8477;

}

.hero {
	width: 100%;
	height: 678px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-size: cover;
}

.logo {
	display: block;
	margin-left: 5em;
	width: 500px;
}

#home {
	background-image: url(../img/header.jpg);
}

article {
	padding: 5em;
}

article p {
	line-height: 1.75;
}

.filter-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.filter-menu {
	display: flex;
	padding-bottom: 3em;
}

.filter-menu li {
	font-size: 2.3em;
	color: #ccc;
	display: block;
	padding: 0 1.5em; 
	list-style: none;
	cursor: pointer;
	transition: all .5s;
}

.filter-menu li:hover {
	color: #3A8477;
}

.portfolio-content {
	display: flex;
	justify-content: center;
	align-items: center;
}

.portfolio-item img {
	transition: all .5s;
	padding: .5em;
	border-radius: 10px;
}

.portfolio-item img:hover {
	cursor: pointer;
	transition: all .5s;
	opacity: 0.7; 
}

.portfolio {
	background-color: #182c39;
	padding: 10em 0;
	
}



.section-overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
}

.subcontent-container {
	padding: 3em;
	background-color: #f4f6ff;
    box-shadow: 0px -13px 34px;
}


.slider-container img {
	display: block;
	margin: 0 auto;
}

.section-heading {
	margin: 1.5em 0;
}

article, .find-us {
	margin-bottom: 10em;
}

p {
	font-size: 1.8em;
	text-align: justify;
}



i {
	font-size: 6em;
	color: #fff;
	display: block;
}

.pricing-table {
	padding: 10em 5em;
}

.item-heading {
	font-size: 3.5em;
	color: #fff;
}


.table-item {
	padding: 2em;
	background-color: #3A8477;
	border-radius: 5px;
}

.table-item p {
	padding: .5em;
	text-align: center;
	font-size: 1.8em;
	color: #fff;
}

.item-price h3 {
	padding: .5em;
	font-size: 4em;
}

.item-description {
	text-align: center;
	border-bottom: 1px solid #fff;
}

.book-now-button  {
	padding: .5em;
	font-size: 3em;
	background-color: #2f6b61;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
	text-decoration: none;
	transition: all .5s;
}

.book-now-button:hover {
	text-decoration: none;
	background-color: #3A8477;
	color: #fff;
	border: 2px solid #fff;
}



.card {
	background: none;
	border: 0;
}

.pricing-card {
	margin: 5% 0;
	background: #018786; 
}

.pricing-card p, .pricing-card h5 {
	color: #fff;
}

.heading {
	margin: 5% 0;
}

 iframe {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 450px;
	border: 0;
}

.google-map {
	width: 100%;
}

section .footer {
	margin: 0;
	padding: 0;
}

footer {
	width: 100%;
	background-color: #182c39;
	color: #ccc;
	padding: 5em;
	text-align: center;
}

footer .card-text {
	font-size: 1.6em;
}



footer li {
	list-style: none;
	margin-bottom: .5em;
}

footer a {
	color: #ccc;
	transition: .3s;
}

footer a:hover {
	color: #fff;
	text-decoration: none;
}

.copyright-text {
	position: absolute;
	color: #ccc;
	background-color: #10222e;
}

@media screen and (max-width: 700px) {

	nav li {
		display: none;
	}

	.navbar {
		position: static;
		top: 0;
		left: 0;
		height: 60px;
	}
	.nav-toggle {
		display: block;
	}

	.icon-list li {
	padding: 1em;
}

	.icon-description {
	font-size: 1.4em;
	text-align: center;
}

.find-us .card {
	margin: 1.2em 0;
}

	.logo {
		width: 310px;
	}

	.accommodation-partners-slide {
		display: none;
	}

	article, .portfolio, .pricing-table {
		padding: 0;
	}

	.table-item {
		margin-bottom: 1em;
	}



	.section-overlay {
		justify-content: center;
	}

	.logo {
		margin: 0 5em;
	}

	p {
		text-align: left;
	}

	i {
	font-size: 4em;
}

.find-us i {
	font-size: 6em;
}



}



	