.services-card__content {
    justify-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 16px;
}

.services-card__content-card {
    width: 440px;
    position: relative;
    border-radius: 16px;
    padding: 0;
    background: none;

}

.services-card__content-card__image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.services-card__content-card__button {

    cursor: pointer;
    position: absolute;
    z-index: 1000;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 16px * 2);
    background-color: #fff;
    border-radius: 24px;
    padding: 8px 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    &:hover{
        background-color: #ff6a00;
    }

    transition: background-color 0.2s ease-out;
}

.services-card__content-card__button-text {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.services-card__content-card__button-button {
    border-radius: 50%;
    background-color: #101010;
    outline: none;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 600px) {
    .services-card__content {
        row-gap: 8px;
    }

    .services-card__content-card {
        width: 168px;
        height: 200px;
        aspect-ratio: 16 / 9;
    }
    .services-card__content-card__button {
        padding: 12px 0;
        width: 90%;
        left: 10px;
        justify-content: center;
    }

    .services-card__content-card__button-text {
        font-size: 14px;
    }

    .services-card__content-card__button-button {
        height: 36px;
        width: 36px;
        display: none;
    }

    .services-card__content-card__image{

    }
}

@media (min-width: 600px) {

    .services-card__content-card {
        width: 100%;
        height: 340px;
    }
}

@media (min-width: 1000px) {
    .services-card__content-card {
        width: 440px;
        height: 280px;
    }
}


@media (min-width: 1600px) {
    .services-card__content-card {
        width: 440px;
        height: 280px;
    }
}

@media (min-width: 1800px) {
    .services-card__content-card {
        width: 540px;
        height: 340px;
    }
}
