/*-------------------- Underline Reveal --------------------*/
.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;

    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-underline-reveal:before {
    content: "";
    position: absolute;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: #C5FF94;
    
    height: 4px;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
  
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*-------------------- Fade in Main --------------------*/
.Main_texto {
	opacity: 0;
 	transform: translateY(20px); /* empieza un poco abajo */
	animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------- Fade in Ttle --------------------*/

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    text-align: center;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/*-------------------- Main Button Black --------------------*/
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    background: transparent;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;

    padding: 0;
    border: 0;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    background: #fff;

    margin: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
 
    margin: auto;
    background: #000;

    top: 0;
    bottom: 0;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    background: none;
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #000;
    border-right: 0.125rem solid #000;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    color: #fff;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    font-weight: 700;
    line-height: 1.6;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #000;
}

/*-------------------- Main Button White --------------------*/
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    background: transparent;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;

    padding: 0;
    border: 0;
}

button.learn-more_2 {
    width: 12rem;
    height: auto;
}

button.learn-more_2 .circle_2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    background: #000;

    margin: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 1.625rem;
}

button.learn-more_2 .circle_2 .icon_2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
 
    margin: auto;
    background: #fff;

    top: 0;
    bottom: 0;
}

button.learn-more_2 .circle_2 .icon_2.arrow_2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    background: none;
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    
}

button.learn-more_2 .circle_2 .icon_2.arrow_2::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more_2 .button-text_2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    color: #000;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    font-weight: 700;
    line-height: 1.6;
}

button:hover .circle_2 {
    width: 100%;
}

button:hover .circle_2 .icon.arrow_2 {
    background: #000;
    transform: translate(1rem, 0);
}

button:hover .button-text_2 {
    color: #fff;
}

/****************************************************
 *                    Smartphone                  *
 ****************************************************/

@media (max-width: 575.99px) {}

/****************************************************
 *                  Small devices                *
 ****************************************************/

@media (min-width: 576px) and (max-width: 768px) {}

/****************************************************
 *                  Medium devices               *
 ****************************************************/

@media (min-width: 768px) and (max-width: 991px) {}

/****************************************************
 *                  Large devices               *
 ****************************************************/

@media (min-width: 992px) and (max-width: 1199px) {}

/****************************************************
 *                  X-Large devices                *
 ****************************************************/

@media (min-width: 1200px) and (max-width: 1399px){}

/****************************************************
 *                  XX-Large devices                *
 ****************************************************/

@media (min-width: 1400px) {}