.case-cta-text {
  position: relative;
  background: #111111;
  padding: 40px 140px;
  border-radius: 30px;
}

img.cta-shap1 {
  position: absolute;
  height: 70%;
  left: 0;
  top: 0;
}

img.cta-shap2 {
  position: absolute;
  height: 70%;
  right: 0;
  bottom: 0;
}

.case-cta-text p {
  font-size: 24px;
}

.tab-switcher {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 22px;
}

.case-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  font-weight: 400;
  /* padding: 4px 0; */
  cursor: pointer;
  transition: all 0.25s ease;
}

.case-tab-btn.active {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid #ffffff;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 32px auto;
}

.pill-btn {
  padding: 8px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #867987;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pill-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.pill-btn.active {
  background: #ffffffd1;
  border-color: transparent;
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.card-item {
  transition: transform 0.2s ease, border-color 0.2s ease;
  margin-bottom: 10px;
}

.card-item:hover {
  transform: translateY(-4px);
}

.card-body-custom {
  padding: 15px;
  background: rgba(255, 255, 255, 0.0901960784);
  margin-top: 5px;
  border-radius: 15px;
}

.card-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  background: #111111;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.case-cta-text {
  position: relative;
  background: #111111;
  padding: 40px 140px;
  border-radius: 30px;
}

img.cta-shap1 {
  position: absolute;
  height: 70%;
  left: 0;
  top: 0;
}

img.cta-shap2 {
  position: absolute;
  height: 70%;
  right: 0;
  bottom: 0;
}

.case-cta-text p {
  font-size: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease;
}

.case-img img {
  width: 100%;
  border-radius: 20px;
}

a.globe-web {
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 24px;
  background: #111111;
}

.tag-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-text {
  display: flex;
  justify-content: space-between;
}

.case-btn a img {
  height: 20px;
}

.card-item:hover .case-btn a img {
  color: #000;
  filter: brightness(0.1);
}

.case-btn a {
  display: flex;
  height: 50px;
  width: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.card-item:hover .case-btn a {
  color: #000;
  background: #ffffff;
}

.case-title {
  height: 60px;
}

@media (max-width: 991px) {
  .case-cta-text {
    padding: 40px 40px;
  }

  h4.case-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  h4.case-title {
    height: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .case-cta-text p {
    font-size: 18px;
  }
}