@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800&display=swap');

::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: #DDDDDD;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #DDDDDD;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
html {
  scroll-behavior: smooth;
}
[hidden],
template { display: none;}
body {
  background: #FAFAFA;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #202124;
  line-height: 1.5;
}
h1, h2, h3, h4, h5 {
  line-height: 1.333;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

* {
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: inherit;
  box-sizing: border-box;
}
*:focus, *:hover {
  outline: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

img {
  max-width: 100%;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/**
 * 7.0 Accessibility
 */

/* Text meant only for screen readers */
.says,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	font: bold 14px/normal "Noto Sans", sans-serif;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	font: bold 14px/normal "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}

/**
 * 8.0 Alignments
 */
.menu-toggle {
  display: none;
}
button {
  cursor: pointer;
  border: 0;
  outline: 0;
  background: 0 0;
  padding: 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 12px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.375rem;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none !important;
  min-height: 42px;
  cursor: pointer;
}
@media screen and (min-width: 639px) {
  .btn {
    font-size: 1rem;
  }
}
.btn:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.btn:hover svg path {
  stroke: #ffffff;
  transition: all 0.3s ease;
}
.btn svg path {
  transition: all 0.3s ease;
}
.btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.btn--lg {
  min-height: 48px;
}
.btn--white {
  background-color: #ffffff;
  color: #6846E7;
  border-color: #ffffff;
}
.btn--white:hover {
  border-color: #6846E7;
  background-color: #6846E7;
  color: #ffffff !important;
}
.btn--white:hover svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #6846E7;
  color: #ffffff;
  border-color: #6846E7;
}
.btn--secondary {
  background-color: #B6ECE0;
  color: #0F8A6D;
  border-color: #B6ECE0;
}
.btn--green {
  background-color: #15C39A;
  color: #ffffff;
  border-color: #15C39A;
}
.btnGroup {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .btnGroup{
    gap: 16px;
  }
}
.btnGroup--end {
  justify-content: flex-end;
}
.btnGroup--directionColumn {
  flex-direction: column;
}
.btnGroup--spacebetween {
  justify-content: space-between;
}
.btn--rounded {
  border-radius: 50px;
}
.btn--full {
  width: 100%;
}

.container {
  max-width: 100%;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 639px) {
  .container {
    max-width: 100%;
    padding: 0 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1232px;
  }
}
.formRow {
  display: grid;
  gap: 16px;
  margin: 0 0 16px 0;
  grid-template-columns: minmax(0, 1fr);
}
@media screen and (min-width: 1200px) {
  .formRow {
    gap: 20px;
    margin: 0 0 20px 0;
  }
}
@media screen and (min-width: 1400px) {
  .formRow {
    gap: 24px;
    margin: 0 0 24px 0;
  }
}
.formRow2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (min-width: 768px) {
  .formRow2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.formGroup label {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #202124;
  margin-bottom: 0.45rem;
}
.formGroup input,
.formGroup textarea {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  color: #202124;
  width: 100%;
  height: 48px;
  border: 1px solid #DEDEDE;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .formGroup input,
  .formGroup textarea {
    height: 56px;
  }
}
.formGroup textarea {
  min-height: 80px;
}
.formGroup input::-webkit-input-placeholder,
.formGroup textarea::-webkit-input-placeholder {
  color: #DDDDDD;
}
.formGroup input::-moz-placeholder,
.formGroup textarea::-moz-placeholder {
  color: #DDDDDD;
}
.formGroup input:-ms-input-placeholder,
.formGroup textarea:-ms-input-placeholder {
  color: #DDDDDD;
}
.formGroup input:-moz-placeholder,
.formGroup textarea:-moz-placeholder {
  color: #DDDDDD;
}
.formGroup input:hover,
.formGroup textarea:hover {
  border-color: #202124;
}
.formGroup input:focus,
.formGroup input:active,
.formGroup textarea:focus,
.formGroup textarea:active {
  border-color: #202124;
}
.formGroup--checkbox .wpcf7-list-item {
  margin: 0;
}
.formGroup--checkbox,
.formGroup--checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.formGroup--checkbox input {
  width: 24px;
  height: 24px;
  margin:0;
}
.formGroup--checkbox label {
  margin-bottom: 0;
}
.contactCard form .btnGroup .btn {
  font-size: 1.125rem;
  min-height: 50px;
  width: 100%;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .contactCard form .btnGroup .btn {
    width: auto;
    min-width: 300px;
  }
}
.siteHeader {
  display: block;
  padding: 0 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  width: 100%;
  z-index: 11;
}
@media screen and (min-width: 639px) {
  .siteHeader {
    top: 24px;
  }
}
.siteHeader .container {
  padding: 0;
}
.siteHeader__row {
  background: #ffffff;
  padding: .5rem .5rem .5rem .875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 6px;
  height: 60px;
  border-radius: 4rem;
  box-shadow: 0px 4px 30px 0px #0000000F;
}
@media screen and (max-width: 767px) {
  .siteHeader__row {
    padding: .5rem .875rem;
  }
}
.siteHeader .branding {
  display: flex;
  align-items: center;
  flex: 0 0 130px;
  max-width: 130px;
}
@media screen and (min-width: 768px) {
  .siteHeader .branding {
    flex: 0 0 170px;
    max-width: 170px;
  }
}
.siteHeader .branding__link {
  display: inline-flex;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.siteHeader .branding__link:hover {
  opacity: .8;
}
.siteHeader .branding__link__img {
  max-width: 100%;
  height: auto;
}
.siteHeader .navbar {
  display: flex;
  justify-content: center;
  background: #ffffff;
  position: fixed;
  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  width: 280px;
  left: 0px;
  top: 0px;
  right: 48px;
  bottom: 0px;
  box-shadow: 0px 4px 30px 0px #0000000F;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .siteHeader .navbar {
    background: none;
    display: flex;
    justify-content: center;
    position: static;
    width: 100%;
    transform: none;
    right: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    z-index: 11;
  }
}
.siteHeader .navbar .menu-main-menu-container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .siteHeader .navbar .menu-main-menu-container {
    width: auto;
  }
}
.siteHeader .navbar .nav-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width:768px) {
  .siteHeader .navbar .nav-menu {
    align-items: center;
    flex-direction: row;
    width: auto;
    height: 100%;
  }
}
.menu-open {
  overflow: hidden;
}
.menu-open .siteHeader .navbar {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  visibility: visible;
  overflow-y: auto;
  z-index: 9999;
}
.siteHeader .navbar .nav-menu li {
  display: flex;
  align-items: center;
  list-style: none;
  position: relative;
  width: 100%;
}
@media screen and (min-width:768px) {
  .siteHeader .navbar .nav-menu li {
    width: auto;
    height: 100%;
  }
}
.siteHeader .navbar .nav-menu li a {
  display: flex;
  align-items: center;
  padding:.5rem 1rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  color: #6A6A6C;
  text-transform: capitalize;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width:768px) {
  .siteHeader .navbar .nav-menu li a {
    padding: 0 .325rem;
    font-size: .813rem;
    width: auto;
  }
}
@media screen and (min-width:1000px) {
  .siteHeader .navbar .nav-menu li a {
    padding: 0 1rem;
    font-size: 1rem;
  }
}
.siteHeader .navbar .nav-menu li.current-menu-item a, 
.siteHeader .navbar .nav-menu li:hover a {
  font-weight: 600;
  color: #202124;
}
.siteHeader .actionGroup { 
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .siteHeader .actionGroup {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.siteHeader .actionGroup .btnLogin {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .813rem;
  font-weight: 600;
  color: #6846E7;
  text-align: center;
  min-height: 36px;
  text-decoration: none;
  cursor: pointer;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .siteHeader .actionGroup .btnLogin {
    font-size: 1rem;
    min-height: 42px;
  }
}
.siteHeader .actionGroup .btnStartCheck {
  background: #15C39A;
  padding: 0.5rem .75rem;
  font-size: .813rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  min-width: 80px;
  min-height: 36px;
  text-decoration: none;
  border-radius: 4rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .siteHeader .actionGroup .btnStartCheck {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    min-width: 138px;
    min-height: 42px;
  }
}
.siteHeader .actionGroup .sideBarMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .siteHeader .actionGroup .sideBarMenu {
    display: none;
  }
}
.siteHeader .actionGroup .sideBarMenu:hover, 
.siteHeader .actionGroup .sideBarMenu:focus {
  outline: 0px;
}
.siteHeader .actionGroup .sideBarMenu span {
  background: #202124;
  width: 24px;
  height: 2px;
  position: relative;
  transition: all 0.2s linear;
}
.siteHeader .actionGroup .sideBarMenu span:before, 
.siteHeader .actionGroup .sideBarMenu span:after {
  content: "";
  display: block;
  background: #202124;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.2s linear;
}
.siteHeader .actionGroup .sideBarMenu span:before {
  top: -8px;
  transform: rotate(0deg);
}
.siteHeader .actionGroup .sideBarMenu span:after {
  top: 8px;
  transform: rotate(0deg);
}
.menu-open .siteHeader .actionGroup .sideBarMenu span {
  background: none;
}
.menu-open .siteHeader .actionGroup .sideBarMenu span:before {
  top: 0px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}
.menu-open .siteHeader .actionGroup .sideBarMenu span:after {
  top: 0px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

.siteBanner {
  background: linear-gradient(270deg, #F0EDFD 0%, #E8F9F5 100%);
  padding: 7.875rem 0 2.5rem;
  position: relative;
}
@media screen and (min-width: 639px) {
  .siteBanner {
    padding: 8rem 0 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .siteBanner {
    padding: 8rem 0 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .siteBanner {
    padding: 9rem 0 3.125rem;
  }
}
.siteBanner__data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 32px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .siteBanner__data {
    flex-direction: row;
    gap: 60px;
  }
}
.siteBanner__content {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 580px;
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .siteBanner__content {
    width: 580px;
    text-align: left;
    gap: 50px;
  }
}
.siteBanner .siteBanner__text {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .siteBanner .siteBanner__text {
    gap: 32px;
  }
}
.siteBanner__content h1 {
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (min-width: 639px) {
  .siteBanner__content h1 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .siteBanner__content h1 {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 992px) {
  .siteBanner__content h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .siteBanner__content h1 {
    font-size: 3.125rem;
  }
}
.siteBanner__content h1 strong {
  background: #ffffff;
  padding: .25rem .75rem;
  font-weight: 500;
  color: #6846E7;
  border: 2px dashed #D0C6F8;
  border-radius: .75rem;
}
.siteBanner__content p {
  font-size: .875rem;
  font-weight: 400;
  color: #6A6A6C;
}
.siteBanner__content p strong {
  font-weight: 600;
  color: #202124;
}
@media screen and (max-width: 991px) {
  .siteBanner__content p br {
    display: none;
  }
}
.siteBanner .siteBanner__content .btnGroup {
  position: relative;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .siteBanner .siteBanner__content .btnGroup {
    justify-content: flex-start;
  }
}
.siteBanner .siteBanner__content .btnGroup .btn {
  min-width: 148px;
}
.siteBanner .siteBanner__content .btnGroup .btn svg {
  width: 38px;
  height: 36px;
}
.siteBanner .siteBanner__content .btnGroup .btn:last-child {
  padding-right: .25rem;
}
.siteBanner__picture {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 992px) {
  .siteBanner__picture {
    width: calc(100% - 580px);
  }
}
.siteBanner__picture img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.siteBanner::after {
  content: '';
  background: linear-gradient(360deg, #FAFAFA 0%, rgba(250, 250, 250, 0) 100%);
  position:absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .siteBanner::after {
    height: 100px;
  }
}
.ourPartnersSec .OurPartnerList {
  position: relative;
  background: #ffffff;
  padding: .5rem 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .ourPartnersSec .OurPartnerList {
    padding: .75rem 0;
  }
}
.ourPartnersSec__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 600px;
  padding: 1.5rem 0;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .ourPartnersSec__head {
    gap: 24px;
    padding: 2rem 0;
  }
}
.ourPartnersSec .OurPartnerList .logoSlide {
  display: flex;
  animation: scroll-left 40s linear infinite;
  width: max-content;
  gap: 24px;
}
@media screen and (min-width: 992px) {
  .ourPartnersSec .OurPartnerList .logoSlide {
    gap: 16px;
  }
}
.ourPartnersSec .OurPartnerList:hover .logoSlide {
  animation-play-state: paused;
}
.ourPartnersSec .OurPartnerList .logoSlide .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  padding:.5rem;
}
@media screen and (min-width: 992px) {
  .ourPartnersSec .OurPartnerList .logoSlide .item {
    padding:.75rem;
  }
}
.ourPartnersSec .OurPartnerList .logoSlide .item img {
  height: 36px;
}
@media screen and (min-width: 992px) {
  .ourPartnersSec .OurPartnerList .logoSlide .item img {
    object-fit: contain;
    height: auto;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0)
  }
  100% {
    transform: translateX(-50%)
  }
}
.commonSec {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .commonSec {
    padding: 3.75rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .commonSec {
    padding: 5rem 0;
  }
}
.commonSec--bgLightGreen {
  background: #E8F9F5;
  margin-bottom:2.5rem;
}
.commonSec .commonSec__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 992px) {
  .commonSec .commonSec__head {
    gap: 24px;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .commonSec .commonSec__head {
    margin-bottom: 5rem;
  }
}
.commonSec .commonSec__head__heading,
.ourPartnersSec__head__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.commonSec .commonSec__head__content,
.ourPartnersSec__head__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
}
.commonSec .commonSec__head .tagline,
.ourPartnersSec__head .tagline {
  background:#F0EDFD;
  padding:.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6846E7;
  border-radius:4rem;
}
.commonSec .commonSec__head .title,
.ourPartnersSec__head .title {
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .commonSec .commonSec__head .title,
  .ourPartnersSec__head .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .commonSec .commonSec__head__content p br,
  .ourPartnersSec__head__content p br {
    display: none;
  }
}
.commonList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media screen and (min-width: 992px) {
  .commonList {
    flex-wrap: nowrap;
    column-gap: 24px;
    row-gap: 24px;
  }
}
.commonList .commonList__item {
  width: calc(100% / 1);
}
@media screen and (min-width: 639px) {
  .commonList .commonList__item {
    width: calc(100% / 2);
  }
}
@media screen and (min-width: 992px) {
  .commonList .commonList__item {
    width: calc(100% / 4);
  }
}
.commonList .commonList__item .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 1.25rem;
  border-bottom: 4px solid transparent;
  border-radius: .75rem;
  transition: transform ease 300ms;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 992px) {
  .commonList .commonList__item .card {
    padding: 1.325rem;
    gap: 24px;
  }
}
.commonList .commonList__item .card:hover {
  background: #ffffff;
  border-color: #9A83EF;
  box-shadow: 0px 4px 24px 0px #6846E714;
  transform: translate(0, -10px);
}
.commonList .commonList__item .card__icon {
  background: #B6ECE0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  width: 56px;
  height: 56px;
  border-radius: .5rem;
}
.commonList .commonList__item .card .card__icon svg path {
  fill: #13B18C;
  transition: all 0.5s ease-in-out;
}
.commonList .commonList__item .card:hover .card__icon svg path {
  fill: #0C6B55;
}
.commonList .commonList__item .card__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
}
@media screen and (min-width: 992px) {
  .commonList .commonList__item .card__content {
    gap: 12px;
  }
}
.commonList .commonList__item .card__content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #202124;
}
@media screen and (min-width: 992px) {
  .commonList .commonList__item .card__content h4 {
    font-size: 1.25rem;
  }
}
.commonSec .commonSec__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap:32px;
}
@media screen and (min-width: 992px) {
  .commonSec .commonSec__row {
    flex-direction: row;
    gap: 64px;
  }
}
.commonSec .commonSec__row__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .commonSec .commonSec__row__content {
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .commonSec .commonSec__row__content {
    flex: 0 0 480px;
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .commonSec .commonSec__row__content {
    gap: 32px;
  }
}
@media screen and (min-width: 1400px) {
  .commonSec .commonSec__row__content {
    gap:50px;
  }
}
.commonSec .commonSec__row__content .commonSec__head__heading {
  text-align:center;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 639px) {
  .commonSec .commonSec__row__content .commonSec__head__heading  {
    text-align:left;
    align-items: flex-start;
  }
}
.commonSec .commonSec__row__content .tagline {
  background:#ffffff;
  padding:.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6846E7;
  border-radius:0;
}
.commonSec .commonSec__row__content .title {
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .commonSec .commonSec__row__content .title {
    font-size: 2rem;
  }
}
.commonSec .commonSec__row__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .commonSec .commonSec__row__content ul {
    gap: 16px;
  }
}
.commonSec .commonSec__row__content ul li {
  position: relative;
  padding-left: 2.25rem;
  background: url("images/check-circle-icon.svg") no-repeat left top;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  min-height: 25px;
}
.stepFeature {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stepFeature .stepCard {
    background:#ffffff;
    padding: .75rem 1.25rem;
    opacity: 0;
    transform: translateX(120px) scale(0.95);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 768px) {
  .stepFeature .stepCard {
    padding: .75rem 1.5rem;
  }
}
.stepFeature .stepCard.slide-in {
  animation: slideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
.stepFeature .stepCard .progress-bar {
    position: absolute;
    left: 0px;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(180deg, #15C39A 0%, #12B894 100%);
    transition: height 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
.stepFeature .stepCard .progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4px;
    height: 0;
    background: #15C39A;
    transform: scale(0);
    transition: transform 0.3s ease;
}
.stepFeature .stepCard .progress-bar.animate {
    height: 100%;
}
.stepFeature .stepCard .progress-bar.animate::before {
    transform: scale(1.5);
}
@keyframes progressShimmer {
    0% {
        transform: scaleY(0);
        opacity: 1;
    }
    100% {
        transform: scaleY(1);
        opacity: 0.7;
    }
}
.stepFeature .stepCard .title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .stepFeature .stepCard .title {
    font-size: 1.25rem;
  }
}
.stepFeature .stepCard .title strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: #6846E7;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .stepFeature .stepCard .title strong  {
    font-size: 2rem;
  }
}
.stepFeature .stepCard .stepCard__description {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.stepFeature .stepCard .stepCard__description.show {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

.stepFeature .stepCard .stepCard__description.hide {
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
}

.commonSec .keyFeature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .commonSec .keyFeature {
    gap: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .commonSec .keyFeature {
    gap: 32px;
  }
}
.commonSec .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -0.5px;
  row-gap: 20px;
}
@media screen and (min-width: 1200px) {
  .commonSec .cards {
    row-gap: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .commonSec .cards {
    row-gap: 32px;
  }
}
.commonSec .cards__item {
  width: 100%;
  padding: 0 0.5rem;
}
@media screen and (min-width: 639px) {
  .commonSec .cards__item {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .commonSec .cards__item {
    width: 33.3333333333%;
  }
}
.commonSec .cards .card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1.25rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 1200px) {
  .commonSec .cards .card {
    padding: 2rem;
    gap: 16px;
  }
}
.commonSec .cards .card .icon {
  display: block;
  width: 48px;
  height: 48px;
}
.commonSec .cards .card .icon svg {
  width: 48px;
  height: 48px;
}
.commonSec .cards .card .title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .commonSec .cards .card .title {
    font-size: 1.125rem;
  }
}
.commonSec .benifitContent {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .commonSec .benifitContent {
    padding-left: 12.813rem;
  }
}
@media screen and (min-width: 1200px) {
  .commonSec .benifitContent {
    padding-left: 25.313rem;
  }
}
.ctaSection .ctaCard {
  background: linear-gradient(90deg, #6846E7 0%, #3A2781 100%);
  padding: 1.5rem 1.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ctaSec .ctaCard  {
    padding:1.5rem;
  }
}
.ctaSection .ctaCard__overlayLeft {
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 100%);
  position: absolute;
  left: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.ctaSection .ctaCard__overlayRight {
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.ctaSection .ctaCard__overlayCenter {
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  position: absolute;
  right: 0;
  left: 0;
  bottom: -180px;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .ctaSection .ctaCard__overlayLeft,
  .ctaSection .ctaCard__overlayCenter,
  .ctaSection .ctaCard__overlayRight {
    width: 256px;
    height: 256px;
  }
}
.ctaSection .ctaCard__row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .ctaSection .ctaCard__row {
    flex-direction: row;
    gap: 24px;
  }
}
.ctaSection .ctaCard .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .ctaSection .ctaCard .content  {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .ctaSection .ctaCard .content  {
    gap: 32px;
  }
}
.ctaSection .ctaCard .content h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (min-width: 992px) {
  .ctaSection .ctaCard .content h3   {
    font-size: 1.75rem;
  }
}
.ctaSection .ctaCard .content .btnGroup .btn--primary {
  background: #FFFFFF3D;
  font-weight: 400;
  border: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.24) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0px 4px 25px 0px #00000014;
}
.ctaSection .ctaCard .picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 992px) {
  .ctaSection .ctaCard .picture    {
    align-items: flex-end;
    width: 405px;
  }
}
.ctaSection .ctaCard .picture img {
  display: block;
  max-width: 100%;
  position: relative;
  width: 100%;
  bottom: -1.5rem;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .ctaSection .ctaCard .picture img  {
    position: absolute;
    width: auto;
  }
}
.ctaSection .ctaCard .btnGroup  {
  flex-wrap: wrap;
}
.ctaSection .ctaCard .btnGroup .btn  {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .ctaSection .ctaCard .btnGroup .btn  {
    width: auto;
  }
}
.ctaSec .ctaCard {
  background: #F0EDFD;
  padding: 2rem 1.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ctaSec .ctaCard  {
    padding:2rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .ctaSec .ctaCard  {
    padding: 2rem;
  }
}
.ctaSec .ctaCard::after {
  content: '';
  background: url("images/cta-overlay-left.svg") no-repeat center left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 254px;
}
.ctaSec .ctaCard::before {
  content: '';
  background: url("images/cta-overlay-right.svg") no-repeat center left;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 254px;
}
.ctaSec .ctaCard .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  position: relative;
  max-width: 750px;
  width: 100%;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .ctaSec .ctaCard .content  {
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .ctaSec .ctaCard .content  {
    gap: 32px;
  }
}
.ctaSec .ctaCard .content .contentHead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .ctaSec .ctaCard .content .contentHead  {
    gap: 16px;
  }
}
.ctaSec .ctaCard .content h3 {
  font-size: 1.375rem;
  font-weight: 500;
  color: #2C1D61;
  line-height: 1.1;
}
@media screen and (min-width: 992px) {
  .ctaSec .ctaCard .content h3  {
    font-size: 1.75rem;
  }
}
.ctaSec .ctaCard .content .btnGroup .btn {
  min-width: 100px;
}
.ctaSec .ctaCard .content .btnGroup {
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .ctaSec .ctaCard .content .btnGroup {
    gap: 16px;
  }
  .ctaSec .ctaCard .content .btnGroup .btn {
    min-width: 180px;
  }
}
.mainSection {
  padding: 7.875rem 0 2.5rem;
}
@media screen and (min-width: 639px) {
  .mainSection {
    padding: 8rem 0 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .mainSection {
    padding: 8rem 0 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .mainSection {
    padding: 9rem 0 3.75rem;
  }
}
.mainSection .mainSection__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 992px) {
  .mainSection .mainSection__head {
    gap: 24px;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .mainSection .mainSection__head {
    margin-bottom: 5rem;
    gap: 32px;
  }
}
.mainSection .mainSection__head__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.mainSection .mainSection__head h3 {
    background: #F0EDFD;
    padding: .5rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6846E7;
    border-radius: 4rem;
}
.mainSection .mainSection__head h1 {
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .mainSection .mainSection__head h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .mainSection .mainSection__head h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .mainSection .mainSection__head h1 {
    font-size: 3.75rem;
  }
}
.mainSection .mainSection__head h1 strong {
  background: #ffffff;
  padding: .25rem .75rem;
  font-weight: 500;
  color: #6846E7;
  border: 2px dashed #D0C6F8;
  border-radius: .75rem;
}
.mainSection .mainSection__head p {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
}
@media screen and (max-width: 639px) {
  .mainSection .mainSection__head p br {
    display: none;
  }
}
.mainSection .mainSection__head .pricingNote {
  background: #ffffff;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  border:2px dashed #1E88E5;
  border-radius: .5rem;
}
.mainSection .mainSection__head .pricingNote h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  margin-bottom: .5rem;
}
.mainSection .mainSection__head .pricingNote h4 strong {
  color: #6846E7;
  font-weight: 600;
}
.mainSection .mainSection__head .pricingNote {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
}
.mainSection .mainSection__head .pricingNote p:last-child {
  font-size: .875rem;
  font-weight: 400;
}
.mainSection .mainSection__head .pricingNote p strong {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
}
.contactCard {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  background: #ffffff;
  padding: 1.25rem;
  gap: 32px;
  border-radius: 1.5rem;
  box-shadow: 0px 4px 24px 0px #00000014;
}
@media screen and (min-width: 992px) {
  .contactCard  {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .contactCard {
    padding: 1.5rem;
  }
}
.contactCard__infoCard {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0F8A6D 0%, #15C39A 100%);
  position: relative;
  padding: 1.5rem 1.25rem;
  flex: 0 0 100%;
  width: 100%;
  gap: 24px;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .contactCard__infoCard {
    flex: 0 0 auto;
    width: 420px;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .contactCard__infoCard {
    padding: 2rem;
    gap: 50px;
  }
}
.contactCard__infoCard::after {
  content: '';
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
}
.contactCard__infoCard .head {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.contactCard__infoCard .head h3 {
  font-size: 1.375rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .contactCard__infoCard .head h3 {
    font-size: 2rem;
  }
}
.contactCard .contactInfo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contactCard .contactInfo li {
  display: block;
}
.contactCard .contactInfo li a {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: .24rem;
  font-size: 1rem;
  font-weight: 400;
  color: #202124;
  gap: 15px;
  text-decoration: none;
  min-height: 48px;
  border-radius: .625rem;
}
.contactCard .contactInfo li a .icon {
  background: #B6ECE0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: .5rem;
}
.contactCard .contactInfoDivider {
  display: block;
  width: 100%;
  position: relative;
}
.contactCard .contactInfoDivider::after {
  content: "";
  width: 100%;
  height:.5px;
  background:#D9D9D9;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contactCard .contactInfoDivider span {
  display: block;
  background:#13ae89;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 20px;
  padding: 0 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 2;
}
.contactCard .socialInfo {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.contactCard .socialInfo h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}           
.contactCard .socialLink {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 992px) {
  .contactCard .socialLink {
    gap: 24px;
  }
}
.contactCard .socialLink li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0.5rem;
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff;
  border-radius: .5rem;
  transition: all 0.5s ease-in-out;
}
.contactCard .socialLink li a:hover {
  opacity: .8;
}
.contactCard__form {
  background: #FAFAFA;
  padding: 1.5rem 1.25rem;
  width: 100%;
  border-radius: 1rem;
}
@media screen and (min-width: 992px) {
  .contactCard__form {
     padding: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .contactCard__form {
    padding: 2rem;
  }
}
.tabWrap {
  display: block;
}
.tabWrap .tabs,
.commomWrap .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .tabWrap .tabs,
  .commomWrap .links {
    gap: 16px;
  }
}
.commomWrap .links {
  background: #FAFAFA;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1;
}
.tabWrap .tabs .tab,
.commomWrap .links .link a {
  display: inline-block;
  vertical-align: middle;
  background: #E9E9E9;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #6A6A6C;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 992px) {
  .tabWrap .tabs .tab,
  .commomWrap .links .link a {
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }
}
.tabWrap .tabs .tab.active,
.commomWrap .links .link.active a {
  background:#F0EDFD;
  color: #6846E7;
}
.tabWrap .tabContents {
  display: block;
}
.tabContentsWhiteCard {
  background: #ffffff;
  padding: 1.5rem 1.25rem;
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0px 4px 24px 0px #00000014;
}
@media screen and (min-width: 992px) {
  .tabContentsWhiteCard {
    padding: 1.5rem;
  }
}
.tabWrap .tabContent {
  display: none;
}
.tabWrap .tabContent.active {
  display: block;
}
.ourPlan {
  display: flex !important; 
  flex-direction: row;
  justify-content: center;
}
.ourPlan .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -30px;
}
.ourPlan .owl-nav button {
    background: #6846E7 !important;
    position: absolute;
    left: -10px;
    width: 50px;
    height: 50px;
    outline: none;
    margin: 0;
    border-radius: 50px;
}
.ourPlan .owl-nav button.owl-next {
    left: auto;
    right: -10px;
}
.ourPlan .owl-nav button.disabled {
  display: none !important;
}
.ourPlan .owl-nav button span {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 8px;
    height: 8px;
    font-size: 0;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(135deg);
    margin: 0 auto;
    transition: all 0.2s linear;
}
.ourPlan .owl-nav button.owl-next span {
  transform: rotate(-45deg);
}
.ourPlan .ourPlan__item {
  padding: 1rem 1rem 1.5rem;
}
.planCard {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  width: 100%;
  gap: 24px;
  border-radius: 1.5rem;
  box-shadow: 0px 4px 24px 0px #00000014;
}
@media screen and (min-width: 992px) {
  .planCard {
    padding: 1.5rem;
  }
}
.planCard .planCard__head,
.planCard .planCard__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.planCard .planCard__head.left {
  align-items: flex-start;
}
.planCard .planCard__head h3 {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.375rem;
  font-weight: 600;
  color: #6846E7;
}
@media screen and (min-width: 992px) {
  .planCard .planCard__head h3 {
    font-size: 1.5rem;
  }
}
.planCard .planCard__head h3 sup {
  font-size: .875rem;
  font-weight: 600;
  color: #6846E7;
}
.planCard .planCard__head h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #313131;
  line-height: 40px;
}
@media screen and (min-width: 992px) {
  .planCard .planCard__head h2 {
    font-size: 3rem;
  }
}
.planCard .planCard__body h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #B6ECE0;
  padding: .75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #313131;
  line-height: 1.333;
  width: 100%;
  border-radius: .5rem;
}
@media screen and (min-width: 992px) {
  .planCard .planCard__body h4 {
    font-size: 1.375rem;
  }
}
.planCard .planCard__body .infobox {
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  gap: 20px;
  border-radius: 1rem;
}
@media screen and (min-width: 992px) {
  .planCard .planCard__body .infobox  {
    padding: 1.5rem;
    gap: 24px;
  }
}
.planCard .planCard__body h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #313131;
  text-align: left;
}
.planCard .planCard__body ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.planCard .planCard__body ul li {
  position: relative;
  padding-left: 2.25rem;
  background: url("images/check-circle-icon.svg") no-repeat left top;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
}
.planCard .planCard__body .link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 400;
    color: #6846E7;
    text-decoration: underline;
    transition: all 0.5s ease-in-out;
}
.planCard .btnGroup {
  width: 100%;
}
.toggle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.toggle-wrapper .toggle-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 1rem;
}
.toggle-wrapper .toggle-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.toggle-block .toggle-title {
  background: url("images/plus-icon.svg") no-repeat right center;
  padding-right: 2.25rem;
  background-size: 14px 14px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #202124;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .toggle-block .toggle-title   {
    font-size: 1.25rem;
  }
}
.toggle-block .toggle-title.toggle-open {
  background: url("images/minus-icon.svg") no-repeat right center;
  background-size: 14px 2px;
}
.toggle-block .tabContent p {
  margin-bottom: 1rem;
}
.toggle-block .tabContent p:last-child {
  margin-bottom: 0;
}
.commomWrap {
  display: flex;
  flex-direction: column;
}
.commomWrap .contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.commomWrap .section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: .5rem;
}
@media screen and (min-width: 768px) {
  .commomWrap .section {
    gap: 32px;
    padding-top: 2rem;
  }
}
.commomWrap .section:first-child {
  padding-top: 0;
}
.commomWrap .section .picture {
  position: relative;
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
}
.commomWrap .section .picture img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.commomWrap .section .picture::after {
  content:"";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 80.5%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.commomWrap .commonGrid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (min-width: 992px) {
  .commomWrap .commonGrid {
    flex-wrap: nowrap;
    gap: 50px;
  }
}
.commomWrap .commonGrid .content,
.commomWrap .contentWrap {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  width: 100%;
}
.commomWrap .commonGrid .content h2,
.commomWrap .commonGrid .content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .commomWrap .commonGrid .content h2,
  .commomWrap .commonGrid .content h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
.commomWrap .contentWrap h1, 
.commomWrap .contentWrap h2, 
.commomWrap .contentWrap h3, 
.commomWrap .contentWrap h4,
.commomWrap .contentWrap h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  	.commomWrap .contentWrap h1, 
	.commomWrap .contentWrap h2, 
	.commomWrap .contentWrap h3, 
	.commomWrap .contentWrap h4,
	.commomWrap .contentWrap h5 {
		font-size: 1.375rem;
	}
}
.commomWrap .commonGrid .content p,
.commomWrap .contentWrap p,
.commomWrap .contentWrap ul,
.commomWrap .contentWrap ol {
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  	.commomWrap .commonGrid .content p,
  	.commomWrap .contentWrap p,
	.commomWrap .contentWrap ul,
	.commomWrap .contentWrap ol {
		margin-bottom: 1.5rem;
	}
}
.commomWrap .content ul,
.commomWrap .contentWrap ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 992px) {
  .commomWrap .content ul {
     gap: 16px;
  }
}
.commomWrap .content ul li,
.commomWrap .contentWrap ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 2.25rem;
  background: url("images/tick-icon.svg") no-repeat left top;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  gap: 4px;
}
.commomWrap .contentWrap ul li {
	display:block;
}
.commomWrap .content ul li strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #202124;
}
.commomWrap .contentWrap ul li strong,
.commomWrap .contentWrap p strong {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
}
.commomWrap .sidebar {
  background: #F5F5F5;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  width: 100%;
  gap: 20px;
  border-radius: .75rem;
}
@media screen and (min-width: 992px) {
  .commomWrap .sidebar {
    padding: 1.5rem;
    flex: 0 0 440px;
    width: 440px;
    gap: 24px;
  }
}
.commomWrap .sidebar h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #202124;
}
@media screen and (min-width: 992px) {
  .commomWrap .sidebar h3 {
    font-size: 1.5rem;
  }
}
.commomWrap .sidebar .sidebarFaq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commomWrap .sidebar .sidebarFaq__card {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  gap: 10px;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 1rem;
}
.commomWrap .sidebar .sidebarFaq__card:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.commomWrap .sidebar .sidebarFaq__card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #202124;
}
.commomWrap .btnGroup {
  justify-content: center;
}
.commomWrap .btnGroup .btn {
  min-width: 160px;
}
.siteFooter {
  padding: 2rem 0;
}
.siteFooter__card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  gap: 24px;
  border-radius: 1.5rem;
  box-shadow: 0px 4px 24px 0px #00000014;
}
@media screen and (min-width: 1200px) {
  .siteFooter__card {
    padding: 2rem 3.125rem;
    gap: 32px;
  }
}
.siteFooter__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.938rem;
}
@media screen and (min-width: 992px) {
  .siteFooter__row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.siteFooter__row__col {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 0.938rem;
  gap: 12px;
}
.siteFooter__row__col .widget_nav_menu {
	display: flex;
   flex-direction: column;
   gap: 12px;
}
@media screen and (min-width: 992px) {
  .siteFooter__row__col .widget_nav_menu {
    gap: 24px;
  }
}
@media screen and (min-width: 992px) {
  .siteFooter__row__col {
    width: 20%;
    gap: 24px;
  }
}
.siteFooter__row__col:first-child {
  width: 100%;
  gap: 20px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .siteFooter__row__col:first-child {
    width: 60%;
    gap: 50px;
    margin-bottom: 0;
  }
}
.siteFooter__row__col h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
.siteFooter__row__col .footerBranding {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  gap: 16px;
  max-width: 620px;
}
@media screen and (min-width: 992px) {
  .siteFooter__row__col .footerBranding {
    gap: 24px;
  }
}
.siteFooter__row__col .footerBranding__link {
  display: block;
  max-width: 250px;
  transition: all 0.5s ease-in-out;
}
.siteFooter__row__col .footerBranding__img {
  display: block;
}
.siteFooter__row__col .footerBranding__link:hover {
  opacity: .8;
}
.siteFooter__row__col .menu .menu-item {
  display: block;
  margin-bottom: 0.325rem;
}
@media screen and (min-width: 992px) {
  .siteFooter__row__col .menu .menu-item {
    margin-bottom: 0.625rem;
  }
}
.siteFooter__row__col .menu .menu-item:last-child {
  margin-bottom: 0;
}
.siteFooter__row__col .menu .menu-item a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  padding: 0.313rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #6A6A6C;
  line-height: 1.1;
  transition: all 0.5s ease-in-out;
}
.siteFooter__row__col .menu .menu-item a:hover {
  color:#202124;
}
.siteFooter__row__col .menu .menu-item a:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  background: #202124;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.siteFooter__row__col .menu .menu-item a:hover::after {
  width: 100%;
  opacity: 1;
}
.siteFooter__row__col .socialLink {
  display: flex;
  align-items: center;
  gap: 16px;
}
.siteFooter__row__col .socialLink li {
  margin-bottom: 0;
}
.siteFooter__row__col .socialLink li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: all 0.5s ease-in-out;
}
.siteFooter__row__col .socialLink li a  svg  {
  width: 30px;
  height: 30px;
}
.siteFooter__row__col .socialLink li a svg path {
  transition: all 0.5s ease-in-out;
}
.siteFooter__row__col .socialLink li a:hover {
  opacity: 0.7;
}
.siteFooter__poweredBy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.siteFooter .poweredBy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  color: #6A6A6C;
  gap: 10px;
  margin-bottom: .75rem;
}
.siteFooter .poweredBy a {
  display: flex;
  justify-content: center;
  align-content: center;
}
.siteFooter__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.siteFooter__bottom p {
  font-size: .875rem;
  font-weight: 400;
  color: #6A6A6C;
}
.siteFooter__bottom__card {
  background: #E8F9F5;
  display: block;
  width: 100%;
  padding: .75rem .875rem;
  border-radius: 4rem;
}
.siteFooter__bottom  .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.siteFooter__bottom  .menu li {
  padding: .125rem 1rem;
  position: relative;
}
.siteFooter__bottom  .menu li::after {
  content: "";
  background: #62D7BB;
  position: absolute;
  width: 8px;
  height: 8px;
  left: -4px;
  top: 50%;
  margin-top: -3px;
  border-radius: 4rem;
}
.siteFooter__bottom  .menu li:first-child::after {
  display: none;
}
.siteFooter__bottom .menu li a {
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6A6A6C;
  line-height: 15px;
  transition: all 0.5s ease-in-out;
}
.siteFooter__bottom .menu li a:hover {
  color: #202124;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.modal__dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100dvh - 32px);
  overflow: auto;
  position: relative;
  z-index: 999;
}
.modal__content {
  width: 100%;
  max-width: 528px;
  margin: auto;
  padding: 1.5rem;
  border-radius: 24px;
  background: #FAFAFA;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.0784313725);
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}
.modal__content, 
.modal__header, 
.modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.modal__header {
  position: relative;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  gap: 20px;
}
.modal__header__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 30px;
  color: #202124;
  text-align: center;
  width: 100%;
}

.modal__header .btnClose{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DEDEDE;
  padding: 0.15rem;
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0;
  top: 0;
  border: 1px solid #DEDEDE;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.3s ease;
}
.modal__header .btnClose:hover {
  opacity: 0.7;
}
.modal__body {
  gap: 16px;
}
.modal__body .formGroup input,  
.modal__body .formGroup textarea {
  height: 48px;
}
.modal__body > div,
.modal__body .formGroup,
.modal__body .btnGroup,
.modal__body .btnGroup p {
  width: 100%;
}
.modal__body .formGroup {
  margin-bottom: 1rem;
}
.modal__body .btnGroup {
  margin-top: 1.5rem;
}
.modal__body .wpcf7-spinner {
  display: none;
}
.modal__body .thankYouMessage {
  font-size: 1rem;
  font-weight: 400;
  color: #6A6A6C;
  text-align: center;
}
.modal__body .thankYouMessage .icon {
  margin: 0 auto 1rem;
}
.modal__body .thankYouMessage h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #313131;
  margin-bottom: 1rem;
  text-align: center;
}
.modal__body .thankYouMessage p {
  margin-bottom: 1rem;
}
.modal__body .thankYouMessage p strong {
  font-weight: 600;
  color: #313131;
}
.modal__backdrop {
  background: rgba(42, 42, 42, 0.56);
  display: none;
  position: fixed;
  z-index: 990;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  box-shadow: 0px -4px 24px 0px #00000014;
}
.modal.modalOpen {
  opacity: 1;
  visibility: visible;
  width: 100vw;
  height: 100dvh;
  overflow: auto;
}
.modal.modalOpen .modal__dialog {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: all 0.3s ease;
}
.modal.modalOpen .modal__backdrop {
  display: block;
}