/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap");
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #00cfc3;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #82868b;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  background-color: #f8f8f8;
}
body.bg-dark {
  background: #272B31;
}
body.bg-dark-2 {
  background: #41454D;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #191b1e;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito Sans", sans-serif;
  color: #191b1e;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #00cfc3;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #00cfc3;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #00cfc3;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #82868b;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #82868b;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #00cfc3;
  background: #00cfc3;
}
.btn-theme:hover {
  background: #00cfc3;
  color: #fff;
  border-color: #00cfc3;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #00cfc3;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #00cfc3;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #00cfc3;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

.row {
  --bs-gutter-x: 30px;
}

.header-area {
  padding: 15px 0;
  background: #fff;
}
.header-area.header-style-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.header-area.header-dark {
  background: #191B1E;
}

.logo {
  display: inline-block;
}
.logo a {
  display: inline-block;
}
.logo a img {
  width: 109px;
}

.header-link {
  display: inline-block;
  margin-right: 25px;
}
.header-link a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  color: #1d3f5b;
}
.header-link a:hover {
  color: #00cfc3;
}

.mobile-menu-open {
  display: inline-block;
}
.mobile-menu-open a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #1d3f5b;
  text-align: center;
}

.page-title-section {
  background: #F8F8F8;
  padding: 40px 0 30px;
}
.page-title-section .page-title-wrap .title {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 600;
  color: #191b1e;
  margin-bottom: 0;
}
.page-title-section .page-title-wrap p {
  color: #191b1e;
  font-size: 16px;
  line-height: 1.5;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 310px;
  height: 100%;
  padding: 90px 25px 25px;
  background-color: #ffffff;
  transform: translateX(100%);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  visibility: hidden;
  opacity: 0;
}
.sidebar-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.sidebar-menu .sidebar-menu-close {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 9px;
  width: 49px;
  height: 49px;
  cursor: pointer;
}
.sidebar-menu .sidebar-menu-close:before, .sidebar-menu .sidebar-menu-close:after {
  content: "";
  position: absolute;
  top: 24px;
  left: 16px;
  width: 17px;
  height: 1px;
  background-color: #000000;
}
.sidebar-menu .sidebar-menu-close:before {
  transform: rotate(45deg);
}
.sidebar-menu .sidebar-menu-close:after {
  transform: rotate(-45deg);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu ul li {
  display: block;
  margin-bottom: 25px;
}
.mobile-menu ul li a {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  color: #000000;
  text-decoration: none;
}
.mobile-menu ul li a:hover {
  color: #00cfc3;
}

.body-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.body-overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}

.header-dark .mobile-menu-open a {
  color: #fff;
}
.header-dark .header-link a {
  color: #fff;
}
.header-dark .header-link a:hover {
  color: #00cfc3;
}

.intro-box-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 767px) {
  .intro-box-section {
    padding-top: 10px;
    padding-bottom: 250px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .intro-box-image {
    position: relative;
    width: 355px;
    left: -100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .intro-box-image {
    position: relative;
    width: 355px;
    left: -160px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .intro-box-image.female {
    position: relative;
    width: 355px;
    left: -50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .intro-box-image.female {
    position: relative;
    width: 355px;
    left: -45px;
  }
}
.intro-box-image img {
  height: 398px;
}

.intro-thumb-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.375;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: #000;
}

.intro-thumb-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.intro-thumb-wrap .intro-thumb-animation {
  position: relative;
  z-index: 1;
}
.intro-thumb-wrap .intro-thumb-animation:before {
  content: "";
  width: 138px;
  height: 138px;
  margin: -69px 0 0 -69px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 3;
  animation: 4s scale2Animation linear infinite;
  background: linear-gradient(180deg, #91e7da 0%, #30a4d7 100%);
}
.intro-thumb-wrap .intro-thumb-animation:after {
  content: "";
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 2;
  animation: 4s scaleAnimation linear infinite;
  background: linear-gradient(180deg, #91e7da 0%, #30a4d7 100%);
}
.intro-thumb-wrap .intro-thumb-animation-2 {
  position: relative;
  z-index: 1;
}
.intro-thumb-wrap .intro-thumb-animation-2:before {
  content: "";
  width: 138px;
  height: 138px;
  margin: -69px 0 0 -69px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 3;
  animation: 4s scale2Animation linear infinite;
  background: linear-gradient(180deg, #ef888c 0%, #cf47c6 100%);
}
.intro-thumb-wrap .intro-thumb-animation-2:after {
  content: "";
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 2;
  animation: 4s scaleAnimation linear infinite;
  background: linear-gradient(180deg, #ef888c 0%, #cf47c6 100%);
}
.intro-thumb-wrap .intro-thumb {
  position: relative;
  width: 126px;
  height: 126px;
  text-align: center;
  border-radius: 50%;
  padding-top: 10px;
  z-index: 5;
  overflow: hidden;
}
.intro-thumb-wrap .intro-thumb img {
  width: 85px;
  height: 85px;
}
.intro-thumb-wrap .intro-thumb span {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.222;
  font-weight: 700;
  padding: 8px 0;
  text-transform: capitalize;
  background: linear-gradient(180.41deg, rgba(255, 253, 253, 0) 1.01%, rgba(255, 253, 253, 0.56) 98.99%);
}
.intro-thumb-wrap .intro-thumb.male {
  box-shadow: 0 50px 50px -20px #458eae;
  background: linear-gradient(180deg, #91e7da 0%, #30a4d7 100%);
}
.intro-thumb-wrap .intro-thumb.female {
  box-shadow: 0 50px 50px -20px rgba(164, 0, 147, 0.55);
  background: linear-gradient(180deg, #ef888c 0%, #cf47c6 100%);
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale2Animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.step-section {
  position: relative;
  padding-top: 70px;
}

.step-wrapper {
  padding: 0 5px;
  min-height: 680px;
  background-color: #f9f9f9;
  box-shadow: 0 11px 20px rgba(220, 228, 226, 0.6);
}
@media (max-width: 767px) {
  .step-wrapper {
    box-shadow: none;
  }
}
.step-wrapper .step-head {
  padding: 40px 40px 24px;
}
@media (max-width: 767px) {
  .step-wrapper .step-head {
    padding: 0 0 24px;
  }
}
.step-wrapper .step-head .step-bar-wrap {
  position: relative;
  height: 4px;
  background-color: #ebebec;
  border-radius: 2px;
  margin-bottom: 10px;
}
.step-wrapper .step-head .step-bar-wrap .step-bar {
  height: 100%;
  background-color: #00cfc3;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
}
.step-wrapper .step-info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .step-wrapper .step-info-wrap {
    display: none;
  }
}
.step-wrapper .step-info-wrap .step-info-left a {
  display: inline-block;
  color: #000;
  font-size: 20px;
}
.step-wrapper .step-info-wrap .step-info-right p {
  display: inline-block;
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
}
.step-wrapper .step-info-wrap .step-info-right p span {
  color: #00cfc3;
}
.step-wrapper .step-content-head {
  text-align: center;
}
.step-wrapper .step-content-head .title {
  margin-bottom: 3px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.step-wrapper .step-content-head .desc {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #9e9e9e;
}
.step-wrapper .step-content-head .ext-desc {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.step-info-left-head a {
  display: inline-block;
  color: #000;
  font-size: 20px;
}

.step-info-right-head p {
  display: inline-block;
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
}
.step-info-right-head p span {
  color: #00cfc3;
}

.bg-dark .step-wrapper {
  background: #191b1e;
  box-shadow: 0 11px 20px rgba(17, 17, 17, 0.6);
}
.bg-dark .step-wrapper .step-head .step-bar-wrap {
  background-color: #ebebec;
}
.bg-dark .step-wrapper .step-head .step-bar-wrap .step-bar {
  background-color: #0044d9;
}
.bg-dark .step-wrapper .step-info-wrap .step-info-left a {
  color: #fff;
}
.bg-dark .step-wrapper .step-info-wrap .step-info-right p {
  color: #fff;
}
.bg-dark .step-wrapper .step-info-wrap .step-info-right p span {
  color: #0044d9;
}
.bg-dark .step-wrapper .step-content-head .title {
  color: #fff;
}
.bg-dark .step-wrapper .step-content-head .desc {
  color: #707377;
}
.bg-dark .step-wrapper .step-content-head .ext-desc {
  color: #fff;
}
.bg-dark .step-info-left-head a {
  color: #fff;
}
.bg-dark .step-info-right-head p {
  color: #fff;
}
.bg-dark .step-info-right-head p span {
  color: #094BCE;
}

.footer-text {
  text-align: center;
}
.footer-text p {
  font-size: 10px;
  line-height: 1.6;
  color: #82868b;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .footer-text p span {
    display: block;
  }
}
.footer-text p a {
  color: #82868b;
  text-decoration: underline;
}
.footer-text p a:hover {
  color: #00cfc3;
}

.step-content-1 .step-card-wrap {
  max-width: 334px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 18px;
  margin: 0 auto;
}
.step-content-1 .step-card-wrap .step-card {
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #fff;
  height: 160px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.step-content-1 .step-card-wrap .step-card:hover {
  background-color: #eafffc;
}
.step-content-1 .step-card-wrap .step-card.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-1 .step-card-wrap .step-card.active p {
  color: #ffffff;
}
.step-content-1 .step-card-wrap .step-card a {
  position: relative;
  padding: 15px 55px 15px 15px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: inherit;
}
.step-content-1 .step-card-wrap .step-card p {
  margin-bottom: 0;
  color: #000;
}
.step-content-1 .step-card-wrap .step-card .thumb {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.step-content-1 .step-card-wrap .step-card .thumb img {
  height: 100%;
}

.bg-dark .step-content-1 .step-card-wrap .step-card {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: none;
}
.bg-dark .step-content-1 .step-card-wrap .step-card.active {
  background: linear-gradient(135.97deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-1 .step-card-wrap .step-card.active p {
  color: #ffffff;
}
.bg-dark .step-content-1 .step-card-wrap .step-card p {
  color: #fff;
}

.step-content-2 .step-body-type-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  max-width: 334px;
  margin: 0 auto;
}
.step-content-2 .step-body-type-wrap .step-body-type {
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  box-shadow: 0 6px 17px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.step-content-2 .step-body-type-wrap .step-body-type:hover {
  background-color: #eafffc;
}
.step-content-2 .step-body-type-wrap .step-body-type.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-2 .step-body-type-wrap .step-body-type.active span {
  color: #ffffff;
}
.step-content-2 .step-body-type-wrap .step-body-type a {
  display: block;
  padding: 12px 10px 34px;
  color: inherit;
}
.step-content-2 .step-body-type-wrap .step-body-type span {
  color: #000;
  font-size: 12px;
  line-height: 1.35;
  display: inline-block;
  margin-bottom: 20px;
}
.step-content-2 .step-body-type-wrap .step-body-type .thumb {
  display: inline-block;
  height: 148px;
  width: 43px;
}
.step-content-2 .step-body-type-wrap .step-body-type .thumb img {
  width: 100%;
  height: 100%;
}

.step-content-4 .step-choose-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: end;
  max-width: 334px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.step-content-4 .step-choose-list .step-choose-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 263px;
}
@media (max-width: 767px) {
  .step-content-4 .step-choose-list .step-choose-thumb {
    margin-left: -37px;
  }
}
.step-content-4 .step-choose-list .choose-list {
  width: 160px;
  height: 80px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
  background: #fff;
}
.step-content-4 .step-choose-list .choose-list:hover {
  background-color: #eafffc;
}
.step-content-4 .step-choose-list .choose-list.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-4 .step-choose-list .choose-list.active a {
  color: #ffffff;
}
.step-content-4 .step-choose-list .choose-list a {
  display: block;
  padding: 20px 25px 20px 15px;
  color: #000;
  font-size: 16px;
}

.bg-dark .step-content-4 .step-choose-list .step-choose-thumb {
  width: 196px;
}
.bg-dark .step-content-4 .step-choose-list .choose-list {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.bg-dark .step-content-4 .step-choose-list .choose-list a {
  color: #fff;
}
.bg-dark .step-content-4 .step-choose-list .choose-list.active {
  background: linear-gradient(167deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-4 .step-choose-list .choose-list.active a {
  color: #ffffff;
}

.step-content-5 .select-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  max-width: 334px;
  margin: 0 auto;
}
.step-content-5 .select-box-wrap .select-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 80px;
  padding: 11px 10px 9px;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 1 !important;
}
.step-content-5 .select-box-wrap .select-box:hover {
  background-color: #eafffc;
}
.step-content-5 .select-box-wrap .select-box.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-5 .select-box-wrap .select-box.active .icon {
  border: 1px solid #00cfc3;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
}
.step-content-5 .select-box-wrap .select-box.active .content {
  color: #ffffff;
}
.step-content-5 .select-box-wrap .select-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ececed;
  box-shadow: inset 0 4px 10px rgba(155, 181, 189, 0.1);
  margin-right: 12px;
}
.step-content-5 .select-box-wrap .select-box .content {
  flex: 1;
  font-size: 14px;
  line-height: 1.43;
  font-weight: 600;
  color: #222222;
}
.step-content-5 .step-content-btn {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-5 .step-content-btn a {
  text-align: center;
  display: block;
  color: #ffffff;
  background: #00cfc3;
  padding: 14px 30px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  box-shadow: 0 11px 20px rgba(0, 207, 195, 0.31);
}
.step-content-5 .step-content-btn a.disabled {
  color: #adafb1;
  background: #e0e0e0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.bg-dark .step-content-5 .select-box-wrap .select-box {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: 0;
}
.bg-dark .step-content-5 .select-box-wrap .select-box.active {
  background: linear-gradient(158.74deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-5 .select-box-wrap .select-box.active .icon {
  background: linear-gradient(135.97deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
}
.bg-dark .step-content-5 .select-box-wrap .select-box .content {
  color: #ffffff;
}
.bg-dark .step-content-5 .select-box-wrap .select-box .icon {
  background: #33373d;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
  border: none;
}
.bg-dark .step-content-5 .step-content-btn a {
  background: linear-gradient(172.11deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-5 .step-content-btn a.disabled {
  color: #adafb1;
  background: #33373d;
  box-shadow: none;
}

.step-content-6 .step-choose-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: end;
  max-width: 334px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.step-content-6 .step-choose-list .step-choose-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 185px;
}
@media (max-width: 767px) {
  .step-content-6 .step-choose-list .step-choose-thumb {
    margin-left: -37px;
  }
}
.step-content-6 .step-choose-list .choose-list {
  width: 160px;
  height: 80px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
  background: #fff;
}
.step-content-6 .step-choose-list .choose-list:hover {
  background-color: #eafffc;
}
.step-content-6 .step-choose-list .choose-list.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-6 .step-choose-list .choose-list.active a {
  color: #ffffff;
}
.step-content-6 .step-choose-list .choose-list a {
  display: block;
  padding: 20px 25px 20px 15px;
  color: #000;
  font-size: 16px;
}

.bg-dark .step-content-6 .step-choose-list .step-choose-thumb {
  top: 52%;
  width: 320px;
  left: -46px;
}
.bg-dark .step-content-6 .step-choose-list .choose-list {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.bg-dark .step-content-6 .step-choose-list .choose-list.active {
  background: linear-gradient(167deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-6 .step-choose-list .choose-list.active a {
  color: #ffffff;
}
.bg-dark .step-content-6 .step-choose-list .choose-list a {
  color: #ffffff;
  font-size: 14px;
  height: 100%;
}

.step-content-7 .step-choose-list {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-7 .step-choose-list .choose-list {
  height: 80px;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  position: relative;
  margin-bottom: 16px;
  z-index: 1;
}
.step-content-7 .step-choose-list .choose-list:hover {
  background-color: #eafffc;
}
.step-content-7 .step-choose-list .choose-list.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-7 .step-choose-list .choose-list.active a {
  color: #ffffff;
}
.step-content-7 .step-choose-list .choose-list a {
  padding: 19px 20px;
  display: block;
  color: #000;
}
.step-content-7 .step-choose-list .choose-list .thumb {
  position: absolute;
  right: 0;
  top: 0;
  width: 114px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.bg-dark .step-content-7 .step-choose-list .choose-list {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.bg-dark .step-content-7 .step-choose-list .choose-list:hover {
  background-color: #eafffc;
}
.bg-dark .step-content-7 .step-choose-list .choose-list.active {
  background: linear-gradient(167deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-7 .step-choose-list .choose-list a {
  color: #fff;
  width: 100%;
  height: 100%;
  line-height: 48px;
}
.bg-dark .step-content-7 .step-choose-list .choose-list .thumb {
  width: 140px;
}

.bg-dark .step-content-7 .step-choose-list {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.bg-dark .step-content-7 .step-choose-list .choose-list {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.bg-dark .step-content-7 .step-choose-list .choose-list a {
  color: #ffffff;
  line-height: 23px;
}
.bg-dark .step-content-7 .step-choose-list .choose-list.active {
  background: linear-gradient(167deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}

.step-content-8 {
  position: relative;
  z-index: 1;
}
.step-content-8 .step-choose-thumb {
  position: relative;
  top: -60px;
  width: 100%;
  z-index: -1;
}
.step-content-8 .step-choose-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-8 .step-choose-list .choose-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  position: relative;
  height: 80px;
}
.step-content-8 .step-choose-list .choose-list:hover {
  background-color: #eafffc;
}
.step-content-8 .step-choose-list .choose-list.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-8 .step-choose-list .choose-list.active a {
  color: #ffffff;
}
.step-content-8 .step-choose-list .choose-list a {
  padding: 10px 10px 10px 16px;
  display: block;
  color: #000;
  font-size: 14px;
}

.bg-dark .step-content-8 .step-choose-list .choose-list {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.bg-dark .step-content-8 .step-choose-list .choose-list.active {
  background: linear-gradient(167deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-8 .step-choose-list .choose-list a {
  color: #fff;
}

.step-tab-wrapper {
  text-align: center;
}
.step-tab-wrapper .nav-tabs {
  display: inline-flex;
  justify-content: center;
  border: 1px solid #00cfc3;
  border-radius: 12px;
  overflow: hidden;
}
.step-tab-wrapper .nav-tabs .nav-item:first-child {
  border-radius: 12px 0 0 12px;
}
.step-tab-wrapper .nav-tabs .nav-item:last-child {
  border-radius: 0 12px 12px 0;
}
.step-tab-wrapper .nav-tabs .nav-item .nav-link {
  padding: 4px 18px 3px;
  font-size: 12px;
  line-height: 1.333;
  text-transform: uppercase;
  letter-spacing: 0.67px;
  font-weight: 600;
  color: #00cfc3;
  border: 0;
  margin: 0;
  border-radius: 0;
}
.step-tab-wrapper .nav-tabs .nav-item .nav-link.active {
  color: #fff;
  background: #00cfc3;
}
.step-tab-wrapper .tab-content {
  text-align: left;
}

.bg-dark .step-tab-wrapper {
  text-align: center;
}
.bg-dark .step-tab-wrapper .nav-tabs {
  border: 1px solid #0053f4;
}
.bg-dark .step-tab-wrapper .nav-tabs .nav-item .nav-link {
  color: #fff;
}
.bg-dark .step-tab-wrapper .nav-tabs .nav-item .nav-link.active {
  background: linear-gradient(165.7deg, #0053f4 1.64%, #201dd1 100%);
}

.step-content-10 .select-box-info {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  margin-bottom: 15px;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  color: #222222;
}
.step-content-10 .select-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-10 .select-box-wrap .select-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 64px;
  padding: 11px 10px 9px;
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 1 !important;
}
.step-content-10 .select-box-wrap .select-box:hover {
  background-color: #eafffc;
}
.step-content-10 .select-box-wrap .select-box.active {
  background-color: #00cfc3;
  border-color: #00cfc3;
}
.step-content-10 .select-box-wrap .select-box.active .icon {
  border: 1px solid #00cfc3;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
}
.step-content-10 .select-box-wrap .select-box.active .content {
  color: #ffffff;
}
.step-content-10 .select-box-wrap .select-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ececed;
  box-shadow: inset 0 4px 10px rgba(155, 181, 189, 0.1);
  margin-right: 12px;
}
.step-content-10 .select-box-wrap .select-box .content {
  flex: 1;
  font-size: 14px;
  line-height: 1.43;
  font-weight: 600;
  color: #222222;
}
.step-content-10 .step-content-btn {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-10 .step-content-btn a {
  text-align: center;
  display: block;
  color: #ffffff;
  background: #00cfc3;
  padding: 14px 30px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  box-shadow: 0 11px 20px rgba(0, 207, 195, 0.31);
}
.step-content-10 .step-content-btn a.disabled {
  color: #adafb1;
  background: #e0e0e0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.bg-dark .step-content-10 .select-box-info {
  color: #ffffff;
  background: #191b1e;
  border: 1px solid #707377;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.bg-dark .step-content-10 .select-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.bg-dark .step-content-10 .select-box-wrap .select-box {
  background: linear-gradient(180deg, #33373d 0%, #1e2125 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: none;
}
.bg-dark .step-content-10 .select-box-wrap .select-box.active {
  background: linear-gradient(158.74deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-10 .select-box-wrap .select-box.active .icon {
  background: linear-gradient(135.97deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
  border: none;
}
.bg-dark .step-content-10 .select-box-wrap .select-box.active .content {
  color: #ffffff;
}
.bg-dark .step-content-10 .select-box-wrap .select-box .icon {
  background: #33373d;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.4);
  border: none;
}
.bg-dark .step-content-10 .select-box-wrap .select-box .content {
  color: #fff;
}
.bg-dark .step-content-10 .step-content-btn a {
  background: linear-gradient(172.11deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-10 .step-content-btn a.disabled {
  color: #adafb1;
  background: #33373d;
  box-shadow: none;
}

.step-form {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 0;
}
.step-form .input-group-wrap {
  margin-bottom: 10px;
}
.step-form .input-group-wrap label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #33373d;
  margin-bottom: 7px;
}
.step-form .input-group-wrap .input-wrap {
  position: relative;
}
.step-form .input-group-wrap .input-wrap input {
  width: 100%;
  padding: 10px 50px 10px 12px;
  border-width: 2px;
  border-style: solid;
  border-color: #ebebec;
  border-radius: 6px;
  outline: none;
  line-height: 1;
}
.step-form .input-group-wrap .input-wrap .small-text {
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 10px;
  font-weight: bold;
  color: #33373d;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.step-content-15 .step-content-btn {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-15 .step-content-btn a {
  text-align: center;
  display: block;
  color: #ffffff;
  background: #00cfc3;
  padding: 14px 30px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  box-shadow: 0 11px 20px rgba(0, 207, 195, 0.31);
}
.step-content-15 .step-content-btn a.disabled {
  color: #adafb1;
  background: #e0e0e0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.bg-dark .step-form {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 0;
}
.bg-dark .step-form .input-group-wrap {
  margin-bottom: 10px;
}
.bg-dark .step-form .input-group-wrap label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 7px;
}
.bg-dark .step-form .input-group-wrap .input-wrap {
  position: relative;
}
.bg-dark .step-form .input-group-wrap .input-wrap input {
  background: #33373d;
  color: #adafd1;
  border-color: #565a60;
}
.bg-dark .step-form .input-group-wrap .input-wrap .small-text {
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 10px;
  font-weight: bold;
  color: #33373d;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.bg-dark .step-content-15 .step-content-btn a {
  background: linear-gradient(172.11deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-15 .step-content-btn a.disabled {
  color: #adafb1;
  background: #e0e0e0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.circle-progress-bar-wrapper {
  position: relative;
  max-width: 192px;
  margin-left: auto;
  margin-right: auto;
}

.circular-progress-bar {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 192px !important;
  width: 192px !important;
}
.circular-progress-bar canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 250px;
  width: 250px;
}
.circular-progress-bar .progress-text {
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  margin-top: 10px;
}
.circular-progress-bar .progress-percentage {
  font-size: 48px;
  color: #000000;
  font-weight: 600;
}
.circular-progress-bar:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 196px;
  width: 196px;
  border: 5px solid #e8e8e9;
  border-radius: 50%;
}

.step-tab-loading #changing {
  margin-top: 50px;
  font-size: 20px;
  line-height: 1.14;
  text-align: center;
  color: #000000;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.bg-dark .circular-progress-bar .progress-text {
  color: #fff;
}
.bg-dark .circular-progress-bar .progress-percentage {
  color: #fff;
}
.bg-dark .circular-progress-bar:before {
  border: 5px solid #33373D;
}
.bg-dark .step-tab-loading #changing {
  color: #fff;
}

.step-content-17 .step-tab-wrapper {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 65px;
  padding-left: 45px;
  padding-right: 45px;
  text-align: left;
}
.step-content-17 .step-tab-wrapper .info {
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 25px;
  color: #000;
}
.step-content-17 .step-tab-wrapper .input-wrap input {
  padding: 10px 20px 10px 10px;
  background: #f9f9f9;
  border: 0;
  font-size: 17px;
  color: #000;
  border-bottom: 1px solid rgba(60, 60, 67, 0.29);
  outline: none;
}
.step-content-17 .step-tab-wrapper .ext-info {
  color: #666666;
  margin-top: 25px;
  line-height: 18px;
  font-size: 14px;
}
.step-content-17 .step-content-btn {
  max-width: 334px;
  margin-left: auto;
  margin-right: auto;
}
.step-content-17 .step-content-btn a {
  text-align: center;
  display: block;
  color: #ffffff;
  background: #00cfc3;
  padding: 14px 30px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  box-shadow: 0 11px 20px rgba(0, 207, 195, 0.31);
}
.step-content-17 .step-content-btn a.disabled {
  color: #adafb1;
  background: #e0e0e0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.bg-dark .step-content-17 .step-tab-wrapper .info {
  color: #fff;
}
.bg-dark .step-content-17 .step-tab-wrapper .input-wrap input {
  background: none;
  color: #666666;
  border-bottom: 1px solid rgba(60, 60, 67, 0.29);
}
.bg-dark .step-content-17 .step-tab-wrapper .ext-info {
  color: #666666;
}
.bg-dark .step-content-17 .step-content-btn a {
  color: #ffffff;
  background: linear-gradient(172.11deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark .step-content-17 .step-content-btn a.disabled {
  color: #adafb1;
  background: #33373D;
  box-shadow: none;
}

.faq-title h2 {
  font-size: 37px;
  line-height: 1.35;
  margin-bottom: 25px;
  color: #000;
}
@media (max-width: 767px) {
  .faq-title h2 {
    font-size: 30px;
  }
}

.faq-accordion .card {
  margin-bottom: 35px;
  border-radius: 5px;
  border: 0;
  box-shadow: 0 10px 20px rgba(255, 203, 209, 0.6);
}
.faq-accordion .card .card-header {
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
}
.faq-accordion .card .card-header .btn-link {
  color: #9c5ade;
  font-size: 18px;
  line-height: 22px;
  background: none;
  box-shadow: none;
  position: relative;
  padding: 15px;
  padding-right: 54px;
  text-decoration: none;
}
.faq-accordion .card .card-header .btn-link:after {
  display: none;
}
.faq-accordion .card .card-header .btn-link:before {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #9c5ade;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  font-weight: 700;
}
.faq-accordion .card .card-header .btn-link.collapsed:before {
  content: "\f106";
}
.faq-accordion .card .card-body {
  padding-top: 0;
}

.faq-btn a {
  text-align: center;
  display: inline-block;
  color: #ffffff;
  background: #00cfc3;
  padding: 14px 30px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  box-shadow: 0 11px 20px rgba(0, 207, 195, 0.31);
}

.what-you-get {
  background: #fff;
  padding: 30px 15px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(255, 203, 209, 0.6);
}
@media (max-width: 767px) {
  .what-you-get .what-get-thumb {
    margin-bottom: 30px;
  }
}
.what-you-get .what-get-thumb img {
  width: 100%;
}
.what-you-get .what-get-content h3 {
  color: #9c5ade;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.what-you-get .what-get-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.what-you-get .what-get-content ul li {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #000;
  padding-right: 30px;
}
.what-you-get .what-get-content ul li i {
  font-size: 12px;
  color: #fff;
  background: #9c5ade;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
.what-you-get .separator {
  border: 1px solid #e9e9e9;
}

.section-title .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  color: #000;
  margin-bottom: 0;
}

.personalized-content {
  background: #fff;
  padding: 30px 15px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(255, 203, 209, 0.6);
  text-align: center;
}
.personalized-content .title {
  font-size: 21px;
  font-weight: 700;
  color: #000;
}
.personalized-content p {
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  line-height: 1.33;
  color: #99a1ac;
}

.results-content {
  background: #fff;
  padding: 30px 15px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(255, 203, 209, 0.6);
  text-align: center;
  position: relative;
}
.results-content .results-info-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  color: #d6d7d8;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
.results-content .result-progress .circle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.results-content .result-progress .circle-wrap svg .info-case__wrap-line-bg {
  stroke: #f3f3f3;
  fill: #fff;
}
.results-content .result-progress .circle-wrap svg .info-case__wrap-line-styled {
  stroke: #00cfc3;
  fill: #fff;
}
.results-content .result-progress .circle-wrap img {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.results-content .result-point h3 {
  font-weight: 700;
  font-size: 88px;
  color: #5ce3dc;
}
.results-content .result-point h3 span {
  font-weight: 700;
  font-size: 24px;
}
.results-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #191b1e;
}

.results-info-details {
  padding: 5px 30px 20px;
}
.results-info-details .btn-close {
  font-size: 20px;
  color: #6c727a;
  margin-bottom: 0;
  margin-left: -20px;
  border: 0;
  background: none;
  font-weight: 700;
}
.results-info-details p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #0a0a09;
}

.profile-card {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(255, 203, 209, 0.6);
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.profile-card svg {
  margin-bottom: 10px;
}
.profile-card p {
  color: #000;
  font-size: 27px;
  line-height: 36px;
  margin-bottom: 10px;
}
.profile-card p span {
  color: red;
  font-weight: 700;
}
.profile-card h4 {
  font-weight: 700;
}
.profile-card .flex-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.profile-card .flex-wrap .thumb svg {
  height: 125px;
  width: auto;
}
.profile-card .flex-wrap .content {
  margin-left: 15px;
}
.profile-card .flex-wrap .content h3 {
  font-size: 62px;
  font-weight: 500;
  margin-bottom: 0;
}
.profile-card .flex-wrap .content h3 span {
  font-size: 18px;
}
.profile-card .flex-wrap-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.profile-card .flex-wrap-2 .content {
  margin-right: 20px;
}
.profile-card .flex-wrap-2 .content span {
  display: block;
  color: #9c5ade;
  font-size: 18px;
}
.profile-card .flex-wrap-2 .thumb svg {
  height: 140px;
  width: auto;
}

.bg-dark-2 .faq-title h2 {
  color: #fff;
}
.bg-dark-2 .faq-accordion .card {
  background: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .faq-accordion .card .card-header .btn-link {
  color: #84adff;
}
.bg-dark-2 .faq-accordion .card .card-header .btn-link:before {
  border: 2px solid #84adff;
}
.bg-dark-2 .faq-accordion .card .card-body {
  color: #fff;
}
.bg-dark-2 .faq-btn a {
  background: linear-gradient(171.06deg, #0053f4 1.64%, #201dd1 100%);
  box-shadow: 0 8px 20px rgba(30, 26, 214, 0.6);
}
.bg-dark-2 .what-you-get {
  background: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .what-you-get .what-get-content h3 {
  color: #84adff;
}
.bg-dark-2 .what-you-get .what-get-content ul li {
  color: #fff;
}
.bg-dark-2 .what-you-get .what-get-content ul li i {
  color: #fff;
  background: #0044d9;
}
.bg-dark-2 .what-you-get .separator {
  border: 1px solid #e9e9e9;
}
.bg-dark-2 .section-title .title {
  color: #fff;
}
.bg-dark-2 .personalized-content {
  background: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .personalized-content .title {
  color: #fff;
}
.bg-dark-2 .personalized-content p {
  color: #99a1ac;
}
.bg-dark-2 .results-content {
  background: #000;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .results-content .results-info-btn {
  color: #d6d7d8;
}
.bg-dark-2 .results-content .result-progress .circle-wrap svg .info-case__wrap-line-bg {
  stroke: #f3f3f3;
  fill: #4d5764;
}
.bg-dark-2 .results-content .result-progress .circle-wrap svg .info-case__wrap-line-styled {
  stroke: #478DFF;
  fill: #fff;
}
.bg-dark-2 .results-content .result-point h3 {
  color: #478dff;
}
.bg-dark-2 .results-content p {
  color: #fff;
}
.bg-dark-2 .profile-card {
  background: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .profile-card p {
  color: #fff;
  font-size: 27px;
  line-height: 36px;
  margin-bottom: 10px;
}
.bg-dark-2 .profile-card p span {
  color: red;
  font-weight: 700;
}
.bg-dark-2 .profile-card h4 {
  color: #fff;
}
.bg-dark-2 .profile-card .flex-wrap .content h3 {
  color: #fff;
}
.bg-dark-2 .profile-card .flex-wrap-2 .content span {
  color: #84adff;
}

.checkout-info-title {
  text-align: center;
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
  font-size: 20px;
  color: #8c8c8c;
  padding: 30px 10px;
  box-shadow: 0 2px 8px rgba(22, 42, 65, 0.04), 0 14px 26px rgba(7, 21, 37, 0.1);
}
.checkout-info-title span {
  color: #00cfc3;
}

.block-info-wrap {
  background: #fcfcfc;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(222, 222, 222, 0.6);
}
.block-info-wrap .thumb {
  background-color: #fff6f7;
  text-align: center;
  margin-bottom: 20px;
}
.block-info-wrap .thumb img {
  display: inline-block;
}
.block-info-wrap .content {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .block-info-wrap .content {
    padding: 0;
  }
}
.block-info-wrap .content .title {
  font-size: 27px;
  line-height: 36px;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.block-info-wrap .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.block-info-wrap .content ul li {
  display: block;
  font-size: 18px;
  color: #000;
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;
}
.block-info-wrap .content ul li i {
  margin-right: 10px;
  color: #00cfc3;
  position: absolute;
  top: 5px;
  left: 0;
}

.plan-wrapper {
  background: #fcfcfc;
  border-radius: 6px;
  padding: 25px 15px 15px;
  box-shadow: 0 10px 20px rgba(222, 222, 222, 0.6);
}
.plan-wrapper .plan-title {
  font-size: 27px;
  line-height: 36px;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.plan-wrapper .plan-accordion .card {
  margin-bottom: 25px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: none;
}
.plan-wrapper .plan-accordion .card .card-header {
  padding: 0;
  background: none;
  border: 0;
  margin: 0;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link {
  display: grid;
  grid-template-columns: 1fr 135px;
  align-items: center;
  padding: 0;
  text-decoration: none;
  border: 1px solid #00cfc3;
  box-shadow: 0 4px 12px rgba(35, 38, 55, 0.2);
  border-radius: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .plan-wrapper .plan-accordion .card .card-header .btn-link {
    grid-template-columns: 1fr 80px;
  }
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .save {
  position: absolute;
  left: 25px;
  top: 0;
  transform: translateY(-50%);
  padding: 5px 10px;
  font-size: 12px;
  color: #fff;
  background: #00cfc3;
  border-radius: 50px;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .left-content {
  padding: 20px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .left-content h4 {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  margin-bottom: 5px;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .left-content p {
  font-size: 11px;
  color: #00cfc3;
  margin-bottom: 0;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .left-content p del {
  color: #f46363;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .right-content {
  height: 100%;
  background: #00cfc3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid #00cfc3;
  border-radius: 0 8px 8px 0;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .right-content h4 {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 0;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link .right-content p {
  font-size: 12px;
  color: #fff;
  margin-bottom: 0;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  box-shadow: none;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .save {
  background: #b4b4b4;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .left-content h4 {
  color: #636363;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .left-content p {
  color: #636363;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .left-content p del {
  color: #b3b3b3;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .right-content {
  background: #f9f9f9;
  border-left: 1px solid #e1e1e1;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .right-content h4 {
  color: #636363;
}
.plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .right-content p {
  color: #636363;
}
.plan-wrapper .plan-accordion .card .plan-body {
  padding: 12px;
  margin-top: 20px;
  background: rgba(0, 207, 195, 0.2);
  text-align: center;
  position: relative;
  border-radius: 8px;
}
.plan-wrapper .plan-accordion .card .plan-body:before {
  content: "";
  border-style: solid;
  border-width: 0 11px 14px 11px;
  border-color: transparent transparent rgba(0, 207, 197, 0.2) transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.plan-wrapper .plan-accordion .card .plan-body h4 {
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}
.plan-wrapper .plan-accordion .card .plan-body p {
  font-size: 13px;
  color: #565a60;
  margin-bottom: 0;
}
.plan-wrapper .plan-info-text {
  margin-top: -10px;
  font-size: 12px;
  color: #82868b;
}

.checkout-plan-agree .checkout-btn {
  text-align: center;
}
.checkout-plan-agree .checkout-btn a {
  width: 100%;
  display: inline-block;
  background: #c5c5c5;
  box-shadow: 0 12px 23px rgba(167, 167, 167, 0.31);
  cursor: default;
  pointer-events: none;
  font-size: 16px;
  padding: 15px 20px;
  max-width: 320px;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.checkout-plan-agree .checkout-btn.active a {
  position: relative;
  background: #00cfc3;
  box-shadow: 0 12px 23px rgba(7, 205, 205, 0.31);
}
.checkout-plan-agree .checkout-btn.active a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 26px;
  animation: 2s impulseBtn ease-out infinite;
}
.checkout-plan-agree .checkout-checkbox {
  position: relative;
  padding-left: 40px;
  max-width: 310px;
  margin: 30px auto 0;
}
.checkout-plan-agree .checkout-checkbox input[type=checkbox] {
  display: none;
}
.checkout-plan-agree .checkout-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #00cfc3;
  border-radius: 5px;
}
.checkout-plan-agree .checkout-checkbox .checkmark:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: #00cfc3;
  position: absolute;
  right: -3px;
  top: -7px;
  background: #fff;
  height: 16px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.checkout-plan-agree .checkout-checkbox input[type=checkbox]:checked + .checkmark:before {
  visibility: visible;
  opacity: 1;
}
.checkout-plan-agree .checkout-checkbox p {
  color: #565a60;
  font-size: 12px;
  line-height: 1.5;
}
.checkout-plan-agree .checkout-checkbox p a {
  color: #565a60;
  text-decoration: underline;
}
.checkout-plan-agree .checkout-checkbox p a:hover {
  opacity: 0.7;
}

.weight-loss-wrapper {
  background: #fcfcfc;
  border-radius: 6px;
  padding: 32px 48px 78px;
  box-shadow: 0 10px 20px rgba(222, 222, 222, 0.6);
}
@media (max-width: 767px) {
  .weight-loss-wrapper {
    padding: 32px 16px 78px;
  }
}
.weight-loss-wrapper .weight-loss-title {
  font-size: 27px;
  line-height: 36px;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.weight-loss-wrapper .weight-loss-title span {
  color: #00cfc3;
}

.weight-loss-slider .slick-prev {
  position: absolute;
  left: 30px;
  top: 80px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 60%;
  text-align: center;
  background: #fff;
  color: #00cfc3;
  z-index: 9;
  border: 0;
}
@media (max-width: 767px) {
  .weight-loss-slider .slick-prev {
    left: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
  }
}
.weight-loss-slider .slick-next {
  position: absolute;
  right: 30px;
  top: 80px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 60%;
  text-align: center;
  background: #fff;
  color: #00cfc3;
  z-index: 9;
  border: 0;
}
@media (max-width: 767px) {
  .weight-loss-slider .slick-next {
    right: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
  }
}
.weight-loss-slider .slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.weight-loss-slider .slick-dots li {
  display: inline-block;
  margin: 0 8px;
  width: 40px;
  height: 6px;
  border-radius: 2px;
  background-color: #eaeef2;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  cursor: pointer;
}
.weight-loss-slider .slick-dots li.slick-active {
  background: #00cfc3;
}
.weight-loss-slider .slick-dots li button {
  display: none;
}

.weight-loss-slide .thumb {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  height: 200px;
  border-radius: 6px;
  background: linear-gradient(180deg, #92c5df 0, #85dbc6 100%);
  text-align: center;
}
.weight-loss-slide .thumb img {
  display: inline-block;
}
.weight-loss-slide .content .title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.weight-loss-slide .content .title-wrap .title {
  font-size: 32px;
  color: #162a41;
  margin-bottom: 0;
}
.weight-loss-slide .content .title-wrap p {
  font-size: 20px;
  color: #191b1e;
  margin-bottom: 0;
}
.weight-loss-slide .content .text {
  max-height: 90px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.37;
  color: #565a60;
  letter-spacing: -0.001em;
  position: relative;
  overflow: hidden;
}
.weight-loss-slide .content .text.active {
  max-height: none;
}
.weight-loss-slide .content .text.active .load-more {
  display: none;
}
.weight-loss-slide .content .text .load-more {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #2c70c3;
  background: #fff;
  padding: 5px 10px;
  cursor: pointer;
}

.section-info-text p {
  font-size: 12px;
  line-height: 1.33;
  color: #82868b;
  text-align: center;
  margin-bottom: 0;
}

.often-ask-wrapper {
  background: #fcfcfc;
  border-radius: 6px;
  padding: 32px 48px;
  box-shadow: 0 10px 20px rgba(222, 222, 222, 0.6);
}
@media (max-width: 767px) {
  .often-ask-wrapper {
    padding: 30px 20px;
  }
}
.often-ask-wrapper .often-ask-title {
  font-size: 27px;
  line-height: 36px;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.often-ask-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.often-ask-wrapper ul li {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}
.often-ask-wrapper ul li:last-child {
  margin-bottom: 0;
}
.often-ask-wrapper ul li .icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  background: #00cfc3;
  border-radius: 50%;
  text-align: center;
}
.often-ask-wrapper ul li h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}
.often-ask-wrapper ul li p {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 20px;
}

.user-testimonial-wrapper .user-testimonial-title {
  font-size: 27px;
  line-height: 36px;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.user-testimonial-wrapper .user-testimonial-wrap {
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(22, 42, 65, 0.04), 0 14px 26px rgba(7, 21, 37, 0.1);
  border-radius: 6px;
  padding: 16px 24px;
}
@media (max-width: 767px) {
  .user-testimonial-wrapper .user-testimonial-wrap {
    padding: 16px;
  }
}
.user-testimonial-wrapper .user-testimonial-wrap .t-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.user-testimonial-wrapper .user-testimonial-wrap .t-heading .t-heading-left h4 {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 3px;
}
.user-testimonial-wrapper .user-testimonial-wrap .t-heading .t-heading-left .rating {
  color: #FF8600;
  font-size: 16px;
}
.user-testimonial-wrapper .user-testimonial-wrap .t-heading .t-heading-right {
  text-align: right;
}
.user-testimonial-wrapper .user-testimonial-wrap .t-heading .t-heading-right p {
  font-weight: 600;
  font-size: 14px;
  color: #82868b;
  margin-bottom: 5px;
}
.user-testimonial-wrapper .user-testimonial-wrap .t-heading .t-heading-right p:last-child {
  margin-bottom: 0;
}
.user-testimonial-wrapper .user-testimonial-wrap .text {
  position: relative;
  overflow: hidden;
  max-height: 76px;
}
.user-testimonial-wrapper .user-testimonial-wrap .text.active {
  max-height: none;
}
.user-testimonial-wrapper .user-testimonial-wrap .text.active .load-more {
  display: none;
}
.user-testimonial-wrapper .user-testimonial-wrap .text .load-more {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #2c70c3;
  background: #fff;
  padding: 5px 10px;
  cursor: pointer;
}

.policy-wrapper {
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(22, 42, 65, 0.04), 0 14px 26px rgba(7, 21, 37, 0.1);
  border-radius: 6px;
  padding: 25px;
}
@media (max-width: 767px) {
  .policy-wrapper {
    padding: 10px;
  }
}
.policy-wrapper .content {
  border: 2px solid #00cfc3;
  border-radius: 8px;
  padding: 30px 25px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .policy-wrapper .content {
    padding: 15px 15px 40px;
  }
}
.policy-wrapper .content .icon {
  position: absolute;
  bottom: -60px;
  right: 25px;
  z-index: 2;
}
.policy-wrapper .content .title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}
.policy-wrapper .content .desc {
  margin-bottom: 30px;
}
.policy-wrapper .content p {
  font-weight: 400;
  line-height: 20px;
  color: #565a60;
  font-size: 14px;
  margin-bottom: 0;
}
.policy-wrapper .content p a {
  color: #00cfc3;
  text-decoration: underline;
}

@-moz-keyframes impulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  18% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 207, 195, 0), 0 0 0 27px rgba(0, 207, 195, 0);
  }
}
@-webkit-keyframes impulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  18% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 207, 195, 0), 0 0 0 27px rgba(0, 207, 195, 0);
  }
}
@-o-keyframes impulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  18% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 207, 195, 0), 0 0 0 27px rgba(0, 207, 195, 0);
  }
}
@keyframes impulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  18% {
    box-shadow: 0 0 0 0 rgba(0, 207, 195, 0.3), 0 0 0 0 rgba(0, 207, 195, 0.2);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 207, 195, 0), 0 0 0 27px rgba(0, 207, 195, 0);
  }
}
.bg-dark-2 .checkout-info-title {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .checkout-info-title span {
  color: #0044d9;
}
.bg-dark-2 .block-info-wrap {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .block-info-wrap .thumb {
  background-color: #33373d;
}
.bg-dark-2 .block-info-wrap .thumb img {
  display: inline-block;
}
.bg-dark-2 .block-info-wrap .content .title {
  color: #fff;
}
.bg-dark-2 .block-info-wrap .content ul li {
  color: #fff;
}
.bg-dark-2 .block-info-wrap .content ul li i {
  color: #0044d9;
}
.bg-dark-2 .plan-wrapper {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .plan-wrapper .plan-title {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link {
  background: #33373d;
  border: 1px solid #00cfc3;
  box-shadow: 0 4px 12px rgba(35, 38, 55, 0.2);
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link .save {
  color: #fff;
  background: #00cfc3;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link .left-content h4 {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link .left-content p {
  color: #ffff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link .left-content p del {
  color: #f46363;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed {
  background: #191b1e;
  border-color: #82868b;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .save {
  color: #fff;
  background: #33373d;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .left-content h4 {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .left-content p {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .left-content p del {
  color: #b3b3b3;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .right-content {
  background: #191b1e;
  border-color: #82868b;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .right-content h4 {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .card-header .btn-link.collapsed .right-content p {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .plan-body {
  background: #565a60;
  box-shadow: 0 2px 6px rgba(22, 42, 65, 0.1), 0 12px 24px rgba(103, 125, 150, 0.1) !important;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .plan-body:before {
  border-color: transparent transparent #565a60 transparent;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .plan-body h4 {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .plan-body p {
  color: #fff;
}
.bg-dark-2 .plan-wrapper .plan-accordion .card .plan-body p span {
  color: #f46363;
}
.bg-dark-2 .plan-wrapper .plan-info-text {
  color: #d6d7d8;
}
.bg-dark-2 .checkout-plan-agree .checkout-checkbox p {
  color: #fff;
}
.bg-dark-2 .checkout-plan-agree .checkout-checkbox p a {
  color: #fff;
}
.bg-dark-2 .weight-loss-wrapper {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .weight-loss-wrapper .weight-loss-title {
  color: #fff;
}
.bg-dark-2 .weight-loss-wrapper .weight-loss-title span {
  color: #0044d9;
}
.bg-dark-2 .weight-loss-slide .content .title-wrap .title {
  color: #fff;
}
.bg-dark-2 .weight-loss-slide .content .title-wrap p {
  color: #fff;
}
.bg-dark-2 .weight-loss-slide .content .text {
  color: #fff;
}
.bg-dark-2 .weight-loss-slide .content .text .load-more {
  background: none;
  background: #191B1E;
}
.bg-dark-2 .often-ask-wrapper {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .often-ask-wrapper .often-ask-title {
  color: #fff;
}
.bg-dark-2 .often-ask-wrapper ul li .icon {
  background: #0044d9;
}
.bg-dark-2 .often-ask-wrapper ul li h4 {
  color: #fff;
}
.bg-dark-2 .often-ask-wrapper ul li p {
  color: #fff;
}
.bg-dark-2 .user-testimonial-wrapper .user-testimonial-title {
  color: #fff;
}
.bg-dark-2 .user-testimonial-wrapper .user-testimonial-wrap {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .user-testimonial-wrapper .user-testimonial-wrap .t-heading .t-heading-left h4 {
  color: #fff;
}
.bg-dark-2 .user-testimonial-wrapper .user-testimonial-wrap .text p {
  color: #fff;
}
.bg-dark-2 .user-testimonial-wrapper .user-testimonial-wrap .text .load-more {
  background: #191b1e;
}
.bg-dark-2 .policy-wrapper {
  background-color: #191b1e;
  box-shadow: 0 10px 20px rgba(28, 31, 36, 0.7);
}
.bg-dark-2 .policy-wrapper .content {
  border: 2px solid #0044d9;
}
.bg-dark-2 .policy-wrapper .content .title {
  color: #fff;
}
.bg-dark-2 .policy-wrapper .content p {
  color: #fff;
}
.bg-dark-2 .policy-wrapper .content p a {
  color: #0044d9;
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */


.lang19 {
font-size:70%!important;
}
.lang50 {
font-size:60%!important;
}
.lang57 {
font-size:85%!important;
}
.lang58 {
font-size:75%!important;
}
.lang70 {
font-size:95%!important;
}
.lang80 {
font-size:80%!important;
}
.lang82 {
font-size:70%!important;
}
.lang164 {
font-size:80%!important;
}