
.s-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

    width: 100%;
    height: 100px;
    background: #edf5ff;
    color: #002466;
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
}


.servises-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
    /* background-color: rgb(130, 122, 122); */
}

.s-container {
    position: relative;
    font-family: Arial;
    border-radius: 6px;
    width: 400px;
    max-height: 200px;
    margin: 10px;
    transition: all 0.10s ease;
}
.s-container:hover {
    box-shadow: 8px 9px 20px -2px rgba(66, 68, 90, 1);
    transition: all 0.15s ease;
}

.s-container img {
    width: 100%;
    max-width: 400px;
    max-height: 200px;
    /* min-height: 140px; */
    object-fit: cover; /* Обрезка изображения, чтобы оно подходило по размеру */
    border-radius: 6px;
    /* background-color: #a1a1a1; /* Фоновый цвет для замещения */
    /* margin-bottom: 15px; */
}


.text-block {
    position: absolute;
    font-family: "comic sans ms";
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 13px;
    background-color: rgba(45, 45, 45, 0.25);
    color: white;
    padding: 5px 10px;
    backdrop-filter: blur(1.5px);
}
