.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-image: url(../assets/images/bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.m-bg {
  display: none;
}

.bg {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

.footer {
  width: 100vw;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.item {
  cursor: pointer;
  color: #A69B97;
  font-family: "SF Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 8px;
  user-select: none;
}

.item:hover {
  color: #ffffff;
}

.description {
  width: 190px;
  color: rgba(0, 0, 0, 0.70);
  font-family: "Cerebri Sans Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  position: absolute;
  top: 130px;
  left: 20%;
}


.m-t1 {
  display: none;
}

.m-t2 {
  display: none;
}

.downloadBox {
  width: 100vw;
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;

}

.codeItem {
  width: 132px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 12px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  cursor: pointer;
  position: relative;
  z-index: 999999999;
  color: #fff;
}

.codeItem:hover .androidCode {
  display: block;
}

.androidCode {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #000;
  bottom: -120px;
  border-radius: 10px;
  /* padding: 4px; */
  display: none;
}

.androidCodeImg {
  display: block;
  width: 100%;
  height: 100%;
}

.appleItem {
  width: 132px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 12px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  cursor: pointer;
  position: relative;
  z-index: 999999999;
  color: #fff;
}

.appleItem:hover .appleCode {
  display: block;
}

.appleCode {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #000;
  bottom: -120px;
  border-radius: 10px;
  /* padding: 4px; */
  display: none;
}

.appleCodeImg {
  display: block;
  width: 100%;
  height: 100%;
}

.downloadIcon {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.download{
  display: none;
}