body *{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body{
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  font-family: Montserrat, Helvetica, sans-serif;
  color: rgb(4, 78, 56);
  word-wrap: break-word;
}
.wrapper{
  /* background: url(../images/ship.jpg) no-repeat center center fixed; */
  background-size: cover;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0px 15px;
}
.main{
  width: 100%;
  margin: 15px auto;
  padding: 30px 30px;
  background: rgba(256,256,256, 0.7);
}
.logo{
  width: 270px;
  margin: 0 auto;
  padding: 15px 30px;
  border: 1px solid #eee;
  background: #fff;
}
.logo img{
  width: 100%;  
  display: block;
}
.heading{
  position: relative;
  overflow: hidden;
  text-align: center;
}
h1{
  font-family: 'Raleway', sans-serif;
  font-size: 2.3em;
  font-weight: 300;
  padding: 25px 0px 0px 0px;
  margin: 0px;
  color: #00976B;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
h1:after{
  content: '';
  position: absolute;
  width: 30%;
  height: 2px;
  bottom: 0px;
  left: 35%;
  background: #00976B;
}
h2{
  font-size: 1.3em;
  font-weight: 700;
  padding: 0px 0px 10px 0px;
  margin: 0px;
  margin-bottom: 20px;
}

p{
  margin: 0px;
  padding: 0px;
}
.content{
  text-align: center;
}
.content .text{
  margin-bottom: 30px;
}
.content .text .one{
  position: relative;
  overflow: hidden;
  background: #00976B;
  padding: 15px;
  margin: 0px 0px;
  margin-bottom: 25px;
  color:white;
}
.content .text .two{
  margin: 0px 0px;
}
.buttons{
  position: relative;
  overflow: hidden;
  display: none;
}
.buttons .inner{
  display: block;
}
.button{
  width: 100%;
  background: #00976B;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  margin: 15px 0px;
  display: block;
  float: left;
  border-radius: 0px;
}
.button:hover{
  background: rgb(4, 78, 56);

}
.text-btm{
  margin-top: 35px;
}
@media (min-width: 768px) {
  .wrapper{
    padding: 0px;
  }  
  .main{
    width: 768px;
    margin: 30px auto;
    padding: 30px 30px;
  }
  .content .text .one{
    margin: 0 15px;
    margin-bottom: 25px;
  }
  .content .text .two{
    margin: 0 15px;
  }
  .buttons .inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .button{
    width: 33%;
    margin: 0 15px;
  }
}
@media (min-width: 430px) {
  h1{
    font-size: 3em;
  }
}