/*****************************************/
/* simple underline effect on navigation */
/****************************************/
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: var(--base);
}
.hover-underline-animation:focus, .hover-underline-animation:visited, .hover-underline-animation:active, .hover-underline-animation:hover {
  color: var(--base);
}
.hover-underline-animation__white, .hover-underline-animation__white:focus, .hover-underline-animation__white:visited, .hover-underline-animation__white:active, .hover-underline-animation__white:hover {
  color: var(--white) !important;
}
.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--white);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  -o-transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.hover-underline-animation:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
/******************/
/* MEDULLA BUTTON */
/******************/
/* Global Button Styles */
a.animated-btn:link, a.animated-btn:visited {
  position: relative;
  display: block;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
a.animated-btn:link:after, a.animated-btn:visited:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: 0;
  -webkit-transition: all 0.75s ease 0s;
  -o-transition: all 0.75s ease 0s;
  transition: all 0.75s ease 0s;
}
a.animated-btn:link:hover, a.animated-btn:visited:hover {
  color: var(--white);
  text-shadow: none;
}
a.animated-btn:link:hover:after, a.animated-btn:visited:hover:after {
  height: 450%;
}
/* Animation BTN Siveo secondary */
a.animated-btn.btn-siveo {
  color: var(--white);
  background: var(--primary);
  cursor: pointer;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-btn.btn-siveo span {
  position: relative;
  z-index: 1;
}
a.animated-btn.btn-siveo.btn__light {
  background: var(--white);
  color: var(--base);
}
a.animated-btn.btn-siveo.btn-hollow {
  background: none;
  border: 1px solid var(--primary);
}
a.animated-btn.btn-siveo.btn-hollow__light {
  background: none;
  border: 1px solid var(--white);
}
a.animated-btn.btn-siveo:hover {
  color: var(--secondary-dark) !important;
  background-color: transparent;
}
a.animated-btn.btn-siveo.btn__light:hover {
  color: var(--white) !important;
}
a.animated-btn.btn-siveo:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}
a.animated-btn.btn-siveo:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: 0;
  content: '';
  color: var(--secondary-dark) !important;
  background: var(--secondary-light);
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-btn.btn-siveo.btn-hollow__light:before {
  background: var(--white) !important;
}
a.animated-btn.btn-siveo.btn__light:before {
  background: var(--secondary) !important;
}
