/* FOnt Face */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  /* Regular */
  font-display: swap;
  src: local("Outfit Regular"),
    url("../fonts/OutfitRegular.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100;
  /* Thin */
  font-display: swap;
  src: local("Outfit Thin"),
    url("../fonts/OutfitVariableFont_wght1.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 200;
  /* ExtraLight */
  font-display: swap;
  src: local("Outfit ExtraLight"),
    url("../fonts/OutfitExtraLight.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  /* Light */
  font-display: swap;
  src: local("Outfit Light"), url("../fonts/OutfitLight1.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  /* Medium */
  font-display: swap;
  src: local("Outfit Medium"), url("../fonts/OutfitMedium.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  /* SemiBold */
  font-display: swap;
  src: local("Outfit SemiBold"),
    url("../fonts/OutfitSemiBold.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  /* Bold */
  font-display: swap;
  src: local("Outfit Bold"), url("../fonts/OutfitBold.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 800;
  /* ExtraBold */
  font-display: swap;
  src: local("Outfit ExtraBold"),
    url("../fonts/OutfitExtraBold.woff") format("woff");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 900;
  /* Black */
  font-display: swap;
  src: local("Outfit Black"), url("../fonts/OutfitBlack.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  /* Black */
  font-display: swap;
  src: local("Inter Regular"),
    url("../fonts/inter/Inter-Regular.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  /* Black */
  font-display: swap;
  src: local("Inter Medium"),
    url("../fonts/inter/Inter-Medium.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  /* Black */
  font-display: swap;
  src: local("Inter SemiBold"),
    url("../fonts/inter/Inter-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  /* Black */
  font-display: swap;
  src: local("Inter Bold"), url("../fonts/inter/Inter-Bold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  /* Black */
  font-display: swap;
  src: local("Inter ExtraBold"),
    url("../fonts/inter/Inter-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  /* Black */
  font-display: swap;
  src: local("Inter Black"),
    url("../fonts/inter/Inter-Black.woff") format("woff");
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  font-display: swap;
}

:root {
  --dark-color: #000000;
  --primary-color: #4663ac;
  --secondary-color: #e1f1fd;
  --grey-color: #f6f6f6;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.ytvideo {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.bg-grey {
  background-color: var(--grey-color);
}

.txt-primary {
  color: var(--primary-color) !important;
}

.txt-error {
  color: #dc3545;
}

.txt-success {
  color: #28a745;
}

h1,
.h1 {
  display: block;
  font-size: 56px;
  font-weight: 700;
  line-height: 66px;
  color: #000;
}

h2,
.h2 {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  color: #000;
  margin-bottom: 50px;
}

h3,
.h3 {
  display: block;
  font-size: 32px;
  font-weight: 600;
  line-height: 34px;
  color: #000;
  margin-bottom: 0.5rem;
}

h4,
.h4 {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  color: #000;
  margin-bottom: 0.5rem;
}

h5,
.h5 {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #000;
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  margin-bottom: 0.5rem;
}

p.heading {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #000;
}

a {
  text-decoration: none;
}

.text-primary {
  color: var(--primary-color) !important;
}

.hidden {
  display: none;
}

.section-wrapper {
  padding: 60px 0;
  margin-top: 30px;
}

.section-wrapper-2 {
  padding: 60px 0;
  height: auto;
}

.radius-20 {
  border-radius: 20px;
}

.no-top-space {
  padding-top: 0;
}

.no-bottom-space {
  padding-bottom: 0;
}

.left-content img {
  margin-left: 24px;
  margin-bottom: 24px;
  float: right;
  max-width: 34%;
}

.right-content img {
  margin-bottom: 24px;
  margin-right: 24px;
  float: left;
  max-width: 40%;
}

#additional-content img {
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #000;
  color: #fff;
  transition: 0.3s;
}

.btn:focus {
  box-shadow: none;
}

.btn img {
  margin-left: 14px;
  transition: 0.3s;
}

.btn:hover img {
  transition: 0.3s;
}

.busybtn.active {
  position: relative;
  pointer-events: none;
  opacity: 0.65;
  align-items: center;
  justify-content: center;
}

.busybtn.active:after {
  content: "";
  position: absolute;
  left: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.p-list {
  margin-bottom: 12px;
}

.p-list::before {
  content: "";
  display: inline-block;
  background-image: url(../images/btn-arrow2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0;
  margin-right: 15px;
  width: 15px;
  height: 13px;
}

.form .input,
.form .textarea {
  background-color: var(--secondary-color);
  border-radius: 10px;
  min-height: 55px;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 15px;
  width: 100%;
  margin-bottom: 20px;
}

.form .input::placeholder,
.form .textarea::placeholder {
  color: rgba(0, 0, 0, 0.27);
}

.form label p {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px;
}

.get-started-col .form label p {
  font-weight: 500;
}

.form label p span {
  color: #e80000;
}

label.error {
  color: red;
  position: relative;
  top: -15px;
  width: 100%;
}

.form p.term {
  margin-bottom: 0;
}

.form p.term a {
  color: var(--primary-color);
}

#banner2 {
  background-color: var(--primary-color);
  padding: 40px 0;
}

#banner2 h2,
#banner2 h1 {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

header {
  background-color: #fff;
  padding: 12px 0;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.03);
  top:-10px;
}

header .nav-link {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  position: relative;
  border-radius: 5px;
  padding: 5px 20px !important;
  margin: 0 5px;
}

header .nav-link:focus {
  color: #000;
}

header .nav-link.dropdown-toggle {
  padding-right: 36px !important;
}

header .nav-link:hover,
header .nav-link.active {
  color: var(--primary-color);
  transition: 0.3s;
}

header .nav-link:hover {
  background-color: #f1f1f1;
}

ul.navbar-nav.mx-auto.my-auto {
  margin-right: 0 !important;
}

header .nav-link:before {
  display: none;
  content: "\2713";
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  bottom: 2px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

header .nav-link:hover:before,
header .nav-link.active:before {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

header .dropdown-menu .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  background-color: transparent;
}

header .dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
}

header .dropdown-toggle::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  border: none;
  background-image: url(../images/arrow-down.svg);
  width: 11px;
  height: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 10px;
}

header .dropdown-menu {
  top: 120% !important;
}

header .header-btn {
  display: flex;
  gap: 15px;
}

header .header-btn1 .btn:hover {
  background-color: #000;
}

header .header-btn .cart-btn {
  position: relative;
}

header .header-btn .cart-count {
  position: absolute;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 16px;
  height: 16px;
  border-radius: 100%;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -2px;
  top: -4px;
}

header .header-btn.mobile {
  display: none;
}

header .header-btn a {
  background-color: var(--secondary-color);
  border-radius: 100%;
  padding: 11px;
  display: flex;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.37);
  width: 42px;
  height: 42px;
  transition: 0.3s;
}

header .header-btn a:nth-child(2) {
  background-color: var(--primary-color);
}

header .header-btn a:hover {
  background-color: #000;
  transition: 0.3s;
}

header .header-btn a:first-child:hover img {
  filter: invert(100%);
  transition: 0.3s;
}

#banner {
  background: var(--secondary-color);
  padding: 60px 0;
}

#banner .banner-content p {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0;
}

#banner .btn-section {
  display: flex;
  margin-top: 50px;
  gap: 18px;
}

#banner .btn-section .btn:nth-child(2) {
  background-color: #fff;
  color: #000;
}

#banner .btn-section .btn:nth-child(2) img {
  filter: invert(100%);
}

#banner .btn-section .btn:nth-child(2):hover {
  background-color: var(--primary-color);
  color: #fff;
}

#banner .btn-section .btn:nth-child(2):hover img {
  filter: invert(0);
}

.price-plan .row {
  padding: 0 20px;
}

.price-plan h2 {
  font-size: 46px;
  line-height: 56px;
}

.price-plan-feature {
  list-style: none;
  padding: 0;
}

.price-plan .price-plan-feature li {
  list-style: none;
  font-size: 15px;
  margin: 15px 0;
  display: flex;
  line-height: initial;
  text-align: left;
  font-weight: 300;
}

.price-plan .price-plan-feature li:before {
  content: "\2713";
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
}

.price-plan .plan-col {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: var(--grey-color);
  border-radius: 10px;
  padding: 40px 40px 40px 0;
  border: 1px solid #000;
}

.price-plan .plan-col .plan-img-col {
  padding: 15px;
  border-radius: 0 10px 10px 0;
  max-width: 170px;
}

.price-plan .plan-col .h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

.price-plan .plan-col .btn {
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
}

.price-plan .plan-col.active {
  background-color: var(--primary-color);
  border: none;
  margin-bottom: 40px;
}

.price-plan .plan-col.active .plan-img-col {
  background-color: #fff;
  padding: 15px 35px;
}

.price-plan .plan-col.active .btn {
  background-color: #fff;
  color: var(--primary-color);
}

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

.price-plan .plan-col.active .btn:hover img {
  filter: brightness(10);
}

.price-plan .buy-review {
  background-color: var(--secondary-color);
  text-align: center;
  border-radius: 10px;
  margin-right: 20px;
  height: 100%;
}

.price-plan .buy-review-txt {
  padding: 45px 30px;
}

.price-plan .buy-review .trust-img {
  padding: 20px 30px;
  padding-bottom: 45px;
}

.price-plan .buy-review .trust-img img:first-child {
  max-width: 158px;
  object-fit: contain;
}

.price-plan .buy-review .trust-img img:nth-child(2) {
  max-width: 66px;
  object-fit: contain;
}

.price-plan .buy-review p {
  font-weight: 400;
}

.price-plan .buy-review h4,
.price-plan .buy-review .h4 {
  font-size: 28px;
}

.price-plan .buy-review .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  background-color: var(--primary-color) !important;
  color: #fff !important;
  margin: 35px 0;
}

.price-plan .dropdown-menu {
  width: 100%;
  border-radius: 10px;
}

.price-plan .dropdown-item {
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  text-align: center;
  white-space: initial;
}

.price-plan .dropdown-item.active,
.price-plan .dropdown-item:active,
.price-plan .dropdown-item:hover {
  background-color: #000;
  border-bottom: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

.price-plan .trust-badge {
  background-color: var(--primary-color);
  padding: 10px 40px;
  display: flex;
  text-align: start;
  margin-bottom: 15px;
  justify-content: space-between;
}

.price-plan .trust-badge img {
  max-width: 70px;
  object-fit: contain;
}

.price-plan .trust-badge p {
  font-size: 18px;
  color: #fff;
}

.plan-price-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.price-plan-col {
  background-color: var(--grey-color);
  border: 1px solid #000;
  border-radius: 10px;
  width: 100%;
}

.price-plan-col {
  background-color: var(--grey-color);
  border: 1px solid #000;
  border-radius: 10px;
}

.price-plan-col .google-rating {
  margin-top: 25px;
  padding-left: 20px;
}

.price-plan-col img {
  max-width: 77px;
}

.price-plan-col img.trust-pilot {
  max-width: 125px;
}

.price-plan-col .price-plan-txt {
  padding: 20px;
  padding-bottom: 25px;
}

.price-plan-col h5,
.price-plan-col .h5 {
  font-weight: 400;
}

.price-plan-col h4,
.price-plan-col .h4 {
  font-size: 24px;
}

.price-plan-col .price {
  background-color: var(--primary-color);
  border-radius: 10px;
  width: auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  padding: 0 10px;
}

.price-plan-col .price h4,
.price-plan-col .price .h4 {
  color: #fff;
  margin: 0;
}

.price-plan-col ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid;
  padding-top: 12px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.price-plan-col ul li {
  list-style: none;
  font-size: 15px;
  margin: 15px 0;
  display: flex;
  line-height: initial;
  font-weight: 300;
}

.price-plan-col ul li:before {
  content: "\2713";
  font-weight: 400;
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
}

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

.price-plan-col .btn:hover img {
  filter: invert(0);
}

.price-plan-col.active {
  background-color: var(--primary-color);
  border: none;
  width: 119%;
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.16);
}

.price-plan-col.active .google-rating {
  background-color: #fff;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 0 10px 10px 0;
}

.price-plan-col.active .google-rating img {
  max-width: 100px;
}

.price-plan-col.active h4,
.price-plan-col.active .h4 {
  color: #fff;
  font-size: 28px;
}

.price-plan-col.active h5,
.price-plan-col.active .h5 {
  color: #fff;
  font-size: 22px;
}

.price-plan-col.active .price {
  background-color: #fff;
  height: 74px;
}

.price-plan-col.active .price h4,
.price-plan-col.active .price .h4 {
  background-color: #fff;
  color: var(--primary-color);
}

.price-plan-col.active ul {
  border-top: 1px solid #fff;
  color: #fff;
}

.price-plan-col.active ul li {
  font-size: 18px;
}

.price-plan-col.active ul li:before {
  color: #fff;
  font-size: 24px;
}

.price-plan-col.active .btn {
  background-color: #000;
  color: #fff;
}

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

.price-plan-col.active .btn:hover img {
  filter: invert(100%);
}

.hit-now-col {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 40px;
  border-radius: 20px;
  background-color: var(--primary-color);
}

.hit-now-col h2,
.hit-now-col .h2 {
  font-size: 45px;
  line-height: 56px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.hit-now-col .btn {
  white-space: nowrap;
  padding: 12px 60px;
  font-size: 20px;
  font-weight: 500;
  background-color: #fff;
  color: var(--primary-color);
}

.hit-now-col .btn:hover {
  color: #fff;
  background-color: #000;
}

.hit-now-col .btn:hover img {
  filter: brightness(5);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .trusted-vid-wrapper .play-vid {
    padding: 2px 0 0 2px;
  }
}

section#trusted-by h2 {
  font-size: 26px;
}

section#trusted-by .row {
  align-items: center;
}

.trusted-vid-wrapper .trusted-vid {
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.trusted-vid-wrapper .play-vid {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 100%;
  border: 3px solid #fff;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 38%;
  left: 45%;
  padding: 0;
}

.trusted-vid-wrapper .play-vid .fa-solid {
  font-size: 22px;
  margin-top: 2px;
  margin-left: 2px;
}

.trusted-vid-wrapper .play-vid.pause {
  display: none !important;
}

.trusted-vid-wrapper .play-vid.pause .fa-solid {
  margin: 0;
}

#trusted-by .trusted-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

#trusted-by .trusted-col .trust-img {
  max-width: 192px;
}

#trusted-by .trusted-col .trust-img:nth-child(3) {
  max-width: 62px;
  object-fit: contain;
}

#trusted-by .trusted-btn {
  font-size: 20px;
  padding: 10px 25px;
  gap: 10px;
}

#trusted-by .featured-logos {
  gap: 10px;
  flex-wrap: wrap;
}

#trusted-by .featured-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 80px;
  padding: 5px;
  border-radius: 10px;
  width: 32%;
}

.review-steps .step-col {
  position: relative;
  background-color: var(--grey-color);
  border-radius: 10px;
  border-bottom: 4px solid var(--primary-color);
  padding: 20px;
  height: 100%;
  transition: 0.5s;
  padding-bottom: 40px;
  overflow: hidden;
}

.review-steps .step-col::before {
  display: block;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}

.review-steps .step-col:hover:before {
  height: 100%;
  transition: 0.5s;
}

.review-steps .step-col:hover {
  background-color: var(--primary-color);
  transition: 0.8s;
}

.review-steps .step-col h5,
.review-steps .step-col .h5 {
  position: relative;
  z-index: 9;
  transition: 0.3s;
}

.review-steps .step-col p {
  position: relative;
  z-index: 9;
  font-size: 15px;
  transition: 0.3s;
}

.review-steps .step-col:hover p,
.review-steps .step-col:hover h5,
.review-steps .step-col:hover .h5 {
  color: #fff;
  transition: 0.3s;
}

.review-steps .step-col img {
  position: absolute;
  transition: 0.3s;
  right: 15px;
  bottom: 15px;
}

.review-steps .step-col:hover img {
  filter: brightness(1000%);
  transition: 0.3s;
}

#faq {
  background-color: #f6f9fc;
}

#faq .accordion-item {
  margin-bottom: 18px;
  border-radius: 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

#faq .accordion-button {
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding: 25px 18px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: none;
}

#faq.bg-white .accordion-item,
#faq.bg-white .accordion-button {
  background-color: #f6f9fc;
}

#faq .accordion-button h6,
#faq .accordion-button .h6 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

#faq .accordion-button::after {
  margin-left: 0;
  margin-right: 10px;
  background-image: url(../images/arrow-right.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
}

#faq .accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow-right.svg);
  transform: rotate(90deg);
}

#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-body {
  padding: 25px 45px;
  position: relative;
}

#faq .accordion-body:before {
  content: "";
  position: absolute;
  width: 94%;
  height: 1px;
  background: #eee;
  top: 0;
  right: 13px;
}

#faq .accordion-body p {
  font-size: 14px;
  margin: 0;
}

#testimonials .testi-p {
  margin-bottom: 60px;
}

.testi-crousel .slick-track,
.testi-crousel-2 .slick-track {
  transition-timing-function: linear !important;
}

.testi-col {
  padding: 30px;
  border-radius: 20px;
  /* background-color: var(--grey-color); */
  margin: 20px;
}

/* .card{ 
  border-radius:
  20px ;
} */
.testi-pfp {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 20px;
}

.testi-head {
  margin-bottom: 20px;
}

.testi-head p:nth-child(1) {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
}

.testi-head p:nth-child(2) {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0;
}

.testi-col .rating {
  max-width: 120px;
  color: orange;
  margin-top: 8px;
  display: flex;
  gap: 8px;
}

.testi-col .review p {
  line-height: 26px;
  margin-bottom: 0;
}

#latest-blog .slick-dots {
  display: none !important;
}

ul.breadcrumb {
  margin-bottom: 20px;
}

ul.breadcrumb li {
  display: inline;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: #000;
  content: "/\00a0";
}

ul.breadcrumb li a {
  color: #6d6d6d;
  text-decoration: none;
}

.blog-crousel .slick-arrow {
  content: "";
  background-image: url(../images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  background-color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 4px;
  transition: 0.3s;
  top: -100px;
  right: 0;
  left: unset;
  transform: scaleX(-1);
}

.blog-crousel .slick-prev {
  right: 60px;
}

.blog-crousel .slick-next {
  transform: scaleX(1);
}

.blog-crousel .slick-arrow:hover,
.blog-crousel .slick-arrow:focus {
  background-color: #000;
  background-image: url(../images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  filter: invert(100%);
  transition: 0.3s;
}

.blog-crousel .slick-arrow:before {
  display: none;
}

.blog-col {
  margin: 0 10px;
}

.blog-col .blog-img img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.blog-col .blog-img .date {
  border-radius: 6px;
  background-color: var(--primary-color);
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  padding: 10px;
  line-height: initial;
}

.blog-col .blog-img .date p {
  color: #fff;
  text-align: center;
  line-height: 0.9;
}

.blog-col .blog-content {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  padding: 15px;
}

.blog-col .blog-info {
  display: flex;
  gap: 40px;
  margin-bottom: 10px;
}

.blog-col .blog-info i {
  font-size: 14px;
  color: var(--primary-color);
  margin-right: 10px;
}

.blog-col .blog-info p {
  font-size: 12px;
  font-weight: 400;
}

.blog-col .btn {
  background-color: #fff;
  color: var(--primary-color);
  padding: 5px 0;
}

.blog-col .btn img {
  filter: invert(65%) sepia(13%) saturate(1625%) hue-rotate(176deg)
    brightness(97%) contrast(89%);
}

.blog-col .btn:hover {
  color: #000;
}

.blog-col .btn:hover img {
  filter: invert(100%);
}

footer {
  background-color: #000;
}

footer .footer-link-col {
  padding-left: 60px;
}

footer .logo {
  margin-bottom: 40px;
}

footer p {
  font-size: 15px;
}

footer ul {
  padding: 0;
}

footer li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
}

footer li a:hover {
  color: var(--primary-color);
  transition: 0.3s;
}

footer li {
  color: #fff;
  text-decoration: none;
  list-style: none;
  line-height: 42px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* footer li::before {
  margin-right: 20px;
  font-family: "font awesome 6 free";
  content: "\f005";
  font-weight: 900;
  font-size: 12px
} */

footer .subscribe-form input {
  height: 48px;
  border-radius: 6px;
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
  outline: 0;
  border: none;
}

footer .subscribe-form .btn {
  height: 48px;
  border-radius: 6px;
  width: 100%;
  justify-content: center;
}

footer .subscribe-form .btn:hover {
  background-color: #fff;
  color: #000;
}

footer .subscribe-form .btn:hover img {
  filter: invert(100%);
}

footer .subscribe-form input::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

footer .copyright-img {
  max-width: 205px;
  object-fit: contain;
}

footer .payment-logo-col,
#checkout .payment-logo-col {
  display: flex;
  gap: 10px;
  margin-right: 10px;
}

#checkout .payment-logo-col {
  gap: 6px;
}

footer .payment-logo-col .payment-logo,
#checkout .payment-logo-col .payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f6ef;
  border-radius: 7px;
  width: 45px;
  height: 19px;
}

#checkout .payment-logo-col .payment-logo {
  background-color: #f6f6f6;
}

footer .payment-logo-col .payment-logo img,
#checkout .payment-logo-col .payment-logo img {
  width: 23px;
  height: 14px;
  object-fit: contain;
}

.copyright-txt {
  border-top: 1px solid #ffffff96;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
}

.copyright-txt p {
  font-size: 16px;
}

.get-start-bg {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 60px 70px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}

.get-start-bg-2 {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 60px 70px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}

.get-start-bg .form .input,
.get-start-bg .form .textarea {
  background-color: #fff;
}

.get-started-form .btn {
  justify-content: center;
  width: 60%;
  margin-top: 10px;
  margin-bottom: 15px;
}

.trusted-by-col {
  padding-left: 30px;
}

.trusted-by-col .trusted-content {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 10px;
  max-width: 90%;
  margin: auto;
  margin-top: -60px;
  z-index: 9;
  padding: 25px 40px;
  text-align: center;
}

.trusted-by-col .trusted-content h4,
.trusted-by-col .trusted-content .h4 {
  font-size: 28px;
  margin-bottom: 20px;
}

.trusted-by-col .trusted-txt {
  background-color: var(--primary-color);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  margin-bottom: 15px;
}

.trusted-by-col .trusted-txt p {
  color: #fff;
  font-weight: 400;
  margin: 0;
}

.trusted-by-col .trusted-txt img {
  max-width: 60px;
  margin: 0 5px;
}

.trusted-by-col .trusted-img {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.trusted-by-col .trusted-img img:first-child {
  max-width: 146px;
}

.trusted-by-col .trusted-img img:nth-child(2) {
  max-width: 62px;
}

#write-now .form-btn {
  display: flex;
  gap: 20px;
}

#write-now .form-btn .btn {
  width: 38%;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 15px;
}

#write-now .form-btn .btn:nth-child(2) {
  background-color: #000;
}

#write-now .form-btn .btn:nth-child(2):hover {
  background-color: var(--primary-color);
}

#thanks h2,
#thanks .h2 {
  font-size: 94px;
  line-height: 118px;
  margin-bottom: 5px;
}

#thanks p {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 400;
}

#thanks .btn {
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 230px;
  margin-top: 40px;
}

#cardpayment.checkout-form .field {
  font-size: 15px;
}

.get-started-col .coupon-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.get-started-col .coupon-col .show-coupon {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 25px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--primary-color);
}

.get-started-col .coupon-col .coupon-text {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.row.coupon p {
  font-weight: 400;
}

.row.coupon svg {
  height: 16px;
  width: 16px;
}

.coupon-code-popup {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.coupon-code-popup-form {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.coupon-code-popup-form .input {
  min-height: 50px;
  height: 50px;
  max-width: 60%;
}

.coupon-code-popup .btn {
  padding: 13px 50px;
}

.col-md-12.coupon p {
  text-align: center;
  font-weight: 400;
  margin: 10px 0 0;
}

.checkout-buy-btn {
  display: flex !important;
  justify-content: space-between;
  gap: 12px 12px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.checkout-buy-btn .order-btn {
  width: 100%;
  text-align: center;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  border: none !important;
  margin-top: 0 !important;
  cursor: pointer;
  padding: 10px;
  text-indent: -20px;
}

a#btnApplePay img {
  margin-top: -5px;
}

.checkout-buy-btn .order-btn img {
  height: 16px;
  margin-right: 5px;
}

.checkout-buy-btn #btnApplePay img {
  margin-right: 10px;
}

.upgrade-items [type="checkbox"] {
  width: 25px;
  height: 25px;
  color: var(--primary-color);
  vertical-align: middle;
  appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #ffffff;
  transition: background 300ms;
  cursor: pointer;
  margin-right: 10px;
}

/* Pseudo element for check styling */

.upgrade-items [type="checkbox"]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #ccd3d8;
}

/* Checked */

.upgrade-items [type="checkbox"]:checked {
  background-color: currentcolor;
}

.upgrade-items [type="checkbox"]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

/* Disabled */

.upgrade-items [type="checkbox"]:disabled {
  background-color: #ccd3d8;
  opacity: 0.84;
  cursor: not-allowed;
}

/* IE */

.upgrade-items [type="checkbox"]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #ccd3d8;
}

.upgrade-items [type="checkbox"]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

.order-summary {
  background-color: var(--grey-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  max-width: 80%;
  margin-left: auto;
}

.order-summary .order-header {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 20px 16px;
}

.order-summary .order-header h5,
.order-summary .order-header .h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.order-body {
  background-color: var(--grey-color);
  border-radius: 0 0 10px 10px;
  padding: 20px 16px;
}

.order-body h4,
.order-body .h4 {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-color);
}

.order-body h4,
.order-body .h4.bold {
  font-weight: 700;
}

.order-body h5,
.order-body .h5 {
  font-weight: 400;
}

.order-summary .price {
  display: flex;
  justify-content: space-between;
  /* border-bottom: 1px solid rgba(0, 0, 0, .23); */
  padding-bottom: 10px;
}

.order-summary .price p {
  font-size: 20px;
  font-weight: 400;
}

.order-summary .price span {
  font-size: 20px;
  font-weight: 700;
}

.order-summary .offer {
  padding: 18px 0;
}

.order-summary .offer {
  padding: 24px 0;
  gap: 24px;
  display: grid;
}

.order-summary .offer p {
  width: 50%;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}

.order-summary .offer p .save-txt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  padding-right: 6px;
  font-weight: 900;
  height: 20px;
  width: 70px;
  background-size: cover;
  background-image: url(../images/offer-txt-bg.png);
  background-repeat: no-repeat;
  background-position: left;
  margin-bottom: -14px;
}

.order-summary .offer p .service-highlight {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.green {
  background-color: #3fbd4d;
  padding: 0px 10px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--star-color);
}

.add_on {
  margin: 30px 0px 20px 0px;
  font-size: 25px;
}

.checkout {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 20px;
  text-transform: capitalize;
}

/* .btn { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: capitalize;
  font-size: 28px;
  background-color: var(--primary-color);
  color: var(--star-color);
  padding:20px 30px ;
  border: none;
border-radius: 10px;  
width: 100%;
} */
.upgrade-list {
  border-bottom: 1px solid #dbdada;
  padding: 10px 0px 5px 0px;
}

.upgrade-list-last {
  border-bottom: none;
  padding: 10px 0px 5px 0px;
}

.upgrade-list-last {
  border-bottom: none;
  padding: 10px 0px 5px 0px;
}

.upgrade-items {
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.upgrade-items input[type="radio"] {
  transform: scale(2);
  /* Increase the scale factor to make it bigger */
  margin-right: 20px;
  accent-color: var(--primary-color);
}

.Upgrade_price > del {
  color: #bfbfbf;
  font-weight: 300;
  font-size: 16px;
}

.Upgrade_price {
  text-align: end;
  font-size: 20px;
  font-weight: 500;
}

.form-price {
  gap: 20px;
}

.upgrade_sec-card-list {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.upgrade_sec-card-list-last {
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
}

.upgrade_sec-card-list-total::before {
  content: "";
  width: 110.8%;
  height: 1px;
  background-color: #bfbfbf;
  position: absolute;
  bottom: -10px;
  left: -30px;
}

.upgrade_sec-card-list-total {
  font-size: 22px;
  position: relative;
  /* border-bottom: 1px solid #D1D1D1; */
  font-weight: 700;
  padding-bottom: 10px;
}

.upgrade-sec-card-ul {
  list-style-type: none;
  padding: 0px;
  font-weight: 500;
  font-size: 18px;
  line-height: 50px;
  margin: 40px 0px 40px 0px;
}

.upgrade_sec-card-list-left img {
  max-width: 20px;
}

.upgrade_sec-card-list-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upgrade-sec-card-ul img {
  max-width: 20px;
  margin-right: 10px;
}

.order-summary .total-pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.23);
  padding-top: 10px;
}

.order-summary .form-check-input {
  height: 30px;
  width: 55px;
  border: none;
  background-image: url(../images/switch-circle.svg);
}

.order-summary .form-check-input:checked {
  background-color: var(--primary-color);
  background-position: right center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+) !important;
}

.order-summary .form-check-input:focus {
  box-shadow: none;
  background-image: url(../images/switch-circle.svg);
}

.get-started-form .payment-img {
  max-width: 205px;
}

.get-started-form .form-heading {
  font-weight: 500;
}

.checkout-img {
  display: block;
  max-width: 55%;
  margin-left: 180px;
  margin-top: 40px;
}

.contact-col {
  box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 50px;
}

.contact-col .btn {
  max-width: 340px;
  display: flex;
  margin: 0 auto;
  margin-top: 20px;
}

.feature-col {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  border-bottom: 5px solid var(--primary-color);
  height: 100%;
  transition: 0.3s;
}

.feature-col.grey {
  background-color: var(--grey-color);
}

.feature-col:hover {
  background-color: var(--primary-color);
  transition: 0.3s;
}

.feature-col:hover .feature-img {
  background-color: var(--primary-color);
  transition: 0.3s;
}

.feature-col:hover .feature-img path {
  fill: #fff;
}

.feature-col:hover h5,
.feature-col:hover .h5,
.feature-col:hover p {
  color: #fff;
  transition: 0.3s;
}

.feature-col:hover a {
  color: #fff !important;
}

.feature-col h5,
.feature-col .h5,
.feature-col p {
  transition: 0.3s;
}

.feature-col .feature-img {
  width: 58px;
  height: 58px;
  background-color: #fff;
  display: flex;
  border-radius: 6px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid #fff;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top: -40px;
  box-shadow: 0 -1px 0 0.2px var(--primary-color);
  transition: 0.3s;
}

.feature-col .feature-img svg path {
  fill: var(--primary-color);
  transition: 0.3s;
}

/* ------checkout2 ------ */

.checkout2 {
  background-color: var(--secondary-color);
  height: auto;
}

.checkout2 h1 {
  position: relative;
}

.checkout2 h1::before {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 580px;
  height: 1px;
  background: #00000017;
  bottom: 0px;
  left: -30px;
}

.checkout2 .col-lg-6 {
  width: 100%;
}

.checkout2 .form-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout2 .payment-option {
  margin-bottom: 30px;
}

.checkout2 .payment-logo-col .payment-logo {
  background-color: var(--secondary-color) !important;
}

.checkout2 .get-started-col {
  width: 70%;
  margin: 0 auto;
  /* width: 50%; */
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0px 4px 11px 0px #00000021;
}

.order_Summary .container .row {
  /* margin: 0 auto; */
  display: flex;
  justify-content: center;
  gap: 50px;
}

.checkout2 .get-started-col-2 {
  margin: 0 auto;
  /* width: 70%; */
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0px 4px 11px 0px #00000021;
}

.checkout2 .get-started-form .btn {
  display: flex;
  justify-content: center;
  width: 40%;
  margin: 22px auto;
}

.checkout2 .get-started-form .term {
  text-align: center;
}

/* Verify */
.verify.checkout2 h1 {
  padding-top: 25px;
  padding-bottom: 0 !important;
}

p.verify-passage {
  text-align: center;
  margin-top: 20px;
}

.verify-passage.txt-error {
  margin-top: 10px;
}

/* Blog */
section#featured-blogs {
  padding-bottom: 0;
}

.blog-detail {
  grid-template-columns: 100%;
}

section#featured-blogs .blog-content {
  height: auto !important;
  min-height: auto !important;
}

.blog-detail h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: inherit !important;
  line-height: 34px !important;
}

.blog-detail h3 {
  font-size: 20px;
  text-align: inherit !important;
  line-height: inherit !important;
}

.blog-detail h4 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: inherit !important;
  line-height: inherit !important;
}

section#blog-detail #toc ul {
  margin-left: 10px;
  text-indent: -24px;
}

.blog-detail .author img {
  max-width: 78px;
  margin-right: 15px;
  border-radius: 50%;
}

.blog-detail .author h6,
.blog-detail .author .h6 {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}

.blog-detail .blog-ad-info .author .h6 {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}

.blog-detail .blog-info .read i {
  color: #fff;
}

.blog-detail .blog-info .author p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
  margin: 0;
}

.blog-detail .blog-info .read {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
}

.blog-detail .blog-info .read p {
  font-size: 14px;
  color: #fff;
}

.blog-detail .blog-info .read i {
  font-size: 12px;
}

.blog-detail .blog-ad-info {
  margin: 10px 0;
  margin-bottom: 50px;
}

.blog-detail .blog-ad-info ul {
  display: flex;
  font-size: 12px;
  gap: 30px;
  list-style: none;
  justify-content: center;
  padding: 0;
}

.blog-detail .blog-ad-info ul i {
  color: var(--primary-color);
  margin-right: 5px;
}

.blog-detail-img {
  border-radius: 10px;
}

.blog-detail .content-type {
  border-radius: 20px;
  padding: 0px 0px 30px 0px;
  margin: 35px 0;
  margin-right: auto;
  width: 80%;
  background-color: var(--secondary-color);
}

.blog-detail .content-type ol {
  line-height: 38px;
  padding-left: 1rem;
  margin: 0;
}

.blog-detail .content-type a {
  color: #000;
  transition: 0.3s;
}

.blog-detail .content-type ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--dark-color);
  position: absolute;
  left: -20px;
  top: 10px;
  margin-right: 10px;
  margin-right: 10px;
}

.blog-detail .content-type ul li {
  position: relative;
  text-indent: 0px;
  list-style-type: none;
}

.content-type-btn {
  cursor: pointer;
  margin: 40px;
  font-weight: 700;
}

.right__arrow {
  color: var(--primary-color);
  margin-right: 20px;
}

.content-type ul {
  margin: 0px;
  padding: 0px 30px 5px 45px;
}

.blog-detail .content-type a:hover {
  color: var(--primary-color);
  transition: 0.3s;
}

.blog-detail .content {
  margin-bottom: 40px !important;
}

.blog-detail .author-box {
  margin-top: 50px;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 20px;
}

.blog-detail .author-box p,
.blog-detail .author-box h6,
.blog-detail .author-box .h6 {
  color: #fff;
}

.blog-detail .social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 20px;
  transition: 0.3s;
}

.blog-detail .author-box .author {
  align-items: flex-start;
}

.blog-detail .social-icons a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 24px;
  margin: 0 20px;
  transition: 0.3s;
}

.sidebar {
  margin-left: 30px;
}

.sidebar .sidebar-search {
  background: var(--secondary-color);
  margin-bottom: 30px;
  padding: 16px;
  border-radius: 10px;
}

.sidebar .search-form {
  display: flex;
  justify-content: space-between;
}

.sidebar .search-form input {
  width: 100%;
  background-color: transparent;
  outline: 0;
  border: none;
  font-size: 15px;
}

.sidebar .search-form .search-btn {
  border: none;
  outline: none;
  background: 0 0;
}

.sidebar .search-form .search-btn i {
  color: #000;
  font-size: 20px;
}

.sidebar-content .category {
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
}

.sidebar-content .category.img-banner {
  background-image: url(../images/blog-sidebbar.png);
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.sidebar-content .category.img-banner h4,
.sidebar-content .category.img-banner .h4 {
  color: #fff;
  line-height: 30px;
  max-width: 75%;
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar-content .category.img-banner .btn {
  color: #fff;
  justify-content: center;
  max-width: 254px;
  padding: 12px;
}

.sidebar-content .category ul {
  padding-left: 0;
}

.sidebar-content .category li img {
  margin-right: 10px;
}

.sidebar-content .category li {
  list-style: none;
  padding: 12px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.sidebar-content .category li:hover {
  background-color: #fff;
  transition: 0.3s;
}

.sidebar-content a {
  display: flex;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

#featured-blogs .featured-blog.blog-col {
  margin: 0;
  margin-right: 45px;
}

#featured-blogs h4.heading,
#featured-blogs .h4.heading {
  font-weight: 400;
  margin-bottom: 15px;
}

.featured-posts .post {
  padding: 10px 0;
  border-bottom: 1px solid #000;
}

.featured-posts .post:last-child {
  border-bottom: none;
}

.featured-posts .author i {
  font-size: 14px;
  color: var(--primary-color);
  margin-right: 10px;
}

.featured-posts .post p {
  font-size: 12px;
  font-weight: 400;
}

#featured-blogs .latest-blogs {
  padding-top: 40px;
}

#google-blog {
  padding: 0px;
}

#google-blog .blog-crousel {
  margin-bottom: 90px !important;
}

#google-blog .slick-arrow {
  display: none !important;
}

#google-blog .slick-dots {
  bottom: -80px;
}

#google-blog .slick-dots li {
  margin: 0 4px;
}

#google-blog .slick-dots button:before {
  opacity: 1;
  color: #fff;
  font-size: 11px;
  transition: 0.3s;
}

#google-blog .slick-active button:before {
  color: var(--primary-color);
  font-size: 18px;
  transition: 0.3s;
}

.latest-blogs .blog-col {
  margin: 15px 10px;
}

.blog-pagination {
  margin-top: 60px;
}

.blog-pagination .pagination {
  justify-content: center;
}

.blog-pagination .page-item {
  margin: 0 20px;
  display: flex;
  align-items: center;
}

.blog-pagination .page-link {
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: #000;
  border: none;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.blog-pagination .page-link:hover,
.blog-pagination .page-link:focus,
.blog-pagination .page-link.active {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
}

.blog-pagination .page-item img {
  display: flex;
  transition: 0.3s;
}

.blog-pagination .page-item:hover img {
  filter: brightness(0);
  transition: 0.3s;
}

.blog-pagination .page-item .arrow-prev img {
  transform: scaleX(-1);
}

/* -------------- blog detail new css -------------- */

#blog-detail .blog-detail {
  width: 100% !important;
}

#blog-detail .col-12 {
  flex: 0 0 auto;
  width: 65%;
}

#blog-detail .row {
  flex-wrap: nowrap;
  gap: 35px;
}

#blog-detail .side-bar {
  flex: 0 0 auto;
  width: 30%;
}

.sidebar-wrapper {
  position: relative;
}

.who-slider .h5 {
  padding: 20px 10px 10px;
}

/* ------------end ------- */
.who-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
}

.who-slider .h2 {
  width: 100%;
}

.who-slider .col-md-4 {
  width: 31.5%;
}

/* --------- blog detail tools ------- */
.blog-detail .content-tool {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.blog-detail .tools {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0px;
  margin-left: auto;
  order: 2;
}

.blog-detail .tools .h5 {
  margin-bottom: 0px;
}

.blog-detail .tools-img.social-tools {
  display: flex;
  gap: 20px;
}

.blog-detail .comment-form .h5 {
  margin-bottom: 20px !important;
}

.blog-detail .form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.blog-detail .form input input {
  width: 100%;
  margin-bottom: 10px;
  border: none;
}

.blog-detail .form input:first-child,
.blog-detail .form input:nth-child(2) {
  width: 48% !important;
  background-color: var(--secondary-color);
  border: none;
  box-shadow: 0px 0px 4px 0px #0000000f inset;
  height: 48px;
  border-radius: 10px;
  outline: var(--primary-color);
  padding: 20px;
}

.blog-detail .comment-form textarea {
  margin-top: 0px;
  background-color: var(--secondary-color);
}

/* ------------- who slider ------------ */

.blog-details .who-use-col {
  background: var(--secondary-color) !important;
  border-radius: 10px !important;
  padding-bottom: 10px;
}

.blog-details .who-use-col img {
  border-radius: 10px;
}

.who-use-col .date {
  gap: 10px;
}

.who-slider {
  margin-top: 0px !important;
}

.splide__track {
  margin-bottom: 40px;
}

.who-slider .splide__pagination.splide__pagination--ltr {
  display: flex;
  gap: 10px;
}

.who-slider button.splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--secondary-color);
}

.who-slider button.splide__pagination__page.is-active {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
}

.blog-detail .blog-wrapper .h2 {
  margin-bottom: 20px;
}

.blog-detail .blog-crousel .blog-info .author p {
  font-size: 12px;
  color: #000;
  margin: 0;
}

.blog-details p {
  margin-left: 0px !important;
}

/* -------------------side bar new css --------- */

#blog-detail .form-input-col {
  position: relative;
  margin-bottom: 20px;
}

#blog-detail .form-input-col input {
  width: 100%;
  height: 50px;
  background-color: var(--secondary-color);
  border: none;
  box-shadow: 0px 0px 4px 0px #0000000f inset;
  border-radius: 10px;
  outline: var(--primary-color);
  padding: 20px;
}

#blog-detail .form-input-col .search-btn {
  width: 50px;
  height: 100%;
  z-index: 10;
  pointer-events: all;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 0px 10px 10px 0px;
  background-color: var(--primary-color);
  border: none;
  cursor: pointer;
}

#blog-detail .form-input-col .search-btn img {
  filter: brightness(1000);
}

#blog-detail #groth-service {
  margin: 20px 0px;
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
}

#blog-detail #groth-service .h5 {
  color: #000 !important;
  text-align: left;
}

#blog-detail #groth-service .h3 {
  color: #000 !important;
  text-align: left !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

#blog-detail #groth-service .btn {
  margin: 10px 0px;
  color: #fff;
}

#blog-detail .side-bar .more-pages .h3 {
  width: 100%;
}

#blog-detail .side-bar .more-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0px;
}

#blog-detail .side-bar .more-pages a {
  background-color: var(--primary-color);
  padding: 5px 10px;
  color: #fff;
  border-radius: 10px;
}

#blog-detail .side-bar .more-pages a:hover {
  background-color: #000;
}

#blog-detail .side-bar .more-pages .btn img {
  filter: brightness(1000);
}

#blog-detail .side-bar .more-pages .btn:hover {
  background-color: var(--primary-color);
}

/* ---latest mini blogs -- */

#blog-detail .latest-blog {
  padding: 20px;
  border-radius: 10px;
}

#blog-detail .latest-blog .h3 {
  margin-bottom: 20px;
}

#blog-detail .latest-mini-blogs {
  list-style: none;
  padding: 0px;
}

#blog-detail .latest-mini-blogs li {
  margin-bottom: 20px;
}

#blog-detail .latest-mini-blogs li:last-child {
  margin-bottom: 0px !important;
}

#blog-detail .latest-mini-blogs li a {
  display: flex;
  align-items: center;
  gap: 20px;
}

#blog-detail .latest-mini-blogs li a:last-child {
  margin-bottom: 10px !important;
}

#blog-detail .additional-blog .social small {
  color: #000 !important;
}

#blog-detail .latest-mini-blogs li a:hover .additional-blog p {
  color: var(--primary-color);
}

#blog-detail .latest-mini-blogs li a:hover strong i {
  color: var(--primary-color);
}

#blog-detail .latest-mini-blogs li img {
  width: 33%;
  border-radius: 5px;
  height: auto;
}

#blog-detail .latest-mini-blogs li strong {
  display: none;
  align-items: center;
  gap: 20px;
}

#blog-detail .latest-mini-blogs li strong .author,
#blog-detail .latest-mini-blogs li strong .comment {
  gap: 10px;
}

#blog-detail .latest-mini-blogs li strong .author p,
#blog-detail .latest-mini-blogs li strong .comment p {
  font-size: 12px;
  font-weight: 400;
}

#blog-detail .latest-mini-blogs li strong i {
  color: #000;
  font-size: 13px;
}

#blog-detail .latest-mini-blogs p {
  margin: 0px;
  font-weight: 500;
}

#blog-detail .category-btn-col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

#blog-detail .category-btn-col .h3 {
  margin: 0px 0px 10px;
  width: 100%;
}

#blog-detail .category-btn-col a {
  color: #000;
  transition: 0.3s all;
}

#blog-detail .category-btn-col a:hover {
  color: var(--primary-color);
}

#select-service .custom-row {
  max-width: 960px;
  margin: auto;
}

.buy-page .review-steps .step-col {
  background-color: #fff;
}

.select-service-tab {
  justify-content: center;
  border: none;
}

.select-service-tab .nav-link {
  position: relative;
  border-radius: 10px;
  background-color: var(--grey-color);
  color: #000;
  border: none;
  font-size: 16px;
  font-weight: 600;
  width: 226px;
  justify-content: center;
  margin: 0 -8px;
  padding: 14px 10px;
}

.select-service-tab .nav-link:focus,
.select-service-tab .nav-link:hover {
  isolation: unset;
}

.select-service-tab .nav-link.active {
  color: #fff;
  background-color: var(--primary-color);
  z-index: 5;
}

.select-service-tab .rec {
  position: absolute;
  bottom: 52px;
  left: 24px;
  background-color: #000;
  padding: 4px 24px;
  border-radius: 10px 10px 0 0;
  z-index: 1;
}

.select-service-tab .rec p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.select-service-grid {
  background-color: var(--secondary-color);
  margin: 40px 0;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 18px;
  padding: 24px;
  border-radius: 10px;
}

.select-service-grid .select-service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background-color: #fff;
  border-radius: 7px;
  padding: 18px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.select-service-grid .select-service.active {
  color: #fff;
  background-color: var(--primary-color);
  transition: 0.3s;
}

.select-service-grid .select-service::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  right: 3px;
  background: url("../images/uncheck-icon.svg") center/cover no-repeat;
}

.select-service-grid .select-service.active::before {
  background: url("../images/check-icon.svg") center/cover no-repeat;
}

.select-service .service-count {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: var(--primary-color);
}

.select-service .service-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  color: #000;
}

.select-service.active .service-count,
.select-service.active .service-name {
  color: #fff;
  transition: 0.3s;
}

.select-service .popular {
  position: absolute;
  top: -7px;
  left: 7px;
  background-color: #22bf3a;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 5px;
}

.select-service .service-off {
  padding: 9px 0;
}

.select-service .service-off p {
  text-align: center;
  color: #37b44a;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.select-service .offer {
  background-color: #37b44a;
  border-radius: 4px;
  padding: 6px 10px;
}

.select-service .offer p {
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.select-service .offer p span {
  font-size: 8px;
  font-weight: 300;
}

.select-service .price {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #000;
  transition: 0.3s;
}

.service-cart {
  max-width: 70%;
  margin: auto;
}

.service-cart .price-old {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
}

.service-cart .offer {
  display: flex;
  gap: 6px;
  align-items: center;
}

.service-cart .offer p {
  font-size: 14px;
  color: #22bf3a;
  font-weight: 500;
  line-height: 1.5;
}

.service-cart .price {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 25px;
}

.service-cart p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #929292;
}

.service-cart .btn {
  justify-content: center;
  width: 228px;
}

.people-use {
  margin: 20px auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.people-use .people-col {
  font-size: 14px;
}

.people-use img {
  max-width: 105px;
  margin-left: 5px;
}

/* Specific styles for NewPackageSection component */
.main-new-package .people-use,
.np-main-container .people-use {
  gap: 12px 15px;
  padding: 0 10px;
}

.main-new-package .people-use .Stars_,
.np-main-container .people-use .Stars_ {
  flex-shrink: 0;
  min-width: 135px;
  max-width: 135px;
}

.main-new-package .people-use img,
.np-main-container .people-use img {
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-left: 0;
}

.main-new-package .people-use .people-col,
.np-main-container .people-use .people-col {
  line-height: 1.4;
  flex-shrink: 0;
  text-align: center;
  min-width: 0;
}

/* Responsive adjustments for NewPackageSection people-use section */
@media (max-width: 768px) {
  .main-new-package .people-use,
  .np-main-container .people-use {
    gap: 10px 12px;
    padding: 0 5px;
  }
  
  .main-new-package .people-use .Stars_,
  .np-main-container .people-use .Stars_ {
    min-width: 120px;
    max-width: 120px;
  }
  
  .main-new-package .people-use img,
  .np-main-container .people-use img {
    max-width: 90px;
  }
  
  .main-new-package .people-use .people-col,
  .np-main-container .people-use .people-col {
    font-size: 13px;
    width: 100%;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .main-new-package .people-use,
  .np-main-container .people-use {
    gap: 8px 10px;
  }
  
  .main-new-package .people-use .Stars_,
  .np-main-container .people-use .Stars_ {
    min-width: 100px;
    max-width: 100px;
  }
  
  .main-new-package .people-use img,
  .np-main-container .people-use img {
    max-width: 80px;
  }
  
  .main-new-package .people-use .people-col,
  .np-main-container .people-use .people-col {
    font-size: 12px;
  }
}

#select-service .service-features {
  padding-top: 72px;
  margin-left: 20px;
}

#select-service .service-feature-col {
  border-radius: 10px;
  padding: 10px;
  background-color: var(--grey-color);
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 16px 0;
}

#select-service .service-feature-col .feature-img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  padding: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
}

#select-service .service-feature-col svg path {
  fill: #fff;
}

#select-service .service-feature-col h6,
#select-service .service-feature-col .h6 {
  font-weight: 300;
  margin: 0;
  line-height: 20px;
}

.buy-page .content h4,
.buy-page .content .h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
}

.service-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9;
  padding: 30px 0;
  font-size: 12px;
  box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.service-popup .form-check-input {
  width: 12px;
  height: 12px;
  min-height: auto;
  padding: 0;
  border-radius: 2px;
  border-color: #000;
  margin-right: 1px;
  margin-bottom: 10px;
}

.service-popup .form-check-input:focus {
  box-shadow: none;
}

.service-popup .form-check-input:checked {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.service-popup .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
}

.service-popup .likes-toggle-btn {
  background-color: var(--primary-color);
  border-radius: 25px;
  color: #fff;
  max-width: 190px;
  width: 100%;
  margin-right: 5px;
  display: inline-flex;
  min-height: 46px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 2px;
}

.service-popup .likes-toggle-btn p {
  font-size: 20px;
  line-height: 0.6;
  font-weight: 700;
  margin: 0;
}

.service-popup .likes-toggle-btn span {
  color: #fff;
  font-size: 12px;
}

.service-popup .likes-toggle-btn span.lmt {
  font-size: 18px;
  line-height: 20px;
}

.service-popup .plus-toogle,
.service-popup .minus-toogle {
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 1px;
  text-align: center;
  cursor: pointer;
}

.service-popup .plus-toogle.end,
.service-popup .minus-toogle.end {
  background-color: #fff;
  color: #000;
}

.service-popup .btn {
  padding: 12px 20px;
  font-size: 12px;
}

.service-popup .btn img {
  margin-left: 15px;
}

.expert-google-page .select-service-tab {
  display: none;
}

.expert-google-page .select-service-grid {
  margin-top: 0;
}

.expert-google-page #select-service .service-features {
  padding-top: 0;
}

.expert-google-page #select-service .service-feature-col:first-child {
  margin-top: 0;
}

.team-section .heading {
  font-weight: 600;
}

.team-section .team-img {
  border-radius: 15px;
  max-height: 584px;
  object-fit: cover;
  width: 100%;
}

.team-section h3,
.team-section .h3 {
  font-size: 28px;
  font-weight: 500;
}

.team-section .social-icons {
  margin-top: 30px;
}

.team-section .social-icons a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 20px;
  margin-right: 26px;
  transition: 0.3s;
}

.team-section.blue-bg {
  position: relative;
  overflow: hidden;
}

.team-section.blue-bg:before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--secondary-color);
  height: 100%;
  width: 60%;
  left: 0;
  top: 0;
}

.contact-sales {
  background: linear-gradient(180deg, #fff 40%, var(--secondary-color) 40%);
}

.contact-sales .hit-now-col h2 {
  max-width: 100%;
}

.contact-sales .contact-sale-txt {
  max-width: 60%;
}

.sub-power .step-col {
  text-align: center;
  padding: 30px 18px;
}

.sub-power .step-col .h5 {
  margin-bottom: 8px;
}

.sub-power .step-col .feature-img {
  position: relative;
  margin: auto;
  width: 58px;
  height: 58px;
  background-color: var(--primary-color);
  display: flex;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.sub-power .step-col .feature-img svg {
  width: 100%;
  padding: 10px;
}

.sub-power .step-col:hover .feature-img {
  background-color: #fff;
  transition: 0.3s;
}

.sub-power .step-col:hover .feature-img svg path {
  fill: var(--primary-color);
  transition: 0.3s;
}

.blurme {
  position: relative;
}

.blurme .subscription-plan-grid {
  position: relative;
  filter: blur(12px);
  width: 100%;
  height: 100%;
}

.comingsoon {
  position: absolute;
  font-size: 107px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  text-shadow: 1px 2px 10px #fff;
}

.coming-soon-overlay {
  display: flex;
  backdrop-filter: blur(7px);
  position: absolute;
  height: 90%;
  width: 80%;
  top: 5%;
  left: 10%;
  background-color: #e1f1fdcc;
  flex-direction: column;
  justify-content: center;
}

.coming-soon-overlay .h2 {
  font-size: 46px;
  margin-bottom: 14px;
  line-height: 46px;
  margin-top: -114px;
}

.coming-soon-overlay .h1 {
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 30px;
}

.coming-soon-overlay .subscribe-form {
  position: relative;
  display: flex;
  width: 47%;
  margin: 0 auto;
  margin-bottom: 24px;
}

.coming-soon-overlay .subscribe-form input {
  height: 56px;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  outline: 0;
  border: none;
}

.coming-soon-overlay .subscribe-form .btn {
  position: absolute;
  right: 4px;
  top: 4px;
}

/* ----------------get started 2 -------------------- */

.get-started-2 {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 30px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}

.get-started-2-2 {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 30px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
}

/*.get-started-2 p {
  padding-bottom: 15px;
}
*/
.get-started-2 .form .input,
.get-started-2 .form .textarea {
  background-color: var(--secondary-color);
  font-size: 15px;
}

.get-started-2 .get-radio-btn {
  padding-bottom: 20px;
}

.get-started-2 .bussiness-details {
  margin: 0px;
  padding: 0px;
}

.get-radio-btn .requirement {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.requirement input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.requirement input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 0.5px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  background: #fff;
}

.requirement input[type="checkbox"]:checked::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #2eb818;
  position: absolute;
  top: 6px;
  left: 4px;
  border-radius: 50%;
}

.get-started-2 .requirement input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  color: #000;
  border: 1px solid #9f9f9f;
}

.get-started-2 .requirement input[type="checkbox"]:checked::before {
  content: "";
  width: 19px;
  height: 20px;
  background: #2eb818;
  background-image: url("../images/check.svg");
  background-position: center;
  background-size: 13px;
  position: absolute;
  background-repeat: no-repeat;
  object-fit: contain;
  top: 12px;
  left: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.get-radio-btn .password-requirements .requirement {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  position: relative;
  margin-bottom: 10px;
}

.get-radio-btn .password-requirements {
  display: grid;
  align-items: center;
  row-gap: 10px;
}

.get-started-2 .h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 5px;
  position: relative;
}

/* .get-started-2 .h4::before {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 580px;
  height: 1px;
  background-color: #00000017;
  top: -18px;
  left: -30px;
} */

.get-started-2 .form-input {
  text-align: left;
  width: 100%;
  border-radius: 10px;
  border: none;
  background: var(--secondary-color);
  min-height: 55px;
  outline: none;
  padding: 10px 18px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
  color: var(--text-color);
  margin-top: 10px;
  position: relative;
}

.get-started-2 .dropdown-btn:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/arrow-down.svg) center/ contain no-repeat;
  width: 14px;
  height: 14px;
}

.get-started-2 .col-md-12 {
  position: relative;
}

.get-started-2 .dropdown-menu {
  display: none;
  background-color: white;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  max-height: 228px;
  overflow-y: scroll;
  border: solid 1px #cdcdcd;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  z-index: 9;
}

.get-started-2 .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  cursor: pointer;
  border-bottom: 1px solid #cdcdcd;
}

.get-started-2 .dropdown-item:last-child {
  border-bottom: none;
}

.get-started-2 .form-input span {
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  padding-left: 5px;
}

.dropdown-menu.active .get-started-2 .dropdown-btn:after {
  rotate: 90deg;
}

.get-started-2 .get-started-form .btn {
  justify-content: center;
  width: 40%;
  margin-top: 22px;
  margin-bottom: 0px;
  background-color: var(--primary-color);
}

.get-started-2 .get-started-form .btn:hover {
  background-color: #000;
}

.otp-input {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 220px;
  margin: 30px auto 30px;
}

.otp-box {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #4663ac5c;
}

.verify .btn {
  display: flex;
  justify-content: center;
  width: 225px !important;
  margin: 25px auto 0px;
}

.verify h1::before {
  content: none !important;
}

.success .get-started-col {
  padding: 100px 60px;
  margin-bottom: 30px;
  box-shadow: unset;
  background-color: transparent;
  padding-bottom: 0px !important;
}

.success .get-started-col img.success-img {
  display: block;
  margin: 0px auto 30px;
}

.success h1 {
  padding-bottom: 0px !important;
  margin-bottom: 10px !important;
}

.checkout2 h1::before,
.success h1:before {
  content: none !important;
}

.success .success-btn {
  display: flex;
  align-items: center;
}

.success .success-btn .btn {
  width: unset !important;
}

.success .btn {
  display: flex;
  justify-content: center;
  width: 195px;
  margin: 10px auto 0px;
}

.success .btn:first-child {
  background-color: #000;
}

.success .btn:first-child:hover {
  background-color: var(--primary-color);
}

.success .verify-passage {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0px;
}

.success .verify-passage span {
  font-weight: 500;
  color: var(--primary-color);
}

.success .thanks-wrapper {
  width: 50%;
  margin: 0 auto;
  box-shadow: 0px 4px 11px 0px #00000021;
  border-radius: 20px;
}

.success .thanks-main-wrapper {
  border: 0.5px solid #ffffff;
  padding: 20px;
  border-radius: 20px;
}

.success .success-wrapper {
  background: var(--primary-color);
  padding: 10px 10px 40px;
  border-radius: 20px 20px 0px 0px;
}

.success .success-wrapper .h4 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 20px 0px;
}

.success .success-wrapper strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #2eb818;
  border-radius: 8px;
  padding: 2px 8px;
  display: flex;
  justify-content: center;
  width: 167px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}

.success .annual-chart {
  padding: 15px 20px;
  margin: 20px;
  border: 2px solid #d1d1d1;
  border-radius: 15px;
  background-color: var(--grey-color);
}

.success .annual-chart.active {
  background-color: var(--secondary-color);
  border: 2px solid #4663ac;
}

.thanks-content {
  background: #fff;
  border-radius: 0px 0px 20px 20px;
  padding: 20px 0px;
}

.success .pricing-chart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.success .thanks-content h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0px;
}

.success .thanks-content h4 span {
  font-size: 13px;
  font-weight: 400;
  color: #969696;
}

.success .thanks-content small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
  padding-left: 20px;
  text-align: center;
}

.success .thanks-content small span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.success .thanks-content small b {
  font-size: 13px;
  font-weight: 400;
  color: #000;
}

.success .thanks-content p {
  text-align: center;
  border-top: 1px solid #0000000f;
  padding-top: 20px;
  margin-top: 20px;
}

.success .thanks-content .btn {
  background-color: #000;
  margin: 20px auto 0px;
}

.success .thanks-content .btn:hover {
  background-color: var(--primary-color);
}

.success .skip-btn {
  font-size: 15px;
  font-weight: 500;
  background-color: transparent !important;
  color: #000 !important;
  padding: 0px !important;
}

.checkout2 h1::before {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 580px;
  height: 1px;
  background: #00000017;
  bottom: 0px;
  left: -30px;
}

/* --------------------------subscription-plan ------------------- */

.subscription-plan .main-billing-wrapper {
  background-color: #fff;
  border-radius: 16px;
  margin: 20px;
  padding: 25px 35px;
}

.subscription-plan .billing-wrapper {
  display: grid;
  row-gap: 5px;
  border-bottom: 0.5px solid #9f9f9f75;
}

.subscription-plan .billing-plans,
.subscription-plan .cancel-btn {
  width: 50%;
}

.subscription-plan .plan-type {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  padding-left: 0px;
  margin-bottom: 10px;
}

.subscription-plan .plan-type li:first-child {
  font-size: 18px;
  font-weight: 500;
}

.subscription-plan .plan-type li:last-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.subscription-plan .billing-wrapper .btn {
  display: block;
  border: 0.5px solid #00000073;
  background-color: transparent;
  color: #e80000;
  padding: 10px 40px;
  margin-left: auto;
  width: 160px;
}

.subscription-plan .modify-plan {
  padding: 14px 0px;
  border-bottom: 0.5px solid #9f9f9f75;
}

.subscription-plan .modify-plan .h2 span {
  font-size: 22px;
  font-weight: 400;
  color: #000;
}

.subscription-plan .modify-plan .btn {
  background-color: #4663ac21;
  border-radius: 9px;
  padding: 3px 14px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  margin: 14px 0px 18px 0px;
  border: 1px solid #4663ac;
  text-transform: capitalize;
}

.subscription-plan .cancel-plan-btn {
  background-color: #e8000033 !important;
  border: 1px solid #e80000 !important;
  color: #e80000 !important;
  margin-left: 30px !important;
}

.subscription-plan .modify-plan p {
  font-weight: 400;
}

.subscription-plan .modify-plan h5 {
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 0px;
}

.subscription-plan .payment-methods {
  padding: 14px 0px;
  border-bottom: 0.5px solid #9f9f9f75;
}

/* .subscription-plan .payment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
} */

.subscription-plan .payment-methods ul {
  list-style: none;
  padding-left: 0px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.subscription-plan .payment-methods ul li {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.subscription-plan .payment-methods ul li:last-child {
  font-size: 13px;
  font-weight: 300;
  color: #acacac;
}

.subscription-plan .payment-methods ul li:first-child img {
  background-color: #f9f6ef;
  border-radius: 7px;
  width: 45px;
  height: 19px;
  padding: 3px 10px;
  object-fit: contain;
}

.subscription-plan .payment-methods p {
  font-size: 14px;
  font-weight: 300;
  color: #acacac;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  cursor: pointer;
}

.subscription-plan .payment-methods h5 {
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 0px;
}

.subscription-plan .dashboard-tabs::after {
  min-height: 766px;
}

.subscription-plan .invoice {
  padding: 14px 0px 0px;
}

.subscription-plan .invoice-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  gap: 90px;
}

.subscription-plan .invoice-wrapper .date p {
  font-size: 14px;
  font-weight: 300;
  color: #acacac;
  margin-bottom: 0px;
}

.subscription-plan .payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f6ef;
  border-radius: 7px;
  width: 45px;
  height: 19px;
}

.subscription-plan .payment-logo img {
  width: 23px;
  height: 14px;
  object-fit: contain;
}

.subscription-plan .invoice-wrapper .cost p {
  font-size: 14px;
  font-weight: 300;
  color: #acacac;
  margin-bottom: 0px;
}

.subscription-plan .invoice-wrapper .plan p {
  margin-bottom: 0px;
}

.subscription-plan .invoice .view-more a {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-decoration: none;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 8px;
}

.subscription-plan .invoice .view-more a img {
  rotate: 90deg;
  width: 7px;
  height: 10px;
}

.chide {
  display: none;
}

.star {
  height: 20px;
  width: 30px;
  background-color: #ffa500;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.testi-col .rating {
  max-width: 150px;
}

/* moving text Start */
.moving-text {
  margin-bottom: 50px;
  overflow-x: hidden;
  white-space: nowrap;
}

.moving-text-wrapper {
  width: 50%;
  white-space: nowrap;
}

.moving-text-wrapper:hover .moving_text-child {
  animation-play-state: paused;
}

.card-child {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: row; */
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.card {
  border-radius: 20px;
  margin-right: 25px;
  border: none;
  white-space: nowrap;
  display: inline-block;
  width: 440px;
  height: 290px;
}

.moving_text-child {
  white-space: nowrap;
  animation-name: move;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
  /* Ensure animation is running by default */
  display: inline-block;
  white-space: nowrap;
}

.moving-text::-webkit-scrollbar {
  display: none;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.testi-col {
  margin: 0px;
  display: inline-block;
  height: 100%;
}

.review {
  width: 100%;
  text-wrap: wrap;
}

/* moving text Start */
.moving-text-2 {
  overflow-x: hidden;
  white-space: nowrap;
}

.moving-text-wrapper-2 {
  width: 50%;
  white-space: nowrap;
}

.moving-text-wrapper-2:hover .moving_text-child-2 {
  animation-play-state: paused;
  /* Pause all child animations on hover */
}

.card-child-2 {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.card-2 {
  border-radius: 20px;
  margin-right: 25px;
  border: none;
  white-space: nowrap;
  display: inline-block;
  width: 440px;
  height: 290px;
}

.moving_text-child-2 {
  white-space: nowrap;
  animation-name: move-2;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
  display: inline-block;
  white-space: nowrap;
}

.moving-text-2::-webkit-scrollbar {
  display: none;
}

@keyframes move-2 {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

:root {
  --star-color: #fff;
  --star-background: #fc0;
}

.Stars_ {
  max-width: 120px;
  --percent: calc(var(--rating) / 5 * 100%);

  display: inline-block;
  font-size: 28px;
  font-family: Times;
  line-height: 1;

  &::before {
    content: "★★★★★";
    letter-spacing: 2px;
    background: linear-gradient(
      90deg,
      var(--star-background) var(--percent),
      var(--star-color) var(--percent)
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.card:nth-child(odd) {
  background-color: var(--secondary-color);
}

.card:nth-child(even) {
  background-color: var(--grey-color);
}

.card-2:nth-child(odd) {
  background-color: var(--secondary-color);
}

.card-2:nth-child(even) {
  background-color: var(--grey-color);
}

/* New Checkout page start */
#checkout {
  font-family: "Inter", sans-serif;
}
#checkout.new-check-us > .container {
  max-width: 965px;
}

#checkout .payment-options {
  max-width: 450px;
  margin: 0;
}

#checkout .payment-option {
  display: block;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s;
  background: #ffffff;
}
#checkout .payment-option input[type="radio"] {
  display: none;
}

#checkout .radio-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  vertical-align: middle;
  float: left;
  margin-top: -2px;
}
.payment-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-option.first-opt {
  position: relative;
}
.recom {
  position: absolute;
  top: -17px;
  right: 0;
  border-radius: 10px 10px 0px 0px;
  background: #31a400;
  color: #fff;
  text-align: center;
  width: 91px;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  margin: 0;
}
.apply-coupon {
  margin-bottom: 20px;
}

#checkout .radio-icon svg {
  width: 24px;
  height: 24px;
  display: none;
}

#checkout input[type="radio"]:checked + .radio-icon .checked {
  display: inline;
}

#checkout input[type="radio"]:checked + .radio-icon .unchecked {
  display: none;
}

#checkout input[type="radio"] + .radio-icon .unchecked {
  display: inline;
}
.cart-detail .custom-checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #282828;
}
#checkout .accordion-content,
#checkout .accordion-content-card {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
  font-size: 14px;
  color: #555;
  width: 100%;
}
#checkout
  .payment-option
  input[type="radio"]:checked
  ~ .accordion-content-card {
  max-height: 200px;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: sans-serif;
  margin: 15px 0 0;
  font-size: 14px;
  color: #000;
}
.custom-checkbox a {
  color: #4c6fc7;
  font-size: 14px;
  padding: 0 3px 0 2px;
}
.custom-checkbox a:hover {
  color: #000;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.checkbox-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #007bff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  background: white;
  transition: background 0.3s, border-color 0.3s;
}

.checkbox-icon svg.check {
  display: none;
  width: 16px;
  height: 16px;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-icon {
  background: #007bff;
  border-color: #007bff;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-icon svg.check {
  display: block;
}
.check-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.4px;
  margin: 0 0 30px;
  line-height: 1;
}
.checkout-left-main {
  max-width: 450px;
  background: #f8f9fe;
  padding: 20px 10px;
  border: 1px solid #cdd9f6;
  border-radius: 20px;
  width: 100%;
  float: left;
}
.card-notice {
  font-size: 12px;
  font-weight: 400;
  color: #282828;
  background: #f3f3f3;
  padding: 10px;
  border-radius: 12px;
  margin-top: 15px;
  margin-bottom: 25px;
}
.cart-detail label {
  display: block;
}
.cart-detail input {
  height: 40px;
  padding: 0 14px;
  width: 100%;
  border: 1px solid #8b8b8b;
  border-radius: 10px;
}
.cart-detail div label {
  display: block;
  position: absolute;
  background: #ffffff;
  left: 10px;
  top: -7px;
  color: #282828;
  font-size: 10px;
  padding: 0 4px;
}
.cart-detail > div {
  position: relative;
  margin-bottom: 15px;
}
.payment-icons span {
  color: #282828;
  font-size: 14px;
  font-weight: 600;
}
.cart-detail > div > div {
  position: relative;
  width: 49%;
}
.card-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.checkout-right-main .accordion-container {
  width: 100%;
  max-width: 600px;
  margin: 0;
  font-family: sans-serif;
}

.checkout-right-main .accordion-item {
  border: 1px solid #cdd9f6;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.checkout-right-main .accordion-header {
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  color: #4663ac;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.36px;
}

.checkout-right-main .accordion-content {
  max-height: 0;
  overflow: hidden;
  /*transition: max-height 0.3s ease;*/
  padding: 0 15px;
}

.checkout-right-main .accordion-content.open {
  padding: 15px;
  max-height: 1000px; /* Large enough to expand fully */
}

.checkout-right-main .slick-slider .slide {
  color: white;
  padding: 0px;
  margin: 15px 15px 2px;
  text-align: center;
  border-radius: 10px;
}
.checkout-content {
  display: inline-block;
}
.checkout-right-main {
  max-width: 450px;
  width: 100%;
  float: right;
}
#checkout .checkout-right-main .accordion-content.open {
  max-height: 100%;
  transition: max-height 0.3s ease;
}
#checkout .checkout-right-main .accordion-content {
  transition: none;
  padding: 0;
}
#checkout .checkout-right-main .accordion-content .list-star {
  padding: 0 0 0 15px;
  list-style: none;
}
#checkout .checkout-right-main .accordion-content .list-star li:before {
  background-image: url(../images/star-icon.svg);
  background-repeat: no-repeat;
  background-position: left;
  content: "";
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-right: 6px;
}
#checkout .checkout-right-main .accordion-content .list-star li {
  color: #000;
  font-size: 14px;
  line-height: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.14px;
}
#checkout .checkout-right-main .accordion-content .list-star li:last-child {
  margin-bottom: 0;
}
.accordion-item.sec .accordion-header {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 700;
}
.accordion-item.sec .accordion-header svg {
  margin-right: 10px;
  margin-top: -1px;
}
.accordion-item .accordion-header {
  cursor: default;
}
.slide-inner {
  border: 1px solid #cdd9f6;
  border-radius: 20px;
  position: relative;
  padding-top: 38px;
}
.top-info {
  position: absolute;
  right: 0;
  top: 0;
  background: #4663ac0d;
  color: #4663ac;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 228px;
  padding: 6px 0;
  border-radius: 20px 20px 0px 20px;
}
.top-info span {
  float: left;
  margin-left: 10px;
}
.review-pack {
  text-align: left;
  padding-left: 25px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
}
.review-pack span {
  color: #4663ac;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
}
.addon-price {
  text-align: left;
  padding-left: 25px;
  padding-left: 25px;
  font-weight: 500;
  color: #929292;
  font-size: 10px;
  margin: 0 0 5px;
}
.addon-price span {
  text-decoration: line-through;
  padding-right: 7px;
}
.man-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px 25px;
}
.man-price p {
  color: #31a400;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  margin: 0;
}
.man-price .add-btn {
  border-radius: 12px;
  background: #31a400;
  width: 124px;
  height: 33px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  box-shadow: none;
  outline: 0;
}
.man-price .add-btn.added {
  background: #f4ffef;
  color: #31a400;
}
.buy-till {
  max-width: 300px;
  background: #f0ffe9;
  border-radius: 1px;
  margin: 0 auto 1px;
  font-size: 14px;
  color: #31a400;
  font-weight: 600;
  text-align: center;
  line-height: 17px;
}
.accordion-content .slick-dots li button:before {
  font-size: 0;
  line-height: 20px;
  width: 14px;
  height: 14px;
  content: "";
  text-align: center;
  opacity: 1;
  color: #4663ac;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 2px solid #4663ac;
  border-radius: 50%;
}
.accordion-content .slick-dots li {
  margin: 0;
}
.accordion-content .slick-dots li.slick-active button:before {
  opacity: 1;
  background: #4663ac;
}
.order-summary-main {
  border: 1px solid #cdd9f6;
  border-radius: 20px;
  padding: 15px;
}
.order-summary-main h3 {
  color: #4663ac;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.order-prev {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-prev p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.order-prev p span {
  color: #4663ac;
  padding-right: 2px;
}
.order-prev .order-price {
  font-weight: 400;
  color: #000;
}
.total-cart .place-form {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
.total-cart p {
  margin: 0 15px 0 0;
  font-size: 28px;
  font-weight: 700;
}
.total-cart p span {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.place-order {
  width: 160px;
  height: 42px;
  background: #4663ac;
  color: #fff;
  border: 0;
  font-weight: 600;
  border-radius: 18px;
  font-size: 20px;
}

.apply-coupon .coupon-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 15px;
  max-width: 100%;
  background: #fff;
  flex-wrap: wrap;
}
.coupon p {
  margin: 10px 0 0;
  line-height: 1;
  font-size: 12px;
}

.apply-coupon .coupon-wrapper svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #555;
}

.apply-coupon .coupon-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #4c4848;
  font-weight: 600;
}

.apply-coupon .apply-btn {
  background-color: transparent;
  color: red;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #4663ac;
  cursor: pointer;
  font-weight: bold;
  margin-left: 0;
}
.coupen-inner {
  display: flex;
  width: 100%;
  border: 1px solid #4663ac;
  border-radius: 20px;
  padding: 7px 12px;
  align-items: center;
}
.order-addon {
  display: flex;
  justify-content: space-between;
  margin: 5px 0 0;
}
.order-addon p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.order-addon p span {
  color: #31a400;
}
.order-addon .order-price {
  font-weight: 400;
  color: #000;
}
.coupon-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 0;
}
.coupon-code p {
  margin: 0;
}
.c_code_line {
  font-weight: 600;
  color: #000;
}
#CouponCodeValid {
  color: #31a400;
}
.checkout-right-main button[disabled]{
  opacity: 0.5;
  cursor: default;
}
.whours p {
    color: #fff;
}
.whours p a{
  color: #fff;
}
.whours p a:hover{
  color: #4663ac;
}
.whours{
  margin-top: 30px;
  margin-bottom: 30px;
}
.whours p span:first-child {
    font-weight: 600;
  }
.bottom-text{
  margin-bottom: 0;
}
.formob {
    display: none;
}
/* css for new testimonial start */
 .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .testimonials-title {
            text-align: center;
            margin: 20px 0 30px;
            font-size: 2rem;
            color: #333;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .test-heading {
          font-weight: 700;
          font-size: 18px;
          margin-bottom: 10px;
      }

        .testimonial-card {
              border: 1px solid #e0e0e0;
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .testimonial-content {
            margin-bottom: 15px;
            font-size: 1rem;
            line-height: 1.5;
            color: #555;
        }

        .testimonial-author {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .testimonial-date {
            font-size: 0.8rem;
            color: #888;
        }

        .read-more-btn {
            display: block;
            margin: 30px auto;
            padding: 12px 25px;
            background-color: #4663ac;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .read-more-btn:hover {
            background-color: #3a5bef;
        }

        .hidden {
            display: none;
        }
/* css for new testimonial end */
/* topbar start */
.topbar .sale-txt {
    margin: 0;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
.topbar{
      background: #4663ac;
      position: relative;
    top: -12px;
}
.topbar .discount {
    background: #000;
    color: #fff;
    padding: 2px 5px 2px;
    font-weight: 600;
    line-height: 1;
}
@media screen and (max-width: 768px) {
  .topbar {
    top: -2px;
  }
}
/* topbar end */
.get-started-col .form label p{text-align: left;}
/* New getstarted page start 
.get-started2.bg-second{
  background: #ffffff;
  font-family: "Inter", sans-serif;
}
#get-started .get-started-col{
  box-shadow: none;
  border: 1px solid #D9D9D9;
}
.get-started-2 .form .input, .get-started-2 .form .textarea{
  background: #fff;
  border:1px solid #D9D9D9;
  font-size: 16px;
}
.get-started-2 .form .input:focus{
  border:1px solid #4663AC;
}
.get-started-2 input::placeholder, 
.get-started-2 input::-webkit-input-placeholder, 
.get-started-2 input:-moz-placeholder, 
.get-started-2 input::-moz-placeholder,
.get-started-2 input:-ms-input-placeholder{
  color: #757070
}
span.diff {
    color: #4663AC;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 10px;
    display: block;
    text-align: center;
}

#get-started .get-started-col img{
  display: block;
  margin: 0 auto;
}
.get-started-2 .get-started-form .btn img {
    display: none !important;
}
#get-started .get-started-col h1{
    color: #4663AC;
    font-size: 30px;
    margin-top: 10px;
}
.get-started-col .form label p{
  font-weight: 600;
}    
.get-started-2 .get-started-form .btn{
  font-size: 18px;
  margin-top: 0;
  font-weight: 600;
}
.bussiness-details p.bus-note {
    margin: 25px 0 15px;
}
.bussiness-details p{
  text-align: left !important;
  font-size: 14px;
  color: #4D4D4D;
  margin-bottom: 0 !important;
}
.bussiness-details p a{
  color: #4663ac;
  text-decoration: underline;
}
.bussiness-details .bus-note span {
    color: #4663ac;
    font-weight: 700;
}
.get-started-form .col-md-12{
  padding: 0;
}
.get-started-form .row{
  margin: 0;
}
/* New getstarted page end */

/* New package design start */
.new-package {
  font-family: "Inter", sans-serif;
}
.new-package .select-service-grid{
  font-family: "Inter", sans-serif;
  grid-gap: 30px;
  background: transparent;
}
.package-recm {
    position: absolute;
    top: -18px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 auto;
    background: #31A400;
    line-height: 17px;
    left: 0;
    right: 0;
    max-width: 94px;
    border-radius: 4px 4px 0 0;
}
.service-cart .price-old{
  display: none !important;
      font-size: 14px;
    color: #929292;
}
.buy-col {
    display: block !important;
}
.yousave {
    display: none !important;
    justify-content: center;
    margin-bottom: 15px;
}
.service-cart .offer{
  gap: 3px;
}
.service-cart .btn{
      font-size: 16px;
    font-weight: 600;
    padding: 7px 30px;
    width: auto;
    margin: 0 5px;
}
.service-cart .btn img{
      margin: 0;
    width: 20px;
}
.service-cart{
  max-width: 100%;
  text-align: center;
}
.buy-col .d-flex{
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.service-cart p{
  margin: 0 3px 0 !important;
}
.service-cart .btn.buy_apay {
    background: #fff;
    border: 1px solid #4663ac;
    color: #4663ac;
    display: none;
}
.select-service-grid .select-service{
      border: 1px solid #D9D9D9;
      border-radius: 10px;
      padding: 10px 0 0;
}
.select-service div.service-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #4663AC;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
}
.select-service.active div.service-name {
    background: #F0FFEA;
    color: #31A400;
}
.select-service-grid .select-service.active{
  background: #ffffff;
  border: 1px solid #31A400;
}
.select-service-grid .select-service::before{
  background: none;
}
.select-service-grid .select-service.active::before {
    background: url(../images/boxselect.svg) center / cover no-repeat;
}
.select-service-grid .select-service::before{
  top: -8px;
  right: -3px;
}
.select-service .service-count{
  font-size: 24px;
}
.select-service.active p.service-name{
  color: #000000;
}
.select-service.active .service-count{
  color: #31A400;
}
.select-service p.service-name{
  font-size: 16px;
  padding: 3px 10px 6px;
}
.new-package .service-cart .price{
  margin-right: 5px !important;
}
.last-line {
    max-width: 505px;
    margin: 0 auto;
    background: #D7E8FF33;
    border-radius: 10px;
    height: 30px;
    line-height: 30px;
    margin-top: 30px;
    font-size: 14px;
}
span.grn-txt {
    font-weight: 500;
    color: #31A400;
}
span.blue-text {
    font-weight: 700;
    color: #4663AC;
}
.ser-top {
    border: 2px solid #D9D9D9;
    border-radius: 30px;
    padding: 30px 35px;
}
.ser-top h3{
    font-size: 22px;
    color: #4663AC;
    margin: 0;
}
.ser-top h3 img{
  margin-right: 10px;
}
.ser-top ul li {
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 400;
    align-items: center;
    display: flex;
        margin-bottom: 5px;
}
.ser-top ul li:before{
  content: '';
  background: url(../images/arrow.svg);
  height: 18px;
    width: 18px;
    display: inline-block;
    margin-right: 5px;
    flex-shrink: 0;
}
.ser-top ul{
  margin: 10px 0 0;
  padding: 0;
}
.service-right {
    margin-top: 60px;
}
.sec-bottom {
    background: #F3F6FF;
    border-radius: 30px;
    padding: 30px 10px;
    text-align: center;
    margin-top: 15px;
}
p.c_us {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}
.new-package .people-use{
  display: block;
  margin: 0;
}
.new-package .people-use > a{
  display: block;
    background: #4663AC;
    color: #fff;
    border-radius: 16px;
    font-size: 22px;
       font-weight: 700;
    max-width: 195px;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
}
.new-package .people-use img{
  margin: 40px 0 10px;
  max-width: 100%;
}
.people-col p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0;
}
.people-col p a {
    color: #4663ac;
    font-weight: 500;
}
.select-service .service-off {
    display: none;
}

/* New Package design end */

/* Added slick css here */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
    width: 100%;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dotted.slick-slider {
    margin-bottom: 70px;
}
.blog-slider .slick-list.draggable {
    margin: 0 -20px 0 0;
}

#latest-blog .slick-dots li.slick-active button,
#latest-blog .slick-dots li button:hover, 
#latest-blog .slick-dots li button:focus {
    outline: none;
    background: #4663ac;
}
.slick-dots li button{
  background: #383B3E;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.slick-dots {
    position: absolute;
    bottom: -40px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
}
.blog-inner{
  background: #ffffff;
  padding: 20px 19px;
  margin: 0 20px 0 0;
  border: 1px solid #5A575733;
  border-radius: 20px;
}

.blog-slider .heading-4{
  font-weight: 500;
  font-size: 18px;
  margin: 10px 0 0;
      overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}
.select-service .row{
  display: block;
}
#latest-blog .slick-dots{
  display: block !important;
  list-style: none;
}
.top-breadcrumb ul.breadcrumb {
    margin: 10px 0 0px;
}
.top-breadcrumb{
  border-bottom: 1px solid #000;
}
.top-breadcrumb .breadcrumb li{
  font-size: 16px;
}

/* pop up slide */
#someone-purchased {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}

#someone-purchased.show {
  opacity: 0.9;
  transform: translateX(0);
  pointer-events: auto;
}

#someone-purchased .popup-content {
  background: #4663AC;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-family: sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#someone-purchased .popup-content .avatar {
      width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#someone-purchased .popup-content .close-popup {
  margin-left: auto;
  cursor: pointer;
  font-size: 18px;
  padding-left: 12px;
  right: 10px;
  top: 0;
}
.purchased-offer {
    font-size: 16px;
    font-weight: 400;
}
#someone-purchased .popup-content .product-name {
  display: inline-block;
  font-weight: 600;
}
#someone-purchased .verified{
      float: right;
    font-size: 12px;
    margin-top: 5px;
}

#someone-purchased .popup-content .time {
      color: #FAC858;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}
.where-buy > strong {
    font-size: 14px;
    font-weight: 400;
}
/* pop up slide */

/* Review Calculator page start */
.rc-sec-sec{
      font-family: "Inter", sans-serif;
}
.rc-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
    border: 1px solid #EAEAEA;
          flex: 1 1 60%;
      min-width: 320px;
    }
    .rc-sec-sec .side-card {
      flex: 1 1 35%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .rc-card h2 {
      margin-top: 0;
    font-size: 24px;
    color: #4663AC;;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    }
    .rc-sec-sec .form-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;      
      margin-top: 15px;
    }
    .rc-sec-sec .form-group input, .rc-sec-sec .form-group select {
      padding: 10px;
      background: #F3F3F5;
      border-radius: 10px;
      font-size: 14px;
      height: 50px;
      color: #262424 !important;
    }
    .rc-sec-sec .btn {
      background: #4a5fc1;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 20px;
      width: 100%;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .rc-sec-sec .stat-box, .rc-sec-sec .tips-box {
      background: #fff;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid #EAEAEA;
    }
    .rc-sec-sec .result-screen {
      text-align: center;
    }
    .rc-sec-sec .highlight {
      font-size: 30px;
      font-weight: bold;
      color: #ffffff;
    }
    .rc-card.result-screen h2{
      margin-bottom: 20px;
    }
    .rev-need {
      font-size: 20px;
      padding: 15px 0 20px;
  }
    .rc-summary {
      display: flex;
      justify-content: space-around;
      margin-top: 20px;
    }
    .rc-summary div {
      text-align: center;
      background: #f4f6fd;
      padding: 20px 10px;
      border-radius: 10px;
      flex: 1;
      margin: 0 5px;
      font-size: 14px;
      color: #262424;
    }
    .rc-summary strong {
    font-size: 20px;
    color: #4663AC;
}
.rc-sec-sec .btn.reset-btn{
  border: 1px solid #4663AC;
  background: #ffffff;
  color: #4663AC;
}

  .rc-sec-sec .rc-stars {
  display: flex;
  gap: 4px;
  position: relative;
  justify-content: center;
  margin: 10px 0 0;
}

.rc-sec-sec .rc-star {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.rc-sec-sec .rc-star::before {
  content: "★";
  position: absolute;
  color: #ccc; /* gray background */
  width: 100%;
  height: 100%;
}

.rc-sec-sec .rc-star::after {
  content: "★";
  position: absolute;
  color: #facc15; /* yellow fill */
  width: 0%;
  overflow: hidden;
  height: 100%;
}

.rc-sec-sec .rating-bar {
  width: 100%;
  height: 7px;
  background-color: #d9d9d9;
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
      max-width: 215px;
    margin: 25px auto 15px;
}
#ratingPercent {
    color: #262424;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.rc-sec-sec .rating-fill {
  height: 100%;
  width: 0%;
  background-color: #22c55e; /* green fill */
  transition: width 0.4s ease;
}
.rc-sec-sec{
  background-color: #F9FAFB;
}
.rc-sec-first{
  background-color: #F9FAFB;
  text-align: center;
  padding: 20px 0 0;
}
.rc-select {
    margin-bottom: 20px;
    width: 49%;
}
.rc-email {
    width: 49%;
    margin-bottom: 20px;
}
.rc-crating {
    width: 32%;
}
.form-group label {
    color: #262424;
    font-size: 16px;
    font-weight: 400;
}
.stat-box h4{
  margin-top: 0;
    font-size: 15px;
    color: #4663AC;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
.ratings{
  text-align: center;
  font-size: 24px;
}
.ratings strong{
    font-size: 24px;
    color: #4663AC;
}
.stat-sec p{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #262424;
}
.stat-sec p strong{
  color: #4663AC;
}
.tips-box ul{
  padding: 0;
  margin: 0;
}
.tips-box ul li{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 14px;
  gap: 2px;
}
.tips-box ul li:before{
  content: '';
  background: url(../images/rc-growth.svg);
  height: 8px;
    width: 14px;
    display: inline-block;
    margin-right: 5px;
    flex-shrink: 0;
}
.rev-need {
    background: #5171C2;
    color: #fff;
    border-radius: 10px;
}
.addon-head {
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}
.addon-head span{
  color: #4663AC;
}
.addon-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}
.rc-sec-sec .select-service-grid{
  padding-left: 100px;
  padding-right: 100px;
  gap: 20px;
  margin: 0 0 40px;
  background: transparent;
}
.rc-sec-sec .select-service-grid .select-service{
  margin-bottom: 10px;
}
.addons.left-side{
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #EAEAEA;  
  margin-top: 20px;
  padding: 30px 0 30px;
}
.addons.right-side {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    margin-top: 20px;    
}
.addon-whats-included{
  padding: 20px 15px;
}
.addon-whats-included h2{
  font-size: 20px;
  color: #4663AC;
  margin-bottom: 0;
}
.addons.right-side{
  color: #4663AC;
  font-size: 20px;  
}
.wi-list{
  padding: 0;
  margin: 0;
}
.wi-list li{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  gap: 2px;
  color: #000000;
  letter-spacing: 0.1px;
}
.wi-list li:last-child {
    margin-bottom: 0;
}
.text-italic {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}
.wi-list li:before{
  content: '';
  background: url(../images/arrow.svg);
  height: 15px;
    width: 15px;
    display: inline-block;
    margin-right: 5px;
    flex-shrink: 0;
}
.addon-whats-included-bottom {
    background: #F3F6FF;
    border-radius: 10px;
  
}
.addon-whats-included-bottom p{
    padding: 20px 15px;
    margin-bottom: 0;
}
.rc-right-bottom {
    background: #F0FFEA;
    border-radius: 10px;
    padding: 0 40px;
}
.rc-right-bottom p{
    margin-bottom: 0;
    padding: 20px 0;
}
.total-reviews {
    font-size: 14px;
    font-weight: 500;
}
.total-reviews a{
  color: #4663AC;  
}
.rc-sec-sec .btn.busybtn {
    width: auto;
}

/* Review Calculator page end */


@media screen and (min-width: 992px) {
  #banner{padding-bottom: 0}
  .addon-mobile{display: none !important;}
}
/* css for new testimonial start */
@media (max-width: 1024px) {
      .testimonials-grid {
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      }
  }
        /* css for new testimonial End */
@media screen and (max-width: 991px) {
  header .formob .header-btn{
    display: inline-block;
  }
  .formob {
    display: inline-block;
}
    .formob .header-btn.user-icon{
        display: inline-block;
        position: absolute;
        right: 70px;
        top: 6px;
    }
.navbar>.container{
  position: relative;
}
.fordesk{display: none;}
  .order-summary{
    max-width: 100%;
  }
          header .navbar-toggler {
            width: 42px;
            height: 42px;
            background-color: var(--primary-color);
            border-radius: 100%;
            border: none;
            background-image: url(../images/hamburger.svg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 45%;
            transition: 0.3s;
        }
        .navbar-toggler:focus{
          box-shadow: none;
          background-color:#000000;
        }
        header .nav-link{
          padding-left: 0 !important;
          padding-right: 0 !important;
        }
        header .navbar-nav:before {
            content: "";
            display: flex;
            position: absolute;
            top: 8px;
            left: -25%;
            border-top: 1px solid rgba(0, 0, 0, 0.3);
            width: 150%;
            height: 1px;
        }
                header .navbar-nav {
            position: relative;
            padding-top: 15px;
        }
  /* Review Calculator page start */
  .rc-card{margin-bottom: 20px}
  .addon-desktop{display: none !important;}
  .row.addon-rc{
    --bs-gutter-x:0;    
  }

  /* Review Calculator page end */
}
@media screen and (max-width: 960px) {
  #checkout.new-check-us > .container {
    max-width: 720px;
  }
  .checkout-right-main {
    max-width: 49%;
  }
  .checkout-left-main {
    max-width: 49%;
  }
  .order-addon p,
  .order-prev p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  #checkout .checkout-right-main .accordion-content {
    max-height: 100% !important;
  }
}
/* css for new testimonial start */
@media (max-width: 768px) {
            .testimonials-title {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 20px;
            }

            /* new package start */
            .service-right {
                max-width: 400px;
                margin: 40px auto 0;
            }
            /* new package end */



        }
/* css for new testimonial End */
@media screen and (max-width: 767px) {
          header .navbar-toggler {
            width: 32px;
            height: 32px;
            background-size: 45%;
        }

  #checkout.new-check-us > .container {
    max-width: 540px;
  }
  .checkout-left-main {
    max-width: 100%;
  }
  .checkout-right-main {
    max-width: 100%;
    margin-top: 15px;
  }
  #checkout .payment-options {
    max-width: 100%;
  }
  .checkout-right-main .accordion-item {
    margin-bottom: 15px;
  }
  .apply-coupon {
    margin-bottom: 15px;
  }
  .checkout-right-main .accordion-item .accordion-header {
    cursor: pointer;
    position: relative;
  }
  .checkout-right-main .accordion-item .accordion-header::after {
    content: "";
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'><path d='M11.91 -3.89586e-05L12.97 1.06096L7.193 6.83996C7.10043 6.93312 6.99036 7.00704 6.86911 7.05749C6.74786 7.10794 6.61783 7.13391 6.4865 7.13391C6.35517 7.13391 6.22514 7.10794 6.10389 7.05749C5.98264 7.00704 5.87257 6.93312 5.78 6.83996L7.24192e-08 1.06096L1.06 0.00096084L6.485 5.42496L11.91 -3.89586e-05Z' fill='%234C4848'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 14px;
    height: 7px;
    position: absolute;
    right: 15px;
    top: 24px;
  }
  .checkout-right-main .accordion-item .accordion-header.active::after {
    content: "";
    -webkit-transform: rotate(180deg); /* Safari & older Chrome */
    -moz-transform: rotate(180deg); /* Firefox */
    -ms-transform: rotate(180deg); /* IE9+ */
    -o-transform: rotate(180deg); /* Old Opera */
    transform: rotate(180deg);
  }
  .checkout-right-main .accordion-item.first {
    background-color: #e4ebff;
  }
  .checkout-right-main .accordion-item.first .accordion-header.active,
  .checkout-right-main .accordion-item.first .accordion-content.open {
    background-color: #ffffff;
  }
  .total-cart {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    left: 0;
    padding: 0;
    border-top: 1px solid #ccc;
  }
  .top-info {
    width: 185px;
  }
  .total-cart p {
    font-size: 24px;
  }
  .place-order {
    width: 140px;
    line-height: 42px;
    font-size: 16px;
  }
  .total-cart .place-form {
    padding: 20px 10px;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
  .formob .header-btn1 .btn {
    padding: 7px;
}

/* New getstarted page start 
.get-started-col p{
  font-size: 10px !important;
  line-height: 1.5;
}
.get-started-2 {
  padding: 25px 15px;
}
#get-started .get-started-col h1{
  font-size: 20px;
  margin-bottom: 15px !important;
}
.get-started-2 .form .input{
  padding: 10px;
}
.get-started-2 .bussiness-details{
  padding: 0 !important;
}
.get-started-2 .get-started-form .btn{
  width: 100% !important;
  max-width: 100% !important;
}

/* New getstarted page End */
.new-package .select-service-grid .select-service{
  border-radius: 10px;
  padding: 10px 0 0;
}
.package-recm{
  font-size: 10px;
  max-width: 80px;
}
  .top-breadcrumb .breadcrumb li{
    font-size: 16px;
  }
  /* Review Calculator page start */
            .rc-sec-sec .select-service-grid{
              padding-left: 15px;
              padding-right: 15px;
            }
            .addon-head{
              font-size: 20px;
              line-height: 1.2;
            }
            .rc-sec-sec .btn.busybtn{
              margin-top: 5px;
            }
            .rc-sec-sec .select-service-grid .select-service{
              padding: 15px 0 0;
              border-radius: 10px;
            }
            .form-group label{
              font-size: 14px;
            }
            /* Review Calculator page end */
}
@media screen and (max-width: 600px) {
  .total-cart .place-form {
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
  }
  /* css for new testimonial start */
  .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-title {
                font-size: 1.6rem;
                margin: 15px 0 25px;
            }
            
            .testimonial-content {
                font-size: 0.95rem;
            }
            
            .read-more-btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
  /* css for new testimonial End */
      section#banner2 {
        padding-top: 155px !important;
    }

    /* new package start */
    .ser-top{
      padding-left: 15px;
      padding-right: 15px;
    }
    .ser-top ul li{
      font-size: 16px;
    }
    .new-package .select-service-grid{
      grid-gap: 30px 20px;
      padding: 0;
    }
    /* new package end */
    .where-buy{
      line-height: 1.2;
    }
    #someone-purchased{
      left: 10px;
      bottom: 20px;
    }
    .where-buy > strong{
      font-size: 12px;
    }
    .purchased-offer{
      font-size: 12px;
    }
    #someone-purchased .popup-content .product-name{
      font-size: 12px;
    }
    #someone-purchased .popup-content .time{
      font-size: 12px;
    }
}
@media screen and (max-width: 575px) {
  #checkout.new-check-us > .container {
    max-width: 100%;
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
  }
  #checkout .payment-option {
    padding: 8px 10px;
  }
  #checkout .radio-icon {
    width: 20px;
    height: 20px;
  }
  #checkout .radio-icon svg {
    width: 20px;
    height: 20px;
  }
  .checkbox-icon {
    width: 15px;
    height: 15px;
  }
  .checkout-right-main .accordion-header {
    padding: 10px;
  }
  .checkout-right-main .accordion-header {
    font-size: 14px;
  }
  .checkout-right-main .accordion-item .accordion-header::after {
    top: 16px;
  }
  .accordion-item.sec .accordion-header {
    font-size: 18px;
  }
  .checkout-right-main .accordion-item.sec .accordion-header::after {
    top: 20px;
  }
  .apply-coupon .coupon-wrapper {
    padding: 10px;
  }
  .coupen-inner {
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .order-summary-main {
    padding-left: 10px;
    padding-right: 10px;
  }
  #checkout .checkout-right-main .accordion-content .list-star li {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .slide-inner {
    padding-top: 35px;
  }
  .addon-price {
    margin-bottom: 0;
  }
  .buy-till {
    max-width: 260px;
    font-size: 12px;
  }
  .order-summary-main h3 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .order-addon p,
  .order-prev p {
    font-size: 14px;
  }
  .total-cart .place-form {
    max-width: 100%;
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
  }
  #checkout .checkout-right-main .accordion-content .list-star {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 479px) {
  /* Review Calculator page start */
  .rc-card{
    min-width: 100%;
  }
  .rc-card h2{font-size: 22px}
  .rc-sec-sec .form-group{display: block;}
  .rc-email, .rc-select, .rc-crating{width: 100%;margin-bottom: 15px;}
  .rc-sec-sec .btn{font-size: 14px;padding: 12px;}
  .addons.left-side{
    padding-left: 15px;
    padding-right: 15px;
  }
  .addon-head br{display: none;}
  .rc-sec-sec .select-service-grid{
    padding-left: 0;
    padding-right: 0;
  }
}
  /* Review Calculator page end */
}
@media screen and (max-width: 413px) {
  .check-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .accordion-item.sec .accordion-header svg {
    margin-right: 5px;
  }
  .checkout-right-main .slick-slider .slide {
    margin-left: 10px;
    margin-right: 10px;
  }
  #checkout .checkout-right-main .accordion-content .list-star li {
    width: 100%;
    float: none;
  }
  .accordion-item.sec .accordion-header {
    font-size: 16px;
  }
  .apply-coupon .coupon-input {
    width: 90%;
  }

  /* new package start */
  .new-package .select-service-grid{
    grid-gap: 25px 10px;
  }
  .package-recm{
    max-width: 74px;
    font-size: 10px;
  }
  /* new package end */

}

  /* css for new testimonial start */

  @media (max-width: 400px) {
      .testimonials-title {
          font-size: 1.4rem;
      }
    .testimonial-card {
              padding: 15px;
          }

      /* New package start */
      .service-cart .btn{
        margin: 0;
        width: 180px;
      }
      .service-cart .btn.buy_apay{
        margin-top: 10px;
      }
      /* New package end */
      /* Review Calculator page start */
      .rc-sec-sec .select-service-grid {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: auto auto;
        grid-gap: 15px;
    }
    /* Review Calculator page end */
      }

  /* css for new testimonial End */
@media screen and (max-width: 375px) {
  .formob .header-btn1 .btn img{
    margin-left: 0;
  }
  .formob .header-btn1 .btn{
    font-size: 0;
  }
}


@media screen and (max-width: 365px) {
  .payment-icons svg {
    width: 33px;
  }
  .payment-icons span {
    font-size: 12px;
  }
  #checkout .radio-icon {
    width: 15px;
    height: 15px;
  }
  #checkout .radio-icon svg {
    width: 15px;
    height: 15px;
  }
  .payment-icons span img {
    max-width: 100px;
  }
  .card-notice {
    line-height: 16px;
    padding: 7px;
  }
  #checkout .radio-icon svg {
    margin-top: -3px;
  }
  .custom-checkbox,
  .custom-checkbox a {
    font-size: 12px;
  }
  .accordion-item.sec .accordion-header {
    font-size: 13px;
  }
  .checkout-right-main .accordion-header {
    font-size: 13px;
  }
  .review-pack {
    padding-left: 15px;
  }
  .addon-price {
    padding-left: 15px;
  }
  .man-price {
    padding-left: 15px;
    padding-right: 15px;
  }
  .man-price .add-btn {
    width: 110px;
  }
}

/* New Checkout page End */
/* New contact page desgign start */

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
.overlay.active {
  display: flex;
}
.form-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #333;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
textarea {
  resize: vertical;
}
.btn {
  background-color: #4663ac;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
}
.btn:hover {
  background-color: #2d4c91;
}
.hidden {
  display: none;
}
.form-header {
  color: #4663ac;
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
}
.note {
  font-size: 0.95em;
  color: #555;
  margin-top: 20px;
  text-align: center;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}
.close-popup:hover {
  color: #000;
}
.form-container label span {
  color: #767676;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .form-container {
    padding: 15px;
  }
}

/* New contact page design end */ 