*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

header {
	height: 70px;
	background: #222;
	position: fixed;
	width: 100%;
	z-index: 99;
}

a {
	text-decoration: none;
}
  
nav {
	font-family: monospace;
	display: inline;
	float: right;
	margin-top: 10px;
	margin-right: 10px;
}
  
ul {
	background: #05AA6E;
	list-style: none;
	margin: 0;
	padding-left: 0;
	display: inline;
}
  
li {
	color: #fff;
	background: #05AA6E;
	display: block;
	float: left;
	padding: 1rem;
	position: relative;
	text-decoration: none;
	transition-duration: 0.5s;
}
	
li a {
	color: #fff;
}
  
li:hover,
li:focus-within {
	background: black;
	cursor: pointer;
}
  
li:focus-within a {
	outline: none;
}
  
ul li ul {
	background: orange;
	visibility: hidden;
	opacity: 0;
	min-width: 5rem;
	position: absolute;
	transition: all 0.5s ease;
	margin-top: 1rem;
	right: 0;
	display: none;
}
  
ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
	 visibility: visible;
	 opacity: 1;
	 display: block;
}
  
ul li ul li {
	clear: both;
	width: 100%;
}
    
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}

.meuItem{
	width: 220px;
}

.logo {
	flex: 1;
	font-size: 22px;
}

.banner {
	/* for positioning */
	width: 100%;
	height: 340px;
	position: fixed;
	top: 70px;
	/* background: linear-gradient(45deg, #05AA6E, #DCDCDC); */
	background-image: url("../img/back.jpg");
}

.banner-title {
	font-size: 32px;
	margin-bottom: 10px;
	text-align: center;
	display: inline;
}

.banner-desc {
	font-size: 22px;
	text-align: center;
    color: white;
}

.banner-title-cont{
	display: block;
	text-align: center;
	margin-left: auto;
    margin-right: auto;
	width: 200px;
}

.card-container{
	/* for content alignment */
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
    flex-wrap: wrap;
}

.btn-signup {
	color: white;
	background-color: #0056ab;
	border: 0;
	padding: 15px 25px;
	font-size: 16px;
	cursor: pointer;
}

.article {
	width: 100%;
	position: relative;
	top: 410px; 
	background: white;
	height: 100%; 
	padding: 30px 10%;
}

.article p {
	margin-bottom: 20px;
}

.card {
    /* Add shadows to create the "card" effect */
/*     box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */ 
	width: 320px;
	margin-bottom: 20px;
}
  
  /* On mouse-over, add a deeper shadow */
.card:hover {
    /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); */
}
  
  /* Add some padding inside the card container */
.container {
    /* padding: 2px 16px; */
	background-color: black;
}

.centerImg{
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    display: block;
}

.cardImg{
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.imgLogo{
	margin-left: 10px;
	margin-top: 5px;
}

@media only screen and (max-width: 976px) and (min-width: 657px)  {
	.banner {
		height: 620px;
	}
	.article {
		top: 690px;
	}
}

@media (max-width: 656px) {
	.banner {
	  height: 900px;
	}
	.article {
	  top: 970px;
	}
}