body {
  font-family: 'Inter';
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: white;
}

.naver{
    
    background-color: white;
    /*box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.08);*/
    position: sticky;
    top: 0;
    z-index:1000;
    
}

.header{
    display:flex;
    min-height:80px;
    align-items:center;
    padding:0 15px;
    justify-content:space-between;
    margin: auto;
    max-width: 1200px;
}
.header .logo {
    height:24px;
    box-sizing: border-box;
}

.header nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.header nav a{
    text-decoration:none;
    color:black;
    font-weight:500;
    font-size:16px;
}

.header nav .call-btn{
    border:none;
    border-radius:5px;
    color:white;
    font-weight:500;
    font-size:16px;
    padding:10px 16px;
    background:#D84040;
    transition: all 0.3s ease;
    cursor: pointer;
    
}


/***********************************************************************our projects*/

.our-projects{
    display: flex;
    flex-direction: column;
    font-family: 'Nunito';
    width: 100%;
    margin:auto;
    max-width: 1200px;
    margin-top: 100px;
    text-align: center;
}

.our-projects .heading{
    font-size: 20px;
    font-weight: 600;
    color: #888888;
    padding: 0 26px;
    
}
.our-projects .title{
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-top: 25px;
    padding: 0 26px;
}

.our-projects .title.highlight{
    color: #D84040;
    padding: 0;
    
}

.our-projects .description{
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-top: 17px;
    padding: 0 26px;
    
}


/***********************************************************************projects-list*/

.projects-list{
    max-width: 1200px;
    width: 100%;
    margin: auto;
    margin-top: 100px;
    display: flex;
    gap: 60px;
    padding: 0;
    font-family: 'Nunito';
    flex-direction: column;
}


.projects-list .project-item{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding:26px 16px;
    margin: 0 26px;
    border-radius: 15px;box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 
                  0 1px 3px rgba(0, 0, 0, 0.1);
}


.projects-list .project-item.reverse{
    flex-wrap: wrap-reverse;
}

.projects-list  .project-item img{
    min-width: 500px;
    max-height: 260px;
    border-radius: 15px;
    box-sizing: border-box;
    margin:auto;
    object-fit: cover;
}

.projects-list .project-item .content{
    flex:1;
    display: flex;
    flex-direction: column;
    min-width: 360px;
}

.projects-list .project-item .content .header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding:0; 
    margin: 0;
    min-height: auto;
}

.projects-list  .project-item .content .header .app-info{
    display: flex;
    align-items: center;
    gap: 5px;

}

.projects-list  .project-item .content .header .app-info img{
    width: 25px;
    height: 25px;
    min-width: 25px;
    box-sizing: border-box;
    margin: 0;
}

.projects-list  .project-item .content .header .app-info span{
    font-size: 20px;
    font-weight: 500;
    color: black;
}


.projects-list  .project-item .content .header img{
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius:none;
    margin: 0;
}


.projects-list  .project-item .content .description{
    margin-top: 15px;
    font-size: 14px;
    color: #888888;
}


.projects-list  .project-item .content .tech-stack{
    display: flex;
    margin-top: auto;
    gap: 10px;
    width: 100%;
    padding-top: 20px;
    align-items: center;
}

.projects-list  .project-item .content .tech-stack span{
    font-size: 15px;
    font-weight: 600;
    color: black;
}


.projects-list  .project-item .content .tech-stack .divider{
    height: 28px;
    width: 1px;
    background: #cccccc;
}


.projects-list  .project-item .content .tech-stack .tech-icons{
    display: flex;
    padding: 0;
    flex: 1;
}


.projects-list  .project-item .content .tech-stack .tech-icons img{
    width: 25px;
    height: 25px;
    min-width: 25px;
    margin: 0;
}

/***********************************************************************footer*/
footer{
    display:flex;
    flex-direction:column;
    max-width:1200px;
    width:100%;
    margin:auto;
    margin-top:100px;
    margin-bottom:26px;
}

footer .divider{
    width:100%;
    height:3px;
    background:#EEEEEE;
    border-radius:10px;
}

footer .content{
    display:flex;
    justify-content:space-between;
    margin:36px 0;
}

footer .content .company-info{
    display:flex;
    flex-direction:column;
    max-width:300px;
    padding:22px;
}

footer .content .company-info .company{
    display:flex;
    flex-direction:row;
    gap:10px;
}


footer .content .company-info .company img{
    
    box-sizing: border-box;
    width:40px;
    height:40px;
    border:2px solid black;
    padding:4px;
    border-radius:5px;
}

footer .content .company-info .company .name .title{
    font-size:20px;
    font-weight:500;
    color:black;
}
footer .content .company-info .company .name{
    display:flex;
    flex-direction:column;
}

footer .content .company-info .company .name .description{
    font-size:12px;
    font-weight:400;
    color:#888888;
}

footer .content .company-info .address{
    font-size:14px;
    font-weight:400;
    color:#888888;
    margin-top:20px;
}

footer .content .others{
    display:flex;
    gap: 22px;
}

footer .content .others .pages, footer .content .others .help{
    display:flex;
    flex-direction:column;
    margin:0 22px;
    gap:6px;
} 

footer .content .others .pages h2, footer .content .others .help h2{
    font-size: 16px;
}

footer .content .others .pages a, footer .content .others .help a{
    
    text-decoration:none;
    color:#888888;
}

footer .copy-right{
    display:flex;
    align-items:center;
}
footer .copy-right span{
    box-sizing: border-box;
    display: block;
    min-width:500px;
    text-align:center;
    font-size:14px;
    color:#888888;
}



@media (max-width: 600px) {

  .header nav a{
        display:none;
    }

    
    .our-projects{
        margin-top: 48px;
    }
    
    .our-projects .title{
        font-size: 24px;
    }
    
    .our-projects .description{
        font-size: 14px;
    }
    
    
    .projects-list{
        margin-top: 52px;
    }
    
    .projects-list .project-item img{
        width: 100%;
        min-width: 200px;
        max-height: 180px;
    }
    
    .projects-list .project-item .content{
        min-width: 240px;
    }

    
        
        
    footer .copy-right span{
        min-width:300px;
    }
    
    footer .content{
        flex-wrap: wrap;
    }
    
    footer .content .company-info{
        min-width: 200px;
        margin: auto;
        text-align: center;
    }
    
    footer .content .company-info .company{
        flex-direction: column;
        align-items: center;
        
    }
    
    footer .content .others{
        min-width: 300px;
        flex-direction: column;
        margin: auto;
        text-align: center;
    }

}


@media (min-width: 600px) and (max-width: 800px) {
    
    .projects-list{
        margin-top: 80px;
    }
    
    .projects-list  .project-item img{
        width: 100%;
        max-height: 280px;
    }

    
    
    footer .copy-right span{
        min-width:300px;
    }
    
    footer .content{
        flex-wrap: wrap;
    }
    
    footer .content .company-info{
        min-width: 260px;
        margin: auto;
        text-align: center;
    }
    
    footer .content .company-info .company{
        flex-direction: column;
        align-items: center;
        
    }
    
    footer .content .others{
        min-width: 440px;
        flex-direction: column;
        margin: auto;
        text-align: center;
    }

    


}

@media (min-width: 800px) and (max-width: 940px) {
    .projects-list  .project-item img{
        width: 100%;
        max-height: 300px;
    }

}























































