@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&display=swap");

:root {
  --light-blue: #06AED4;
  --hero-bg: #0e7090;
  --cyan-bg: #088ab2;
  --gutter-padding: 3rem 5rem;
  --link-padding: 0.5rem 1rem;
  --primary-font: lato, sans-serif;
  --secondary-font: "Playfair Display", serif;
}

.horizontal-flex,
.vertical-flex {
  display: flex;
}

.vertical-flex {
  flex-direction: column;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  font-family: var(--secondary-font);
  font-size: 32px;
}

h3 {
  font-size: 20px;
  font-family: var(--primary-font);
}

p {
  font-family: var(--primary-font);
}

header {
  padding: var(--gutter-padding);
  height: 110px;
  display: flex;
  justify-content: space-between;
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

ul {
  list-style: none;
  /* height: 100%; */
  display: flex;
  align-items: center;
  justify-content: space-around;
}

ul a {
  color: var(--gold-font);
  text-decoration: none;
  font-family: var(--primary-font);
  font-size: 14px;
}

ul li {
  padding: var(--link-padding);
  margin: 0.5rem;
}

nav ul li {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding: 0 !important;
  margin: 0.6rem;
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.login-link {
  color: var(--light-blue);
  /* text-decoration: underline; */
}

.cta-btn,
.user-select-btn {
  background-color: var(--light-blue);
  color: white;
  padding: var(--link-padding);
  border-radius: 0.25rem;
  border: none;
  width: 100%;
}

.user-select-btn {
  font-family: var(--primary-font) !important;
  text-decoration: none !important;
}

.cta-btn:hover,
.user-select-btn:hover {
  cursor: pointer;
}

.inactive-btn {
  background: white !important;
  color: #06aed4;
  border: 1px solid #06aed4 !important;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: var(--hero-bg);
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 9999;
  background-color: white;
  height: calc(100vh - 100px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 110px;
  left: 0;
  height: calc(50vh);
  width: 100%;
}

.mobile-menu li {
  margin-top: 1rem;
  width: 80%;
  text-align: center;
  border-radius: 10px;
  padding: 1rem;
}

.mobile-menu li:hover {
  background-color: var(--hero-bg);
  cursor: pointer;
}

.mobile-menu li:hover a {
  color: white;
}

section {
  padding: var(--gutter-padding);
}

section#search-bar {
  background: rgba(7, 111, 138, 0.8);
}

section#search-bar form {
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  justify-content: space-between;
  align-items: center;
}

section#search-bar form #product_search {
  background: transparent;
  /* font-size: 1.2rem; */
  border: none;
  width: 100%;
}

section#search-bar form #product_search:focus {
  outline: none;
}

section#search-bar form i {
  background: rgba(7, 111, 138, 0.8);
  padding: 0.5rem;
  color: white;
  border-radius: 50%;
}

.mobile-hero {
  display: none;
}

section#hero {
  background: var(--hero-bg);
  justify-content: space-between;
}

section#hero .content {
  width: 40%;
  align-items: flex-start;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

#welcome-heading,
#title-description {
  font-family: var(--primary-font);
}

.mobile-hero #welcome-heading {
  font-size: 1.25rem;
  font-weight: 400;
}

.mobile-hero #title-heading {
  font-size: 2rem;
}

.mobile-hero #title-description {
  font-family: var(--primary-font);
}

#title-heading {
  font-family: var(--secondary-font);
  font-size: 2.5rem;
  color: white;
  letter-spacing: 1.5px;
}

#title-description {
  word-spacing: 2px;
}

section#hero button {
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  border: 1px solid transparent;
  font-family: var(--primary-font);
  transition: all 0.25s;
}

section#hero .secondary-btn {
  background: transparent;
  color: white;
  border-color: white;
}

section#hero .primary-btn:hover {
  cursor: pointer;
  background: transparent;
  border-color: white;
  color: white;
}

section#hero .secondary-btn:hover {
  cursor: pointer;
  background: white;
  color: black;
}

section#hero .image {
  width: 50%;
}

section#hero .image img {
  width: 75%;
  height: auto;
}

section#partners {
  align-items: center;
  gap: 2rem;
}

section#partners h3 {
  font-family: var(--primary-font);
  text-transform: uppercase;
}

.partner-pics {
  width: 100%;
  overflow: scroll;
  gap: 2rem;
}

::-webkit-scrollbar {
  display: none;
}

.partner-logo {
  filter: grayscale(100%);
  height: 50px;
}

section#features-section {
  font-family: var(--primary-font);
  align-items: center;
  gap: 1.5rem;
}

section#features-section h2 {
  font-family: var(--secondary-font);
  line-height: 131.25%;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.96px;
}

p.features-desc {
  width: 80%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

section#features-section .features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2rem;
  column-gap: 4rem;
}

.feature {
  display: flex;
  gap: 1rem;
  background: none !important;
  align-items: flex-start !important;
}

.feature-icon {
  margin-top: 0.5rem;
  border: 1px solid var(--hero-bg);
  padding: 0.25rem 0.35rem;
  border-radius: 5px;
}

.feature h3 {
  line-height: 30px;
  color: var(--cyan-bg);
  font-size: 16px;
}

.feature-content-heading {
  text-transform: uppercase;
}

.feature-content-para {
  color: #666e80;
  font-size: 15px;
}

.feature-desc {
  font-size: 1.25rem;
}

section#new-upcoming {
  background: #f3f9fd;
  align-items: center;
  gap: 2rem;
}

section#new-upcoming h2.new {
  margin-top: 0.65rem;
  font-size: 2rem;
  font-weight: 800;
}

section#new-upcoming span.new {
  font-family: var(--primary-font);
  color: var(--cyan-bg);
  font-weight: 600;
  padding-left: 2.5rem;
}

section#new-upcoming .title-section {
  width: 80%;
}

section#new-upcoming .image-section {
  justify-content: space-around;
  gap: 2rem;
}

section#new-upcoming .image-section .desc-image-section {
  display: flex;
  justify-content: flex-end;
}

section#new-upcoming .title-section h2 {
  text-align: center;
  font-family: var(--secondary-font);
}

span.blue-text {
  color: var(--light-blue);
}

section#testimonials {
  gap: 2rem;
}

section#testimonials h2 {
  text-align: center;
}

section#testimonials .tbox {
  padding: 1rem;
  box-shadow: 0px 0px 3px rgba(16, 24, 40, 0.1),
    1px 1px 3px rgba(16, 24, 40, 0.1);
  border-radius: 0.35rem;
  font-family: var(--primary-font);
  gap: 1rem;
}

section#testimonials .tbox img {
  width: 30px;
  /* height: 100%; */
}

section#testimonials .tbox .testimonial-meta {
  max-height: 40px;
  gap: 1rem;
}

section#testimonials .tbox .testimonial-meta .name {
  font-size: 12px;
}

section#testimonials .tbox .testimonial-meta .post {
  color: var(--neutral-500, #6b7280);
  font-size: 10px;
}

section#testimonials .testimonials-box {
  gap: 2rem;
  justify-content: center;
}

section#testimonials .testimonials-box .tbox-section {
  justify-content: center;
  gap: 2rem;
  flex: 0 0 27.5%;
}

section#dive-in-section {
  gap: 5rem;
  align-items: center;
  background: #f3f9fd;
}

section#dive-in-section > * {
  width: 50%;
}

section#dive-in-section .content {
  gap: 1rem;
}

section#dive-in-section .content p {
  text-align: justify;
}

section#dive-in-section .content .email-section {
  gap: 1rem;
}

section#dive-in-section .content .email-input {
  width: 100%;
}

section#dive-in-section .content .cta-btn {
  border: none;
}

section#dive-in-section .content .demo-link {
  font-family: var(--primary-font);
  color: black;
  text-decoration: none;
}

section#dive-in-section .content .demo-link #orange-text {
  color: #f48535;
}

section#dive-in-section .image img {
  width: 100%;
}

section#team-section {
  gap: 2rem;
}

section#team-section p,
section#team-section h2 {
  text-align: center;
}

section#team-section > div > div {
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

section#team-section img {
  /* width: 100%; */
  height: 100%;
}

section#team-section .member {
  align-items: center;
  font-family: var(--primary-font);
}

section#team-section .member .team-member-post {
  font-size: 12px;
  color: #666e80;
}

section#team-section .member .team-member-socials {
  margin-top: 0.75rem;
  gap: 1rem;
  color: #9ca3af;
}

section#team-section .team-member-image {
  height: 100px;
  margin-bottom: 0.5rem;
}

section#contact-support {
  justify-content: space-between;
  font-family: var(--primary-font);
}

section#contact-support .section-title p {
  color: #666e80;
}

section#contact-support .section-title h2 {
  font-family: var(--primary-font);
  margin-bottom: 0.65rem;
}

section#contact-support .contact-form {
  width: 50%;
  gap: 1.75rem;
}

.submit-btn {
  max-width: 100px;
}

section#contact-support .contact-form .half-width {
  width: 50%;
}

section#contact-support .contact-form .full-width {
  width: 50%;
}

section#contact-support input,
section#contact-support textarea {
  border: none;
  border-bottom: 1px solid #d1d5db;
  width: 95%;
  padding: 0.5rem;
  margin-top: 0.15rem;
}

section#contact-support textarea {
  resize: none;
  border: 1px solid #d1d5db;
  border-radius: 0.35rem;
}

::placeholder {
  color: #98a1b3;
  font-size: 12px;
  font-family: var(--primary-font);
}
footer {
  padding: var(--gutter-padding);
  background: #0b4a6f;
}
.footer {
  color: #f7f8fa;

  
  justify-content: space-between;
  font-size: 14px;
}

/* footer>* {
    margin-bottom: 2rem;
} */

footer h3 {
  margin-bottom: 1rem;
}

ul.links-list {
  flex-direction: column;
  justify-content: stretch;
}

ul.links-list li {
  margin: 0;
  padding: 0.5rem 0;
  width: 100%;
  font-family: var(--primary-font);
}

.footer-socials {
  gap: 1rem;
}

.footer-socials i {
  font-size: 1.25rem;
}

section#pricing {
  gap: 2rem;
  align-items: center;
  background: #f3f9fd;
}

section#pricing p {
  color: #666e80;
  text-align: center;
}

.plans {
  justify-content: center;
  gap: 1rem;
}

.plan {
  background-color: #fff;
  margin: 10px;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  padding: 1rem;
  width: 20%;
  font-family: var(--primary-font);
  box-shadow: 0 0 3px #e5e7eb;
}

.plan span {
  color: #0b83d9;
  font-size: 12px;
  font-weight: bold;
}

.plan .plan-name {
  justify-content: space-between;
}

.popular-badge {
  background: #e7f3fb;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

ul.billing-type {
  background-color: white;
  border-radius: 0.25rem;
}

ul.billing-type li {
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: bold;
}

li span.minus-price {
  margin-top: -0.35rem;
  margin-left: 0.5rem;
  background: #f0fdf4;
  color: #15803d;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}

ul.billing-type li.active {
  background-color: #e7f3fb;
  color: #085c98;
}

.price {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bolder;
}

.price span {
  font-size: 10px;
  color: silver;
}

.price-caption {
  color: #bc1b06;
  font-weight: bold;
  margin-bottom: 2rem;
}

.price-hr {
  opacity: 0.3;
  color: silver;
}

.features {
  /* margin-top: 1rem; */
  list-style-type: none;
  text-align: left;
  align-items: flex-start;
  gap: 1rem;
}

.features li {
  margin: 8px;
  padding-bottom: 0.7rem;
  padding: 0;
  font-size: 14px;
}

.fas {
  margin-right: 4px;
}

.fa-check-circle {
  color: #6ab04c;
}

.fa-times-circle {
  color: silver;
}

.plan button {
  border: 1px solid var(--light-blue);
  padding: var(--link-padding);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.plan:hover {
  border: 2px solid #0b83d9;
  position: relative;
  transform: scale(1.08);
  box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
}

/* How to use page starts here */

section#intro-section {
  align-items: center;
}

.psge-heading {
  padding: var(--gutter-padding);
  background: var(--light-blue);
  border-radius: 2rem;
  text-align: center;
  color: white;
  padding-bottom: 10rem;
  width: 100%;
}

.mockup-image {
  width: 80%;
  margin-top: -7rem;
}

.mockup-image img {
  border-radius: 1rem;
  box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
}

section#choose-account {
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

section#choose-account h2 {
  color: #bc1b06;
}

section#choose-account .type-buttons {
  gap: 1rem;
  margin-bottom: 2rem;
}

section#choose-account .type-buttons button {
  border: none;
  padding: var(--link-padding);
  border: 1px solid transparent;
}

.vendor-dash-button {
  background: white;
  color: var(--cyan-bg);
  border: 1px solid var(--cyan-bg) !important;
  border-radius: 0.35rem;
}

section#choose-account h3,
section#choose-account h4,
section#choose-account h5 {
  font-family: var(--primary-font);
  margin-bottom: 0.5rem;
}

section#choose-account .mockup-image-2 {
  width: 90%;
}

section#choose-account .mockup-image-2 img {
  border-radius: 1rem;
  box-shadow: 0px 0px 4px rgba(16, 24, 40, 0.1),
    0px 2px 4px -2px rgba(16, 24, 40, 0.1),
    0px 4px 6px -1px rgba(16, 24, 40, 0.1);
}

section#features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

section#features-grid .feature {
  background: #f9fafb !important;
  align-items: center !important;
}

.feature {
  justify-content: flex-end;
  align-items: center;
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 1rem;
}

.feature .icon {
  padding: 0.35rem;
  border-radius: 0.5rem;
  background: var(--light-blue);
}

/* How to use page ends here */

/* ------------------------------------------------------------------------------ */

/* FAQS Section code starts here */

section#page-title {
  align-items: center;
  background: #ecfdff url("../newimages/newfigma/page-title-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  justify-content: center;
  color: #164c63;
  gap: 1rem;
}

section#faqs {
  gap: 1rem;
}

.accordion {
  width: 75%;
  margin: auto;
  gap: 1rem;
}



/* .accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid var(--cyan-bg);
} */

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  /* padding: 1em 0; */
  color: black;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  background: none;
  outline: none;
  font-family: var(--primary-font);
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--light-blue);
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: var(--cyan-bg);
  border: 1px solid var(--cyan-bg);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -30px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: var(--cyan-bg);
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: fit-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  font-family: var(--primary-font);
}

.accordion .accordion-content ol li {
  font-family: var(--primary-font);
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 400;
  margin: 2em 0;
  font-family: var(--primary-font);
}

section#faq-cta {
  gap: 1rem;
  align-items: center;
}

.avatar {
  width: 30px;
  border: solid white;
  border-radius: 50%;
}

#avatar1 {
  background: #abb677;
}

#avatar2 {
  background: #c7b9da;
  margin: auto -0.75rem;
  z-index: 999;
}

#avatar3 {
  background: #d4b5ad;
}

.avatar img {
  border-radius: 50%;
}

/* FAQS Section code Ends here */

/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */

/* Tools and API Connectivity Section code Starts here */

section#api-technology-desc {
  align-items: center;
  justify-content: space-between;
}

section#api-technology-desc > .desc-image-section {
  display: flex;
  justify-content: flex-end;
}

.desc-text-section {
  gap: 1rem;
  width: 50%;
}

.desc-text-section h3 {
  font-family: var(--secondary-font);
}

.desc-text-section h4 {
  font-family: var(--primary-font);
}

.desc-text-section p {
  font-size: 14px;
  color: #667085;
}

.desc-list {
  align-items: flex-start;
  border-left: solid #06aed4;
}

.desc-list li.desc-li {
  font-family: var(--primary-font);
  color: #06aed4;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.desc-text-section p.desc-extra-text {
  font-size: 1rem;
  color: #bc1b06;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

a.cta-btn {
  text-align: center;
  text-decoration: none;
}

a.package-info-link {
  padding: var(--link-padding);
  border-radius: 0.25rem;
  border: none;
  width: 100%;
  border: 1px solid #d1d5db;
  text-decoration: none;
  color: black;
}

/* Tools and API Connectivity Section code ends here */
/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */
/* Package Section code starts here */
section.package-features .feature {
  justify-content: stretch;
  align-items: flex-start;
  gap: 2rem;
}

section.package-features .feature h4 {
  font-family: var(--primary-font);
}

span#pricing_plan_page_title {
  background: #cff9fe;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-family: var(--primary-font);
}

section.package-page-hero {
  background: none !important;
  align-items: center !important;
}

section.package-page-hero h2 {
  color: black;
  font-family: var(--secondary-font) !important;
}

section.package-page-hero p {
  color: #667085 !important;
}

section.package-page-hero button {
  border-radius: 0.5rem !important;
}

section.package-page-hero .image {
  width: 40% !important;
}

section#package-details {
  background: #ecfdff;
  align-items: center;
  gap: 2rem;
  /* min-height: 300vh; */
}

section#package-details .detail-section {
  height: 100vh;
  gap: 2rem;
}

div.package-meta {
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.empty,
.package-meta {
  margin-bottom: 2rem;
  min-height: 180px;
}

div.package-meta p.package-tagline {
  font-size: 14px;
  color: #bc1b06;
}

.package-price {
  font-family: var(--primary-font);
}

.package-price span.large-text {
  font-size: 1.75rem;
  font-weight: 600;
}

h4.package-name {
  font-family: var(--primary-font);
}

.feature-title,
.availability-box {
  height: 50px;
  background: white;
  padding: 0.5rem;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  width: 200px;
  font-family: var(--primary-font);
}

.details-sect .purchase-button {
  border: solid;
  background: white;
  padding: 0.25rem 1.35rem;
  border-radius: 0.25rem;
  color: #06aed4;
}

.details-sect .purchase-button:hover {
  border: solid;
  background: #06aed4;
  color: white;
  border-color: #06aed4;
}

.fa-xmark {
  color: #f04438;
}

.fa-check {
  color: #22c55e;
}

/* Package Section code ends here */
/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */
/* Login type code starts here */
section#select-one {
  gap: 1rem;
}

section#select-one > * {
  border-radius: 1rem;
}

section#select-one h3 {
  color: white;
  font-size: 1.5rem;
}

.free {
  background: #088ab2;
}

.free button {
  color: #088ab2;
}

.scale-up {
  background: #bc1b06;
}

.free,
.scale-up {
  justify-content: space-between;
}

.scale-up button {
  color: #bc1b06;
}

.select-login {
  padding: 0.75rem;
  background: white;
  color: transparent;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
}

.cta-text button.select-login > a {
  text-decoration: none !important;
  color: inherit !important;
}

.vector {
  width: 40%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
}

.cta-text {
  width: 60%;
  justify-content: space-evenly;
}

.free .cta-text {
  align-items: flex-start;
}

.free .vector {
  background: #6fc6e6;
  border-radius: 0 1rem 1rem 0;
}

.scale-up .cta-text {
  align-items: flex-end;
}

.scale-up .vector {
  background: #ffcac2;
  border-radius: 1rem 0 0 1rem;
}

.or-section {
  align-items: center;
  justify-content: space-evenly;
}

.or-text {
  font-weight: 600;
  font-size: 1.5rem;
  color: #475467;
}

.line {
  height: 1px;
  width: 45%;
  background-color: black;
}

.scale-up .cta-text h3 {
  text-align: right;
}

.privacy-box {
  justify-content: space-between;
  font-size: 14px;
}

.privacy-box .forgot-password-link {
  color: #666e80;
  font-family: var(--primary-font);
  text-decoration: none;
}

/* Login type code ends here */
/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */
/* Vendor Sign Up code starts here */
section#main-form-container {
  justify-content: space-between;
  padding: 0;
}

section#main-form-container .left-section {
  background: #ffcac2;
  width: 45%;
}

.left-section,
.right-section {
  justify-content: stretch;
  align-items: center;
  padding: 3rem 0;
  gap: 1.5rem;
}

section#main-form-container .right-section {
  background: white;
  width: 55%;
}

section#main-form-container .left-section ul {
  align-items: flex-start;
  list-style: disc;
  list-style-position: inside;
}

section#main-form-container .left-section ul li {
  padding: 0;
  font-family: var(--primary-font);
}

.social-sign-up {
  gap: 0.75rem;
}

.right-section .option {
  align-items: center;
  padding: 0.5rem 1rem;
  box-shadow: 0px 0px 2px #d1d5db;
  gap: 0.35rem;
  border-radius: 0.35rem;
  font-family: var(--primary-font);
}

.right-section .option:hover {
  background: #eaecef;
  cursor: pointer;
}

.right-section h4 {
  font-family: var(--primary-font);
}

.right-section .line {
  width: 65px;
  background: #d1d5db;
}

.right-section .or-text {
  color: #666e80;
  font-size: 14px;
  font-weight: normal;
  margin: auto 10px;
}

.form-box {
  width: 55%;
}

.right-section p {
  /* width: 55%; */
  text-align: center;
  color: #17181a;
}

.form-box form {
  gap: 1.5rem;
}

.input-box {
  border: 1px solid #98a1b3;
  gap: 1rem;
  padding: 0.5rem;
  box-shadow: 0px 1px 2px -1px rgba(16, 24, 40, 0.1),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
  border-radius: 0.35rem;
  align-items: center;
}

.input-box i {
  color: #98a1b3;
}

.input-box input {
  display: inline-block;
  width: 100%;
  font-size: 1.25rem;
  padding: 0.1rem;
  border: none;
}

.input-box input:focus {
  outline: none;
}

.input-box input::placeholder {
  font-size: 1rem;
  font-family: var(--primary-font);
}

.check {
  gap: 0.75rem;
}

.check p {
  color: #98a1b3;
}

.check a {
  margin-left: 0.15rem;
  color: #0b83d9;
}

.submit-btn-box input[type="submit"] {
  display: inline-block;
  width: 100%;
}

.login-link p {
  /* color: black; */
  color: var(--Neutral-20, #666E80);
  font-size: 14px;
}

.login-link a {
  color: #0b83d9;
}

.vendor-form .left-section {
  order: 2;
  background: #088ab2 !important;
  justify-content: space-around;
}

.vendor-form .left-section h3 {
  color: #ecfdff;
  font-size: 1.5rem;
}

/* Vendor Sign Up code ends here */
/* ------------------------------------------------------------------------------ */

.upper-footer,
.lower-footer {
  justify-content: space-between;
}

.lower-footer {
  font-family: var(--primary-font);
}

/* ---------------------- FAQ PAGE CSS ----------------------- */

.faq-title{
  color: var(--Cyan-900, #164C63);
  text-align: center;
  font-family: Playfair Display;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 50px;
}
.faq-sub-title{
  color: var(--Cyan-700, #0E7090);
  text-align: center;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.accordion .accordion-item {
  padding: 25px 0px;
  border: 0;
  background-color: transparent !important;
  border-bottom: 1px solid var(--cyan-bg);
}

/* ---------------------- END FAQ CSS ----------------------- */


/* ------------- free vendor signup page ---------------- */

  .free-vendor-signup-title
  {
    color: var(--Base-Black, #000);
    font-family: Lato;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 133.333% */
    letter-spacing: 1.44px;
  }
  ul.vertical-flex.vendor-signup-ul {
    color: var(--Neutral-10, #17181A);
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    /* height: 35%; */
  }
  .vendor-register-form-title{
    color: var(--Neutral-10, #17181A);
    text-align: center;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
  }
/* ---------------- free vendor signup page end ---------- */

@media only screen and (min-width: 1092px) {
  :root {
    --gutter-padding: 1.5rem 10rem;
  }
}

@media only screen and (max-width: 992px) {
  :root {
    --gutter-padding: 1.5rem 2.5rem;
  }

  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }

  section#hero .content {
    width: 80%;
  }

  section#features-section .features {
    grid-template-columns: 1fr;
  }

  section#dive-in-section,
  section#hero,
  section#api-technology-desc,
  section#contact-support,
  section#testimonials .testimonials-box,
  section#main-form-container,
  section#new-upcoming .image-section,
  section#pricing .plans {
    flex-direction: column-reverse;
  }

  section#dive-in-section > *,
  section#api-technology-desc > *,
  section#contact-support .contact-form,
  section#main-form-container > .left-section,
  section#main-form-container > .right-section,
  section#hero .image,
  section#new-upcoming .image-section > *,
  section#pricing .plans .plan {
    width: 100%;
  }

  section#api-technology-desc {
    gap: 2rem;
  }

  footer {
    flex-wrap: wrap;
  }

  footer > * {
    width: 50%;
  }

  section#page-title {
    background-size: 140%;
  }

  section#package-details {
    overflow: scroll;
    align-items: flex-start;
    position: relative;
  }

  #sect0 {
    position: sticky;
    left: -40px;
    top: 0;
    background: white;
  }

  .vector img {
    width: 100%;
  }

  section#new-upcoming .image-section .desc-image-section {
    justify-content: center;
  }
}

@media only screen and (max-width: 576px) {
  :root {
    --gutter-padding: 1.5rem;
  }

  .mobile-hero {
    display: flex;
  }

  .mobile-hero .content {
    align-items: center;
    width: 100% !important;
  }

  .mobile-hero .actions {
    margin: auto;
  }

  .mobile-hero button {
    padding: 0.5rem 2rem;
  }

  .desktop-hero {
    display: none;
  }

  footer > * {
    width: 100%;
  }

  .free,
  .scale-up {
    flex-direction: column;
    padding: 0;
    gap: 2rem;
  }

  .free .vector {
    border-radius: 0 0 1rem 1rem;
  }

  .scale-up .vector {
    border-radius: 1rem 1rem 0 0;
  }

  .free > *,
  .scale-up > * {
    width: 100%;
  }

  .free .cta-text {
    padding-top: 2rem;
    gap: 1rem;
    align-items: flex-start;
  }

  .scale-up .cta-text {
    padding-bottom: 2rem;
    gap: 1rem;
  }

  section#hero button {
    padding: 1rem 1.5rem;
  }
}
