.mobile-only {
  display: none;
}

section#experience #clients {
  background-color: #f7f7f7;
  padding: 184px 5% 222px;
  margin: 0 auto;
}

section#experience #clients > .clients-inner {
  max-width: 940px;
  margin: 0 auto;
}

section#experience #clients h2 {
  font-size: 64px;
  font-family: Inter, sans-serif;
  font-weight: bold;
  line-height: 1.19;
}

section#experience #clients ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding: 0;
  flex-wrap: wrap;
  align-items: flex-start;
}

section#experience #clients .filters-with-observer {
  position: relative;
}

section#experience #clients .clients-with-observer {
  position: relative;
}

section#experience #clients .filters {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 63px;
}

section#experience #clients .filters h5 {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: black;
  line-height: 2.83;
  font-weight: bold;
  text-transform: uppercase;
}

section#experience #clients .filters h5 .note {
  text-transform: none;
  margin: 0 12px;
  font-weight: normal;
  color: #808080;
}

section#experience #clients .industries ul.filter {
  max-width: 460px;
}

section#experience #clients .services ul.filter {
  max-width: 345px;
}

section#experience #clients ul.filter li {
  flex-shrink: 0;
  width: 100px;
  height: 89px;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02);
  padding: 5px 10px;
  border: 2px solid white;
  background-color: white;
  text-align: center;
  font-size: 11px;
  font-family: Lato, sans-serif;
  font-weight: bold;
  line-height: normal;
  color: #2a3d52;
  margin-right: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: all 0.3s;
}

section#experience #clients ul.filter li:hover {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

section#experience #clients ul.filter li i {
  display: block;
  font-size: 40px;
  margin-bottom: 8px;
}

section#experience #clients ul.filter li.selected {
  border-color: #ff8c2d;
}

section#experience #clients ul.clients {
}

section#experience #clients ul.clients > li {
  width: calc(33.3% - 20px);
  margin-right: 20px;
  margin-bottom: 50px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02);
  cursor: pointer;
  animation-duration: 0.3s;
}

section#experience #clients ul.clients > li > .li-inner {
  padding: 15px;
  transition: all 0.3s;
}

section#experience #clients ul.clients > li > .li-inner:hover {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

section#experience #clients ul.clients > li > .li-inner > .logo {
  height: 50px;
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}
section#experience #clients ul.clients > li > .li-inner > .logo > img {
  object-fit: contain;
  max-height: 50px;
  max-width: 80%;
  display: block;
}

section#experience #clients ul.clients .expandArrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 15px;
}

section#experience #clients ul.clients .expandArrow i {
  font-size: 75%;
  color: #d8d8d8;
}

section#experience #clients ul.clients p.tagline {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: #8b8b8b;
}

section#experience #clients ul.clients .description {
  display: none;
}
section#experience #clients ul.clients .description.open {
  display: block;
}

section#experience #clients ul.clients p {
  margin: 15px 0;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 1.43;
  color: #767676;
}

section#experience #clients ul.tags > li {
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  border-radius: 3px;
  padding: 5px;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: black;
  white-space: nowrap;
}

section#experience #clients ul.tags > li > i {
  margin-right: 5px;
}

section#experience #clients ul.tags > li.selected {
  background-color: white;
  border-color: #ff8c2d;
}

section#experience #clients div.scroll-down-prompt {
  position: fixed;
  bottom:44px;
  left: 50%;
  margin-left: -87px;
  z-index: 1;

  display: flex;
  justify-content: space-evenly;
  align-items: center;

  color: white;
  background-color: black;
  width: 155px;
  height: 35px;
  border-radius: 17.5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02);

  cursor: pointer;
}

section#experience #clients div.scroll-down-prompt.visible {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
  opacity: 1;
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

section#experience #clients div.scroll-down-prompt.invisible {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
}

section#experience #clients div.scroll-down-prompt i {
  font-size: 8px;
}

@media screen and (max-width: 900px) {
  .mobile-only {
    display: initial;
  }
  section#experience #clients {
    padding: 104px 20px;
  }
  section#experience #clients h2 {
    font-size: 31px;
  }
  section#experience #clients .filters {
    flex-direction: column;
    justify-contents: center;
  }
  section#experience #clients .filters h5 {
    display: none;
  }
  section#experience #clients .filters .interest {
    font-family: Lato;
    font-size: 14px;
    font-weight: 900;
    line-height: 2.83;
  }
  section#experience #clients .filters hr {
    height:2px;
    border-width:0;
    background-color:#e3e3e3;
    margin-top: 7px;
    margin-bottom: 14px;
    width: 93%;
  }
  section#experience #clients .industries ul.filter {
    max-width: initial;
  }
  section#experience #clients .services ul.filter {
    max-width: initial;
  }
  section#experience #clients ul.filter {
    justify-contents: space-around;
  }
  section#experience #clients ul.filter li:hover {
    transform: initial;
  }
  section#experience #clients ul.filter li {
    flex-shrink: 0;
    width: 45%;
    height: auto;
    border-radius: 15px;
    padding-left: 7px;
    text-align: left;
    margin-right: 12px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    transition: all 0.3s;
  }
  section#experience #clients ul.filter li.selected {
    border-color: white;
  }
  section#experience #clients ul.filter li.selected i {
    border-color: white;
    color: #ff8c2d;
  }
  section#experience #clients ul.filter li i {
    font-size: 11px;
    padding-right: 5px;
    margin-bottom: 0px;
    align-self: center;
    color: #e4e5e5;
  }
  section#experience #clients ul.filter li .icon-blockchain::before {
    content: "\e903";
  }
  section#experience #clients ul.filter li .icon-finance::before {
    content: "\e916";
  }
  section#experience #clients ul.filter li .icon-data-analytics::before {
    content: "\e933";
  }
  section#experience #clients ul.filter li .icon-machine-learning::before {
    content: "\e905";
  }
  section#experience #clients ul.filter li .icon-logistics::before {
    content: "\e92e";
    font-size: 6px;
  }
  section#experience #clients ul.filter li .icon-education::before {
    content: "\e920";
    font-size: 7px;
  }
  section#experience #clients ul.filter li .icon-communication::before {
    content: "\e909";
  }
  section#experience #clients ul.filter li .icon-real-estate::before {
    content: "\e925";
  }
  section#experience #clients ul.filter li .icon-infrastructure::before {
    content: "\e928";
  }
  section#experience #clients ul.filter li .icon-resume::before {
    content: "\e902";
  }
  section#experience #clients ul.filter li .icon-law::before {
    content: "\e91c";
  }
  section#experience #clients ul.filter li .icon-development::before {
    content: "\e912";
  }
  section#experience #clients ul.filter li .icon-dev-ops::before {
    content: "\e91d";
  }
  section#experience #clients ul.filter li .icon-design::before {
    content: "\e931";
  }
  section#experience #clients ul.filter li .icon-project-management::before {
    content: "\e91b";
  }
  section#experience #clients ul.filter li .icon-quality-assurance::before {
    content: "\e90b";
  }
  section#experience #clients ul.filter li .icon-conversation::before {
    content: "\e944";
  }
  section#experience #clients ul.filter li .icon-engineering::before {
    content: "\e942";
  }

  section#experience #clients ul.clients {
    margin-top: 34px;
    align-items: stretch;
    flex-direction: column;
    margin-right: 0;
  }
  section#experience #clients ul.clients > li {
    width: auto;
    margin: 0 0 25px 0;
  }
}
