/* GENERAL */

* {
	outline: none;
}

.wrap {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

.off-canvas {
	background-color: #222;
}

/* NAV - MOBILE*/
.title-bar {
	background-color: #222;
	height: 60px;
	padding-top: 17px;
}

h3 {
	font-size: 35px;
}

#mobile-menu {
	background-color: #222;
	padding: 10px;
}

#mobile-menu li {
	list-style-type: none;
}

#mobile-menu a {
	color: rgba(255, 255, 255, 0.6);
	font-weight: bold;
	line-height: 2;
}

#mobile-menu a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.js-off-canvas-exit {
	background: rgba(255, 255, 255, 0.7);
}

.close-button {
	color: #fff;
}

/* NAV - DESKTOP*/
.nav-desktop {
	background-color: #222;
	height: 80px;
}

.button {
	margin: 5px;
}

.site-logo {
	color: #fff;
	line-height: 80px;
}

.nav-desktop .menu-desktop {
	line-height: 80px;
	background-color: transparent;
}

.nav-desktop a {
	display: inline-block;
	line-height: 80px;
	padding-top: 0;
	padding-bottom: 0;
	color: white;
	font-size: 20px;
}

.nav-desktop a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* HERO */
.hero {
	background-color: #999;
	padding: 80px 0px;
	background-image: url("../img/double-bubble-dark.png");
	color: #fff;
}

.hero p {
	max-width: 70%;
}

h2 {
	font-weight: bold;
}


/* MAIN */
.main {
	padding: 80px 0px;
}

p {
	font-size: 20px;
}


/* FOOTER */
footer {
	background-color: #222;
	padding: 80px 0px;;
}

footer h4 {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.3em;
}

footer a {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	font-size: 20px;
	margin: 3px;
}

footer a:hover {
	color: rgba(255, 255, 255, 0.8);
}

footer hr {
	border-color: rgba(255, 255, 255, 0.1);
}

footer a span {
	font-weight: bold;
	color: rgba(255, 255, 255, 0.3);
}

footer p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.3em;
}

#bottom {
	float: right;
}
.fa {
	text-align: center; 
	font-size: 30px; 
	text-decoration: none;
	margin: 15px;
	padding: 15px;
}

.fa-facebook {
	border: 1px; 
	border-radius: 15px;
	background: #3B5998;
	color: white;
}

.fa-instagram { 
	border: 1px; 
	border-radius: 15px;
	background-color: #bc2a8d;
	color: white;
}

.fa-twitter {
	border: 1px; 
	border-radius: 15px;
	background-color: #1da1f2;
	color: white;
}

.fa-pinterest {
	border: 1px; 
	border-radius: 15px;
	background-color: #E60023;
	color: white;
}

.fa:hover { 
	font-size: 30px; 
	text-decoration: none;
	transition: 1.0s;
}
.fa-facebook:hover {
	border: 1px; 
	border-radius: 15px;
	background: white;
	color: #3B5998;
}
.fa-instagram:hover { 
	border: 1px; 
	border-radius: 15px;
	background-color: white;
	color: #bc2a8d;
}
.fa-twitter:hover {
	border: 1px; 
	border-radius: 15px;
	background-color: white;
	color: #1da1f2;
}
.fa-pinterest:hover {
	border: 1px; 
	border-radius: 15px;
	background-color: white;
	color: #E60023;
}

/* MEDIA QUERY */
@media (max-width: 639px) {
	
	.nav-desktop {
		display: none;
	}
}

@media (max-width: 875px) {
	.hero h1, .hero p {
		width: 100%;
	}
}