.main {
    width: 100%;
    height: auto;
    min-height: 500px;
    padding: 20px 4%;
}

.header_main {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 8px;
}

.header_title {
    font-size: 1.2rem;
}

.title {
    margin-top: 20px;
    font-size: 2.4rem;
}

.services {
    width: 100%;
    height: auto;
    padding: 20px 0;
    list-style: none;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    width: calc(100% / 4 - 10px);
    height: 200px;
    transition: ease .4s;
}

.service_link {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--color_green);
    text-decoration: none;
    margin: auto;
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.service_link::before {
    content: '';
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color_green);
    z-index: -100;
}

.service_logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50px;
    padding: 4px;
    background: var(--color_white);
}

.service_info_container {
    width: 100%;
    height: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 6px;
}

.service_title {
    width: auto;
    height: auto;
    color: var(--color_black);
}

.service_description {
    width: auto;
    height: auto;
    overflow: hidden;
    color: var(--color_black);
}

@media(hover:hover) {
    .service:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 1330px) {
    .service {
        width: calc(100% / 2 - 10px);
    }
}

@media screen and (max-width: 860px) {
    .service {
        width: 100%;
    }
}

@media screen and (max-width: 706px) {
    .main {
        padding-top: 80px;
    }
}