@charset "UTF-8";
.main_top{
	height: 465px;
	width: 100%;
	padding: 0 10%;
}
#contact_grid{
	margin: 130px auto 0;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,1);
}
.top_row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact{
	width: calc(100% - 150px);
	padding-left: 22.5px;
		font-family: kawoszeh;
	font-weight: 100;
	font-size: 5.625rem;
		border-right: 1px solid rgba(0,0,0,1);
}
#text{
	width: 150px;
	font-size: 0.7rem;
color: #c1272d;
	animation: animate 10s infinite linear;
}
@keyframes animate{
	0%
	{
		transform: rotate(0deg);
	}
		100%
	{
		transform: rotate(360deg);
	}
}
#contact_grid a{
	height: 80px;
	display: flex;
	align-items: center;
	padding: 0 22.5px;
	text-decoration: none;
	color: #000;
		font-size: 1rem;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 400;
	z-index: 2;
	transition:  color 0.3s cubic-bezier(0.4, 0, 0, 1), 0.3s cubic-bezier(0.4, 0, 0, 1)
}
#contact_grid a:hover{
	padding: 0 30px;
	color: #f3f3f3;
}
.instagram{
	position: relative;
}
.instagram::before{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #000;
	position: absolute;
	right: 0;
	top: 0;
		transition: 0.3s cubic-bezier(0.4, 0, 0, 1);
	z-index: -1;
}
.email{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.email span:nth-child(2){
	color: #9b9b9b;
}
.email::before{
		content: '';
	width: 100%;
	height: 1px;
	background-color: #000;
	position: absolute;
	right: 0;
	top: 0;
		transition: 0.3s cubic-bezier(0.4, 0, 0, 1);
	z-index: -1;
}
.instagram:hover::before{
	height: 100%;
}
.email:hover::before{
	height: 100%;
}
/*-----------breaking point------------*/
@media (max-width:767px){
.contact{
	font-size: 3.75rem;
}
	#contact_grid{
		position: relative;
	}
	.contact{
		border: none;
	}
	#text{
		position: absolute;
		top: -60px;
		right: -70px;
	}
	#contact_grid a{
		height: 50px;font-size: 13px;
	}
}
@media (max-width:600px){
	.main_top{
		padding: 0 15%;
	}
}
@media (max-width:480px){
	.main_top{
height: 490px;
		overflow: hidden;
	}
	.contact{
		font-size: 3rem;
	}
}