#service_section{
    padding: 70px 0;
    background-color: white;

}

#service_section h2{
    font-size: 50px;
    text-align: center;
    padding-bottom: 50px;
}

#service_section h3{
    font-size: 30px;
    text-align: center;
    color: white;
}
#service_section h4{
    font-size: 30px;
    text-align: center;
    color: white;
}
#service_section p{
    text-align: center;
    color: white;
}

.flex_container{
    margin-top: 50px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card{
    width: 350px;
    background-color: var(--secondary-color);
    border-radius: 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#service_section img{
    width: 100%;
    justify-content: center;
    padding: 0 0px;
    border-radius: 50px;
}

.card *{
    text-align: center;
}

.card a{
    display: none;
    background-color: black;
    width: min-content;
    padding: 15px 40px;
    border-radius: 50px;
    margin: auto;
    text-decoration: none;
    color: white;
    transition: 150ms ease-in-out;
}
.card a:hover{
    background: transparent;
    border: 2px solid black;
}

@media(max-width: 1300px){
    
    #service_section img{
        width: 100%;
        justify-content: center;
        padding: 0 0px;
        border-radius: 20px;
    }

    #service_section h2{
        font-size: 30px;
        padding-bottom: 10px;
    }

    #service_section h3{
        font-size: 20px;
        text-align: center;

    }
    #service_section p{
        font-size: 15px;
    }

    .card{
        width: 350px;
        border-radius: 10px;
        padding: 30px 20px;
          }

}
@media(max-width: 400px){
    
    #service_section h2{
        font-size: 30px;
        padding-bottom: 10px;
    }

    #service_section h3{
        font-size: 15px;
        text-align: center;

    }
    #service_section p{
        font-size: 10px;
    }

    .card{
        width: 250px;
          }
    .card a{
        font-size: 20px;
        background-color: black;
        width: min-content;
        }
}