.products-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.products-content-for {
    width: 45.6rem;
    height: auto;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-content-for:hover .img img{
    width: 120% !important;
    height: 120% !important;
}

.products-content-for .img {
    width: 45.6rem;
    height: 45.6rem;
    margin-bottom: 2.4rem;
}

.products-content-for>span {
    font-weight: 600;
    font-size: 2.4rem;
    color: #05173C;
    line-height: 2.9rem;
}

.products-content-for>p {
    color: #05173C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 1.4rem 0;
}

.products-btn {
    padding: 0.8rem 1.6rem;
    display: flex;
    align-items: center;
    border: 0.1rem solid #05173C;
    border-radius: 10rem;
    box-sizing: border-box;
    height: 4rem;
    width: 19rem;
    justify-content: space-between;
}

.products-btn img {
    width: 2.4rem;
    height: 2.4rem;
}

.products-btn img:nth-child(2) {
    display: none;
}

.products-btn span {
    font-size: 1.6rem;
    color: #05173C;
    line-height: 1.9rem;
}

.products-btn:hover img:nth-child(2) {
    display: block;
}

.products-btn:hover img:nth-child(1) {
    display: none;
}

.products-btn:hover {
    cursor: pointer;
    border-color: #F16522;
}

.products-btn:hover span {
    color: #F16522;
}

@media screen and (max-width: 768px) {
    .products-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .products-content-for {
        width: 16.8rem;
        height: auto;
        margin-bottom: 1.6rem;
    }

    .products-content-for .img {
        width: 16.8rem;
        height: 16.8rem;
        margin-bottom: 1.2rem;
    }

    .products-content-for>span {
        font-weight: 600;
        font-size: 1.4rem;
        color: #05173C;
        line-height: 1.8rem;
    }

    .products-content-for>p {
        color: #05173C;
        font-size: 1.2rem;
        line-height: 1.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin: 1.2rem 0;
    }

    .products-btn {
        padding: 0.4rem 0.8rem;
        display: flex;
        align-items: center;
        border: 0.1rem solid #05173C;
        border-radius: 10rem;
        box-sizing: border-box;
        height: 2.1rem;
        width: 11rem;
        justify-content: space-between;
    }

    .products-btn img {
        width: 1.2rem;
        height: 1.2rem;
    }

    .products-btn img:nth-child(2) {
        display: none;
    }

    .products-btn span {
        font-size: 1rem;
        color: #05173C;
        line-height: 1.3rem;
    }

    .products-btn:hover img:nth-child(2) {
        display: block;
    }

    .products-btn:hover img:nth-child(1) {
        display: none;
    }

    .products-btn:hover {
        cursor: pointer;
        border-color: #F16522;
    }

    .products-btn:hover span {
        color: #F16522;
    }
}