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;
    
}



/***********************************************************************container*/
h1, h2 {
    color: #333;
}
.container {
    max-width: 1200px;
    margin: auto;
    font-family: 'Nunito';
}

/***********************************************************************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) {
    .contact-section{
        margin-top: 48px;
    }
    .contact-section img{
        display: none;
    }
    
    .contact-section .contact-form{
        margin: 20px;
    }
    
    .header nav a{
        display:none;
    }
    
    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) {
       .contact-section{
        margin-top: 60px;
    }
    
    .contact-section img{
        display: none;
    }
    
    .contact-section .contact-form{
        margin: auto;
    }
    
    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: 1000px) {
    
     .contact-section{
        margin-top:100px;
    }
    .contact-section img{
        display: none;
    }
    
    .contact-section .contact-form{
        margin: auto;
    }


}























































