/*body {*/
/*    font-family: 'Roboto', sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    min-height: 100vh;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*  }*/

.smartLabSection {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  svg {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin-bottom: 20px;
  }

  .message-box {
    text-align: center;
    color: #000000;
    font-family: Roboto;
    font-weight: 300;
    max-width: 380px;
    width: 100%;
  }

  .message-box h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .message-box span {
    color: #0DB04B;
  }

  .buttons-con .action-link-wrap {
    margin-top: 20px;
  }

  .buttons-con .action-link-wrap a {
    background-color: #0DB04B;
    padding: 8px 25px;
    border-radius: 4px;
    color: #FFF;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s linear;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
  }

  .buttons-con .action-link-wrap a:hover {
    background-color: #FFF;
    box-shadow: 0 0 10px rgba(13, 176, 75, 0.5);
    color: #0DB04B;
  }

  #Polygon-1, #Polygon-2, #Polygon-3, #Polygon-4, #Polygon-5 {
    animation: float 1s infinite ease-in-out alternate;
  }

  #Polygon-2 { animation-delay: .2s; }
  #Polygon-3 { animation-delay: .4s; }
  #Polygon-4 { animation-delay: .6s; }
  #Polygon-5 { animation-delay: .8s; }

  @keyframes float {
    100% {
      transform: translateY(20px);
    }
  }

  @media (min-width: 768px) {
    .smartLabSection {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    svg {
      margin-bottom: 0;
      margin-right: 40px;
    }

    .message-box {
      text-align: left;
    }

    .message-box h1 {
      font-size: 30px;
    }
  }
