Визуально выглядит всё отлично, но выполнен на 95% кнопка различия показывает что свойства поворота иконки не работает, в чем причина?

Впишите сюда текст; также, отключить форматирование текста можно, начав строку с 4х пробелов

html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
line-height: 30px;
}

body {
min-width: 550px;
min-height: 290px;
padding: 10px;
}

.two-cards {
width: 350px;
height: 250px;
padding: 10px;
text-align: center;
}

.two-cards div {
position: relative;
display: inline-block;
width: 120px;
height: 180px;
margin: 0 10px;
margin-top: 30px;
vertical-align: middle;
background: url(/assets/course57/heart.svg) no-repeat 50% 50%;
background-size: 50px auto;
background-color: white;
border-radius: 5px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
}
.two-cards div:last-child {
background: url(/assets/course57/spade.svg) no-repeat 50% 50%;
background-color: white;
background-size: 50px auto;
}
/* Ширина иконок, не изменяйте */
.two-cards div::before,
.two-cards div::after {
width: 20px;
position: absolute;
font-weight: bold;
font-size: 25px;
background-size: 25px auto;
padding-bottom: 20px;
}
.ace-heart:before,
.ace-heart:after {
content:“A”;
color: red;
background: url(/assets/course57/heart.svg) no-repeat 50% 100%;
}
.two-spade:before,
.two-spade:after {
content: “2”;
color: black;
background: url(/assets/course57/spade.svg) no-repeat 50% 100%;
}
.ace-heart:before,
.two-spade:before {
left: 5px;
top: 5px;
}
.ace-heart:after,
.two-spade:after {
right: 5px;
bottom: 5px;
}

/* Поворот нижней иконки */
.two-cards div::after {
transform: rotate(180deg);
}

двоеточие забыл