@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");
.historyuniver {
  background: none;
  box-shadow: none;
  padding: 0%;
}
.historyuniver .container {
  width: 100%;
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  grid-template-rows: 1fr;
  gap: 30px 30px;
  grid-auto-flow: row;
  grid-template-areas: "item1 item2";
}
.historyuniver .item2 {
  border-radius: 12px;
  padding: 5px;
  background-color: whitesmoke;
  padding: 0.5rem;
  border: 0.2px solid #627e94;
}
.historyuniver .item1 {
  grid-area: item1;
}
.historyuniver .item1 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  border-radius: 12px;
  padding: 5px;
  background-color: whitesmoke;
  padding: 0.5rem;
  border: 0.2px solid #627e94;
}
.historyuniver .item1 .container .branch-item {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid #627e94;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  transition: 0.3s all linear;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}
.historyuniver .item1 .container .branch-item p {
  color: #5d809b;
  font-weight: bold;
}
.historyuniver .item1 .container .branch-item:hover {
  background-color: #627e94;
}
.historyuniver .item1 .container .branch-item:hover svg path {
  fill: white;
  stroke: white;
}
.historyuniver .item1 .container .branch-item:hover p {
  color: white;
}
.historyuniver .item1 .container [active] {
  background-color: #627e94;
}
.historyuniver .item1 .container [active] svg path {
  fill: white;
  stroke: white;
}
.historyuniver .item1 .container [active] p {
  color: white;
}
@media screen and (min-width: 340px) and (max-width: 767px) {
  .historyuniver .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 30px 30px;
    grid-auto-flow: row;
    grid-template-areas: "item2";
  }
  .historyuniver .item1 {
    display: none;
  }
}
.historyuniver .item2 {
  grid-area: item2;
  padding: 30px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 1rem;
}
.historyuniver .item2 .title {
  top: 0px;
  left: 0px;
  padding: 1rem 1.5rem;
  background-color: #627e94;
  border-radius: 12px 8px 12px 8px;
  color: whitesmoke;
  text-align: center;
}
.historyuniver .item2 .body {
  text-align: justify;
  line-height: 2rem;
  color: #5d809b;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */