.contact_form {
    padding: 45px;
    margin: 2px;
}
.contact_form textarea {
    height: 0;
    font-size: 14px;
    font-weight: 500;
    border-color: #fff !important;
    border-style: solid !important;
    border-width: 0 0 1px 0 !important;
    padding: 0px !important;
    color: #000;
    border-radius: 0;
    background-color: transparent;
}
.contact_form input{
display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    border-color: #fff !important;
    border-style: solid !important;
    border-width: 0 0 1px 0 !important;
    padding: 0px !important;
    color: #000;
    border-radius: 0;
    background-color: transparent;
    
}
::placeholder{
    color: #fff!important;
    opacity: 0.4!important;
}
.form-control{
    border-radius: 0px;
}
.form-control:focus {
    color: #212529;
 background-color: transparent; 
  
    outline: 0;
    box-shadow: none;
}

.square-btn {
	position: relative;
	cursor: pointer;
    padding: 30px 9px 12px;
    margin: 17px;
    min-height: 210px;
}
.square-btn h5{
    text-align: center;
    font-weight: 700;
}
.square-btn:before,
.square-btn:after {
	content: "";
	width: 100%;
	height: 0;
	border: solid #b9ab97 ;
	position: absolute;
	transition-duration: 0.5s;
}
.square-btn:before {
	border-width: 2px 0 0 2px;
	top: 0;
	left: 0;
}
.square-btn:after {
	border-width: 0 2px 2px 0;
	bottom: 0;
	right: 0;
}
.square-btn:hover:before,
.square-btn:hover:after {
	height: 100%;
	width: 0;
}


@media(max-width: 600px){

.square-btn {
    position: relative;
    cursor: pointer;
    padding: 30px 9px 12px;
    margin: 17px;
    min-height: auto;
}
}