@import url('https://fonts.googleapis.com/css2?family=Antic+Slab&family=Josefin+Slab:wght@300&display=swap');
*,
*::before,
*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root{
	--main-font: 'Antic Slab', serif;
	--secondary-font: 'Josefin Slab', cursive;
	--body-font: sans-serif;
	--main-font-color: #252525;
	--secondary-font-color: #c59d5f;
	--body-font-color: #515151;
}

html{
	font-family: var(--body-font);
	font-size: 10px;
	color: var(--body-font-color);
	scroll-behavior: smooth;
}

body{
	width: 100%;
	height: 100vh;
	background: url("img/background.png") center no-repeat;
	background-size: cover;
}

section{
	padding: 3.9rem 0;

}

img{
	width: 100%;
	max-width: 100%;
}

a{
	text-decoration: none;

}

p{
	font-size: 5.4rem;

}

.container{
	width: 100%;
	max-width: 122.5rem;
	margin: 0 auto;
	padding: 0 2.4rem;

}

/* HEADER*/

header{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-image: linear-gradient(to bottom, rgba(109,109,109), transparent);
}

.logo img{
	height: 60px;
	width: auto;
}

.logo {
	padding-top: 15px;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
	height: 80px;
}

.nav{
	height: 7.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle{
	color: #fff;
	font-size: 2.2rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2.5rem;
	cursor: pointer;
	z-index: 1500;

}

.fa-times{
	display: none;
}

.nav-list{
	list-style: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 80%;
	height: 100vh;
	background-color: var(--main-font-color);
	padding: 4.4rem;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	z-index: 1250;
	transform: translateX(-100%);
	transition: transform .5s;
}

.nav::before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,.8);
	z-index: 1000;
	opacity: 0;
	transform: scale(0);
	transition: opacity .5s;

}

.open .fa-times{
	display: block;

}

.open .fa-bars{
	display: none;
}


.open .nav-list{
	transform: translateX(0);

}

.open .nav::before{
	opacity: 1;
	transform: scale(1);
}

.nav-item{
	border-bottom: 2px solid rgba(255,255,255, .31);
}

.nav-link{
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.6rem;
	letter-spacing: 2px;
	margin-right: -2px;
	transition: color .5s;

}

.nav-link:hover{
	color: var(--secondary-font-color);
}


/*SLIDING IMAGES*/
.slide-container {
	position: relative;
	padding-top: 5rem;
}

.slide img{
	width: 100%;
	height: 450px;
}

.effects {
	animation-name: effect;
	animation-duration: 1s; 
}

@keyframes effect{
	from{
		opacity: 0.2;
	}
	to{
		opacity: 1;
	}
}

/*EDITIONS SECTIONS*/
.section-text{
	text-align: center;
	background-color: #000;
	padding-top: 30px;
}

.section-text h4{
	color: #fff;
	font-size: 26px;
	font-family: serif;
	letter-spacing: 3px;

}

.click{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}


.editions{
	margin: .5vw;
	font-size: 0;
	display: -ms-flexbox;
	-ms-flexbox-wrap: wrap;
	-ms-flexbox-direction: column;
	-webkit-flex-flow: row wrap;
	flex-flow: row-wrap;
	display: -webkit-box;
	display: flex;
	padding: 80px;
	background-color: #474747;

}

.editions div{
	-webkit-box-flex: auto;
	-ms-flex: auto;
	flex: auto;
	width: 200px;
	margin: .5vw;
}

.editions div img{
	width: 100%; 
	height: auto;
}



@media screen and (max-width: 400px){
	.editions div{
		margin: 0;

	}
	.editions{
		padding:0px;
	}
}

/*NEWS FEED SECTION*/

.content-wrapper{
	background-color: #000;
	flex-direction: column;

}


.profile-image-wrapper img{
	width: 100%;
	height: 400px;
}

.profile-content-wrapper{
	padding: 30px;
	background-color: #474747;
}

.profile-content-wrapper h1{
	color: lightseagreen;
}



h2{
	text-align: center;
	color: #ff0066;
	font-size: 50px;
}

#read-more{
	display: none;
}

button{
	background-color: #ff0066;
	border-radius: 20%;
	outline: none;
	color: #fff;
	font-size: 24px;
	padding: 5px;
}

p{
	color: #fff;
	font-size: 14px;
	font-family: var(--body-font);
	line-height: 35px;
	text-align: justify;
}


/*FOOTER*/

footer{
	padding: 7.9rem 0;
	background-color: #474747;
	color: #fff;
	text-align: center;
	position: relative;
}

.back-to-top{
	width: 7rem;
	height: 7rem;
	background-color: #474747;
	position: absolute;
	top: -3rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;


}

.back-to-top i{
	display: block;
	color: #fff;
	font-size: 2rem;
	padding: 2rem;
	animation: up .5s infinite;
}

.footer-content {
	/*overflow: hidden;*/
}

.footer-content h4{
	font-size: 1.9rem;
	text-transform: uppercase;
	font-weight: 100px;
	letter-spacing: 3px;
	margin-bottom: 3rem;


}

.footer-content .asterisk{
	margin: 2.4rem 0;
	color: var(--secondary-font-color);
	font-size: 1.2rem;

}

.footer-content-about{
	margin-bottom: 5.2rem;
}

.footer-content-about p{
	line-height: 1;
	font-size: 14px;
	text-align: center;
}

.social-icons{
	list-style: none;
	margin-bottom: 5.4rem;
	display: flex;
	justify-content: center;
}

.social-icons i{
	font-size: 2rem;
	color: #fff;
	padding: .8rem 2rem;
	opacity: .5;
	transition: color .5s
}

.social-icons i:hover,
.social-icons i:focus{
	color: var(--secondary-font-color);
}

.address{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
}

/*Media query*/

@media screen and (min-width: 900px){
	section{
		padding: 7.9rem;

	}
	.menu-toggle{
		display: none;
	}
	.nav{
		justify-content: space-between;

	}
	.nav-list{
		position: initial;
		width: initial;
		height: initial;
		background-color: transparent;
		padding: 0;
		justify-content: initial;
		flex-direction: row;
		transform: initial;
		transition: initial;

	}
	.nav-item{
		margin: 0 2.4rem;
		border: none;
	}
	.nav-item:last-child{
		margin-right: 0;

	}

	.nav-link{
		font-size: 1.3rem;

	}

	.active{
		position: relative;
	}

	.active::before{
		content: '';
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
		left: 0;
		bottom: -3px;

	}

	.footer-content{
		max-width: 77.5rem;
		margin: auto;

	}

	.footer-content-about{
		max-width: 51.3rem;
		margin: 0 auto 5.4rem;
	}

	.footer-content-divider{
		display: flex;
		justify-content: space-between;

	}

	.social-media{
		width: 100%;
		max-width: 27.3rem;
		margin: 0 1rem;

	}

	.social-icons i{
		opacity: 1;

	}


}

.address-content{
	line-height: 1.9rem;
	letter-spacing: 1px;
	font-size: 12px;
}


.copyright {
	background-color: #000;
}

.copyright p{
	font-size: 12px;
	color: #fff;
	text-align: center;
}

@keyframes up{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: translateY(-1rem);
	}

}