#advantage .container {
    gap: 5em;
}
#advantage .top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));;
    gap: 1em;
}
#advantage .top .item {
    display: flex;
    flex-direction: column;
    gap: 1em;
    border: 1px solid #e8e8e8;
    border-radius: var(--border-radius);
    padding: 2em;
}
#advantage .top .item img {
    height: 55px;
}
#advantage .top .item h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}
#advantage .top .item p {
    color: #585858;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

#advantage .bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5em;
}
#advantage .bottom .item {
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
    background-color: var(--colorMain);
    padding: 1em;
    gap: 1em;
}
#advantage .bottom .item .img {
    padding: 17px;
    height: 70px;
    width: 70px;
    background-color: #fff;
    border-radius: 100px;
}
#advantage .bottom .item img {
    height: 36px;
    width: 36px;
}
#advantage .bottom .item p {
    color: #fff;
    font-size: 16px;
}

@media (min-width: 1441px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 800px) {
    #advantage .bottom {
        gap: 1em;
    }
}
@media (max-width: 600px) {
}
@media (max-width: 450px) {
}
@media (max-width: 380px) {
}