

.why__grid {
    gap: 32px;

    & > div {
        & > figure {
            margin-bottom: 2em;

            img {
               width: clamp(64px, 5.2vw, 100px);
               height: clamp(64px, 5.2vw, 100px);
            }
        }
    }
}

@media only screen and (max-width: 1100px) {
   .why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media only screen and (max-width: 768px) {
   .why__grid {
        gap: 24px !important;
    }
}

@media only screen and (max-width: 576px) {
    .why .container{
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .why__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}
