.hipo_sec {
  padding-top: 100px !important;
}
.hipo_banner_images {
    width: 600px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    margin: auto;
    background-image: url('/images/banner/treeImgBg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    position: relative;
}

#tree {
  position: relative;
  width: 100%;
  height: 100%;
}

.node.unfillednode{
  border: 2px solid #994E54;
}

.node {
  width: 17px;
  height: 17px;
  font-size: 8px;
  color: darkblue;  
  position: absolute;
  border: 2px solid #1F9443;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  cursor: pointer;
  transition: ease-in-out .3s;
}


.node:hover, .node.show {
  border-color: #fff;
}
.node_wrapper.dropdown-center {
  position: unset;
}
.nodeDeatail {
  font-size: 12px;
  background: #fff;
  min-width: 180px;
  max-width: 180px;
  padding: 8px 10px;
  border-radius: 8px;
  /* position: absolute; */
  /* top: 100%; */
  /* margin: 14px auto 0; */
  /* display: none; */
  z-index: 1;
  color: #000;
}
.node:hover.dropdown-menu {
  display: block;
}
.nodeDeatail span {
  font-weight: 600;
}
/* .nodeDeatail::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 10px;
  border-bottom: solid 10px #fff;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  margin: auto;
} */
.team_deatail_item:not(:last-child) {
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .hipo_banner_images {
    max-width: unset;
    aspect-ratio: 6/8;
    min-height: unset !important;
  }
}

@media (max-width: 545px) {
  #tree {
    transform: scale(0.9);
  }
}
@media (max-width: 500px) {
  #tree {
    transform: scale(0.8);
  }
  .node {
    transform: scale(1.1);
  }
}
@media (max-width: 445px) {
  #tree {
    transform: scale(0.7);
  }
}
@media (max-width: 395px) {
  #tree {
    transform: scale(0.6);
  }
  .node {
    transform: scale(1.2);
  }
}
@media (max-width: 345px) {
  #tree {
    transform: scale(0.57);
  }
}