/* =================================
   HOME PAGE BENEFITS STRIP
================================= */

.benefits-section {
    position: relative;
    z-index: 5;

    color: #ffffff;
    background-color: #003f2e;
}

.benefits-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


/* =================================
   BENEFIT ITEM
================================= */

.benefit-item {
    position: relative;

    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 17px;

    min-height: 150px;
    padding: 28px 25px;

    align-items: flex-start;
}

.benefit-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 28px;
    right: 0;
    bottom: 28px;

    width: 1px;
    background-color: rgba(226, 154, 19, 0.5);
}


/* =================================
   BENEFIT ICON
================================= */

.benefit-icon {
    display: flex;
    width: 57px;
    height: 57px;

    align-items: center;
    justify-content: center;

    color: #e2a01d;
}

.benefit-icon svg {
    width: 53px;
    height: 53px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =================================
   BENEFIT TEXT
================================= */

.benefit-content h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 12px;
    line-height: 1.7;
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2)::after {
        display: none;
    }

    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2) {
        border-bottom: 1px solid rgba(226, 154, 19, 0.35);
    }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .benefits-container {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
    }

    .benefit-item {
        min-height: auto;
        padding: 25px 5px;
    }

    .benefit-item:not(:last-child) {
        border-bottom: 1px solid rgba(226, 154, 19, 0.35);
    }

    .benefit-item:not(:last-child)::after {
        display: none;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
    }

    .benefit-icon svg {
        width: 48px;
        height: 48px;
    }

    .benefit-content h2 {
        font-size: 16px;
    }

    .benefit-content p {
        max-width: 310px;
        font-size: 13px;
    }
}