.elementor-4717 .elementor-element.elementor-element-591bfea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-4717 .elementor-element.elementor-element-591bfea:not(.elementor-motion-effects-element-type-background), .elementor-4717 .elementor-element.elementor-element-591bfea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-e9cb79b6-88ef-446e-896b-78c973cb1fb1);background-position:center center;background-repeat:no-repeat;background-size:cover;}.elementor-4717 .elementor-element.elementor-element-591bfea, .elementor-4717 .elementor-element.elementor-element-591bfea::before{--border-transition:0.3s;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for container, class: .elementor-element-591bfea */.circle {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border-radius: 50%;
        position: relative;
      }

      .circle::before,
      .circle::after {
        content: "";
        position: absolute;
        left: 0px;
        width: 100px;
        height: 100px;
        border: 1px solid transparent;
        border-radius: 50%;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
      }

      .circle::before {
        border-color: #ffffff;
        animation-name: flash1;
      }

      .circle::after {
        border-color: #ffffff; /* Different border color */
        animation-name: flash2;
      }

      @keyframes flash1 {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
      }

      @keyframes flash2 {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.2);
        }
      }/* End custom CSS */