* {
  border: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1454px;
  }
}

body {
  font-family: "Inter", sans-serif;
  background-color: #FFFAF1;
  color: #1A131A;
}
@media (min-width: 1200px) {
  body {
    padding: 30px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Actor", sans-serif;
}

img {
  max-width: 100%;
}

.btn {
  background-color: none;
  padding: 0;
  outline: none;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.btn-primary {
  background-color: transparent !important;
  padding: 12px 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 100px;
  color: #AF8860;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: transparent;
  border: 1px solid #AF8860 !important;
}
.btn-primary .arrow {
  position: absolute;
  right: -56px;
  background: #AF8860;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
}
.btn-primary::after {
  position: absolute;
  content: "";
  background-color: #AF8860;
  right: -28px;
  top: -1px;
  width: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  height: calc(100% + 2px);
  border-radius: 100px 0 0 100px;
  z-index: -1;
}
.btn-primary.blackbtn {
  color: #000;
  border: 1px solid #000 !important;
}
.btn-primary.blackbtn .arrow {
  background: #000;
}
.btn-primary.blackbtn::after {
  background-color: #000;
}
.btn-primary.whitebtn {
  color: #fff;
  border: 1px solid #fff !important;
}
.btn-primary.whitebtn .arrow {
  background: #fff;
}
.btn-primary.whitebtn .arrow img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(2204%) hue-rotate(78deg) brightness(103%) contrast(105%);
          filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(2204%) hue-rotate(78deg) brightness(103%) contrast(105%);
}
.btn-primary.whitebtn::after {
  background-color: #fff;
}
@media (hover: hover) {
  .btn-primary.whitebtn:hover {
    color: #000 !important;
  }
}
@media (hover: hover) {
  .btn-primary:hover {
    color: #fff !important;
  }
  .btn-primary:hover::after {
    width: calc(100% + 30px) !important;
  }
}

.title-primary {
  font-weight: 400;
  font-size: 30px;
  color: #1A131A;
  line-height: 1.1;
}
@media (min-width: 992px) {
  .title-primary {
    font-size: 40px;
  }
}
@media (min-width: 1600px) {
  .title-primary {
    font-size: 60px;
  }
}

.image-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 1. Base State: Hidden and shifted down */
.reveal-text,
.reveal-card {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  /* Move down 30px initially */
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
  -webkit-transition-delay: var(--custom-delay);
          transition-delay: var(--custom-delay);
}

/* 2. Active State: Visible and back to original position */
.reveal-text.active,
.reveal-card.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hearticon {
  max-width: 62px;
  margin: auto;
  margin-bottom: 12px;
}

.privacypolicy {
  padding: 70px 0;
}
.privacypolicy .container {
  max-width: 1200px;
}
.privacypolicy h1, .privacypolicy h2, .privacypolicy h3, .privacypolicy h4, .privacypolicy h5, .privacypolicy h6 {
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 35px;
}
.privacypolicy p {
  margin-bottom: 20px;
}
.privacypolicy ul li {
  margin-bottom: 5px;
}