*{
  margin:0px;
  padding:0px;
}

body{
  width:100%;
  height:100%;
  font-family: 'Ubuntu', sans-serif;
  line-height: 1.6em;
  background-attachment: fixed;
  background-image: url('../img/bg-img1.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
/*Menu*/

header
{
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}
header .logo
{
  color:rgb(211, 79, 79);
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  float: left;
  font-weight: bold;
  position: absolute;
  left: 20px;
}
header nav
{
  float: right;
}
header nav ul
{
  margin: 0;
  padding: 0;
  display: flex;
}
header nav ul li
{
  list-style: none;
  position: relative;
}
header nav ul li.sub-menu:before 
{   
content: '\f0d7';
font-family: fontAwesome;
position: absolute;
line-height: 50px;
color: rgb(0, 206, 51);
right: 5px;
}
header nav ul li.active.sub-menu:before 
{
   content: '\f0d8';
 
}
header nav ul li ul
{
  position: absolute;
  left: 0;
  background: #8eff96;
  display: none;
  
}
 header nav ul li.active ul
 {
   display: block;
 
 }
 header nav ul li ul li
 {
   display: block;
   width: 200px;
 }
header nav ul li a
{
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: rgb(0, 206, 51);
  text-decoration: none;
  display: block;
}
header nav ul li a ul li{
  color:rgb(117, 8, 8);
}
header nav ul li a:hover,
header nav ul li a.active
{
  color:#fff;
  background: rgba(40, 253, 154, 0.92);
}
.menu-toggle
{
  color:#fff;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  text-align: right;
}
@media (max-width: 991px)
{
  body{
    margin-top: 50px;
  }
  header
  {
    padding: 0 20px;
    background: #43f36d;
  }
  header .logo
{
  visibility: hidden;
  
}

  .menu-toggle
  {
    display:block;
  }
  header nav
  {
    position: absolute;
    width: 100%;
    /*height:calc(100vh - 50px);*/
    background: rgb(255, 255, 255);
    top: 50px;
    left: -100%;
    transition: 0.5s;
  }
  header nav.active
  {
    left: 0;
  }
  header nav ul
  {
    display: block;
    text-align:center;
  }
  header nav ul li a{
    border-bottom: 1px solid rgb(69, 255, 94);
    color: rgb(0, 206, 51);
  }
  header nav ul li ul li a {
    border-bottom: 1px solid rgb(69, 255, 94);
    color: #0084ff;
}
  
  header nav ul li.active ul
  {
    position: relative;
    background: rgba(177, 255, 219, 0.92);
  }
  header nav ul li ul li
  { 
      width: 100%; 
  }
}
/*Menu Fin*/


.wrapper{
  width:90%;
  margin: 100px auto 50px;
  box-shadow: 0px 0px 10px rgba(0,0,0,.3);
}

.main-header{
  width:100%;  
  height:500px;
  z-index:0;
  background-image: linear-gradient(to left, #b0fbc3, #002e16);
  position: relative;
}

.content{
  position: absolute;
  width: 100%;
  top:50%;
  transform: translateY(-50%);
  color:#fff;
  text-align: center;
}

.content h1{
  margin-bottom: 10px;
  line-height:1.2em;
}

.start{
  display: block;
  margin: 30px auto 0px;
  text-align: center;
  padding: 5px;
  border: 1px solid #fff;
  width:150px;
  border-radius:25px;
  text-decoration: none;
  color:#fff;
}

.features{
  display: flex;
  height:auto;
  background: #fff;
  padding: 50px 0px;
}

.feature{
  display: flex;
  margin: 10px;
  padding:5px;
}

.icon{
  display: grid;
  font-size: 30px;
  height: 30px;
  width: 30px;
  padding: 5px 10px;
  color: #F09459;
  border-radius: 13px;
}

.feature:hover .icon{
  background-image: linear-gradient(to right, #F09459, #e66586);
  color: #fff;
}

.feature-content{
  margin-left: 5px;
  padding: 0px 8px;
}

.feature-content p{
  margin-top: 10px;
  color:#444;
}

#our-story{
  width:100%;
  height: 500px;
  z-index: -1;
  position: relative;
}

.story-wrapper{
  display: flex;
  position: relative;
}

.story-img{
  width:50%;
  height:500px;
}

.story-text{
  position: relative;
  width:50%;
  height:500px;
  background-image: linear-gradient(to left, #b0fbc3, #00af54);
}

.story-text div{
  position: absolute;
  top:50%;
  left:4%;
  color:#fff;
}

.box{
  wildth: 40%;
  padding:50px;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  background: #fff;
  color:#999;
  box-shadow: 0px 0px 15px rgba(0,0,0,.5);
}


.letter{
  width:100%;
  padding: 70px 0px;
  background: #fff;
}

.control{
  width:100%;
  text-align:center;
}

.control h3{
  font-size: 30px;
  line-height: 1.2em;
}

.control span{
  color: #999;
  display: block;
  margin:10px 0px 20px;
}



.input{
  height:30px;
  width:250px;
  border:none;
  margin: 0px 10px 20px 0px;
  background: #f1f1f1;
}

.input:focus{
  outline:none;
}

.btn{
  width:100px;
  height:35px;
  border:none;
  padding:10px;
  background: #65e67a;
  color:#fff;
  border-radius: 5px;
  cursor: pointer;
}


.contact-wrapper{
  width:100%;
  display: flex;
  justify-content: space-around;
  background: #65e67a;
}

.contact{
  width: 30%;
  color:#fff;
  text-align:center;
  padding: 50px 0px;
}

.contact:hover{
  color: rgb(7, 7, 7);
}


/*Modo responsive*/

@media (max-width: 750px){
  .main-header{
    height:200px;
  }
  .story-img{
	  height:200px;
  }
  .features{
    display: grid;
  }

  .feature{
    width:100%;
    display: flex;
    margin: 0px auto;
    height: 200px;
  }

  .feature:hover .icon{
    background: none;
    color: #E66586;
  }

  .icon{
    font-size: 100px;
    border-radius: 0px;
    height:200px;
    width:50%;
    color: #E66586;
    text-align: center;
  }

  .feature-content{
    /*width:50%;*/
    padding-right: 5px;
    box-sizing: border-box;
  }

  .wrapper{
    width:95%;
  }
}

@media (max-width: 900px){
  #our-story{
    height:auto;
  }
  .story-text, .story-img{
    height:200px;
  }

  .box{
    position: relative;
    margin: 0px;
    width: 100%;
    top:0px;
    left:0px;
    transform: none;
    box-sizing: border-box;
    background-image: linear-gradient(to left, #00af54, #b0fbc3);
    color: #fff;
  }
}


@media (max-width: 630px){
  
  .contact-wrapper{
	display: grid;
}
 
  .icon{
    font-size: 50px;
    height:auto;
    margin: auto;
  }

 

  .contact{
	
    width: 200px;
    margin: 0px auto;
    padding: 10px 0px;
  }

  .wrapper{
    width: 100%;
    margin: 0px;
  }
}
