.service-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 700px;
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.service-hero .pores {
    position: relative;
    height: 40px;
    width: 40px;
    background-color: #fff;
    transform: scale(0);
    /* z-index: 4; */
    border-radius: 50%;
    transition: transform .5s linear;
}

.service-hero img {
    display: none;
}

.service-hero .hero-head {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    mix-blend-mode: difference;
    cursor: default;
}

.service-hero h2 {
    font-size: 2rem;
    /* z-index: 1;
    color: #fff;
    mix-blend-mode: difference;
    cursor: default; */
}

.service-hero h2 {
    font-size: 6rem;
    /* z-index: 1;
    color: #fff;
    mix-blend-mode: difference;
    cursor: default; */
}

.overview {
    width: 100%;
}

.overview .section-heading h3 {
    line-height: 100%;
}

.overview .section-heading h3 span {
    font-size: 1.25rem;
    font-weight: 400;
}

.service-overview {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.service-overview .service-card {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 2rem 10px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: all .5s;
}

.service-overview .service-card:hover {
    background: #ffaf00;
    box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.25), 10px 10px 70px rgba(0, 0, 0, 0.25), inset 5px 5px 20px rgba(255, 255, 255, 0.25), inset -5px -5px 15px rgba(0, 0, 0, 0.75);
    transform: translateY(-20px);
}

.service-overview .service-card .box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.service-overview .service-card .box .service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: rgba(45, 45, 45, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #ffaf00;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all .5s;
}

.service-overview .service-card:hover .box .service-icon {
    background: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25), inset -3px -3px 5px rgba(0, 0, 0, 0.5);
}

.service-overview .service-card .box .service-icon i {
    color: #ffaf00;
    padding: 1rem;
}

.service-overview .service-card .box .content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffaf00;
    transition: all .5s;
}

.service-overview .service-card:hover .box .content h3 {
    color: white;
}

.service-overview .service-card .box .content p {
    font-size: .95rem;
    text-align: center;
    word-break: keep-all;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-overview .service-card .box .content a {
    display: inline-block;
    background: #ffaf00;
    padding: 10px 20px;
    letter-spacing: 1px;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all .5s;
}

.service-overview .service-card:hover .box .content a {
    background: white;
    color: #ffaf00;
}

.service-overview .service-card:hover .box .content a:hover {
    transform: scale(1.05);
}