/* ///////////////////////////////////// Boton principal /////////////////////////////////////// */
:root {
    --primary-color: #013220;
    --secondary-color: #80FF00;
}
.main-btn {
    padding: 0.8em 1.8em;
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: .3s;
    z-index: 1;
    font-family: inherit;
    color: var(--secondary-color);
}
   
.main-btn::before {
    content: '';
    width: 0;
    height: 2000%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--secondary-color);
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.main-btn:hover::before {
    width: 105%;
}
   
.main-btn:hover {
    color: #111;
}
/* ////////////////////////////////////////////////////////////////////////////////////////// */



















/* ///////////////////////////////////// Boton del Logo /////////////////////////////////////// */

/* === removing default button style ===*/
.button {
    margin: 20px 0px 0px 0px;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
}
  
/* button styling */
.button {
    --border-right: 6px;
    --text-stroke-color: rgba(255,255,255,0.6);
    --animation-color: var(--secondary-color);
    --fs-size: 2em;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: var(--fs-size);
    font-family: "Arial";
    position: relative;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-stroke-color);
}
/* this is the text, when you hover on button */
.hover-text {
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid var(--animation-color);
    overflow: hidden;
    transition: 0.5s;
    -webkit-text-stroke: 1px var(--animation-color);
}
/* hover */
.button:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color))
}
/* /////////////////////////////////////////////////////////////////////////////////////////////// */



















/* ///////////////////////////////////// Links del nav /////////////////////////////////////// */

.buttons-nav {
    font-size: 0.9rem;
    background: transparent;
    border: none;
    padding: 1em 1.2em;
    color: white;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}
  
.buttons-nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--secondary-color);
    transition: 0.5s ease;
}
  
.buttons-nav:hover {
    color: white;
    transition-delay: 0.5s;
}
  
.buttons-nav:hover::before {
    width: 100%;
}
  
.buttons-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: var(--secondary-color);
    transition: 0.4s ease;
    z-index: -1;
}
/* /////////////////////////////////////////////////////////////////////////////////////////////// */



















/* ///////////////////////////////////// Boton de las cards de las news /////////////////////////////////////// */

.learn-more {
    margin-top: 30px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: 1rem;
    font-family: inherit;
    width: 12rem;
    height: auto;
     
       
    .circle {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: relative;
        display: block;
        margin: 0;
        width: 2.8rem;
        height: 2.8rem;
        background: var(--secondary-color);
        border-radius: 1.625rem;
    }
       
    .circle .icon {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #fff;
    }
       
    .circle .icon.arrow {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        left: 0.625rem;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
    }
       
    .circle .icon.arrow::before {
        position: absolute;
        content: "";
        top: -0.29rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid #000000;
        border-right: 0.125rem solid #000000;
        transform: rotate(45deg);
    }
       
   .button-text {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.75rem 0;
        margin: 0 0 0 1.85rem;
        color: var(--secondary-color);
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-transform: uppercase;
    }
}  
.learn-more:hover .circle {
    width: 100%;
}
   
.learn-more:hover .circle .icon.arrow {
    background: black;
    transform: translate(1rem, 0);
}
   
.learn-more:hover .button-text {
    color: black;
}

/* ////////////////////////////////////////////////////////////////////////////////////////// */



















/* ///////////////////////////////////// Boton en el footer de linkedn /////////////////////////////////////// */

.tooltip-container {
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 17px;
    border-radius: 10px;
    margin-top: 140px;
}
  
.tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
      inset -5px -5px 15px rgba(255, 255, 255, 0.1),
      5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}
  
.profile {
    background: #2a2b2f;
    border-radius: 10px 15px;
    padding: 10px;
    border: 1px solid rgba(11, 63, 95, 1);
}
  
.tooltip-container:hover .tooltip {
    top: -150px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
  
.icon {
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
}
.layer {
    width: 55px;
    height: 55px;
    transition: transform 0.3s;
}
.icon:hover .layer {
    transform: rotate(-35deg) skew(20deg);
}
.layer span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s;
}
  
.layer span,
.text {
    color: #1da1f2;
    border-color: #1da1f2;
}
  
.icon:hover.layer span {
    box-shadow: -1px 1px 3px #1da1f2;
}
.icon .text {
    position: absolute;
    left: 50%;
    bottom: -5px;
    opacity: 0;
    font-weight: 500;
    transform: translateX(-50%);
    transition: bottom 0.3s ease, opacity 0.3s ease;
}
.icon:hover .text {
    bottom: -35px;
    opacity: 1;
}
  
.icon:hover .layer span:nth-child(1) {
    opacity: 0.2;
}
.icon:hover .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
}
.icon:hover .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
}
.icon:hover .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
}
.icon:hover .layer span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
}
  
.layer span.fab {
    font-size: 30px;
    line-height: 64px;
    text-align: center;
    fill: #1da1f2;
    background: #000;
}
.user {
    display: flex;
    gap: 10px;
}
.img {
    width: 50px;
    height: 50px;
    font-size: 25px;
    font-weight: 700;
    border: 1px solid #1da1f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.name {
    font-size: 17px;
    font-weight: 700;
    color: #1da1f2;
}
.details {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
}
.about {
    color: #ccc;
    padding-top: 5px;
}
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////// */