aside.right section.pro {
    text-align: center;
    border-bottom: 4px solid transparent;
    padding: 20px var(--margin);
    line-height: 1;
    color: #fff;
    background:
        conic-gradient(from var(--border-angle), #28022f, #112 5%, #112 60%, #213 95%) padding-box,
        conic-gradient(from var(--border-angle),
            transparent 25%,
            #08f,
            #f03 99%,
            transparent);
    background-position: center center;
    animation: bg-spin 3s linear infinite;
        -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
aside.right section.pro:hover{
  transform:scale(1.02)
}
aside.right section.pro a {
    display: block;
}
aside.right section.pro h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 1px;
}
aside.right section.pro h3 span {
    color: var(--color);
}
aside.right section.pro p {
    margin-bottom: 8px;
}
aside.right section.pro .price {
    font-size: 24px;
    color: var(--color);
    font-weight: 400;
}
aside.right section.pro .price span {
    color: white;
    
    font-size: 16px;
    opacity: 0.7;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}
@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}
@media all and (max-width: 960px) {
    aside.right section.pro h3 {
        font-size: 40px;
        line-height: 40px;
    }
    aside.right section.pro p {
        font-size: 20px;
    }
    aside.right section.pro .price {
        font-size: 35px;
    }
}
@media all and (max-width: 720px) {
    aside.right section.pro h3 {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 3px;
    }
}