#page {
    padding-top: 0px;
}

/* HERO */

.page-hero {
    position: relative;
    padding: 16rem 0 4rem;
    background-color: var(--primaryColor);
    border: 10px solid white;
    background-size: 40rem;
}
.page-hero-contact {
    background-image: url(/wp-content/uploads/2025/11/d794e43f5c0717c95204739a1adc9b3e8d40e5e7-scaled-1.png);
}
.page-hero-contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondaryColor);
    opacity: 0.95;
    z-index: 0;
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    color: white;
    font-size: 3.5rem;
    padding: 0 5rem 0 0;
}

/* CONTENT */

section {
    padding: 5rem 0;
}

section.page-section {
    padding: 3rem 0;
}

#page-content p {
    padding-bottom: 1rem;
}

#page-content .content h3, #page-content .content h4 {
    padding-bottom: 1.5rem;
}

#page-content .content {
    max-width: 60rem;
    margin:0 auto;
}

#page-content .content ol, #page-content .content ul {
    list-style-position: outside;
    padding-left: 2rem;
}

#page-content a {
    color: var(--primaryColor);
}

.content p {
    padding-bottom: 1.5rem;
}
.content p:last-of-type {
    padding-bottom: 0;
}
.content p a {
    text-decoration: underline;
}

.content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    gap: 0.5rem;
    list-style-position: inside;
    padding: 0;
}
.content ul li:first-child {
    border-top: none;
    padding-top: 0;
}
.content ul li {
    border-top: 1px solid rgba(14, 52, 75, 0.10);
    padding-top: 0.75rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1rem;
}
.content ul li:before {
    content: url(/wp-content/themes/lake/assets/img/icons/bullet-arrow.svg);
    margin-top: 5px;
}

.content h2, .content h3, .content h4 {
    padding-bottom: 1.5rem;
}

.content h4 {
    font-family: 'Axiforma', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.1px;
}
.wp-block-image :where(figcaption) {
    margin-bottom: 3em;
    margin-top: 1rem;
    border-left: 3px solid var(--primaryColor);
    color: var(--primaryColor);
    font-size: 12px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.06px;
    padding-left: 0.75rem;
}

/* ABOUT */
.about-nav-container {
    position: sticky;
    top: 2rem;
    height: fit-content;
}
.about-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 2px solid var(--primaryColor);
    padding-left: 1rem;
}
.about-nav {
    border-radius: 4px;
    border: 1px solid var(--tertiaryColor);
    background: var(--tertiaryColor);
    display: flex;
    padding: 8px 10px;
    align-items: center;
    gap: 24px;
    justify-content: center;
    transition: 0.2s all;
    text-align: center;
    width: 20rem;
}
.about-nav.active, .about-nav:hover {
    border-color: var(--primaryColor);
    background: var(--primaryColor);
    color: white !important;
}


/* CAREERS */
.career-item {
    background: #EAEDE9;
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}
.career-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primaryColor);
}
.career-item p {
    border-left: 2px solid black;
    padding: 4px 0 0 1.25rem !important;
    line-height: 112%;
    margin-bottom: -2px;
}
.career-item a {
    color: white !important;
}


/* MISC */

img.icon {
    height: 40px;
    width: 40px;
    display: block;
}
img.icon-big {
    height: 100px;
    width: 100px;
    display: block;
    border-radius: 50%;
}
.section-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
}

/* CAROUSEL */

.card {
    min-height: 21.2rem;
    display: flex;
    padding: 3.25rem 4.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    border-radius: 5rem 0.75rem;
    border: 2px solid #F8E8ED;
    background: #F3EAED;
}
.slick-left-active .card, .slick-current .card {
    background: white;
}

.carousel .slick-list {
    padding-left: 0 !important;
}

.carousel .slick-slide:not(:last-child) {
    margin-right: 2rem;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    list-style: none;
}

ul.slick-dots li button {
    background: white;
    border: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
}

ul.slick-dots li.slick-active button {
    background: var(--primaryColor);
}

.slick-arrow {
    background: var(--primaryColor);
    color: white;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 25px);
    z-index: 1;
    cursor: pointer;
    transition: 0.2s all;
}

.slick-arrow:hover {
    background: var(--secondaryColor)
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-disabled {
    opacity: 0;
    pointer-events:none;
}

.slick-list, .slick-track {
    border-radius: 20px;
}

/* GALLERY */

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1.25rem;
    justify-content: center;
}

.gallery-item {
    flex: 23.7% 1 1;
    aspect-ratio: 7 / 6;
    cursor: pointer;
    position: relative;
    min-width: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3131319e;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s all;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--primaryColor);
}

/* Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: #313131cf;
    align-items: center;
    opacity: 0;
    transition: 0.3s all;
    z-index: -1;
    pointer-events: none;
}
.modal.show {
    opacity: 1;
    z-index: 1000;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    width: 80%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 3rem 2rem 2rem;
    border-radius: 15px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.5;
    transition: 0.2s all;
    cursor: pointer;
    color: black;
}
.btn-close:hover {
    opacity: 1;
}

#modal-image {
    max-height: 90vh;
    width: auto;
    object-fit: cover;
    margin: 0 auto;
}

/* Modal Navigation buttons */
.prev:not(.page-numbers), .next:not(.page-numbers) {
    cursor: pointer;
    position: absolute;
    top: calc(50% - 15px);
    user-select: none;
    -webkit-user-select: none;
    background: var(--primaryColor);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: 0.2s all;
}
.prev:hover, .next:hover {
    filter:brightness(1.2);
}
.prev img, .next img {
    height: 30px;
}
.prev { left: 15px; }
.next { right: 15px; }

.close {
    position: absolute;
    top: 55px;
    right: 25px;
    color: #212121;
    font-weight: 300;
    cursor: pointer;
    background: #EFEDED;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 48px;
    text-align: center;
    transition: 0.2s all;
}
.close img {
    height: 17px;
    width: auto;
    max-width: 100%;
    border-radius: 0;
}
.close:hover {
    background: var(--secondaryColor);
}

/* NEWSLETTER */

form.newsletter {
    display: flex;
    gap: 5px;
}

form.newsletter input {
    padding: 0.75rem;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 1.1rem;
    width: 350px;
    outline: none;
}

small.newsletter-disclaimer {
    font-size: 0.7rem;
    max-width: 30rem;
    text-align: center;
}


/* ACCORDIONS */

.accordions {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.25rem;
    min-width: 60%;
}

.accordion {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #EFEDED;
    padding: 0 0 1.25rem;
    gap: 1.25rem;
    cursor: pointer;
}
.accordion:last-of-type {
    border-bottom: none;
}
.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s all;
    gap: 20px;
}
.accordion-title h6 {
    display: flex;
    gap: 24px;
    color: #181B20;
    font-family: 'Axiforma';
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.085px;
    text-transform: uppercase;
}
.accordion-title img {
    height: 10px;
    transform: rotate(180deg);
    filter: hue-rotate(45deg) brightness(0.5);
    transition: 0.15s all;
}
.accordion.active .accordion-title img {
    transform: rotate(0deg);
}
.accordion-title:hover, .accordion.active .accordion-title {
    color: var(--primaryColor);
}
.accordion-content {
    display: none;
}
.accordion-content p {
    font-size: 1.1rem;
    line-height: 170%;
}
.accordion-content p a {
    text-decoration: underline;
}
.accordion-content ul li {
    font-size: 1.1rem;
    line-height: 1.5rem;
}

/* Gravity Forms */

.gform_wrapper form {
    background: white;
    border-radius: 14px;
    padding: 3rem;
    max-width: 90%;
    margin: 0 auto;
}

.gform_body p {
    padding: 0;
}

body .gform_wrapper.gravity-theme .gfield_label, body .gform_wrapper.gravity-theme .ginput_complex label {
    margin-bottom: 0;
    color: #00000078;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gform_wrapper.gravity-theme .ginput_container_address span {
    margin-top: 1rem;
}

.gform_wrapper.gravity-theme .ginput_container_address span:first-child {
    margin-top: 0;
}

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
    font-size: 17px;
    padding: 10px 0px !important;
    background: white;
    width: 100%;
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid black;
    background: #FFF;
    -webkit-appearance: none;
    color: black;
    font-weight: 400;
    outline: none;
}

.gfield--type-textarea {
    margin-top: 3rem;
}

.gform_wrapper.gravity-theme textarea {
    resize: vertical;
    border-radius: 1px;
}

.gform_wrapper.gravity-theme .gfield input[type="checkbox"], .gform_wrapper.gravity-theme .gfield input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid silver;
    height: 20px;
    width: 20px;
    display: inline-block;
    margin: 2px 8px -3px 0;
    background: white;
}

.gform_wrapper.gravity-theme .gfield input[type="checkbox"]::before {
    content: "";
    width: 19px;
    height: 18px;
    transition: transform 0.3s ease-in-out;
    display: block;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="white" stroke-width="2" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 2;
    opacity: 0;;
}  
.gform_wrapper.gravity-theme .gfield input[type="checkbox"]:checked::before {
    opacity: 1;
}
.gform_wrapper.gravity-theme .gfield input[type="checkbox"]:checked {
    background: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.gform_footer input.gform_button {
    background: var(--secondaryColor);
    border: 0;
    color: white;
    display: inline-block;
    margin: 0 auto;
    padding: 13px 25px 11px;
    border-radius: 1px;
    cursor: pointer;
    transition: 0.4s all;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding-right: 3rem;
    margin: 20px 0 10px;
    border-radius: 7px;
}
.gform_button:hover {
    filter:brightness(110%);
}

.gform_wrapper .gform_footer {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input, .gform_wrapper.gravity-theme .gform_page_footer button, .gform_wrapper.gravity-theme .gform_page_footer input {
    margin: 0;
    border: none;
    font-size: 1rem;
    padding: 17px 25px 15px;
}

.gform_wrapper.gravity-theme #field_submit, .gform_wrapper.gravity-theme .gform_footer {
	display: block !important;
}
  
.gform_required_legend {
    display:none;
}

.recaptcha-disclaimer {
    font-size: 10px !important;
    font-style: italic;
    color: #aaa8a8 !important;
    margin-top: 10px;
    line-height: 14px !important;
    padding: 0 !important;
}