/* google fonts cdn */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orelega+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Base css start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --DMSans: "DM Sans", sans-serif;
  --OrelegaOne: "Orelega One", serif;
  --Inter: "Inter", sans-serif;
  --Roboto: "Roboto", sans-serif;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
}

a {
  color: inherit;
  text-decoration: none;
}

label {
  cursor: pointer;
}

body {
  font-family: var(--DMSans);
  color: #42535a;
}

h1,
h2,
.h2 {
  font-family: var(--OrelegaOne);
  font-weight: 400;
  color: #005a64;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}

section {
  padding-block: 56px;
 /*padding-block: 120px;*/	
}

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

strong {
  color: #090027;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding-inline: 20px;
  border-radius: 8px;
  color: #fff;
  background-color: #15b078;
  border: 1px solid #15b078;
  font-weight: 600;
}

.theme-btn:hover {
  background-color: transparent;
  color: #15b078;
}

.theme-btn--outline {
  background-color: transparent;
  color: #005a64;
  border-color: #c2d8da;
}

.theme-btn--outline:hover {
  background-color: #005a64;
  color: #fff;
  border-color: #005a64;
}

.theme-btn--sm {
  height: 40px;
  padding-inline: 16px;
}

.section__header {
  /*margin-bottom: 60px;*/
  margin-bottom: 33px;	
}

h1 {
  font-size: 52px;
  line-height: 56px;
  margin-bottom: 30px;
}

h2,
.h2 {
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 30px;
}

h2 span,
.h2 span {
  color: #15b078;
}

h3 {
  font-size: 28px;
  line-height: 32px;
  color: #090027;
}

h4 {
  font-size: 24px;
  line-height: 28px;
  color: #090027;
}

h5 {
  font-size: 18px;
  line-height: 22px;
  color: #090027;
}

.section__desc {
  font-size: 18px;
  line-height: 1.56;
}

.text-green {
  color: #15b078 !important;
}

/* Base css end */

/* theme table css start */
.theme-table th,
.theme-table td {
  font-size: 18px;
  line-height: 22px;
  padding: 19px 5px;
  border-top: 1px solid #edecf0;
}

.theme-table th:first-child {
  border-top-left-radius: 12px;
}

.theme-table table {
  border-collapse: separate;
  border-spacing: 0;
}

.theme-table th:last-child {
  border-top-right-radius: 12px;
}

.theme-table th:first-child,
.theme-table td:first-child {
  border-left: 1px solid #edecf0;
}

.theme-table th:last-child,
.theme-table td:last-child {
  border-right: 1px solid #edecf0;
  padding-right: 20px;
}

.theme-table th:first-child,
.theme-table td:first-child {
  padding-left: 20px;
}

.theme-table tr:last-child td {
  border-bottom: 1px solid #edecf0;
}

.theme-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.theme-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.theme-table th {
  color: #090027;
  background-color: #f5f9fa80;
}

.theme-table tbody tr:nth-child(2n) td {
  background-color: #f5f9fa80;
}

.features__table th:not(:first-child) {
  width: 200px;
}

/* theme table css end */

/* form css start */
.form__wrapper {
  gap: 20px;
}

.form__input-field {
  height: 48px;
  border: 1px solid #a6aeb2;
  transition: all 0.3s;
}

.form__input-field:focus {
  outline: none;
  border-color: #15b078;
}

.form__input-field::placeholder {
  color: #a6aeb2;
}

.form__input-field--textarea {
  padding-block: 12px;
  min-height: 104px;
  resize: none;
}

.form__note {
  font-size: 14px;
  line-height: 18px;
}

.form__checkbox-box {
  width: 18px;
  height: 18px;
  border: 1px solid #15b078;
  transition: all 0.3s;
}

.form__checkbox-input:checked~.form__checkbox-box {
  background-color: #15b078;
}

.form__checkbox-box img {
  opacity: 0;
  transition: all 0.3s;
}

.form__checkbox-input:checked~.form__checkbox-box img {
  opacity: 1;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  height: 48px;
  border: 1px solid #a6aeb2;
  border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-left: 16px;
  padding-right: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.select2-container .select2-selection--single::after,
.select2-container--default .select2-selection--multiple::after {
  content: url("../img/icons/angle-down.svg");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  display: flex;
}

.form__dial-code {
  width: 80px;
}

/* form css end */

/* header start */
.header {
  padding-block: 16px;
  border-bottom: 1px solid #e5eeef;
  z-index: 9999;
}

.header .container {
  max-width: 1440px;
  padding-inline: 30px;
}

.header__logo-img {
  width: 112px;
}

.header__wrapper {
  gap: 30px;
}

.header__menu {
  gap: 10px;
}

.header__link {
  color: #090027;
  line-height: 20px;
  padding: 6px 12px;
}

.header__link:hover,
.header__link--active {
  color: #15b078;
  background-color: #f5f9fa;
}

.header__toggle svg {
  width: 28px;
}

/* header end */

/* hero section start */
.hero .section__header {
  margin-bottom: 30px;
}

.hero__content {
  padding-block: 60px;
}

.hero__media {
  margin-right: -150px;
}

.hero__heart-shape {
  width: 500px;
  left: 4px;
  top: 57px;
  opacity: 0.1;
}

.video__thumb {
  border-radius: 12px;
}

.video__play {
  inset: 0;
}

.video__play img {
  width: 64px;
}

/* hero section end */

/* challenge section start */
.challenge .row {
  --bs-gutter-y: 24px;
}

.card {
  padding: 16px;
  background-color: #f5f9fa;
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.card__icon img:not(.card__close-icon) {
  opacity: 0.2;
}

.card__close-icon {
  width: 20px;
  top: 0;
  right: -10px;
}

.card__title {
  margin-bottom: 20px;
}

/* challenge section end */

/* intro section start */
.intro {
  /*padding-bottom: 168px;*/
	padding-bottom: 57px;
}

.intro__text:not(:last-child),
.intro p:not(:last-child) {
  margin-bottom: 30px;
}

/* intro section end */

/* features section start */
.features .row {
  --bs-gutter-y: 60px;
}

.features__thumb {
  border-radius: 12px;
  aspect-ratio: 555 / 312;
  margin-bottom: 30px;
}

.features__list {
  gap: 10px;
}

.features__list li {
  gap: 10px;
}

.features__list-icon {
  width: 24px;
}

.features__thumb img {
  transition: all 1s ease-in-out;
}

.features__thumb:hover img {
  transform: scale(1.1);
}

.features__container {
  /*padding-block: 120px;*/
  padding-block: 56px;	
  border-block: 1px solid #e5eeef;
}

/* features section end */

/* privacy section start */
.privacy .row {
  --bs-gutter-y: 30px;
}

.privacy__item {
  gap: 20px;
}

/* privacy section end */

/* faq section start */
.faq__wrapper {
  border-block: 1px solid #e5eeef;
}

.faq__content {
  padding-block: 120px;
  margin-right: -10px;
}

.faq__wrapper .row {
  --bs-gutter-x: 0;
}

.faq__list {
  gap: 20px;
}

.faq__list li {
  font-size: 18px;
  line-height: 22px;
  color: #090027;
}

.faq__list li span {
  font-family: var(--OrelegaOne);
  color: #15b078;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}

.faq__thumb {
  margin-right: -145px;
  margin-left: 10px;
}

/* faq section end */

/* download section start */
.download__content {
  padding-left: 30px;
}

.download__btns {
  gap: 20px;
  margin-top: 30px;
}

.download__btn img {
  width: 120px;
}

/* download section end */

/* cta section start */
.cta {
  background-color: #87e4db0d;
}

.cta__content {
  max-width: 650px;
}

.cta .section__header {
  margin-bottom: 30px;
}

.cta__heart-shape {
  max-width: 1246px;
  top: -316px;
  opacity: 0.1;
}

/* cta section end */

/* footer start */
.footer {
  background-color: #f5f9fa;
}

.footer__wrapper {
  padding-block: 60px;
  gap: 30px;
}

.footer__logo-img {
  width: 112px;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__intro {
  max-width: 360px;
}

.footer__widgets {
  gap: 30px;
}

.footer__widget {
  min-width: 198px;
}

.footer__widget-title {
  margin-bottom: 20px;
}

.footer__menu {
  gap: 10px;
}

.footer__menu li {
  line-height: 20px;
}

.footer__link {
  color: #42535a;
}

.footer__link:hover {
  color: #15b078;
}

/* Widget Styles */
.footer__widget .widget_nav_menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__widget .widget_nav_menu ul li a {
  color: #42535a;
  line-height: 20px;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.footer__widget .widget_nav_menu ul li a:hover {
  color: #15b078;
}

.footer__bottom {
  padding-block: 30px;
  border-top: 1px solid #e5eeef;
}

.social-links {
  gap: 20px;
}

.social-link img {
  width: 24px;
}

.social-link:hover {
  transform: scale(1.1);
}

/* footer end */

/* blog section start */
.blog {
  padding-top: 60px;
}

.blog__list {
  gap: 60px;
}

.blog__thumb {
  aspect-ratio: 653 / 367;
  border-radius: 12px;
  margin-bottom: 30px;
}

.blog__thumb img {
  transition: all 1s ease-in-out;
}

.blog__thumb:hover img {
  transform: scale(1.1);
}

.blog__btn:hover img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.blog__tags h3 {
  color: #005a64;
}

.blog__tags p,
.blog__content p {
  color: #42535a;
  font-size: 16px;
}

.tag__list {
  gap: 10px;
}

.tag {
  font-size: 14px;
  line-height: 18px;
  color: #005a64;
  padding: 6px 11px;
  border: 1px solid #e5eeef;
}

.tag:hover {
  background-color: transparent;
  color: #15b078;
  border-color: #15b078;
}

.blog__right {
  top: 130px;
}

.blog ul {
  padding-left: 14px;
}

.blog ul li {
  list-style-type: disc;
}

/* blog section end */

/* about section start */
.about {
  padding-top: 60px;
}

.about__content {
  margin-bottom: 60px;
}

.author {
  gap: 20px;
}

.author__image {
  width: 64px;
  height: 64px;
}

.author p {
  color: #090027;
  line-height: 20px;
}

/* about section end */

/* policy section start */
.policy {
  padding-top: 60px;
}

/* policy section end */

/* contact section start */
.contact {
  padding-top: 60px;
}

.theme-toast {
  background-color: #15b0780f;
  padding: 12px;
  margin-bottom: 30px;
  gap: 12px;
}

.theme-toast__icon {
  width: 24px;
}

.theme-toast__title {
  line-height: 20px;
  color: #15b078;
}

.theme-toast__subtitle {
  font-size: 14px;
  line-height: 18px;
}

.contact__meta {
  gap: 10px;
}

.contact__meta li {
  gap: 10px;
}

.contact__meta li img {
  width: 24px;
}

.contact__content {
  margin-bottom: 60px;
}

.contact__form {
  gap: 30px;
}

/* contact section end */

/* pricing section start */
.pricing {
  padding-top: 60px;
}

.pricing__card {
  margin-right: 18px;
  border: 1px solid #e5eeef;
  border-radius: 12px;
}

.pricing__card-header {
  background-color: #f5f9fa80;
  border-bottom: 1px solid #e5eeef;
  border-radius: 12px 12px 0 0;
}

.pricing__card-body {
  gap: 20px;
}

.pricing__features {
  gap: 10px;
}

.pricing__features li {
  gap: 10px;
}

.pricing__features li img {
  width: 24px;
}

.pricing__card-note {
  font-size: 14px;
  line-height: 18px;
  color: #a6aeb2;
}

.pricing__demo-title {
  font-family: var(--OrelegaOne);
  color: #005a64;
  margin-bottom: 30px;
}

.pricing__card-title {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 10px;
}

.pricing__card-title small {
  font-size: 18px;
  line-height: 22px;
}

.pricing__card-subtitle {
  margin-bottom: 20px;
}

.toggle-swich {
  color: #090027;
  gap: 10px;
}

.toggle-switch__btn {
  width: 36px;
  height: 20px;
  background-color: #a6aeb280;
  border-radius: 20px;
  position: relative;
  display: flex;
  transition: all 0.3s;
}

.toggle-switch__btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #a6aeb280;
  border-radius: 50%;
  transition: all 0.3s;
}

.toggle-switch__input:checked~.toggle-switch__btn {
  background-color: #15B078;
}

.toggle-switch__input:checked~.toggle-switch__btn::after {
  transform: translateX(16px);
  border-color: #15B078;
}

/* pricing section end */

/* comingsoon section start */
.comingsoon {
  background-color: #F5F9FA;
}

.comingsoon__logo {
  width: 346px;
  margin-bottom: 30px;
}

.comingsoon__text {
  font-size: 24px;
  margin-bottom: 60px;
}

/* comingsoon section end */

/* Footer Widget Menu Fix */
.footer__widget .widget_nav_menu ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__widget .widget_nav_menu ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer__widget .widget_nav_menu ul li a {
  color: #42535a !important;
  line-height: 20px !important;
  display: inline-block !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
}

.footer__widget .widget_nav_menu ul li a:hover {
  color: #15b078 !important;
}

/* Pagination Styling */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 48px;
  padding-inline: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;

  /* Outline Style Default */
  background-color: transparent;
  color: #005a64;
  border: 1px solid #c2d8da;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
  /* Solid Style Active/Hover */
  background-color: #15b078;
  color: #fff;
  border-color: #15b078;
}

.pagination-wrapper .page-numbers i {
  font-style: normal;
}

/* Global Checkbox Styles */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #15b078;
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border-radius: 4px;
  /* Default small radius */
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-top: 4px;
  margin-left: 0;
  margin-right: 8px;
}

input[type="checkbox"]:checked {
  background-color: #15b078;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}


.faq__content h2{
margin-bottom: 17px;	
}