body{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(246, 246, 246, 0.7),rgba(246, 246, 246, 0.7)), url(https://lh4.googleusercontent.com/68NSB_iqMcvo6owP46eROxZALhbVXaaX-WcVrTLGvJjzH5TALeM81BxqerfPsg2YeEA=w2400);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0;
	padding: 0;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 200px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #000000;
	text-decoration: none;
	font-size: 25px;
    font-style: Georgia;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #000000;
	display: block;
	margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.container{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
}
.swiper {
  width: 80%;
  height: fit-content;
}
.swiper-slide img{
	width: 100%;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev{
	color:rgb(0, 0, 0);
}
.swiper .swiper-pagination-bullet-active{
	background: #000000;
}
@keyframes transitionIn {
	from {
		opacity: 0;
	}

	to{
		opacity: 1;
	}
}
.container {
	animation: transitionIn 0.75s;
}