.d-grid {
    display: grid;
    grid-template-columns: minmax(40%, 1fr) minmax(60%, 1fr);
}

.np-form input {
    fill: #FEFEFF;
    height: 40px;
    border: 1px solid transparent;
    outline: none;
    width: 70%;
    padding: 0 16px;
    box-shadow: 0 23px 22px 0 rgb(41 72 152 / 3%);
}

.profits-features-section {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    text-align: start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.profits-feature-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.top-section-form-content .np-form input {
    background-color: #F6F7F7;
    width: 80%;
}

.top-section-form-content .np-form button {
    width: 20%;
}

.top-section-form-content .np-form form {
    margin: 0;
}

@media screen and (max-width:767px) {
    .d-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }
}

@media screen and (max-width:575px) {

    .top-section-form-content .np-form input,
    .top-section-form-content .np-form button {
        width: 100%;
    }
}

@media screen and (max-width:480px) {

    .np-form input,
    .np-form button,
    .np-form .np-btn {
        width: 100%;
    }
}