/* Base CSS */
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  color: #000000;
}

body {
  color: #000000;
  font-weight: 400;
  font-family: "Be Vietnam Pro", sans-serif;
  margin: 0;
  background-color: #fffcf9;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

a,
button,
input,
textarea {
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

.container-fluid {
  max-width: 100%;
}

.hidden {
  display: none;
}

.top-minus-120 {
  margin-top: -120px;
}

.desk_none {
  display: none;
}

/* ----------------------------- HEADER AREA START ------------------------ */

.header {
  padding-block: 20px;
  z-index: 8888;
}

.header .container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.header.sticky {
  position: sticky;
  background-color: #ff9163;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 5px 0px #00000014;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 110px;
}

.header__logo img {
  width: fit-content;
  height: 36px;
}

.header__menu nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__menu nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  position: relative;
}

.download__btn {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff8e6a 0%, #ffaf65 100%);
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 2.46px solid #ffffff;
  letter-spacing: 2.46px;
  padding: 6px 26px;
  border-radius: 40px;
  display: inline-block;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.download__btn span {
  transition: all 0.3s ease-in-out;
  position: relative;
  pointer-events: none;
}

.download__btn:hover span {
  color: #ff8e6a;
}

.download__btn::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #fff, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.download__btn:hover::before {
  --size: 400px;
}

.header__menu nav ul li a:before {
  position: absolute;
  left: 50%;
  top: 115%;
  height: 2px;
  width: 0;
  content: "";
  background-color: #fff;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.header__menu nav ul li a.active::before {
  width: 100%;
}

.header__menu nav ul li a:hover::before {
  width: 100%;
}

.hero__audio-wave img {
  width: 100%;
}

.header__fixed--color {
  background-color: #ff9163;
  position: sticky;
}

/* ----------------------------- HEADER AREA END ------------------------ */

/* ----------------------------- HERO AREA START ------------------------ */

.hero {
  min-height: 100vh;
  padding-top: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -95px;
  overflow: hidden;
  padding-bottom: 20px;
}

.hero__content h1 {
  font-weight: 600;
  font-size: 46px;
  line-height: 120%;
  letter-spacing: -2px;
  text-align: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__content p {
  font-size: 20px;
  text-align: center;
  line-height: 110%;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.hero__content {
  margin-bottom: 40px;
}

.hero__audio-area {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 45px;
}

.hero__audio-box-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 5;
}

.hero__audio-box-inner {
  position: relative;
  max-width: 500px;
  height: 250px;
  display: flex;
  padding-top: 88px;
  padding-left: 96px;
  padding-right: 96px;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.68) 23%,
    rgba(255, 255, 255, 0.6) 55%,
    rgba(255, 255, 255, 0.72) 83%,
    rgba(255, 255, 255, 0.45) 100%
  );
  border: 0.2rem solid #fff;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  -o-border-radius: 26px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 55;
}

.hero__audio-box-inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 564px;
  height: 284px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  z-index: -1;
  background: #ffe4bd;
  filter: blur(64px);
  -webkit-filter: blur(4rem);
  border: 12px solid #fff;
  content: "";
}

.hero__audio-bird {
  position: absolute;
  bottom: -28px;
  left: -8px;
  width: 95px;
  height: 130px;
  object-fit: contain;
}

.hero__audio-mice {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 75px;
}

.hero__audio-box p {
  font-size: 22px;
  line-height: 1.4;
}

#typed-text {
  display: inline-block;
  transition: transform 0.4s ease;
  /* only move, no opacity */
}

/* ✨ Slide up animation */
#typed-text.slip-out {
  transform: translateY(-10px);
  /* smooth upward slip */
}

.hero__audio-wave {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.hero__audio-box {
  position: relative;
  z-index: 55;
}

.typewriter-text {
  display: inline-block;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.typewriter-text.slide-out {
  transform: translateY(-20px);
  opacity: 0;
}

.hero__btn {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 999;
  margin-top: 45px;
}

.hero__btn .download__btn {
  font-size: 16px;
  padding: 12px 35px;
}

/* ----------------------------- HERO AREA END ------------------------ */

/* ----------------------------- TESTIMONIAL AREA START ------------------------ */

.testimonial__inner-block .section__content--center h3 {
  max-width: 100%;
  margin: 0;
}

.testimonial__card {
  background-color: #ffffffa8;
  padding: 20px;
  border: 1px solid #fffffe;
  width: 360px;
  height: 240px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.testimonial__card-top {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.rate__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rate__icons img {
  height: 16px;
}

.testimonial__card-top a {
  font-size: 12px;
  color: #202225;
  font-weight: 300;
  line-height: 21.98px;
}

.testimonial__card-top a:hover {
  text-decoration: underline;
}

.testimonial__card-content h3 {
  font-size: 18px;
  color: #202225;
  font-weight: 500;
  line-height: 26.97px;
  margin-bottom: 12px;
}

.testimonial__card-content p {
  color: #202225;
  font-size: 14px;
  line-height: 20.73px;
  font-weight: 300;
}

.section__content h3 {
  background: linear-gradient(to right, #ff885f 0%, #ffc669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  font-weight: 600;
  line-height: 110.00000000000001%;
}

.section__content h5 {
  color: #000000;
  font-size: 28px;
  line-height: 130%;
  font-weight: 400;
  margin: 0;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.testimonial__wrapper--2 {
  margin-top: 20px;
}

.testimonial .section__content--center h3 {
  max-width: 100%;
  padding: 0 15px;
  margin-bottom: 60px;
}

.testimonial__inner-wrap {
  padding: 50px 0;
  position: relative;
  padding-bottom: 180px;
  overflow: hidden;
}

.testimonial__shape-one {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.testimonial__shape-one img {
  height: 100%;
}

.testimonial__shape-two {
  position: absolute;
  right: 0;
  bottom: 193px;
  height: 100%;
  width: 58%;
}

.testimonial__shape-two img {
  height: 158%;
  width: 100%;
}

.testimonial__inner-wrap:before {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: 400px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 252, 249, 0) 0%, #fffcf9 100%);
  z-index: 1;
}

.testimonial {
  overflow: hidden;
  position: relative;
}

.testimonial .container-fluid {
  position: relative;
  z-index: 333;
}

/* ----------------------------- TESTIMONIAL AREA END ------------------------ */

/* ----------------------------- ABOUT AREA START ------------------------ */
.about .container {
  max-width: 1258px;
}

.testimonial:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 252, 249, 0) 0%, #fffcf9 100%);
  z-index: 1;
}

.testimonial::after {
  position: absolute;
  left: 0;
  top: 102px;
  right: 0;
  height: 100px;
  content: "";
  background: linear-gradient(0deg, rgba(255, 252, 249, 0) 0%, #fffcf9 100%);
  z-index: 1;
}

.about {
  position: relative;
  z-index: 1;
}

.about__inner .section__content--center h3 {
  margin-bottom: 28px;
  font-size: 44px;
}

.about__inner {
  margin-bottom: 140px;
}

.section__content p {
  color: #000000;
  font-size: 18px;
  line-height: 162%;
  font-weight: 500;
  max-width: 1015px;
  letter-spacing: ;
  margin: 0 auto;
  margin-top: 28px;
}

.about__inner .section__content h5 {
  font-weight: 600;
  font-size: 30px;
}

.about__inner .section__content p {
  font-size: 22px;
  max-width: 1126px;
  line-height: 175%;
}

/* ----------------------------- ABOUT AREA END ------------------------ */

/* ----------------------------- FEATURE AREA START ------------------------ */
.feature {
  overflow: hidden;
}

.feature__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.feature__inner-block .feature__wrapper:nth-child(2) {
  position: relative;
  z-index: 333;
}

.feature__inner-block .feature__wrapper:nth-child(4) {
  position: relative;
  z-index: 33;
}

.feature__inner-block .feature__wrapper:nth-child(5) {
  position: relative;
  z-index: 33;
}

.feature__content {
  width: 36%;
  flex-shrink: 0;
}

.feature__thumb {
  width: 64%;
  flex-shrink: 0;
}

.feature__content h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 120%;
  color: #000000;
  max-width: 600px;
}

.feature__content h4 span {
  background: #f89472;
  background: linear-gradient(to right, #f89472 0%, #ffd796 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature__content p {
  color: #000000;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  max-width: 570px;
  margin-bottom: 30px;
}

.common__btn {
  background: linear-gradient(
    90deg,
    rgba(255, 142, 106, 0.9) 0%,
    #ffaf65 50%,
    rgba(255, 175, 101, 0.6) 100%
  );
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 22px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  text-transform: uppercase;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.common__btn span {
  position: relative;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

/* .common__btn:hover span {
  color: #FF8E6A;
} */

.common__btn::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #58afe7, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.common__btn:hover::before {
  --size: 400px;
}

/* ----------------------------- FEATURE AREA END ------------------------ */

/* ----------------------------- COMMUNITY AREA START ------------------------ */
.community {
  margin-top: 100px;
}

.container-fluid {
  max-width: 100%;
}

.section__content--center {
  text-align: center;
}

.section__content--center h3 {
  max-width: 725px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.community__wrapper {
  margin-top: 80px;
}

.video__card {
  position: relative;
  height: 470px;
  overflow: hidden;
  border-radius: 35px;
  width: 313px;
}

.thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.play__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff8e6ade 0%, #ffaf65c7 100%);
  border: none;
  cursor: pointer;
  z-index: 3;
}

.play__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid #ffffffe8;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video__card video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: none;
}

/* ----------------------------- COMMUNITY AREA END ------------------------ */

/* ----------------------------- INSIGHT AREA START ------------------------ */

.insight__bottom-block .section__content h5 {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 26px;
  line-height: 40px;
}

.insight__bottom-block {
  max-width: 975px;
  margin: 0 auto;
  margin-top: 140px;
}

.section__content h6 {
  color: #000000;
  font-size: 24px;
  line-height: 25px;
  font-weight: 500;
  margin: 0;
}

.insight {
  padding-bottom: 120px;
  overflow: hidden;
}

.insight .container {
  max-width: 1100px;
}

/* ----------------------------- INSIGHT AREA END ------------------------ */

/* ----------------------------- FAQ AREA START ------------------------ */

.faq {
  padding-top: 140px;
  padding-bottom: 160px;
  position: relative;
  z-index: 22;
}

.accordion__title h3 {
  text-align: center;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.accordion {
  margin-top: 60px;
}

.accordion__item {
  border-bottom: 1px solid #00000033;
  overflow: hidden;
}

.accordion__item:nth-child(1) {
  border-top: 1px solid #00000033;
}

.accordion__input {
  display: none;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 22px;
  font-weight: 600;
}

.accordion__icon {
  transition: transform 0.3s ease;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
}

.accordion__text {
  font-size: 16px;
  color: #333332;
  line-height: 24px;
  padding-right: 25px;
}

.accordion__input:checked ~ .accordion__content {
  max-height: 200px;
  padding: 15px;
  overflow-y: auto;
  padding-bottom: 10px;
}

.accordion__input:checked + .accordion__header .accordion__icon {
  transform: rotate(180deg);
}

/* ----------------------------- FAQ AREA END ------------------------ */

/* ----------------------------- STATISTICS AREA START ------------------------ */
.statistics__area {
  padding-block: 120px;
  position: relative;
  z-index: 1;
}

.statistics__area .container {
  max-width: 1000px;
}

.statistics__area:before {
  position: absolute;
  left: 0;
  bottom: 100%;
  right: 0;
  height: 250px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 252, 249, 0) 0%, #fffcf9 100%);
}

.statistics__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.statistics__item h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 48px;
  text-align: center;
}

.statistics__item p {
  font-size: 14px;
  line-height: 16px;
  color: #202225;
  font-weight: 400;
  text-align: center;
}

.statistics__item.statistics--rating p {
  margin-bottom: 10px;
}

.statistics__stars img {
  height: 24px;
}

.statistics--rating {
  width: 214px;
  position: relative;
}

.statistics__stars {
  display: flex;
  justify-content: center;
}

.rating__shape-left {
  height: 78px;
  position: absolute;
  left: 12px;
  top: -5px;
}

.rating__shape-left img {
  height: 100%;
}

.rating__shape-right {
  height: 78px;
  position: absolute;
  right: 12px;
  top: -5px;
}

.rating__shape-right img {
  height: 100%;
}

/* ----------------------------- STATISTICS AREA END ------------------------ */

/* ----------------------------- CONTACT AREA START ------------------------ */
.contact__area {
  padding-bottom: 100px;
  min-height: 100vh;
  padding-top: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -95px;
}

.contact__area .container {
  max-width: 700px;
}

.contact__form-title h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 46px;
  letter-spacing: -2%;
  color: #fff;
}

.contact__form-title {
  margin-bottom: 35px;
}

.contact__form-group input {
  width: 100%;
  backdrop-filter: blur(15.70361328125px);
  border: 2px solid #ffffff;
  padding: 16px 20px;
  border-radius: 35px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(
    96.11deg,
    #ffffff -4.48%,
    rgba(255, 255, 255, 0.6) 50.59%,
    #ffffff 72.01%,
    rgba(255, 255, 255, 0.2) 98.56%
  );
  color: #8a8a8a;
  letter-spacing: 1px;
  line-height: 1;
}

.contact__form-group {
  margin-bottom: 20px;
}

.contact__form-group input::placeholder {
  opacity: 1;
  color: #8a8a8a;
  font-family: "Be Vietnam Pro", sans-serif;
}

.form__question {
  margin-top: 60px;
}

.form__question p {
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.form__question p a {
  text-decoration: underline;
  color: #fff;
  transition: 0.2s;
  font-weight: 500;
}

.form__question p a:hover {
  color: #fff;
}

/* ----------------------------- CONTACT AREA END ------------------------ */

/* ----------------------------- PRIVACY AREA START ------------------------ */

.privacy__area {
  padding-bottom: 70px;
  padding-top: 180px;
  margin-top: -95px;
  position: relative;
  z-index: 22;
}

.privacy__area .container {
  max-width: 1200px;
}

.privacy__single-content {
  margin-bottom: 30px;
}

.privacy__single-content h3 {
  color: #000000;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1%;
}

.privacy__single-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1%;
}

.privacy__single-content p {
  font-size: 15px;
  line-height: 22px;
  color: #333;
  font-weight: 400;
  margin-bottom: 16px;
}

.privacy__single-content h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.privacy__list--block {
  margin-left: 25px;
}

.privacy__list--block ul li {
  position: relative;
  color: #333;
  font-size: 16px;
  line-height: 21px;
  left: 1%;
  margin-bottom: 12px;
}

.privacy__list--block ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50px;
  top: 8px;
  left: -15px;
}

.privacy__single-content p a:hover {
  color: #4a4ad9;
}

.privacy__single-content p a {
  text-decoration: underline;
  color: #333;
  transition: all 0.2s ease;
  font-weight: 500;
}

.privacy__list--block ul li a {
  text-decoration: underline;
  color: #333;
  transition: all 0.2s ease;
  font-weight: 500;
}

.privacy__list--block ul li a:hover {
  color: #4a7ce9;
}

.privacy__list--block ul li span {
  text-transform: uppercase;
}

.soundwave__wrapper {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
}
.soundwave__wrapper .soundwave {
  margin-inline: 4px;
}
.soundwave .wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.soundwave .wave span {
  width: 8px;
  border-radius: 20px;
  background: linear-gradient(to top, #ffe6be 40%, #ffffff 100%);
  transform-origin: center center;
  animation: waveCenterFlow 2s ease-in-out infinite;
  opacity: 0.95;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.soundwave .wave span:nth-child(1),
.soundwave .wave span:nth-child(40) {
  height: 145px;
}
.soundwave .wave span:nth-child(2),
.soundwave .wave span:nth-child(39) {
  height: 80px;
}
.soundwave .wave span:nth-child(3),
.soundwave .wave span:nth-child(38) {
  height: 100px;
}
.soundwave .wave span:nth-child(4),
.soundwave .wave span:nth-child(37) {
  height: 150px;
}
.soundwave .wave span:nth-child(5),
.soundwave .wave span:nth-child(36) {
  height: 120px;
}
.soundwave .wave span:nth-child(6),
.soundwave .wave span:nth-child(35) {
  height: 43px;
}
.soundwave .wave span:nth-child(7),
.soundwave .wave span:nth-child(34) {
  height: 80px;
}
.soundwave .wave span:nth-child(8),
.soundwave .wave span:nth-child(33) {
  height: 100px;
}
.soundwave .wave span:nth-child(9),
.soundwave .wave span:nth-child(32) {
  height: 80px;
}
.soundwave .wave span:nth-child(10),
.soundwave .wave span:nth-child(31) {
  height: 120px;
}
.soundwave .wave span:nth-child(11),
.soundwave .wave span:nth-child(30) {
  height: 72px;
}
.soundwave .wave span:nth-child(12),
.soundwave .wave span:nth-child(29) {
  height: 150px;
}
.soundwave .wave span:nth-child(13),
.soundwave .wave span:nth-child(28) {
  height: 120px;
}
.soundwave .wave span:nth-child(14),
.soundwave .wave span:nth-child(27) {
  height: 61px;
}
.soundwave .wave span:nth-child(15),
.soundwave .wave span:nth-child(26) {
  height: 150px;
}
.soundwave .wave span:nth-child(16),
.soundwave .wave span:nth-child(25) {
  height: 80px;
}
.soundwave .wave span:nth-child(17),
.soundwave .wave span:nth-child(24) {
  height: 123px;
}
.soundwave .wave span:nth-child(18),
.soundwave .wave span:nth-child(23) {
  height: 170px;
}
.soundwave .wave span:nth-child(19),
.soundwave .wave span:nth-child(22) {
  height: 155px;
}
.soundwave .wave span:nth-child(20),
.soundwave .wave span:nth-child(21) {
  height: 90px;
}

@keyframes waveCenterFlow {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.5);
  }
}
/* ----------------------------- PRIVACY AREA END ------------------------ */

/* ----------------------------- FOOTER AREA START ------------------------ */
.footer {
  position: relative;
  z-index: 1;
}

.footer__inner-block {
  background-color: #ffffff;
  padding-block: 75px;
  padding-bottom: 30px;
  position: relative;
  z-index: 222;
}

.footer__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  height: 740px;
}

.footer__shape img {
  width: 100%;
  height: 100%;
}

.footer__area .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__area-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__text h2 {
  color: #ffa958;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: flex-end;
}

.footer__menu h3,
.footer__subscribe h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 18px;
}

.footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu li {
  line-height: 30px;
}

.footer__menu a {
  color: #929292;
  font-size: 16px;
  font-weight: 400;
}

.footer__menu a:hover {
  color: #000;
}

.footer__subscribe {
  width: 250px;
}

.footer__subscribe form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.footer__subscribe input {
  background-color: #eeeeee;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 16px;
  color: #00000057;
  font-weight: 400;
  border: 0;
}

.footer__subscribe input::placeholder {
  opacity: 1;
  color: #00000057;
}

.footer__subscribe button {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 7px;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.footer__subscribe button:hover {
  background: transparent;
  color: #000;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  width: 200px;
  margin-top: -40px;
  justify-content: flex-end;
}

.footer__brand h4 {
  font-size: 22px;
  font-family: cursive;
  font-weight: 600;
  margin: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 35px;
  border-top: 1px solid #00000080;
  margin-top: 70px;
}

.footer__bottom p {
  color: #929292;
  font-size: 14px;
  font-weight: 400;
  line-height: 60%;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom-links a {
  color: #929292;
  font-size: 14px;
  font-weight: 400;
  line-height: 60%;
}

.footer__bottom-links span {
  color: #929292;
  font-size: 10px;
}

.footer__bottom-links a:hover {
  color: #000;
}

.footer__brand a {
  display: inline-block;
}

.footer__brand a img {
  height: 75px;
}

.apple__store-btn {
  max-width: 180px;
}

.footer__brand .apple__store-btn img {
  height: auto;
}

.footer-social-menu a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-social-menu ul li {
  margin-bottom: 5px;
}

.footer-social-menu ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-top: 7px;
}

/* ------------------------------ FOOTER AREA END ------------------------ */
