/* Прозрачность иконки Play на всем сайте */
.tn-elem__svg,
.tn-atom__svg,
svg {
    opacity: 0.5 !important;
    transition: opacity 0.3s ease;
}

.tn-elem__svg:hover,
.tn-atom__svg:hover,
svg:hover {
    opacity: 0.8 !important;
}