I have tried to find an answer for this question and looked into this source but unfortunately, when I copy the code into my project, it doesn't display Unicode characters.
section {
padding: 60px 0;
}
section .section-title {
color: #0d2d3e;
margin-bottom: 50px;
font-weight: 600;
text-transform: uppercase;
}
#what-we-do {
background: #ffffff;
}
#what-we-do .card {
padding: 1rem!important;
border: none;
margin-bottom: 1rem;
-webkit-transition: .5s all ease;
-moz-transition: .5s all ease;
transition: .5s all ease;
}
#what-we-do .card:hover {
-webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
-moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}
// The rest of the CSS code here...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8><meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONSULTING</title>
// The rest of the HTML head section...
</body>
</html>
See a screenshot of the code above
Every time I encounter issues with properties before and after in the code, I face challenges like these. Can anyone help me solve this mystery?