button {
  border: none;
  outline: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}




.container {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container2 {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.section-padding {
  padding: 50px 0;
}

/* ==== TOPBAR ==== */
.topbar .container,
.navbar .container {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  background: #0b125a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info,
.topbar-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.topbar-social {
  gap: 15px;
}

.topbar-info-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s all ease;
}

.topbar-info-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.topbar-social-link {
  transition: 0.3s all ease;
}

.topbar-social-link:hover {
  transform: scale(1.1);
}

/* ===== Navbar==== */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 9999;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 9999px;

  /* Frost / base */
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  /* Depth */
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.navlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  z-index: 999;
}

.navlink {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #0b125a;
  transition: 0.3s ease;
  position: relative;
}

.navlink svg path {
  transition: 0.3s ease;
}

.navlink::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 0%;
  background: #fff;
  top: 100%;
  transition: 0.3s ease;
}

.navlink:hover {
  color: #fff;
}

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

.navlink:hover svg path {
  stroke: #fff;
}

.nav-item .active {
  width: fit-content;
  border-bottom: 2px solid var(--dark_blue);
}



.navbar-action-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ede1f3;
  color: #0b125a;
}

.btn-primary:hover {
  color: #0b125a;
  border-color: currentColor;
}

/* ==== sign in dropdown ==== */

.navbar-btns .sign-dropdown {
  position: relative;
}

/* Button */
.dropdown-btn {
  background: #e6e1f0;
  color: #1e1b4b;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Menu */
.dropdown-menu {
  position: absolute;
  top: 110px;
  right: 160px;
  background: #0b1b6f;
  border-radius: 16px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

/* Show dropdown */
.sign-dropdown:hover .dropdown-menu,
.sign-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Menu items */
.dropdown-menu li a {

  display: block;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.12);
}


.btn-secondary {
  background: #0b125a;
  color: #ede1f3;
}

.btn-secondary:hover {
  color: #0b125a;
  background: #ede1f3;
  border-color: currentColor;
}

.menu-btn {
  display: none;
  font-size: 18px;
}


.nav-item {
  position: relative;
}


.dropdown-navlist {
  right: 50%;
  transform: translateX(50%);
  top: 60px;
  position: absolute;
  background: #0B125A;
  padding: 50px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;

  /* Hide Dropdown */
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%) translateY((10px));
  transition: 0.3s ease;
  z-index: 9999;
}

/* show dropdown on hover */
.nav-item:hover .dropdown-navlist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY((0));
}

/* for click toggle (mobile) */
.nav-item.active .dropdown-navlist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

.dd-navitem:not(:last-child) {
  margin-bottom: 18px;
}

.dd-navitem {
  position: relative;
}

.dd-navitem::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* right: 0; */
  height: 10px;
  width: 10px;
  background: url('../asset/HOME_PAGE/navbar/arrow-cream-orange.svg') no-repeat center;
  padding-left: 25px;
}

.dd-navlink {
  font-size: 18px;
  font-family: "Judson", serif;
  letter-spacing: 0.05em;
  color: #FFE8D2;
  white-space: nowrap;
  transition: 0.3s all ease;
}

.dd-navlink:hover {
  color: #F08526;
}

.dropdown-navlist hr {
  border-top: 1px solid rgb(255, 255, 255, 0.3);
  margin-bottom: 16px;
}



/* ==== Banner Start ====*/

.banner {
  background: linear-gradient(to right,
      rgba(250, 106, 10, 0.3) 33%,
      rgba(255, 255, 255, 0.1) 100%),
    url("../asset/findworkfrelencer/hero.svg") center / cover no-repeat;
  min-height: 800px;
  padding-top: 165px;
  padding-bottom: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.banner .container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.banner-content {
  margin-bottom: 80px;
}

h1 {
  font-family: "Judson", serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.05em;
  max-width: 670px;
  width: 100%;
  color: #FFFFFF;
}


/* ==== TOPBAR & BANNER END ==== */


/* ==== DISCOVER==== */

.discover {

  background: #F08526 url('../asset/HOME_PAGE/freeliance_project_bg/bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;

}

.discover_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.discover_content .discover_text {
  text-align: center;
  font-size: 36px;
  font-family: "Judson", serif;
  color: var(--white);
  margin-bottom: 30px;


}

.discover_content .discover_text .change {
  color: black;
}

.Oppotunities {
  padding: 16px 30px;
  border: 2px solid white;
  border-radius: 30px;
  color: var(--white);
  transition: 0.3s all ease-in;
}

.Oppotunities:hover {
  background-color: white;
  color: #F08526;
  border: 2px solid #F08526;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);

}

/* ========== DISCOVER END ===========  */





/*  ========== COMPARE ==========  */

.compare {
  background-color: var(--purple);
}

.compare-content {
  padding: 50px 0;
  max-width: 540px;
  width: 100%;
}

.compare-content>h4 {
  font-size: 48px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #0B125A;
  font-family: "Judson", serif;
  margin-bottom: 25px;

}

.highlight {
  color: var(--orange);
}

.compare-content>p {
  font-size: 18px;
  color: #000000;
  margin-bottom: 117px;
}

.input-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.input-field {
  width: 100%;
  border: none;
  font-size: 16px;
  color: rgba(0, 0, 0, 0, 0.6);
  outline: none;

}

.next-btn {
  background-color: #0d164b;
  color: white;
  border-radius: 30px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid transparent;
  box-shadow: -5px 4px 10px rgba(0, 0, 0, .15);
  transition: 0.3s all ease-in;
}

.next-btn:hover {
  background-color: white;
  color: #0B125A;
  border: 1px solid #0B125A;
}


.priceSwiper {
  width: 610px;
  height: 400px;
  border-radius: 20px;
}

.priceSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}


/*      =========== PAYING ==========      */


.card {
  padding: 22px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 3px -3px 8px 0 rgba(0, 0, 0, 0.2), -3px 3px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 15px 0;

}

.paying-content>h4 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  font-family: "Judson", serif;
  margin-bottom: 30px;
}

.card .basic,
.card .business {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border-radius: 20px;
  padding: 55px;
  text-align: left;
  position: relative;
  box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.20), -3px 3px 8px rgba(0, 0, 0, 0.20);
  transition: 0.3s all ease;
}

.card .basic:hover {
  transform: translateY(-3px);
}

/* .card.basic */


.basic {
  background: var(--cream-orange);
}

.card.basic .plan-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--judson);
  color: var(--black);
}

.card.basic .plan-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
  color: var(--black);
}

.card.basic .fee {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.card.basic .feature-heading {
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  opacity: 0.6;
  margin-bottom: 20px;
}

.card.basic .features {

  margin-bottom: 30px;
}

.card.basic .features li {
  font-size: 24px;
  color: var(--black);
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 24px;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 45px;
}

.card.basic .features li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.card.basic .btn {
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card.basic .btn.basic {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.card.basic .btn.basic:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: -3px 3px 12px rgba(0, 0, 0, .2);
}

.card.business .features li::before {
  color: white;
}

/* business */

.business {
  position: relative;
  background: var(--orange)
}

.badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--dark_blue);
  color: white;
  padding: 8px 30px;
  border-radius: 0 20px 0 20px;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Judson", serif;
  z-index: 999;
}

.business .plan-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--judson);
  color: var(--white);
}

.business .plan-subtitle {
  font-size: 16px;
  opacity: 0.8;
  color: var(--white);
  margin-bottom: 20px;
}

.business .fee {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.business .feature-heading {
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 20px;
}


.business .features li {
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;

}

.business .features li::before {
  content: "✓ ";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--white);

}

.business .btn {
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.business .btn.business {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;

}

.business .btn.business:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: -3px 3px 12px rgba(0, 0, 0, .2);
}

/*      =========== PAYING END ==========      */


/* ========== KEY FEATURES ========== */

/* MAIN ROW */
.features-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* LEFT */
.features-left {
  width: 46%;
  padding: 0 15px;
  position: relative;
}

.features-title {
  font-family: "Judson", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c2b7a;
  margin-bottom: 20px;
  text-align: left;
}

.features-block {
  margin-top: 18px;
}

.features-heading {
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 10px;
}

.features-item {
  font-size: 12px;
  font-weight: 400;
  color: #9aa0a6;
  line-height: 1.8;
}

/* RIGHT */
.features-right {
  width: 54%;
  padding: 0 15px;
  position: relative;
}

/* Vertical divider between left & right (like screenshot) */
.features-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #e8eaed;
}

/* Plans Row */
.plans-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: flex-end;
}

/* Each plan */
.plan-col {
  width: 50%;
  padding: 0 10px;
}

.plan-top {
  text-align: center;
  padding-top: 5px;
}

.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 4px;
}

.plan-sub {
  font-size: 10px;
  font-weight: 400;
  color: #8f96a3;
  margin-bottom: 10px;
}

/* Button (a tag) */
.plan-btn {
  display: inline-block;
  width: 190px;
  padding: 10px 0;
  border-radius: 30px;
  background: #0a0f55;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0px 6px 14px rgba(10, 15, 85, 0.25);
}

.plan-btn:hover {
  background: #fff;
  color: #000;
}

/* Plan body */
.plan-body {
  padding-top: 18px;
  text-align: center;
}

/* Spacer aligns with left title area */
.plan-spacer {
  height: 38px;
}

/* Lines */
.plan-line {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tick {
  font-size: 13px;
  font-weight: 700;
  color: #0a0f55;
}

.plan-text {
  font-size: 10px;
  font-weight: 400;
  color: #9aa0a6;
}

.plan-text.light {
  color: #b1b6bf;
}

/* Divider line inside plan */
.plan-divider {
  height: 18px;
  border-bottom: 1px solid #e8eaed;
  margin: 10px auto 12px auto;
  width: 92%;
}

/* ==== FREQUENTLY SEC START ===== */

.faq-section {
  background: #0a1458;
  padding: 80px 0;
  color: #fff;
}

/* LEFT */


.faq-left h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--judson);
}

.faq-left span {
  display: block;
  color: #f08526;
}



/* RIGHT */
.faq-right {
  display: flex;
  justify-content: left;
  flex-direction: column;
  margin-top: 10%;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px 0;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.faq-header p {
  font-size: 17px;
  text-decoration: none;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* BODY */
.faq-body {
  display: none;
  margin-left: 40px;
  margin-top: 8px;
  font-size: 15px;
  color: #dcdcdc;
}

/* VIEW MORE */
.view-more-wrap {
  text-align: right;
  margin-top: 25px;
}

.view-more {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: 0.3s;
}

.view-more:hover {
  color: #f08526;
}


/* ==== FREQUENTLY SEC end ===== */

/* ==== CONTACT SEC ==== */


.contact-section {
  padding: 50px 0;
  background: var(--purple);
}

.contact-hdr {
  font-size: 48px;
  font-weight: 400;
  font-family: "Judson", serif;
  color: var(--dark_blue);
  text-transform: capitalize;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
}

/* Groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

/* Half & Full width */
.form-group.half {
  width: 50%;
  padding-right: 15px;
}

.form-group.half:nth-child(even) {
  padding-right: 0;
  padding-left: 15px;
}

.form-group.full {
  width: 100%;
}

/* Labels */
label {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark_blue);
  margin-bottom: 5px;
}

input,
textarea {
  background: #ffffff;
  border: none;
  outline: none;
  padding: 14px 18px;
  border-radius: 30px;
  font-size: 14px;
}

textarea {
  resize: none;
  border-radius: 30px;
}

/* Checkbox */
.checkbox-wrap {
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}

.checkbox-wrap input {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  margin-top: 20px;
}

.checkbox-wrap span {
  font-size: 12px;
  font-weight: 400;
  color: rgb(32, 43, 170, 60%);
  margin-top: 20px;
}

.button-wrap {
  display: flex;
  justify-content: flex-end;

  margin-top: 30px;
}

button.submit {
  margin-left: auto;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  max-width: 400px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s all ease-in;
  border: 1px solid transparent;
}

button.submit:hover {
  background: var(--white);
  color: var(--orange);
  border: 1px solid var(--orange);
}

/* ==== CONTACT SEC END ==== */


/*      =========== FOOTER ==========      */


.footer-section {
  background: #0B125A;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.footer-app {
  display: flex;
  justify-content: flex-start;
  gap: 10px;

}

.footer-app .app-icon img {
  width: 22px;
  height: 22px;
  transition: 0.5s all ease-in;
}

.footer-app .app-icon img:hover {
  transform: scale(1.1);
}

.footer-icon {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.footer-icon svg {
  margin-right: 10px;
  transition: 0.5s all ease-in;


}

.footer-icon a:hover svg {
  transform: scale(1.1);
}

.footer-icon a {

  display: flex;
  color: white;
  margin-top: 10px;

}

.footer-icon a span {
  font-size: 16px;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.footer-icon a:hover span {

  color: #F08526;
  border-bottom: 1px solid #F08526;
}


.contact-icon {

  width: 15px;
  height: 15px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
}



.footer-col>p {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--judson);
  margin-bottom: 12px;
  color: #fff;
  cursor: pointer;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;

}

.footer-col ul {

  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 18px;
  color: #ddd;
  border-bottom: 1px solid transparent;
  transition: 0.5s all ease-in;
}

.footer-col ul li a:hover {
  color: #F08526;
  border-bottom: 1px solid #F08526;

}



.footer-brand .footer-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  object-fit: contain;
}

.footer-brand .contact {
  margin-bottom: 6px;
  color: #ddd;
}

.footer-brand .footer-social,
.footer-brand .footer-app {
  margin-top: 10px;

}

.footer-brand .footer-social span,
.footer-brand .footer-app span {
  font-size: 18px;
  margin-right: 8px;
  color: #ccc;
}

.footer-social .social-icon {
  transition: .5s all ease-in;
}

.footer-social .social-icon:hover {
  transform: scale(1.1);
}

.social-icon {
  margin-right: 8px;
  color: #fff;
  font-weight: bold;
}


.footer-bottom {
  border-top: 1px solid #2943a1;
  margin-top: 30px;
  padding-top: 14px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
  color: #ccc;
}

.footer-bottom a {
  font-size: 18px;
  color: #ccc;
  text-decoration: none;
  margin-right: 14px;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
  color: #F08526;
  border-bottom: 1px solid #F08526;
}

.lower-footer {
  text-align: center;
  margin-top: 10px;
}

.lower-footer a {
  font-size: 18px;
  color: #aaa;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.lower-footer a:hover {
  color: #F08526;
  border-bottom: 1px solid #F08526;
}

/* ==== FOOTER END ==== */





/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */

/* tobbar start */

@media screen and (max-width: 1440px) {
  .navlist {
    gap: 18px;
  }

  .navbar-action-btns {
    gap: 16px;
  }

  .btn {
    padding: 13px 30px;
  }
}

/* Large devices (laptops) */
@media (max-width: 1200px) {
  nav {
    gap: 10px;
  }

  .btn {
    padding: 8px 14px;
  }
}

/* Medium devices (tablets landscape) */
@media screen and (max-width: 1024px) {
  .topbar {
    padding: 18px 0;
  }

  .topbar-info {
    gap: 12px;
  }

  .topbar-social {
    gap: 6px;
  }

  .topbar-info-link {
    font-size: 12px;
  }

  .topbar-info-link figure,
  .topbar-social-link figure {
    max-width: 12px;
  }

  .navbar {
    padding: 16px 0;
  }

  nav {
    padding: 8px 10px;
    position: relative;
  }

  .navbar-brand {
    max-width: 70px;
  }

  .navlink {
    color: #ffe8d2;
  }

  .navlink svg path {
    stroke: #ffe8d2;
  }

  .navbar-menu {
    /* display: none; */
    position: absolute;
    top: 110%;
    transform: translateX(-50%);
    /* Frost / base */
    background: rgba(11, 18, 90, 1);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    /* Depth */
    border: 1px solid rgba(255, 255, 255, 0.14);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    z-index: 999;
  }

  .navlist {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .navbar-action-btns {
    gap: 12px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 16px;
  }

  .menu-btn {
    font-size: 35px;
    display: block;
    color: #ede1f3;
  }

  /* sign in dropdown */

  .dropdown-menu {
    top: 75px;
    right: 130px;

  }

  .dropdown-menu li a {
    padding: 10px 12px;
    font-size: 16px;
  }
}

/* Tablets */
@media (max-width: 992px) {}

/* Small tablets / large phones */
@media screen and (max-width: 768px) {
  .topbar-wrapper {
    justify-content: center;
  }

  .topbar-rgt {
    display: none;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  nav {
    padding: 4px 8px 4px 4px;
  }

  .navbar-brand {
    max-width: 55px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .menu-btn {
    font-size: 30px;
  }

  .navlink {
    font-size: 12px;
  }

  .navbar-menu {
    border-radius: 30px;
  }

  /* sign in dropdown */

  .dropdown-menu {
    top: 60px;
    right: 100px;

  }

  .dropdown-menu li a {
    font-size: 14px;
  }

  .banner {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 600px;
  }

  .banner .container {
    padding: 0 15px;
  }

  .banner-content {
    margin-bottom: 60px;
  }

  h1 {
    font-size: 50px;
    text-align: center;
  }

}

/* Small mobile devices */
@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .navbar-action-btns {
    gap: 8px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {

  /* sign in dropdown */
  .dropdown-menu {
    top: 60px;
    right: 110px;
  }

  .dropdown-menu li a {
    font-size: 10px;
  }

  h1 {
    font-size: 30px;
  }

  .banner {
    min-height: 400px;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .banner-content {
    margin-block: 40px;
  }


}

/* Very small phones */
@media (max-width: 320px) {}


/* ========== topbar end ========== */




/* RESPONSIVE */

@media (max-width: 1024px) {


  /* pricing */

  .priceSwiper {
    width: 450px;
  }

  .compare-content h4 {
    font-size: 36px;
  }

  .compare-content p {
    font-size: 14px;
  }

  /* basic */
  .card.basic .fee {
    font-size: 16px;
  }

  .card.basic .feature-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card.basic .features li {
    font-size: 20px;
    margin-bottom: 20px;
  }



  /* business */

  .business .fee {
    font-size: 16px;
  }

  .business .feature-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .business .features li {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .business .btn.business {
    margin-top: 15px;

  }
}

@media (max-width: 992px) {


  /* pricing */
  .col-lg-100 {
    width: 100%;
  }

  .compare-content {
    max-width: 100%;
    padding: 30px 0;
    text-align: center;
  }

  .compare-content>h4 {
    font-size: 40px;
  }

  .compare-content>p {
    margin-bottom: 60px;
    font-size: 16px;
  }

  /* .paying-sec */

  .col-md-100 {
    width: 100%;
  }

  .paying-sec .row {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .paying-content h4 {
    font-size: 36px;
  }

  /* basic */
  .card.basic .fee {
    font-size: 16px;
  }

  .card.basic .feature-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card.basic .features li {
    font-size: 16px;
    margin-bottom: 20px;
  }


  /* business */

  .business .fee {
    font-size: 16px;
  }

  .business .feature-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .business .features li {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .business .btn.business {
    margin-top: 15px;

  }

  /* features-section */

  .features-left {
    width: 100%;
    padding-bottom: 25px;
  }

  .features-right {
    width: 100%;
  }

  .features-left::after {
    display: none;
  }

  .plans-row {
    justify-content: center;
  }

  .plan-col {
    width: 50%;
    margin-bottom: 20px;
  }
}


@media (max-width: 768px) {
  .compare-both {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* faq-section */
  .faq {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }
}

@media (max-width: 576px) {

  /* compare section */


  .compare-content h4 {
    font-size: 28px;
  }

  .compare-content p {
    font-size: 12px;
  }



  .features-title {
    font-size: 24px;
    text-align: center;
  }

  .features-heading {
    text-align: center;
  }

  .features-item {
    text-align: center;
  }

  .plan-col {
    width: 100%;
  }

  .plan-btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  /* compare-pricing */

  .input-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .next-btn {
    margin-top: 20px;
  }

  .input-field {
    text-align: center;
  }

  .priceSwiper {
    width: 250px;
  }

}

@media (max-width: 320px) {
  .plan-btn {
    width: 180px;
    font-size: 10px;
  }
}