.brand_logo_container {
      /*position: absolute;*/
      height: 300px;
      width: 300px;
      border-radius: 50%;
      /*background: #590202;*/
      padding: 10px;
      text-align: center;

      animation-name: spinning-circle;
      animation-duration: 10s;
      animation-iteration-count: infinite;
}

@-webkit-keyframes spinning-circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.brand_logo {
      height: 150px;
      width: 150px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid white;
}