@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
    margin :0;
    padding: 0;
    background-color: rgba(17,17,17,255) !important;
}
*{
    font-family: "Staatliches", sans-serif;
}
/*NAVABR*/
.navbar{
    margin: 15px;
    position: absolute;
    text-align: center;
}
.navbar .container-fluid .collapse{
    padding-left: 240px;
    font-weight: 400;
}
.box-button {
    margin-left: auto !important;
    padding-right: 20%;
}
.box-button-2{
    padding: 10% 20%;
}
.buton-register {
    background-color: rgb(231, 219, 204);
    border-radius: 10px;
    padding: 2px 2px;
    cursor: pointer;
}


.buton-register .text {
    font-size: 14px;
    background-color: rgb(11, 10, 10);
    border-radius: 10px;
    font-weight: 800;
    padding: 10px 20px;
    text-align: center;
}

.buton-register .text a {
    color: rgb(238, 230, 230);
    display: block;
    text-decoration: none;
}

.buton-register .text:hover {
    background-color: rgb(249, 246, 246);
    color: rgb(0, 0, 0);
    animation: bounce 0.4s ease-in-out infinite;
}

.buton-register .text:hover a {
    color: rgb(0, 0, 0);
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/*-------------------------------------------------*/

.education{
    margin: 0;
    padding: 0;

}
.education .container{
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    overflow: hidden; 
}
.contenido-desplazamiento {
    height: 60%;
    display: inline-block;
    white-space: nowrap;
    font-size: 18vw;
    color: rgb(251, 251, 251);
    font-family: 'Antonio';
    animation: desplazamiento 100s linear infinite;
    white-space: nowrap;
}

@keyframes desplazamiento {
    0% {
        transform: translateX(2%); 
    }
    100% {
        transform: translateX(-100%); 
    }
}
/* --------------------------------------------------------------------------------------------- */

.container-text{
    height: auto;
    width: 100%;
    display: flex;
    margin: 5vh 0;
}
.container-text .lenguague{
       width: 50%;
       height: auto;
       display: flex;
       justify-content: center;
        align-items: end;
       font-size: 3.1vw;
       color: white;
       gap: 3%;
}
.container-text .lenguague .item{
    width: 15%;
    height: 15%;
    background-color: black;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-text .certificates{
    width: 50%;
    height: 39vh;
    padding: 1% 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.container-text .certificates .title{
    font-size: 0.9vw;
    color: #828282;
    font-family: "Roboto", sans-serif;
}
.container-text .certificates p{
    margin-top: 6%;
    font-size: 1.1vw;
    color: white;
    font-family: "Roboto", sans-serif;
    text-align: justify;
}
.container-text .certificates .button{
   width: 27%;
   height: 20%;
   background-color: white;
   color: black;
   border-radius: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
}
.container-text .certificates .button:hover{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: 1px solid #fff;
    cursor: pointer;
}
/* ------------------------------------------------------------------------------------- */
/* Skills */
.skills{
    max-width: 100%;
    background-color: rgb(255, 255, 255);
}

.skills .text-container{
   padding: 10% 0 0 30%;
}

.skills .text-container h2{
    font-size: 7vw;
    color: #000;
    line-height: 5.2vw;
}
.skills .text-container p{
    font-size: 1.2vw;
    padding:10% 0 10% 0;
    color: #211f1f;
    font-family: 'Roboto',sans-serif;
}
.skills .carusel-skills{
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.skills .carusel-skills .desplazamiento-skills {
    display: flex;
    animation: desplazamiento3 70s linear infinite;
    gap: 25vh;
    width: 1750vh;
    height: auto;
    white-space: nowrap;
    background-color: #000000;
}
@keyframes desplazamiento3 {
    0% {
        transform: translateX(0%); 
    }
    100% {
        transform: translateX(-100%); 
    }
}

.skills .carusel-skills .desplazamiento-skills .item-car{
    height: 20vw;
    display: flex;
    width: 28vw;
    transition: transform 0.3s ease;
}
.skills .carusel-skills .desplazamiento-skills .item-car:hover{
    transform: scale(1.1);
}
.skills .carusel-skills .desplazamiento-skills .item-car .logo {
    color: #ffffff;
    font-size: 17vw;  
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.skills .carusel-skills .desplazamiento-skills .item-car .logo img{
    height: 285px;
    width: 285px;
}
footer { 
    width: 100%; 
    height: 10%; 
    background-color: #000000; 
    color: white; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
} 
    
     
@media (max-width: 1300px) {
    .contenido-desplazamiento {
        font-size: 20vw;
        animation: desplazamiento 110s linear infinite;
        white-space: nowrap;
    }
    .container-text .lenguague .item {
        width: 25%;
        height: 15%;
        font-size: 1.5vw;
    }
    .container-text .certificates .title {
        font-size: 1.7vw;
    }
    .container-text .certificates {
        height: 70vh;
    }
    .container-text .certificates p {
        font-size: 1.5vw;
        margin-top: 15%;
    }
    .container-text .certificates .button {
        width: 27%;
        height: 15%;
    }
    .container-text .lenguague {
        font-size: 5.1vw;
    }
    .skills .text-container p {
        font-size: 2.1vw;
    }
    .skills .carusel-skills .desplazamiento-skills .item-car .logo img{
        height: 180px;
        width: 180px;
    }
}
/*Media querys*/
@media (max-width: 992px) {
    .buton-register{
        display: none;
    }
    .navbar .container-fluid .collapse {
        text-align: center;
        padding: 0;
    }
    .navbar .container-fluid {
        justify-content: right !important;
    }
    /* ------------------------------------------------------- */
    .contenido-desplazamiento {
        font-size: 23vw;
        animation: desplazamiento 90s linear infinite;
        height: 40%;
    }
    .container-text .lenguague {
        flex-direction: column;
        align-items: center;
        font-size: 11vw;
    }
    .container-text .lenguague .item {
        width: 35%;
        height: 10%;
        font-size: 2.5vw;
        margin-top: 30px;
        
    }
    .container-text .certificates {
        height: 80vh;
    }
    .container-text .certificates p {
        font-size: 2.5vw;
    }
    .container-text .certificates .button {
        width: 45%;
        height: 10%;
    }
    .skills .text-container p {
        font-size: 3.3vw;
    }
    .skills .text-container {
        text-align: center;
        padding: 70px;
    }
    .skills .carusel-skills .desplazamiento-skills {
        gap: 50px;
        margin-left: 250vw;
    }
  
    .skills .carusel-skills .desplazamiento-skills .item-car .logo {
        font-size: 28vw;
    }
    .skills .carusel-skills .desplazamiento-skills {
        gap: 22vh;    
        animation: desplazamiento3 60s linear infinite;  
    }

}
@media (max-width: 525px) {
    .contenido-desplazamiento {
        font-size: 42vw;
        animation: desplazamiento 100s linear infinite;
    }
    .container-text .lenguague {
        top: 32%;
        font-size: 17vw;
    }
    .container-text .lenguague .item {
        width: 45%;
        height: 10%;
        font-size: 3vw;
    }
    .container-text .certificates .title {
        font-size: 4.7vw;
    }
    .container-text .certificates p {
        font-size: 3vw;
    }
    
    .container-text .certificates .button {
        width: 64%;
        height: 10%;
    }
    .skills .text-container h2 {
        font-size: 14vw;
        line-height: 11.2vw;
    }
    .skills .text-container {
        text-align: center;
        padding: 6%;
    }
    .skills .text-container p {
        font-size: 4.3vw;
    }
    .skills .carusel-skills .desplazamiento-skills .item-car .logo {
        color: #ffffff;
        font-size: 37vw;
    }
    .skills .carusel-skills .desplazamiento-skills .item-car .logo img{
        height: 160px;
        width: 140px;
    }
    .skills .carusel-skills .desplazamiento-skills {
        gap: 50px;
        margin-left: 272vw;
    }
    .skills .carusel-skills .desplazamiento-skills {
        gap: 60px;
    }
    .skills .carusel-skills .desplazamiento-skills {
        animation: desplazamiento3 70s linear infinite;  
        gap: 20vh;
    }
}
