:root {
  --primary-gradient: linear-gradient(90deg, #7033f3 -15.51%, #53aef7 112.25%);
  --text-color: #000000;
  --title-color: #14213d;
  --yellow-color: #f9a50f;
  --color-blue: #3980ed;
  --gradient-bg: linear-gradient(
    182.34deg,
    rgba(255, 255, 255, 0.1) 9.28%,
    rgba(57, 128, 237, 0.1) 111.97%
  );
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
p {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  display: inline-block;
}
button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}
img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-color);
  position: relative;
  overflow-x: hidden;
}
/* Common Css here */
.btn {
  padding: 12px 35px;
  border-radius: 8px;
  background: transparent;
  color: #101010;
  font-weight: 600;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.btn_primary {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(-15.51%, #7033f3),
    color-stop(112.25%, #53aef7)
  );
  background: -o-linear-gradient(left, #7033f3 -15.51%, #53aef7 112.25%);
  background: linear-gradient(90deg, #7033f3 -15.51%, #53aef7 112.25%);
  color: #fff;
}

.btn_primary:hover {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(-15.51%, #7033f3),
    color-stop(112.25%, #53aef7)
  );
  background: -o-linear-gradient(right, #7033f3 -15.51%, #53aef7 112.25%);
  background: linear-gradient(-90deg, #7033f3 -15.51%, #53aef7 112.25%);
}

.btn_primary_outline {
  background: #fff;
  position: relative;
  color: #3980ed;
}
.btn_primary_outline:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(-15.51%, #7033f3),
    color-stop(112.25%, #53aef7)
  );
  background: -o-linear-gradient(left, #7033f3 -15.51%, #53aef7 112.25%);
  background: linear-gradient(90deg, #7033f3 -15.51%, #53aef7 112.25%);
  color: #ffffff !important;
}
.btn_primary_outline::before {
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(-15.51%, #7033f3),
    color-stop(112.25%, #53aef7)
  );
  background: -o-linear-gradient(left, #7033f3 -15.51%, #53aef7 112.25%);
  background: linear-gradient(90deg, #7033f3 -15.51%, #53aef7 112.25%);
  content: "";
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  border-radius: 8px;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: var(--title-color);
  text-align: center;
}
/* Main Css here */
/* Header */
header {
  overflow-x: hidden;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding: 30px 0;
}
.navBtn {
  height: 22px;
  width: 22px;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bodyGradient {
  height: 100vh;
  width: 100vw;
  background: #14213de0;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
}
.mobile_logo {
  display: none;
}
.logo {
  max-width: 174px;
  max-height: 54px;
  width: 100%;
  height: 100%;
}
.logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
nav,
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
nav ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: #14213db2;
  display: inline-block;
  padding: 10px;
}
nav ul li:not(:last-child) a:hover {
  color: var(--color-blue);
}
nav ul li a.btn_primary {
  height: calc(100% + 2px);
  width: calc(100% + 2px);
}
/* Header */
/* Hero */
.hero {
  background: -o-linear-gradient(
    272.55deg,
    rgba(255, 255, 255, 0.2) 21.56%,
    rgba(57, 128, 237, 0.2) 112.36%
  );
  background: linear-gradient(
    177.45deg,
    rgba(255, 255, 255, 0.2) 21.56%,
    rgba(57, 128, 237, 0.2) 112.36%
  );
  padding-top: 45px;
  position: relative;
}
.hero__text {
  text-align: center;
}
.hero__text h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60.51px;
  text-align: center;
  color: var(--title-color);
  padding-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.hero__text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: #000000;
  padding-bottom: 10px;
}
.hero__text ul {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-bottom: 40px;
}
.hero__text ul li._check {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: left;
  padding-left: 30px;
  color: #000000;
}
.hero__text ul li._check::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 18px;
  width: 20px;
  background-image: url("../img/check-svg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  background-position: center;
}
.hero__illustration {
  height: 600px;
  width: 100%;
  text-align: center;
}
.hero__illustration img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
/* Hero */
/* Services */
.services {
  padding: 80px 0;
  background: #ffffff;
}
.services__header .section__title {
  padding-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.services__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.services_card {
  border: 1px solid #e6e6e6;
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
}
.services_card:hover {
  -webkit-box-shadow: 0px 20px 40px 0px #26323826;
  box-shadow: 0px 20px 40px 0px #26323826;
}
.card_img {
  height: 90px;
  width: 90px;
  margin: 0 auto;
}
.card_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.services__text {
  padding-top: 20px;
}
.services__text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: center;
  padding-bottom: 30px;
  color: var(--title-color);
}
.services__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #14213db2;
}
/* Services */
/* Cta */
.cta {
  padding: 80px 0;
  background-color: var(--title-color);
  position: relative;
  background-image: url("../img/cta-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cta__wrapper {
  max-width: 825px;
  margin: 0 auto;
}
.cta__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  color: #ffffff;
  padding-bottom: 40px;
}
.cta__pragraph {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  padding-bottom: 15px;
  max-width: 540px;
  margin: 0 auto;
}
/* Cta */
/* Brands */
.brands {
  padding: 100px 0;
}
.barnds__wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}
.barnds__wrapper ul li {
  font-size: 28px;
  color: var(--title-color);
  font-weight: 700;
}
.barnds__wrapper ul li img {
  height: 40px;
}
/* Brands */
/* Benefits */
.benefits {
  background: #f4f4f4;
  padding: 80px 0;
}
.benefits__header {
  text-align: center;
  padding-bottom: 40px;
}
.benefits__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.benefits_card {
  max-width: 350px;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  min-height: 320px;
}
.benefits_card .card__heaer {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -ms-grid-columns: 50px 10px 1fr;
  grid-template-columns: 50px 1fr;
}
.benefits_card .card__thumb {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e5e2f8;
}
.benefits_card .card__thumb img {
  height: 24px;
  width: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.benefits_card .card__heaer h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: #263238;
}
.benefits_card .card__body {
  padding-top: 20px;
}
.benefits_card .card__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: #263238;
}
.benefits_card:nth-child(2) .card__thumb {
  background: #e9f8e3;
}
.benefits_card:nth-child(3) .card__thumb {
  background: #d5eff6;
}
.benefits_card:nth-child(4) .card__thumb {
  background: #ffecc9;
}
.benefits_card:nth-child(5) .card__thumb {
  background: #ffe2e2;
}
/* Benefits */
/* Cover */
.cover {
  background: var(--color-blue);
  padding: 80px 0;
}
.cover__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
  color: #ffffff;
  padding-bottom: 20px;
}
.cover__map {
  height: 440px;
  width: 100%;
  text-align: center;
}
.cover__map img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.cover__list {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
.cover__list li h4 {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.57px;
  color: #ffffff;
  padding-bottom: 5px;
}
.cover__list li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  color: #ffffff;
}
/* Cover */
/* Works */
.works {
  padding: 80px 0;
  background: #f4f4f4;
}
.works__header {
  text-align: center;
  padding-bottom: 40px;
}
.works__header .section__title {
  padding-bottom: 10px;
}
.works__header p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #14213d;
}
.works__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.works__card {
  background: #ffffff;
  border-radius: 17px;
  padding: 20px;
  max-width: 350px;
  width: 100%;
  height: 100%;
  min-height: 175px;
}
.card__number {
  height: 40px;
  width: 40px;
  border-radius: 6px;
  margin: 0 auto;
  background: #fff0d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.works__card .card__body {
  padding-top: 20px;
}
.works__card .card__body p {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #14213dcc;
  padding-left: 20px;
}
.works__card .card__body p::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  content: "";
  background: #fff0d4;
}
.works__card:nth-child(2) .card__number {
  background: #e5e2f8;
}
.works__card:nth-child(2) .card__body p::before {
  background: #e5e2f8;
}
.works__card:nth-child(3) .card__number {
  background: #e9f8e3;
}
.works__card:nth-child(3) .card__body p::before {
  background: #e9f8e3;
}
.works__card:nth-child(4) .card__number {
  background: #d5eff6;
}
.works__card:nth-child(4) .card__body p::before {
  background: #d5eff6;
}
.works__card:nth-child(5) .card__number {
  background: #dae8ff;
}
.works__card:nth-child(5) .card__body p::before {
  background: #dae8ff;
}
/* Works */
/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #ffffff;
}
.testimonials__header {
  padding-bottom: 40px;
}
.testimonials__card {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 20px;
  min-height: 300px;
}
.testimonials__msg {
  padding: 40px 0;
}
.testimonials__msg p {
  font-size: 18px;
  position: relative;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
  color: #14213dcc;
}
.testimonials__msg p::after,
.testimonials__msg p::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 24px;
  left: 0;
  background-image: url("../img/quat.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: -30px;
}
.testimonials__msg p::after {
  left: inherit;
  bottom: -15px;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: inherit;
}
.testimonials__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  border-top: 1px solid #d4d4d4;
  padding-top: 20px;
}
.profile__thumb {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.profile__thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.profile__info a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: #14213d;
}
.profile__info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1px;
  -moz-column-gap: 1px;
  column-gap: 1px;
}
.profile__info ul li {
  font-size: 14px;
  color: var(--yellow-color);
}
/* Testimonials */
/* Features */
.features__analysis {
  padding-top: 80px;
  padding-bottom: 45px;
  background: -o-linear-gradient(
    264.41deg,
    rgba(255, 255, 255, 0.1) 26.18%,
    rgba(57, 128, 237, 0.1) 148.33%
  );
  background: linear-gradient(
    185.59deg,
    rgba(255, 255, 255, 0.1) 26.18%,
    rgba(57, 128, 237, 0.1) 148.33%
  );
}
.features__header {
  padding-bottom: 50px;
  text-align: center;
}
.features__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.features__text,
.features__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 20px);
  flex: 0 0 calc(50% - 20px);
}
.listing .features__content,
.ranking .features__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.features__thumb img {
  max-width: 450px;
  max-height: 410px;
  -o-object-fit: contain;
  object-fit: contain;
}
.features__text h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
  color: #263238;
  padding-bottom: 20px;
}
.features__list li._check {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #263238;
  padding-bottom: 15px;
}
.features__list li._check::before {
  position: absolute;
  left: 0;
  top: 7px;
  height: 12px;
  width: 12px;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  content: "";
}
.features__list li._check ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #263238;
}
.market,
.listing,
.notification,
.ranking {
  background: -o-linear-gradient(
    267.66deg,
    rgba(255, 255, 255, 0.1) 9.28%,
    rgba(57, 128, 237, 0.1) 111.97%
  );
  background: linear-gradient(
    182.34deg,
    rgba(255, 255, 255, 0.1) 9.28%,
    rgba(57, 128, 237, 0.1) 111.97%
  );
  padding: 80px 0;
}
/* Features */

/* Pricing */
.pricing {
  padding: 80px 0;
  background-image: url("../img/pricing-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.pricing__header {
  padding-bottom: 40px;
}
.pricing__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 30px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.pricing__top strong small {
  color: #f77c77;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.pricing__top strong small::after {
  position: absolute;
  left: -43px;
  top: 2px;
  content: "";
  background-image: url("../img/shape.svg");
  height: 35px;
  width: 51px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
.pricing__top strong small span {
  font-weight: 700;
}
.pricing__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.pricing__card {
  max-width: 350px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background: transparent;
}
.card__suggest.pricing__card {
  -webkit-box-shadow: 0px 20px 40px 0px #26323826;
  box-shadow: 0px 20px 40px 0px #26323826;
  border-color: #54acf7;
}
.pricing__card_head {
  text-align: center;
  padding: 20px 20px;
  background: #f1efff;
  border-radius: 16px 16px 0 0;
}
.card__suggest .pricing__card_head {
  background: #d5eff6;
}
.pricing__card_body {
  padding: 30px;
  background: transparent;
}
.pricing__card_head h3 strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 33.89px;
  text-align: center;
  color: #263238;
  padding-bottom: 5px;
}
.pricing__card_head p {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: center;
  color: #263238;
}
.pricing__card_head small {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: center;
  color: #263238;
  display: inline-block;
  position: relative;
}
.pricing__card_head small::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  border-top: 1px solid #ff4f28;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.pricing__card_head h3 sub,
.pricing__card_head h3 sup {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
  color: #263238;
}
.pricing__card_body ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  color: #717278;
  padding-left: 25px;
  position: relative;
  padding-bottom: 20px;
}
.pricing__card_body ul li::before {
  position: absolute;
  left: 0;
  top: 1px;
  height: 15px;
  width: 15px;
  background-image: url("../img/available.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  content: "";
}
.pricing__card_body ul li.available::before {
  background-image: url("../img/available.svg");
}
.pricing__card_body ul li.available::before {
  background-image: url("../img/available.svg");
}

/* For Check box */
/* Pricing */
/* Faq */
.faq {
  background: #f4f4f4;
  padding: 80px 0;
}
.faq__header {
  text-align: center;
  padding-bottom: 40px;
}
.faq__content {
  max-width: 860px;
  margin: 0 auto;
}
.faqItem {
  background: #ffffff;
  margin-bottom: 10px;
}
.faq__title {
  padding: 20px;
  border-radius: 10px;
  padding-right: 30px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #14213d;
}
.faq__title i.fa-solid {
  position: absolute;
  right: 15px;
  top: 25px;
}
.faq__body {
  padding: 20px;
  padding-top: 0;
  display: none;
}
.faq__body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #14213dcc;
}

/* Faq */
/* Fotoer */
footer {
  background: #14213d;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}
footer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 500px;
  background-image: url("../img/shape-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
}
.footer__logo {
  max-width: 180px;
  height: auto;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__widgets {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.8fr 30px 3fr;
  grid-template-columns: 1.8fr 3fr;
  grid-gap: 30px;
}
.widget__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  padding-bottom: 10px;
}
.widget__info p {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  color: #fff;
  max-width: 240px;
}
.footer__trust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-top: 30px;
}
.footer__trust img {
  height: 30px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__trust p {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.36px;
  color: #ffffff;
}
.widget__items li a {
  color: #ffffffb2;
  display: inline-block;
  padding: 7px 0;
  font-size: 14px;
}
.widget__items li a:hover {
  text-decoration: underline;
  color: #fff;
}
.widget_socail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.widget_socail li a {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_socail li a:hover {
  color: var(--color-blue);
}
.footer_cp {
  text-align: center;
  border-top: 1px solid #20335b;
  margin-top: 40px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.36px;
  color: #ffffff99;
}
.footer__right_widget {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
}
.footer__devider {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
/* Fotoer */
.owl-carousel .owl-nav {
  padding-top: 30px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  height: 35px;
  color: inherit;
  border: 1px solid #14213d1a;
  padding: 0 !important;
  color: var(--color-blue);
  font: inherit;
  width: 35px;
  border-radius: 50%;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--color-blue);
  color: #fff;
  text-decoration: none;
}
.swither input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.swither label {
  cursor: pointer;
  text-indent: -9999px;
  width: 36px;
  height: 20px;
  background: grey;
  display: block;
  border-radius: 35px;
  position: relative;
}
.swither label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  background-image: url("../img/check-for-check.svg");
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: center center;
  border-radius: 90px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.swither input:checked + label {
  background: -o-linear-gradient(21.14deg, #7033f3 -7.21%, #54acf7 118.11%);
  background: linear-gradient(68.86deg, #7033f3 -7.21%, #54acf7 118.11%);
}
.swither input:checked + label:after {
  left: calc(100% - 2px);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.swither {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
