@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-brand-color: #297AE3;
    --primary-color: #15171C;
    --secondary-color: #232933;
    --light-secandary-color: #2E3744 ;
    --text-color: white;
    --secondary-text-color: #B3B4B6;
}
*{
 margin: 0;
 padding: 0;
 scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 20px ;
    color: var(--text-color);
}
h1{
font-size: 100px;
line-height: 115%;
padding: 30px;
padding-top: 10px;
}
.subheading{
    margin-top: 25px;
    color: var(--secondary-text-color);
    padding: 25px;
}


#services_section{
    padding: 70px 0;
    background-color: var(--primary-color);
}
#services_section h2{
    font-size: 50px;
    text-align: center;
}
.flex_container{
    margin-top: 50px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.card{
    width: 350px;
    max-width: (90% - 40px);
    background-color: var(--secondary-color);
    border-radius: 100px;
    padding: 60px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.card *{
    text-align: center;
}
.card a{
    background-color: #297AE3;
    width: min-content;
    padding: 15px 40px;
    border-radius: 50px;
    margin: 0 auto;
    text-decoration: none;
    color:  white;
    border: 4px solid #297AE3;
    transition: 150ms ease-in-out;
}
.card a:hover{
    background: transparent;
}