/*
Theme Name: Hopreneur Web Services
Theme URI: https://example.com/my-theme
Text Domain: Hopreneur
Author: Muhammad Tariq
Author URI: https://example.com
Description: A Theme for the Clarity Through Community Organization
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Clarity
Tags: custom, clean, minimal, responsive
*/

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --charcoal: #1c1c1c;
    --gray-dark: #2a2a2a;
    --gray-mid: #4a4a4a;
    --gray: #7a7a7a;
    --silver: #b0b0b0;
    --silver-light: #cccccc;
    --white: #e8e8e8;
    --accent: #c0c0c0;
    --border-onhover: 2px solid hsl(200, 56%, 19%);
  }

  a{
    cursor: pointer;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'Oswald', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }
 

 
  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    border-bottom: 1px solid #1e1e1e;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(6px);
  }
 
 
  .nav-logo span{
    font-size: 1rem;
    font-weight:400;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    animation:flip 1s ease-in;
    animation-delay: calc(.2s * var(--i));
  }

  @keyframes flip{
    0%, 40%{
      transform: rotateY(360deg);
      font-weight:700;
      font-size:1.5rem;
    }
   
  }
 
  .nav-logo span {
    color: var(--silver);
  }
 
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
 
  .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
  }
 
.nav-links a:hover { color: var(--silver-light); }
.links-home{

    margin-top: 10vh;
    
  }

  .nav-links.home{
    display: flex;
    flex-wrap: wrap;
  }
  .nav-links.home a{
    font-size:1rem;
  }

   .nav-links.home li{
    width:min-content;
    background-color:#1f1d1b;
    padding: 10px;
    border-radius: 2vw;
    corner-shape: bevel;
  }


  form.form-nav input{
    background-color: #111111;
    padding: 1vw;
    font-size: 1rem;
    color: #e8e8e8;
    caret-color: silver;
    outline: none;
    border: none;
  }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--gray-mid);
    color: var(--silver);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 400;
  }

  .close{
    background: transparent;
    border: 1px solid var(--gray-mid);
    color: var(--silver);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 400;
    float:right;

  }
 
  .nav-cta:hover {
    border: var(--border-onhover);
    color: var(--white);
    background: rgba(192,192,192,0.06);
  }
 
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
  }
 
  .hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(80,80,80,0.04) 100%);
    pointer-events: none;
  }
 
  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
 
  .hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gray-mid);
  }
 
  .hero h1 {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 820px;
    margin-bottom: 36px;
  }
 
  .hero h1 em {
    font-style: normal;
    color: var(--gray);
  }
 
  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--gray);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 56px;
  }
 
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }
 
  .btn-primary {
    background: var(--silver-light);
    color: var(--black);
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 38px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }
 
  .btn-primary:hover {
    background: var(--white);
    transform: translateY(-1px);
  }
 
  .btn-secondary {
    color: var(--gray);
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
  }
 
  .btn-secondary:hover { color: var(--silver-light); }
 
  .btn-secondary::after {
    content: '→';
    font-size: 1rem;
  }
 
  /* MARQUEE */
  .marquee-section {
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    background: var(--charcoal);
    padding: 18px 0;
    overflow: hidden;
  }
 
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
  }
 
  .marquee-item {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-mid);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
 
  .marquee-item::after {
    content: '◆';
    color: var(--gray-dark);
    font-size: 0.5rem;
  }
 
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
 
  /* SERVICES */
  .services {
    padding: 120px 60px;
  }
 
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
 
  .section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gray-dark);
  }
 
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
 
  .service-card {
    background: var(--charcoal);
    padding: 48px 40px;
    border: 1px solid #1e1e1e;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
 
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-mid), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
 
  .service-card:hover {
    background: #202020;
    transform: translateY(-3px);
  }
 
  .service-card:hover::before { opacity: 1; }
 
  .service-num {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gray-dark);
    margin-bottom: 28px;
  }
 
  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    filter: grayscale(1);
    opacity: 0.6;
  }
 
  .service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--silver-light);
    margin-bottom: 16px;
  }
 
  .service-card p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
 
  /* ABOUT */
  .about {
    padding: 120px 60px;
    border-top: 1px solid #1a1a1a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
 
  .about-left h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 30px;
    color: var(--white);
  }
 
  .about-left h2 span {
    color: var(--gray-mid);
  }
 
  .about-right p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
 
  .stats-row {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #1e1e1e;
  }
 
  .stat-item {}
 
  .stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--silver);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
  }
 
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-mid);
  }
 
  /* PLATFORMS */
  .platforms {
    padding: 100px 60px;
    border-top: 1px solid #1a1a1a;
    background: var(--charcoal);
  }
 
  .platforms h2 {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
 
  .platforms h2::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gray-dark);
  }
 
  .platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
 
  .platform-tag {
    background: var(--gray-dark);
    border: 1px solid #2e2e2e;
    padding: 14px 28px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 500;
    transition: all 0.2s;
    cursor: default;
  }
 
  .platform-tag:hover {
    background: #333;
    color: var(--white);
    border-color: var(--gray-mid);
  }
 
  /* PROCESS */
  .process {
    padding: 120px 60px;
    border-top: 1px solid #1a1a1a;
  }
 
  .process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
  }
 
  .process-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    max-width: 480px;
    line-height: 1.1;
  }
 
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #1e1e1e;
  }
 
  .step {
    padding: 48px 36px;
    border-right: 1px solid #3a2020;
    position: relative;
    transition:background-color 1s ease-in;
  }

  

.step.border-active::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  background: linear-gradient(45deg, red, blue, green, yellow);
  background-size: 300% 300%;
  animation: move 3s linear infinite;
  z-index: -1;
  animation: reveal 0.5s ease-in;
}

@keyframes reveal{
  0%{
    opacity: 0;

  }

  100%{
    opacity: 1;
  }
}

@keyframes move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
 
 
  .step:last-child { border-right: none; }
 
  .step-num {
    font-size: 4rem;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
  }
 
  .step h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 14px;
  }
 
  .step p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    letter-spacing: 0.03em;
  }
 
  /* CTA SECTION */
  .cta-section {
    padding: 120px 60px;
    border-top: 1px solid #1a1a1a;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .cta-section::before {
    content: 'START';
    position: absolute;
    font-size: 18vw;
    font-weight: 700;
    color: #141414;
    letter-spacing: -0.05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
  }
 
  .cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
 
  .cta-section p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.08em;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }
 
  .cta-section .btn-primary {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    padding: 20px 52px;
  }
 
  .cta-email {
    margin-top: 28px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--gray-mid);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
 
  /* FOOTER */

  .hf * { box-sizing: border-box; font-family: 'Oswald', sans-serif; }

  .hf {
    background: #0a0a0a;
    color: #e8e8e8;
    border-top: 1px solid #1a1a1a;
    width: 100%;
  }

  .hf-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 72px 60px 56px;
    border-bottom: 1px solid #1a1a1a;
  }

  .hf-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8e8e8;
    margin-bottom: 14px;
  }

  .hf-brand-name span { color: #4a4a4a; }

  .hf-brand-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: #7a7a7a;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    max-width: 240px;
  }

  .hf-socials {
    display: flex;
    gap: 8px;
  }

  .hf-social {
    width: 34px;
    height: 34px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
  }

  .hf-social:hover {
    border-color: #7a7a7a;
    color: #cccccc;
  }

  .hf-col-title {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hf-col-title::before {
    content: '';
    width: 16px;
    height: 1px;
    background: #2a2a2a;
  }

  .hf-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hf-links li a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a4a4a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #141414;
    transition: all 0.2s;
  }

  .hf-links li:last-child a { border-bottom: none; }

  .hf-links li a:hover { color: #cccccc; padding-left: 4px; }

  .hf-links li a i {
    font-size: 14px;
    color: #2a2a2a;
    transition: color 0.2s;
  }

  .hf-links li a:hover i { color: #7a7a7a; }

  .hf-contact-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 0;
    border-bottom: 1px solid #141414;
  }

  .hf-contact-item:last-child { border-bottom: none; }

  .hf-contact-label {
    font-size: 0.56rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #2a2a2a;
  }

  .hf-contact-val {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #7a7a7a;
    text-decoration: none;
    transition: color 0.2s;
  }

  a.hf-contact-val:hover { color: #cccccc; }

  .hf-mid {
    padding: 40px 60px;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: #0d0d0d;
  }

  .hf-mid-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hf-mid-label {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #2a2a2a;
  }

  .hf-mid-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #7a7a7a;
    text-transform: uppercase;
  }

  .hf-newsletter {
    display: flex;
    gap: 0;
    flex-shrink: 0;
  }


  .hf-bottom {
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hf-copy {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #2a2a2a;
  }

  .hf-badges {
    display: flex;
    gap: 8px;
  }

  .hf-badge {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2a2a2a;
    border: 1px solid #1a1a1a;
    padding: 5px 12px;
  }

  .hf-legal-links {
    display: flex;
    gap: 24px;
  }

  .hf-legal-links a {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.2s;
  }

  .hf-legal-links a:hover { color: #7a7a7a; }


 
  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

/* Working on this right now make the background blur using Javascript 
and also use the post_type to make this */

.card-popup{
    position:fixed;
    width:50%;
    top:50%;
    left:50%;
    box-sizing: border-box;
    overflow:hidden;
    border:var(--border-onhover);
    border-radius:1vw;
    max-height: 80vh;
    z-index: 10001;
    background-color: black;
    opacity: 0;
    visibility: hidden;
}

@media (max-width:800px){
  .card-popup{
    width:85%;
  }
}
.track{
  display: flex;
  width:100%;
  height:100%;
}

.card-steps {
    flex : 0 0 100%;
    height : 100%;



}


  .card-content > *{
    margin-top:2vh;
    margin-bottom: 2vh;
    
  }

  main.blur{
    filter:blur(5px);

  }

  .alignwide{
    width:100%;
  }

/** Mobile Menu Area **/
.mobile-menu{
  display: none;
  position:sticky;
  top:0;
  left:0;
  z-index: 9999;
}

#checkbox {
  display: none;
}

.toggle-box{
  display: flex;
  padding:2vw;
  align-items: center;
  background-color:#000000;
}


.toggle {
  margin-left:auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: .5s;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: var(--gray); 
  border-radius: 4px;
}

#bar2 {
  transition-duration: .8s;
}

#bar1,#bar3 {
  width: 70%;
}

#checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: .5s;
}

#checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: .5s;
}

#checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: .5s;
}

#checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}

#checkbox:checked + .toggle {
  transition-duration: .5s;
  transform: rotate(180deg);
}

.mobile-links{
  box-sizing: border-box;

}

.mobile-links ul{
  background-color: black;
  list-style-type: none;
  margin-left:auto;
  display: none;
  font-size:1.5rem;

}

.mobile-links ul.expand{
  display: block;
  width:100%;
  height:100vh;
  animation: expand 1s ease-in;
}


@keyframes expand {
  0%{
    height:0;
    opacity: 0;

  }
  25%{
    height: 25vh;
    opacity:0;
  }

  50%{
    height:50vh;
    opacity: 0;
  }
  100%{
    height:100vh;
    opacity: 1;
  }

  
}



.mobile-links a{
  color:white;
}

.mobile-links li{
  text-align: right;
  border-bottom:1px solid var(--gray-mid);
}

.mobile-links *{
  padding:5vw;
  text-decoration: none;
}

.mobile-links button{
  margin-top:2vh;
  float: right;
}




 
  /* MOBILE */
  @media (max-width: 800px) {
    .mobile-menu{
      display: block;
    }
     nav { display: none;}
    .hero { padding: 10px 24px 60px; }
    .services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
    .process { padding: 80px 24px; }
    .process-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .process-steps { grid-template-columns: 1fr; }
    .platforms { padding: 80px 24px; }
    .cta-section { padding: 80px 24px; }
    .hf-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 40px; }
  }

  #mc-embedded-subscribe{
    background: var(--silver-light);
    border: 1px solid var(--silver-light);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;

}

.input-area{
  flex:3;

}

.input-area div *{
  margin-top:1vh;
  margin-bottom:1vh;
}


.email-input{
    background: var(--dark);
    border: 1px solid var(--gray-dark);
    border-right: none;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    padding: 14px 20px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.optionalParent{
  flex:1;
}


  

  #mc_embed_signup{
    font-family:inherit;
    width: 80vw;
    margin:auto;
    padding:2vw;
  
  }

  #mc_embed_signup h2{
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e8e8e8;
    margin-bottom: 14px;

  }

  label[for='mce-EMAIL']{
    font-size:1 rem;
  }

  .indicates-required{
    display: none;
  }
  #mc_embed_signup_scroll{
    display: flex;
    align-items: center;
    gap:2vw;

  }

  @media (max-width: 800px) {
    #mc_embed_signup_scroll{
      display: block;
    }
    
  }



.card-head{
  background: var(--color-background-primary); 
  border: 0.5px solid var(--color-border-tertiary); 
  border-radius: var(--border-radius-lg); 
  padding: 2rem 2.25rem; 
  max-width: 640px; 
  margin: 1rem auto;
}

.card-meta{
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 1.5rem; 
  justify-content:space-between;
}

.card-bottom{
  width:100%;
  border-top: 0.5px solid var(--color-border-tertiary); 
  padding-top: 1.25rem; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
      
}

.card-bottom > p{
  flex: 0 0 100%;

}

.next-slide{
  margin-top:2vw;
  width:100%;
  padding:0.5vw;
  text-align: center;
}

.next-slide button{
  padding:0.5vw 4vw;
}


.liquid {
  background: linear-gradient(#1f202b 0 0) no-repeat calc(200% - var(--p, 0%))
    100% / 200% var(--p, 0.2em);
  transition: 0.3s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
}

.liquid:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
}

