.services-col {
  flex: 1 0 0%;
  height: 350px;
  transition: flex 0.3s ease;
}
.services-col:hover {
  flex: 2 0 0%;
}

.services-col > .w-100 {
  justify-content: flex-start !important;
  padding-left: calc((100% - var(--content-width, 100%)) / 2);
  padding-right: calc((100% - var(--content-width, 100%)) / 2);
  transition: padding 0.3s ease;
  padding-top: 40px;
  padding-bottom: 40px;
}
.services-col:hover > .w-100 {
  padding: 40px;
}

.services-col h3 {
  margin: auto auto;
  transition: margin 0.3s ease;
}
.services-col:hover h3 {
  margin: 0 auto 0 0;
}

.services-col .services-col-hidden {
  height: 0;
  overflow-y: hidden;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.services-col:hover .services-col-hidden {
  height: auto;
  overflow-y: visible;
  opacity: 1;
}

.slider-container {
  position: relative;
  display: inline-flex;
  width: 100%;
  float: left;
  flex-wrap: nowrap;
}
.slider-container > .brands-container {
  position: relative;
  display: flex;
  width: auto;
  height: 100px;
  float: left;
  justify-content: flex-start;
  animation-name: animation_gallery_slide;
  animation-duration: 45s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-play-state: running;
  -webkit-animation-name: animation_gallery_slide;
  -webkit-animation-duration: 45s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-direction: normal;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
}
.slider-container > .brands-container > .image-container {
  position: relative;
  display: inline-block;
  height: 80px;
  float: left;
  padding: 20px 30px;
  margin: auto 0;
}
.slider-container > .brands-container > .image-container.large {
  padding: 10px 30px;
}
.slider-container > .brands-container > .image-container > .image {
  position: relative;
  display: inline-block;
  height: 100%;
  float: left;
}

@keyframes animation_gallery_slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
