* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.container-home {
  background: skyblue; }
  .container-home .banner {
    z-index: 4;
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #000;
    background-color: #fff; }
    .container-home .banner .banner-move {
      display: flex;
      overflow: hidden;
      height: 100%;
      width: 100%;
      align-items: center; }
      .container-home .banner .banner-move p {
        white-space: nowrap;
        animation: animate 20s linear infinite; }

@keyframes animate {
  0% {
    transform: translate3d(10%, 0, 0);
    visibility: visible; }
  100% {
    transform: translate3d(-100%, 0, 0); } }
  .container-home .left {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    width: 100vh;
    transform: rotate(270deg) translateX(-100%);
    transform-origin: top left; }
  .container-home .right {
    position: absolute;
    z-index: 3;
    left: 100vw;
    width: 100vh;
    transform: rotate(90deg);
    transform-origin: top left; }
  .container-home .bottom {
    position: absolute;
    bottom: 0;
    justify-content: flex-end;
    z-index: 2;
    border-top: 2px solid #000; }
  .container-home .home-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 49px; }
  .container-home a {
    text-decoration: none;
    text-transform: uppercase;
    background: lightcyan;
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000; }
  .container-home .about-topleft {
    position: absolute;
    width: 65%;
    height: 42.5%;
    top: 0;
    left: 0; }
  .container-home .products-topright {
    position: absolute;
    width: 35%;
    height: 58.5%;
    top: 0;
    right: 0; }
  .container-home .consulting-bottomleft {
    position: absolute;
    width: 35%;
    height: 57.5%;
    bottom: 0;
    left: 0; }
  .container-home .connect-bottomright {
    position: absolute;
    width: 65%;
    height: 42.5%;
    bottom: 0;
    right: 0; }
  .container-home .logo-center {
    width: 30%;
    height: 15%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background: lightgreen; }

body {
  font-family: sans-serif; }
