html, body {
    margin: 0;
    height:100%;
    width:100%;
    padding:0;
    color: #fff;
}
h4, h5, p {
  margin: 15px;
}
h2{
  font-size: 40px;
}

.activityIcone{
  height: 200px;
  width: 200px;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.normal{
  font-size: 24;
}

.shortDescription{  
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  text-align: center;
}

.bottom{
 font-size: 12px;
}

#homeCover{
    width:100%;
}

#home div{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#home img{
    display: block;
    margin-left: auto;
    margin-right: auto; 
}

section {
    background: #464D5C;    
    width:99%;   
    padding: 70px;
    padding-left: 5px;
    padding-right: 5px;
}

#home {
    background: #464D5C;
    color: #fff;
    font-size: 30px;
}
#services {  
    display: grid;
    background: #123037;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em 20px;
}
#contact{
  padding-top: 30px;
}

#contact-title {
  padding-left: 5px;
}

#service1 {  
  padding: 10px;
  grid-column: 1 / 2; 
  grid-row: 1 / 2;
}
#service2 {  
  padding: 10px;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
#service3 { 
  padding: 10px;
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

#service1 {
  background-color:#153941;
}
#service2 {  
  background-color:#153941;  
}

#service3 {
  background-color:#153941;
}

#home h3, #home h4, #home p,#home h5 {
 text-align: center;
}

/* header */

.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
    color: #464D5C;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color:lightgray;
  }
  
/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }

  #recto{
    width:80%;
  }
  .container{
    position: relative;
    text-align: center;
    color: white;
  }
  .phone {
    position: absolute;
    top: 47%;
    left: 5%;
    width: 50%;
    height: 10%;
  }
  .mail {
    position: absolute;
    top: 60%;
    left: 5%;
    width: 50%;
    height: 10%;
  }
  .messenger{
    color: white;
    font-size: 30px;
    padding: 10px;
    height: 30px;
  }


  /* 48em = 768px */
  
  @media (min-width: 48em) {

    #homeCover{
        width:50%;
    }
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }

    #services{
      grid-template-columns: repeat(3, 1fr);
    }
    #service1 {    
      grid-column: 1 / 2; 
      grid-row: 1 / 2;
    }
    #service2 {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
    }
    #service3 {
      grid-column: 3 / 4;
      grid-row: 1 /  2;
    }
    #recto{
      width:50%;
    }
  }
