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


.box.heckbox {
  color: #fff;
}

.heckoverlay {

  position: absolute;
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 10%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  text-decoration: none;
  top: 0;
  width: 100%;
  z-index: 50;
  box-sizing: border-box;
}

.heckbackground {
  background: #f04939;
  background: var(--accent-color);
  position: absolute;
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 10%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  text-decoration: none;
  top: 0;
  width: 100%;
  z-index: 2;
  box-sizing: border-box;
}



.heckcenter {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

.hecktext {
  font-family: serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px 0;
  text-align: center;
  color: #fff;
}

.heckline {
  border-color: #fff;
  transition: width .5s .2s;
  width: 0;
}

.heckbox:hover .heckoverlay {
  opacity: 1;
}
.heckbox:hover .heckbackground {
  opacity: .75;
}



.heckbox:hover .heckline {
  width: 30%;
}

.heckimg {
  transition: transform .7s;
  background-image: url(../../images/seaturtle.jpg);
  background-color: #4f575c; background-color: var(--dark-color);
  background-blend-mode: lighten; background-blend-mode: var(--filter-effect);
  height: 0;
  padding-bottom: 80%;
  background-position: center;
  background-size: cover;
  transform: scale(1);
}

.heckbox:hover .heckimg {
  transform: rotate(-9deg) scale(1.35);
}



