.content {
  padding: 50px 100px;
}

.content h2 {
  margin: 0 0 20px;
  padding: 0;
  font-size: 30px;
}

.content p {
  font-size: 18px;
}

.sidebar-contact {
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  left: -350px;
  width: 350px;
  height: auto;
  padding: 40px;
  background: #fff;
z-index: 9999;
  box-shadow: 0 20px 50px rgba(0,0,0, .5);
  transition: 0.5s ease-in-out;
}

.sidebar-contact.active {
  left: 0;
}

.sidebar-contact input,
.sidebar-contact textarea,
.sidebar-contact select{
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid rgba(0,0,0, .5);
  outline: none;
}

.sidebar-contact textarea {
  height: 60px;
  resize: none;
}

.sidebar-contact input[type="submit"] {
  background: #00bcd4;
  color: #fff;
  cursor: pointer;
  border: none;
  font-size: 18px;
  
}
.sidebar-contact h2 {
  margin: 0 0  20px;
  padding: 0;
}

.toggle {
  position: absolute;
  top: 0;
  right: -200px;
  width: 200px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  background: #f00;
	transform: rotate(-90deg);
	transform-origin: left top 0;
  margin-top: 250px;
  float: left;
  font-size: 18px;
	color: #fff;
}

.toggle::before {
  content: "\f003";
  font-family: fontAwesome;
  color: #fff;
  font-size: 18px;
	padding-right: 10px;
}

.toggle.active::before {
  content: '\f00d';
	padding-right: 10px;
}