  /* [01: menu section] */
  .top1 {
    height: 100px;
    text-align: center;
  }

  .logo {
    width: 20%;
    height: 100px;
    /* background-color: red; */
    float: left;
  }

  .rightmenu {
    width: 80%;
    height: 100px;
    /* background-color: aqua; */
    float: right;
  }

  .social {
    width: 100%;
    height: 50px;
    float: left;
  }

  .socialDiv {
    text-align: right;
    margin: 5px 10px 5px 5px;
  }

  .other {
    width: 100%;
    height: 50px;
    float: left;
  }

  .otherDiv {
    text-align: right;
    margin: 5px 10px 5px 5px;
  }

  .businessTopIMG {
    width: 100%;
    height: 200px;
    text-align: center;
  }

  .buImg {
    width: 24.50%;
    height: 200px;
    margin: 2px;
    float: left;
  }

  .speceh {
    height: 200px;
    width: 100%;
    /*background-color: royalblue;*/
  }


  .footImg {
    width: 33%;
    height: 200px;
    float: left;
    margin: 2px;
  }

  .foot2 {
    height: 50px;
    background-color: #ecf1f1;
    padding: 11px 0px 5px 27px;
    clear: both;
  }

  .menuright {
    width: 50%;
    float: right;
    z-index: 3;
  }

  .menuleft {
    width: 50%;
    float: left;
    padding: 4px;
    font-size: 27px;
    background-color: #f8f9fa;
    z-index: 4;
  }
  /* marque section  */
  .marquee {
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee p {
    position: absolute;
    height: 100%;
    width: 150%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 20s linear infinite;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

  /* respostive Desktop  */
  @media only screen and (max-width: 1025px) {
    body {
      background-color: lightblue;
    }
  }

  /* respostive Tab  */
  @media (min-width: 768px) and (max-width: 1024px) {
    main {
      width: 90%;
      margin: 0 auto;
      background-color: gray;
    }

    .logo,
    .rightmenu,
    .other,
    .social,
    .businessTopIMG,
    .buImg,
    .speceh,
    .footImg {
      width: 95%;
      margin: 0 auto;
    }

    .foot2 {
      height: 50px;
      background-color: #ecf1f1;
      padding: 5px;
      clear: both;
    }

    .socialDiv {
      text-align: center;
      margin: 5px 10px 5px 5px
    }

    .otherDiv {
      text-align: center;
    }
  }

  /* respostive mobile  */
  @media (min-width: 320px) and (max-width: 767px) {

    .logo,
    .rightmenu,
    .other,
    .social,
    .businessTopIMG,
    .buImg,
    .speceh,
    .footImg {
      width: 98%;
      margin: 0 auto;
    }

    .foot2 {
      height: 50px;
      background-color: #ecf1f1;
      padding: 5px;
      clear: both;
    }

    .socialDiv {
      text-align: center;
      clear: both;
    }

    .otherDiv {
      text-align: center;
    }
  }
  