@charset "UTF-8";
.lp-header {
    position: sticky;
    top: 0;
    /* background: #fff; */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lp-btn-primary {
    background: #95c11e;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
}

.lp-btn-cta {
    background: #FDD218;
    color: #683C11;
    padding: 0.8rem 1.2rem;
    border-radius: 5px solid #B3DC1C;
    display: inline-block;
    margin-top: 1rem;
}
/* HERO */
.lp-hero {
    position: relative;
    
}



.lp-slider img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.lp-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-radius: 10px;
}

ul.li-cols {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
    height: 660px;
    max-height: fit-content;
}

/* Sections */
.lp-section {
    padding: 4rem 1rem;
}

.lp-section-alt {
    background: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* CTA */
.lp-cta {
    background: #95c11e;
    color: #000;
    text-align: center;
    padding: 3rem 1rem;
}

.lp-mobile-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 999;
}

.lp-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: #95c11e;
    color: #000;
}

.lp-cta-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Trust */
.lp-trust {
    margin-top: 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Map */
.lp-map iframe {
    display: block;
}

details {
  margin-bottom: 1rem;
  &::details-content {
    opacity: 0;
    block-size: 0;
    overflow-y: clip;
    transition: content-visibility 1s allow-discrete, opacity 1s, block-size 1s;
  }
  &[open]::details-content {
    opacity: 1;
    block-size: auto;
  }
}

details > summary::before{
    display: inline-block;
    content: "+";
    line-height: 0;
    font-weight: 900;
    font-size: 2rem;
    background: #003e03;
    border-radius: 0 10px 10px 0; 
    color: #fff;
    padding: 1.4rem .78rem 1.8rem .78rem;
    position: relative;
    left: -8px;
    top: 0;
    height: 90%;
    width: 50px;
}

details[open] > summary::before {
    content: "—";
    padding-right:.68rem;
}


::details-content {
  margin-top: -15px;
  border: 1px solid #003e03;
  border-top: 0;
  padding: 5px;
  padding-top: 20px;
}

details > summary {
  list-style: none;
  background-color: #95c11e;
  Color: #ffff;
  font-size: 1.3rem;
  letter-spacing: .025rem;
}

summary::marker, summary::-webkit-details-marker {
  color: #003e03;
  display: none;
}

summary {
  border: 1px solid #003e03;
  padding: 0.5rem;
  margin-top: .5rem;
  border-radius: 5px;
  margin-bottom: .5rem;
  
  & > h3 {
    display: inline!important;
    font-size: 1.25rem;
    color: #003e03;
  }
}