/*!
Theme Name: Lebrun Consulting
Theme URI: https://joselcanlas.com/
Author: Josel Canlas
Author URI: https://joselcanlas.com/
Description: Custom Theme for the Lebrun Consulting website.
Version: 1.3.2
Tested up to: 6.9
Requires PHP: 8.3.1
Text Domain: lebrun-consulting
*/

/* Begin Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End Reset CSS */

/* Base Elements */
:root {
    --max-content-width: 192rem;
    --margin: 2rem;
    --header-nav-height: 11rem;
    --space-after: 6rem;
    --off-black: #264653;
    --off-white: #EDF6F9;
    --white: #FFF;
    --primary1: #2A9D8F;
    --complimentary1: #00C5FB;
    --accent: #ED5D64;
    --stars: #EFD647;
    --hover: #006666;

    scroll-behavior: smooth;
}
@media all and (min-width: 769px) {
    :root {
        --margin: 4rem;
    }
}
@media all and (min-width: 1280px) {
    :root {
        --margin: 6rem;
        --space-after: 8rem;
    }
}
html {
    font-family: "quicksand", Helvetica, Arial, sans-serif;
    font-size: 62.5%;
    background-color: var(--off-white);
    color: var(--off-black);
    overflow-x: hidden;
}
body {
    font-size: 1.6rem;
    font-weight: 400;
    overflow-x: hidden;
}
body.active::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.skip-link {
    opacity: 0;
}

/* Header Nav */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 5;
    background-color: var(--off-black);
}
.header-nav-container {
    box-sizing: border-box;
    width: 100%;
    max-width: var(--max-content-width);
    height: var(--header-nav-height);
    padding: 1rem var(--margin);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
nav .logo {
    height: 100%;
    max-width: 70%;
}
nav .logo figure {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav .logo img {
    height: 90%;
    width: 90%;
    object-fit: contain;
}
footer .logo {
    display: flex;
    justify-content: center;
}
footer .logo img {
    width: 70%;
    object-fit: contain;
}

/* Header Nav Menu */
/* Ham Menu (Mobile) */
.ham-icon {
    width: 4rem;
    height: 4rem;
    position: relative;
    cursor: pointer;
    z-index: 999;
    background-color: unset;
    border: none;
}
.ham-icon .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.3rem;
    border-radius: 5rem;
    background-color: var(--off-white);
    transform-origin: center;
    transition: all 0.3s ease;
}
.ham-icon .line:nth-child(1) {
    transform: translateY(-0.8rem);
}
.ham-icon .line:nth-child(2) {
    transform: translateY(0.8rem);
}
.ham-icon.active .line:nth-child(1) {
    transform: rotate(45deg);
}
.ham-icon.active .line:nth-child(2) {
    transform: rotate(-45deg);
}


/* header nav menu */
.header-nav-menu {
    height: 100vh;
    min-width: 33vw;
    padding: 0 var(--margin);
    padding-top: var(--header-nav-height);
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100vw);
    transition: all ease 0.25s;
    z-index: 3;
    overflow-y: auto;
    background-color: var(--off-black);
}
.header-nav-menu a {
    font-size: 2rem;
    color: var(--off-white);
    text-decoration: none;
}
.header-nav-menu.active {
    transform: translateX(0);
}
.nav-cart-icon {
    width: 3rem;
}
@media all and (min-width: 900px) {
    .ham-icon {
        display: none;
    }
    .header-nav-menu {
        height: unset;
        padding: unset;
        padding-top: unset;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: end;
        gap: 1rem;
        position: unset;
        transform: unset;
        transition: all ease 0.25s;
        z-index: 3;
        overflow-y: unset;
    }
}

/* Hero Banner */
.hero-section {
    position: relative;
    width: 100%;
    max-width: var(--max-content-width);
    margin: calc(var(--header-nav-height) + var(--space-after)) 0 var(--space-after);
    padding: 0 var(--margin);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

/* Background Stars */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20rem;
    aspect-ratio: 1;
    width: 50rem;
    background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
    opacity: 0.2;
    z-index: -1;
}
.hero-section.heading-only::before {
    display: none;
}
.faq-section::after {
    content: '';
    position: absolute;
    top: -185%;
    aspect-ratio: 1;
    width: 100rem;
    background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
    opacity: 0.2;
    z-index: -1;
}
.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    aspect-ratio: 1;
    width: 100rem;
    background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
    opacity: 0.2;
    z-index: -1;
}
.lc_bookings {
    position: relative;
}
.wpcf7-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    aspect-ratio: 1;
    width: 50rem;
    background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
    opacity: 0.2;
    z-index: -1;
}
.services-section {
    position: relative;
}
.services-section::before {
    content: '';
    position: absolute;
    right: -100%;
    bottom: -50rem;
    aspect-ratio: 1;
    width: 100rem;
    background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
    opacity: 0.2;
    z-index: -1;
}
@media all and (min-width: 485px) {
    .carousel-container::after {
        content: '';
        position: absolute;
        left: -25%;
        aspect-ratio: 1;
        width: 100rem;
        background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
        opacity: 0.2;
        z-index: -1;
    }
    .lc_bookings::after {
        content: '';
        position: absolute;
        bottom: -25%;
        aspect-ratio: 1;
        width: 100rem;
        background: url('https://lebrunconsulting.com/wp-content/uploads/2026/02/Lebrun-Consulting-Logo-bg.svg') no-repeat center / contain;
        opacity: 0.2;
        z-index: -1;
    }
    .lc_bookings.confirmation::after {
        bottom: -50%;
        right: -50%;
    }
    .wpcf7-form::before {
        width: 100rem;
        top: -25%;
        left: -50%;
    }
    .services-section::before {
        right: -75%;
    }
}
@media all and (min-width: 585px) {
    .carousel-container::after {
        left: 0;
    }
    .services-section::before {
        right: -50%;
    }
}
@media all and (min-width: 769px) {
    .hero-section::before {
        top: -38rem;
        left: calc(-30% + var(--margin));
        width: 100rem;
    }
    .carousel-container::after {
        left: 25%;
    }
    .faq-section::after {
        top: -125%;
        right: -25%;
        width: 100rem;
    }
    .testimonial-section::after {
        bottom: -25%;
        right: -25%;
    }
    .lc_bookings::after {
        bottom: -25%;
        right: -50%;
    }
    .lc_bookings.confirmation::after {
        bottom: -50%;
        right: -50%;
    }
    .wpcf7-form::before {
        top: -25%;
        left: -50%;
    }
    .services-section::before {
        right: -25%;
    }
}
@media all and (min-width: 970px) {
    .hero-section::before {
        top: -50rem;
        width: 125rem;
    }
    .carousel-container::after {
        width: 125rem;
        left: 20%;
    }
    .faq-section::after {
        top: -170%;
        right: -25%;
        width: 125rem;
    }
    .testimonial-section::after {
        bottom: -35%;
        width: 125rem;
    }
    .lc_bookings::after {
        bottom: -35%;
        right: -50%;
        width: 125rem;
    }
    .lc_bookings.review::after {
        bottom: -70%;
        right: -40vw;
    }
    .lc_bookings.confirmation::after {
        bottom: -70%;
        right: -70%;
    }
    .wpcf7-form::before {
        width: 125rem;
    }
    .services-section::before {
        right: -25%;
        bottom: -62.5rem;
        width: 125rem;
    }
}
@media all and (min-width: 1280px) {
    .hero-section::before {
        top: -63rem;
        width: 150rem;
    }
    .carousel-container::after {
        width: 150rem;
        left: 20%;
    }
    .testimonial-section::after {
        bottom: -75rem;
        width: 150rem;
    }
    .lc_bookings::after {
        bottom: -50%;
        right: -75%;
        width: 150rem;
    }
    .lc_bookings.review::after {
        bottom: -80%;
        right: -70vw;
    }
    .lc_bookings.confirmation::after {
        bottom: -100%;
        right: -100%;
    }
    .wpcf7-form::before {
        width: 150rem;
    }
    .services-section::before {
        right: -25%;
        bottom: -75rem;
        width: 150rem;
    }
}
@media all and (min-width: 1500px) {
    .hero-section::before {
        top: -75rem;
        width: 175rem;
    }
    .carousel-container::after {
        width: 175rem;
        left: 30%;
    }
    .testimonial-section::after {
        bottom: -88rem;
        width: 175rem;
    }
    .lc_bookings::after {
        bottom: -50%;
        right: -100%;
        width: 175rem;
    }
    .wpcf7-form::before {
        top: -25%;
        left: -25%;
        width: 175rem;
    }
    .services-section::before {
        right: -25%;
        bottom: -88rem;
        width: 175rem;
    }
}

.hero-section.no-space-after {
    margin: calc(var(--header-nav-height) + var(--space-after)) 0 0;
}
.hero-text {
    width: 100%;
}
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-section h1 {
    margin-bottom: 2rem;
}
.hero-section h1, .hero-section p {
    text-align: center;
}

/* Hero Banner Image */
.hero-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img img {
    aspect-ratio: 1;
    width: 30rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0% 20%;
}

/* Slogan Points */
.slogan-points {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style-type: none;
    font-weight: 800;
}
.slogan-points li {
    margin: 0;
}
.slogan-points .slogan-dot {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 100rem;
    background-color: var(--complimentary1);
}
.slogan-points li::before {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 0.5rem;
    border-radius: 50%;
    background-color: var(--complimentary1);
}
.hero-section.heading-only {
    margin: calc(var(--header-nav-height) + 2rem) 0 2rem;
    align-items: center;
    justify-content: center;
}
@media all and (min-width: 769px) {
    .hero-section {
        align-items: start;
        flex-direction: row-reverse;
    }
    .hero-section.no-img {
        flex-direction: unset;
        align-items: start;
    }
    .hero-text {
        width: unset;
        align-items: start;
    }
    .hero-section.no-img .hero-text {
        width: 66%;
    }
    .hero-img-container {
        width: unset;
    }
    .hero-img-container {
        justify-content: right;
    }
    .hero-img img {
        max-width: 30rem;
        max-height: unset;
    }
    .hero-section h1, .hero-section p {
        text-align: left;
    }
}

/* Footer */
footer {
    padding: 2rem var(--margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--off-black);
}
footer h3 {
    font-weight: 600;
}
footer a {
    color: var(--off-white);
    text-decoration: none;
}
footer .icon-btn .bxl, footer .icon-btn .bx {
    color: white;
    font-size: 2.5rem;
}
footer .copyright {
    font-size: 1.6rem;
    text-align: center;
    color: var(--off-white);
}
.footer-container {
    box-sizing: border-box;
    width: 100%;
    max-width: var(--max-content-width);
    color: var(--off-white);
}
.footer-container section {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-contact p {
    margin: 0;
}
.footer-container section.footer-logo {
    display: none;
    max-width: unset;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media all and (min-width: 876px) {
    .footer-container {
        justify-content: space-evenly;
    }
    .footer-container section {
        width: 33%;
        max-width: 30rem;
        display: block;
    }
    .footer-container section.footer-logo {
        display: block;
    }
}
@media all and (min-width: 485px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        flex-direction: unset;
    }
}

/* Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.section {
    width: 100%;
    max-width: var(--max-content-width);
    padding: 0 var(--margin);
    margin-bottom: var(--space-after);
}
.col-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media all and (min-width: 769px) {
    .col-1 {
        display: block;
        width: 50%;
    }
    .col-2 {
        width: 33.33%;
    }
}
.section-img img {
    width: 100%;
    height: 27.3rem;
    object-fit: cover;
    object-position: center;
    margin: 1rem 0;
    border-radius: 1.5rem;
}
.about-1 img {
    object-position: 0 30%;
}
.about-2 img {
    object-position: 0 80%;
}
@media all and (min-width: 635px) {
    .about-2 img {
        object-position: 0 70%;
    }
}
@media all and (min-width: 769px) {
    .about-2 img {
        object-position: 0 80%;
    }
}

/* An image separator */
.logo-separator {
    width: 100%;
    height: 8rem;
    padding: 2rem 0;
    margin: var(--space-after) 0;
    border-top: 0.2rem solid var(--off-black);
    border-bottom: 0.2rem solid var(--off-black);

    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-separator img {
    height: 100%;
    object-fit: contain;
}

/* Home */
/* UL Section */
.ul-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Slogan Section */
.slogan-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.slogan-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.slogan-description .bx {
    font-size: 7rem;
    color: var(--complimentary1);
}
@media all and (min-width: 425px) {
    .slogan-description {
        flex: 0 0 25%;
        min-width: 30rem;
    }
}

/* Why Partner with Me Section */
.why-partner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media all and (min-width: 769px) {
    .why-partner-section * {
        max-width: calc(75% + 4rem);
    }
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--margin);
}
.carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
.carousel-link-container {
    color: var(--off-black);
    text-decoration: none;
}
.carousel-wrapper {
    aspect-ratio: 1;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    scroll-behavior: smooth;
    transition: filter 0.1s ease;
}
.carousel-wrapper.in-motion {
    filter: blur(2.5px);
}
.carousel-slide {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 2rem;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #CEF4FF;
    text-align: center;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.client-name {
    margin: 0;
}
.client-location {
    margin: 0;
}
.stars {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    color: var(--stars);
}
.stars .rating {
    font-size: 0;
    line-height: 0;
}
.carousel-btn {
    display: none;
}
@media all and (min-width: 485px) {
    .carousel-slide {
        border-radius: 50%;
    }
}
@media all and (min-width: 990px) {
    .carousel-wrapper {
        gap: 2rem;
        aspect-ratio: unset;
        flex-direction: row;
        pointer-events: none;
        overflow-x: scroll;
    }
    .carousel-wrapper::-webkit-scrollbar, .carousel-wrapper::-webkit-scrollbar-track, .carousel-wrapper::-webkit-scrollbar-thumb, .carousel-wrapper::-webkit-scrollbar-thumb:hover {
        display: none;
    }
    .carousel-slide {
        flex: 0 0 calc(50% - 2rem);
    }
    .carousel-slide:nth-of-type(1) {
        margin-left: 1rem;
    }
    .carousel-btn {
        display: block;
        border: unset;
        font-size: 5rem;
        background-color: unset;
        color: var(--off-black);
        cursor: pointer;
    }
}
@media all and (min-width: 1430px) {
    .carousel-slide {
        flex: 0 0 calc(33.33% - 2rem);
    }
}

/* About */
/* Meet Your Executive Coach Section */
.meet-section {
    text-align: center;
}
.img-flex-container {
    display: flex;
    gap: 2rem;
}
.meet-section img {
    min-width: 100%;
}
.icf-certificate img {
    aspect-ratio: 1;
    height: auto;
    object-fit: contain;
}
@media all and (min-width: 769px) {
    .meet-section, .mission-section {
        display: flex;
        justify-content: space-between;
        text-align: unset;
    }
}
/* Values Section */
.values-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.values-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.value-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.value-description .bx {
    font-size: 7rem;
    color: var(--complimentary1);
}
.value-description .svg-icon {
    width: 7rem;
    height: 7rem;
}
.value-description .svg-icon line, .value-description .svg-icon path {
    stroke: var(--complimentary1);
    stroke-width: 0.5rem;
}
.collapsable-text {
    max-height: 0;
    transition: max-height 0.25s ease-out;
    overflow: hidden;
}
.collapse-btn {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.collapse-btn .bx.bx-chevron-down {
    position: absolute;
    left: -4rem;
    font-size: 4rem;
    color: var(--off-black);
    transition: all 0.5s;
}
.value-description.open .collapsable-text {
    max-height: 100%;
}
.value-description.open .bx.bx-chevron-down {
    transform: rotate(180deg);
}
@media all and (min-width: 425px) {
    .value-description {
        flex: 0 0 20%;
        min-width: 20rem;
    }
}
@media all and (min-width: 940px) {
    .values-container {
        justify-content: space-between;
    }
}

/* 404 */
.hero-section.section-404 {
    flex-direction: row;
}

/* FAQ section */
.faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-group {
    box-sizing: border-box;
    width: 100%;
    max-width: 102.4rem;
}
.faq-group h2 {
    margin: unset;
}
.faq {
    border: var(--complimentary1) solid 0.2rem;
    border-bottom: 0;
    background-color: white;
}
.faq:first-child {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
.faq:last-child {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    border-bottom: var(--complimentary1) solid 0.2rem;
}
.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    user-select: none;
}
.faq-question .bx.bx-chevron-down {
    position: absolute;
    left: 0.5rem;
    font-size: 2.4rem;
    color: var(--off-black);
    transition: transform 0.3s ease;
}
.faq.active .faq-question .bx.bx-chevron-down {
    transform: rotate(180deg);
}
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0s ease-out;
}
.faq.active .faq-answer-wrapper {
    max-height: 50rem;
    transition: max-height 0.5s ease-in;
}
.faq-answer {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin: 0;
}

/* Services */

.service-card {
    padding: 4rem;
    margin-bottom: 3rem;
    border-radius: 5rem;
    background-color: #fff;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
}
.service-title {
    display: flex;
    align-items: center;
}
.service-icon {
    height: 100%;
    margin-right: 1rem;
}
.service-price {
    margin: 2rem 0;
    display: flex;
    align-items: center;
}
.service-price-number {
    font-size: 2rem;
    font-weight: 800;
}
.service-list-label {
    font-size: 2rem;
}
.service-description {
    margin-top: 3.5rem;
}
@media all and (min-width: 769px) {
    .services-section {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .service-card {
        width: calc(50% - 1rem);
        align-self: stretch;
    }
    .service-price-number {
        font-size: 2.4rem;
    }
    .service-price-per {
        font-size: 2rem;
    }
}

/* Testimonials */
.companies-section {
    height: 10rem;
    max-width: unset;
    padding: unset;
}
.companies {
    height: 10rem;
    background: url('https://lebrunconsulting.com/wp-content/uploads/2026/03/client-organizations.png') repeat-x 0 50%;
    animation: scroll 20s linear infinite;
}
.companies-section::-webkit-scrollbar, .companies-section::-webkit-scrollbar-track, .companies-section::-webkit-scrollbar-thumb, .companies-section::-webkit-scrollbar-thumb:hover {
    display: none;
}
@keyframes scroll {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: -1000px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .companies {
      animation: none;
    }
}

/* Testimonial quote section */
.testimonial-section {
    position: relative;
    display: flex;
    flex-direction: column;
}
.testimonial-section article {
    margin-bottom: var(--space-after);
    text-align: center;
}
@media all and (min-width: 769px) {
    .testimonial-section article {
        text-align: left;
    }
    .testimonial-section .col-1 {
        width: 80%;
    }
}

/* Contact Form */
.wpcf7-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--header-nav-height) + var(--space-after)) var(--margin) var(--space-after);
    overflow: hidden;
}
.lc-contact-form {
    box-sizing: border-box;
    width: 100%;
    max-width: 80rem;
    padding: 2rem;
    border-radius: 2rem;
    background-color: var(--off-black);
    color: var(--off-white);
}
.lc-contact-form h1 {
    text-align: center;
}
.lc-contact-form label {
    box-sizing: border-box;
    height: fit-content;
    display: block;
}
.lc-contact-form input, .lc-contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    border: unset;
    border-radius: 1.5rem;
}
.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    padding: 1rem 3rem;
    border: unset;
    border-radius: 1.5rem;
    background-color: var(--primary1);
    color: var(--off-white);
    font-family: "quicksand", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wpcf7-form-control.wpcf7-submit:hover {
    transform: translateY(-0.2rem);
	box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
	background-color: var(--hover);
}

/* Buttons */
.btn-container {
    width: fit-content;
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
}
.img-icon img {
    aspect-ratio: 1;
    width: 4rem;
    object-fit: contain;
    object-position: center;
}
.btn {
    display: inline-block;
}
.btn a.wp-block-button__link {
    display: inline-block;
    min-width: 15rem;
    margin: 1rem 0;
    padding: 1rem 3rem;
    border: 0.3rem solid var(--primary1);
    border-radius: 1.5rem;
    text-decoration: none;
    color: var(--off-white);
    background-color: var(--primary1);
    transition: all 0.3s ease;
}
.btn a.wp-block-button__link:hover {
    transform: translateY(-0.2rem);
	box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
	background-color: var(--hover);
	border: solid 0.3rem var(--hover);
}
.btn.space-before {
    margin-top: 1rem;
}
.icon-btn {
    font-size: 0;
}
.icon-btn a {
    background-color: unset;
    padding: 0;
}
.bxl.bx-linkedin-square {
    color: var(--primary1);
    font-size: 4rem;
}
.centered-hero-btn {
    width: calc(100vw - var(--margin) * 2);
    max-width: calc(var(--max-content-width) - var(--margin) * 2);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Fonts */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}
h1 {
    font-size: 3.2rem;
    margin: 1rem 0;
}
h2 {
    font-size: 2rem;
    margin: 1.25rem 0;
}
.line-heading {
    margin-bottom: 2rem;
    padding-top: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
}
@media all and (min-width: 769px) {
    .line-heading {
        justify-content: left;
    }
}
.line-heading.centered {
    justify-content: center;
    text-align: center;
}
.line-heading::before {
    content: "";
    position: absolute;
    top: 0;
    width: 27.5rem;
    height: 0.2rem;
    background-color: var(--off-black);
}
h3 {
    font-size: 1.6rem;
    margin: 1.1rem 0;
}
p {
    font-size: 1.6rem;
    margin: 1rem 0;
    line-height: 2.5rem;
}
ul {
    margin: 1rem 0;
}
a {
    color: var(--primary1);
}
.ul>li {
    position: relative;
    padding-left: 1em;
    margin: 0 2rem 1rem;
}
.ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 0.35em;
    height: 0.35em;
    margin-right: 0.5rem;
    border-radius: 50%;
    background-color: var(--off-black);
}
strong {
    font-weight: 600;
}
.italic {
    font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-weight: 400;
}
.centered {
    text-align: center;
}
button {
    font-family: "quicksand", Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
}
@media all and (min-width: 769px) {
    h1 {
        font-size: 3.6rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    h3 {
        font-size: 2rem;
    }
    p {
        font-size: 1.8rem;
    }
    body {
        font-size: 1.8rem;
    }
    button {
        font-size: 1.8rem;
    }
}