body {
  background: white;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: rgb(80, 80, 80);
  overflow: hidden;
}

html,
body {
  overflow: hidden;
}

@media only screen and (min-width: 300px) and (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }
}

.restBody {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: rgb(80, 80, 80);
}

.normalText {
  margin-top: 180px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
}

.bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.bgImg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}

.companyName {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 10px;
  color: rgb(0, 0, 80);
}

.company-title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 35px;
}

.company-business {
  font-family: "Hind Mysuru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 6px;
}

.buttonCls {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  border: 1px solid white;
  border-radius: 10px;
  padding: 3px 15px;
  color: white;
  cursor: pointer;
}

.buttonCls:hover {
  background: white;
  color: rgb(80, 80, 80);
}

.footerCls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  color: rgb(80, 80, 80);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  font-family: "Hind Mysuru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.queCls {
  margin-right: 20px;
}

/* * {
  box-sizing: border-box;
} */

@media (max-width: 500px) {
  .restBody {
    padding-top: 0px;
  }

  .restBody img {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .normalText {
    width: 100%;
    padding: 100px 0 800px 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
  }

  .footerCls {
    flex-direction: column;
  }
}
