#talkus-display{
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.75)), url(images/talkus-bg.jpg);
    background-attachment: fixed;
    background-size: 100%;
    height: 70vh;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
.contact-detailing{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    width: 768px;
    text-align: center;
    margin: 0 auto;
}
.contact-detailing p{
    padding: 0 10px;
}
.location {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    color: #114139;
}
.location2 {
    width: 270px;
    margin: 0 auto;
    text-align: left;
    font-family: 'Courier New', Courier, monospace;
    color: #114139;
    display: none;
}
.icons-for-social .fab{
    color: rgb(81,122,62);
}
#contact-box {
    width: 100%;
    margin: 50px auto;
    overflow: hidden;
}
.location a {
    text-decoration: none;
    color: #000;
}
.location2 a {
    text-decoration: none;
    color: #000;
}
.icons-for-social {
    width: 99%;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 25px;
    color: rgb(81,122,62);
    margin: 0 auto;
}
.icons-for-social * {
    margin: 0 10px;
}
.fa {
    color: rgb(81,122,62);
}

/*INPUTS*/
.input {
    padding: 50px 10%;
}
#send-message {
    width: 360px;
    margin: 0 auto 100px;
    border-radius:20px;
    border: 1px solid rgb(81,122,62);
}
#send-message .inputBox {
	position: relative;
}
#send-message .inputBox input {
	width: 100%;
	padding: 10px 0;
    font-size: 16px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	color:#1c1c2c;
	margin-bottom: 30px;
	border:none;
	border-bottom: 1px solid rgb(81,122,62);
	outline: none;
	background: transparent;
}
#send-message  .inputBox label {
	position: absolute;
	top:0;
    left:0;
    font-family: 'Concert one', cursive;
	padding: 10px 0;
	font-size:16px;
	color: #ccc;
	pointer-events: none;
	transition: 1s;
}
#send-message  .inputBox input:focus ~ label,
#send-message  .inputBox input:valid ~ label {
	top: -18px;
	left: 0;
	color: rgb(81,122,62);
	font-size: 12px;
}
.send-message-btn-div {
    text-align: center;
    margin-top: 20px;
}
.send-message-btn {
    width: 150px;
    border: none;
    background: rgb(81,122,62);
    border-radius: 10px;
    height: 30px;
    outline: none;
    color: #1c1c2c;
    font-weight: bolder;
    font-family: calibri;
    cursor: pointer;
}
textarea {
    background: #ededed;
    outline: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
}
#the-texting {
    width: 100%;
    max-width: 100%;
    height: 80px;
}
@media (max-width: 768px){
    #send-message{
        width: 98%;
        margin: 0 auto;
    }
    .contact-detailing{
        width: 98%;
    }
}
@media (max-width: 560px){
    .location{
        display: none;
    }
    .location2{
        display: block;
    }
    .icons-for-social * {
        margin: 0 5px;
    }
}
