/* Services Tabs */
:root{
  --primary-color: #0060FF;
}
.aiv-tabs {
  width: 100%;
  padding: 0px 0 12px 0;
}

.aiv-tabs__container {
  width: 100%;
  margin: 0 auto;
}

.aiv-tabs__nav {
  display: flex;
  gap: 10px;
  border-radius: 12px;
  /* padding: 20px; */
}

.aiv-tabs__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 2px;
border: 1px solid #fff;
border-right:4px solid #fff;
}

.aiv-tabs__item:hover {
  color: #0060FF;
  /* border-color: #0060FF; */
/* border-right:4px solid #0060FF; */

}
.aiv-tabs__item:hover .aiv-tabs__label {
  color: #0060FF;
}

.aiv-tabs__item--active {
background: #eff5ff;
border: 1px solid #0060FF;
border-right:4px solid #0060FF;
}

.aiv-tabs__icon {
  flex-shrink: 0;
  width: 45px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
}

.aiv-tabs__item--active .aiv-tabs__icon {
  background-color: #eff6ff;
}

.aiv-tabs__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.aiv-tabs__label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 30px;
color: #333333;
}
.aiv-tabs__item--active .aiv-tabs__label {
  color: #0060FF;
}
