/*#region FONTS */
/*#endregion FONTS */

:root {
  /* COLOR SWATCHES */
  --primary-color: #2B6CBF;
  --secondary-color: #399344;
  --tertiary-color: #F1A7C1;
  --quaternary-color: #ffffff;
  --quinary-color: #EB4236;

  /* GOOGLE PALETTE */
  --google-blue: #4285F5;
  --google-red: #EB4236;
  --google-green: #33A854;
  --google-yellow: #FABD05;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: red;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  /* overflow: hidden; */
  padding: 60px 0;
  background: var(--tertiary-color);
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

path {
  fill: var(--tertiary-color);
  transition: all .3s;
}

/* .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
} */

.logos:hover .logos-slide {
  animation-play-state: paused;
}

svg:hover path {
  fill: var(--secondary-color) !important;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

svg {
  height: 50px;
  width: auto;
  margin: 0 40px;
}