.www_serve_header_right > div {
  padding: 10px 0px 10px 30px;
  border-style: solid;
  border-width: 0px 0px 0px 1px;
  border-color: #222222;
}
.www_serve_header_right {
  max-width: 45%;
}
.www_serve_header_left {
  max-width: 45%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.www_serve_herder {
  display: flex;
  justify-content: space-between;
}
.www_serve_content {
  display: flex;
  margin-top: 30px;
  align-items: stretch;
  gap: 80px;
}
.www_serve_content > div:first-child {
  width: 50%;
}
.www_serve_content > div:last-child {
  flex: 1;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.www_serve_content_item {
  cursor: default;
  display: flex;
  gap: 38px;
}
.www_serve_content_item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.www_serve_content_item_icon {
  position: relative;
  flex: none;
  width: 80px;
  height: 80px;
  background-color: #ededed;
  border-radius: 50%;
}
.www_serve_content_item_icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(24, 45, 163);
  border-radius: 50%;
  transform: scale(1.3);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s linear 0s;
}
.www_serve_content_item_icon img {
  object-fit: cover;
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.www_serve_content_item:hover .www_serve_content_item_icon::before {
  transform: scale(1);
  opacity: 1;
}
.www_serve_button {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
.www_serve_button_right_text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.www_serve_button_right_text > div:first-child {
  margin-top: 4px;
  width: 40px;
  height: 40px;
}
.www_serve_button_right_text > div:last-child {
  display: flex;
  flex-direction: column;
}
.www_serve_right_main > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
