/*--------------------------------------------------------------
MEET THE ARTIST
--------------------------------------------------------------*/


.artist-section{

	width:100%;

	padding:120px 0;

	background:#faf9f6;

}


.artist-section .container{

	width:92%;

	max-width:900px;

	margin:auto;

}


.artist-content{

	text-align:center;

}


.artist-content span{

	display:inline-block;

	margin-bottom:20px;

	font-size:13px;

	font-weight:600;

	letter-spacing:3px;

	color:#a9854f;

}


.artist-content h2{

	margin:0;

	font-size:48px;

	font-weight:600;

	line-height:1.2;

	color:#111111;

}


.artist-content p{

	margin-top:30px;

	font-size:18px;

	line-height:2;

	color:#666666;

}



/*--------------------------------------------------------------
SIGNATURE ITEMS
--------------------------------------------------------------*/


.artist-signatures{

	display:flex;

	flex-wrap:wrap;

	justify-content:center;

	gap:20px;

	margin-top:60px;

}


.artist-item{

	padding:16px 30px;

	border:1px solid #dddddd;

	border-radius:50px;

	background:#ffffff;

	font-weight:600;

	color:#111111;

	transition:.4s ease;

}


.artist-item:hover{

	background:#111111;

	color:#ffffff;

}




/*--------------------------------------------------------------
BUTTON
--------------------------------------------------------------*/


.artist-button{

	display:inline-block;

	margin-top:60px;

	padding:18px 40px;

	background:#111111;

	color:#ffffff;

	text-decoration:none;

	border-radius:50px;

	font-weight:600;

	transition:.4s ease;

}


.artist-button:hover{

	background:#a9854f;

	color:#ffffff;

}



/*--------------------------------------------------------------
TABLET
--------------------------------------------------------------*/


@media(max-width:1024px){


	.artist-content h2{

		font-size:40px;

	}


}



/*--------------------------------------------------------------
MOBILE
--------------------------------------------------------------*/


@media(max-width:768px){


	.artist-section{

		padding:90px 0;

	}


	.artist-content h2{

		font-size:34px;

	}


	.artist-button{

		width:100%;

		text-align:center;

	}


}



@media(max-width:576px){


	.artist-section{

		padding:70px 0;

	}


	.artist-content h2{

		font-size:28px;

	}


	.artist-content p{

		font-size:16px;

		line-height:1.9;

	}


}