@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Londrina+Outline&family=Londrina+Shadow&family=Londrina+Sketch&family=Londrina+Solid:wght@100;300;400;900&family=Montserrat: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");
@import url("https://fonts.googleapis.com/css2?family=Poppins: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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a,
button,
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  display: inline-block;
}

.py-btn {
  background: linear-gradient(to bottom, #e74bde 0%, #c803be 70% 100%);
  color: #f2f4fa;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  border: none;
  outline: none;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .py-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}
.py-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 75, 222, 0.3);
}

.primary-btn {
  background: #F8F9FA;
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .primary-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}
.primary-btn:hover {
  background: #fff;
  color: #1A1A1A;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}

.purple-text {
  background: linear-gradient(90deg, #9030ed, #e71b7c, #9030ed) 0 0/400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: animate-bg 16s linear infinite;
}

.boujee-text {
  background: linear-gradient(90deg, #f45925, #f9b11f, #f45925) 0 0/400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: animate-bg 12s linear infinite;
}

@keyframes animate-bg {
  to {
    background-position: 400% 0;
  }
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #navbar {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  #navbar .humburger-menu-logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #navbar #logo {
    margin-bottom: 1.5rem;
  }
}
#navbar .icon {
  display: none;
  color: #242925;
  /* Hides by default for desktop */
}
@media screen and (max-width: 1024px) {
  #navbar .icon {
    display: block;
    font-size: 14px;
    margin-top: 9px;
    transform: scale(1.5);
    cursor: pointer;
    height: 100%;
  }
}
#navbar #nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links {
    display: none;
    flex-direction: column;
    display: flex;
    /* Ensure the nav is still visible in mobile view */
    align-items: flex-start;
    /* Align items to the left */
    width: 100%;
    /* Ensure it takes up the full width */
    display: none;
  }
}
#navbar #nav-links .link {
  display: inline-block;
  text-decoration: none;
  color: #242925;
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: 0.3s;
  border-bottom: transparent 1px solid;
  line-height: 2rem;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .link {
    font-size: 1rem;
    margin-left: 0;
    margin-bottom: 0.8rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  #navbar #nav-links .link:last-child {
    margin-bottom: 1rem;
  }
}
#navbar #nav-links .dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .dropdown {
    margin-left: 0;
  }
}
#navbar #nav-links .dropdown::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  top: 100%;
  left: 0;
}
#navbar #nav-links .dropdown .dropbtn {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #242925;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 2rem;
  border-bottom: transparent 1px solid;
  transition: 0.3s;
}
#navbar #nav-links .dropdown .dropbtn:hover {
  color: #00205f;
  border-bottom: #00205f 1px solid;
}
#navbar #nav-links .dropdown .dropbtn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .dropdown .dropbtn {
    font-size: 1rem;
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}
#navbar #nav-links .dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: -20px;
  min-width: 400px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1;
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .dropdown .dropdown-content {
    min-width: 100%;
    position: relative;
    left: 0;
    box-shadow: none;
    margin-top: 1rem;
    background-color: #f9f9f9;
  }
}
#navbar #nav-links .dropdown .dropdown-content .service-card {
  padding: 1rem 1.5rem;
  display: flex;
  grid-gap: 1rem;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 4px 0;
  color: #242925;
  max-width: calc(100% - 8px);
}
#navbar #nav-links .dropdown .dropdown-content .service-card:hover {
  background-color: #f0f7ff;
  transform: translateX(5px);
  color: #00205f;
}
#navbar #nav-links .dropdown .dropdown-content .service-card:hover i {
  transform: scale(1.1);
}
#navbar #nav-links .dropdown .dropdown-content .service-card i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
#navbar #nav-links .dropdown .dropdown-content .service-card .service-card-content {
  flex-grow: 1;
}
#navbar #nav-links .dropdown .dropdown-content .service-card .service-card-content p {
  margin: 0;
  font-weight: 500;
}
#navbar #nav-links .dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
#navbar #nav-links .dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}
#navbar #nav-links .nav-contact {
  margin-left: 1.5rem;
}
@media screen and (max-width: 1024px) {
  #navbar #nav-links .nav-contact {
    margin-left: 0;
    margin-top: 1rem;
  }
}

#footer {
  background: linear-gradient(180deg, #13111e 0%, #1e0238 100%);
  color: white;
}
#footer .container {
  max-width: 1400px;
  margin: auto;
  padding: 7rem 2rem 2rem;
}
@media screen and (max-width: 1024px) {
  #footer .container {
    padding: 3rem 2rem 1rem 2rem;
  }
}
#footer .container .footer__row {
  display: grid;
  grid-template-columns: 2.6fr 1fr 1fr 1fr 1fr;
  grid-gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  #footer .container .footer__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row {
    grid-template-columns: 1fr;
  }
}
#footer .container .footer__row .footer__contact .logo {
  width: 150px;
  margin-bottom: 1.6rem;
  opacity: 0.9;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__contact .logo {
    width: 120px;
  }
}
#footer .container .footer__row .footer__contact p {
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0.9;
  line-height: 160%;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__contact p {
    font-size: 1rem;
  }
}
#footer .container .footer__row .footer__contact .footer__contact__mail {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
  color: #c8c8c8;
  cursor: pointer;
  border-bottom: 1px solid #707070;
  transition: 0.3s;
  color: white;
  border-bottom: 1px solid white;
  transition: all 0.3s;
}
#footer .container .footer__row .footer__contact .footer__contact__mail:hover {
  color: #09e884;
  border-bottom: 1px solid #09e884;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn {
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  cursor: pointer;
  width: 140px;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn:hover svg {
  width: 1.5rem;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn:hover a {
  color: #fde51c;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn svg {
  transition: 0.3s;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn svg path {
  stroke: #fde51c;
}
#footer .container .footer__row .footer__contact .footer__contact__about__btn a {
  margin-left: 0.5rem;
  color: #e6e6e6;
  transition: 0.3s;
}
#footer .container .footer__row .footer__links h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__links h3 {
    font-size: 1rem;
  }
}
#footer .container .footer__row .footer__links a {
  color: #c8c8c8;
  margin-bottom: 0.6rem;
  font-weight: 300;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__row .footer__links a {
    font-size: 1rem;
  }
}
#footer .container .footer__row .footer__links a:hover {
  color: white;
  border-bottom: 1px solid white;
}
#footer .container .locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 30px;
  width: 100%;
}
#footer .container .locations .location {
  width: 90%;
  max-width: 500px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
  align-items: center;
}
#footer .container .locations .location img {
  height: 80px;
  width: auto;
  filter: invert(1);
}
#footer .container .locations .location h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}
#footer .container .locations .location p {
  margin: 5px 0;
  font-size: 0.8rem;
  color: #e6e6e6;
}
#footer .container .locations .location .phone {
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  margin-top: 5px;
}
#footer .container hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0.1px solid rgba(255, 255, 255, 0.1);
}
#footer .container .footer__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .container .footer__social .copyright {
  font-size: 0.9rem;
  font-weight: 100;
  color: white;
}
@media screen and (max-width: 600px) {
  #footer .container .footer__social .copyright {
    font-size: 0.8rem;
  }
}
#footer .container .footer__social #footer__social__links {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .footer__social #footer__social__links .social-link {
  display: inline-block;
  width: 3vw;
  height: 3vw;
  border-radius: 30%;
  color: white;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#footer .container .footer__social #footer__social__links .social-link i {
  font-size: 1.3vw;
  transition: 0.2s linear;
}
#footer .container .footer__social #footer__social__links .social-link::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: white;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
#footer .container .footer__social #footer__social__links .social-link:hover i {
  transform: scale(1.3);
  color: black;
}
#footer .container .footer__social #footer__social__links .social-link:hover::before {
  animation: sakarIn 0.7s 1;
  top: -10%;
  left: -10%;
}
@keyframes sakarIn {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: 10%;
    top: -30%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}

#contact {
  background: #e9f2ff;
}
#contact .container {
  max-width: 1000px;
  margin: auto;
  padding: 6rem 2rem 8rem 2rem;
}
@media screen and (max-width: 1024px) {
  #contact .container {
    padding: 4rem 1.5rem 9rem 1.5rem;
  }
}
#contact .container h1 {
  font-size: 5rem;
  line-height: 106%;
  max-width: 800px;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #343434;
}
@media screen and (max-width: 1024px) {
  #contact .container h1 {
    margin-top: 3rem;
    font-size: 2rem;
    text-align: center;
    line-height: 120%;
  }
}
#contact .container .contact__from__container form {
  position: relative;
}
#contact .container .contact__from__container form label {
  font-size: 1.5rem;
  color: #757575;
  margin-bottom: 1rem;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form label {
    font-size: 1rem;
  }
}
#contact .container .contact__from__container form input {
  display: inline-block;
  width: 100%;
  height: 4rem;
  border: none;
  border-bottom: 1px solid #6e6e6e;
  background: transparent;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #505050;
  outline: none;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form input {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
#contact .container .contact__from__container form input:focus {
  border-bottom: 1px solid #000;
}
#contact .container .contact__from__container form .dauble__input {
  display: flex;
}
#contact .container .contact__from__container form .dauble__input #company__name {
  margin-right: 3rem;
}
#contact .container .contact__from__container form .service__budget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  margin-bottom: 3rem;
}
#contact .container .contact__from__container form .service__budget select {
  width: 100%;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1.5rem;
  border: 1px solid #6e6e6e;
  outline: none;
  cursor: pointer;
  padding-left: 1rem;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form .service__budget select {
    font-size: 1rem;
  }
}
#contact .container .contact__from__container form .service__budget select:focus {
  border: 1px solid #000;
}
#contact .container .contact__from__container form textarea {
  width: 100%;
  background: 0 0;
  border: 1;
  border-bottom: 0.5px solid #505050;
  color: #505050;
  font-size: 1.5rem;
  outline: none;
  padding: 1.5rem;
}
@media screen and (max-width: 1024px) {
  #contact .container .contact__from__container form textarea {
    font-size: 1rem;
  }
}
#contact .container .contact__from__container .others {
  margin-top: 2rem;
  padding: 0.8rem 3.5rem;
}
#contact #contact__title {
  font-size: 4rem;
  line-height: 130%;
  color: #000000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  #contact #contact__title {
    font-size: 3rem;
    line-height: 130%;
  }
}
#contact .contact__section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  #contact .contact__section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#contact .direct__contact {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
#contact .direct__contact .profile__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #f0f0f0;
}
#contact .direct__contact h3 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
#contact .direct__contact p {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
#contact .direct__contact .contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#contact .direct__contact .contact__buttons a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 100px;
}
#contact .direct__contact .contact__buttons a img {
  width: 24px;
  height: 24px;
}
#contact .direct__contact .contact__buttons .whatsapp__btn {
  background: #25D366;
  color: white;
}
#contact .direct__contact .contact__buttons .whatsapp__btn:hover {
  background: #1fba58;
}
#contact .direct__contact .contact__buttons .meeting__btn {
  background: #000;
  color: white;
}
#contact .direct__contact .contact__buttons .meeting__btn:hover {
  background: rgb(1, 53, 0);
}
#contact .direct__contact .contact__buttons .ask__questions__btn {
  background: #eeffee;
  color: #4CAF50;
  border-radius: 100px;
  padding: 1rem 2rem;
  justify-content: center;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
#contact .direct__contact .contact__buttons .ask__questions__btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
#contact .direct__contact .contact__buttons .ask__questions__btn svg {
  width: 24px;
  height: 24px;
}

#faq {
  background: #ffffff;
  background: url("../img/bg-gradient.svg") center center/cover;
}
#faq .container {
  max-width: 1000px;
  margin: auto;
  padding: 9rem 2rem;
}
@media screen and (max-width: 1024px) {
  #faq .container {
    padding: 4rem 1.5rem 4rem 1.5rem;
  }
}
#faq #faq__title {
  font-size: 3.3rem;
  line-height: 100%;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  #faq #faq__title {
    font-size: 2rem;
  }
}
#faq #faq__title p {
  font-weight: 200;
  font-style: italic;
}
#faq #faq__item__container {
  margin-top: 4rem;
}
#faq #faq__item__container .faq__item {
  border-bottom: 1px solid #eaeaea;
}
#faq #faq__item__container .faq__question {
  width: 100%;
  text-align: left;
  padding: 15px;
  border: none;
  background: none;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #faq #faq__item__container .faq__question {
    font-size: 0.9rem;
  }
}
#faq #faq__item__container .faq__question::after {
  content: "▾";
  font-size: 1.4rem;
  transition: transform 0.3s;
  background-color: #e4ebee;
  height: 2.4rem;
  width: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  #faq #faq__item__container .faq__question::after {
    font-size: 1.1rem;
    background-color: unset;
  }
}
#faq #faq__item__container .faq__answer {
  margin-right: 3rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-bottom: 1rem;
  opacity: 0.7;
  font-size: 1.3rem;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  #faq #faq__item__container .faq__answer {
    font-size: 1rem;
  }
}
#faq #faq__item__container .faq__answer p {
  margin: 0;
  padding: 0 15px 15px;
}
#faq #faq__item__container .faq__answer ul,
#faq #faq__item__container .faq__answer ol {
  margin: 0;
  padding: 0 15px 15px;
  padding-left: 2.5rem;
}
#faq #faq__item__container .faq__item.active .faq__question::after {
  transform: rotate(180deg);
}

#pricing-page .nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 2rem;
}
#pricing-page #pricin-all-section .pricing-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .pricing-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}
#pricing-page #pricin-all-section .pricing-heading {
  color: #343434;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .pricing-heading {
    font-size: 2rem;
  }
}
#pricing-page #pricin-all-section .pricing-description {
  color: #666666;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .pricing-description {
    font-size: 13px;
    line-height: 1.5rem;
  }
}
#pricing-page #pricin-all-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .container {
    padding: 0 0.8rem;
  }
}
#pricing-page #pricin-all-section .plan-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f6efef;
  border-radius: 50px;
  padding: 5px;
}
#pricing-page #pricin-all-section .total-parsent {
  text-align: center;
  margin: auto;
}
#pricing-page #pricin-all-section .total-parsent .parsent {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #9b9db6;
}
#pricing-page #pricin-all-section .plan-button {
  font-size: 16px;
  padding: 12px 20px;
  color: #c803be;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  background: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .plan-button {
    font-size: 13px;
  }
}
#pricing-page #pricin-all-section .plan-button:hover {
  background-color: #e74bde;
  color: #fff;
  transition: 0.5s;
}
#pricing-page #pricin-all-section .plan-button.active {
  background: linear-gradient(to bottom, #e74bde 0%, #c803be 70% 100%);
  color: white;
  transition: none;
}
#pricing-page #pricin-all-section .pricing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1180px;
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .pricing {
    padding-left: 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
#pricing-page #pricin-all-section .pricing .pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}
@media screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .pricing .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #pricing-page #pricin-all-section .pricing .pricing-cards {
    grid-template-columns: 1fr;
  }
}
#pricing-page #pricin-all-section .pricing .card {
  padding: 1.5rem;
  /* Equivalent to p-6 */
  border-radius: 1rem;
  /* Equivalent to rounded-xl */
  width: 350px;
}
#pricing-page #pricin-all-section .pricing .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#pricing-page #pricin-all-section .pricing .card-title {
  font-size: 2.5rem;
  /* Equivalent to text-3xl */
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#pricing-page #pricin-all-section .pricing .card-description {
  font-size: 1rem;
  /* Equivalent to text-base */
  color: #343434;
  line-height: 2rem;
  /* Equivalent to leading-8 */
  margin-bottom: 1.25rem;
  /* Equivalent to mb-5 */
}
#pricing-page #pricin-all-section .pricing .price-section {
  display: flex;
  align-items: baseline;
}
#pricing-page #pricin-all-section .pricing .price {
  font-size: 2.5rem;
  /* Equivalent to text-4xl */
  color: #48404e;
  font-weight: bold;
  margin-bottom: 1rem;
}
#pricing-page #pricin-all-section .pricing .billing-cycle {
  font-size: 1rem;
  color: #48404e;
  font-weight: 500;
  margin-top: 1rem;
}
#pricing-page #pricin-all-section .pricing .billing-type {
  color: #7d6e7d;
}
#pricing-page #pricin-all-section .pricing .features {
  margin-top: 1rem;
}
#pricing-page #pricin-all-section .pricing .features-title {
  font-size: 1.125rem;
  /* Equivalent to text-lg */
  font-weight: 600;
  color: #48404e;
  margin-bottom: 1rem;
}
#pricing-page #pricin-all-section .pricing .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* Equivalent to gap-2 */
  color: #666666;
  font-size: 0.875rem;
  /* Equivalent to text-sm */
  margin-bottom: 1rem;
}
#pricing-page #pricin-all-section .pricing .subscribe-btn {
  width: 100%;
  margin-top: 1.5rem;
  /* Equivalent to mt-6 */
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: center;
  border: none;
}
@media only screen and (max-width: 1024px) {
  #pricing-page #pricin-all-section .pricing {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media only screen and (max-width: 639px) {
  #pricing-page #pricin-all-section .pricing {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}/*# sourceMappingURL=pricing.css.map */