.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -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: #414140;
  background-image: url('../images/background.svg'), url('../images/background-2.svg');
  background-position: 50% 100%, 50% 100%;
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
}

.js-clock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 120px;
  margin-right: 10px;
  margin-left: 10px;
  padding: 10px;
  -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;
  font-size: 12px;
  line-height: 20px;
}

.clock-number {
  color: #eeeeee;
  font-size: 80px;
  line-height: 85px;
  font-weight: 500;
}

.clock-label {
  margin-top: 10px;
  margin-right: -5px;
  font-family: Lato, sans-serif;
  color: #8daf5f;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.heading {
  margin-top: 1px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 55px;
  line-height: 55px;
  font-weight: 500;
}

.div-block {
  position: relative;
  max-width: 100vw;
  min-width: 536px;
  margin-bottom: 20px;
  padding: 20px 20px 20px 56px;
  border-style: dotted;
  border-width: 4px;
  border-color: #8daf5f;
}

.body {
  font-family: Poppins, sans-serif;
}

.text-block {
  color: #8daf5f;
  font-size: 30px;
  line-height: 35px;
}

.rocket {
  position: absolute;
  left: auto;
  top: -70px;
  right: -30px;
  bottom: auto;
  max-width: 80px;
}

.logo {
  position: absolute;
  left: 0%;
  top: -160px;
  right: auto;
  bottom: auto;
  width: 60%
}

.footer {
  position: absolute;
  left: 5%;
  top: auto;
  right: 5%;
  bottom: 0%;
}

.footer-icon {
  max-width: 50px;
}

.footer--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
}

.footer--text {
  margin-left: 5%;
  color: #fff;
  font-size: 12px;
  text-align: left;
}

@media (max-width: 767px) {
  .js-clock {
    max-width: 100vw;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .box {
    width: auto;
  }
  .clock-number {
    font-size: 50px;
  }
  .heading {
    font-size: 45px;
  }
  .div-block {
    min-width: 0px;
    padding-left: 20px;
  }
  .footer--item {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 479px) {
  .wrapper {
    overflow: hidden;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .box {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .clock-number {
    font-size: 32px;
    line-height: 50px;
  }
  .heading {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  .div-block {
    max-width: 85vw;
  }
  .text-block {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

