@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap');

html,body{
	height:100%;
	width:100%;
	font-family:"Lato",Helvetica, Arial, "sans-serif";
	font-size: 16px;
}

a{
	color:inherit;
	text-decoration: none;
}

*{
	box-sizing: border-box;
	margin:0;
	padding:0;
	font-family:"Lato",Helvetica, Arial, "sans-serif";
}

.banner{
	height:60%;
	width:100%;
	background-position:center;
	background-size: cover;
	background-color:#F1F1F1;
}


.banner_button{
	
	background-color:#00899F; color:white; border-radius:8px;border:2px double white;padding:6px;text-align:center;
	transition : 0.3s ease-in-out;
}

.banner_button:hover{
	background-color:#333;
	color:white;
}

.main_section{
	max-width:1000px;
	min-height:45%;
	/*border:1px solid #F1F1F1;*/
	margin:0 auto;
	padding:3em;
}

.title{
	font-size:2em;
	margin-bottom:1em;
}

.content{
	
	line-height:2em;
	font-size:1.1em;
}



.grid_container{
	
  width:90%;
  margin:auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px, 1fr));
  justify-content: space-between;
  grid-gap:20px;
 text-align: center;
}

.grid_container ul{
	list-style: none;
	padding:10px;
	line-height:16px;
	}
.grid_container li{
	margin-top:22px;
}

.grid_item{
	transition: 0.3s ease-in-out;
}

.grid_item:hover{
	 transform: scale(1.1);
}

.shortcut_container{
	padding:10px;
	margin:50px auto;
	max-width:1600px;
	display:grid;
	grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
	grid-column-gap:50px;
	grid-row-gap:20px;
	align-content: space-around;
	align-items:center;
}

.shortcut_item{
	box-shadow: 1px 1px 3px #D1D1D1;
	height:280px;
	position:relative;
	background-position: center;
	background-size:cover;
	overflow: hidden;
	cursor: pointer;
	z-index:1;
}

.item_screen{
	position:absolute;
	z-index:2;
	width:0%;
	transition: 0.3s ease-in-out;
	height:100%;
	background-color:rgba(255,255,255,0.75);
	display:flex;
	align-items: center;
	justify-content: space-around;
	opacity:0.0;
	font-size:24px;font-weight:600;
	text-align:center;
	
}

.shortcut_item:hover .item_screen{
	
	opacity:1.0;
	width:100%;
}



@media screen and (max-width:900px) and (min-width:801px){
	
	
	
	.shortcut_container{
	padding:10px;
	margin:20px auto;
	max-width:1200px;
	display:grid;
	grid-column-gap:20px;
	grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
	}
}

@media screen and (max-width:800px){
	.shortcut_container{
	padding:10px;
	margin:20px auto;
	max-width:1200px;
	display:grid;
	grid-column-gap:20px;
	grid-template-columns: repeat(auto-fit,minmax(500px,1fr));
	}
	
	.banner{
		height:550px;
	}
	
	.item_screen{
		height:40px;
		bottom:0px;
		width:100%;
		opacity:1.0;
	}
}


@media screen and (max-width:700px){
	
	
	.banner{
		height:450px;
	}
	
	.content{
		font-size:1.1em;
	}
	
	.main_section{
		padding:1.5em;
	}
	
	.title{
		font-size: 1.5em;
		text-align: center;
	}
	
	.shortcut_container{
	grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
	}	
	
}

@media screen and (max-width:400px){
	.shortcut_container{
		margin:10px auto;
	grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
	}	
	
	.item_screen{
		font-size:18px;
	}
	
	.shortcut_item{
		height:200px;
	}
}

@media screen and (max-width:300px){
	
	
	.banner{
		height:250px;
	}
	
}