main > #hero {
    background-color: #3b3b3b;
    
    width: 100vw;
    min-height: 125px;
    height: 20vh;
    max-height: 420px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    text-align: center;

    gap: 16px;
}

main > #hero  > h1 {
    font-family: 'Merriweather Sans';
    font-size: 44px;
    color: #fff;
    margin: 0;
}

@media (max-width: 800px) {
    main > #hero > div > h1 {
        font-size: 7vw;
    }
    main > #hero > div > p {
        font-size: 4vw;
    }
}

main > #services-container {
    justify-content: center;
    padding: 50px 30px 20px;
    display: flex;
}
main > #services-container > #services {
    max-width: 928px;
}
main > #services-container > #services > .category {
    margin-bottom: 50px;
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
}

main > #services-container > #services > #title {
    font-weight: lighter;
    font-size: 28px;
    position: relative;
    display: inline-block;
}

main > #services-container > #services > #title::after {
    position: absolute;
    background: #000;
    content: "";
    bottom: 2px;
    height: 2px;
    width: 100%;
    left: 0;
}

.service-item {
    width: 289px;
}
.service-item > #title {
    font-size: 21px;
    margin: 0 0 4px;
}
.service-item > #details {
    font-size: 14px;
    margin: 0 0 8px;
}
.service-item > #links {
    display: flex;
    gap: 10px;
}
.service-item > #links > #link {
    text-decoration: none;
    font-size: 14px;
    color: #3667d1;
    display: flex;
    align-items: center;
    position: relative;
    gap: 3px;
}
#link::after {
    background: #3667d1;
    position: absolute;
    content: "";
    bottom: 0px;
    height: 1px;
    width: 0;
    left: 0;
}
#link:hover::after {
    width: 100%;
}
.service-item > #links > #link > #icon {
    height: 15px;
}