/* Knowledge base */
.knowledge-content-wrapper{
  max-width: 1000px;
}

.tabs-knowledge-p{
  padding: 40px 0 60px 0;
}

.filter-btn-content{
  display: inline-flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #F6F6F6;
  color: #747783;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  cursor: default;
}

.filter-btn{
  display: inline-flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E3E3E4;
  background: #FFF;
  color: #131B41;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover,
.filter-btn:focus{
  border-radius: 100px;
  border: 1px solid #462CE9;
  background: rgba(70, 44, 233, 0.06);
  color: #462CE9;
}

.filter-btn-selected{
  border-radius: 100px;
  border: 1px solid #462CE9;
  background: rgba(70, 44, 233, 0.06);
  color: #462CE9;
}

.knowledgebase-snippet{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.knowledgebase-snippet h3{
  font-size: 1.25rem;
  margin: 0 0 8px 0;
  color: #131b41;
  font-weight: 700;
}

.knowledgebase-snippet h4{
  margin: 16px 0 0 0;
  color: #131b41;
  font-weight: 700;
  text-transform: uppercase;
}

.knowledgebase-snippet p{
  color: #131b41;
  line-height: 1.7rem;
}

.knowledgebase-snippet ul{
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: disc;
  padding: 0 0 0 20px;
}

.knowledgebase-snippet li{
  color: #131b41;
  line-height: 1.7rem;
}

.knowledgebase-snippet a{
  color: #462CE9;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.knowledgebase-snippet a:hover,
.knowledgebase-snippet a:focus{
  text-decoration-color: #462CE9;
}

.knowledge-base-link{
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  color: #462CE9;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.knowledge-base-link:hover,
.knowledge-base-link:focus{
  text-decoration-color: #462CE9;
}

.knowledge-base-link svg{
  stroke: currentColor;
}

.case-studies-list{
  display: flex;
  flex-direction: column;
}

.case-studies-item{
  display: flex;
  flex-direction: column;
  background-color: #E3EDFC;
  border-radius: 16px;
  overflow: hidden;
}

.case-studies-image-wrapper{
  height: 220px;
  overflow: hidden;
}

.case-studies-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 60%;
}

.case-studies-content-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 32px 48px 32px;
}

.case-studies-subtitle{
  color: #3F5BEC;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.case-studies-title{
  color: #131B41;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 24px;
}

.case-studies-description{
  color: #131B41;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.case-studies-more-button svg{
  stroke: currentColor;
}

@media (min-width: 768px) {
  .case-studies-list{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .case-studies-item{
    width: calc((100% - 1 * 32px) / 2);
  }
}

@media (min-width: 1200px) {
  .case-studies-item{
    width: calc((100% - 2 * 32px) / 3);
  }
}
