@charset "UTF-8";
/* CSS Document */

.img-button{
    display: block;
    position: relative;  
}
.img-button img{
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0.7); 
}
.img-button>span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: 200px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.2);
    border: 2px solid #FFF;
    padding: 15px;
    text-align: center;
    color: #FFF;
    font-size: 120%;
    font-weight: bold;
    transition: .5s;
}
.img-button:hover>span{
    background: rgba(255,255,255,0.7);
    color: #00913A;
    border: 2px solid #00913A;   
}
.img-button img:hover{
    filter: brightness(0.9);
color:#e10f0f;
    transition: .5s;

}

@media (min-width: 500px)and (max-width: 767px) {
    .img-button img{
        width: 90%;
    }
    .img-button>span{
        font-size: 110%;
        width: 150px;
        padding: 10px;
    }
}
/* Mobile */
@media (max-width: 320px) {
        .img-button img{
        width: 90%;
    }
    .img-button>span{
        font-size: 110%;
        width: 150px;
        padding: 10px;
    }
}


/* 019 */
.button019 a {
    background: #FFF;
    border-radius: 0px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin:  left;
    max-width: 200px;
    padding: 10px 25px;
    color: #B8D200;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
  background: #B8D200;
  color: #FFF;
}
.button019 a:hover:after {
  right: 1.4rem;
}