.home-services h2 {
    text-align: center;
    padding-bottom: 40px;
}

.home-services > div.main,
.home-services > div.once {
    border-top: 1px solid var(--color-blue);
    padding-top: 20px;
    padding-bottom: 40px;
    display: flex;
    gap: 15px;
}

.home-services > div.once {
    padding-bottom: 0;
}

.home-services > div.main > .header,
.home-services > div.once > .header {
    width: 25%;
}

.home-services > div.main > .items,
.home-services > div.once > .items {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.home-services > div.main > .items .one ,
.home-services > div.once > .items .one {
    background-color: var(--color-blue-light);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin-right: 0;
}

.home-services > div.main > .items .one .image {
    margin: -9px -9px 0 -9px;
}

.home-services > div.main > .items .one .image img {
    border-radius: 7px;
}

.home-services .items .one .title {
    margin-top: 10px;
    font-size: 30px;
}

.home-services .items .one .excerpt {
    margin-top: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.home-services .once .items .one .image {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    line-height: 0;
}


@media (max-width: 1024px) {
    .home-services > div.main, .home-services > div.once,
    .home-services > div.main > .items, .home-services > div.once > .items {
        gap: 10px;
    }

    .home-services > div.once > .items .one {
        padding: 10px;
    }
/*
    .home-services .items .one .title {
        font-size: 25px;
    }
*/
}

@media (max-width: 767px) {
    .home-services.text {
        width: 100%;
    }

    .home-services > div.main > .header,
    .home-services > div.once > .header {
        width: 100%;
    }

    .home-services > div.main, 
    .home-services > div.main > .items {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .home-services > div.once {
        display: flex;
        flex-direction: column;
        gap: 20px;
    } 

    .home-services > div.once > .items {
        width: 100%;
        display: block;
    }

    .home-services > div.once > .items .one {
        width: 330px;
        margin-right: 10px;
    }



}