.partnerbadge {
    top: 50px;
    right: 50px;
    position: absolute;
    left: auto;
    bottom: auto;
  z-index:5
}

.cixon-hero:after{
    background: rgba(0, 128, 172, 0.45)!important;

    /*opacity: calc(30 / 100)!important;*/
}
.cixon-hero::before {
    background: rgba(0, 128, 172, 0.2)!important;
}



.cixon-hero:after {
    position: absolute;
    content: "";
    width: 550px;
    height: 550px;
         bottom: -100px;
        left: -20px;
    background: var(--white);
    opacity: 0.15;
    border-radius: 100%;
    z-index: 1;  animation: pulse 3s ease-in-out infinite;
}
 .cixon-hero::before {
    position: absolute;
    content: "";
    width: 375px;
    height: 375px;
    top: -20px;
    left: 25%;
    background: var(--white);
    opacity: 0.15;
    border-radius: 100%;
    z-index: 2;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }