.footer-container{
  padding: 20px;
  width:100%;
  height:250px;
  background-color: #2f855a;
} 
.footer-left{
  width:25%;
  height:170px;
  float:left;
}
.footer-image{
  padding:5px;
}
.footer-image img {
  width:150px;
  height:auto;
  float:left;
  padding:10px;
}
.footer-middle{
  width:50%;
  height:170px;
  float:left;
  position: center;
  justify-content: center;
  align-items: center;
  
}
.footer-bottom{
  top:0px;
  width:100%;
  background-color:  #2f855a;
  height:80px;
  padding:5px;
}
.footer-bottom p {
  font-size: smaller;
  text-align: center;
  color:#e8e8e8;
  line-height: 5px;

}
.footer-bottom p a{

  color:#e8e8e8;
}

.box1 {
  width: 150px;
  height: 40px;
  transition: .5s linear;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  margin: 0 5px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
  left:50px;
}

.box1:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}

.box1:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}

.box1:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.box1:hover:before {
  border-color: #fff;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .3s;
}

.box1:hover:after {
  border-color: #fff;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .5s;
}

.button {
  width:150px;
  color: #8CCA33;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
  display:block;
}
.box1 a{
  text-decoration: none;
  color: white;
}
.button-set{
  float:left;
  display:block;
  height:max-content;
  line-height: 50px;
  
}