.country-logo-wrap {
  font-family: 'Roboto', 'sans-serif';
}
.country-logo-wrap {
  margin: 0 auto;
  max-width: 95%;
}
.country-logo-wrap h3{
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #19A0DB;
  margin-bottom: 87px;
  margin-top:0;
  font-family: 'Roboto', 'sans-serif' !important;
}
.logocolums a {
  display: inline-block;
  margin: 0 24px 24px 24px;
}
.logocolums img {
  width: 120px;
  height: 48px !important;
  text-align: center;
  transition: all 0.5s;
}
.logocolums img:hover {
  filter: drop-shadow(0px 4px 3px #ccc);
}

.logocolums {
  text-align: center;
  margin-bottom: 26px;
}
.brands__wrapper{
  display:none;
}

@media (max-width: 575px) {
  section.core-country-logo {
    position: relative;
    margin-bottom: 49px;
  }
  .logocolums {
    display:none;
  }
  .brands__wrapper{
    display:block;
  }
  .brands__preWrapper {
    position: relative;
    width: 100%;
    height: auto;
    transform: translateX(0%);
    animation: scroll1 20s linear infinite;
    animation-delay: 2s;
    animation-direction: alternate;
    will-change: transform;
  }
  .brands__wrapper {
    position: relative;
    white-space: nowrap;
    transform: translateX(0%) translateZ(0);
    animation: scroll2 20s linear infinite;
    animation-delay: 2s;
    animation-direction: alternate;
    will-change: transform;
  }
  .brands__wrapper > a,
  .brands__wrapper > img {
    position: relative;
    display: inline-block;
    margin: 0 2rem;
    vertical-align: middle;
    height: 46px;
  }

  @keyframes scroll1 {
    0% {
      transform: translateX(-0%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  @keyframes scroll2 {
    0% {
      transform: translateX(0%) translateZ(0);
    }
    100% {
      transform: translateX(-100%) translateZ(0);
    }
  }

}