@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Loading animation styles */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 4px rgba(255, 105, 180, 0.5); /* Initial glow effect */
  }
  50% {
    box-shadow: 0 0 7px rgba(255, 105, 180, 0.3); /* Increased glow effect */
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.6); /* Return to initial glow effect */
  }
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader {
  border: 5px solid #350f25;
  border-top: 5px solid #e73cab;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Page content styles */
#content {
  display: none; /* Initially hide the content */
}

html {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
body {
  width: 100vw;
  height: 100vh;
  /* position: fixed; */
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0px;
  scroll-behavior: smooth;
  transition: all 200ms ease-in-out;
}
.container {
  width: 100%;
  height: fit-content;
  background: #210716;
  margin-top: 126px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}
.dark_overLay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 32px; */
  width: 100%;
  height: fit-content;
  background: linear-gradient(
    20deg,
    #0c0409 54.83%,
    rgba(215, 10, 83, 0.02) 212.02%
  );
}
nav {
  display: flex;
  width: 89%;
  height: 64px;
  padding: 32px 5.55%;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #010101;
  position: fixed;
  z-index: 120;
  top: 0;
}
.nav_links {
  width: 568px;
  justify-content: space-between;
  display: flex;
  color: #fff;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  align-items: center;
}
a {
  cursor: poInter;
  color: #fff;
  text-decoration: none;
}
section {
  scroll-behavior: smooth;
  position: relative;
}
span {
  color: var(--bammby-white, #fff);
  /* 16/Body/Regular */
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.absolute {
  position: absolute;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: border 0.3s;
  cursor: pointer;
}
.pink_btn {
  color: #fff;
  background: linear-gradient(273deg, #d70a53 -8.77%, #e742a0 94.16%);
  box-shadow: 0px 4px 26px 0px rgba(200, 12, 240, 0.24);
}
.btn_trans {
  border: 0.778px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 6.22641px 31.13205px 0px rgba(100, 116, 139, 0.1);
  backdrop-filter: blur(6.535654544830322px);
  min-width: 180px;
  height: 48px;
  color: #fff;
}
.big_btn {
  height: 48px;
  padding: 8px 32px;
}
.small_btn {
  height: 48px;
  padding: 8px 32px;
  min-width: fit-content;
}
.btn_trans:hover {
  border: 1px solid #ff69b4; /* Pink border color */
  animation: glow 600ms ease-in-out infinite;
}
.btn_trans:active {
  border: 1px solid rgb(16, 156, 93); /* Pink border color */
  background: #000;
  animation: glow 600ms ease-in-out infinite;
}
.pink_btn:hover {
  border: 1px solid #fff; /* Pink border color */
  animation: glow 600ms ease-in-out infinite;
}
.pink_btn:active {
  border: 1px solid rgb(10, 233, 133); /* Pink border color */
  background: #210716;
  animation: glow 600ms ease-in-out infinite;
}
.slim_text {
  color: #e7e7e7;
  font-family: "Poppins";
  font-size: 10.707px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.out_btns {
  justify-self: flex-start;
}
.spread_flex {
  display: flex;
  gap: 32px;
}
.spread_fill {
  width: 100%;
}
.space-between {
  justify-content: space-between;
}
div,
h1,
h2,
h3 {
  margin-block: 0px;
}
h1 {
  color: var(--bammby-white, #fff);
  font-family: "Acumin Pro Regular";
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
p, li {
  color: var(--bammby-background, #f5f6fa);
  /* 16/Body/Regular */
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
#hero {
  width: 100vw;
  overflow: hidden;
  width: 87.01%;
  padding-left: 12.99%;
  padding-block: 39px;
  display: flex;
  flex-wrap: wrap;
  backdrop-filter: blur(64.5px);

  background: linear-gradient(181deg, #e742a0 -64.48%, #000 22.38%);
}
.hero_text {
  display: flex;
  flex-direction: column;
  width: 52.01%;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  z-index: 10;
}
.hero_text h1 {
  width: 100%;
  /* width: 100%; */
}
.hero_text h1 span {
  font-family: "Acumin Pro Regular";
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: var(--foundation-bammby-red-bammby-red-500, #d70a53);
}

.hero_img {
  width: 46.99%;
  height: auto;
}
.hero_img img {
  width: 100%;
  height: fit-content;
}
.hero_sub {
  display: flex;
  flex-direction: column;
  padding: 58px 23.42%;
  width: 37%;
  justify-content: center;
  align-items: center;
  border-radius: 48px;
  border-top: 10px solid #d70a53;
  background: linear-gradient(
    187deg,
    #220917 27.13%,
    rgba(34, 9, 23, 0) 106.36%
  );
  z-index: 10;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.hero_sub h3,
h2 {
  font-family: "Poppins";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 155.556% */
  text-transform: uppercase;
}
h2 {
  text-transform: none !important;
}
.hero_sub div {
  display: flex;
  min-width: 414px;
  justify-content: space-between;
}
.hero_sub input {
  width: 65%;
  max-width: 70%;
  background: transparent;
  border: none;
  outline: none;
}
input {
  color: #fff;
  min-height: 48px;
  font-size: 16px;
}
input:focus,
input:active {
  border: none;
  outline: none;
  background: transparent;
}
.morph_cont {
  display: flex;
  min-width: fit-content;
  height: 48px;
  padding: 8px 8px 8px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
}
.pink_text {
  color: #e73cab;
}
#about,
#how {
  width: 100vw;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_cont {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  border-radius: 32px;
  background: #210716;
  align-items: center;
  margin-block: 39px;
  padding-top: 32px;
}
.about_img {
  width: 40%;
  align-self: flex-end;
}
.about_text {
  width: 55%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding-inline: 10%;
  text-align: left;
}
.about_text h2 {
  color: var(--bammby-white, #fff);
  /* 36/H2/Semibold */
  font-family: "Poppins";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
}
#features {
  height: fit-content;
  background: #010101;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 18px;
  width: 89%;
  padding-inline: 6%;
  padding-block: 39px;
  padding-bottom: 123px;
}
h4 {
  color: var(--bammby-white, #fff);
  font-family: "Poppins";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-block: 0px;
}
.card.morph_cont {
  max-width: 28%;
  min-width: 26%;
  border-radius: 23.349px;
  border: 0.778px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 6.22641px 31.13205px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.535654544830322px);
  width: 26%;
  padding-inline: 2%;
  min-height: 120px;
  flex-direction: column;
  gap: 8px;
  height: fit-content;
  align-items: flex-start;
  text-align: left;
}
#features img {
  width: 856px;
  height: auto;
}
.how_cont {
  display: flex;
  flex-direction: column;
  height: fit-content;
  color: #fff;
  /* justify-content: center; */
  align-items: center;
  padding-inline: 6%;
  gap: 39px;
  width: 75%;
  min-width: 78%;
  padding-block: 39px;
  margin-block: 39px;
  border-radius: 32px;
  background: var(--foundation-bammby-black-bammby-black-900, #121212);
  padding-bottom: 108px;
}
#how .card {
  min-height: 200px;
  justify-content: center;
  text-align: center;
  align-items: center;
}
#testimonials {
  background: #000;
  width: 80vw;
  padding-inline: 10vw;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
}
.testimonials_cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  text-align: center;
  min-width: 807px;
  max-width: 807px;
  margin-block: 80px;
}
#testimonials .spread_flex {
  margin-top: 64px;
  text-align: left;
  gap: 94px;
}
#testimonials img {
  width: 325px;
  height: auto;
}
#testimonials .quote {
  width: 81px;
  height: 81px;
}
.client_testimonial {
  max-width: 43%;
  min-width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#contact {
  min-width: 82%;
  max-width: 85%;
  justify-content: space-between;
  padding-block: 80px;
}
.speak {
  color: var(--foundation-bammby-secondary-bammby-secondary-500, #e73cab);
  /* 36/H2/Semibold */
  font-family: "Poppins";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
}
.vert_flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
b {
  color: var(--bammby-white, #fff);
  /* 20/Body Large/Semibold */
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.contact_left {
  gap: 32px;
  width: 40%;
}
.contact_right {
  width: 45%;
  padding: 48px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 16px solid rgba(255, 255, 255, 0.45);
  border-bottom: 16px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.06);
  gap: 21px;
}
.contact_right input,
.contact_right .morph_cont {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
}
.contact_right .spread_flex input {
  width: 47%;
}
textarea.morph_cont {
  height: 128px;
  font-size: 16px;
  font-family: "Poppins";
  color: #fff;
}
.contact_right button {
  width: fit-content;
}
.contact_left .spread_flex {
  margin-block: 12px;
}
#contact .contact_left img,
.socials img {
  background: #fff;
  border-radius: 50%;
  padding: 10px;
}
.socials img {
  background: #e73cab !important;
}
footer {
  padding-block: 80px;
  padding-inline: 6.6%;
  width: 89%;
  background: #000;
  align-items: flex-start;
}
footer .logo {
  width: 191.962px;
  height: 40px;
}
footer .vert_flex {
  gap: 16px;
  width: fit-content;
  max-width: 414px;
}
#hero .shadow,
.shadow {
  bottom: 33%;
  width: 100vw;
  left: 0vw;
}
.shadow {
  bottom: 30%;
  width: 100vw;
  left: 0vw;
}
.under_grad.spread_flex {
  align-items: center;
  padding-top: 50px;
}
.under_grad .shadow {
  width: 33%;
}
.under_grad .big_shad {
  width: 38%;
}
/* .testRel {
} */
.test {
  position: relative;
  width: 325px;
  height: 325px;
}
.test img {
  z-index: 10;
  position: absolute;
}
.test .shadow {
  top: 49%;
  left: 48%;
  z-index: 2 !important;
  position: absolute;
  width: 343px !important;
}
.test .topShad.shadow {
  right: unset;
  left: -99px;
  bottom: 46%;
  top: unset;
  z-index: 2 !important;
  position: absolute;
  width: 213px !important;
}
.test .socials {
  width: 50% !important;
  height: 60px !important;
  display: flex;
  justify-content: center;
  gap: 20px !important;
  z-index: 13;
  top: 85%;
  left: 76%;
  position: absolute;
}
#testimonials .next {
  width: 20px !important;
  height: 20px !important;
  position: relative;
}
#testimonials .prev {
  width: 20px !important;
  height: 20px !important;
  position: relative;
}
.prev:hover,
.next:hover {
  border: 1px solid #fff; /* Pink border color */
  animation: glow 900ms ease-in-out infinite;
}
footer a {
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
footer input {
  width: 65%;
  max-width: 70%;
  background: transparent;
  border: none;
  outline: none;
}
.mobOn,
.wrapper {
  display: none;
}
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 20000000000;
}

.modal-content {
  padding: 48px 36px;
  flex-direction: column;
  align-items: center;
  gap: 31px;
  display: flex;
  border-radius: 32px;
  background: #fff;
  width: 303px;
  min-height: fit-content;
  /* max-height: 328px; */
  align-self: center;
  position: relative;
}
.modal-content svg {
  overflow: visible;
  /* margin-top: -31px; */
}
.modal-content b,
.modal-content p {
  color: var(--foundation-bammby-black-bammby-black-500, #2a2a2a);
  text-align: center;
  /* 16/Body/Medium */
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: -25px;
}
.modal-content p {
  font-weight: 300;
  margin-block: 0px;
  margin-top: -20px;
}
.modal-content button {
  width: 303px;
  height: 48px;
  padding-block: 8px;
}
.close {
  color: #000;
  align-self: flex-end;
  font-size: 20px;
  cursor: pointer;
  /* padding: 5px;
  padding-block: 5px; */
  border-radius: 50%;
  width: 25px;
  /* height: 35px; */
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  position: absolute;
  right: 20px;
  top: 20px;
}
.hero_sub {
  margin-top: 29px;
}
input:-webkit-autofill {
  background-color: transparent !important;
}
@media screen and (max-width: 1080px) {
  nav {
    height: 30px;
    width: 89vw;
    padding: 27px 6%;
  }
  .container {
    margin-top: 84px;
  }
  .dark_overLay {
    gap: 25px;
  }
  #hero .shadow {
    bottom: 30%;
    height: 278px;
    width: unset;
  }
  .wrapper {
    display: block;
    background: transparent;
  }
  .nav_links {
    width: 80vw;
    padding-inline: 10vw;
    position: absolute;
    z-index: 10000;
    height: 90vh;
    padding-top: 10vh;
    top: 0;
    gap: 32px;
    flex-direction: column;
    background: #000;
    align-items: flex-start;
    left: -100vw;
    transition: 0.4s;
    justify-content: flex-start;
  }
  .nav_links.slide_in {
    left: 0px;
  }
  .mobOff {
    display: none;
  }
  .mobOn {
    display: block;
  }
  .nav_links .wrapper {
    align-self: flex-end;
  }
  .shadow {
    bottom: 30%;
    width: 100vw;
    left: 0vw;
  }
}
@media (min-width: 501px) and (max-width: 900px) {
  .hero_img img {
    width: 62% !important;
    margin-left: 18% !important;
    height: auto;
    object-fit: contain;
  }
}
@media screen and (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  p {
    margin-block: 0px;
  }
  h1,
  .hero_text h1 span {
    font-family: "Acumin Pro Regular";
    font-size: 31.266px;
    font-weight: 800;
  }
  #hero {
    padding-left: 0px;
    width: 85vw;
    padding-inline: 7.5vw;
    background: #350f25;
  }
  .hero_text {
    width: 100%;
    gap: 16px;
  }
  .hero_text .spread_flex {
    width: 100%;
    gap: 18px;
    justify-content: space-between;
  }
  .btn_trans {
    min-width: 45%;
    padding-inline: 2.5%;
    justify-self: center;
  }
  .btn_trans span {
    font-size: 12.237px;
  }
  .hero_img {
    width: 100.99%;
  }
  .hero_img img {
    width: 130%;
    height: auto;
    object-fit: contain;
  }
  .hero_sub {
    width: 90%;
    padding: 21px 5.42%;
    gap: 40px;
    background: linear-gradient(
      187deg,
      #220917 27.13%,
      rgba(34, 9, 23, 0) 106.36%
    );
  }
  .hero_sub div {
    min-width: 90%;
  }
  .hero_sub div button {
    min-width: fit-content;
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-inline: 16px;
  }
  #about {
    width: 90vw;
    margin-left: 0vw;
    padding-inline: 0;
    left: 0;
    position: relative;
  }
  .about_cont {
    margin-top: 0px;
    width: 100%;
    margin-left: 0px;
    height: fit-content;
    flex-wrap: wrap;
    padding-block: 30px;
    align-items: flex-start;
  }
  .about_cont .about_img {
    width: 100%;
    max-height: 378px;
    object-fit: contain;
    overflow: hidden;
  }
  .about_cont .about_img img {
    object-fit: contain;
    height: 100%;
    width: 120%;
  }
  .about_text h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
  }
  .about_text {
    width: 92%;
    padding-top: 27px;
    gap: 15px;
    padding-inline: 4%;
  }
  p {
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  h4 {
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
  .contact_left .spread_flex {
    align-items: center;
  }
  #features .spread_flex.spread_fill,
  .how_cont .spread_fill,
  #how .under_grad {
    flex-wrap: wrap;
  }
  .card.morph_cont {
    max-width: 86%;
    min-width: 86%;
    padding-inline: 7%;
    gap: 8px;
    min-height: 101px;
  }
  #features img {
    width: 150%;
    height: 100%;
    object-fit: contain;
  }
  #how .under_grad img {
    width: 80%;
  }
  #testimonials {
    width: 90%;
    padding-inline: 5%;
  }
  #features {
    padding-bottom: 37px;
  }
  .testimonials_cont {
    min-width: 100%;
    max-width: 100%;
    margin-block: 15px;
  }
  .testimonials_cont h4 {
    font-family: "Poppins";
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #testimonials .spread_flex {
    flex-wrap: wrap;
    gap: 46px;
  }
  .test {
    width: 90vw;
    min-height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #testimonials img {
    width: 60%;
    height: auto;
  }
  .test .shadow {
    top: 43%;
    left: 36%;
    width: 279px !important;
  }
  .test .topShad.shadow {
    left: -2px;
    bottom: 46%;
    width: 140px !important;
  }
  .test .socials {
    width: 50% !important;
    height: 50px !important;
    gap: 14px !important;
    top: 69%;
    left: 49%;
  }
  #testimonials .next,
  #testimonials .prev {
    width: 13px !important;
    height: 13px !important;
  }
  .client_testimonial {
    max-width: 100%;
    min-width: 80%;
  }
  .quote {
    width: 51px !important;
    height: 40px !important;
  }
  #contact {
    border-radius: 16px;
    background: #180810;
    flex-wrap: wrap;
    min-width: 99%;
    max-width: 99%;
    justify-content: center;
    padding-block: 32px;
  }
  .contact_left {
    gap: 22px;
    width: 90%;
  }
  .speak {
    font-size: 24px;
    font-weight: 600;
  }
  .contact_left img {
    min-width: 24px;
    max-height: 24px;
  }
  .contact_right {
    width: 76%;
    padding: 5%;
  }
  .contact_right .spread_fill {
    width: 100%;
    flex-wrap: wrap;
  }
  .contact_right .spread_fill input {
    width: 100%;
  }
  footer {
    flex-direction: column;
  }

  .contact_left .logo,
  .logo {
    min-width: unset !important;
    max-height: unset !important;
    width: 120px;
  }
}
