*{
  margin: 0;
  padding: 0;
}
body, html{
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: white;
  background-color: #424242;
}
header{
  height: 200px;
  width: 100%;
}
.tlo{
  background-image: url(../img/tlo.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}
.center{
  margin: 10px auto;
  max-width: 1200px;
  min-height: 300px;
  padding: 0 10px;
}
footer{
  position: absolute;
  bottom: 0;
  width: 100%;
}
ul{
  margin-left: 17px;
}
.floating-box {
  display: inline-block;
  vertical-align:top;
  margin-top: 10px;
}
.right{
  width: 69%;
}
.left{
  width: 27%;
  border: 1px solid #C4C4C4;
  padding: 4px;
  text-align: center;
}
/*Responsive*/
@media (min-width: 992px) and (max-width: 1199px) {
  .tlo{
    height: 80%;
  }
  .center{
    margin-top: -40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .tlo{
    height: 60%;
  }
  .center{
    margin-top: -80px;
  }  
}

@media (min-width: 480px) and (max-width: 767px) {
  .tlo{
    height: 40%;
  }
  .center{
    margin-top: -120px;
  }
  .floating-box{
    display: block;
  }
  .right, .left{
    width: 100%;
  }
}

@media (max-width: 479px) {
  .tlo{
    height: 30%;
  }
  .center{
    margin-top: -140px;
  }
  .floating-box{
    display: block;
  }
  .right, .left{
    width: 100%;
  }
  footer{
    position: relative;
  }
}
