* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 10px;
  margin-bottom: 20px;
  background-color: #36050b;
}

.logo a {
  color: #fff;
  font-weight: 900;
  font-family: "Overlock", sans-serif;
  text-decoration: none;
}
.logo {
  margin-bottom: 0px !important;
}
.banner {
  background-image: url(./images/heart-bg.jpg);
  height: 65vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a50101;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #a50101 2%, transparent 15%);
  opacity: 0.8;
}

.banner h1 {
  font-family: "Overlock", sans-serif;
  font-weight: 900;
  color: #fff;
  position: relative;
}

.sec-padding {
  padding: 50px 0px;
}

.title {
  font-family: "Overlock", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

.subtitle {
  font-family: "Overlock", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 20px;
  text-align: justify;
  color: #333;
}

.download-sec {
  background-color: #36050b;
  padding: 50px 0px 20px 0px;
}

.download-sec h2 {
  color: #fff;
}

.down-sec {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2%;
}

hr {
  border-color: #6c6c6c !important;
  margin-top: 20px !important;
}

footer ul {
  list-style-type: none;
  margin-bottom: 0px;
  gap: 2rem;
  display: flex;
  justify-content: end;
  align-items: center;
}

footer a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

.privacy{
    min-height:calc(100vh - 227px);}
    

@media (min-width: 100px) and (max-width: 600px) {
  .banner ul {
    left: 2.5%;
  }
  .banner ul a {
    color: #fff;
    font-size: 0.8rem;
  }
  .banner {
    background-size: cover;
    height: 40vh;
  }
  .down-sec {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .banner::before {
    background-image: linear-gradient(180deg, #a50101 6%, transparent);
  }
}
