.logo-grid {
  padding: 0 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .logo-grid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .logo-grid {
    margin: 0 auto;
    max-width: 1216px;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1920px) {
  .logo-grid {
    margin: 0 auto;
    max-width: 1407px;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.logo-grid__title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: #5a5a5f;
  text-align: center;
  margin: 0 auto 14px;
  max-width: 1216px;
  margin-bottom: 35px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .logo-grid__title {
    font-size: 2.25rem;
    line-height: 1.2222222222;
    font-weight: 500;
    margin-bottom: 51px;
  }
}
@media screen and (min-width: 1024px) {
  .logo-grid__title {
    font-size: 1.875rem;
    line-height: 1.2666666667;
    font-weight: 600;
    margin-bottom: 51px;
  }
}
.logo-grid__clients {
  opacity: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 64px;
}
.logo-grid__clients.in-viewport {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: animate-in-down;
  -moz-animation-name: animate-in-down;
  animation-name: animate-in-down;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes animate-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes animate-in-down {
  from {
    opacity: 0;
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes animate-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (min-width: 768px) {
  .logo-grid__clients {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
.logo-grid__client {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex: 0 1 calc(50% - 8px);
  -moz-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 8px);
  flex: 0 1 calc(50% - 8px);
  max-width: -moz-calc(50% - 8px);
  max-width: calc(50% - 8px);
  text-align: center;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.logo-grid__client.no-link {
  cursor: auto;
}
.logo-grid__client:not(.no-link):hover, .logo-grid__client:not(.no-link):focus, .logo-grid__client:not(.no-link):active {
  opacity: 0.4;
}
.logo-grid__client img {
  max-width: 100%;
  max-height: 75px;
}
@media screen and (min-width: 768px) {
  .logo-grid__client {
    -webkit-flex: 0 1 230px;
    -moz-box-flex: 0;
    -ms-flex: 0 1 230px;
    flex: 0 1 230px;
    max-width: 230px;
  }
}