*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-family: "Ubuntu",sans-serif;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}




a {
	text-decoration: none;
}

li {
	list-style-type: none;
}






#home {
	background: #17191C;
}



#home .banner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 0 100px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#home .banner .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#home .content {
	position: relative;
	margin-left: -70px;
	z-index: 1;
	max-width: 450px;
	margin-right: auto;
}

#home .name {
	max-width: 450px;
}

#home .infos {
	color: #D0D0D0;
}

#home .infos a {
	padding: 1px 3px;
	border-radius: 3px;
	color: #D0D0D0;
}






#galerie{
	background: #17191C;
	padding: 60px;
}

#galerie h3 {
	font-weight: 1000;
	color: #fff;
	font-size: 40px;
	text-align: center;
}

hr.miniline {
	width: 50px;
	height: 3px;
	background: #494949;
	border: 0;
	margin: 0px auto 40px auto;
}

#galerie h4 {
	font-weight: 1000;
	color: #fff;
	font-size: 25px;
	text-align: center;
}

hr.miniline-2 {
	width: 40px;
	height: 3px;
	background: #494949;
	border: 0;
	margin: 0px auto 40px auto;
}

.galerie-section .galerie{
	display: flex;
	flex-wrap: wrap-reverse;
 	justify-content: center;
	padding-bottom: 50px;
}

.galerie-section .image{
	flex: 25%;
  	overflow: hidden;
 	cursor: pointer;
	border-radius: 15px;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

.galerie-section .image img{
	padding: 10px;
	width: 100%;
  	height: 100%;
	transition: 0.4s;
	border-radius: 25px;
}



.galerie-section .image img:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}




@media screen and (max-width:960px) {
  .galerie-section .image{
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .galerie-section .image{
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
	.galerie-section .image{
		flex: 100%;
	}
}





@media screen and (max-width: 500px){
	#home .name {
		max-width: 300px;
	}
}

@media all and (max-width: 99999999px) {
  .card-list {
    flex-direction: column;
  }
}