/* @media screen and (max-width: 767px) and (orientation: landscape){

}

@media screen and (max-width: 767px) and (orientation: portrait){

}

@media screen and (min-width: 768px) and (max-width: 1279px) and (orientation: landscape){

}

@media screen and (min-width: 768px) and (max-width: 1279px) and (orientation: portrait){
  
}

@media screen and (min-width: 1280px){

} */

@media (max-width: 1000px) {
  .title {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: calc(100vh - 40px);
  }

  .title-box {
    display: flex;
    width: 100%;
    height: 50%;
    padding: 24px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .svg-container {
    position: relative;
    flex: 1;
    height: 100%;
    padding: 0 8px;
  }

  .svg-content-responsive {
    display: block;
    width: 100%;
    height: 100%;
  }

  .people{
    position: absolute;
    width: 80vw;
    bottom: -20px;
  }

}

@media (max-width: 700px){
  .people{
    position: absolute;
    width: 110vw;
    bottom: 0px;
  }

}