* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.zimlep {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: url("/img/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #ebecee;
  color: #000;
  text-align: center;
  overflow: hidden;
  font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
}
.zimlep::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.2); */
  /* backdrop-filter: brightness(0.9); */
}
.zimlep-overflow {
  position: relative;
  z-index: 2;
}
.zimlep-content {
  position: relative;
  padding: 130px 16px 24px;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
.zimlep-content .title {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #000;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
.zimlep-content .subtitle {
  width: fit-content;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  color: #db136c;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}
.zimlep-content .actions {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 100px;
  justify-content: space-around;
}
.btn-link-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  width: 100%;
  max-width: 365px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  text-align: center;
}
.btn-link-wrapp a {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(to right, #8c52ff 0%, #5ce1e6 100%);
  font-size: 20px;
  transition: scale 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}

.sidebar {
  color: #000;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
  margin-top: auto;
}

.sidebar a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .zimlep-content {
    padding-top: 30px;
    max-width: 90%;
  }
  .zimlep-content .actions {
    padding-top: 60px;
  }
}
@media (max-width: 600px) {
  .zimlep-content {
    max-width: 100%;
  }
}
