.fuel-station {
    padding: 3rem 0;
}
.fuel-station_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 63px;
    position: relative;
}
.fuel-station_wrapper::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 8%;
    right: 9%;
    border-top: 2px dashed #d3d3d3;
    z-index: 0;
}

.fuel-station_item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 223px;
}

.fuel-station_item .fuel-station_title {
    font-size: 24px;
    white-space: nowrap;
    text-align: center;
    margin: 0 0 15px;
}
.fuel-station_item .fuel-station_text {
    font-size: 16px;
    text-align: center;
    color: #8E8E93;
    margin: 0;
}

.fuel-station_icon {
    width: 85px;
    height: 85px;
    background: #F4F4F4;
    border-radius: var(--border-rahmat-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuel-station_icon img {
    width: 42px;
    height: 42px;
}
@media (max-width: 1100px) {
    .fuel-station_item .fuel-station_title {
        white-space: normal;
    }

    .fuel-station_wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .fuel-station_wrapper::before {
        display: none;
    }

    .fuel-station_item {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .fuel-station_wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}