@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap");

body {
  background: url("./assets/images/body-bg-img.webp"), black;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;
  height: 100%;
}

* .container {
  max-width: 1140px;
  margin: auto;
}

/*======================================= FONT FAMILY CLASSESS =======================================*/

.font-railway {
  font-family: "Raleway", sans-serif;
}

.font-plus-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/*======================================= FONT SIZE CLASSESS =======================================*/

.text-3xl {
  font-size: 60px;
}

.text-2xl {
  font-size: 48px;
}

.text-xl {
  font-size: 32px;
}

.text-lg {
  font-size: 24px;
}

.text-md {
  font-size: 18px;
}

.text-sm {
  font-size: 16px;
}

.text-xsm {
  font-size: 14px;
}

/*======================================= FONT WEGIHT CLASSESS =======================================*/

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

/*======================================= MAX-WIDTH CLASSESS =======================================*/
.max-w-627 {
  max-width: 627px;
}

.max-w-1274 {
  max-width: 1274px;
}

.cursor-pointer {
  cursor: pointer;
}

.right-0 {
  right: 0;
}

/*=======================================PRIMARY-COLOR CLASSESS=======================================*/
.primary-color {
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
}

/*=======================================HERO-SECTION-BG CLASSESS=======================================*/
/* .main {
  background-image: url("/assets/images/Hero-bg-img.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
} */

/*======================================= GRADIENT TEXT CLASSESS =======================================*/
.gradient-text {
  background: linear-gradient(
    269deg,
    #3751ec 0.48%,
    #9e35c0 21.76%,
    #e83392 39.01%,
    #f16a63 53.1%,
    #f8894c 71.36%,
    #fdbf30 99.5%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Raleway;

  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: capitalize;
}

.change .overlay {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.415);
  z-index: 20;
  position: fixed;
}

/*================================================ NAV SECTION STYLES ====================================*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.navbar ul {
  display: flex;
  align-items: center;
  margin: 0px;
  gap: 20px;
  list-style: none;
}

.nav-item a {
  color: white;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.nav-item a:hover {
  color: #f7864e;
}

.nav-logo {
  max-width: 150px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.nav-logo:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 19px;
}

.btn-primary {
  border-radius: 55px;
  border: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  display: flex;
  padding: 12px 40px;
  justify-content: center;
  background-color: transparent;
  align-items: center;
  gap: 10px;
  color: white;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: "";
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  position: absolute;
  width: 100%;
  height: 100%;

  left: -100%;
  z-index: -1;
  transition: 0.4s ease-in-out;
  top: 0px;
}

.btn-primary {
  overflow: hidden;
}

.btn-primary:hover::after {
  left: 0px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-secondary {
  border-radius: 55px;
  border: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  display: flex;
  padding: 12px 40px;
  justify-content: center;
  background-color: transparent;
  align-items: center;
  gap: 10px;
  color: white;
  outline: none;
}

.btn-secondary {
  position: relative;
}

.btn-secondary::after {
  content: "";
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: -1;
  transition: 0.4s ease-in-out;
  top: 0px;
}

.btn-secondary {
  overflow: hidden;
}

.btn-secondary:hover::after {
  left: 100%;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ==========================================================sidebar=================================================== */
.side-bar {
  background: #101010f6;
  height: 100vh;
  width: 330px;
  position: fixed;
  z-index: 100;
  padding-bottom: 20px;

  left: -330px;
  top: 0;
  transition: 0.2s ease-in;
}

.side-bar ul {
  padding-top: 20px;
  padding-left: 21px !important;

  flex-grow: 1;
  list-style: none;
}

.change .side-bar {
  left: 0px;
}

.hamburger {
  display: none;
}

/*================================================ HERO SECTION STYLES ====================================*/
.hero-section {
  margin-top: 150px !important;
}

.hero-heading {
  color: #fff;
  font-family: Raleway;

  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: capitalize;
}

.hero-section p {
  color: var(--White, #fff);
  font-family: Plus Jakarta Sans;
  font-size: 15.982px;
  font-style: normal;
  font-weight: 400;
  line-height: 123.6%;
  /* 19.754px */
  text-transform: capitalize;
}

.hero-left-img {
  width: 95%;
}

/* !--======================================================Elevate Your Online Presence Styles================================ -- */
.our-services {
  margin-top: 40px !important;
  margin-bottom: 80px !important;
}

.online-presence-main {
  margin-top: 120px;
}

.online-presence h3 {
  color: var(--White, #fff);

  font-family: Raleway;

  font-style: normal;

  line-height: 110%;
  text-transform: capitalize;
}

.online-presence p {
  color: var(--White, #fff);
  font-family: Raleway;

  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.8;
  margin-top: 10px;

  /* 24px */
}

.online-presence h5 {
  color: var(--White, #fff);
  font-variant-numeric: lining-nums proportional-nums;

  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}

.card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(260px);
  padding: 30px 56px;

  margin: auto;
}

.online-presence-card {
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.online-presence-card h3 {
  font-family: Raleway;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
}

.online-presence-card p {
  color: var(--White, #fff);

  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0px !important;
}

/*===================================================== why-choose-us-style========================================================= */
.why-choose-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(160px);
  width: 32%;
}

.why-choose-card:hover {
  transform: scaleY(1.1);
}

.why-choose-card:hover {
  background-image: url("/assets/images/why-choose-card-hover-bg.png");

  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.why-choose-card {
  position: relative;
  transition: 0.3s ease-in-out;
}

.why-choose-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    269deg,
    #3752ecdb 0.48%,
    #9d35c0d6 21.76%,
    #e83391d9 39.01%,
    #f16a63e5 53.1%,
    #f8884cde 71.36%,
    #fdbf3073 99.5%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* !-- =========================================Our-Service-Styles========================================= -- */

.what-your-clients {
  margin: 80px 0px !important;
}

.our-services-card {
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(160px);

  width: 49%;
}

.our-services-card {
  position: relative;
}

.our-services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    269deg,
    #3752ec52 0.48%,
    #9d35c08e 21.76%,
    #e8339192 39.01%,
    #f16a6395 53.1%,
    #f8884cab 71.36%,
    #fdbf303b 99.5%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* !-- ===============================================What Our Clients Say-Styles============================================== -- */
.clients-say {
  max-width: 711px;
}

.clients-say-card {
  width: 350px;
}

.clients-say-card-inside {
  cursor: pointer;
  width: 350px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    269deg,
    rgba(55, 81, 236, 0.05) 0.48%,
    rgba(158, 53, 192, 0.05) 21.76%,
    rgba(232, 51, 146, 0.05) 39.01%,
    rgba(241, 106, 99, 0.05) 53.1%,
    rgba(248, 137, 76, 0.05) 71.36%,
    rgba(253, 191, 48, 0.05) 99.5%
  );
}

.client-scrollbar::-webkit-scrollbar {
  display: none;
}

.client-scrollbar {
  -ms-overflow-style: none;

  scrollbar-width: none;
}

.clients-say-card-inside {
  position: relative;
}

.clients-say-card-inside:hover::before {
  content: "";
  position: absolute;
  inset: 0;

  padding: 2px;
  background: linear-gradient(
    269deg,
    #3752ec52 0.48%,
    #9d35c08e 21.76%,
    #e8339192 39.01%,
    #f16a6395 53.1%,
    #f8884cab 71.36%,
    #fdbf303b 99.5%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 16px;
}

/* =====================================================================Pricing plan========================================================== */
.pricing-plan {
  margin: 80px 0px !important;
}

.card-container {
  max-width: 1116px;
  margin: auto;
}

.monthly-yearly {
  border-radius: 100px;

  padding: 8px 10px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.monthly-yearly button {
  border: #000;
  background: transparent;
  color: white;
  font-family: Raleway !important;
  padding: 12px 22px;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 16px;
  line-height: 110%;
  text-transform: capitalize;
  background: linear-gradient(
    269deg,
    #3751ec 0.48%,
    #9e35c0 21.76%,
    #e83392 39.01%,
    #f16a63 53.1%,
    #f8894c 71.36%,
    #fdbf30 99.5%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.monthly-yearly button.active {
  color: white !important;
  background-clip: none !important;
  -webkit-text-fill-color: white !important;
  -webkit-background-clip: none !important;
  border-radius: 100px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  border: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  font-family: Raleway !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 110%;
  text-transform: capitalize;
  font-size: 16px !important;

  outline: none;
  z-index: -1;
  color: black !important;
}

.monthly-yearly {
  position: relative;
}

.swiper-pricing-container {
  max-width: 1000px;
}

.monthly-yearly::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.pricing-plan-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);

  background: linear-gradient(
    269deg,
    rgba(55, 81, 236, 0.05) 0.48%,
    rgba(158, 53, 192, 0.05) 21.76%,
    rgba(232, 51, 146, 0.05) 39.01%,
    rgba(241, 106, 99, 0.05) 53.1%,
    rgba(248, 137, 76, 0.05) 71.36%,
    rgba(253, 191, 48, 0.05) 99.5%
  );

  backdrop-filter: blur(5px);
  padding: 30px !important;
  max-width: 380px;
  transition: 0.2s ease-in-out;
}

.pricing-plan-card:hover {
  background-color: white;
}

.pricing-plan-card:hover * {
  color: #000 !important;
}

.pricing-plan-card:hover .choose-btn {
  color: white !important;
}

.choose-btn {
  border-radius: 55px;
  border: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  display: flex;
  padding: 12px 40px;
  width: 100%;
  justify-content: center;
  background-color: transparent;
  align-items: center;
  gap: 10px;
  color: white;
  transition: all 0.4s ease-in-out;
}

.choose-btn {
  position: relative;
}

.choose-btn::after {
  content: "";
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  position: absolute;
  width: 100%;
  height: 100%;

  left: -100%;
  z-index: -1;
  transition: 0.4s ease-in-out;
  top: 0px;
}

.choose-btn {
  overflow: hidden;
}

.pricing-plan-card:hover .choose-btn::after {
  left: 0px;
}

.choose-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/*=========================================== each-growth-package============================================= */

.each-growth-package {
  margin: 80px 0px !important;
}

.each-growth-package h2 {
  max-width: 650px;
}

.Customize-insta {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px;
}

/* ===============================================how-it-work=================================== */
.customized-strategy p {
  max-width: 460px;
  width: 100%;
}

.customized-svg {
  max-width: 350px;
  width: 100%;
  display: block;
}

.how-it-work {
  margin: 70px 0px !important;
}

/*======================================= FAQ SECTION STYLES =======================================*/

#faq {
  max-width: 830px;
  margin-top: 70px !important;
  margin-bottom: 50px !important;
}

/* .accordion-header {
  background-image: url("./assets/images/faq-bg-ellipse-img.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;


  width: 100%;
  height: 100%;
} */

#faq .accordion-item::after {
  content: "";
  position: absolute;
  background-image: url("./assets/images/faq-bg-ellipse-img2.png") !important;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;

  width: 100%;
  height: 100%;
}

.ellipse-bg {
  background-image: url("./assets/images/faq-bg-ellipse-img.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  width: 100%;
  height: 100%;
}

#faq .accordion-item {
  position: relative;
}

#faq .accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3752ecb3 0.48%,
      #9d35c09e 21.76%,
      #e8339184 39.01%,
      #f16a6379 53.1%,
      #f8884c89 71.36%,
      #fdbf3076 99.5%
    )
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

#faq .accordion {
  --bs-accordion-active-bg: rgba(255, 255, 255, 0) !important;
  --bs-accordion-bg: rgba(255, 255, 255, 0) !important;
}

#faq .accordion-item {
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  border: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
}

#faq .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px !important;
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

#faq .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./assets/svg/accordianIcon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#faq .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

#faq .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px !important;
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

/* =======================================================Input-Section-Styles=========================================================== */
.get-in-touch {
  margin-top: 100px;
  margin-bottom: 100px;
}

.inputs--border-color {
  position: relative;
}

.inputs--border-color::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3752ecb3 0.48%,
      #9d35c09e 21.76%,
      #e8339184 39.01%,
      #f16a6379 53.1%,
      #f8884c89 71.36%,
      #fdbf3076 99.5%
    )
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.inputs {
  background-color: transparent;
  outline: none;
  border-radius: 12px;
  border: 1px solid #3751ec;
  width: 100%;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  opacity: 0.6;
}

.inputs::placeholder {
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  opacity: 0.6;
}

.textarea {
  background-color: transparent;
  outline: none;
  border-radius: 12px;
  border: none;
  width: 100%;
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  opacity: 0.6;
}

.textarea-border-color {
  position: relative;
}

.textarea-border-color::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3752ecb3 0.48%,
      #9d35c09e 21.76%,
      #e8339184 39.01%,
      #f16a6379 53.1%,
      #f8884c89 71.36%,
      #fdbf3076 99.5%
    )
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.textarea::placeholder {
  color: white;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  opacity: 0.6;
}

/*======================================================= Significant-design================================================== */
.significant-design {
  margin-top: 100px !important;
  margin-bottom: 60px;
}

/* ==============================================================Start Your Instagram================================================================= */
.start-insta {
  border-radius: 24px;
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
}

.start-insta {
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin: auto;
}

.hashtag-top {
  top: 0;
  position: absolute;
  left: 0;
}

.hashtag-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}

.start-insta-content {
  max-width: 530px;

  margin: 30px 0px;
}

.get-start-btn {
  border-radius: 55px;
  background: var(--White, #fff);
  border: 2px solid white;
  transition: 0.3s ease-in-out;
}

.get-start-btn:hover {
  border: 2px solid white;
  background: transparent;
}

.get-start-btn span {
  background: var(
    --Color,
    linear-gradient(
      269deg,
      #3751ec 0.48%,
      #9e35c0 21.76%,
      #e83392 39.01%,
      #f16a63 53.1%,
      #f8894c 71.36%,
      #fdbf30 99.5%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
}

.get-start-btn:hover span {
  background: var(--Color, white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*============================================================== Footer-Styling============================================================== */
.footer {
  margin-top: 90px;
}

.footer-main a {
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;

  line-height: 150%;
  padding-bottom: 4px;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.2s ease-in-out;
}

.footer-left {
  max-width: 340px;
  width: 100%;
}

.footer-right {
  max-width: 590px;
  width: 100%;
}

.footer-main a:hover {
  color: #f7864e;
}

.footer-icon span {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.footer-icon span:hover {
  transform: translateY(-6px);
}

.foote-line {
  background: linear-gradient(
    269deg,
    #3751ec 0.48%,
    #9e35c0 21.76%,
    #e83392 39.01%,
    #f16a63 53.1%,
    #f8894c 71.36%,
    #fdbf30 99.5%
  );
  width: 100%;
  height: 1px;
  display: block;
}

/*======================================= BREAKPOINT STYLES =======================================*/

@media (max-width: 567px) {
  .hero-section {
    margin-top: 70px !important;
  }

  .online-presence-main {
    margin-top: 60px;
  }

  .our-services {
    margin-bottom: 40px !important;
  }

  .what-your-clients {
    margin: 60px 0px !important;
  }

  .pricing-plan {
    margin: 50px 0px !important;
  }

  .discover-instaraja {
    margin: 40px 0px !important;
  }

  .get-in-touch {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .significant-design {
    margin-top: 50px !important;
    margin-bottom: 10px;
  }

  .footer {
    margin-top: 50px;
  }

  .card {
    padding: 20px 8px;
  }

  .online-presence-card h3 {
    font-family: Raleway;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
  }

  .online-presence-card p {
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
  }

  .customized-strategy h3 {
    font-size: 20px;
  }

  .customized-strategy p {
    font-size: 12px;
  }

  .customized-svg svg {
    width: 340px;
  }

  .customized-strategy {
    gap: 3px !important;
  }

  .plan-pricing-heading {
    font-size: 35px;
  }

  .why-choose-us h2 {
    font-size: 35px;
  }

  .start-insta-content h3 {
    font-size: 25px !important;
  }

  .swiper-button {
    position: absolute;
    bottom: -15px;
    right: 63%;
  }

  .swiper-button .swiper-button-next {
    right: -89px;
  }

  .clients-say-card-inside h3 {
    font-size: 20px;
  }

  .clients-say-card-inside p {
    font-size: 14px;
  }

  .swiper-slide-active .pricing-plan-card {
    background-color: white;
  }

  .swiper-slide-active .pricing-plan-card * {
    color: #000 !important;
  }

  .swiper-slide-active .pricing-plan-card .choose-btn {
    color: white !important;
  }

  .swiper-slide-active .choose-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    width: 100%;
    height: 100%;

    background: var(
      --Color,
      linear-gradient(
        269deg,
        #3751ec 0.48%,
        #9e35c0 21.76%,
        #e83392 39.01%,
        #f16a63 53.1%,
        #f8894c 71.36%,
        #fdbf30 99.5%
      )
    );
  }

  .swiper-slide-active .pricing-plan-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);

    backdrop-filter: blur(0px);
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 38px;
  }

  .online-presence h3 {
    font-size: 35px;
  }

  .our-services h3 {
    font-size: 35px;
  }

  .our-services-card {
    width: 100%;
    max-width: 500px;
  }

  .clients-say h3 {
    font-size: 38px;
  }

  .hamburger {
    display: block;
  }

  .start-insta-content h3 {
    font-size: 35px;
  }

  .get-in-touch h3 {
    font-size: 35px;
  }

  .each-growth-package h2 {
    font-size: 35px;
    width: 100%;
  }

  .Customize-insta {
    max-width: 600px;
    width: 100% !important;
  }

  .why-choose-card {
    max-width: 380px;
    width: 100%;
    margin: auto;
    margin-bottom: 5px;
  }
}

@media (max-width: 980px) {
  .why-choose-card {
    max-width: 380px;
    width: 100%;
    margin: auto;
    margin-bottom: 5px;
  }
}

/*======================== SWIPER SLIDER CUSTOM ARROW ICON STYLES ========================*/
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none !important;
}
