* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
  }

body {
    background-color: #2e2b2b;
}

body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: #2B2727;        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #5f5f5f;    /* color of the scroll thumb */
    border-radius: 5px;       /* roundness of the scroll thumb */
    border: 1px solid #5f5f5f;  /* creates padding around scroll thumb */
  }

header {
    background-color: #1C1C1C;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}
header > nav{
    width: 90%;
    margin: auto;
}
.link-logo {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 16px;
}

.link-logo>label {
    color: white;
    font-size: 16px;
    background-color: #007ced;
    padding: 10px;
    clip-path: circle();
    text-decoration: none;
    font-weight: 800;
    margin-right: 10px;
}

.link-logo>span {
    font-weight: 700;
}

.menu-top {
    display: none;
}

.menu-rigth:hover{
    box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.2);
}

.menu-rigth{
    position: fixed;
    display: none;
    right: 20px;
    top: 35%;
    background-color: #222222;
    border-radius: 50px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    transition: all .4s;
    background-image: linear-gradient(0deg, #1c1c1c, #2e2b2b);
}
.list-menu-rigth{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;    
    align-items: center;
}
.list-menu-rigth > li{
    margin: 20px 0px;
}
.list-menu-rigth > li > a{
    padding: 10px;
}


.list-menu-rigth > li > a > i{
    font-size: 20px;
    color: #444444;
    transition: color .4s;
} 
.list-menu-rigth li a:hover > i{
    color: white;
}
.row{
    width: 100%;
}
.col{
    width: 90%;
    margin: auto;
}
.row-1 {
    background-color: #1C1C1C;
    margin-top: 70px;
    min-height: 70vh;
    position: relative;
}

.col-1 {
    padding: 40px 0px;
}

.fig-profile {
    width: 250px;
    height: 250px;
    margin: auto;
    background-color: white;
    border-radius: 50%;
    border: 10px solid#444444;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.img-profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: circle();
    object-position: 0px 0px;
}
.description-profile{
    width: 80%;
    text-align: center;
    margin: 40px auto;

}
.title-desc-prof{
    color: #aaa;
    font-size: 14px;
    font-weight: 300;
}
.name-desc-prof{
    margin-top: 10px;
    font-size: 36px;
    color: #f5f5f5;
}
.desc-prof{
    margin-top: 10px;
    text-align: left;
    color: #d5d5d5;
    font-size: 18px;
}
.button-profile{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.button-profile >button{
    background-color: #2B2727;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 700;
    color: #f5f5f5;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    margin: 15px 0px;
    background-image: linear-gradient(0deg, #1c1c1c, #2e2b2b);
}
.btn-cv{
    border: 2px solid #007ced;
}
.btn-contact{
    border: none;
}

.scroll-page{
    position:relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 10px;
}
.mouse{
position: relative;
width: 20px;
height: 30px;
background-color: transparent;
border-radius:50px ;
border: 2px solid rgba(255, 255, 255, 0.5);
display: flex;
justify-content: center;
padding-top: 7px;
}
.scroll{
width: 4px;
height: 5px;
background-color: rgba(255, 255, 255, 0.2);
border-radius:50px ;
animation-name: mouseScrollPage;
animation-duration: 1.5s;
animation-iteration-count: infinite;
}

.mouse::after{
    position: absolute;
    content:'';
    bottom: -20px;
    border: solid rgba(255, 255, 255, 0.5); 
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    border-radius: 0px 0px 4px 0px;
    animation-name: arrowScrollPage;
animation-duration: 1.8s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}

.mouse::before{
    position: absolute;
    content:'';
    bottom: -28px;
    border: solid rgba(255, 255, 255, 0.5); 
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    border-radius: 0px 0px 4px 0px;
    animation-name: arrowScrollPage;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    animation-timing-function: ease-in;
}


@keyframes arrowScrollPage {
    from{
        margin: 0px;
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.5); 
    }
    to{
        border-color: rgba(255, 255, 255, 0.2); 
        margin-top: 5px;
        opacity: 0;
    }
}

@keyframes mouseScrollPage {
    from{
        margin: 0px;
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.5); 
    }
    to{
        background-color: rgba(255, 255, 255, 0.2); 
        margin-top: 10px;
        opacity: 0;
    }
}


.title-row{
    color: #f5f5f5;
    margin: 70px 0px;
    position: relative;
}
.name-title{
    font-size: 30px;
}
.title-row::before{
    position: absolute;
    bottom: -10px;
    left: 0px;
    content: '';
    height: 2px;
    background-color: #5f5f5f;
    width: 40%;
    max-width: 200px;
}
.title-row::after{
    position: absolute;
    bottom: -10px;
    left: 0px;
    content: '';
    height: 2px;
    background-color: #007ced;
    width: 10%;
    max-width: 200px;
}
.container-profile{
    padding-left: 20px;
}
.info-cont-prof{
    margin: 50px 0px;
}
.info-cont-prof > i{
        font-size: 45px;
        color: #007ced;
}
.desc-cont-prof{
    margin-top: 20px;
}
.desc-cont-prof >h1{
    color: #f5f5f5;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.desc-cont-prof >p{
    color: #d5d5d5;
    font-size: 18px;
}
.container-col-3{
    margin-top: 70px;
}
.info-col-3{
    position: relative;
    margin-top: 40px;
}
.info-col-3::before{
    position: absolute;
    content: '';
    top:-5%;
    left: 15px;
    height: 120%;
    width: 1px;
    background-color: #5f5f5f;
    z-index: -1;
}
.info-col-3::after{
    position: absolute;
    content: '';
    bottom:-5%;
    left: 15px;
    height: 1px;
    width: 95%;
    background-color: #5f5f5f;
    z-index: -1;
}
.year-col-3{
    font-size: 16px;
    color: #f5f5f5;
    background-color: #2e2b2b;
    padding: 2px 15px;
    border-radius: 20px;
    border: 2px solid #007ced;
    font-weight: 700;
    margin-right: 15px;
}
.title-cont-col-3{
    font-size: 14px;
    color: #aaaaaa;
    display: -webkit-box;
}
.description-col-3{
    margin-top: 30px;
    padding-left: 40px;
}
.title-desc-col-3{
    font-size: 18px;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 20px;
}
.description-col-3>p{
    color: #d5d5d5;
    font-size: 16px;
}
.col-4{
    padding-top: 40px;
}
.container-certificate{
    width: 100%;
    display: -webkit-inline-box;
    overflow: auto;
    scroll-snap-type: x;
    scroll-behavior: smooth;
}
.container-certificate::-webkit-scrollbar {
    display: none;
  }

.certificate{
    border-radius: 10px;
    border: 2px solid #444444;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 400px;
    margin-right: 20px;
    scroll-snap-align: start;
    user-select: none;
}
.logo-certificate{
    width: 40%;
    background-color: #444444;
    max-width: 150px;
    padding: 20px;
}
.logo-certificate > img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}
.description-certificate{
    padding: 10px;
}
.bussines-certificate{
    color: #5f5f5f;
    font-size: 14px;
}
.title-certificate{
    font-size: 18px;
    color: #f5f5f5;
    font-weight: 700;
    margin: 10px 0px;
}
.code-verify-certificate{
    font-size: 14px;
    color: #5f5f5f;
}
.date-certificate{
    font-size: 12px;
    color: #5f5f5f;
    margin-top: 30px;
}
.descripition-comp{
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.title-comp{
    font-size: 16px;
    color: #f5f5f5;
}
.porcent-comp{
    font-size: 12px;
    color: #aaa;
}

.descripition-comp::before{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0px;
    height: 10px;
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #777777;
}

.descripition-comp::after{
    content: '';
    position: absolute;
    bottom: -16px;
    left: 4px;
    height: 6px;
    width: 85%;
    background-color: #007ced;
    border-radius: 10px;
    transition: all .4s;
}
.container-works{
    display: flex;
    flex-direction: column;
} 
/*
.menu-works{
    background-color: #363636;
    padding: 50px 30px;
    border-radius: 10px 10px 0px 0px;
}
.category-works, .sub-option-category{
    color: #f5f5f5;
    list-style: none;
}
.option-category-menu{
    margin-top: 30px;
}
.option-category-menu > h1{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    border-left: 4px solid #444444;
    padding-left: 5px;
}
.sub-option-category{
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
}
.sub-option-category > li{
    padding: 5px 20px;
    border: 1px solid #464646;
    border-radius: 20px;
    margin: 0px 10px;
    white-space: nowrap;
} */
.description-works{
    padding: 10px;
    width: 100%;
}
.title-desc-works {
    margin-bottom: 30px;
}
.title-desc-works > h1{
    color: #d5d5d5;
    font-size: 26px;
}

.title-desc-works > p{
    color: #d5d5d5;
    font-size: 12px;
    font-weight: 400;
}
.all-works{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
}
.works{
    width: 280px;
    height: 300px;
    background-color: #5f5f5f;
    margin: 20px 0px;
    box-shadow: 0px 5px 8px rgba(0,0,0,0.3);
    transition: all .4s;
    
}

.works:hover{
    box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.2);
}

.works > a>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container-curiosity{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.curiosity{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 280px;
    height: 250px;
    background-color: #363636;
    border-radius: 10px;
    margin: 30px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
.curiosity > i{
    font-size: 50px;
    color: #007ced;
}
.curiosity > p{
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 600;
    
}
.curiosity > h1{
    color: #f5f5f5;
    font-size: 48px;
    
}
.container-services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services{
    width: 90%;
    max-width: 370px;
    border: 2px solid #464646;
    border-radius: 10px;
    margin: 20px;
    padding: 40px 20px;
}
.title-service{
    text-align: center;
    color:#f5f5f5;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}
.price-service{
    color: #f5f5f5;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}
.moth-service{
    color: #888888;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}
.list-services{
    margin-top: 50px;
    text-align: center;
    list-style: none;
    color: #d5d5d5;
}
.item-list-service{
    margin: 26px 0px;
}
.btn-service{
    display: block;
    text-align: center;
    margin: auto;
    font-size: 16px;
    font-weight: 600;
    color: #f5f5f5;
    border-radius: 50px;
    padding: 10px 25px;
    background-image: linear-gradient(rgb(95, 95, 95), rgb(70, 70, 70));
    border: none;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
    cursor: pointer;
}
.service-web{
    background-color: #444444;
}
.desc-price{
    text-align: center;
    color: #f5f5f5;
    font-size: 14px;
}
.service-web > button{
    border: 2px solid   #007ced;
}
.contact-1{
    background-color: #363636;
    padding: 20px 0px;
    border-radius: 10px;
}
.contact{
    font-size: 16px;
    color: #d5d5d5;
    font-weight: 700;
    text-align: center;
    margin: 40px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.contact >i{
    color: #007ced;
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-2{
    background-color: #464646;
    border-radius: 10px;
    width: 95%;
    margin: -20px auto;
}

.contact-2 > form{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.send-message > input{
    background-color: #5f5f5f;
    border-radius: 10px;
    font-size: 14   px;
    color: #f5f5f5;
    padding: 10px;
    border: none;
}
.send-message > input:nth-child(1), .send-message > input:nth-child(2){
width: 48%;
margin: 20px 0%;
}
.send-message > input:nth-child(3){
    width: 100%;
    margin-bottom: 20px;
}
textarea{
    width: 100%;
    background-color: #5f5f5f;
    border-radius: 10px;
    font-size: 14px;
    color: #f5f5f5;
    padding: 10px;
    border: none;
}
.send-message > input::placeholder, .send-message > textarea::placeholder{
    color: #f5f5f5;
}

.btn-form{
    display: block;
    margin: 20px auto;
    font-size: 16px;
    font-weight: 600;
    color: #f5f5f5;
    border-radius: 50px;
    padding: 5px 45px;
    background-image: linear-gradient(180deg, #5f5f5f, #464646);
    border: 2px solid #007ced;
}
footer{
    background-color: #222222;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
footer>p{
    text-align: center;
    color: #f5f5f5;
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    header > nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-top{
        display: flex;
        list-style: none;
    }
    .menu-rigth{
        display: block;
    }
    .list-item> a{
        text-decoration: none;
        color: #f5f5f5; cursor: pointer;
    }
    .list-item{
        position: relative;
        margin: 0px 20px;
    }
    .list-item::before{
        position: absolute;
        content: '';
        padding: 1px;
        width: 0%;
        background-color: #007ced;
        bottom: 0px;
        left: 0px;
        z-index: 2;
        transition: .4s;
        opacity: 0;
    }
    .list-item::after{
        position: absolute;
        content: '';
        padding: 1px;
        width: 0%;
        background-color: #2e2b2b;
        bottom: 0px;
        left: 0px;
        z-index: 1;
        opacity: 0;
        transition: .6s;
    }
    .list-item:hover:after {
        width: 100%;
        opacity: 1;
    }
    .list-item:hover:before {
        width: 10%;
        opacity: 1;
    }
    .col-1    {
        display: flex;
        justify-content:  space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    .description-profile{
        width: 50%;
        text-align: left;
    }
    .button-profile{
        flex-direction: row;
        justify-content: flex-start;
    }
    .button-profile button{
        cursor: pointer;
    }
    .fig-profile{
        width: 350px;
        height: 350px;
    }
    .container-profile{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .info-cont-prof{
        width: 48%; 
    }
    .certificate{
        margin-right: 20px;
    }
    .all-works{
        justify-content: space-between;
    }
    .container-curiosity{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 1024px){
    .list-item{
        margin: 0px 20px;
    }
    .row-1{
        min-height: 80vh;

    }
    .button-profile >button:nth-child(1){
        margin-right: 20px;
    }
    .col-3{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .col-3 >div{
        width: 49%;
    }
    .competencias{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .competencias .comp{
        width: 46%;
    }
    .container-works{
        flex-direction: column;
    }
    /* .menu-works{
        width: 25%;
        padding: 50px 20px;
        border-radius: 10px 0px 0px 10px;
    }
    .sub-option-category{
        flex-direction: column;
    }
    .sub-option-category > li{
        border: none;
        border-radius: 0px;
        width: 100%;
        text-align: left;
        margin: 0px;
        padding: 10px 20px;
    } */

    .container-curiosity{
        justify-content: space-between;
    }
    .curiosity{
        margin: 10px;
    }
    .container-services{
        flex-direction: row;
    }
    .container-contact{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .contact-1{
        width: 70%;
        padding-left: 40px;
    }
    .contact{
        flex-direction: row;
        align-items: center;
        width: 40%;
        justify-content: flex-start;
        text-align: left;
        margin: 80px 0px;
    }
    .contact > i{
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .contact-2{
        width: 45%;
        margin-left: -13%;
    }

    .send-message > input{
        padding: 15px 20px;
        font-size: 14px;
    }
    .btn-form{
        padding: 5px 45px;
    }
}