@charset "UTF-8";
/* CSS Document */
.box.ideo-buttonbox {
}

/*** Button Code ****/
.ideo-container {
  margin: 40px
}

.ideo-button:after {
  content: "";
  background: #4f575c; background: var(--nav-title-color);
  position: absolute;
  bottom: -30px;
  left: 0;
  height: 5px;
  width: 32px;
}

.ideo-description {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #4f575c; color: var(--nav-title-color);
  margin-bottom: 20px;
}
.ideo-description span {
  color: #5b646a; color: var(--nav-title-color);
}

.ideo-button {
  position: relative;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: 0;
  font-family: serif;
  font-weight: normal;
}

.ideo-button a {
    background-image: linear-gradient(180deg,transparent 65%, #dbdbdb 0);
    background-image: linear-gradient(180deg,transparent 65%, var(--accent-color) 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    color: #4f575c; color: var(--nav-title-color);
    -webkit-transition: background-size .4s ease;
    transition: background-size .4s ease;
}

.ideo-button a:hover {
    background-size: 100% 100%;
    cursor: default;
}

