@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

nav a{
    text-decoration: none;
    color: #2add98;
    transition: color 0.3s ease;
}

nav a:hover{
    color: #cffce4 !important;
}

h5{
    font-size: 20px;
}

li{
    list-style: none;
}

nav{
    background: linear-gradient(to right, #000000 25%, #000000 50%, #1c1c1c 75%, #1c1c1c 100%);
    position: sticky;
    top: 0;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rgba(219, 217, 217, 0.0);
    z-index: 1;
}

nav .logo,
footer .logo{
    display: flex;
    align-items: center;
}


nav .logo img,
footer .logo img{
    height: 60px;
    cursor: pointer;
}


nav ul,
footer .top ul{
    display: flex;
    gap: 40px;
}

nav button{
    color: #000000;
    background-color:  #2add98;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 5px;
    border: 1px solid #1c1e53;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.3s ease;
    transform: scale(1);
}

nav button:hover{
    background: #cffce4;
    border-color: #000000;
    color: #000000;
    transform: scale(1.1);
}

nav button#menuButton{
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 7px;
}

.main{
    background-image: url('img/landing.jpg'); 
    background-size: cover; 
    background-position: center top;
    background-attachment: fixed;
    padding-top: 290px;
    padding-bottom: 290px;
}

.main .left{
    border: 5px transparent;
    background:fixed;
    backdrop-filter: blur(40px);
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 160px;
    transition:all 0.7s ease-in-out;
}

.main .left:hover{
    -webkit-transform:scale(1.1);transform:scale(1.1);
    overflow:hidden;
}


.main .left h5{
    font-weight:lighter;
    font-size: 20px;
    color: #2add98;
}

.main .left h1{
    font-size: 25px;
    color: #fff;
    padding-top: 5px;
}

.main .left h3{
    color: #fff;
    font-weight: bold;
    font-size: 40px;
}

.main .left h3 span{
    font-size: 39px;
    color: #07af6f;
    padding-bottom: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}



.skills{
    display: flex;
    justify-content: space-around;
    padding: 150px 100px 150px 100px;
    gap: 30px;
    z-index: 0;
    background-color: #cffce4;
}

.skills .left{
    width: 680px;
}

.skills .left .info h5{
    color: #009f68;
    font-size: 20px;
}

.skills .left .info h3{
    color: #002f22;
    font-size: 30px;
    margin-bottom: 20px;
}

.skills .left .info p{
    font-size: 16px;
    font-weight: 500;
}

.skills .left button{
    margin-top: 30px;
}

.skills .right{
    width: 420px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.skills .right .item{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #383e45;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    transform: scale(1);
    
}

.skills .right .item:hover{
    transform: scale(1.2);
}

.skills .right .item i{
    font-size: 34px;
    color: #fff;
}




.about{
    padding: 110px;
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #1c1c1c;
}

.about .left img{
    width: 300px;
    border-radius: 40% 60% 30% 60% / 25% 40% 60% 70%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 25% 90%, 0% 75%);
    transition:all .5s ease-in-out;
}

.about .left img:hover {
    -webkit-transform:scale(1.05);transform:scale(1.05);
    overflow:hidden;
}

.about .right h5{
    color: #cffce4;
    font-size: 20px;
}

.about .right h3{
    color: #2add98;
    font-size: 30px;
    margin-bottom: 20px;
}

.about .right p{
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}




.portfolio{
    background-image: url('img/landing2.jpg'); 
    background-size: cover; 
    background-position: center top;
    background-attachment: fixed;
    padding: 110px 85px;
}

.portfolio .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 20px;
    margin-bottom: 50px;
}

.portfolio .header h5{
    font-weight: 700;
    font-size: 30px;
    color: #06c37f;
    text-shadow: 2px 2px 4px #000000;
}



.portfolio .portfo-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio .portfo-items .item{
    width: 30%;
    background-color: #e4e4e4;
    border-radius: 10px 10px 20px 20px;
    border: 5px solid transparent;
    border-top: 0px solid transparent;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.portfolio .portfo-items .item:hover{
    border-color: #376d04;
    transform: scale(1.1);
}

.portfolio .portfo-items .item img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 20px 20px;
}

.portfolio .portfo-items .item .info{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 32px 42px;
}

.portfolio .portfo-items .item .info p{
    font-size: 13px;
}

.portfolio .portfo-items .item .info .foot{
    color: #002f22;
}

.portfolio .portfo-items .item .info .foot:hover{
    color: #000000;
}

.portfolio .portfo-items .item .info a i{
    margin-left: 2px;
    font-size: 16px;
    color: #002f22;
}



footer{
    position: relative;
    background: #000000;
    padding: 80px 50px 40px;
    margin-top: 0px;
}



footer .cols{
    display: flex;
    align-items: start;
}

footer .cols .about-col{
    flex: 3;
}

footer .cols .about-col img{
    margin-bottom: 20px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

footer .cols .about-col p{
    color: #cffce4;
    font-size: 13px;
    padding-left: 25px;
}

footer .cols .links-col{
    flex: 3;
}

footer .cols .links-col h4, footer .cols .news-col h4{
    color: #cffce4;
    margin-bottom: 20px;
}

footer .cols .links-col a{
    display: block;
    text-decoration: none;
    color: #7b7b7b;
    font-size: 14px;
    line-height: 26px;
    transition: color 0.3s ease;
}

footer .cols .links-col a:hover{
    color: #2add98;
}

footer .cols .news-col{
    flex: 3;
}

footer .cols .news-col p{
    color: #7b7b7b;
    font-size: 15px;
}

footer .cols .news-col form{
    width: 100%;
    margin-top: 20px;
    position: relative;
}

footer .cols .news-col form input{
    width: 100%;
    background: #dad6d6;
    border: none;
    padding: 15px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 13px;
}

footer .cols .news-col form button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #2add98;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transform: scale(1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

footer .cols .news-col form button:hover{
    background-color: #07af6f;
    transform: scale(1.1);
}

footer .cols .news-col form button i{
    font-size: 26px;
}

@media screen and (max-width: 1200px) {

    * {
        transition-duration: 0.8s; /* Ajusta el tiempo de duración de la transición para todos los elementos */
      }
    
    .main .left h5{
        font-size: 18px;
    }

    .main .left h3{
        font-size: 36px;
    }

    .main .left p{
        font-size: 18px;
    }

    .main .right img{
        width: 380px;
    }



    .skills{
        justify-content: space-between;
        gap: 20px;
    }

    .skills .left{
        width: 500px;
    }

    .skills .left .info h3{
        font-size: 30px;
    }

    .skills .left .info p{
        font-size: 16px;
    }


    .about .left img{
        width: 370px;
    }

    .skills h3,
    .about .right h3,
    .portfolio .header h3,
    .feedback h3{
        font-size: 32px;
    }

    .about .right p{
        font-size: 15px;
    }

    .feedback .customers .item .rating{
        font-size: 20px;
    }

    .feedback .customers .item p{
        font-size: 13px;
    }

    footer .top ul{
        gap: 20px;
    }

}

@media screen and (max-width: 992px) {

    * {
        transition-duration: 0.8s; /* Ajusta el tiempo de duración de la transición para todos los elementos */
      }
    
    nav button{
        display: none;
    }

    nav ul{
        gap: 20px;
    }

    .main{
        flex-direction: column;
    }

    .about{
        flex-direction: column;
        justify-content: center;
    }

    .portfolio .portfo-items{
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio .portfo-items .item{
        width: 48%;
    }

    .feedback .customers{
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feedback .customers .item{
        width: 48%;
    }

    footer .top ul{
        display: none;
    }

    footer .cols .about-col img{
        margin-bottom: 20px;
        height: 40px;
    }
    
    footer .cols .about-col p{
        color: #cffce4;
        font-size: 13px;
        padding-left: 20px;
    }

}

@media screen and (max-width: 768px) {

    * {
        transition-duration: 0.8s; /* Ajusta el tiempo de duración de la transición para todos los elementos */
      }
    
    nav{
        justify-content: space-between;
        padding: 0 42px;
    }

    nav ul{
        display: none;
    }

    nav.open .logo{
        display: none;
    }

    nav.open ul{
        display: flex;
    }

    nav button#menuButton{
        display: flex;
    }

    .main{
        padding: 42px;
    }

    .skills{
        flex-wrap: wrap;
        justify-content: center;
    }

    .skills .right{
        justify-content:space-around;
    }

    .skills .left .info h3{
        font-size: 30px;
    }



    .about{
        padding: 85px 42px;
    }

    .portfolio{
        padding: 60px 42px;
    }

    .portfolio .portfo-items{
        gap: 18px;
    }

    .feedback{
        padding: 85px 42px;
    }

    footer{
        padding: 85px 42px;
    }

    footer .bottom{
        flex-direction: column-reverse;
        gap: 14px;
    }

    footer .cols .about-col img{
        margin-bottom: 20px;
        height: 32px;
    }
    
    footer .cols .about-col p{
        color: #cffce4;
        font-size: 13px;
        padding-left: 16px;
    }

}

@media screen and (max-width: 576px) {

    * {
        transition-duration: 0.8s; /* Ajusta el tiempo de duración de la transición para todos los elementos */
      }
    
    nav ul li a{
        font-size: 13px;
    }

    nav .logo a{
        font-size: 18px;
    }

    .main .left h3{
        font-size: 32px;
    }

    .main .left p{
        font-size: 16px;
    }

    .main .left button{
        width: 100%;
    }

    .skills{
        padding: 30px;
    }

    .skills .skill-items .item{
        width: 100%;
        padding-bottom: 50px;
    }

    .about{
        margin-top: 50px;
    }

    .portfolio .header button{
        font-size: 12px;
        padding: 8px 14px;
    }

    .portfolio .portfo-items .item{
        width: 80%;
    }

    .feedback .customers .item{
        width: 100%;
    }

    footer .cols .about-col img{
        margin-bottom: 20px;
        height: 25px;
    }
    
    footer .cols .about-col p{
        color: #cffce4;
        font-size: 13px;
        padding-left: 10px;
    }

}