.block-services__h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
}

.block-services__title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0F203B;
    text-transform: uppercase;
}

.block-services__title a {
   color: #0F203B !important;
}

.block-services__title a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.block-services__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.block-services__item {
    display: block;
    width: 330px;
    height: 450px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #00000040;
    padding: 30px;
    background-color: #fff;
    transition: background-color 500ms linear 0ms;
}

.block-services__item-image {
    display: block;
    width: 100%;
    height: 270px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.block-services__item-image img {
    width: 100%;
}

.block-services__item-title {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    height: 35px;
}

.block-services__item-arrow {
    height: 23px;
}

.block-services__item-arrow:before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url("img/arrow_black.png") no-repeat center;
    margin: auto;
}

.block-services__item:hover {
    background-color: #1B2E4D;
    transition: background-color 500ms linear 0ms;
}

.block-services__item:hover > .block-services__item-arrow:before {
    background: url("img/arrow_white.png") no-repeat center;
}

.block-services__item:hover > .block-services__item-title {
    color: #fff;
}

@media (max-width: 1024px) {

    .block-services__h1 {
        font-size: 18px;
    }

    .block-services__title {
        font-size: 18px;
    }

    .block-services__items {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .block-services__item {
        margin-right: 50px;
        margin-bottom: 50px;
    }

    .block-services__item:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }

}

@media (max-width: 576px) {

    .block-services__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .block-services__item:last-child {
        margin-bottom: 0;
    }
}
