#home
  .blue-content__container
  .container
  .blue-content__block
  .content__image
  a {
  position: relative;
  height: 100%;
  width: 100%;
}

#home
  .blue-content__container
  .container
  .blue-content__block
  .content__image:hover
  svg
  circle,
#home
  .blue-content__container
  .container
  .blue-content__block
  .content__image:active
  svg
  circle {
  fill: #7be115;
}

#home
  .blue-content__container
  .container
  .blue-content__block
  .content__image
  svg {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);

  height: 66px;
  width: 66px;

  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.5, -0.01, 0, 1.005);
  z-index: 2;
  box-shadow: 0 15px 50px 0 rgba(15, 125, 39, 0.05);
  animation: pulse_video_play 2s infinite;
}

#home
  .blue-content__container
  .container
  .blue-content__block
  .content__image
  svg:active {
  transform: scale(1.1);
}

#home
  .blue-content__container
  .container
  .blue-content__block
  .content__image
  svg
  circle {
  transition: 100ms;
  fill: #45b34a96;
}

@keyframes pulse_video_play {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 226, 102, 0.2);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}

@media screen and (max-width: 600px) {
  .brands__carousel {
  }
}

