@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

.main-site{
	margin: 0;
	min-height: 100vh;
	width: 100%;
	background-color: #1e1d19;
	display: flex;
	flex-direction: column;	
}
.logo-section{
	max-width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	
}
.logo-section img {
	padding-top: 50px;
	padding-bottom: 20px;
	max-width: 250px;
}
.logo-section h1 {
	color: #fff;
	font-family: Montserrat;
	font-weight: 700;
	padding: 0 10% 0 10%;
}
.logo-section h2 {

	color: #fff;
	font-family: Montserrat;
	font-weight: 500;
	margin-bottom: 50px;
	padding: 0 10% 0 10%;
}

}
.ue-section{
	max-width: 90%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding-top: 13px;
}
.ue-section p {
	
	color: #fff;
	font-family: Montserrat;
	font-weight: 300;
	margin-bottom: 5px;
	padding: 50px 10% 0 10%;
	
}

.links {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.card{
	width: 50%;
	height: 20vw;
	background-color: #888888;
	display: flex;
	justify-content: center;
	align-items: center;
	filter: brightness(80%);
	transition: filter 0.4s ease-out ;
}


.wrapper{
	position: relative;
	width: 50%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wrapper:hover .card{
	filter: brightness(100%)
}
.wrapper img{
	position: absolute;
	z-index: 1;
	max-height: 130px;
}
.card{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	max-width: 100%;
	min-height: 300px;
}

.rondo{
	background-image: url(images/rondo.jpg);
	border-bottom:solid #888888 0.2px;
	border-right:solid #888888 0.2px;	
}
.zdrojowa{
	background-image: url(images/zdrojowa.jpg);
	margin-top: auto;
	border-bottom:solid #888888 0.2px;
	border-left:solid #888888 0.2px;
	
}
.ristorante{
	background-image: url(images/ristorante.jpg);
	border-top: solid #888888 0.2px;
	border-right:solid #888888 0.2px;
}
.spa{
	background-position: top center;
	background-image: url(images/spa.jpg);
	border-top:solid #888888 0.2px;
	border-left:solid #888888 0.2px;
}

@media (max-width: 1199px){
	.logo-section h1 {
		font-size: 26px;
	}
	.logo-section h2 {
		font-size: 21px;
	}
	.wrapper img{
		max-height: 110px;
		min-height: 80px;
	}
}
@media (max-width: 991px){
	.logo-section img{
		max-width: 200px;
	}
	.wrapper img{
		max-height: 110px;
		min-height: 60px
	}
}

@media (max-width: 767px){
	.logo-section img{
		max-width: 200px;
	}
	.logo-section h1 {
		font-size: 21px;
	}
	.logo-section h2 {
		font-size: 18px;
	}
	.wrapper{
		width: 100%;
	}
	.wrapper img{
		max-width: 80%;
		max-height: 130px;
		min-height: 60px
	}
	.rondo{
		border-bottom:solid #888888 0.2px;
		border-right:unset;
	}
	.zdrojowa{
		border-bottom:solid #888888 0.2px;
		border-top:solid #888888 0.2px;
		border-left:unset;
	}
	.ristorante{

		border-top:solid #888888 0.2px;
		border-bottom:solid #888888 0.2px;
		border-right:unset;
	}
	.spa{
		border-top:solid #888888 0.2px;
		border-top:unset;
		border-left:unset;
	}

}

@media (min-width: 575px) {
	.logo-section h1 {
		font-size: 18px;
		margin-bottom: 8px;
	}
	.logo-section h2 {
		font-size: 16px;
	}
	.card{
		min-height: 250px;
	}
	.wrapper img{
		max-width: 80%;
		max-height: 110px;
		min-height: 80px
	}

}

