/*
Theme Name: PRH Industries
Author: Designs Funnel Team
Description: Your description goes here
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
   .rotating-border-container {
        position: relative;
        display: inline-block;
    }

    .rotating-border-container::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        background: conic-gradient(#DB1221 0deg,
                #DB1221 108deg,
                /* Shows 30% of one color */
                transparent 108deg,
                transparent 252deg,
               #1D2691 252deg,
                #1D2691 360deg
                /* Shows 30% of another color */
            );
        z-index: 1;
        /* Lower z-index to keep the border behind the image */
        animation: rotate 4s linear infinite;
    }

    .rotating-border-container img {
        display: block;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        /* Higher z-index to bring the image to the front */
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }