.container-img-hero {
    position: relative;
}

.container-img-hero::after {
    position: absolute;
    content: '';
    inset: -10px;
    width: calc(100% + 20px);
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    border: solid 20px rgba(255, 255, 255, 0.4);
}


.btn-registration-sm {
    position: absolute;
    z-index: 1;
    right: -10px;
    bottom: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: fit;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    font-family: var(--wp--preset--font-family--margarine);
    font-size: 16px;
    text-align: center;
    background: var(--purple);
    transform: scale(1);
    transition: all 0.3s ease-out;
}

.btn-registration-sm::after {
  position: absolute;
  content: '';
  inset: -3.5px;
  width: calc(100% + 7px);
  height: auto;
  border-radius: 100%;
  border: solid 7px rgba(255, 255, 255, 0.6);
}

.btn-registration-sm:hover {
  transform: scale(0.9);
  background: var(--white);
}