html {
  font-size: 19.2px;
  overflow: unset;
}

html body {
  all: initial;
}

html body .total-contain {
  all: initial;
}

.design-content {
  width: 100%;
  position: relative;
}

.design-content .content-design {
  width: 100%;
  display: flex;
  padding: 1rem;
  margin: 2rem 0;
}

.design-content .content-design .overview {
  width: 80%;
  border-radius: 1.5rem;
  box-shadow: 2px 2px 10px #81ccbd;
  border: 1px solid #eae7e7;
  padding: 2rem;
  overflow: hidden;
  transition: all 1.5s ease;
  opacity: 0;
  background-image: linear-gradient(to right, #fef2ec, #feeef1, #e7f6f6, #eef8f2);
}

.design-content .content-design .overview h1 {
  font-size: 3vw;
  margin: 1rem 0rem;
  font-family: hawk;
  color: #28ae78;
}

.design-content .content-design .overview h1::before {
  content: '';
  width: 50vw;
  height: 5vw;
  display: block;
  background-image: url("https://static.igem.wiki/teams/4113/wiki/wiki-image/animation/b7.gif");
  background-size: contain;
  background-repeat: no-repeat;
}

.design-content .content-design .overview p {
  width: 95%;
  font-size: 1.5vw;
  line-height: 3vw;
  margin: 0 auto;
  font-family: NavTitle;
  text-align: justify;
  text-justify: newspaper;
}

.design-content .content-design .overview p img {
  display: block;
  border-radius: 0.5vw;
  width: 50%;
  margin: 1rem auto;
}

.design-content .content-design .overview p .design-overview {
  display: block;
  width: 60%;
  margin: 0 auto;
}

.design-content .content-design .overview p .design-advantage {
  float: right;
  width: 40%;
  margin: 0 0 0.5rem 1rem;
}

.design-content .content-design .overview p .design-advantage-list {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  height: 20vw;
  border-radius: 0.5vw;
}

.design-content .content-design .overview p .design-advantage-list .design-advantage-item {
  display: inline;
  width: 48%;
}

.design-content .content-design .overview p .design-first-letter {
  color: #f9a10b;
  font-size: 2vw;
  margin-right: 0.15rem;
}

.design-content .content-design .catlogue {
  user-select: none;
  margin-left: 1rem;
  border-radius: 1.5rem;
  position: sticky;
  top: 8rem;
  box-shadow: 5px 5px 10px #e0dede;
  border: 1px solid #f0ebeb;
  padding: 0.3rem;
  overflow: hidden;
}

.design-content .content-design .catlogue .catlogue-img {
  top: 0%;
  right: -30%;
  position: absolute;
  width: 15vw;
  height: 4vw;
  transform: rotateZ(45deg);
  opacity: 0.6;
}

.design-content .content-design .catlogue .catlogue-item {
  box-sizing: border-box;
  padding-left: 1rem;
  font-size: 1.3vw;
  font-family: NavTitle;
  margin: 1rem 0rem;
  white-space: nowrap;
}

@media only screen and (max-width: 1000px) {
  .design-content .content-design .overview {
    width: 90%;
    transition: all .35s ease;
    margin: 0 auto;
  }

  .design-content .content-design .catlogue {
    display: none;
  }
}