/* ============================================================
   LEAP Product Page — Design System
   Built from LEAP / iQuanti brand DNA
   ============================================================ */

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

:root {
  /* ---- Brand ---- */
  --navy:        #294471;
  --navy-700:    #1f3559;
  --navy-800:    #16263f;
  --navy-900:    #0e1b2e;
  --orange:      #ff8000;
  --orange-600:  #ed6f00;
  --orange-300:  #ffb05b;
  --orange-tint: #fff1e2;

  /* ---- Neutrals (cool, harmonized to navy) ---- */
  --ink:        #14213a;
  --slate:      #45526b;
  --slate-soft: #66748d;
  --line:       #e3e8f1;
  --line-soft:  #eef1f7;
  --surface:    #ffffff;
  --bg:         #f5f7fb;
  --bg-blue:    #eef2f9;

  /* ---- Accent set (overridable by tweaks) ---- */
  --accent:      var(--orange);
  --accent-600:  var(--orange-600);
  --accent-tint: var(--orange-tint);

  /* ---- Type ---- */
  --sans: 'Geist', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* ---- Radius ---- */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* ---- Shadow ---- */
  --sh-sm: 0 1px 2px rgba(20,33,58,.06), 0 2px 6px rgba(20,33,58,.05);
  --sh-md: 0 4px 14px rgba(20,33,58,.07), 0 10px 30px rgba(20,33,58,.06);
  --sh-lg: 0 12px 28px rgba(20,33,58,.10), 0 30px 60px rgba(20,33,58,.10);
  --sh-navy: 0 18px 50px rgba(16,38,63,.30);

  /* ---- Layout ---- */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 130px);
}

* { box-sizing: border-box; }



body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {font-family: var(--sans); margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 600; }
p { margin: 0;font-family: var(--sans); m }
a { color: inherit; text-decoration: none; font-family: var(--sans); m}
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none;font-family: var(--sans); m }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-600);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 880px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 18px;
  text-wrap: balance;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-sub {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--slate);
  max-width: 680px;
}
.section-head.center .section-sub { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -.01em;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(255,128,0,.28); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,128,0,.34); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { background: var(--surface); color: var(--navy); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: #cdd6e6; box-shadow: var(--sh-md); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent-600); font-weight: 500; font-size: 15px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(20,33,58,.05); }
.header-inner {
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand .leap-mark { height: 30px; width: auto; }
.brand .byline {
  display: flex; flex-direction: column; line-height: 1.05;
  padding-left: 13px; border-left: 1px solid var(--line);
}
.brand .byline small { font-size: 10px; color: var(--slate-soft); letter-spacing: .02em; }
.wordmark-iq { font-weight: 800; font-size: 14px; letter-spacing: -.01em; color: var(--navy); }
.wordmark-iq b { color: var(--ink); }
.wordmark-iq .q { color: var(--ink); position: relative; }

/*.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14.5px; font-weight: 450; color: var(--slate);
  padding: 9px 14px; border-radius: 9px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--navy); background: var(--bg-blue); }
.nav a.active { color: var(--accent-600); font-weight: 500; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; }
body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}*/
.leap-logo{
  margin:0 auto;
}
.leap-logo img {
    text-align: center;
    max-width: 80%;
}
@media (max-width: 1280px) {

      .video-frame{
        height:auto !important;
        max-height: 500px !important;

      }
      .video-modal-content{
      padding: 20px 20px !important;
        margin:0 auto !important;
      }
      .videohead{
        margin-bottom:15px !important;
      }
    }
@media (max-width: 1080px) {
  .nav { display: none; }
}
@media(max-height: 800px) {
        .video-modal-content {
            width: 780px !important;
            padding: 32px;
            max-height: calc(100vh - 32px) !important;
        }
        .video-frame {
          height: 320px;
          max-height: calc(100vh - 100px) !important;
        }
    }

@media (max-width: 620px) {
  .header-cta .btn-text { display: none; }
}
@media (max-width:575px) {
  .video-frame{
    height:auto !important;
  }
  .videohead {
        max-height: 30px !important;
    }
      .video-close {
        margin-left: auto;
        top: -5px !important;
        right: 20px !important;
    }
     .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        border: none;
        background: none;
    }
    .popup-content {
        position:relative;
        gap:24px!important;
    }
    .popup-content input[type="email"] {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 12px;
        gap: 4px;
        width: 100%;
        height: 48px;
        background: #FFFFFF;
        border: 1px solid #E5D9B5;
        border-radius: 4px;
    }

    .popup-content p:last-child {
      font-style: normal;
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
      display: inline-flex;
      width: 100%;
      justify-content:center;
  }

  .field-item-captcha {
      clear: both;
      text-align: center;
      padding: 25px 10px 0 !important;
  }
   .popup-content {
    height: auto !important;
        width: 90% !important;
        padding: 20px 20px !important;
  }

    .page-template-page-template-leap .popup-content form .field-item-captcha {
        margin: 24px 0 !important;
    }
     .rc-anchor-light {
      background: none;
    }
   .popup-content h2  {

      height: 28px;
      font-style: normal;
      font-weight: 700;
      font-size: 20px;
      line-height: 140%;

        }
      .popup-content p{

      height: 48px;

      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      line-height: 150%;
      margin-bottom:16px;
      }
      .wordemail {
      width: 100%;
      height: 17px;

      font-style: normal;
      font-weight: 600;
      font-size: 14px;
      line-height: 17px;
    }
   .popup-content form .field-item-captcha {
        margin: 24px 0 !important;
    }
     .popup-content input::placeholder {
      color: transparent;
    }

     .checked-box {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      padding: 0px;
      gap: 10px;
      width: 303px;
      height: 42px;
      border-radius: 0px;
  }
     .updatesCheck{
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
    }
     form input[type="checkbox"] {
      width: 24px;
    }

   .popup-content button.submit-btn {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 12px 24px;
      gap: 16px;
      width:100%;
      height: 52px;
      background: linear-gradient(90deg, #294471 0%, #1F3154 100%);
      border-radius: 8px;
      font-weight: 700;
    }

         #error_message {
          display: none;
          flex-direction: row;
          align-items: center;
          padding: 0px;
          gap: 5px;
          width: 303px;
          height: 20px;
          font-style: normal;
          font-weight: 400;
          font-size: 12px;
          line-height: 150%;
          color: #FA4B4B;
      }
     .agree-terms {
      font-size: 16px;
      line-height: 20px;
      padding: 0 0px;
      margin-bottom: 15px;
  }
     #error-message::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

   .popup-content a {
      font-weight: 500;
      font-size: 14px;
      line-height: 150%;
      color: #F07C00;
      text-decoration: underline;
  }

  .thankyou-close-btn{
        right:20px;
        top: 20px;
    }


    .thanks-img img{
        width:136px;
        height:136px;
      margin-bottom: 24px;
    }


    .thanks-text {
        gap: 16px;
        text-align: center;
    }


    .thanks-text p{
        font-size:16px
    }
    .ty-btn{
     margin-top:10px;
    }
    .ty-btn .thankyou-btn{
        padding:12px 24px !important;
        height:auto;
    }


}
@media(max-height: 550px) {
    .thankyou-main {
        width: 500px !important;
    }
    .thanks-img img {
        margin-bottom: 24px
    }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 80% -10%, #fff6ec 0%, rgba(255,246,236,0) 55%),
    linear-gradient(180deg, #eef2f9 0%, #f5f7fb 100%);
  overflow: hidden;
  margin-top:70px;
}
.hero-arc {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(60px, 8vw, 60px) clamp(48px, 6vw, 60px);
  display: grid; gap: 15px;
  max-width: 940px; margin-inline: auto; text-align: center;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 600; letter-spacing: -.03em;
  color: var(--ink); text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--slate); max-width: 760px; margin-inline: auto;
  text-wrap: pretty;
}
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  margin-inline: auto;
  padding: 8px 16px 8px 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; color: var(--slate);
  box-shadow: var(--sh-sm);
}
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,.15); }

/* Trust ribbon */
.trust {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.trust-inner {
  padding-block: 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
}
.trust-lead { font-size: 16.5px; color: var(--ink); font-weight: 500; text-wrap: pretty; max-width: 760px; padding-bottom:0;}
.trust-lead b { color: var(--accent-600); font-weight: 700; }
.trust-text { font-size: 14px; color: var(--slate); max-width: 620px; text-wrap: pretty; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.trust-text .link-arrow { font-size: 14px; }

/* ============================================================
   GENERIC CARD
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* ---- Reveal animation ---- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* popup css*/

  .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6); /* dark semi-transparent background */
      z-index: 11111;
       overflow: auto;
      padding: 30px 0;
      justify-content: center;
      align-items: center;
    }

    /* Popup container */
    .popup-content {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          padding: 40px;
          gap: 40px;
           width: 650px;
          max-width:100%;
          background: linear-gradient(95.37deg, #F5F7FA 0%, #E9EDF3 100%);
          border-radius: 16px;
          position: relative;
          margin: auto;
    }


    /* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
    border: none;
    background: none;
}

    /* Form styling */
    .popup-content h2 {
    margin-top: 0;
}

.popup-content input[type="email"] {
display: flex;
flex-direction: row;
align-items: center;
padding: 16px 12px;
gap: 4px;
width: 594px;
height: 56px;
background: #FFFFFF;
border: 1px solid #E5D9B5;
border-radius: 4px;
}
    .popup-content input[type="checkbox"] {
      margin-right: 8px;
    }

   .popup-content button.submit-btn {
    width: 40%;
    background-color: rgb(29, 60, 117);
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 16px;
    padding: 12px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
	border-radius: 5px;

}



.popup-content p:last-child img  {
     padding-right:6px;
 }

    .popup-content button.submit-btn:hover {
      background-color: #15315a;
    }

.popup-content p {

     font-style: normal;
     font-weight: 500;
     font-size: 18px;
     line-height: 150%;
     margin-top:0;
     color: #333333;
 }

.updatesCheck {

font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 150%;
}


 input[type=checkbox]:checked + label:before {
    background-color: #ED820A;
    border-color: #ED820A;
}


 .popup-content input[type=checkbox]+label:before {
    width: 13px !important;
    height: 13px !important;
    margin: 3px 12px 0 0;
    flex-shrink: 0;
}

input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 24px!important;
    height: 24px!important;
    text-align: center;
    font-size: 17px!important;
		padding-left:0px!important;
	padding-bottom:0px!important;
    color: transparent;
    transition: .2s;
    margin-right: 8px;
    margin-top: 8px;
}


 form input[type="checkbox"] {
    display:none;
}
#error_message {
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 150%;
color: #FA4B4B;
display: none;
}



.wordemail {

font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 19px;
color: #000000;
}
    .popup-content a {
      color: #f07c00;
      text-decoration: none;
    }


    .field-item-captcha .g-recaptcha > div {
    margin: 0;
}

.agree-terms {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0px;
}




 .popup-overlay {
    z-index: 999991;
}

 .popup-content .popup-header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

 .popup-content .popup-header h3 {
    padding-bottom:0;
    color: #1a1a1a !important;
}


 .popup-content .popup-header .close-btn{
     position:unset;
}


 .popup-content .popup-tititle-wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

 .popup-content .popup-header p{
    margin-top:12px;
}

 .popup-content p:last-child {
    font-size: 18px;
    color: #333;
}

 .popup-content .required-symbole{
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #CF2A36;
}

 .popup-content input[type="email"] {
    width: 100%;
}

 .popup-content input[type="email"]::placeholder{
    color:#fff;
}

 .popup-content form {
    width: 100%;
}



 .popup-content form > label{
    margin-bottom:8px;
    display:block;
}


 .popup-content form .field-item-captcha {
    padding: 0 !important;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

 .popup-content form .g-recaptcha {
    transform: scale(0.9211) !important;
    -webkit-transform: scale(0.9211)!important;
}

 .popup-content .req-privacy-policy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 .popup-content .req-privacy-policy > div{
    display:flex;
    flex-wrap: wrap;
}
 .popup-content .updatesCheck {
    display: inline-flex;
    color: #333333;
}

 .popup-content input[type=checkbox] + label:before {
    width: 17px !important;
    height: 17px !important;
    margin: 3px 12px 0 0;
    border: 2px solid #7A7A7A !important;
    cursor: pointer;
    border-radius: 2px;
    display: inline;
}


 .popup-content input[type=checkbox]:checked + label:before {
    background-color: #f7941e !important;
    border-color: #F77E0B !important;
    background-image: url(../images/leap_page/privacy_check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}
 .popup-content .req-privacy-policy
.agree-terms a{
    margin-left:4px;
    text-decoration: underline;
    color: #FF8000;
}

 .popup-content form #error_message {
    width: 100%;
    margin-top: 8px;
    font-weight: 400;
    font-size: 14px;
    gap: 5px;
    line-height: 150%;
    color: #FA4B4B;
}


 .popup-content form button.submit-btn {
    margin-top:40px;
    display:block;
    padding: 12px 40px;
    font-size:18px;
    line-height:28px;
    font-weight:700;
    width: auto;
}
.popup-content form span#error_message img{
  display: inline-block;
  vertical-align: bottom;

}
 .popup-content form p.safe-info {
     margin-top: 17px;
     display: flex;
     align-items: center;
}
.popup-content form p.safe-info img {
    width: 35px;
    height: auto;
}

/* Thank you popup */
  .thankyou-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
   z-index: 999991;
    padding: 64px 0;
    overflow: auto;
    /* Start hidden */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  /* Show state */
  .thankyou-overlay.show {
    opacity: 1;
    visibility: visible;
  }



  /* Animate popup when overlay is shown */
  .thankyou-overlay.show .thankyou-popup {
    transform: translateY(0);
    opacity: 1;
  }



  .thankyou-btn {
    padding: 10px 20px;
    border: 1px solid #1e3a8a;
    background: #f3f5f9;
    color: #1e3a8a;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .thankyou-btn:hover {
    background: #1e3a8a;
    color: white;
  }




  .thankyou-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 754px;
    max-width:100%;
    border-radius: 16px;
    gap:48px;
   background: linear-gradient(95.37deg, #F5F7FA 0%, #E9EDF3 100%);
    position: relative;

}

.thankyou-main .vector-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    mix-blend-mode: darken;
    width: 100%;
    z-index: -1;
}

.thankyou-popup .vector-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 754/316;
}

.thankyou-main{
    background-color: white;
    border-radius: 16px;
    max-width: calc(100% - 40px);
    margin: auto;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
    width: 600px;
}
.thanks-img  {
    height: 100%;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 72px;
}

.thanks-img img{

    left: 0px;
    top: -0.03px;
    background: url(image.png);
    background-blend-mode: multiply;
    opacity: 0.7;
    border-radius: 16px;
    object-fit: cover;
    position: static;
    transform: none !important;
    height: 120px;
    width: 120px;
  }
.thankyou-close-btn {
position: absolute;
width: 40px;
height: 40px;
top: 32px;
font-size:40px;
color:#1C1B1F !important;
font-weight: 500;
z-index:5;
right: 32px;
left: auto;
display: inline-flex;
align-items: center;
justify-content: center;
}
.thanks-text {
   display:flex;
   flex-direction:column;
   gap: 32px;
   justify-content:center;
   align-items:center;
}
.thanks-text h2{

font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 130%;
text-align: center;
color: #1A1A1A;
}
.thanks-text h3 {
    text-wrap: balance;
    padding-bottom:0;
    line-height: 1.5;
}
.thanks-text p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #333333;
    text-wrap: balance;
}
.ty-btn .thankyou-btn {
box-sizing: border-box;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 16px 24px;
gap: 12px;
width: 251px;
height: 60px;
border-radius: 8px;
z-index: 3;
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 28px;
}
.ty-btn {
   margin-top: 16px;
}




   .video-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
    }

    /* Modal Box */
    .video-modal-content {
      background: #fff;
      border-radius: 12px;
      max-width: 1217px;
      width: 90%;
      position: relative;
      padding: 30px;
    }

    .videohead{
        margin-bottom: 32px;
    }
     .videohead h3 {
      padding-bottom:0;
    }

    /* Video Frame */
    .video-frame {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: 8px;
    }

    /* Close Button */
    .video-close {
      position: absolute !important;
      top: -5px;
      right: 15px;
      font-size: 28px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      transition: 0.3s;
    }
    .video-close:hover {
      color: #000;
    }