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


.box.andybox {
  background-size: cover;
}

.andy-face {
  height: 0;
  padding-bottom: 80%;
  background-image: url(../../images/face.png);
  background-color: var(--light-color);
  background-size: cover;
}

.andy-bg {
  width: 70%;
  margin-left: -60px;
}

.andy-wrapper {
  position: absolute;
  left: 20px;
  right: 0;
  top: calc(50% - 65px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 300px;
  height: 120px;
  transition: all .3s;
  z-index: 100;
  cursor: pointer;
}

.andy-shape {
  stroke-dasharray: 110 700;
  stroke-dashoffset: -510;
  stroke-width: 25px;
  fill: transparent;
  stroke: #f04939; stroke: var(--accent-color);
  border-bottom: 5px solid #f04939; border-bottom: 5px solid var(--accent-color);
  transition: all .3s;
}

.andy-text {
  font-family: "roboto", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 30px;
  letter-spacing: 10px;
  color: #f04939; color: var(--accent-color);
  top: -102px;
  text-align: center;
  margin: auto;
  position: relative;
  text-transform: uppercase;
  opacity: 0;
}

.andy-wrapper:hover .andy-shape {
  stroke-width: 20px;
  stroke-dashoffset: 0;
  stroke-dasharray: 900;
}

.andy-wrapper:hover {
  background: #dbdbdb; background: var(--light-color);
  transition-delay: .1s;
}

.andy-wrapper:hover .andy-text {
  opacity: 1;
  transition-delay: .1s;
}

.andy-wrapper:active {
  background: #f04939; background: var(--accent-color);
  transition: all 0s;
  transition-delay: 0;
}

.andy-wrapper:active .andy-text {
  color: #dbdbdb; color: var(--light-color);
}



/*** SVG Background ****/
.andy-bg {
  width: 70%;
  margin-left: -60px;
}