.header_box {
    position: static !important;
}

.two_product_box {
    width: 100%;
    padding-top: calc(16px + 4rem);
  
}

.two_product {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.two_product_title {
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(6px + 1.5rem);
    color: #333333;
    line-height: calc(2px + 2rem);
    text-align: center;
}

.two_product_search {
    width: calc(300px + 50rem);
    margin: auto;
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: calc(1px + 1rem);
    padding-left: calc(5px + 0.2rem);
    padding-right: calc(5px + 0.2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(20px + 3rem);
}

.two_product_search input {
    width: 80%;
    height: calc(2px + 1.5rem);
    border: none;
    border-left: 1px #333333 solid;
    outline: medium;
    padding: 0 calc(5px + 0.2rem);
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(8px + 0.5rem);
    color: #666666;
    line-height: calc(16px + 2rem);
}

.two_product_search img {
    width: calc(10px + 1rem);
    cursor: pointer;
}

.two_product_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(0px + 1rem);
    row-gap: calc(12px + 2rem);
    margin-top: calc(6px + 3rem);
}

.two_product_item {
    width: 24.0243%;
}

.two_product_item_pic {
    width: 100%;
    height: calc(94px + 15rem);
    position: relative;
}

.two_product_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_product_item .p1 {
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(4px + 0.5rem);
    color: #666666;
    line-height: calc(6px + 0.5rem);
    margin-top: calc(4px + 1rem);
}

.two_product_item .p2 {
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    line-height: calc(9px + 0.5rem);
    margin-top: calc(2px + 0.5rem);
}

.two_product_item_mask {
    width: 100%;
    height: 100%;
    background-color: #00000030;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: calc(10px + 1.5rem);
    opacity: 0;
    transition: .3s;
}

.two_product_item_more {
    width: calc(86px + 5rem);
    height: calc(12px + 2rem);
    background: #E60013;

}

.two_product_item_more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: BOOKOS;
    font-weight: 300;
    font-size: calc(4px + 0.5rem);
    color: #FFFFFF;

}
.two_product_item_mask:hover{
    opacity: 1;
}

@media (max-width: 1100px){
    .two_product_title{
        font-size: calc(16px + 1rem);
    }
    .two_product_search{
        width: 100%;
    }
    .two_product_search input{
        height: calc(23px + 1.5rem);
        font-size: calc(10px + 1rem);
    }
    .two_product_list {
      
        gap: calc(3px + 4rem);
      
    }
    .two_product_item{
        width: 47%;
    }
    .two_product_item .p1{
        font-size: calc(10px + 1rem);
    }
    .two_product_item .p2{
        font-size: calc(10px + 1rem);
        margin-top: calc(9px + 0.5rem);
    }
   
}