@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic&family=Inter:wght@400;600;800&display=swap');
*{
    margin: 0%;
    padding: 0%;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-family: 'Inter', sans-serif;
    color: #000;
    text-decoration: none;
    
    
}
/* ScrollBar */
body::-webkit-scrollbar{
    width: 6px;
    background-color: #00000000;
}
body::-webkit-scrollbar-thumb{
    background-color: #006cf6;
}
*::selection{
    background-color: #006CF6;
    color: black;
}
body{
    background-color: #006CF620;
}
body > .solutions-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    
}
body > .solutions-container > section{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(min(100%,32rem),1fr));
    grid-auto-rows: 220px;
    height: 98%;
    width: 90%;
    margin-top: 2%;
    margin-bottom: 2%;
    gap: 2%;
}
body > .solutions-container > section > .btn-solution{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 96%;
    padding: 4%;
    border-radius: 6px;
    gap: 8%;
    background-color: #ffffff60;
}
body > .solutions-container > section > .btn-solution > .container-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}
body > .solutions-container > section > .btn-solution > .container-title > ion-icon{
    width: 30px;
    height: 30px;
    padding: 2%;
    border-radius: 8px;
    background-color: #006CF620;
    color: #006CF6;

}
body > .solutions-container > section > .btn-solution > .container-title > h2{
    width: 80%;
    font-size: 1.6em;
    font-weight: 600;
}