.html-embed {
  position: static;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.base {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fafafa;
}

.div-block {
  position: relative;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 30;
  width: 100%;
  height: 100px;
  margin-top: -60px;
  background-color: #fafafa;
}

.div-block-2 {
  width: 100%;
  height: 100%;
}

.div-block-3 {
  width: 20%;
  height: 20%;
}

.image {
  width: 100%;
  height: 100%;
}

.div-block-4 {
  width: 100vw;
  height: 100vh;
}

.heading {
  display: none;
}

@media screen and (max-width: 991px) {
  .div-block {
    height: 60px;
  }

  .div-block-3 {
    width: 30%;
  }
}

@media screen and (max-width: 479px) {
  .div-block {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .div-block-3 {
    width: 60%;
  }

  .heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 32px;
    padding-left: 32px;
    text-align: center;
  }
}

