.sounds-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section-title {
  margin: 50px 0px;
}

.khtmat-type {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.khtmat-type > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
}

.khtmat-type > div .num-box {
  width: 30px;
  height: 100%;
  background-color: #01273a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

.khtmat-type > div .text-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  background-color: #fff;
  color: #181818;
  font-weight: 500;
  padding-right: 20px;
  position: relative;
  z-index: 5;
  transition: .3s;
}

.khtmat-type > div .text-box::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #01273a;
  right: 0;
  transition: 0.5s;
  z-index: -1;
}

.khtmat-type > div .text-box:hover {
    color: #fff;
}
.khtmat-type > div .text-box:hover::after {
  width: 100%;
}
