/*icon*/
.container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 4px;
  background-color: white;
  margin: 4px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

/*contact form css*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);

* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

body {
	font-family:  Arial, Helvetica, sans-serif; 
	font-weight:300;
	font-size: 15px;
	line-height:30px;
	color:#777;
	background:#777;
}

/*
.container {
	max-width:400px;
	width:100%;
	margin:0 auto;
	position:relative;
}
*/

#contact h3 {
	color:#6d6868;
	display: block;
	font-size: 30px;
	font-weight: 400;
    text-align: left;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
    text-align: left;
}

/*bg image*/


/*next button and previous botton*/
/*previous*/
.previous {
	    margin-left: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
        color: #fff !important;
        text-transform: uppercase;
        text-decoration: none;
        background: #222625;
        padding: 10px;
        border-radius: 5px;
        display: inline-block;
        border: none;
        transition: all 0.4s ease 0s;
        position: relative;
}

.previous:hover {
    text-decoration: none;
    background: #010504;
    letter-spacing: 1px;
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
    transition: all 0.4s ease 0s;
}

/*next*/
.next {
    margin-left: 1000px;
    float: right;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    background: #222625;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    border: none;
    transition: all 0.4s ease 0s;
}

.next:hover {
    text-decoration: none;
    background: #010504;
    letter-spacing: 1px;
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
    transition: all 0.4s ease 0s;
}
.button_cont{
    float: right;
}
