@import url("https://fonts.googleapis.com/css2?family=Quattrocento+Sans:wght@400;700&display=swap");
:root {
  --white: rgba(255, 255, 255);
  --white2: rgba(255, 255, 255, 0.7);
  --white3: rgba(255, 255, 255, 0.4);
  --white4: rgba(255, 255, 255, 0.25);
  --white5: rgba(255, 255, 255, 0.1);
  --white6: rgba(255, 255, 255, 0.08);
  --black: rgba(0, 0, 0);
  --black2: rgba(0, 0, 0, 0.7);
  --black3: rgba(0, 0, 0, 0.4);
  --black4: rgba(0, 0, 0, 0.25);
  --black5: rgba(0, 0, 0, 0.1);
  --black6: rgba(0, 0, 0, 0.05);
  --canvas: rgb(230, 230, 230);
  --canvas2: rgb(238, 237, 237);
  --canvas_dark: rgb(31, 36, 44);
  --canvas_dark2: rgb(17, 22, 28);
  --shade1: rgb(243, 243, 243);
  --shade2: rgb(211, 210, 210);
  --shade3: rgb(192, 191, 191);
  --shade4: rgb(29, 29, 29);
  --shade5: rgb(14, 14, 14);
  --primary1: rgb(241, 130, 217);
  --primary2: rgb(170, 65, 165);
  --primary3: rgb(100, 20, 96);
  --pastel1: rgb(248, 217, 228);
  --pastel2: rgb(240, 159, 222);
  --green: rgba(0, 255, 42, 0.05);
  --red: rgba(255, 8, 0, 0.05);
  --radius_small: 8px;
  --radius_mid: 10px;
  --radius_big: 12px;
  --padding_small: 0.5rem;
  --padding_mid: 1rem;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 8px;
  padding: 0.2rem;
}

::-webkit-scrollbar-track {
  background: var(--white);
  padding: 5px;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  height: 30%;
  background: var(--primary2);
  border-radius: 10px;
}

.body {
  font-family: "Maven Pro", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(-30deg, var(--canvas) 20%, var(--white) 100%);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--white) inset !important; /* Change the background color */
}

.bar_preloader {
  width: 100vw;
  position: fixed;
  z-index: 5000;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.load_bar {
  background-color: var(--primary1);
  height: 4px;
  width: 0;
  border-radius: 2px;
  z-index: 10000;
  display: flex;
  transition: width 0.5s ease; /* Smooth transition for width change */
}

.scroll_to_top {
  bottom: 0;
  right: 0;
  margin-top: 20rem;
  position: fixed;
  display: block;
  margin-bottom: 3rem;
  margin-right: 2rem;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  background-color: var(--white);
  border-radius: var(--radius_small);
  transition: 0.2s;
  z-index: 1000;
  cursor: pointer;
  filter: none;
  height: 1.8rem;
  z-index: 7000;
}

.scroll_to_top:hover {
  background-color: var(--white);
  transform: translateY(-0.6rem);
  filter: drop-shadow(5px 3px 4px var(--black5));
}

.scroll_to_top.hide {
  transform: translateY(20rem);
}

.messagecont {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  gap: 0.4rem;
  width: 100vw;
  margin-top: 4rem;
  background-color: transparent;
  z-index: 8000;
}

.message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.3rem;
  z-index: 8000;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 0.4rem;
  padding-right: 0.5rem;
  border-radius: var(--radius_small);
}

.message.hide {
  display: none;
}

.message_image {
  height: 1.2rem;
}

.message_data {
  max-width: 25rem;
  display: block;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/* Close button */
.messageclose {
  cursor: pointer;
  padding-left: 0.5rem;
  transition: 0.3s;
}

.messageclose:hover {
  transform: scale(1.1);
}

/* Message icons */
.message-icon {
  margin-right: 0.5rem;
}

/* Specific message styles */
.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.message.info {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #bee5eb;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-weight: normal;
}

a {
  text-decoration: none;
}

.top_menu {
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  z-index: 500;
  background-color: tranparent;
  
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.menu_logo {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 0.4rem;
}
.menu_logo img {
  height: 2.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.menu_logo img:hover {
  transform: scale(1.05);
}

.menu_cont {
  width: 60%;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding-top: 0.6rem;
  padding-bottom: 0.4rem;
}
.menu_cont a {
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.1rem;
  color: var(--primary2);
  transition: 0.2s;
}
.menu_cont a:hover {
  color: var(--black);
  transform: scale(1.05);
}

.menu_action_button {
  background-color: var(--primary1);
  border-radius: var(--radius_small);
  color: var(--white);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  transition: 0.2s;
  cursor: pointer;
}
.menu_action_button h5 {
  text-transform: uppercase;
  color: var(--white);
}

.menu_action_button:hover {
  background-color: var(--black);
}

.section_one_super {
  width: 100vw;
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center
}

.shape_super {
  height: 40rem;
  width: 100vw;
  max-width: 100%;
  background: linear-gradient(145deg, var(--pastel1) 0%, var(--pastel2) 100%);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  transform: scaleX(1.5);
  transition: 0.3s;
  z-index: 15;
}

.content_super {
  width: 100vw;
  height: 40rem;
  margin-top: -40rem;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.content_super2 {
  width: 100vw;
  height: 40rem;
  margin-top: -40rem;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.content_text {
  width: 40%;
  height: 90%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
  z-index: 200;
}

.content_text2 {
  width: 40%;
  height: 90%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  text-align: center;
  z-index: 200;
}

.content_action {
  background-color: var(--primary2);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-radius: 5rem;
  color: var(--white);
  cursor: pointer;
  transition: 0.2s;
}

.content_action:hover {
  background-color: var(--black);
  transform: scale(1.05);
}

.content_image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40%;
  transition: 0.2s;
}

.shape {
  height: 20rem;
  width: 18rem;
  background: linear-gradient(-30deg, var(--primary1) 20%, var(--primary1) 100%);
  border-radius: 7rem 2rem 7rem 3rem;
  z-index: 1;
  transition: 0.3s;
}

.shape2 {
  height: 20rem;
  width: 18rem;
  background: linear-gradient(-30deg, var(--pastel1) 20%, var(--pastel1) 100%);
  border-radius: 7rem 2rem 7rem 3rem;
  z-index: 1;
  transition: 0.3s;
}

.hero_photo {
  height: 23rem;
  margin-top: -23rem;
  margin-right: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  z-index: 50;
  transition: transform 0.3s ease-in-out, filter 0.4s ease-in-out;
  cursor: pointer;
}
.hero_photo img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7rem 2rem 7rem 3rem;
}

.floater1 {
  margin-top: -4rem;
  z-index: 20;
  transform: translateX(7rem) translateY(-18em);
  transition: 0.3s;
}
.floater1 img {
  height: 4rem;
  opacity: 0.4;
  transition: 0.3s;
}

.floater2 {
  margin-top: -5rem;
  z-index: 20;
  transform: translateX(-9rem) translateY(-7em);
  transition: 0.3s;
}
.floater2 img {
  height: 5rem;
  opacity: 0.4;
  transition: 0.3s;
}

.floater1_dark {
  margin-top: -4rem;
  z-index: 20;
  transform: translateX(7rem) translateY(-18em);
  transition: 0.3s;
}
.floater1_dark img {
  height: 4rem;
  opacity: 0.2;
  transition: 0.3s;
  filter: sepia(100%) saturate(700%) hue-rotate(275deg) brightness(90%) contrast(90%);
}

.floater2_dark {
  margin-top: -5rem;
  z-index: 20;
  transform: translateX(-9rem) translateY(-7em);
  transition: 0.3s;
}
.floater2_dark img {
  height: 5rem;
  opacity: 0.2;
  transition: 0.3s;
  filter: sepia(100%) saturate(700%) hue-rotate(275deg) brightness(90%) contrast(90%);
}

.content_image:hover {
  transform: scale(1.01);
}
.content_image:hover .floater1 {
  margin-top: -4rem;
  z-index: 20;
  transform: translateX(7rem) translateY(-18em) rotate(45deg);
}
.content_image:hover .floater1 img {
  height: 4rem;
  opacity: 0.1;
  transform: scale(2.5);
}
.content_image:hover .floater2 {
  margin-top: -5rem;
  z-index: 20;
  transform: translateX(-9rem) translateY(-7em);
}
.content_image:hover .floater2 img {
  height: 5rem;
  opacity: 0.1;
}
.content_image:hover .floater1_dark {
  margin-top: -4rem;
  z-index: 20;
  transform: translateX(7rem) translateY(-18em) rotate(45deg);
}
.content_image:hover .floater1_dark img {
  height: 4rem;
  transform: scale(2.5);
}
.content_image:hover .floater2_dark {
  margin-top: -5rem;
  z-index: 20;
  transform: translateX(-9rem) translateY(-7em);
}
.content_image:hover .floater2_dark img {
  height: 5rem;
}

.hero_button {
  display: inline-block;
  width: 10rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-radius: 30rem;
  font-size: 16px;
  font-weight: bold;
  font-family: inherit;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #bdbdbd;
}

.hero_button::before {
  content: "";
  width: 0;
  height: 100%;
  border-radius: 30rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #d421c2 0%, #b847f9 100%);
  transition: width 0.5s ease-in-out;
  z-index: -1;
}

.hero_button:hover::before {
  width: 100%;
}

.emboss {
  margin-bottom: -5.5rem;
}
.emboss h1 {
  font-size: 8rem;
  font-weight: bolder;
  opacity: 0.08;
  color: var(--primary2);
  z-index: 5;
}

.shape_super2 {
  height: 55rem;
  width: 100vw;
  margin-top: -15rem;
  background: var(--white);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  transform: scaleX(1.5);
  transition: 0.3s;
  z-index: 2;
}

@media (max-width: 1000px) {
  .shape_super {
    height: 45rem;
     transform: scaleX(1);
  }
  .shape_super2 {
    height: 70rem;
     transform: scaleX(1);
    margin-top: -12rem;
  }
  .menu_logo {
    width: 100%;
  }
  .menu_cont {
    width: 100%;
  }
  .shape_super {
    transform: scaleX(2);
  }
  .shape_super2 {
    transform: scaleX(2);
  }
  .content_super {
    flex-direction: column;
  }
  .content_super2 {
    flex-direction: column;
  }
  .content_text {
    width: 90%;
    padding-top: 5rem;
  }
  .content_text2 {
    width: 90%;
  }
  .content_image {
    width: 100%;
    margin-top: 5rem;
  }
  .content_image:hover {
    width: 100%;
  }
}
.content_card_cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.content_card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: linear-gradient(-30deg, var(--primary1) 20%, var(--primary1) 100%);
  filter: drop-shadow(5px 3px 4px var(--black5));
  border-radius: 2rem 0.5rem 2rem 0.5rem;
  color: var(--white);
  transition: 0.3s;
  cursor: pointer;
}

.content_card:hover {
  background: linear-gradient(-30deg, var(--primary2) 20%, var(--primary2) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.cloak_super {
  background: linear-gradient(0deg, var(--pastel1) 0%, var(--pastel2) 100%);
  margin-top: -8rem;
  width: 100vw;
  padding-top: 13rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.cloak_flex {
  width: 70%;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cloak_sub {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.cloak_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 1.2rem;
  border-radius: 50%;
  transition: 0.2s;
  cursor: pointer;
}
.cloak_icon img {
  height: 4rem;
}

.cloak_icon:hover {
  background-color: var(--primary2);
  transform: scale(1.05);
}
.cloak_icon:hover img {
  height: 4rem;
  filter: invert(100);
}

.cloak_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  width: 18rem;
}
.cloak_content h2 {
  color: var(--primary2);
}
.cloak_content h4 {
  color: var(--black);
}

@media (max-width: 1000px) {
  .cloak_super {
    padding-top: 18rem;
    padding-bottom: 8rem;
  }
  .cloak_content {
    width: 60vw;
  }
}
.dummy_section {
  height: 100vh;
  width: 100vw;
}

.section_three_super {
  background-color: var(--primary3);
  width: 100vw;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--white);
}

.story_block {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  gap: 1rem;
}

.paragraph_1 {
  width: 70%;
}

.image_block {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 2rem;
}

.image_frame {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.image_frame img {
  transition: 0.3s;
  height: 30rem;
}

.image_frame:hover {
  transform: scale(1.01);
}
.image_frame:hover img {
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .story_block {
    width: 100%;
  }
  .paragraph_1 {
    width: 90%;
    text-align: center;
  }
  .image_block {
    width: 100%;
  }
  .image_frame {
    width: 90%;
  }
}
.footer_super {
  background: linear-gradient(180deg, var(--black) 0%, var(--black) 100%);
  width: 100%;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: invert(100);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  z-index: 1;
}

.footer_sub1 {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  transition: 0.2s;
}

.footer_sub2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 75%;
  transition: 0.2s;
  padding-bottom: 2rem;
}

.sub1_left {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  width: 65%;
  transition: 0.2s;
}

.sub1_right {
  width: 35%;
  transition: 0.2s;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.contact_us_box {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  filter: invert(100);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.contact_us_box h2 {
  width: 100%;
  text-align: center;
}

.dash {
  width: 50%;
  height: 1px;
  background-color: var(--black4);
  border-radius: 6px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.link1 {
  width: 50%;
  display: flex;
  gap: 0.5rem;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  color: var(--black);
  transition: 0.2s;
  padding: 0.3rem;
}
.link1 img {
  height: 1.2rem;
}
.link1 h4 {
  transition: 0.2s;
}

.link2 {
  width: 50%;
  display: flex;
  gap: 0.5rem;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  color: var(--black);
  transition: 0.2s;
  padding: 0.3rem;
}
.link2 h4 {
  transition: 0.2s;
}

.link1:hover {
  background-color: var(--white);
  border-radius: 6px;
}

.link2:hover {
  filter: invert(100);
  background-color: var(--white);
  border-radius: 6px;
}

.socials_box {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.social {
  border: 1px solid var(--white);
  background-color: var(--black);
  border-radius: 14rem;
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  cursor: pointer;
}
.social .social_logo {
  height: 2rem;
  filter: invert(100);
}
.social .flip {
  height: 2rem;
  filter: invert(0);
}

.social:hover {
  filter: invert(100);
  transform: scale(1.1) translateY(-0.2rem);
}

.link_box {
  filter: invert(100);
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sub2_left {
  filter: invert(100);
  width: 25%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.sub2_left_item {
  padding: 0.3rem;
  display: flex;
  cursor: pointer;
}
.sub2_left_item img {
  height: 3rem;
  filter: invert(0);
  transition: 0.2s;
}
.sub2_left_item img:hover {
  transform: scale(1.02);
}

.sub2_right {
  filter: invert(100);
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.sash {
  background-color: var(--white4);
  height: 1px;
  width: 80%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 1300px) {
  .footer_sub1 {
    width: 100%;
  }
  .footer_sub2 {
    width: 100%;
  }
  .sub1_left {
    width: 100%;
  }
  .sub1_right {
    width: 100%;
  }
  .contact_us_box {
    width: 100%;
    padding-bottom: 2rem;
    padding-top: 2rem;
    text-align: center;
    align-items: center;
  }
  .link1 {
    justify-content: center;
  }
  .link_box {
    width: 45%;
  }
  .sub2_left {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .sub2_left_item {
    padding: 0.3rem;
    display: flex;
    margin-left: 0;
  }
  .sub2_left_item img {
    height: 2.5rem;
  }
  .sub2_right {
    width: 100%;
    padding-top: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .socials_box {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */