  #outer{
    background: white;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 10px -5px grey;
    width: 100%;
    max-width: 1000px;
    margin:0 auto;
    padding:40px 10px;
  }
  #queryForm,#geomap,#contact-dtl{
    width: 100%;
    margin:10px;
  }
#queryForm>form{
  padding:10px 20px 0 20px;
  background: rgba(255,255,255,.9);
  display: flex;
  flex-direction: column;
  width: 100%;
}
#queryForm h2{
margin-bottom: 10px;
}

input{background:rgba(255,255,255,.8);
  border:1px solid lightgrey;
  color: white;
  border-radius: 3px;
  height: 35px;
  padding: 10px;
  width: 100%;
  margin: auto;

}
textarea{background: rgba(255,255,255,.8);
  border:1px solid lightgrey;
  border-radius: 3px;
  height: 100px;
  resize:none; 
  color: white;
  padding: 10px;
  width: 100%;
  margin:auto;
}
#geomap{
  position: relative;
  display: none;
}
#geomap .back-box{
  position: absolute;
  top: 0;
  right: 0;
  background: var(--theme-color-one);
  width: 200px;
  height: 280px;
}

#geomap .iframe-box{
  position: absolute;
  top:15px;
  right: 15px;
  left: 0;
  bottom: 0;
}


#contact-dtl{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin:auto;
  margin-top: 60px;
}
.contact-dtl-item{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}
.contact-dtl-item span{
  width: 20%;
  display: flex;
  justify-content: center;
}
.contact-dtl-item p{
  width: 60%;
  flex-grow:1;
}
.contact-dtl-item i{
  width: 2em;
  height:2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--theme-color-one);
  color: var(--theme-color-one);
  margin-right: 7px;
  font-size: 1.5em;
}

#social-links{
  margin:auto;
  margin-top: 25px;
}
#social-links ul{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  width: 100%;
}
#social-links ul li{
  font-size: 1.2em;
  width: 2.5em;
  margin:.25em;
  height: 2.5em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background:var(--theme-color-one);
  color: white;
  transition: .25s
}
#social-links ul li:hover{
border-radius: 10px;
}
@media screen and (min-width:802px) {
  #geomap{
  position: relative;
  display: block;
}
  #queryForm,#geomap{
    width: 40%;
  }
  #geomap{
    flex-grow: 1;
  }
  #social-links,#contact-dtl{
    width: 100%;
    max-width: 800px;
  }
.contact-dtl-item{
  width: 30%;
  flex-grow: 1;
}  
}
