/* WRAPPER */
.er-ind-tabs-cards-wrapper {
    width: 100%;
}

/* CONTAINER */
.er-ind-tabs-cards-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* CARD */
.er-ind-tabs-card {
    position: relative;
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 10px;
    padding-bottom: 80px;
    box-shadow: 2px 5px 16px rgba(0, 0, 0, 0.07);
}

/* IMAGE */
.er-ind-tabs-card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    margin-top: -25px;
    margin-bottom: 15px;
}

/* TITLE */
.er-ind-tabs-card-title {
    padding: 0 20px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
}

.er-ind-tabs-card-title-link {
    color: inherit;
    text-decoration: none;
}

/* TEXT */
.er-ind-tabs-card-text {
    padding: 15px 20px;
    font-size: 18px;
    line-height: 1.5;
}

/* BUTTON */
.er-ind-tabs-card-button {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #357d8d;
    text-decoration: underline;
}

/* TABLET */
@media (max-width: 980px) {
    .er-ind-tabs-cards-container {
        flex-direction: column;
    }
	.er-ind-tabs-cards-container {
        display: block;
    }

    .er-ind-tabs-card {
        padding-bottom: 90px;
        margin-bottom: 40px;
    }

    .er-ind-tabs-card:last-of-type {
        margin-bottom: 0;
    }
}
/* MOBILE*/
@media (max-width: 767px) {
    .er-ind-tabs-cards-container {
        flex-direction: column;
    }
	.er-ind-tabs-cards-container {
        display: block;
    }

    .er-ind-tabs-card {
        padding-bottom: 90px;
        margin-bottom: 40px;
    }

    .er-ind-tabs-card:last-of-type {
        margin-bottom: 0;
    }
}