.services {
    flex-direction: column;
    padding: 0;
    padding-bottom: 30px;
    min-width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/s2.svg");
}

.items {
    float: left;
    min-width: 1080px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
    max-width: 1080px;
}

.item {
    z-index: 1;
    background-color: rgba(0, 7, 14, 0.9);
    width: calc(25% - 110px);
    max-width: 240px;
    margin: 20px;
    box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    color: rgb(199, 199, 199);
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 120px !important;
    border: 1px solid rgb(70, 70, 70);
    transition: 0.6s;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 2px #0F8AFD,
        0 0 5px #0F8AFD;
}

.item:hover {
    cursor: pointer;
    transform: scale(1.05);
    background-color: rgba(4, 37, 68, 1);
    opacity: 0.95;
    transition: 1s;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #0F8AFD,
        0 0 32px #0F8AFD,
        0 0 32px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 15px #0F8AFD;
}

.item img {
    width: 70px;
    height: 70px;
}

.item h2 {
    font-size: 1.2rem;
    line-height: 38px;
    margin-bottom: 0;
    color: #a0cdf7;

}

.item p {
    font-family: sans-serif;
    text-align: center;
    font-size: 0.9rem;
    line-height: 26px;
    margin-top: 5px;
}

.item a {
    min-width: 100% !important;
}

.item button {
    min-width: 100% !important;
    margin: 0;
    margin-top: 10px;
    height: 35px;
    border-radius: 5px;
    color: #ffffff;
    border: none;
    background-color: #0F8AFD;
    box-shadow: none;
}

.item button:hover {
    color: #0F8AFD;
    background-color: #ffffff;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #0F8AFD,
        0 0 32px #0F8AFD,
        0 0 32px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 15px #0F8AFD;
}

@media screen and (max-width: 1100px) {

    .items {
        min-width: 0;
        width: calc(100% - 10px);
        justify-content: center;
    }

    .item {
        min-width: 180px !important;
        max-width: 180px !important;
        width: 180px;
    }
}

@media screen and (max-width: 600px) {
    .item {
        float: left;
        min-width: 0px;
        width: 180px;
        max-width: 200px !important;
    }

    .item h2 {
        font-size: 1.5rem;
    }

    .item p {
        font-size: 0.9rem;
    }
}