h2{
    margin-top: 5vh;
    text-align: center;
    font-size: 4rem;
}

.grid{
    margin-top: 2vh;
    display: grid;
    grid-template-columns:1fr;
    gap: 20px;
    
}

.service{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1  0px;
    border: 1px solid var(--c1);
    padding: 6vmin 3vmin;
    border-bottom-right-radius: 25%;
    position: relative;
    text-shadow: 2px 0 5px rgb(0, 0, 0);
    transition: 0.8s ease;
}



h3{
    color: white;
    text-shadow: 2px 0 5px var(--c1);
    margin-top: 2vh;
}

.service i {
    font-size: 3rem;
}

.service button{
    background: var(--c1);
    padding: 1vmin 2vmin;
    border-radius: 5px;
    border: 2px solid var(--c1);
    transition: 0.2s ease;
    margin-top: 1vh;
    text-shadow: 2px 0 5px rgb(0, 0, 0);
    color: white;
}



.service::before{
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    background: var(--c1);
    transform: rotate(45deg);
    top: -4vmin;
}

.links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 2vh;
}
.links a{
    text-decoration: none;
}
.part{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.part  i{
    font-size: 1.3rem;
}

.part span{
    color: white;
    font-style: italic;
    font-size: 0.8rem;
}

.service1{
    background: url("./service1.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.service2{
    background: url("./service2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 25%;
}
.service3{
    background: url("./service3.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}


.service .content{
    backdrop-filter: blur(5px);
    box-shadow: 10px 0 25px rgb(255, 255, 255);
    border-radius: 5px;
    padding: 2vmin 1vmin;
    width: 70vmin;
    height: 75vmin;
}

.service .content p{
    color: white;
    text-shadow: 2px 0 5px var(--c1);
}

footer{
    background: var(--c1);
    text-align: center;
    color: white;
    display: flex;
    align-content: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1vmin;
}
@media (width>1000px) {
    .card1{
        width: 40%;
    }
    .info{
        width: 60%;
    }
    .grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        /* margin-inline: 180px; */
        margin-top: 5vh;
    }
    .service::before{
            top: -2.1vmin;
    }
    .service button{
        background: none;
    }
    .service button:hover{
        background: var(--c1);
        cursor: pointer;
        color: white;
    }
    .service:hover{
        transform: scale(1.02);
        box-shadow: 10px 0 25px var(--c1);
    }
    .service .content{
        width: 45vmin;
        height: 33vmin;
    }
    .part:hover{
        transform: translateY(-3px);
        text-shadow: 2px 0 2px white;
    }
}