.btn_contact input {
font-family: 'Open Sans', sans-serif;
border: none;
background: no-repeat;
font-size: 1.1rem;
font-weight: 500;
margin: 0 auto;
width: 100%;
text-align: center;
cursor: pointer;
}
.btn_contact .wpcf7-spinner {
position: absolute;
right: -75px;
} .btn_contact a {
padding: .5rem 1rem;
}
.a_contact {
padding: 1em 1.5em;
border: none;
display: block;
background-position: 100%;
background-size: 200% 100%;
cursor: pointer;
padding: 0.7rem;
text-align: center;
transition: all .5s ease;
width: 100%;
}
.a_contact::before,
.a_contact::after {
content: "";
position: absolute;
right: 0;
top: 0;
transition: all .5s ease;
}
.a_contact::before {
height: 0;
width: 2px;
}
.a_contact::after {
height: 2px;
width: 0;
}
.a_contact:hover {
background-position: left;
}
.a_contact:hover::before {
height: 100%;
background-color: var(--main-gold);
}
.a_contact:hover::after {
width: 100%;
background-color: var(--main-gold);
}
.hover_effect {
position: relative;
display: block;
width: 100%;
}
.hover_effect::before,
.hover_effect::after {
content: '';
bottom: 0;
left: 0;
position: absolute;
transition: all .5s ease;
}
.hover_effect::before {
height: 0;
width: 2px;
}
.hover_effect::after {
height: 2px;
width: 0;
}
.hover_effect:hover::before {
height: 100%;
background-color: var(--main-gold);
}
.hover_effect:hover::after {
width: 100%;
background-color: var(--main-gold);
}
@media all and (max-width: 950px) {
.btn_contact input {
font-size: 1rem;
}
}