/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  background-color: #fff;
}
.wrapper2 {
  position: fixed;
  bottom: 5px;
  right: -1970px;
  max-width: 100%;
  width: 100%;
  z-index: 11111;
  background: #000c;
  border-radius: 8px;
  padding: 25px 75px 25px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper2.show {
  right: 5px;
}
.wrapper2 header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #fff;
  font-size: 32px;
}
header h2 {
  color: #fff;
  font-weight: 500;
}
.wrapper2 .data2 {
  margin-top: 16px;
}
.wrapper2 .data2 p {
  color: #cac8c8;
  font-size: 16px;
}
.data2 p a {
  color: #fff;
  text-decoration: none;
}
.data2 p a:hover {
  text-decoration: underline;
}
.wrapper2 .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #641def;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
  width:100px;
}
.buttons #acceptBtn:hover {
  background-color: #621aeb;
}
#declineBtn {
  border: 2px solid #fff;
  background-color: #000;
  color: #fff;
}
#declineBtn:hover {
  background-color: #000;
  color: #fff;
}

/* Tablets (768px - 1024px) */
@media only screen and (max-width: 1024px) {

}

/* Mobile Devices (up to 767px) */
@media only screen and (max-width: 767px) {
  header i {
    font-size: 25px;
  }
  header h2 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .wrapper2 {
    padding: 10px 20px;
  }
  .wrapper2 .data2 {
    margin-top: 5px;
  }
  .wrapper2 .data2 p {
    font-size: 12px;
    margin-bottom: 0;
  }
  .wrapper2 .buttons {
    margin-top: 10px;
  }
  .wrapper2 .buttons .button {
    padding: 2px 0;
    width: 85px;
    font-size: 14px;
  }
  .heading-h1 {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .hero-illustration.bottom .mobile-image>img {
    min-height: unset;
    margin-top: 30px;
  }
  .hero-illustration.bottom .desktop-image>img, .hero-illustration.bottom .mobile-image>img {
    width: 90vw;
  }
}