.xperia-service-menu {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.xperia-service-menu-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #ffffff33;
  border-radius: 20px;
  padding: 20px;
  transition: 0.3s ease;
  background-color: #1e1e1e;
      position: relative;
    overflow: hidden;
      transition: transform 0.3s ease;
}

.xperia-service-menu-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);
    
    width: 100%;
    height: 70px;
    
    background: rgba(113, 255, 215, 1);
    filter: blur(50px);
    border-radius: 50%;
    
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

/* hover effect */
.xperia-service-menu-item:hover::after {
    bottom: -60px;
    opacity: 1;
}

.xperia-service-menu-item:hover {
    transform: translateY(-4px);
}

.xperia-service-menu-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.xperia-service-menu-item-icon {
  width: 56px;
  height: 56px;
  background-color: #ffffff1a;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xperia-service-menu-item-icon img {
  width: 32px;
  height: 32px;
}

.xperia-service-menu-item-title {
  margin-top: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -2%;
}

.xperia-service-menu-item-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -2%;
  color: #ffffffb2;
  margin-top: 4px;
}

.service-menu-outer-container {
  width: calc(100% - 362px);
}

.xperia-service-menu-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.xperia-service-menu-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  border: 1px solid #FFFFFF33;
  border-radius: 30px;
  padding: 16px 16px;
  background-color: #1E1E1E;
  color: #ffffff;
  transition: 0.3s ease;
  width: calc((100% - 134px)/3);
}

.xperia-service-menu-inline-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.xperia-service-menu-inline-icon {
  width: 56px;
  height: 56px;
  border-radius: 99px;
  background-color: #ffffff1a;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.xperia-service-menu-inline-icon img {
  width: 32px;
  height: 32px;
}

.xperia-service-menu-inline-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
