.services {
    margin: 48px 0;
}

.services .container {
    width: 100%;
    min-height: 60vh;
    max-width: 1170px;
    margin: 0 auto;
}

.services.cards .container {
    min-height: unset;
}

.services .header {
    display: flex;
    align-items: center;
}

.services .header .title {
    margin-left: 16px;
    font-size: 16px;
    font-weight: 500;
}

.services h1 {
    font-size: 31px;
    font-weight: 700;
    line-height: 120%;
    color: #000000;
}

.services .wrapper {
    display: grid;
    row-gap: 24px;
    margin-top: 48px;
}

.services.sub .wrapper {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 30px;
}

.services.sub.code .wrapper {
    min-height: 60vh;
    display: block;
    position: relative;
    grid-template-columns: unset;
    gap: unset;
}

.services .wrapper .spinner {
    width: 10%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.services.sub.code .cashier {
    width: 100%;
    height: 80vh;
}

.services .service {
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.05s ease;
}

@media (hover: hover) and (pointer: fine) {
    .services .service:hover {
        box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
        transform: scale(101%);
        transition: all 0.15s ease-out;
    }
}

.services .service:active {
    opacity: 0.7;
    transition: opacity 0.05s ease;
}

.services .service > * {
    pointer-events: none;
}

.services .service img {
    width: 48px;
    height: 48px;
}
.services .service .content .title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.services .service .content .text {
    margin-top: 2px;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.services.sub .subService {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 24px;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease-in, box-shadow 0.3s ease-in, opacity 0.05s ease;
}

.services.sub .subService p {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
}

.services.sub .subService img {
    width: 35px;
    height: 35px;
}

@media (hover: hover) and (pointer: fine) {
    .services.sub .subService:hover {
        box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
        transform: scale(101%);
        transition: all 0.15s ease-out;
    }
}

.services.sub .subService:active {
    opacity: 0.7;
    transition: opacity 0.05s ease;
}

.services.cards + .partners .options {
    grid-template-columns: 85% 15%;
}

.filters-popup .regionsList {
    min-width: 350px;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 40px;
}

.cashierRegions {
    width: 100%;
    margin-bottom: 16px;
    padding: 6px 0;
}

.cashierRegions label {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.cashierRegions label p {
    margin-right: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.cashierRegions label select {
    padding: 2px;
    font-size: 16px;
    font-weight: 400;
    color: inherit;
}

.cashierRegions label select:focus {
    outline: none;
}

.cashierRegions label select option {
    font-size: 14px;
    font-weight: 400;
    color: inherit;
}