.bg-switcher {
  position: relative;
  z-index: 2;
}
.bg-switcher::before {
  content: '';
  background: var(--bg-switcher);
  mix-blend-mode: luminosity;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.content-item {
  display: none;
}
.content-item.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-switcher-item-wrapper:nth-of-type(n+3) {
  margin-top: 1rem;
}

.card-switcher-icon {
  height: 115px;
}
.card-switcher-item {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.20) 0%, rgba(119, 119, 119, 0.20) 100%), #FFF;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.card-switcher-item:hover {
  background: linear-gradient(180deg, rgba(253, 0, 8, 0.10) 0%, rgba(151, 0, 5, 0.10) 100%), #FFF;
  cursor: pointer;
}
.card-switcher-item.active {
  background: linear-gradient(180deg, rgba(253, 0, 8, 0.10) 0%, rgba(151, 0, 5, 0.10) 100%), #FFF;
}
.card-switcher-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-switcher-title {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.active .card-switcher-title {
  color: #FD0008;
}
.card-switcher-body {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}

.icon-circle {
  background-color: #FFF;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: relative;
}

.icon-circle img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-switcher-wrapper {
  position: relative;
  z-index: 10;
}

.card-switcher-wrapper .content-area {
  display: flex;
  align-items: center;
}

.card-switcher-wrapper .content-item {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}
.card-switcher-wrapper .content-item h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0;
}
.card-switcher-wrapper .button {
  margin: 0;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #FD0008;
  color: #FFF;
  background: #FD0008;
  cursor: pointer;
  width: fit-content;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-switcher-wrapper .button:hover {
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .card-switcher-item-wrapper:nth-of-type(n+3) {
    margin-top: 0;
  }

  .card-switcher-item-wrapper {
    margin-bottom: 1rem;
  }
  .card-switcher-item {
    padding: 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.20) 0%, rgba(119, 119, 119, 0.20) 100%), #FFF;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .card-switcher-icon {
    height: 105px;
  }
  .content-area {
    margin-top: 20px;
  }
  .card-switcher-body {
    font-size: 16px;
  }
  .card-switcher-wrapper .button {
    padding: 10px;
    font-size: 16px;
  }
  .card-switcher-wrapper .button svg {
    width: 8px;
    margin-left: 5px;
  }
  .card-switcher-item {
    min-height: 270px;
  }
  .card-switcher-item.active {
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.20) 0%, rgba(119, 119, 119, 0.20) 100%), #FFF!important;
  }
  .active .card-switcher-title {
    color: #333;
  }
}
.card-switcher-item:hover .icon-circle img.icon,
.card-switcher-item.active .icon-circle img.icon {
  filter: brightness(0) saturate(100%) invert(12%) sepia(95%) saturate(7500%) hue-rotate(357deg) brightness(85%) contrast(120%);
}