* {
    margin: 0;
    padding: 0;
}

.header_box {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
}

.header {
    max-width: 1640px;
    height: calc(20px + 4rem);
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: calc(66px + 5rem);
}

.header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header_nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(11px + 3rem);
    margin-right: calc(9px + 4rem);
}

.header_nav_item .p1 {
    height: calc(20px + 4rem);
}

.header_nav .header_nav_item_act a {
    color: #B47664;
}

.header_nav_item a {
    height: 100%;
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    display: flex;
    align-items: center;
}

.header_nav_item:nth-of-type(2) .second_item{
    width: 32%;
    height: calc(76px + 20rem);
}
.header_right .language {
    height: calc(20px + 4rem);
    margin-right: calc(6px + 1.5rem);
}

.header_right .language a {
    height: 100%;
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    display: flex;
    align-items: center;
}

.header_right .line {
    width: 1px;
    height: calc(4px + 0.5rem);
    background: #333333;
    margin-right: calc(1px + 2rem);

}

.search {
    height: calc(20px + 4rem);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header_right .search img {
    width: calc(8px + 0.5rem);
}


.second_nav_box {
    width: 100%;
    height: 100vh;
    background-color: #00000030;
    position: absolute;
    left: 0;
    top: calc(20px + 4rem);
    transition: .5s;
    display: none;

}

.second_nav {
    width: 100%;
    height: calc(160px + 20rem);
    background-color: #ffffff;

}

.header_nav_item:hover .second_nav_box {
    display: block;
}


.header_nav_item:nth-of-type(4) .second_nav_box {
    display: none !important;
}

.header_nav_item:nth-of-type(5) .second_nav_box {
    display: none !important;
}

.header_nav_item:nth-of-type(6) .second_nav_box {
    display: none !important;
}

.second {
    height: 100%;
    max-width: 1640px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.second_left{
    width: 35.9634%;
}
.second_left .p2{
font-family: DM_Sans-regular;
font-weight: 400;
font-size: calc(10px + 1rem);
color: #B67865;
line-height: calc(9px + 1.5rem);

}
.second_left .p3{
font-family: DM_Sans-regular;
font-weight: 400;
font-size: calc(6px + 0.5rem);
color: #999999;
line-height: calc(2px + 1.5rem);
margin-top: calc(5px + 0.5rem);

}

.second_right{
    width: 74.8780%;
    display: flex;
    justify-content: space-between;
}
.second_item{
    width: 23.7785%;
    height: calc(76px + 15rem);
    position: relative;
    overflow: hidden;
}
.second_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.second_item .p4{
    width: 100%;
    position: absolute;
    bottom: calc(1px + 1.5rem);
    text-align: center;
font-family: DM_Sans-bold;
font-weight: 600;
font-size: calc(6px + 0.5rem);
color: #FFFFFF;

}
.second_item:hover img{
    transform: scale(1.1);
}

.search_box{
    width:100vw;
    height: calc(160px + 20rem);
    background: #ffffff;
    position: absolute;
    top: calc(20px + 4rem);
    right:0;
    z-index: 10000;
    display: none;
    
}
.search_box div{
    max-width: 1200px;
 width:85%;
 margin: auto;
   border-bottom:1px #00000050 solid;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: calc(5px + 0.5rem);
}
.search_box input{
    width: 80%;
    border: none;
  
}
.search_box img{
    width: max-content;;
}