/* ==========================================================================
   Info4 widget — why us (benefits)
   ========================================================================== */

.site_why_us .container_wrap {
    flex: 1 1 auto;
    margin: 4rem auto 0 auto;
    max-width: 1420px;
    min-width: 0;
    padding: 0 20px;
    width: 100%;
}

.site_why_us_panel {
    width: 100%;
}

.site_why_us_title {
    font-size: 35px;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.site_why_us_title::first-letter {
    color: var(--primary-color);
}

.site_why_us_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
    width: 100%;
}

.site_why_us_col {
    box-sizing: border-box;
    display: flex;
    flex: 0 0 100%;
    margin-bottom: 1rem;
    max-width: 100%;
    min-width: 0;
    padding: 0 0.5rem;
}

.site_why_us_card {
    align-items: center;
    background: #fff;
    border: unset;
    border-radius: 1.25rem;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    height: 100%;
    margin: 0;
    padding: 1.25rem;
    width: 100%;
}

.site_why_us_card_icon {
    flex-shrink: 0;
    height: 60px;
    width: 60px;
}

.site_why_us_card_text {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.site_why_us_card.invisible {
    visibility: hidden;
}

.site_why_us_card.animate__zoom_in {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: site_zoom_in;
    visibility: visible;
}

@keyframes site_zoom_in {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site_why_us_card.animate__zoom_in {
        animation-duration: 1ms !important;
    }
}

@media (min-width: 576px) {
    .site_why_us_col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .site_why_us_col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 1399.98px) {
    .site_why_us_title {
        font-size: calc(1.34375rem + 1.125vw);
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 1399.98px) and (min-width: 1200px) {
    .site_why_us_title {
        font-size: 2.1875rem;
    }
}

@media (max-width: 1199.98px) {
    .site_why_us .container_wrap {
        margin-top: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .site_why_us_title {
        margin-bottom: 2rem;
    }
}
