* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-clr: #131313;
  --secondary-clr: #30c6cc;
  --primary-font: "Playfair Display";
  --secondary-font: "Cera Pro";
  --dark-clr: #171e35;
  --spacer: 60px;
}

html,
body {
  overflow-x: hidden !important;
  padding-right: 0px !important;
}

/* Scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c1c1c1;
}

/* Scrollbar css end */

a {
  text-decoration: none;
}

.spacer {
  padding: var(--spacer);
}

.spacer-y {
  padding: var(--spacer) 0px;
}

.spacer-t {
  padding-top: var(--spacer);
}

.spacer-b {
  padding-bottom: var(--spacer);
}

.p-relative {
  position: relative;
  z-index: 1;
}

.theme-clr {
  color: var(--secondary-clr);
}

input::placeholder {
  font-style: italic;
}

.bg-grey {
  background: rgba(241, 241, 241, 0.69);
}

.bg-secondary-clr {
  background: var(--secondary-clr);
}

.bg-dark-clr {
  background: var(--dark-clr);
}

.ps-150 {
  padding-left: 150px;
}

.mb-90 {
  margin-bottom: 90px;
}

h1,
.h1 {
  font-size: 48px;
  font-family: var(--primary-font);
}

h2,
.h2 {
  font-size: 30px;
  font-family: var(--primary-font);
}

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

input:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: #eee !important;
}

img {
  max-width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 5;
  transition: all 0.2s ease-in-out;
}

header.bg-header {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}

header.bg-header::before {
  background: linear-gradient(180deg, #fff, #ffffffb8);
  backdrop-filter: blur(4px);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}

header.bg-header .header-wrapper {
  padding: 15px 0px 15px;
  transition: all 0.2s ease-in-out;
}

header.bg-header .logo-blk {
  width: 180px;
  transition: all 0.2s ease-in-out;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0px;
}

.logo-blk {
  width: 382px;
  position: relative;
  z-index: 1;
}

.logo-blk a {
  width: 100%;
  display: block;
}

.logo-blk a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-contact-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 48px;
}

ul.header-contact-inner {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 48px;
}

ul.social-link-list-wrap {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.menu-btn-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: 90px;
}

.btn-box {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 25px;
  background: transparent;
  border: 0px;
  justify-content: space-between;
  transition: transform 0.33s ease-out;
}

.btn_bar {
  background-color: #000;
  border-radius: 10px;
  height: 3px;
  width: 100%;
}

.btn_bar.btn_width {
  width: 50%;
}

.btn_bar.top {
  transform-origin: right;
  transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn_bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn-box.active {
  transform: rotate(-45deg);
}

.active .btn_bar.top {
  background-color: #000;
  transform: rotate(-90deg) translateX(4px);
}

.active .btn_bar.bottom {
  background-color: #000;
  transform: rotate(-90deg) translateX(-4px);
}

.menu-inner-wrapper ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  cursor: pointer;
}

a.page-links {
  font-size: 19px;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

a.page-links:hover,
a.page-links.active {
  color: var(--secondary-clr);
}

section.hero-section {
  width: 100%;
  height: 959px;
  padding: 145px 0px 60px;
  position: relative;
  z-index: 1;
  background: url(../images/hero-banner.png), url(../images/banner-layer-1.png);
  background-repeat: no-repeat;
  background-size: contain, cover;
  background-position: bottom right;
}

.hero-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.heading-blk h1 {
  font-size: 78px;
  letter-spacing: 0.78px;
  margin-bottom: 0px;
  color: var(--primary-clr);
}

.heading-blk p {
  font-size: 25px;
  color: var(--primary-clr);
  font-family: var(--secondary-font);
  letter-spacing: 1.75px;
  line-height: 40px;
  margin-bottom: 0px;
}

.app-btn-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 43px;
}

a.app-link {
  width: 289px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}

a.app-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.trusted-ppl-blk {
  width: 33%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
  padding: 43px 0px 0px 0px;
  border-top: 1px solid rgb(112 112 112 / 15%);
  /* margin-right: 160px; */
  position: absolute;
  content: "";
  bottom: 35px;
}

ul.trusted-img-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

p.trusted-text {
  font-size: 25px;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 500;
}

p.trusted-text span {
  font-weight: 700;
}

ul.trusted-img-blk li {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  border: 3px solid #e6f3f5;
  position: relative;
}

ul.trusted-img-blk li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul.trusted-img-blk li:not(:first-child) {
  margin-left: -30px;
}

ul.trusted-img-blk li:nth-child(1) {
  z-index: 1;
}

ul.trusted-img-blk li:nth-child(2) {
  z-index: -1;
}

ul.trusted-img-blk li:nth-child(3) {
  z-index: -2;
}

ul.trusted-img-blk li:nth-child(4) {
  z-index: -3;
}

section.feature-section {
  padding: 30px 0px 30px;
  background: var(--dark-clr);
}
.featured-heading h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--secondary-font);
  color: #fff;
  margin-bottom: 0px;
}
.feature-logo-list ul {
  list-style: none;
  padding-left: 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 10px;
  margin-bottom: 0px;
}
.feature-logo-list ul li img {
  width: 180px;
  height: 50px;
  object-fit: scale-down;
}

section.content-section {
  padding: 100px 0px;
}

.content-blk h2 {
  font-size: 48px;
  color: var(--primary-font);
  margin-bottom: 40px;
  line-height: 68px;
  letter-spacing: 0.48px;
}

.content-blk p {
  font-size: 20px;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  line-height: 40px;
  letter-spacing: 0.2px;
  text-align: left;
}

.img-wrapper {
  width: 100%;
  max-height: 610px;
  border-radius: 48px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
}

.innovative-section {
  padding: 84px 0px 100px;
  position: relative;
  z-index: 1;
  background: url(../images/banner-layer-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.innovative-section::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: 545px;
  height: 680px;
  background: url(../images/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: -1;
}

section.pricing-section {
  padding: 72px 0px 97px;
  background: url(../images/banner-layer-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.heading-blk {
  margin-bottom: 40px;
}

.heading-blk h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 0px;
  color: var(--primary-clr);
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card-wrapper .pricing-card {
  flex-basis: 31%;
}

.pricing-card {
  border: 1px solid #70707033;
  border-radius: 30px;
  background: #fff;
}

.pricing-card-header {
  text-align: center;
  padding: 20px;
  border-radius: 30px 30px 0px 0px;
  border-bottom: 1px solid #70707033;
}

.pricing-card-header h3 {
  font-size: 30px;
  font-family: var(--secondary-font);
  font-weight: 700;
  color: var(--dark-clr);
  text-transform: uppercase;
  margin-bottom: 0px;
}

.pricing-card-body {
  padding: 24px 0px 10px 0px;
  height: 480px;
}

.price-blk {
  padding: 0px 20px 24px 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-card .price-blk {
  border-bottom: 1px solid #70707033;
  height: 144px;
}

.plan-feature-detail {
  padding: 0px 20px 0px 30px;
}

span.amount {
  font-size: 70px;
  font-family: var(--secondary-font);
  font-weight: 700;
  color: var(--dark-clr);
  line-height: normal;
  letter-spacing: 1.3px;
}

span.amount sup span {
  margin-left: 5px;
}

span.amount sup span.float-num {
  font-size: 35px;
  letter-spacing: 0.7px;
  font-style: italic;
  font-weight: 400;
}

span.plan-period {
  display: inline-block;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-style: italic;
  color: #707070;
  text-transform: capitalize;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 105px;
}

span.f-month {
  font-size: 20px;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 500;
  display: block;
  color: #ff0000;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  padding-left: 25px;
}

span.select-price-field input {
  display: none;
}

span.select-price-field input + label {
  cursor: pointer;
}

span.select-price-field input + label span.radio-circle {
  width: 14px;
  height: 14px;
  border: 1px solid var(--dark-clr);
  display: inline-flex;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-right: 5px;
}

span.select-price-field input + label span.radio-circle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: transparent;
  transform: translate(-50%, -50%);
}

span.select-price-field input:checked + label span.radio-circle::before {
  background: var(--dark-clr);
}

span.offer-price {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--dark-clr);
}

/* .select-price:nth-child(2) span.offer-price {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--secondary-font);
  color: #B2B2B2;
  letter-spacing: 0.36px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.select-price:nth-child(2) span.offer-price::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #ff0000;
  transform: translate(-50% , -50%);
} */

.select-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

span.amount-wrapper {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.actual-amount-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

span.actual-amount {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--secondary-font);
  color: #b2b2b2;
  letter-spacing: 0.36px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

span.actual-amount::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #ff0000;
  transform: translate(-50%, -50%);
}

span.select-period {
  font-size: 19px;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--dark-clr);
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

span.every-text {
  display: block;
  font-size: 18px;
  font-family: var(--secondary-font);
  color: var(--secondary-clr);
  margin-bottom: 20px;
}

ul.card-feature-list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

ul.card-feature-list li {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-family: var(--secondary-font);
  color: #262626;
  padding-left: 28px;
}

ul.card-feature-list li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 14px;
  height: 11px;
  background: url(../images/check-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul.card-feature-list li {
  margin-bottom: 25px;
}

span.card-feature-info {
  display: block;
  font-size: 16px;
  color: #676767;
}

.pricing-card-footer {
  border-radius: 0px 0px 30px 30px;
}

.pricing-card-btn {
  padding: 22px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 0px 0px 30px 30px;
  color: #fff;
  font-size: 24px;
  font-family: var(--secondary-font);
  letter-spacing: 0.48px;
  gap: 18px;
  line-height: normal;
}

.pricing-card-btn i {
  color: #fff;
  font-size: 18px;
}

span.trial-text {
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 300;
  text-align: end;
}

section.vision-section {
  padding: 90px 0px;
}

.vision-blk {
  border-radius: 44px;
}

.vision-img-wrapper {
  width: 100%;
  max-height: 555px;
  border-radius: 44px;
}

.vision-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44px;
}

.vision-blk h2 {
  font-size: 48px;
  font-family: var(--primary-font);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-clr);
}

.vision-blk p {
  font-size: 20px;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  margin-bottom: 0px;
}

section.guide-section {
  padding: 70px 0px 90px;
  background: url(../images/banner-layer-3.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.guide-wrap {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.guide-wrap::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0px;
  height: 90%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed #707070;
}

.grid-position {
  position: relative;
  z-index: 1;
}

.grid-position::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid var(--secondary-clr);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.grid-position::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--dark-clr);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.guide-wrap .row:first-child {
  margin-bottom: 65px;
}

.guide-img-blk {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.guide-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

span.heading-style {
  position: relative;
  z-index: 1;
  font-size: 19px;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: 6.46px;
  color: var(--secondary-clr);
  display: inline-block;
  margin-bottom: 20px;
}

span.heading-style::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -68px;
  width: 58px;
  height: 2px;
  background: var(--secondary-clr);
  transform: translateY(-50%);
}

section.features-section {
  padding: 70px 0px;
}

.features-blk {
  margin-bottom: 40px;
}

.features-blk h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--primary-font);
  color: var(--primary-clr);
  margin-bottom: 0px;
  text-align: center;
  text-transform: capitalize;
}

.feature-card {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.feature-card:not(:last-child) {
  margin-bottom: 30px;
}

.feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-card-img {
  max-width: 665px;
  width: 100%;
  height: 542px;
  border-radius: 60px;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
}

.feature-card-inner {
  max-width: calc(100% - 695px);
  width: 100%;
}

.feature-card-inner h3 {
  font-size: 35px;
  font-family: var(--secondary-font);
  font-weight: 700;
  color: var(--primary-clr);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-card-inner p {
  font-size: 18px;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  line-height: 28px;
  margin-bottom: 0px;
}

section.compare-section {
  padding: 90px 0px;
  margin-bottom: 80px;
}

.compare-wrapper {
  border: 1px solid #70707036;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: end;
}

.compare-wrapper table {
  width: 100%;
  border-radius: 30px;
}

.compare-wrapper table th {
  padding: 26px;
  text-align: center;
}

.compare-wrapper table th {
  border: 1px solid rgb(112 112 112 / 10%);
}

.compare-wrapper table th:first-child {
  width: 20%;
}

.compare-wrapper table th:first-child ~ th {
  width: 26%;
}

.compare-wrapper table td {
  border: 1px solid rgb(112 112 112 / 10%);
  padding: 20px 50px;
  font-size: 20px;
  font-family: var(--secondary-font);
  color: #262626;
  text-transform: capitalize;
  font-weight: 500;
  white-space: nowrap;
}

.compare-wrapper table tbody tr:first-child td {
  vertical-align: text-bottom;
}

.compare-wrapper table td:not(:first-child) {
  text-align: center;
}

td .fa-check {
  color: #02be15;
}

td .fa-xmark {
  color: red;
}

span.plan-heading-free {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  color: var(--dark-clr);
  white-space: nowrap;
}

span.plan-heading-basic,
span.plan-heading-pre {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  padding: 9px 55px;
  border-radius: 30px;
}

span.plan-heading-basic {
  color: var(--secondary-clr);
  border: 2px solid var(--secondary-clr);
}

span.plan-heading-pre {
  color: var(--dark-clr);
  border: 2px solid var(--dark-clr);
}

span.plan-amount {
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #262626;
  line-height: normal;
}

span.saving-txt {
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: #6b6b6b;
}

thead tr:first-child th:first-child,
thead tr:first-child th:last-child,
tbody tr:last-child td:first-child,
tbody tr:last-child td:last-child {
  border-radius: 30px;
  border: 0px;
}

tbody tr:last-child td:nth-last-child(1),
tbody tr:last-child td:nth-last-child(2) {
  position: relative;
  z-index: 1;
}

tr {
  position: relative;
}

.get-basic {
  position: absolute;
  top: 100%;
  left: 77%;
  width: 100%;
  max-width: 230px;
  padding: 12px 30px;
  background: var(--secondary-clr);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  border-radius: 0px 0px 30px 30px;
  transform: translateX(-50%);
  border: none;
}

.get-premium {
  position: absolute;
  top: 100%;
  left: 77%;
  width: 100%;
  max-width: 230px;
  padding: 12px 30px;
  background: var(--secondary-clr);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  border-radius: 0px 0px 30px 30px;
  transform: translateX(-50%);
  border: none;
}

tbody tr:last-child td {
  position: relative;
  z-index: 1;
}

tbody tr:last-child td :where(.get-free, .get-basic, .get-pre) {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  width: calc(100% - 100px);
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  border-radius: 0px 0px 30px 30px;
  transform: translateX(-50%);
  border: 0px;
  text-transform: capitalize;
}

tbody tr:last-child td .table-btn-position.get-free {
  background: #626769;
}

tbody tr:last-child td .table-btn-position.get-basic {
  background: var(--secondary-clr);
}

tbody tr:last-child td .table-btn-position.get-pre {
  background: var(--dark-clr);
}

/* tbody tr:last-child td:nth-last-child(1)::before {
  position: absolute;
  content: "Get premium";
  top: 100%;
  left: 50%;
  width: calc(100% - 100px);
  padding: 12px 30px;
  background: var(--dark-clr);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  border-radius: 0px 0px 30px 30px;
  transform: translateX(-50%);
}

tbody tr:last-child td:nth-last-child(2)::before {
  position: absolute;
  content: "Get basic";
  top: 100%;
  left: 50%;
  width: calc(100% - 100px);
  padding: 12px 30px;
  background: var(--secondary-clr);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  border-radius: 0px 0px 30px 30px;
  transform: translateX(-50%);
} */

section.faq-section {
  padding: 70px 0px;
  background: url(../images/banner-layer-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

section.faq-section .heading-blk {
  margin-bottom: 62px;
}

section.faq-section .accordion {
  background: transparent !important;
}

.faq-wrapper button {
  background: transparent !important;
  font-size: 25px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  padding: 28px 0px;
}

.faq-wrapper button:focus {
  box-shadow: none !important;
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: transparent;
  border-radius: 0px;
  color: var(--primary-clr);
  box-shadow: none !important;
}

.faq-wrapper .accordion-item {
  border-width: 1px 0px;
  background: transparent !important;
}

.accordion-item:first-child {
  border-width: 0px 0px 1px;
}

.accordion-item:last-child {
  border-width: 1px 0px 0px;
}

.faq-wrapper .accordion-body {
  padding: 0px 0px 30px;
  background: transparent !important;
}

.accordion-body p {
  font-size: 18px;
  font-family: var(--secondary-font);
  line-height: 30px;
  color: var(--primary-clr);
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  background: url(../images/minus-circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.faq-wrapper .accordion-button::after {
  background: url(../images/plus-circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Footer CSS Start */

.footer-container {
  display: flex;
  justify-content: flex-start;
}

.footer-navigation {
  width: 50%;
  background: var(--dark-clr);
}

.footer-navigation-inner {
  width: 100%;
  padding: 47px 60px 0px 148px;
  background: var(--dark-clr);
}

.footer-contact {
  width: 50%;
  padding: 47px 90px 75px;
  background: #252b41;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-blk {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 75px;
}

.footer-logo {
  width: 417px;
  height: 75px;
  margin-bottom: 50px;
}

.footer-logo a {
  display: block;
}

.footer-logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul.page-links-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

ul.navigation-links-blk,
ul.social-links-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

ul.navigation-links-blk {
  gap: 60px;
  margin-bottom: 35px;
}

ul.social-links-blk {
  gap: 15px;
}

ul.page-links-blk li:not(:last-child) {
  margin-bottom: 20px;
}

span.footer-heading {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  display: block;
  margin-bottom: 24px;
  text-transform: uppercase;
}

a.pages-link {
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 300;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

a.pages-link i {
  font-size: 14px;
  color: var(--secondary-clr);
  margin-right: 10px;
}

a.pages-link:hover,
a.pages-link.active {
  color: var(--secondary-clr);
}

.copyright-blk {
  width: 100%;
  padding: 15px 60px 15px 148px;
  border-top: 1px solid #343b54;
  margin-top: 57px;
}

.copyright-blk p {
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 0px;
}

.contact-form h2 {
  font-size: 30px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.contact-form .form-control {
  padding: 16px 20px;
  border-radius: 33px;
  background: #252b41;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--secondary-font);
  color: #fff;
}

.contact-form .form-control::placeholder {
  color: #fff;
}

.send-btn-blk {
  display: flex;
  justify-content: center;
}

button.send-message-btn {
  border: 0px;
  padding: 15px 86px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  text-transform: uppercase;
}

/* Footer css end */
/* section.rich-text {
  padding: 40px 0px;
} */

/* .rich-content h2 {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--secondary-font);
    font-style: italic;
    text-align: center;
    color: #525252;
    line-height: 40px;
} */

.rich-content h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--secondary-font);
  font-style: italic;
  text-align: center;
  color: #525252;
  margin-bottom: 0px;
}

.rich-content h2:nth-child(2) {
  margin-top: 72px;
}

/* Modal css start */

.common-modal .modal-dialog {
  max-width: 770px;
}

.common-modal .modal-content {
  border-radius: 20px;
}

.common-wrapper button.btn-close {
  position: absolute;
  content: "";
  top: 10px;
  right: 10px;
  font-size: 14px;
  opacity: 1;
}

.form-header {
  padding: 40px 20px 20px;
}

.form-header h2 {
  font-size: 24px !important;
  font-weight: 600;
  font-family: var(--secondary-font);
  text-align: center;
  color: var(--primary-clr);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-align: center;
  width: 65%;
  margin: 0 auto;
}

.form-header span {
  text-align: center;
  display: block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.question-blk {
  margin-top: 18px;
}

.question-blk h2 {
  font-size: 14px !important;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-align: left;
  color: var(--primary-clr);
  margin-bottom: 12px;
}

.signup-form-blk {
  padding: 20px 30px;
  border: 1px solid #eee;
  border-width: 1px 0px;
}

.signup-fields label {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-transform: capitalize;
  color: var(--primary-clr);
  margin-bottom: 2px;
  padding-left: 5px;
}

.signup-fields input,
.question-fields input {
  border: 1px solid #e3e3e3;
  border-radius: 40px;
  font-size: 14px;
  padding: 10px 15px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
}

.signup-fields input::placeholder,
.question-fields input::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--secondary-font);
  /* text-transform: capitalize; */
  color: #c3c3c3;
}

.select-feature-blk {
  margin: 18px 0px;
}

.select-feature-blk h2 {
  font-size: 20px !important;
  font-weight: 600;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  margin-bottom: 0px;
}

.featureslist {
  display: flex;
  justify-content: space-between;
  gap: 15px 50px;
  flex-wrap: wrap;
  margin: 20px 0px;
}

.features-list-item {
  flex-basis: 46%;
}

.features-list-item input {
  display: none;
}

.features-list-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

span.feature-heading {
  width: calc(100% - 30px);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  line-height: normal;
  text-transform: lowercase;
}

span.feature-heading:first-letter {
  text-transform: capitalize;
}

span.feature-check {
  width: 15px;
  height: 15px;
  border: 1px solid #c7c7c7;
  display: inline-block;
  border-radius: 20px;
  margin-right: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.features-list-item input:checked + label span.feature-check::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: var(--secondary-clr);
  transition: all 0.5s ease;
}

.features-list-item input:checked + label span.feature-check::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border: 2px solid #fff;
  border-width: 0px 0px 2px 2px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s ease;
}

.signup-form-btn {
  display: flex;
  justify-content: flex-end;
  padding: 10px 30px;
}

button.signup-submit-btn {
  padding: 5px 30px;
  border: 0px;
  background: var(--secondary-clr);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  border-radius: 40px;
  text-transform: capitalize;
}

.Congratulation-wrapper {
  padding: 40px;
}

.congrats-img {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px;
}

.congrats-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Congratulation-wrapper h2 {
  font-size: 28px !important;
  font-weight: 600;
  font-family: var(--secondary-font);
  text-align: center;
  margin-bottom: 15px;
}

.Congratulation-wrapper p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--secondary-font);
  line-height: normal;
  text-align: center;
  margin-bottom: 0px;
}

input#others {
  padding-right: 60px;
}

button.addfeatures {
  position: absolute;
  content: "";
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  border: 0px;
  background: #fff;
  padding: 7px 14px;
  border-radius: 0px 20px 20px 0px;
  color: var(--secondary-clr);
  font-weight: 500;
}

.append-block {
  margin-bottom: 10px;
}

ul.appendlist-wrapper {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

li.appendlist {
  background: #1a1d34;
  border-radius: 20px;
  padding: 4px 8px 4px 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

button.removefeature {
  width: 15px;
  height: 15px;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
}

span.addedfeatuire {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #fff;
  width: calc(100% - 25px);
}

.text-title {
  display: flex;
  justify-content: flex-end;
  margin: 3px;
  font-size: 13px;
  font-weight: 400;
  font-family: "Cera Pro";
}

.go2072408551 {
  max-width: 750px !important;
  padding: 10px !important;
  margin: 0 auto !important;
}

.modal-heading {
  font-size: 20px !important;
  font-weight: 600;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  margin-bottom: 0px;
}

/* Modal css end */

/* Founder css start */

.founder-blk {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 60px;
}
.founder-card {
  width: 270px;
  /* height: 100%; */
  border-radius: 50px 0px 50px 0px;
  background: #dee2ed;
}
.founder-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 50px 0px 50px 0px;
}
.founder-detail {
  padding: 15px 20px 15px;
}
.founder-detail h2 {
  font-size: 18px !important;
  color: #252b41;
  margin-bottom: 5px;
}
.founder-detail p {
  font-size: 14px !important;
  font-weight: 500;
  color: #252b41;
  margin-bottom: 0px;
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  .founder-blk {
    gap: 15px;
  }
  .founder-detail h2 {
    font-size: 18px !important;
  }
  .founder-card {
    width: 50%;
  }
  .founder-card img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .founder-blk {
    gap: 15px;
  }
  .founder-detail h2 {
    font-size: 18px !important;
  }
  .founder-card {
    width: 50%;
  }
  .founder-card img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 576px) {
  .founder-blk {
    gap: 10px;
  }
  .founder-detail h2 {
    font-size: 15px !important;
  }
  .founder-card {
    width: 50%;
  }
  .founder-card img {
    width: 100%;
    height: 250px;
  }
}

/* Founder css end */

@media screen and (min-width: 1700px) {
  .container {
    max-width: 1640px;
  }
}

@media screen and (max-width: 1440px) {
  tbody tr:last-child td :where(.get-free, .get-basic, .get-pre) {
    width: calc(100% - 50px) !important;
    padding: 10px 20px !important;
    font-size: 14px;
  }
  .featured-heading h2 {
    font-size: 24px !important;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1700px) {
  .container {
    max-width: 90%;
  }

  span.amount {
    font-size: 52px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
  .featured-heading h2 {
    text-align: center;
    font-size: 28px !important;
  }
}

@media screen and (max-width: 1046px) {
  tbody tr:last-child td :where(.get-free, .get-basic, .get-pre) {
    width: calc(100% - 50px) !important;
  }
  .featured-heading h2 {
    text-align: center;
    font-size: 28px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1440px) {
  .logo-blk {
    width: 220px;
  }

  .menu-inner-wrapper ul {
    gap: 25px;
  }

  section.hero-section {
    height: 100%;
  }

  a.page-links {
    font-size: 18px;
  }

  .heading-blk h1 {
    font-size: 48px;
  }

  a.app-link {
    width: 220px;
  }

  .trusted-ppl-blk {
    width: 75%;
  }

  h2 {
    font-size: 36px !important;
  }

  .rich-content h2 {
    font-size: 25px !important;
  }

  .content-blk p {
    font-size: 18px;
    line-height: 30px;
  }

  .content-blk h2 {
    line-height: 42px;
  }

  .feature-card-img {
    max-width: 490px;
    width: 100%;
    height: 400px;
  }

  .feature-card-inner {
    max-width: calc(100% - 520px);
    width: 100%;
  }

  .pricing-card-wrapper .pricing-card {
    flex-basis: 48%;
  }

  .compare-wrapper table td {
    padding: 20px 15px;
  }

  tbody tr:last-child td:nth-last-child(2)::before,
  tbody tr:last-child td:nth-last-child(1)::before {
    padding: 10px 20px;
    font-size: 16px;
  }

  span.plan-heading-basic,
  span.plan-heading-pre {
    font-size: 18px;
    padding: 9px 30px;
  }

  span.plan-heading-free {
    font-size: 18px;
  }

  .footer-logo {
    width: 250px;
    height: 50px;
  }

  .footer-navigation-inner {
    padding: 47px 40px 0px 40px;
  }

  .copyright-blk {
    padding: 15px 40px 15px 40px;
  }

  .footer-contact {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 991px) {
  .menu-inner-wrapper {
    display: none;
  }

  .menu-inner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #fcfcfc;
    transition: all 0.5s ease-in-out;
  }

  .menu-inner-wrapper.show {
    height: 100vh;
    display: flex !important;
    justify-content: center !important;
    align-content: center !important;
  }

  .menu-inner-wrapper.show ul {
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 25px;
  }

  .logo-blk {
    width: 220px;
  }

  h2 {
    font-size: 36px !important;
    line-height: normal !important;
  }

  .rich-content h2 {
    font-size: 22px !important;
  }

  section.hero-section {
    height: 100%;
  }

  .heading-blk h1 {
    font-size: 42px;
    text-align: center;
  }

  .app-btn-blk {
    justify-content: center;
  }

  a.app-link {
    width: 160px;
  }

  .trusted-ppl-blk {
    width: 100%;
    flex-direction: column;
    position: static;
    margin-top: 35px;
    padding-top: 35px;
  }

  p.trusted-text {
    text-align: center;
  }

  .hero-img-blk {
    text-align: center;
  }

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

  .innovative-section::before {
    width: 100%;
    height: 100%;
  }

  .innov-img-wrapper {
    text-align: center;
  }

  .guide-wrap::before,
  .grid-position::before,
  .grid-position::after {
    display: none;
  }

  .compare-wrapper table {
    width: 100%;
    border-radius: 30px;
    overflow: auto;
  }

  .compare-wrapper table td {
    padding: 20px 15px;
  }

  span.plan-heading-basic,
  span.plan-heading-pre {
    font-size: 18px;
    padding: 9px 30px;
  }

  span.plan-heading-free {
    font-size: 18px;
  }

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

  span.plan-amount {
    font-size: 24px;
  }

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

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

  .faq-wrapper button {
    font-size: 20px;
  }

  .footer-container {
    flex-direction: column-reverse;
  }

  .footer-navigation,
  .footer-contact {
    width: 100%;
  }

  .footer-contact {
    padding: 45px 20px 75px;
  }

  button.send-message-btn {
    padding: 15px 60px;
  }

  .footer-navigation-inner {
    padding: 47px 20px 0px 20px;
  }

  .footer-blk {
    gap: 100px;
  }

  .footer-logo {
    width: 250px;
    height: 50px;
    margin-bottom: 30px;
  }

  .copyright-blk {
    padding: 15px 20px 15px 20px;
  }

  tbody tr:last-child td :where(.get-free, .get-basic, .get-pre) {
    width: calc(100% - 50px) !important;
    padding: 10px 20px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
  .compare-wrapper {
    border-radius: 20px;
  }

  tbody tr:last-child td :where(.get-free, .get-basic, .get-pre) {
    width: calc(100% - 40px) !important;
    padding: 10px 5px !important;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .container {
    max-width: 100%;
  }

  /* tbody tr:last-child td:nth-last-child(2)::before,
  tbody tr:last-child td:nth-last-child(1)::before {
    display: block;
  } */

  tbody tr:last-child td:nth-last-child(2)::before,
  tbody tr:last-child td:nth-last-child(1)::before {
    padding: 10px 20px;
    font-size: 16px;
    width: calc(100% - 40px);
  }

  .feature-card-img {
    max-width: 390px;
    width: 100%;
    height: 375px;
  }

  .feature-card-inner {
    max-width: calc(100% - 420px);
    width: 100%;
  }

  .feature-card-inner h3 {
    font-size: 24px;
  }

  .feature-card-inner p {
    font-size: 16px;
  }

  .vision-img-wrapper {
    height: 445px;
  }

  .img-wrapper {
    height: 450px;
  }

  .img-wrapper img {
    object-fit: contain;
  }

  .pricing-card-wrapper .pricing-card {
    flex-basis: 60%;
  }

  span.amount {
    font-size: 50px;
  }

  span.offer-price,
  span.f-month {
    font-size: 18px;
  }

  span.plan-period,
  span.select-period {
    font-size: 16px;
  }

  span.amount sup span.float-num {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .logo-blk {
    width: 220px;
  }

  .rich-content h2 {
    font-size: 22px !important;
  }

  h2 {
    font-size: 32px !important;
    line-height: normal !important;
  }

  .heading-blk h1 {
    font-size: 36px;
    text-align: center;
  }

  .app-btn-blk {
    justify-content: center;
  }

  a.app-link {
    width: 160px;
  }

  .trusted-ppl-blk {
    width: 100%;
    flex-direction: column;
    position: static;
    margin-top: 35px;
    padding-top: 35px;
  }

  p.trusted-text {
    text-align: center;
  }

  .guide-wrap::before,
  .grid-position::before,
  .grid-position::after {
    display: none;
  }

  .content-blk p {
    font-size: 18px;
    line-height: 30px;
  }

  .innovative-section {
    padding: 84px 0px 45px;
  }

  .innovative-section::before {
    width: 100%;
    height: 100%;
  }

  section.features-section {
    padding: 45px 0px;
  }

  .feature-card {
    flex-direction: column;
  }

  .feature-card:nth-child(2n) {
    flex-direction: column;
  }

  .feature-card-img {
    height: 350px;
  }

  .feature-card-inner {
    max-width: 100%;
    width: 100%;
  }

  .feature-card-inner h3 {
    font-size: 28px;
  }

  section.pricing-section {
    padding: 45px 0px 45px;
  }

  .pricing-card-wrapper .pricing-card {
    flex-basis: 100%;
  }

  .pricing-card-header h3 {
    font-size: 28px;
  }

  .pricing-card-body {
    height: auto;
  }

  span.amount {
    font-size: 32px;
  }

  span.f-month {
    font-size: 15px;
    letter-spacing: 0px;
  }

  span.amount sup span.float-num {
    font-size: 18px;
  }

  span.plan-period {
    font-size: 14px;
    bottom: -2px;
  }

  .pricing-card-btn {
    padding: 15px;
    font-size: 20px;
  }

  section.compare-section {
    padding: 45px 0px;
    margin-bottom: 40px;
  }

  .compare-wrapper table {
    width: 100%;
    border-radius: 30px;
    display: block;
    overflow: auto;
  }

  /* tbody tr:last-child td:nth-last-child(2)::before,
  tbody tr:last-child td:nth-last-child(1)::before {
    display: none;
  } */
  tbody tr:last-child td :where(.get-free, .get-basic, .get-pre) {
    display: none;
  }

  .compare-wrapper table td {
    padding: 20px 15px;
  }

  span.plan-heading-free {
    font-size: 18px;
  }

  span.plan-amount {
    font-size: 20px;
  }

  span.plan-heading-basic,
  span.plan-heading-pre {
    font-size: 18px;
    padding: 9px 20px;
  }

  section.faq-section {
    padding: 45px 0px;
  }

  .faq-wrapper button {
    font-size: 18px;
  }

  section.content-section {
    padding: 45px 0px;
  }

  .footer-container {
    flex-direction: column-reverse;
  }

  .footer-navigation,
  .footer-contact {
    width: 100%;
  }

  .footer-contact {
    padding: 45px 20px 75px;
  }

  button.send-message-btn {
    padding: 15px 60px;
  }

  .footer-navigation-inner {
    padding: 47px 20px 0px 20px;
  }

  .footer-blk {
    gap: 35px;
  }

  .footer-logo {
    width: 250px;
    height: 50px;
    margin-bottom: 30px;
  }

  .copyright-blk {
    padding: 15px 20px 15px 20px;
  }

  .featureslist {
    gap: 10px 30px;
  }
}

@media screen and (max-width: 576px) {
  .logo-blk {
    width: 220px;
  }

  .rich-content h2 {
    font-size: 22px !important;
  }

  h2 {
    font-size: 32px !important;
    line-height: normal !important;
  }

  .heading-blk h1 {
    font-size: 36px;
    text-align: center;
  }

  .app-btn-blk {
    justify-content: center;
  }

  a.app-link {
    width: 160px;
  }

  .trusted-ppl-blk {
    width: 100%;
    flex-direction: column;
    position: static;
    margin-top: 35px;
    padding-top: 35px;
  }

  p.trusted-text {
    text-align: center;
  }

  .guide-wrap::before,
  .grid-position::before,
  .grid-position::after {
    display: none;
  }

  .content-blk p {
    font-size: 18px;
    line-height: 30px;
  }

  .innovative-section {
    padding: 84px 0px 45px;
  }

  .innovative-section::before {
    width: 100%;
    height: 100%;
  }

  section.features-section {
    padding: 45px 0px;
  }

  .feature-card {
    flex-direction: column;
  }

  .feature-card:nth-child(2n) {
    flex-direction: column;
  }

  .feature-card-img {
    height: 350px;
  }

  .feature-card-inner {
    max-width: 100%;
    width: 100%;
  }

  .feature-card-inner h3 {
    font-size: 28px;
  }

  section.pricing-section {
    padding: 45px 0px 45px;
  }

  .pricing-card-wrapper .pricing-card {
    flex-basis: 100%;
  }

  .pricing-card-header h3 {
    font-size: 28px;
  }

  .pricing-card-body {
    height: auto;
  }

  span.amount {
    font-size: 32px;
  }

  span.f-month {
    font-size: 15px;
    letter-spacing: 0px;
  }

  span.amount sup span.float-num {
    font-size: 18px;
  }

  span.plan-period {
    font-size: 14px;
    bottom: -2px;
  }

  .pricing-card-btn {
    padding: 15px;
    font-size: 20px;
  }

  section.compare-section {
    padding: 45px 0px;
    margin-bottom: 40px;
  }

  .compare-wrapper table {
    width: 100%;
    border-radius: 30px;
    display: block;
    overflow: auto;
  }

  tbody tr:last-child td:nth-last-child(2)::before,
  tbody tr:last-child td:nth-last-child(1)::before {
    display: none;
  }

  .compare-wrapper table td {
    padding: 20px 15px;
  }

  span.plan-heading-free {
    font-size: 20px;
  }

  span.plan-amount {
    font-size: 20px;
  }

  span.plan-heading-basic,
  span.plan-heading-pre {
    font-size: 20px;
    padding: 9px 40px;
  }

  section.faq-section {
    padding: 45px 0px;
  }

  .faq-wrapper button {
    font-size: 18px;
  }

  section.content-section {
    padding: 45px 0px;
  }

  .footer-container {
    flex-direction: column-reverse;
  }

  .footer-navigation,
  .footer-contact {
    width: 100%;
  }

  .footer-contact {
    padding: 45px 20px 75px;
  }

  button.send-message-btn {
    padding: 15px 60px;
  }

  .footer-navigation-inner {
    padding: 47px 20px 0px 20px;
  }

  .footer-blk {
    gap: 35px;
  }

  .footer-logo {
    width: 250px;
    height: 50px;
    margin-bottom: 30px;
  }

  .copyright-blk {
    padding: 15px 20px 15px 20px;
  }

  .featureslist {
    gap: 20px 30px;
  }

  .features-list-item {
    flex-basis: 100%;
  }

  .form-header p {
    width: 90%;
  }

  .rich-content h2:nth-child(2) {
    margin-top: 52px;
  }
}

@media screen and (max-width: 400px) {
  .price-blk {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card .price-blk {
    height: 200px;
  }

  .pricing-card:first-child .price-blk {
    height: auto;
  }

  .rich-content h2 {
    font-size: 22px !important;
  }
}

a.page-links:active {
  color: var(--secondary-clr);
}

.error {
  color: red;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
  padding-top: 5px;
  padding-left: 20px;
}

/* ======================== */

:root {
  --secondary-font: "Cera Pro";
}
.text-wrapper {
  max-width: 820px;
  padding-top: 87px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.text h1 {
  font-size: 48px;
  font-weight: 900;
  font-family: var(--secondary-font);
  margin-bottom: 36px;
  color: #333b40;
}
.text h2 {
  font-size: 48px;
  font-weight: 900;
  font-family: var(--secondary-font);
  margin: 24px 0px;
  color: #333b40;
}
.text h3 {
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  font-family: var(--secondary-font);
  line-height: 33px;
  color: #333b40;
  margin-bottom: 20px;
}
.text p {
  font-size: 20px;
  font-family: var(--secondary-font);
  line-height: 38px;
  color: #333b40;
  margin-bottom: 30px;
}
.text :is(ul, ol) {
  margin-bottom: 30px;
}
.text li {
  font-size: 20px;
  font-family: var(--secondary-font);
  line-height: 38px;
  color: rgb(51, 59, 64);
  margin-bottom: 24px;
}
.text a {
  color: #1e75ae;
  transition: color 0.05s ease-in-out;
  text-decoration: none;
}
.text a:active,
.text a:focus,
.text a:hover {
  color: #248bd9;
  text-decoration: underline;
  outline: 0;
}

/* ===================== */
.new-header-blk .newlogo-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 50px;
  padding: 30px 0px 10px;
}
span.backicon {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
a.backbtn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #000;
  width: 76px;
}
a.logobtn {
  width: 220px;
}
.new-layout .form-header p {
  width: 100%;
}
.form-heading h2 {
  font-size: 20px !important;
  font-weight: 600;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
  margin-bottom: 0px;
}

.selected-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  margin-top: 15px;
}
.form-radio-select input {
  display: none;
}
.form-radio-select label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
span.radio-check {
  width: 15px;
  height: 15px;
  border: 1px solid #c7c7c7;
  display: inline-block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.form-radio-select input:checked + label span.radio-check::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: var(--secondary-clr);
  transition: all 0.5s ease;
}

.form-radio-select input:checked + label span.radio-check::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s ease;
}
.form-radio-select span.radio-check-heading {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--primary-clr);
}
@media screen and (max-width: 576px) {
  .new-header-blk .newlogo-blk {
    gap: 20px;
  }
  a.logobtn {
    width: 125px;
  }
}

/* ===================== */
.create-bg{  
  background: url(../images/create-bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
section.create-section {
  width: 100%;
  padding: 130px 0px 27px;
  position: relative;
  z-index: 1;  
}
.create-content-blk h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
  font-family: var(--primary-font);
  color: #000;
}
.create-content-blk p.create-subheading {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--secondary-font);
  line-height: 28px;
  margin-bottom: 0px;
}
section.create-content-section {
  padding: 40px 0px 60px;
}
.create-para-blk p {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
  line-height: 30px;
  margin-bottom: 0px;
}
.create-form-heading {
  margin-top: 60px;
}
.create-form-heading h2 {
  font-size: 38px !important;
  font-weight: 500;
  font-family: var(--primary-font);
  text-align: center;
  color: #000;
}
.create-form-heading h3 {
  font-size: 25px;
  font-weight: 500;
  font-family: var(--secondary-font);
  margin-top: 20px;
  color: #000;
}
.create-content-blk ul {
  margin: 18px auto 0px;
}
.create-content-blk ul li {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.create-content-blk h3 {
  font-size: 25px;
  font-weight: 500;
  font-family: var(--secondary-font);
  margin-bottom: 0px;
  margin-top: 50px;
}
.video-wrapper {
  max-width: 1440px;
  height: 578px;
  position: relative;
  border-radius: 32px;
  margin: 0 auto;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
.video-heading {
  margin-bottom: 25px;
}
.video-heading h2 {
  font-size: 22px !important;
  font-weight: 500;
  font-family: var(--secondary-font);
  line-height: 28px;
}
/* .play-btn {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border: 0px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.play-btn i{
  color: #000;
  font-size: 20px;
}
button.play-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
} */
.btn-blk {
  text-align: center;
}
button.submit-btn-layout {
  padding: 8px 44px;
  border: 0px;
  background: var(--secondary-clr);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  border-radius: 40px;
  text-transform: capitalize;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
  section.create-section {
    width: 100%;
    height: 100%;
    padding: 120px 0px 60px;
  }
  .create-content-blk h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .create-content-blk p.create-subheading {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  section.create-section {
    width: 100%;
    height: 100%;
    padding: 95px 0px 60px;
  }
  .create-content-blk h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .create-content-blk p.create-subheading {
    font-size: 22px;
  }
  .create-para-blk p {
    font-size: 17px;
  }
  .video-heading h2 {
    font-size: 21px !important;
    padding-right: 0px !important;
  }
  .create-content-blk h3 {
    font-size: 18px;
    margin-top: 50px;
  }
  .video-wrapper {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .create-content-blk h1 , .create-form-heading h2{
    font-size: 28px !important;
    line-height: 36px;
  }
  .create-content-blk p.create-subheading {
    font-size: 18px;
    text-align: center;
}
  .create-content-blk ul li {
    font-size: 17px;
}
  .video-wrapper {
    width: 100%;
    height: 300px;
  }
  .create-form-heading h3 {
    font-size: 20px;
}
.play-btn {
  width: 55px;
  height: 55px;
}
button.play-btn::before {
  width: 70px;
  height: 70px;
}
}
/* ===== */
:root {
  --secondary-font: "Cera Pro";
}
.thanks-wrapper {
  background: url(../images/hero-banner.png), url(../images/banner-layer-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thanks-card {
  max-width: 720px;
  padding: 50px;
  text-align: center;
  background-color: #fff;
  box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}
.thanks-card h1 {
  font-family: "Kaushan Script", cursive;
  font-size: 4em;
  letter-spacing: 3px;
  color: #30c6cc;
  margin: 0;
  margin-bottom: 20px;
}
.thanks-card h2 {
  font-size: 28px;
  font-weight: 400;
  font-family: var(--secondary-font);
  margin-bottom: 20px;
  color: #646464;
}
.thanks-card p {
  margin: 0;
  font-size: 18px;
  color: #aaa;
  font-family: var(--secondary-font);
}
