:root {
  --ov-bg: #f6f6f6;
  --ov-main: #2e2e2e;
  --ov-accent: #7bfb8e;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

body.ov-body {
  margin: 0;
  background: #f6f6f6;
  color: var(--ov-main);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
body:not(.home):not(.front-page) .s-logo img {
    filter: brightness(0);
}
body:not(.home):not(.front-page) .ov-footer .s-logo img {
    filter: brightness(1);
}
body:not(.home):not(.front-page) .fixed-top{
  position: relative !important;
  padding: 32px 0px !important;
}
body:not(.home):not(.front-page) .goal-card .img-wrap .bg img {
    /*border-radius: 20px;*/
    width: 100%;
    background: none !important;
}
.ov-max-1440 {
  max-width: 1440px;
}

.ov-max-520 {
  max-width: 520px;
}

.ov-section {
  background: var(--ov-bg);
}

.ov-header {
  z-index: 1050;
}

.ov-pill {
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
.s-logo img{
  width: 225px;
  height: 40px;
  margin-left: -15px;
}
.ov-menu-btn {
  background: #3c403c;
  color: #fff;
}

.ov-menu-btn:hover {
  background: #4c504c;
}

.ov-start-btn {
  background: var(--ov-accent);
  color: #000;
}

.ov-start-btn:hover {
  background: #6beb7e;
}

.ov-view-btn {
  background: #d2e4fc;
}

.ov-view-btn:hover {
  background: #c2d4ec;
}

.ov-icon-24 {
  width: 24px;
  height: 24px;
}

.ov-icon-20 {
  width: 20px;
  height: 20px;
}

.ov-logo {
  width: auto;
  height: 40px;
}

.ov-menu-panel {
  display: none;
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 6.4rem;
  background: #2e2e2e;
  border-radius: 1.5rem;
  color: #fff;
  padding: 2rem;
}

.ov-menu-panel.is-open {
  display: block;
}

.ov-menu-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.ov-menu-list {
  margin: 0;
  display: grid;
  gap: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

.ov-menu-list li {
  cursor: pointer;
}

.ov-menu-list li:hover {
  color: var(--ov-accent);
}

.ov-text-accent {
  color: var(--ov-accent);
}

.ov-hero {
  height: 800px;
}

.ov-hero-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.ov-hero-title {
  max-width: 796px;
  font-family: Satoshi;
font-weight: 400;
font-size: 88px;
line-height: 100%;
letter-spacing: -1.8px;
text-align: center;


}

.ov-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  max-width: 460px;
}

.ov-dark {
  background: var(--ov-main);
}

.ov-nowrap {
  min-width: max-content;
}

.ov-why-label {
  font-family: "Satoshi", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ov-accent);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.ov-heading {
  font-family: Satoshi;
font-weight: 400;
font-size: 56px;
line-height: 100%;
letter-spacing: -1.8px;
text-align: center;
}

.ov-heading-xl {
  font-family: "Satoshi", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 400;
}

.ov-lead {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}

.ov-service {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 32px;
}

.ov-service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2d2d2d;
}

.ov-service h3 {
font-family: Satoshi;
font-weight: 400;
font-size: 24px;
line-height: 120%;
letter-spacing: -0.8px;

}

.ov-service p {
  font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: -2%;
vertical-align: middle;

}

.ov-service a {
 font-family: Inter;
font-weight: 500;
font-size: 16px;
line-height: 120%;
letter-spacing: -2%;
color: #2D2D2D;
}

.ov-service a:hover {
  color: #000;
}

.ov-goal-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 320px;
}

.ov-goal-card img {
  transition: transform 0.3s ease;
}

.ov-goal-card:hover img {
  transform: scale(1.05);
}

.ov-goal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.ov-goal-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 1.2rem;
}

.ov-goal-content h3 {
  font-family: "Satoshi", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.2rem;
}

.ov-goal-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
}

.ov-product-card {
  position: relative;
  width: 100%;
  max-width: 384px;
  height: 447px;
  border-radius: 1rem;
  overflow: hidden;
}

.ov-rotate-layer {
  position: absolute;
  width: 944px;
  height: 425px;
  left: -260px;
  top: 11px;
  transform: rotate(-90deg);
}

.ov-product-flip {
  transform: rotate(180deg);
}

.ov-step-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
}

.ov-step-card > p:first-child {
  margin: 0 0 0.4rem;
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0px;

}

.ov-step-card h3 {
font-family: Satoshi;
font-weight: 400;
font-size: 24px;
line-height: 120%;
letter-spacing: -0.8px;

}

.ov-step-card p {
  margin: 0;
  font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: -2%;

}

.ov-blog-heading {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
}

.ov-blog-sub {
    max-width: 482px;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
}

.ov-blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ov-blog-image {
  height: 256px;
  border-radius: 1rem;
  overflow: hidden;
}

.ov-blog-content {
  background: #2e2e2e;
  border-radius: 20px;
  padding: 24px;
  color: #fff;
}

.ov-chip {
  display: inline-block;
  background: #d2e4fc;
  color: #2e2e2e;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.8rem;
}

.ov-blog-content h3 {
  font-family: Satoshi;
font-weight: 400;
font-size: 31px;
line-height: 120%;
letter-spacing: -0.5px;

}

.ov-blog-content p {
font-family: Inter;
font-weight: 400;
font-size: 15px;
line-height: 120%;
letter-spacing: -2%;
vertical-align: middle;

}

.ov-blog-content a {
font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 120%;
letter-spacing: -2%;
text-decoration: underline;
color: #fff;
}

.ov-blog-content a:hover {
  color: #fff;
}

.ov-faq-list {
  display: grid;
  gap: 0.9rem;
}

.ov-faq-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.ov-faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 0;
}

.ov-faq-trigger span:first-child {
  font-family: 'Satoshi',
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
	color:#2e2e2e!important
}

.ov-faq-symbol {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
color:#2e2e2e!important
}

.ov-faq-answer {
  margin: 0.8rem 0 0;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  font-weight: 400 !important;
  display: none;
}

.ov-faq-item.is-open .ov-faq-answer {
  display: block;
}

.ov-cta {
  background: #2e2e2e;
  padding: 32px;
}

.ov-cta-title {
  font-family: 'Satoshi';
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 400;
}

.ov-cta-image-wrap {
  height: 384px;
}

.ov-footer {
  background: #2e2e2e;
}

.ov-footer-desc {
  color: #a9a9a9;
  font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: -2%;
vertical-align: middle;
margin-bottom: 12px !important;
}

.ov-footer-title {
  font-family:'Satoshi';
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.ov-footer-links {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  color: #a9a9a9;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.ov-footer-links li {
  cursor: pointer;
}

.ov-footer-links li:hover {
  color: #fff;
}

.ov-footer-bottom {
  padding-top: 1.5rem;
}

.ov-footer-legal a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.ov-footer-legal a:hover {
  color: var(--ov-accent);
}

.ov-footer-copy {
  color: #a9a9a9;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.ov-social-link {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ov-social-link:hover {
  background: var(--ov-accent);
}


.ov-dark {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: hidden;
  }
  .ov-why-label {
    color: #4ade80;
    flex-shrink: 0;
    margin: 0;
    font-family: Satoshi;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.8px;
  }
  .ov-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
  }
  .ov-ticker-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
  /*  height: 22px;*/
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
  }
  .ov-ticker-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
  }
  .ov-ticker-inner span {
    color: #ffffff;
    font-size: 14px;
    padding: 0 40px;
    flex-shrink: 0;
    font-family: Satoshi;
font-weight: 700;
font-style: Bold;
font-size: 24px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: -0.8px;
vertical-align: middle;
  }

.sec-title-2 h2{
    font-family: Satoshi;
font-weight: 400;
font-size: 54px;
line-height: 100%;
letter-spacing: -1.8px;

  }
.w-d-p{
  font-family: Inter;
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: -2%;
vertical-align: middle;
max-width: 482px;
}
.bg-tm{
      background: #f6f6f6;
}
.bg-bl{
  background: #D2E4FC;
}
.sec-title-2-b h2 {
    font-family: Satoshi;
    font-weight: 400;
    font-size: 88px;
    line-height: 100%;
    letter-spacing: -1.8px;
    max-width: 630px;
}
.sec-we-do {
    padding: 60px 15px 40px;
}
.i-r img {
    border-radius: 20px;
}
.sec-title-2-b p{
  max-width: 505px;
    font-family: Satoshi;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.8px;
}
.faq-sec .ov-heading{
font-family: Satoshi;
font-weight: 400;
font-size: 56px;
line-height: 100%;
letter-spacing: -1.8px;
margin-bottom: 30px !important;
}

.ov-cta p{
  font-family: Inter;
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -2%;
    vertical-align: middle;
    margin-bottom: 64px;
}
.ov-cta-image-wrap img{
    border-radius: 20px;
    object-position: 50% 30%;
  }
 .ov-menu-list li a {
    color: #fff;
    text-decoration: none;
    font-family: Satoshi;
font-weight: 400;
font-size: 24px;
line-height: 120%;
letter-spacing: -0.8px;

}
.inner-banner h1 {
    font-family: Satoshi;
    font-weight: 400;
    font-size: 88px;
    line-height: 100%;
    letter-spacing: -1.8px;
}
.inner-banner p {
font-family: Inter;
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: -2%;
padding-bottom: 30px;
}
.bg-bk {
    background: #2E2E2E;
}
.contact-f-s {
    padding: 32px;
    border-radius: 20px;
}
.sec-title-3 {
    font-family: Satoshi;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.5px;
    color: #fff;
}
.contact-f-s p{
  font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: -0.4px;
color: #fff;
}
.form-label { 
color: #fff;
    margin-bottom: 0.35rem;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.32px;
 }
  .form-control {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #555;
    border-radius: 0;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    box-shadow: none;
  }
  .form-control::placeholder { color: #666; }
  .form-control:focus {
    background: transparent;
    border-bottom-color: #aaa;
    color: #fff;
    box-shadow: none;
  }
  textarea.form-control {
    background: #3a3a3a;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    resize: none;
    max-height: 120px;
  }
  textarea.form-control:focus { background: #404040; }
  .btn-submit {
    background: #6ee7b7;
    color: #1a3a2a;
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s;
  }
  .contact-l-w-s,
  .contact-l-t-s {
    padding: 32px;
    border-radius: 20px;
}
.sec-title-4{
  font-family: Satoshi;
font-weight: 400;
font-size: 24px;
line-height: 120%;
letter-spacing: -0.8px;
color: #2E2E2E;
}
.contact-info span{
  font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 120%;
letter-spacing: -2%;
color: #A9A9A9;
}
.contact-info a,
.contact-info p
{
font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: -2%;
color: #2E2E2E;
text-decoration: none;
}
.contact-info span{
 display: block;
 padding-bottom: 1px;
}
.contact-l-t-s p{
      font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -2%;
}
nav.sp-breadcrumb a {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #2E2E2E;
    text-decoration: none;
}
.p-m-i {
border-radius: 50px;
background: #DBDBDB;
padding: 12px;

}
.p-m-i img{
  width: 30px;
    margin: 0 auto;
    display: block;
}
.post-meta span.author{
    font-family: Inter;
    font-weight: 400;
    font-size: 19px;
    line-height: 120%;
    letter-spacing: -2%;
}
.post-meta span.date,
.post-meta span.reading-time{
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -2%;
}
.share-post img {
    width: 32px;
    height: 32px;
    border-radius: 50px;
}
.share-post{
  float: right;
}
.s-p-m-i img {
    border-radius: 20px;
    width: 100%;
    margin: 30px 0px;
}
.single-post .bre-img img{
  margin-top: 30px;
}
.wp-block-image :where(figcaption){
margin-top: -1.5em !important;
}
.s-p-c h4 {
    font-family: Satoshi;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: -0.8px;
}
.single-post .ov-blog-content{
  text-align: left;
}
.modal-body.inner-banner {
    margin-top: 0px !important;
    z-index: 9999 !important;
}
.tnp-subscription div.tnp-field, .tnp-profile div.tnp-field{
	margin-bottom:0px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
}
.single ol.wp-block-list li {
    font-size: 14px;
}
ul.list-unstyled.ov-footer-links a {
    margin: 0;
    display: grid;
    gap: 0.7rem;
    color: #a9a9a9;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-decoration: none;
}
@media (max-width: 767px) {
	.ov-menu-grid .ov-start-btn{
		position:relative !important;
		bottom: 0 !important
	}

  .fixed-top .s-logo img {
    width: 170px;
    height: 40px;
}
  .ov-menu-panel {
    top: 5.5rem;
    padding: 1.5rem;
  }
.fixed-top {
    padding: 30px 40px !important;
}
  .ov-hero {
    height: 520px;
    margin-top: -20px;
  }

  .ov-goal-img-wrap {
    height: 256px;
  }

  .ov-product-card {
    height: 384px;
  }

  .ov-cta-image-wrap {
    padding: 20px;
  }

  .ov-logo {
    height: 27px;
}
.ov-hero-title{
  font-family: Satoshi;
font-weight: 400;
font-size: 50px;
line-height: 100%;
letter-spacing: -1.8px;
text-align: center;

}
.r-m-s {
    order: 2;
}
.ov-hero-subtitle{
  font-family: Inter;
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: -2%;
text-align: center;
vertical-align: middle;
max-width: 260px;	
}
.sec-title-2 h2{
  font-family: Satoshi;
font-weight: 400;
font-size: 40px;
line-height: 100%;
letter-spacing: -1.8px;
margin-bottom: 15px !important;
}
.w-d-p{
  letter-spacing: 0;
}
.sec-we-do.bg-tm button {
    text-align: center !important;
    margin: 0 auto;
    display: block;
    width: 100%;
    margin-top: 40px;
}
.sec-title-2-b h2{
font-family: Satoshi;
font-weight: 400;
font-size: 48px;
line-height: 100%;
letter-spacing: -1.8px;
margin-bottom: 40px;
}
.sec-title-2-b p{
  text-align: left;
}
.ov-section.px-3.px-md-4.py-5 {
    margin-top: -20px;
}
.ov-cta{
  padding: 0px;
}
.ov-cta p{
  margin-bottom: 20px;
}
.ov-cta .ov-start-btn{
  width: 100%;
}
.mb-v{
  order: 2;
}
.ov-footer-title{
  display: none;
}
.ov-footer .col-md-6.col-lg-3 {
    margin-top: 0px;
}
.subscribe-form{
  margin-bottom: 30px;
}
.subscribe-form button{
  max-width: fit-content;
}
 .ov-footer-legal {
    display: flex !important;
    flex-direction: column;
  }
  .ov-footer-bottom {
    padding-top: 0px;
    margin-top: -15px;
}
.faq-sec .ov-heading{
  font-family: Satoshi;
font-weight: 400;
font-size: 40px;
line-height: 100%;
letter-spacing: -1.8px;
text-align: center;
}
.inner-banner {
    padding: 10px 0px;
}
.inner-banner h1{
  margin-bottom: 30px;
  font-size: 44px;
}
.inner-banner p{
  padding-bottom: 20px;
}
.bre-img img{
margin-top: 16px !important;
height: 350px !important;
object-fit: cover;	
}
main .ov-start-btn-blk, main .ov-pill{
  width: 100%;
}
.s-r{
  margin-top: 20px;
}
ul.cstm-ul {
    padding-left: 20px;
    }
    .pd-32{
      padding-top: 30px;
      padding-bottom: 0px;
    }

    .pd-32 {
        padding-top: 20px !important;
        padding-bottom: 0px !important;
    }
    .sec-we-do{
      padding: 30px 15px 30px;
    }
        .about-inner-banner {
        padding:130px 38px !important;
        background-size: cover;
        background-position: 45%;
        color: #000;
        margin-top: -130px;
}
.about-inner-banner .sec-title-2 {
    padding-bottom: 0px !important;
    }
    .about-inner-banner .sec-title-2 h1{
    margin-bottom: 0px !important;
}
.about-inner-banner p.s-tx {
        font-size: 20px;
        padding-top: 20px;
    }
       .page-id-32 .fixed-top .s-logo img,
       .page-id-36 .fixed-top .s-logo img{
        padding-left: 15px;
       }
       .contact-f-s{
        margin-bottom: 30px;
       }
       .ov-menu-panel{
        margin-top: 20px;
        position: inherit;
       }
       span.ov-chip-dt {
    display: none;
}
	.ov-heading{
		font-size:40px;
	}
	.ov-blog-sub {
    max-width: 482px;
    font-family: Inter;
    font-weight: 400;
    font-size: 19px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    padding-top: 10px;
}
	.ov-menu-btn {
    margin-right: -15px;
}
	.ov-menu-grid .ov-start-btn {
    position: relative;
    bottom: auto;
}
	.page-id-32 .ov-menu-btn ,
	.page-id-36 .ov-menu-btn {
    margin-right: 0px;
}
	.ov-service h3 br {
    display: none;
}
}

@media (min-width: 768px) {

  .ov-hero-title {
    font-size: 4.5rem;
    line-height: 1.25;
  }

  .ov-hero-subtitle,
  .ov-lead {
    font-family: Inter;
font-weight: 400;
font-size: 20px;
line-height: 120%;
letter-spacing: -2%;
text-align: center;
vertical-align: middle;
  }

  .ov-why-label {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .ov-dark p:not(.ov-why-label) {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .ov-heading {
    font-size: 3rem;
    line-height: 1.25;
  }

  .ov-heading-xl {
    font-size: 3.75rem;
    line-height: 1.25;
  }

  .ov-goal-content h3,
  .ov-faq-trigger span:first-child {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .ov-cta-title {
  font-family: Satoshi;
  font-weight: 400;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -1.8px;
  }

.ov-blog-heading {
font-weight: 400;
font-size: 60px;
line-height: 72px;
letter-spacing: -5%;
text-align: center;

  }
  .contact-l-t-s {
    padding-bottom: 80px;
}
}

@media (min-width: 1024px) {
  .ov-hero-title {
    font-family: Satoshi;
    font-weight: 400;
    font-size: 5.5em;
    line-height: 100%;
    letter-spacing: -1.8px;
    text-align: center;

  }

  .ov-heading,
  .ov-heading-xl {
    font-size: 3.5rem;
    line-height: 1.25;
  }
  .intro-card .body-text{
    margin-bottom: 80px;
  }
}

 .subscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #555;
    padding-bottom: 8px;
  }

  .subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
  }

  .subscribe-form input::placeholder {
    color: #888;
  }

  .subscribe-form button {
    background: #D2E4FC !important;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
	color:#000 !important;  
  }

  .subscribe-form button:hover {
    background: #fff;
  }



  /* 📱 Mobile */
  @media (max-width: 600px) {
    .subscribe-form {
      flex-direction: column;
      align-items: stretch;
      border-bottom: none;
    }

    .subscribe-form input {
      border-bottom: 1px solid #555;
      margin-bottom: 10px;
    }

    .subscribe-form button {
      width: 100%;
      text-align: center;
    }
  }

  .home .fixed-top{
    position: absolute !important;
    top:15px !important;
  }


main {
    margin-top: 15px !important;
}

.bre-img img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    margin-top: 80px;
}
.ov-start-btn-blk {
    color: #fff;
    background: #3C403C;
}
.inner-banner {
    padding: 40px 0px;
}
.pd-32{
  padding: 40px 0px;
}
p.cmn-p {
    font-family: Inter;
    font-weight: 400;
    font-size: 19px;
    line-height: 120%;
    letter-spacing: -2%;
    padding-top: 20px;
  }
p.s-tx{
font-family: Inter;
font-weight: 400;
font-size: 15px;
line-height: 120%;
letter-spacing: -2%;
padding: 5px 0px;
}
.cmn-4 h4 {
    font-family: Satoshi;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.8px;
}

ul.cstm-ul li {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -2%;
    color: #2E2E2E;
    padding: 3px 0px;
}
ul.cstm-ul {
    padding-left: 15px;
    padding-bottom: 3px;
}

ul.cstm-ul li::marker {
    color: #7BFB8E;
    font-size: 20px;
}
.pd-10{
  padding:10px 0px;
}
.pd-48{
  padding: 48px 0px;
}
.box-t{
font-family: Satoshi;
font-weight: 400;
font-size: 24px;
line-height: 28.8px;
letter-spacing: -0.8px;
margin-bottom: 12px;
}

.box-p{
font-family: Inter;
font-weight: 400;
font-size: 15px;
line-height: 19.2px;
letter-spacing: -0.32px;
}
.who-we-box {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    height: auto;
    margin-bottom: 30px;
}
.box-i img {
    border-radius: 10px !important;
    margin-bottom: 20px;
    width: 100%;
    height: autos;
}

.ov-start-btn-nb {
    background: #D2E4FC !important;
}

.testi-slider .carousel-viewport {
      width: 100%;
      overflow: hidden;
      padding: 10px 0 16px;
    }

    .testi-slider .carousel-track {
      display: flex;
      gap: 20px;
      padding-left: 0;
      padding-right: 20px;
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;

    }

    .testi-slider .t-card {
      background: #D2E4FC;
      border-radius: 14px;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: fit-content;
      transition: box-shadow 0.3s ease;
      flex: 0 0 var(--card-w, 280px);
      margin-top: auto;  
      margin-bottom: auto;  
    }
      .testi-slider .t-quote {
    color: #0d0d0d;
    flex: 1;
    margin-bottom: 22px;
    font-family: Satoshi;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.5px;
}


    .testi-slider .t-author {
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 13px;
      font-family: Inter;
      font-weight: 400;
      font-size: 16px;
      line-height: 120%;
      letter-spacing: -2%;

    }

    .testi-slider .author-name {
      font-size: 12px;
      font-weight: 500;
      color: #111;
      margin-bottom: 2px;
    }

    .testi-slider .author-location {
      font-size: 11.5px;
      color: #555;
    }

    .testi-slider .bottom-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      margin-top: 24px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .testi-slider .carousel-dots {
      display: flex;
      gap: 7px;
      align-items: center;
    }

    .testi-slider .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
      flex-shrink: 0;
      display: inline-block;
    }

    .testi-slider .dot.active {
      background: #fff;
      width: 22px;
      border-radius: 3px;
    }

   .testi-slider .nav-btns { display: flex; gap: 10px; }

   .testi-slider .nav-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.22);
      background: transparent;
      color: #fff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.22s ease;
      line-height: 1;
    }

   .testi-slider .nav-btn:hover {
      background: #fff;
      color: #111;
      border-color: #fff;
    }

    .testi-slider .nav-btn:disabled,
    .testi-slider .nav-btn[disabled] {
      opacity: 0.22;
      cursor: not-allowed;
      pointer-events: none;
    }
.about-inner-banner{
  text-align: center;
  padding: 150px;
  border-radius: 20px;
background-repeat:no-repeat;	
}
.page-id-32 .inner-banner,
.page-id-36 .inner-banner{
  padding-top: -20px;
}
.page-id-32 .inner-banner,
.page-id-36 .inner-banner {
    margin-top: -40px;
}
.sec-r img{
  border-radius: 20px;
  width: 100%;
  height: auto;
}
   .counter-section h2 {
    color: #2E2E2E;
    font-family: Satoshi;
    font-weight: 400;
    font-size: 88px;
    line-height: 100%;
    letter-spacing: -1.8px;
    text-align: center;
}

.counter-section p {
    margin-top: 10px;
    font-family: Inter;
    font-weight: 400;
    font-size: 19px;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle
}
.counter-inner{
  background: #D2E4FC;
   padding: 64px 0;
   border-radius: 20px;
 }
.modal-body p {
    font-family: Satoshi;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.8px;
    text-align: center;
    vertical-align: middle;
    color: #2E2E2E !important;
    padding-top: 30px;
}
.modal .btn-close{
  opacity: 1;
}
.wpcf7-submit {
    border: 0;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
}
.wpcf7 form.invalid .wpcf7-response-output{
  color: #fff;
}
.dt-s {
    justify-content: space-between !important;
    display: flex;
}
.dt-s a {
    color: #000;
    text-decoration: none;
}
button#load-more {
    margin: 0 auto;
    display: block;
    max-width: fit-content;
}
/* Make whole form inline */
.tnp-subscription form {
  display: flex;
  align-items: center;
}

/* Remove label completely */
.tnp-subscription .tnp-field-email label {
  display: none;
}

/* Put email + button in one row */
.tnp-subscription .tnp-field {
  margin: 0;
}

/* Make email field take full space */
.tnp-subscription .tnp-field-email {
  flex: 1;
}

/* Style input */
.tnp-subscription .tnp-email {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 8px;
}

/* Button inline */
.tnp-subscription .tnp-field-button {
  margin-left: 10px;
}

/* Style button */
.tnp-subscription .tnp-submit {
  background: #dcdcdc;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
}
div.tnp-subscription{
	max-width:100% !important;
	gap: 10px;
    border-bottom: 1px solid #555 !important;
    padding-bottom: 8px !important;
}
.tnp-subscription input[type=email]{
	background: transparent !important;
	padding:0px !important;
	font-size:14px !important;
}
.tnp-subscription input.tnp-submit{
	background-color: #ddd !important;
    color: #000 !important;
	font-size:14px !important;
	padding:10px 18px !important;
}

.ov-social-link img {
    width: 36px;
    height: 36px !important;
}
.ov-menu-grid .ov-start-btn {
    position: absolute;
    bottom: 30px;
}
.title-sec h2.ov-heading {
    text-align: left;
}




@media (min-width:768px) and (max-width:992px){
  .sec-we-do .ov-pill{
     padding: 18px;
  }
  .sec-title-2-b h2, .sec-title-2-b h2{
    font-size: 44px;
  }
  .ov-cta-title{
    font-size: 36px;
  }
}



.section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 400;
      color: #111;
      letter-spacing: -0.5px;
    }

    /* ── Arrow buttons ── */
    .slider-arrows { display: flex; gap: 8px; }

    .arr-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1.5px solid #d0d0d0;
      background: #fff;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: #333;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .arr-btn:hover:not(:disabled) { border-color: #111; background: #111; color: #fff; }
    .arr-btn:disabled { opacity: 0.3; cursor: default; }

    /* ── Main row ── */
    .cards-row {
      display: flex;
      gap: 14px;
      align-items: stretch;
    }

    /* ── Intro Card ── */
    .intro-card {
      flex: 0 0 260px;
      background: #1c1c1e;
      border-radius: 18px;
      padding: 28px 22px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 340px;
    }
    .intro-card .headline {
      color: #fff;
    font-family: Satoshi;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.5px;	
    }
    .intro-card .body-text {
      font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 120%;
letter-spacing: -2%;
vertical-align: middle;
color: #fff;
    }
    .cta-btn {
      display: inline-block;
      margin-top: 24px; padding: 11px 18px;
      background: #b5f33a; color: #111;
      border-radius: 50px; font-size: 13px; font-weight: 600;
      text-decoration: none; border: none; cursor: pointer;
      white-space: nowrap; align-self: flex-start;
      transition: background 0.2s, transform 0.15s;
    }
    .cta-btn:hover { background: #ceff5a; transform: translateY(-1px); }

    /* ── Slider outer — THIS clips the overflow ── */
    .slider-outer {
      flex: 1;
      min-width: 0;
      overflow: hidden;   /* clips cards beyond visible area */
      position: relative;
    }

    /* ── Track — all cards sit in one long row ── */
    .slider-track {
      display: flex;
      gap: 14px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* ── Goal card — width set by JS ── */
    .goal-card {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .goal-card .img-wrap {
      border-radius: 16px;
      overflow: hidden;
      /*height: 290px;*/
      position: relative;
    }

    /* Blue highlight ring */
    .goal-card.highlighted .img-wrap::after {
      content: '';
      position: absolute; inset: -3px;
      border-radius: 19px;
      border: 3px solid #2352d6;
      pointer-events: none; z-index: 2;
    }

    .goal-card .img-wrap .bg {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.4s ease;
    }
    .goal-card:hover .img-wrap .bg { transform: scale(1.04); }

    .goal-card .card-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 13px 4px 2px;
    }
    .goal-card .card-label { font-family: Satoshi;
font-weight: 400;
font-style: Regular;
font-size: 24px;
line-height: 120%;
letter-spacing: -0.8px;
color: #2e2e2e !important;		
		
 }
.goal-card a {
    text-decoration: none;
}
    .goal-card .arrow { font-size: 20px; color: #2D2D2D; transition: transform 0.2s; }
    .goal-card:hover .arrow { transform: translateX(5px); }

    /* ── Dots ── */
    .slider-nav {
      display: flex; gap: 6px;
      justify-content: center;
      margin-top: 20px; min-height: 8px;
    }
    .dot {
      width: 7px; height: 7px;
      border-radius: 50%; background: #ccc;
      cursor: pointer; border: none; padding: 0;
      transition: background 0.2s, width 0.25s;
    }
    .dot.active { background: #1c1c1e; width: 22px; border-radius: 4px; }

    /* Gradient backgrounds */
    .g1 { background: linear-gradient(160deg,#b0d8f5,#6aaee0,#4888c8); }
    .g2 { background: linear-gradient(160deg,#d4a04a,#c47830,#a05518); }
    .g3 { background: linear-gradient(160deg,#70b8e8,#3888cc,#1060aa); }
    .g4 { background: linear-gradient(160deg,#80be70,#559e45,#357828); }
    .g5 { background: linear-gradient(160deg,#c080e0,#9050c0,#6030a0); }

    /* ══════════════ MOBILE ══════════════ */
    @media (max-width: 767px) {
      body { padding: 28px 16px; }
      .slider-arrows { display: none; }

      .cards-row { flex-direction: column; gap: 0; }

      .intro-card { flex: none; min-height: auto; margin-bottom: 20px; padding: 22px 18px; }

      /* Reset slider — show all cards stacked */
      .slider-outer { overflow: visible !important; }
      .slider-track {
        flex-direction: column !important;
        transform: none !important;
        width: auto !important;
        gap: 14px;
      }
      .goal-card { width: 100% !important; }
      .goal-card .img-wrap { height: 200px;width:100%;height:auto; }
      .goal-card .img-wrap img{ width:100%;}
      .goal-card.highlighted .img-wrap::after { display: none; }
      .slider-nav { display: none; }
      .intro-card .body-text {
        margin-bottom:64px;
    }
		.intro-card .headline {
    color: #fff;
    font-family: Satoshi;
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.5px;
}
    }

    /* ══════════════ TABLET ══════════════ */
    @media (min-width: 768px) and (max-width: 1023px) {
      .intro-card { flex: 0 0 250px; min-height:290px;}
      .goal-card .img-wrap { height: 240px; }
          .intro-card .body-text {
        margin-bottom:40px;
    }
}
    
@media (min-width:768px) and (max-width:1200px){
  .inner-banner h1{
    font-size: 60px !important;
  }
}    
@media(min-width:768px){
  .page-id-36 .inner-banner h1,
  .page-id-36 p.s-tx{
    text-align: left;
  }
}
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 1200px;
    }
    .modal-body{
      padding: 90px;
    }
    }