/*Landing Page*/
body{
	margin: 0;
	padding:0;
}
h2{
	text-align: center;
	color: #fff;
	margin: 0;
}
h1{
	display: block;
	border-bottom: 3 solid #6ab04c;
	margin: 0;
	padding-top: 10px;
}
.border{
	width: 160px;
	height: 5px;
	background: #6ab04c;
	margin: 5px auto;
}
.drug{
	color: #fff;
}
#landing-page{
	position: relative;
	opacity: 80%;
	background-image: url('../img/decor.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;

}

.title-background{
	border:2px solid #fff;
	width: fit-content; 
	margin: auto;
	padding: 8px;

	border-radius: 10px;
}

.logo{
	 
	position: absolute;
	max-width:80%;
	height: auto;
	top:42%;
	left: 50%;
	transform: translate(-50%,-50%);
	
}

.title{
	text-orientation: center;
	color: #fff;
	font-size: 3em;

}
.downTitle p{

	position: absolute;
	text-align: center;
	text-shadow: #000 3px 2px 2px;
	color:#6ab04c;
	top:75%;
	left: 50%;
	transform: translate(-50%,-30%);
	font-size:4em;
}
.box-titles{
	background-color: brown;
}
/* nav slider*/
.nav-slider{
	padding: 15px;
	cursor:pointer;
}
.line{
    height: 3px;
	background: #eee;
	margin: 5px;
	width: 30px;
}
.line:nth-child{
	margin-top: 0px;

}
/*nav slider section*/
.nav-slider-section{
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: translateX(-100%);
}

.close-nav-slider{
	border:none;
	outline: none;
	float: right;
	background: transparent;
	color: #F1C40F;
	font-size: 1.5em;
	padding: 15px;
	cursor: pointer;
}

.nav-links-conteiner{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.nav-links-conteiner li{
	text-align: center;
	padding: 10px;
	text-decoration: none;

}
a{
	
	color: #eee; 
	font-size: 1.5em;
}
.openNav{
	animation: openNav 0.5s forwards;
}
.closeNav{
    animation: closeNav 0.5s forwards;
}
@keyframes openNav{
	100%{
		transform: translateX(0%);
	}
}
@keyframes closeNav{
	0%{
		transform: translateX(0%);
	}

100%{
	transform: translateX(-100%);

   }
}
/*Menu*/
#menu{
	background: #110c00;
}
.menu-title{
	color: #D0D3D4;
	text-align: center;
	padding: 25px;
	font-size: 2em;
}
p{
	font-size: 1.1em;
	color: #eee;
	margin: 0;
}
.menu-price{
	float: right;
}
.stars{
	color: #6ab04c;
	margin-bottom: 20px;
}

.testemonials{
	
	text-align: center;
	background: #f1f1f1;
	color: #434343;
	text-align: center; 
}



.row{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px;
}
.col-4{
    float: left;
	
	max-width: 25%;
	box-sizing: border-box;
	padding:15px; 
}

.row::after{
	content: "";
	clear: both;
	display: block;
}
.testemonial{
	background: #fff;
    padding:30px;
}
.testemonial img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.name{
	font-size: 20px;
	text-transform: uppercase;
	margin: 20px 0;
}
.stars{
	color: #6ab04c;
	margin-bottom: 20px;
}
.col-3{
	max-width: 33.33%;
	float: left;
	display: inline;
	
	
	/*box-sizing: border-box;*/
	padding:15px;
}





#caffee-info section{
	background: #110c00;
    width: 100%;
    box-sizing: border-box;

	
}
.coffee-info-title{
	color: #D3CAC8;
	text-align: center;
}
/*.info-container{
	display: grid;
	grid-template-columns:1fr;*/
}
.address-content, .business-hours, .contact-content {
    padding: 20px;
}
.contact-content{
	padding-bottom: 43px;
}
.address,.hours{
	font-size: 1.1em !important;
	text-align: center;
	padding-bottom: 2px;
}
.phone{
	font-size: 1em !important;
	text-align: center;
	margin-bottom: 0;
}
.downLine{
	display: absolute;
	max-width: 100%;
	height: 20px;
	background-color: pink;
}


@media screen and (max-width: 768px){
	.col-4{
        display: block;
		margin: 0 auto;
		max-width: 100%;
	}
	.col-3{
		display: block;
		margin: 0 auto;
		max-width: 100%;
	}
		
		

	
	.address-content, .business-hours{
		border-right: 1px solid #eee;
		padding: 30px;
	}
	.contact-content{
		padding: 30px;
	}
	.logo img{
		display: block;
		margin: 0 auto;
		max-width: 70%;
	}
	.downTitle p{
		font-size: 2em;
	}
}
