* {
    margin: 0;
    padding: 0;
}

.product-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.heading h1 {
    font-size: 2rem;
    margin-left: 0.5rem;
    color: #2d3968;
    margin-bottom: 4px;
}

.products {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.products-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
}

.prod-card {
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    background-color: #2d3968;
    position: relative;
}

.prod-card>img {
    border-radius: 15px;
}

.prod-card>p {
    color: #ebebeb;
    text-align: center;
    font-family: Raleway;
}

.content {
    font-size: large;
    margin: 50px 20px;
}

.merge {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}

.table-container {
    width: 40%;
    margin: 10px;
    border: 2px solid black;
    text-align: center;
}

table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
}

.features {
    border: 2px solid black;
    width: 40%;
    padding-left: 5px;
    padding-bottom: 10px;
}

/*----Responsive ----*/

@media(max-width:470px) {

    .table-container {
        width: 100%;
    }

    .table-container tr,
    .table-container td {
        display: block;
        width: 100%;
    }

    .table-container tr {
        margin-bottom: 1rem;

    }

    .table-container th {
        border: none;
    }

    .table-container td {
        margin: 0;
        padding: 0;
    }

    .features {
        width: 95%;
        margin: 0;
    }
}