.advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 4rem;
    align-items: center;
}
.advantages-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 1.5rem;
}
.icon-wrap {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: rgb(255 255 255);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}
.adv-card {
    background: rgb(249 250 251);
    padding: 21px;
    border: 1px solid rgb(243 244 246);
    border-radius: 10.5px;
    transition: all 0.3s ease-in;
}
.icon-wrap img {
    width: 17.5px;
    height: 17.5px;
}
.adv-card p {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}
.advantages-content h2 {
    margin-bottom: 21px;
}
.advantages-content p{
    font-size: 16px;
    line-height: 24px;
    color: #64748b;
}
p.subtitle {
    font-size: 18px;
    margin: 0 0 28px;
    line-height: 26px;
    color: #64748b;
}
.adv-card:hover {
    border-color: rgb(0 163 224);
}
.adv-card:hover .icon-wrap {background: rgb(0 163 224);}
.adv-card:hover .icon-wrap img {
    filter: brightness(0) invert(1);
}

@media screen and (max-width:767px){
    .advantages-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem;
    }
    .advantages-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;
    }
    p.subtitle {
        margin: 0 0 15px;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .advantages-grid {
        gap: 1rem;
    }
    p.subtitle {
        margin: 0 0 15px;
    }
    .advantages-cards {
        gap: 10px;
    }
    .adv-card {
        padding: 12px;
    }
    .icon-wrap {
        width: 28px;
        height: 28px;
    }
}