body {
    margin: 0;
    padding: 0;
}
header {
  background: #000000;
}
.border-div {
  padding: 0 20px;
  overflow: hidden;
}
.container{
	margin:0 auto;
	max-width:960px;
}

.logo {
  padding: 20px 0;
  text-align: center;
}

.logo img {
  width: 100px;
  height: auto;
}

.inner_text {
    display: block;
    position: relative;
    width: 90%;
}
.inner_text h1 {
    color: #333333;
    font-family: roboto;
    font-size: 30px;
    font-weight: bold;
 
}
.inner_text p {
    font-family: roboto;
    font-size: 17px;
    line-height: 36px;
}

.inner_text__img {
  position: absolute;
  width: 300px;
  display: none;
}

.inner_text__img img {
  width: 100%;
}

.top-right {
  color: #ffffff;
  text-transform: uppercase;
}
.top-right ul {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 0 10px 0;
  margin: 0;
}
.top-right li {
    display: inline;
}
.top-right li.nav-home {
  display: none;
}
.top-right li a {
    color: #ffffff;
    text-decoration: none;
}
.top-right li i {
    font-size: 26px;
    margin: 0 4px;
}

.top-right .btn {
  background: #333333 none repeat scroll 0 0;
  border: 1px solid #585757;
  box-shadow: none;
  color: #ffffff;
  font-family: roboto;
  font-size: 14px;
  margin: 0 4px;
  padding: 8px 10px;
  display: inline-block;
  text-decoration: none;
}
.top-right .btn:hover {
  box-shadow: 150px 0 0 #6c6c6c inset;
  transition: all 1s ease 0s;
}
.top-right li i:hover {
  color:#6c6c6c;
}

.contact_form {
  max-width: 400px;
}
.contact_form p {
  font-family: roboto;
  font-size: 17px;
  line-height: 32px;
}
.contact_form input,
.contact_form textarea {
  border: 1px solid #cecece;
  float: left;
  padding:11px 10px 10px 10px;
  width: 100%;
  box-sizing: border-box;
}
.contact_form form label {
    font-family: roboto;
    font-size: 15px;
}
.submit_btn {
    background: #333333 none repeat scroll 0 0;
    border: 0;
    color: #ffffff;
    float: left;
    font-family: roboto;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 20px 0;
    padding: 10px 27px;
    text-decoration: none;
    text-transform: uppercase;
}
.submit_btn:hover {
    background: #6c6c6c none repeat scroll 0 0;
	cursor:pointer;
}

@media (min-width:700px) {
  .logo {
    float: left;
  }
  .top-right {
    float: right;
    padding-top: 25px;
  }
  .top-right ul {
    float: right;
    clear: both;
    align-items: right;
    justify-content: right;
  }
  .top-right li.nav-home {
    display: inline;
  }
  .top-right .btn {
    margin: 0 0 0 14px;
    padding: 8px 20px;
  }
  .inner_text__img {
    display: block;
  }
  .inner_text__content {
    margin-left: 350px;
  }
}



