.header_contact_main{
	float: right;
	width: 70%;
}
.top_header_contact{
	float: left;
	margin-left: 12%;
	margin-top: 3rem;
	text-align: center;
	border-radius: 1rem 1rem 2rem 1rem;
	border: 0.2rem solid rgb(119, 119, 9);
	overflow: hidden;
}
.top_header_contact a{
	display: block;
	position: relative;
	padding-left: 5rem;
	padding-top: 1rem;
	padding-right: 5rem;
	padding-bottom: 1rem;
	color: rgb(119, 119, 9);
	font-size: 1.5rem;
	font-weight: 900;
	text-decoration: none;
	text-shadow: 0 0.5px black;
	letter-spacing: 1px;
	box-sizing: border-box;
	z-index: 9999;
}
.top_header_contact a:hover{
	-o-transition: all 1s 0.3s linear;
	-moz-transition: all 1s 0.3s linear;
    -ms-transition: all 1s 0.3s linear;
    -webkit-transition: all 1s 0.3s linear;
    transition: all 1s 0.3s linear;
	-o-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
	background-color: white;
}
.top_header_contact:hover{
	-o-transition: all 1s 0.3s linear;
	-moz-transition: all 1s 0.3s linear;
    -ms-transition: all 1s 0.3s linear;
    -webkit-transition: all 1s 0.3s linear;
    transition: all 1s 0.3s linear;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,1);
}
@media screen and (max-width: 1080px){
	.header_contact_main{
	    float: left;
	    width: 100%;
    }
}
@media screen and (max-width: 900px){
	.top_header_contact{
		width: 60%;
	    margin-left: 20%;
		margin-top: 1.5rem;
	}
}
@media screen and (max-width: 767px){
	.top_header_contact{
		width: 95%;
	    margin-left: 2.5%;
	}
	.top_header_contact a{
		padding-left: 0.5rem;
	    padding-right: 0.5rem;
	}
}
@media screen and (max-width: 400px){
	.top_header_contact a{
		padding-left: 0.1rem;
	    padding-right: 0.1rem;
		font-size: 1.3rem;
	}
}