@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    scroll-behavior: smooth;
}

.body{
    margin:0;
    padding:0;
    box-sizing:border-box;
    overflow-x:none;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    color: #616161;
    background: #f5f7fa95
}

.hero-section {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 3rem;
}

.hero-section .images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; 
}

.hero-section .img img {
    border-radius: 50%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.hero-section .img:nth-child(2) img {
    width: 140px;
    height: 140px;
    transform: scale(1.1);
}

.hero-section .img:nth-child(1) img,
.hero-section .img:nth-child(3) img {
    width: 100px;
    height: 100px;
}

.hero-section .img img:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.hero-section .text-container {
    max-width: 600px;
    padding: 20px;
}

.hero-section .header {
    font-size: 5.5rem;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-in-out;
    text-transform: capitalize;
    font-family: "Instrument Serif", serif;
}

.hero-section p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #616161;
    margin-top: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out;
}

.flash-card-img {
    width: 700px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.flash-card-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

.priv-section {
    background: #f5f5f7;
    padding: 80px 20px;
}

.priv-section h3 {
    font-family: "Instrument Serif", serif;
    color: black;
    font-weight: 500;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.priv-section .card-section {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.card-section .card {
    padding: 40px 30px;
    max-width: 450px;
    background: #eeece5;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tab-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 25px;
    background: none;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.individual {
    color: #dfbb49;
}

.tab-button.business {
    color: #98989c;
}

.card img {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
}

.card h4 {
    font-family: "Instrument Serif", serif;
    color: black;
    font-weight: 500;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: left;
}

.card h4::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ccccccd0;
    margin: 8px auto 0;
    border-radius: 2px;
}

.card p {
    font-size: 0.95rem;
    color: #616161;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.card button {
    background-color: #c7b992;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    width: 200px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(223, 187, 73, 0.4);
}

.cta-section {
    padding: 80px 20px;
    background-image: url("../assets/4.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-section h3 {
    font-size: 4rem;
    color: black;
    font-family: "Instrument Serif", serif;
    font-weight: 500;
    width: 600px;
    text-align: center;
    margin: 1rem 0;
}

.cta-section img {
    width: 600px;
    height: auto;
    margin: 1rem 0;
}

.cta-section .processes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.processes .process {
    padding: 15px;
}

.process .top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.top span {
    color: #21212196;
}

.top p {
    margin: 0;
}

.process .text {
    font-size: 14px;
    font-weight: 400;
}

.contact-section {
    padding: 80px 20px;
    background: black;
    color: white;
    font-family: "Instrument Serif", serif;
}

.contact-section .container {
    width: 80%;
    margin: 0 auto;
}

.contact-section .form-container {
    padding: 30px 15px;
}

.form-container h4 {
    margin: 0;
    padding: 0;
    width: 100%;
}

.form-container form {
    width: 100%;
    margin: 1rem 0;
    padding: 10px;
}

.formInput {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.formInput label {
    font-size: 3.5rem;
    font-weight: 500;
}

.formInput input {
    flex: 1;
    padding: 25px 15px;
    background: none;
    border: none;
    outline: none;
    color: #f5f5f7;
    font-size: 2.5rem;
}

.formInput select {
    flex: 1;
}

.formInput.name input::placeholder {
    font-size: 3.2rem;
    font-weight: 500;
}

.formInput input:focus {
    border-bottom: 1px solid #98989c;
}

.formInput select {
    background: black;
    color: white;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 25px;
    border: 1px solid #98989c;
}

.formInput.email input {
    font-size: 1.5rem;
    border: 1px solid #98989c;
    border-radius: 22px;
    padding: 10px 15px;
}

form button {
    width: 150px;
    margin: 15px 0;
    border-radius: 18px !important;
    color: black !important;
    font-size: 17px !important;
    padding: 10px 0 !important;
    font-weight: 600 !important;
}

.faq-section {
    padding: 80px 20px;
    background: #f5f5f7;
    font-family: "Instrument Serif", serif;
}

.faq-section h3 {
    font-size: 3.8rem;
    font-weight: 500;
    text-align: center;
    width: 600px;
    margin: 1rem auto;
}

.faqs {
    width: 100%;
}

.faq-item {
    /* border-top: 1px solid #c0c0c6; */
    border-bottom: 1px solid #c0c0c6;
    /* margin-bottom: 1rem; */
}

.faq-question {
    width: 100%;
    padding: 24px 10px;
    font-size: 1.4rem;
    font-weight: 500;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #212121;
    transition: color 0.3s ease;
}

.faq-question span {
    font-size: 2.5rem;
    font-weight: 500;
}

.arrow-icon {
    width: 38px;
    height: 38px;
    transition: transform 0.3s ease;
    color: #dfbb49;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 10px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 10px 20px;
}

.faq-answer p {
    font-size: 1.2rem;
    color: #9c9595;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    text-justify:justify;
    text-align:start;
    display:block;
    white-space:pre-wrap;
    
}

.footer-container {
  position:relative;
  background-color:#000000;
  z-index:500
}
.eagle-footer-heading span:nth-child(2) {
  margin-right:0
}
.eagle-footer {
  position:sticky;
  top:-150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  color:#ffffff;
  padding:0;
  text-align:center;
  width:100%;
  overflow:hidden;
  z-index:1;
  background:url(/assets/footer-bg.jpg) 50% no-repeat;
  background-size:cover;
  background-color:#000000;
  min-height:50vh
}
.footer-eagle-body img {
  height:auto;
  width:100%
}
.footer-eagle-v2 {
  pointer-events:none;
  width:100%;
  transform:scale(1) translateY(-65px)
    
}
  .footer-eagle-v2 img {
    width:100%;
    height:auto
  }
  .footer-padding {
    z-index:2;
    top:-2px
  }
  .footer-eagle-v2-head,
  .footer-padding {
    position:relative
  }
  .footer-sequence {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:auto;
    min-height:100px;
    contain:layout
  }
   .footer-sequence img {
      width:100%;
      height:auto;
      display:block
    }
  
  .footer-eagle-body {
    position:relative;
    z-index:2
  }
    .footer-eagle-body img {
      height:auto;
      width:100%
    }
  

.eagle-footer .eagle-footer-content {
  position:absolute;
  top:200px;
  left:0;
  width:100%;
  height:100%;
  z-index:0
}
.eagle-footer-eyebrow {
  text-align:center;
  font-size:18px;
  font-style:normal;
  line-height:normal;
  letter-spacing:.9px;
  text-transform:uppercase;
  margin-bottom:37px
}
.eagle-footer-heading {
  text-align:center;
  font-size:244px;
  line-height:88%;
  letter-spacing:-8.54px
}
.eagle-footer-button-container {
  width:866px;
  margin:69px auto 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid #ffffff;
  padding-top:24px;
  font-size:20px;
  font-style:normal;
  font-weight:600
}
  .button {
    backdrop-filter:blur(10px);
    background-color:rgba(0,0,0,.1)
  }

.eagle-footer-image-container {
  width:100%;
  height:auto;
  pointer-events:none;
  background:url(/assets/footer-bg.jpg) 50% no-repeat;
  background-size:cover
}
.eagle-footer-image {
  position:relative;
  width:100%;
  height:100%;
  object-fit:cover;
  top:2px;
  left:1px;
  will-change:contents;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform:translateZ(0)
}
.eagle-footer-image-static {
  height:auto;
  position:absolute;
  top:1px;
  left:1px;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:2
}
.footer-padding,
.footer-padding-btm {
  width:100%;
  height:auto;
  position:relative;
  z-index:1
}
 .footer-padding,
.footer-padding-btm img {
    width:100%;
    height:auto
  }

.footer-padding {
  margin-bottom:-2px
}
.footer-padding-btm {
  margin-top:-2px
}
@media screen and (max-height:775px) and (orientation:landscape) {
  .footer-eagle-v2 {
    transform:scale(1) translateY(-25px)
  }
}
@media (max-width:1027px) {
  .eagle-footer {
    position:sticky;
    top:-135px
  }
  .eagle-footer-heading {
    font-size:200px;
    line-height:88%;
    letter-spacing:-3.08px
  }
  .eagle-footer .eagle-footer-content {
    top:150px
  }
    .eagle-footer-button-container {
      width:726px;
      max-width:100%;
      padding:16px 0
    }
  }
  .footer-eagle-v2 {
    position:relative;
    top:160px
  }

@media (max-width:870px) {
  .eagle-footer-heading {
    font-size:150px;
    line-height:88%;
    letter-spacing:-3.08px
  }
  .eagle-footer-button-container {
    width:90vw
  }
  .eagle-footer-content {
    margin-bottom:10vh
  }
}
@media (max-width:768px) {
  .footer-eagle-v2 {
    transform:scale(1.1)
  }
  .eagle-footer-eyebrow {
    font-size:15px;
    letter-spacing:.75px;
    margin-bottom:24px
  }
  .eagle-footer-heading {
    font-size:140px;
    line-height:88%;
    letter-spacing:-3.08px
  }
  .eagle-footer-content {
    width:100%;
    margin-bottom:40vh
  }
  .eagle-footer-button-container {
    margin-top:34px;
    padding:24px 0 0
  }
   .eagle-footer-button-container span {
      font-size:14px;
      line-height:130%;
      letter-spacing:-.21px;
      text-align:left;
      max-width:139px
    }
  }

@media (max-width:500px) {
  .eagle-footer-heading {
    font-size:88px;
    line-height:88%;
    letter-spacing:-3.08px
  }
  .eagle-footer {
    height:70vh;
    top:-90px
  }
  .footer-eagle-v2 {
    transform:scale(2) translateY(0)
  }
  .eagle-footer .eagle-footer-content {
    top:50px
  }
    .eagle-footer-button-container {
      width:95%;
      max-width:100%;
      padding:16px 0
    }
  }
  .eagle-footer-button-container {
    width:100%
  }
  .eagle-footer-button-container a {
    background-color:rgba(250,250,250,.35);
    backdrop-filter:blur(4px)
  }

@media screen and (orientation:landscape) and (max-height:500px) {
  .eagle-footer-heading {
    font-size:90px
  }
}
.footer-container .eagle-footer .gold-button,
.gold-button {
  background-color:#FFE193!important;
  color:white!important
}
.footer-container .eagle-footer .gold-button {
  border:none!important
}



.features-section-container {
  background-color:#F5F5F7;
  position:relative;
  z-index:2;
  margin-top:30px;
  padding-top:160px;
  padding-bottom:160px
}
.features-section-container * {
  box-sizing:border-box
}
.features-section {
  position:relative;
  width:100%;
  padding:0;
  color:var(--color-black);
  max-width:var(--max-width);
  margin:0 auto
}
.button-section {
  padding-top:72px
}
.features-section-heading {
  font-size:80px;
  margin-bottom:48px;
  text-align:center
}
.features-section-heading button.feature-nav-button {
  display:inline-block;
  font-family:Instrument Sans;
  font-size:22px;
  line-height:normal;
  letter-spacing:-.22px;
  cursor:pointer;
  padding:12px;
  background:var(--TC-Gradient-Gradient-1,linear-gradient(211deg,rgba(0,0,0,.3) 12.82%,rgba(0,0,0,.3) 87.46%));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  border:none
}
.features-section-heading button.feature-nav-button-active {
  background:var(--TC-Gradient-Gradient-1,linear-gradient(211deg,#F0C94F 12.82%,#CFAE44 87.46%));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent
}
.card-container {
  flex-direction:row;
  justify-content:center;
  align-items:stretch;
  max-width:var(--max-width);
  margin:0 auto;
  gap:34px
}
.card,
.card-container {
  display:flex;
  width:100%;
  position:relative;
  box-sizing:border-box
}
.card {
  max-width:539px;
  background-color:#EEECE5;
  border-radius:12px;
  padding:40px;
  text-align:left;
  flex-direction:column;
  flex:1 1 0;
  min-height:0;
  box-shadow:none;
  transition:transform .3s ease,box-shadow .3s ease;
  overflow-wrap:break-word;
  word-wrap:break-word
}
.coming-soon-tag {
  position:absolute;
  top:16px;
  right:16px;
  background:rgba(180,180,180,.5);
  color:#333333;
  padding:3px 8px;
  border-radius:12px;
  font-size:10px;
  font-weight:500;
  font-family:Instrument Sans,sans-serif;
  letter-spacing:.5px;
  text-transform:uppercase;
  z-index:10;
  box-shadow:0 1px 3px rgba(0,0,0,.08)
}
.card:hover {
  transform:translateY(-4px);
  box-shadow:none
}
.card-corporate {
  max-width:785px
}
.card-content {
  display:flex;
  flex-direction:column;
  gap:32px;
  flex:1 1 auto;
  min-height:100%
}
.card-divider {
  border-top:1px solid var(--TC-Black-Black-05,rgba(0,0,0,.05));
  display:flex;
  height:1px;
  padding-top:2px;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  align-self:stretch
}
.card-heading {
  display:flex;
  flex-direction:row;
  gap:28px;
  justify-content:flex-start;
  align-items:center
}
.card h2 {
  font-size:72px;
  line-height:104%;
  letter-spacing:-.72px;
  margin:0
}
.card h2,
.card h3 {
  overflow-wrap:break-word
}
.card h3 {
  margin:4px 0 0
}
.card p {
  font-size:20px;
  line-height:130%;
  letter-spacing:-.2px;
  opacity:.5;
  margin:0;
  overflow-wrap:break-word
}
.card-heading-icon {
  width:120px;
  height:116px;
  mix-blend-mode:multiply;
  opacity:.6;
  flex-shrink:0;
  margin:0 0 24px;
  padding:0;
  align-self:flex-start
}
.card-heading-icon img {
  width:100%;
  height:100%;
  object-fit:contain
}
.features-section-button {
  padding-top:64px
}
.feature-nav-buttons,
.features-section-button {
  display:flex;
  justify-content:center;
  align-items:center
}
.feature-nav-buttons {
  gap:16px;
  margin-top:24px
}
.mobile-divider {
  display:none
}
.card-button-container {
  margin-top:auto;
  padding-bottom:0;
  display:flex;
  justify-content:flex-start;
  width:100%
}
.card-action-button {
  width:auto;
  padding:10px 24px;
  background:linear-gradient(156deg,#D6CAA7 15.25%,#B2A274 76.06%);
  color:#ffffff;
  border:none;
  border-radius:100px;
  font-family:Instrument Sans,sans-serif;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease;
  white-space:nowrap
}
.card-action-button:hover {
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(240,201,79,.3)
}
@media screen and (max-width:1544px) {
  .features-section {
    padding:0 20px
  }
  .card h2 {
    font-size:64px
  }
  .card-heading-icon {
    width:120px;
    height:116px
  }
}
@media screen and (max-width:1470px) {
  .features-section {
    padding:0 20px
  }
  .card {
    padding:32px
  }
  .card h2 {
    font-size:58px
  }
  .card-heading-icon {
    width:110px;
    height:106px
  }
  .card p {
    font-size:19px
  }
}
@media screen and (max-width:1388px) {
  .features-section {
    padding:0 20px
  }
  .card h2 {
    font-size:52px
  }
  .card-heading-icon {
    width:100px;
    height:96px
  }
  .card p {
    font-size:17px
  }
  .card-content {
    gap:24px
  }
}
@media screen and (max-width:1250px) {
  .features-section {
    padding:0 20px
  }
  .card {
    padding:28px
  }
  .card h2 {
    font-size:44px
  }
  .card-heading-icon {
    width:90px;
    height:86px
  }
  .card p {
    font-size:16px
  }
  .card-heading {
    gap:40px
  }
}
@media screen and (max-width:1131px) {
  .features-section {
    padding:0 24px
  }
  .features-section-container {
    padding-top:160px;
    padding-bottom:160px
  }
  .features-section-heading {
    font-size:80px;
    line-height:96%;
    letter-spacing:-3.15px;
    margin-bottom:48px
  }
  .features-section-heading button.feature-nav-button {
    font-size:22px
  }
  .card-container {
    flex-direction:column;
    max-width:460px;
    align-items:stretch;
    gap:24px;
    padding:0
  }
  .card {
    width:100%;
    max-width:100%;
    padding:32px;
    flex:none;
    margin:0
  }
  .card h2 {
    font-size:52px
  }
  .card-heading-icon {
    width:80px;
    height:76px
  }
  .card p {
    font-size:20px
  }
}
@media screen and (max-width:900px) {
  .card-container {
    flex-direction:column!important;
    gap:20px
  }
  .card {
    width:100%!important;
    max-width:100%!important;
    flex:none!important
  }
}
@media screen and (max-width:675px) {
  .coming-soon-tag {
    top:12px;
    right:12px;
    padding:4px 8px;
    font-size:10px
  }
  .features-section-container {
    padding-top:88px;
    padding-bottom:88px
  }
  .features-section {
    padding:0 16px
  }
  .button-section {
    padding-top:24px
  }
  .features-section-container {
    padding-top:120px;
    padding-bottom:120px
  }
  .features-section-heading {
    font-size:80px;
    margin-bottom:48px
  }
  .features-section h1,
  .features-section-heading {
    line-height:90%;
    letter-spacing:-2.4px;
    text-align:center
  }
  .features-section h1 {
    font-size:80px
  }
  .card-container {
    flex-direction:column;
    gap:16px;
    padding:0;
    align-items:stretch;
    max-width:100%
  }
  .card {
    width:100%;
    max-width:100%;
    min-height:320px;
    padding:20px;
    box-shadow:none;
    margin:0;
    flex:none
  }
  .card h2 {
    font-size:40px;
    line-height:110%;
    letter-spacing:-.4px
  }
  .card h3 {
    font-size:20px;
    line-height:120%
  }
  .card p {
    font-size:16px;
    line-height:140%;
    letter-spacing:-.16px
  }
  .card-heading {
    gap:16px;
    flex-wrap:wrap
  }
  .card-heading-icon {
    width:65px;
    height:62px;
    flex-shrink:0
  }
  .card-content {
    gap:20px
  }
  .feature-nav-buttons {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:15px
  }
  .features-section-heading button.feature-nav-button {
    display:inline-block;
    font-size:20px;
    line-height:130%;
    letter-spacing:-.16px;
    padding:8px 12px;
    white-space:nowrap
  }
}
@media screen and (max-width:380px) {
  .card-container {
    padding:0 12px
  }
  .features-section-container {
    padding-top:88px;
    padding-bottom:88px
  }
  .card {
    padding:16px
  }
  .card h2 {
    font-size:36px
  }
  .card h3 {
    font-size:18px
  }
  .card p {
    font-size:14px;
    line-height:145%
  }
  .features-section h1 {
    font-size:48px
  }
  .features-section-heading {
    font-size:72px
  }
  .features-section-heading button.feature-nav-button {
    font-size:14px;
    padding:6px 10px
  }
  .mobile-divider {
    display:block;
    width:60px;
    height:2px;
    background:linear-gradient(135deg,#F0C94F,#CFAE44);
    margin:16px auto
  }
}
.apply-button {
  border-radius:var(--button-border-radius);
  background:linear-gradient(0deg,#FFE193 0,#FAFAFA);
  color:var(--color-black);
  padding:10px 44px;
  height:58px;
  font-size:22px;
  font-weight:500;
  letter-spacing:-.01em;
  border:none;
  -webkit-font-smoothing:subpixel-antialiased;
  cursor:pointer;
  transition:background-color .2s ease,transform .2s ease;
  &:hover {
    transform:translateY(-2px);
    background:linear-gradient(0deg,#FFE193 0,#FAFAFA 90%)
  }
}
.hero-button-container a,
.hero-button-container a:hover {
  cursor:pointer;
  display:inline-block
}
.hero-button-mobile {
  display:none!important
}
.hero-button-desktop {
  display:inline-block!important
}
@media (hover:hover) {
  .hero-button-desktop {
    display:inline-block!important
  }
  .hero-button-mobile {
    display:none!important
  }
}
@media screen and (max-width:1000px) {
  .hero-button-mobile {
    display:inline-block!important
  }
  .hero-button-desktop {
    display:none!important
  }
}
.stagger-button-container {
  display:block;
  transition:background-color .2s ease,transform .2s ease;
  overflow:hidden;
  position:relative
}
.stagger-button-text-container {
  position:relative;
  z-index:1;
  overflow:hidden;
  color:var(--color-black);
  padding:10px 44px;
  height:58px;
  font-size:22px;
  font-weight:500;
  letter-spacing:-.01em;
  border:none;
  -webkit-font-smoothing:subpixel-antialiased;
  span {
    display:inline-block
  }
}
.stagger-button-bg {
  position:relative;
  border-radius:var(--button-border-radius);
  background:linear-gradient(0deg,#FFE193 0,#FFE193);
  height:58px;
  position:absolute;
  top:0;
  left:0;
  width:100%
}
.stagger-button-top-text {
  overflow:hidden
}
.stagger-button-bottom-text {
  overflow:hidden;
  position:absolute;
  top:10px;
  left:0;
  width:100%
}
.feature-point-header {
  gap:12px;
  margin-bottom:11px;
  color:#e6c14c
}
.feature-point-title {
  color:#e6c14c
}
.feature-point-title span {
  font-weight:500;
  margin-right:12px
}
.feature-point-description,
.feature-point-title span {
  font-size:20px;
  color:#e6c14c
}
.png-sequence-container {
  max-width:100%;
  position:relative;
  height:auto;
  margin:0 auto;
  font-family:Instrument Sans,sans-serif;
  --sequence-height:100vh;
  color:black;
  background-color:#FDF3EA;
  z-index:1;
  padding-top:60px;
  padding-bottom:60px
}
.png-sequence-container,
.sequence-bg {
  background:url(/img/assets/marble.jpg) no-repeat 50% fixed;
  background-size:cover
}
.sequence-bg {
  pointer-events:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0
}
.sequence-section {
  height:var(--sequence-height);
  position:relative;
  margin-bottom:0
}
.sequence-container {
  z-index:10;
  min-height:100vh;
  width:100%;
  overflow:hidden
}
.frame-display {
  height:100vh;
  width:100vw
}
.sequence-image {
  height:40%;
  display:block;
  bottom:33vh;
  z-index:10
}
.feature-points-container,
.sequence-image {
  position:absolute;
  left:0;
  right:0;
  margin:0 auto
}
.feature-points-container {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1380px;
  padding:0 40px;
  gap:24px;
  bottom:6vw;
  width:100%;
  z-index:12;
  text-align:left;
  transform:translateY(-50%);
  z-index:1
}
.feature-points-title {
  width:100%;
  display:block;
  position:absolute;
  bottom:75vh;
  left:50%;
  transform:translate(-50%);
  margin-bottom:1vw;
  line-height:1;
  text-align:center;
  font-size:80px;
  font-weight:400;
  letter-spacing:-1.4px
}
.feature-point {
  display:flex;
  flex-direction:column
}
.feature-point-header {
  display:flex;
  align-items:baseline;
  gap:6px;
  line-height:1.15;
  & h3 {
    font-family:Instrument Sans,sans-serif;
    font-weight:600;
    font-size:17px;
    color:black;
    margin:0;
    span {
      font-size:17px;
      color:rgba(0,0,0,.5);
      margin-right:8px
    }
  }
}
.feature-point-title {
  font-size:24px;
  font-weight:600;
  color:#000;
  margin:0
}
.feature-point-description {
  font-size:17px;
  line-height:1.3;
  color:black;
  margin:0;
  font-weight:400;
  letter-spacing:-.2px
}
.feature-text-container {
  display:flex;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  gap:40px
}
.feature-text-container-scrolled {
  color:black;
  height:500vh;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  .feature-text-heading {
    display:block;
    font-size:clamp(32px,3.4vw,46px);
    margin-bottom:1vw;
    text-align:left;
    line-height:1;
    padding-top:calc(var(--sequence-height) / 3);
    margin-left:58vw
  }
  .feature-text-subheading {
    font-size:clamp(18px,1.6vw,20px);
    text-align:left;
    width:24vw;
    min-width:329px;
    line-height:1.3;
    margin-left:58vw;
    max-width:340px
  }
}
.feature-text {
  font-family:Instrument Sans,sans-serif;
  font-weight:600;
  font-size:clamp(15rem,15rem,5rem);
  color:white;
  margin:0;
  text-align:center;
  letter-spacing:-.05em;
  text-shadow:0 2px 10px rgba(0,0,0,.2);
  transform-origin:center center;
  will-change:transform,opacity
}
.loading {
  color:white;
  font-size:1.2rem;
  padding:2rem
}
.frame-info {
  margin-top:1rem;
  padding:1rem;
  background-color:#fff;
  border-radius:4px;
  box-shadow:0 1px 3px rgba(0,0,0,.1)
}
.spacer-section {
  height:100vh;
  padding:3rem 2rem;
  text-align:center;
  background-color:#f0f0f0;
  border-radius:8px;
  margin-bottom:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center
}
.instructions-section {
  padding:2rem;
  background-color:#f5f5f5;
  border-radius:8px;
  margin-top:4rem
}
.instructions-content {
  background-color:#fff;
  padding:1.5rem;
  border-radius:4px;
  box-shadow:0 1px 3px rgba(0,0,0,.1)
}
ol,
ul {
  padding-left:1.5rem;
  margin-bottom:1.5rem
}
li {
  margin-bottom:.5rem
}
.feature-text-container-mobile {
  position:fixed;
  top:13.5vh;
  left:50%;
  transform:translate(-50%);
  width:100%;
  z-index:20;
  max-width:260px
}
@media screen and (max-width:1024px) {
  .png-sequence-container {
    padding-top:40px;
    padding-bottom:40px
  }
  .feature-points-title {
    font-size:75px;
    color:#000;
    line-height:.95;
    letter-spacing:-1.5px;
    text-align:center
  }
  .feature-text-heading {
    font-size:46px;
    font-weight:400;
    line-height:96%;
    letter-spacing:-.92px;
    color:#000
  }
  .feature-text-subheading {
    font-size:20px;
    line-height:130%;
    letter-spacing:-.2px
  }
  .frame-display {
    display:flex
  }
  .feature-points-container {
    bottom:9vw
  }
  .sequence-image {
    position:absolute;
    bottom:41vh;
    height:30%;
    left:0;
    right:0;
    margin:0 auto
  }
}
@media screen and (max-width:768px) {
  .png-sequence-container {
    padding-top:35px;
    padding-bottom:35px
  }
}
@media screen and (max-height:775px) and (orientation:landscape) {
  .feature-points-container {
    bottom:1vw
  }
}
@media screen and (max-width:740px) {
  .sequence-image {
    position:absolute;
    bottom:46vh;
    height:26%;
    left:0;
    right:0;
    margin:0 auto
  }
}
@media screen and (max-width:680px) {
  .png-sequence-container {
    padding-left:16px;
    padding-right:16px
  }
  .feature-points-container {
    grid-template-columns:repeat(1,1fr);
    gap:32px;
    bottom:50px;
    transform:translateY(0);
    padding:0 16px
  }
  .feature-point-header {
    font-size:18px;
    line-height:115%;
    letter-spacing:-.18px;
    margin-bottom:3px
  }
  .feature-point-description {
    font-size:18px;
    line-height:130%;
    letter-spacing:-.18px
  }
}
@media screen and (max-width:600px) {
  .png-sequence-container {
    padding-top:32px;
    padding-bottom:32px
  }
}
@media screen and (max-width:500px) {
  .png-sequence-container {
    padding-top:30px;
    padding-bottom:30px
  }
  .feature-points-title {
    font-size:48px;
    bottom:78vh;
    text-align:center;
    letter-spacing:-.95px
  }
  .sequence-image {
    position:absolute;
    bottom:50vh;
    height:22%;
    left:0;
    right:0;
    margin:0 auto
  }
  .feature-points-container {
    gap:24px;
    bottom:8vh;
    transform:translateY(0)
  }
  .feature-point-description,
  .feature-point-header>h3,
  .feature-point-header>h3>span {
    font-size:14px
  }
  .feature-point-header {
    margin-bottom:1px
  }
  .feature-text-heading {
    font-size:32px;
    line-height:110%;
    letter-spacing:-.64px
  }
  .feature-text-subheading {
    font-size:18px;
    line-height:130%;
    letter-spacing:-.18px
  }
}
@media screen and (max-width:414px) {
  .sequence-image {
    bottom:48vh;
    height:21%
  }
  .feature-points-container {
    bottom:10vh
  }
}
@media screen and (max-width:375px) {
  .feature-points-title {
    font-size:42px;
    bottom:76vh;
    text-align:center;
    letter-spacing:-.85px
  }
  .sequence-image {
    transform-origin:50% 100%;
    left:0;
    right:0;
    margin:0 auto;
    bottom:55vh;
    height:19%
  }
  .feature-points-container {
    grid-gap:16px;
    bottom:6vh
  }
}
.button {
  padding:10px;
  border-radius:77px;
  cursor:pointer;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease;
  text-decoration:none;
  display:inline-block;
  font-size:14px;
  text-align:center;
  line-height:1;
  border:1px solid rgba(250,250,250,.15);
  color:var(--color-tc-white);
  min-width:116px
}
.button:hover {
  border:1px solid rgba(250,250,250,.3)
}
.primary {
  background-color:rgba(250,250,250,.25);
  backdrop-filter:blur(4px)
}
.primary:hover {
  background-color:rgba(250,250,250,.15)
}
.button.dark {
  border:1px solid rgba(0,0,0,.15);
  background:black;
  &.secondary {
    background:transparent;
    color:black
  }
}
@media screen and (max-width:1024px) {
  .button {
    padding:10px 0;
    font-size:15px
  }
}
@media screen and (max-width:600px) {
  .button {
    padding:10px 0;
    font-size:13px;
    min-width:93px
  }
}
.stagger-text-container {
  display:block;
  position:relative
}
.stagger-text-element {
  display:inline-block;
  margin-right:.25em;
  opacity:0;
  will-change:transform,opacity,filter;
  background:inherit;
  -webkit-background-clip:inherit;
  background-clip:inherit;
  color:inherit
}
.stagger-text-element.animate {
  opacity:1;
  transform:translateY(0)
}
.stagger-text-element:last-child {
  margin-right:0
}
.stagger-text-container p {
  margin-bottom:1em
}
.stagger-text-container h1,
.stagger-text-container h2,
.stagger-text-container h3,
.stagger-text-container h4,
.stagger-text-container h5,
.stagger-text-container h6 {
  margin-bottom:.5em;
  line-height:1.2
}
.gradient-text .stagger-text-element {
  background:inherit;
  -webkit-background-clip:inherit;
  background-clip:inherit;
  color:inherit
}
.stagger-text-container.leaving .stagger-text-element {
  opacity:0
}


