.two_product_box {
    width: 100%;
    padding-top: calc(18px + 5rem);
    padding-bottom: calc(14px + 3rem);
}

.two_product {
    max-width: 1537px;
    width: 85%;
    margin: auto;
}

.two_product_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(10px + 0.5rem);
}

.two_product_nav_item {
    width: 15.8751%;
    height: calc(82px + 5rem);
    border-radius: calc(5px + 0.25rem);
    border: 1px solid #D8D8D8;
}

.two_product_nav_item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8px + 0.5rem);
}

.two_product_nav_item:nth-of-type(1) {
    border: none;
}

.two_product_nav_item:nth-of-type(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_product_nav_item_icon img {
    height: calc(20px + 3rem);
    display: none;
}

.two_product_nav_item_icon img:nth-of-type(1) {
    display: block;
}

.two_product_nav_item .p1 {
    font-family: Roboto_Regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #000000;
    line-height: calc(10px + 1.5rem);
    text-align: center;

}

.two_product_nav_item_act .two_product_nav_item_icon img {
    display: none;
}

.two_product_nav_item_act .two_product_nav_item_icon img:nth-of-type(2) {
    display: block;
}

.two_product_nav_item_act .p1 {
    text-decoration: underline;
}

.two_product_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(4px + 1.5rem);
    row-gap: calc(6px + 1rem);
    margin-top: calc(6px + 5rem);
}

.two_product_item {
    width: 31.1405%;
    border: 1px solid #EEEEF0;
    padding-bottom: calc(9px + 1.5rem);
}

.two_product_item_pic {
    width: 100%;
    height: calc(80px + 20rem);
}

.two_product_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_product_item_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(5px + 1.5rem);
    margin-top: calc(10px + 1rem);
}

.two_product_item_more {
    width: calc(14px + 2rem);
    height: calc(14px + 2rem);
    background: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.two_product_item_more img {
    width: calc(10px + 0.5rem);
}

.two_product_item_name .p1 {
    font-family: Roboto_Regular;
    font-weight: 500;
    font-size: calc(8px + 2rem);
    color: #000000;
    line-height: calc(10px + 2rem);
}

.two_product_item:hover .two_product_item_more {
    background-color: #521FEA;
}
@media screen and (max-width: 1100px){
    .two_product_nav_item .p1{
        font-size: calc(10px + 1rem);
    }
    .two_product_nav_item:nth-of-type(1){
        display: none;
    }
    .two_product_nav{
        justify-content: space-between;
        gap: 0;
    }
    .two_product_nav_item{
        width: 24%;
      
    }
    .two_product_list {
      
        gap: calc(2px + 1.5rem);
       
    }
    .two_product_item{
        width: 48.5%;
    }
    .two_product_item_name .p1{
        font-size: calc(16px + 1rem);
    }

}