@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    cursor: pointer;
}
:root {
    --title: 3.5rem;
    --subtitle: 2.5rem;
    --parrafos: 1rem;
    --footer: .7rem;
    --color1: #000000;
    --color2: #ffffff;
    --color3: #E0E0E0;
    --color4: #F3F3F3;
    --color5: #242424;
    --color6: #0f0000;
}
.left {
    width: 5%;
    height: auto;
}
.right {
    width: 5%;
    height: auto;
}
/* Header Inicio */
.header {
    width: 100%;
    height: 100vh;
    background: var(--color6);
    display: grid;
    position: relative;
    overflow: hidden;
}
video {
    width: auto;
    height: 100vh;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(calc((100% - 100vw) / 2));
    z-index: 10;
    opacity: .5;
}
header{
    width: 100%;
    height: 5em;
    display: flex;
    z-index: 15;
}
.logo {
    width: 45%;
    height: auto;
    position: relative;
    z-index: 20;
}
.logo img {
    width: 6em;
    height: auto;
    position: absolute;
    top: 0.5em;
    left: 0;
    z-index: 20;
}
.nav2 {
    display: none;
}
.nav {
    width: 45%;
    height: auto;
}
.ulCelu {
    font-family: "Roboto";
    font-weight: 700;
    position: absolute;
    top: 5em;
    left: 0;
    z-index: 10;
    color: var(--color2);
    background: var(--color5);
    padding: 4em 0 3em 0;
    text-align: center;
    display: none;
    transition: all 1s;
    animation: menuCeluOut .5s ease-in;
}
@keyframes menuCeluOut{
    0%{
        height: 16em;
    }
    100%{
        height: 0px;
    }
}
.ulCelu a {
    color: var(--color2);
}
#hamburger {
    float: right;
    margin-top: .5em;
}
#hamburger button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 5em;
    height: 5em;
}
#hamburger button span {
    width: 60%;
    height: 0.3em;
    border-radius: 2em;
    background: var(--color2);
    display: block;
    margin: 5px auto;

    animation-duration: .5s;
    animation-fill-mode: forwards;
}
#hamburger button.open .top-line {
    animation-name: top-line-animation;
}
#hamburger button.open .middle-line {
    animation-name: middle-line-animation;
}
#hamburger button.open .bottom-line {
    animation-name: bottom-line-animation;
}
#hamburger button .top-line {
    animation-name: top-line-animation-close;
}
#hamburger button .middle-line {
    animation-name: middle-line-animation-close;
}
#hamburger button .bottom-line {
    animation-name: bottom-line-animation-close;
}
@keyframes top-line-animation {

    50%,
    100% {
        margin: 0 auto;
        transform: translateY(4px) rotate(-45deg);
    }
}
@keyframes bottom-line-animation {

    50%,
    100% {
        margin: 0 auto;
        transform: translateY(-4px) rotate(45deg);
    }
}
@keyframes middle-line-animation {

    20%,
    100% {
        margin: 0 auto;
        width: 0;
        opacity: 0;
    }
}
@keyframes top-line-animation-close {
    0% {
        margin: 0 auto;
        transform: translateY(5px) rotate(-45deg);
    }

    50%,
    100% {
        margin: 5px auto;
        transform: translateY(0px) rotate(0deg);
    }
}
@keyframes bottom-line-animation-close {
    0% {
        margin: 0 auto;
        transform: translateY(-5px) rotate(45deg);
    }

    50%,
    100% {
        margin: 5px auto;
        transform: translateY(0px) rotate(0deg);
    }
}
@keyframes middle-line-animation-close {
    0% {
        margin: 0 auto;
        width: 0;
        opacity: 0;
    }

    20%,
    100% {
        margin: 0 auto;
        width: 60%;
        opacity: 1;
    }
}
.active {
    width: 100%;
    background: var(--color5);
    color: var(--color2);
    transition: all 1s;
    display: flex;
    flex-direction: column;
    gap: 2em;
    box-shadow: 0px 10px 20px var(--color5);
    animation: menuCelu .5s ease-in;
    overflow: hidden;
}
@keyframes menuCelu{
    0%{
        height: 1px;
    }
    100%{
        height: 16em;
    }
}
#linea2 {
    width: 90%;
    height: 1px;
    margin: auto;
    background-color: var(--color2);
    opacity: .3;
}
.global {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.global img {
    width: 1.5em;
    height: auto;
    margin: 0 10px 0 0;
    align-content: center;
}
.global p {
    margin: auto 0;
}
.language {
    width: 100%;
    height: auto;
    position: relative;
}
.language input[type="checkbox"] {
    width: 10em;
    height: 2em;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    left: 33%;
}
.language input[type="checkbox"]:checked~.submenu {
    display: inherit;
    transition: all .3s;
    animation: subMenuCelu .3s ease-in;
}
@keyframes subMenuCelu {
    0%{
        height: 0;
    }
    100%{
        height: 5em;
    }
}
.submenu {
    width: 100%;
    background: var(--color1);
    margin-top: 1em;
    display: none;
    padding: .1em 0;
    overflow: hidden;
}
.submenu li {
    margin: 2em 0;
}
#btn1{
    padding: 0.5em 1em;
    border: solid 1px var(--color2);
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--color2);
    overflow: hidden;
    transition: 1s all ease;
}
#btn1::before{
    background: var(--color2);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    transition: all 0.6s ease;
}
#btn1:hover{
    color: var(--color1);
}
#btn1::before{
    width: 0%;
    height: 100%;
} 
#btn1:hover::before{
    width: 100%;
}
/* Title Inicio */
.title{
    width: 100%;
    height: auto;
    text-align: center;
    z-index: 10;
}
.title h1{
    font-family: "Roboto";
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color2);
}
.title h2{
    font-family: "Roboto";
    font-weight: 200;
    font-size: 1.2rem;
    color: var(--color2);
    margin: 1em 0;
}
.title h2 span{
    font-weight: 400;
}
.title a{
    width: 10em;
    height: 3em;
    background: none;
    border: solid 1px var(--color2);
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1rem;
    margin: auto;
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--color2);
    overflow: hidden;
    transition: 1s all ease;
}
.title a::before{
    background: var(--color2);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    transition: all 0.6s ease;
}
.title a:hover{
    color: var(--color1);
}
.btn1::before{
    width: 0%;
    height: 100%;
} 
.btn1:hover::before{
    width: 100%;
}
.title a p{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Title Fin */
/* Header Fin */
/* About Us Inicio */
.about{
    width: 100%;
    height: auto;
    background: var(--color3);
}
.nosotros{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
}
.nosotros picture{
    width: 100%;
    height: 13em;
    overflow: hidden;
    background: var(--color6);
}
.nosotros picture img{
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: imgBox 10s infinite ease-in-out;
    opacity: .6;
}
@keyframes imgBox {
    0%{
        transform: scale(100%);
    }
    50%{
        transform: scale(110%);
    }
    100%{
        transform: scale(100%);
    }
}
.textNosotros{
    width: 100%;
    height: auto;
}
.textNosotros h2{
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color1);
    margin: 2em 0 1em 0;
    text-align: center;
}
.textNosotros p{
    font-family: "Roboto";
    font-weight: 400;
    font-size: 1rem;
    color: var(--color1);
    margin: 1em 0;
    text-align: center;
    line-height: 1.5em;
}
.textNosotros p span{
    font-weight: 700;
}
.experiencia{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
}
.experiencia picture{
    width: 100%;
    height: 11.5em;
    overflow: hidden;
    background: var(--color6);
}
.experiencia picture img{
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: imgBox 10s infinite ease-in-out;
    opacity: .6;
}
.textExperiencias{
    width: 100%;
    height: auto;
}
.textExperiencias h2{
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color1);
    margin: 4em 0 1em 0;
    text-align: center;
}
.textExperiencias > p{
    font-family: "Roboto";
    font-weight: 400;
    font-size: 1rem;
    color: var(--color1);
    margin: 1em 0;
    text-align: center;
    line-height: 1.5em;
}
.btnBlack{
    margin: 2em auto;
}
.btnBlack a{
    width: 10em;
    height: 3em;
    background: none;
    border: solid 1px var(--color1);
    margin: auto;
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--color1);
    overflow: hidden;
    transition: 1s all ease;
}
.btnBlack a::before{
    background: var(--color1);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    transition: all 0.6s ease;
}
#btnBlack{
    width: 100%;
    height: 100%;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    transition: 1s all ease;
}
#btnBlack:hover{
    color: var(--color2);
    transition: 1s all ease;
}
.foundation{
    width: 100%;
    height: auto;
    position: relative;
    padding: 4em 0 2em 0;
}
.headerFoundation{
    width: 100%;
    height: auto;
}
.headerFoundation picture{
    width: 100%;
    height: 30em;
    display: flex;
    background: var(--color6);
}
.headerFoundation picture img{
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: .6;
}
.boxFloat{
    width: 80%;
    height: auto;
    position: absolute;
    top: 22em;
    left: 0;
    right: 0;
    margin: auto;
}
.boxFloat picture{
    width: 100%;
    height: auto;
    display: flex;
}
.boxFloat picture img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.textFloat{
    width: 100%;
    height: auto;
    background: var(--color1);
    color: var(--color2);
}
.textFloat h3{
    width: 90%;
    height: auto;
    padding: 1em 0;
    margin: auto;
    text-align: center;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5rem;
}
.textFloat p{
    width: 80%;
    height: auto;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 1rem;
    text-align: justify;
    margin: auto;
    padding: 0 0 2em 0;
    line-height: 1.2em;
}
.foundation > h2{
    width: 100%;
    height: auto;
    margin: 12em 0 0 0;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}
.textFoundation{
    width: 90%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 1em;
    margin: 2em auto;
}
.contFoundation{
    width: 100%;
    height: auto;
}
.contFoundation picture{
    width: 100%;
    height: auto;
    display: flex;
}
.contFoundation picture img{
    width: 6em;
    height: auto;
    margin: auto;
}
.contFoundation h4{
    width: 100%;
    height: auto;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    margin: 1em auto;
}
.contFoundation p{
    width: 100%;
    height: auto;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 1rem;
    text-align: center;
}
/* About Us Fin */
/* Invest Us Inicio */
.invest{
    width: 100%;
    height: auto;
    background: var(--color4);
    padding: 2em 0 0 0
}
.invest h2{
    width: 100%;
    height: auto;
    color: var(--color1);
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
    margin: 1em 0;
}
.contCardYears{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.cardYear{
    width: 100%;
    height: auto;
    background: var(--color3);
    border-radius: .5em .5em 0 0;
    border: 1px solid rgba(0, 0, 0, .1);
}
.imgCard{
    width: 100%;
    height: 15em;
    border-radius: .5em .5em 0 0;
}
#imgCard{
    background-image: url(../img/blockchain.webp);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
}
#imgCard1{
    background-image: url(../img/short.webp);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
}
#imgCard2{
    background-image: url(../img/medium.webp);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
}
#imgCard3{
    background-image: url(../img/long.webp);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
}
.yearCard{
    width: 80%;
    height: auto;
    margin: 1em auto;
}
.yearCard p{
    font-family: "Roboto";
    font-weight: 300;
    font-size: 1em;
}
.barra {
    width: 100%;
    height: 0.5em;
    overflow: hidden;
    border-radius: 1em;
    background: var(--color2);
    margin: 0.5em auto;
}
#colorBarra{
    width: 20%;
    height: 100%;
    background: #a98426;
    border-radius: 0 1em 1em 0;
}
#colorBarra1{
    width: 30%;
    height: 100%;
    background: #622128;
    border-radius: 0 1em 1em 0;
}
#colorBarra2{
    width: 70%;
    height: 100%;
    background: #A3B2A4;
    border-radius: 0 1em 1em 0;
}
#colorBarra3{
    width: 100%;
    height: 100%;
    background: #475f9c;
    border-radius: 0 1em 1em 0;
}
.cardYear h3{
    width: 80%;
    height: auto;
    margin: 1em auto;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5em;
}
.cardYear > p{
    width: 80%;
    height: auto;
    margin: 1em auto;
    padding: 0 0 2em 0;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 1em;
    line-height: 1.2em;
    text-align: justify;
}
.invest > p{
    width: 80%;
    height: auto;
    margin: 1em auto;
    padding: 0 0 2em 0;
    font-family: "Roboto";
    font-weight: 500;
    font-size: 1em;
    line-height: 1.5em;
    text-align: center;
}
.contCardFunds{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.cardFund{
    width: 100%;
    height: 10em;
    background: var(--color5);
    color: var(--color2);
    position: relative;
    border-radius: 1em;
}
.rent {
    width: 10em;
    height: 2em;
    position: absolute;
    top: 1em;
    right: 1em;
    background: var(--color1);
    font-family: "Roboto";
    font-weight: 700;
    font-size: .8em;
    border-radius: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cardFund h3{
    width: 90%;
    height: auto;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 1em;
    margin: auto;
    padding: 3em 0 0 0;
}
.cardFund p{
    width: 90%;
    height: auto;
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5em;
    margin: auto;
    padding: 1em 0 0 0;
}
.data{
    width: 100%;
    height: auto;
    background: var(--color5);
    color: var(--color2);
    display: flex;
    flex-direction: column;
    gap: 4em;
    padding: 4em 0;
}
.info{
    width: 15em;
    height: auto;
    text-align: center;
    margin: auto;
}
.info span{
    font-family: "Roboto";
    font-weight: 700;
    font-size: 5em;
}
.info p{
    font-family: "Roboto";
    font-weight: 400;
    font-size: 1em;
}
/* Invest Fin */
/* Contact Inicio */
.contact{
    width: 100%;
    height: auto;
    background-color: var(--color5);
    padding: 4em 0;
}
.contact h2{
    width: 100%;
    height: auto;
    color: var(--color2);
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
    margin: 1em 0;
}
.contact > p {
    width: 80%;
    height: auto;
    color: var(--color2);
    margin: 1em auto;
    padding: 0 0 2em 0;
    font-family: "Roboto";
    font-weight: 500;
    font-size: 1em;
    line-height: 1.5em;
    text-align: center;
}
.register{
    width: 80%;
    height: auto;
    margin: auto;
}
.register form{
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: 0 0 3em 0;
}
.register form input{
    width: 100%;
    height: 2em;
    background: none;
    border: 1px solid var(--color1);
    font-family: "Roboto";
    font-size: 1rem;
    font-weight: 400;
    color: var(--color2);
    text-align: center;
}
.register form input::placeholder{
    color: var(--color2);
    opacity: .5;
}
#ver{
    width: 10em;
    height: 2em;
    margin: auto;
    background: none;
    border: 1px solid var(--color2);
    font-family: "Roboto";
    font-size: 1rem;
    font-weight: 700;
    color: var(--color2);
    cursor: pointer;
}
/* Contact Fin */
/* Footer Inicio */
footer{
    width: 100%;
    height: auto;
    background: var(--color1);
    display: flex;
}
.contFooter{
    width: 90%;
    height: auto;
}
.logoFooter {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 2em 0;
}
.logoFooter img {
    width: 8em;
    height: auto;
    margin: auto;
}
.news{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
}
.news h2{
    color: var(--color2);
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
}
.news form{
    width: 100%;
    height: auto;
    margin: 1em auto;
}
#emailNews{
    width: 70%;
    height: 2em;
    background: none;
    border: none;
    font-family: "Roboto";
    font-size: 1rem;
    font-weight: 400;
    color: var(--color2);
}
#emailNews::placeholder{
    color: var(--color2);
    opacity: .5;
}
#sumitNews{
    width: 27%;
    height: 2em;
    background: none;
    border: 1px solid var(--color2);
    font-family: "Roboto";
    font-size: 1rem;
    font-weight: 700;
    color: var(--color2);
    cursor: pointer;
}
.news hr{
    width: 100%;
    color: var(--color2);
}
.copy{
    width: 100%;
    height: auto;
    margin: 0 0 2em 0;
}
.copy hr{
    width: 100%;
    color: var(--color2);
    opacity: .2;
    margin: 2em 0;
}
.content_copy{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
    font-family: "Roboto";
    font-size: .8rem;
    font-weight: 200;
    color: var(--color2);
    opacity: .3;
}
/* Footer Fin */
@media only screen and (min-width:481px) and (max-width:768px){
    /* Header Inicio */
    video {
        width: 100vw;
        height: auto;
    }
    /* Header Fin */
    /* About Us Inicio */
    .nosotros {
        flex-direction: inherit;
        gap: 2em;
        align-items: center;
    }
    .experiencia {
        flex-direction: row-reverse;
        gap: 2em;
        align-items: center;
    }
    .headerFoundation picture {
        height: 20em;
    }
    .boxFloat {
        width: 26em;
        top: 6.6em;
        left: -17em;
    }
    .foundation > h2 {
        width: 37%;
        margin: 4em 0 2em 0;
        text-align: left;
        float: right;
    }
    /* About Us Fin */
    /* Invest Us Inicio */
    .contCardYears {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-direction: initial;
        gap: 1em;
    }
    .imgCard {
        height: 10em;
    }
    #imgCard {
        background-position: 50% 0%;
    }
    #imgCard1 {
        background-position: 50% 0%;
    }
    #imgCard2 {
        background-position: 50% 0%;
    }
    #imgCard3 {
        background-position: 50% 0%;
    }
    .contCardFunds {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .data {
        display: grid;
        flex-direction: inherit;
        grid-template-columns: repeat(2, 1fr);
    }
    /* Invest Fin */
    /* Contact Inicio */
    .register form {
        display: grid;
        flex-direction: inherit;
        grid-template-columns: repeat(2, 1fr);
    }
    /* Contact Fin */
    /* Footer Inicio */
    .block1Footer{
        display: flex;
        margin: 2em 0 0 0;
    }
    .logoFooter {
        width: 50%;
        text-align: left;
    }
    .logoFooter img {
        width: 11em;
    }
    .copy hr {
        margin: 0 0 1em 0;
    }
    .content_copy {
        flex-direction: inherit;
        justify-content: center;
    }
    /* Footer Fin */
}
@media only screen and (min-width:769px) and (max-width:1279px){
    /* Header Inicio */
    /* Title Inicio */
    /* Title Fin */
    /* Header Fin */
    /* About Us Inicio */
    .about{
        padding: 2em 0;
    }
    .nosotros {
        width: 80%;
        flex-direction: inherit;
        gap: 2em;
        align-items: center;
        margin: 4em auto;
    }
    .nosotros picture {
        max-width: 32em;
        height: auto;
        max-height: 17em;
    }
    .textNosotros h2 {
        margin: 1em 0;
    }
    .textNosotros p {
        text-align: justify;
    }
    .experiencia {
        width: 80%;
        flex-direction: row-reverse;
        gap: 2em;
        align-items: center;
        margin: 4em auto;
    }
    .experiencia picture {
        max-width: 32em;
        height: auto;
        max-height: 17em;
    }
    .textExperiencias h2 {
        margin: 1em 0;
    }
    .textExperiencias > p {
        text-align: justify;
    }
    .headerFoundation picture {
        height: 20em;
    }
    .boxFloat {
        width: 26em;
        top: 6.6em;
        right: 60%;
    }
    .foundation > h2 {
        width: 46%;
        margin: 5em 0 7em 0;
        text-align: left;
        float: right;
    }
    .textFoundation {
        gap: 4em 3em;
    }
    /* About Us Fin */
    /* Invest Us Inicio */
    .contCardYears {
        flex-direction: initial;
        gap: 1em;
    }
    .imgCard {
        height: 10em;
    }
    #imgCard {
        background-position: 50% 50%;
    }
    #imgCard1 {
        background-position: 50% 50%;
    }
    #imgCard2 {
        background-position: 50% 50%;
    }
    #imgCard3 {
        background-position: 50% 50%;
    }
    .contCardFunds {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .data {
        flex-direction: initial;
        gap: 1em;
    }
    .info span {
        font-size: 4em;
    }
    /* Invest Fin */
    /* Contact Inicio */
    .register form {
        display: grid;
        flex-direction: inherit;
        grid-template-columns: repeat(2, 1fr);
    }
    .register form input {
        text-align: inherit;
    }
    .register form input::placeholder{
        padding: 0 0 0 .5em;
    }
    #ver {
        text-align: center;
    }
    /* Contact Fin */
    /* Footer Inicio */
    .block1Footer{
        display: flex;
        margin: 2em 0 0 0;
    }
    .logoFooter {
        width: 50%;
        text-align: left;
    }
    .logoFooter img {
        width: 11em;
    }
    .copy hr {
        margin: 0 0 1em 0;
    }
    .content_copy {
        flex-direction: inherit;
        justify-content: center;
    }
    /* Footer Fin */
}
@media only screen and (min-width:1280px){
    .left {
        width: 10%;
    }
    .right {
        width: 10%;
    }
     /* Header Inicio */
     video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    .logo {
        width: 30%;
    }
    .logo img {
        width: 7em;
    }
    .nav {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: right;
    }
    .menu{
        width: auto;
    }
    .ulCelu {
        width: 100%;
        position: relative;
        top: 0;
        color: var(--color2);
        background: none;
        padding: 0;
        display: flex;
        gap: 2em;
        align-items: center;
        float: right;
    }
    .ulCelu li{
        width: auto;
    }
    .ulCelu a {
        color: var(--color2);
    }
    .ulCelu a:hover{
        opacity: .5;
    }
    #linea2 {
        display: none;
    }
    #hamburger {
        display: none;
    }

    .language input[type="checkbox"] {
        width: 8em;
        height: 3em;
        top: 0;
        left: 0;
    }

    .language input[type="checkbox"]:checked~.submenu {
        margin-top: 1.7em;
    }

    .submenu {
        position: absolute;
        background: var(--color2);
    }

    .submenu li {
        margin: 1em 0;
    }
    .submenu a{
        color: var(--color1);
    }
    /* Title Inicio */
    .title h1{
        font-size: 3rem;
    }
    .title h2{
        font-size: 1.7rem;
    }
    .title a{
        font-size: 1.3rem;
    }
    /* Title Fin */
    /* Header Fin */
    /* About Us Inicio */
    .about{
        padding: 2em 0;
    }
    .nosotros {
        width: 80%;
        flex-direction: inherit;
        gap: 2em;
        align-items: center;
        margin: 4em auto;
    }
    .nosotros picture {
        max-width: 32em;
        height: 20em;
    }
    .textNosotros h2 {
        margin: 1em 0;
    }
    .textNosotros p {
        text-align: justify;
    }
    .experiencia {
        width: 80%;
        flex-direction: row-reverse;
        gap: 2em;
        align-items: center;
        margin: 4em auto;
    }
    .experiencia picture {
        max-width: 32em;
        height: 18em;
    }
    .textExperiencias h2 {
        margin: 1em 0;
    }
    .textExperiencias > p {
        text-align: justify;
    }
    .headerFoundation picture {
        height: 35em;
    }
    .boxFloat {
        width: 30em;
        top: 19em;
        right: 60%;
    }
    .textFloat p {
        line-height: 1.5em;
    }
    .foundation > h2 {
        width: 55%;
        margin: 4em 0 5em 0;
        font-size: 2rem;
        text-align: left;
        float: right;
    }
    .textFoundation {
        width: 80%;
        grid-template-columns: repeat(4, 1fr);
        gap: 4em 6em;
    }
    .contFoundation h4 {
        font-size: 1.3rem;
    }
    .contFoundation p {
        text-align: justify;
    }
    /* About Us Fin */
    /* Invest Us Inicio */
    .invest h2 {
        font-size: 2.5em;
    }
    .contCardYears {
        width: 90%;
        max-width: 75em;
        margin: 6em auto;
        flex-direction: initial;
        gap: 2em;
    }
    .imgCard {
        height: 13em;
    }
    #imgCard {
        background-position: 50% 50%;
    }
    #imgCard1 {
        background-position: 50% 50%;
    }
    #imgCard2 {
        background-position: 50% 50%;
    }
    #imgCard3 {
        background-position: 50% 50%;
    }
    .yearCard {
        margin: 3em auto;
    }
    .invest > p {
        font-weight: 400;
        font-size: 1.5em;
    }
    .contCardFunds {
        width: 80%;
        display: grid;
        padding: 0 0 3em 0;
        grid-template-columns: repeat(4,1fr);
    }
    .data {
        flex-direction: initial;
        justify-content: center;
    }
    .info {
        margin: 0;
    }
    .info span {
        font-size: 4em;
    }
    /* Invest Fin */
    /* Contact Inicio */
    .contact h2 {
        font-size: 2.5em;
    }
    .contact > p {
        font-weight: 400;
        font-size: 1.5em;
    }
    .register form {
        display: grid;
        flex-direction: inherit;
        grid-template-columns: repeat(3, 1fr);
    }
    .register form input {
        text-align: inherit;
    }
    .register form input::placeholder{
        padding: 0 0 0 .5em;
    }
    #ver {
        text-align: center;
    }
    #ver:hover{
        color: var(--color1);
        background: var(--color2);
        transition: all .5s ease;
    }
    /* Contact Fin */
    /* Footer Inicio */
    .contFooter {
        width: 50%;
        margin: auto;
    }
    .block1Footer{
        display: flex;
        margin: 2em 0 0 0;
    }
    .logoFooter {
        width: 50%;
        text-align: left;
    }
    .logoFooter img {
        width: 11em;
    }
    .news h2 {
        font-size: 2em;
    }
    .copy hr {
        margin: 0 0 1em 0;
    }
    .content_copy {
        flex-direction: inherit;
        justify-content: center;
        font-size: 1rem;
        font-weight: 400;
    }
    #sumitNews:hover{
        color: var(--color1);
        background: var(--color2);
        transition: all .5s ease;
    }
    /* Footer Fin */
}