:root {
    /* --green: #009750; */
    --green: #84C454;
    --black: #000000;
    --white: #ffffff;
    --light-green : #EBFF92;
    --beige : #D5D3CD;
    --light-beige: #F6F5F3;
    --blue: #2B63F3;
    --font-barlow: "Barlow", sans-serif;
    --font-arnika: 'Arnika Variable';
    --font-inter: "Inter", sans-serif;
    --font-league: "League Gothic", sans-serif;
    --font-owners-bold: "Owners Text Bold";
    --font-owners-medium: "Owners Text Medium";
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** font-face 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@font-face {
    font-family: 'Arnika Variable';
    src: url('../fonts/ArnikaVar.woff2') format('woff2'),
        url('../fonts/ArnikaVar.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Owners Text Bold";
    font-weight: 700;
    font-style: regular;
    font-display: swap;
    src:url('../fonts/owners-text-bold.woff2') format('woff2'), url('../fonts/owners-text-bold.woff') format('woff');
}

@font-face {
    font-family: "Owners Text Medium";
    font-weight: 500;
    font-style: regular;
    font-display: swap;
    src:url('../fonts/owners-text-medium.woff2') format('woff2'), url('../fonts/owners-text-medium.woff') format('woff');
}



body {
    font-family: "Barlow", sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black)
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** pre-defined classes
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
h1, .h1 {
    font-size: 40px;
    line-height: 1;
    font-family: var(--font-owners-bold);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--black);
}

h2, .h2 {
    font-size: 38px;
    line-height: 1;
    font-family: var(--font-owners-bold);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--black);
}

h3, .h3 {
    font-size: 28px;
    line-height: 1;
    font-family: var(--font-owners-bold);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--black);
}

h4, .h4 {
    font-size: 26px;
    line-height: 1;
    margin: 0;
    font-family: var(--font-owners-medium);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
}

h5, .h5 {
    font-size: 24px;
    line-height: 1;
    margin: 0;
    font-family: var(--font-owners-medium);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
}

h6, .h6 {
    font-size: 24px;
    line-height: 1;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: var(--black);
}


.lg-text {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 400;
}

.md-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.def-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.sm-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.white .p, 
.white .lg-text,
.white .md-text,
.white .sm-text {
    color: var(--white);
}

.light-green {
    color: var(--light-green);
}

.green {
    color: var(--green);
}

.white {
    color: var(--white);
}
.blue {
    color: var(--blue);
}

.font-league {
    font-family: var(--font-league);
}

.bg-black {
    background-color: var(--black);
}
.bg-white {
    background-color: var(--white);
}
.bg-light-green {
    background-color: var(--light-green);
}


.fw-100 {
    font-weight: 100;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}

.fs-normal {
    font-style: normal;
}

.fs-italic {
    font-style: italic;
}





.tt-upper {
    text-transform: uppercase;
}

.tt-lower {
    text-transform: lowercase;
}

.ta-center {
    text-align: center;
}

.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.fl {
    display: flex;
    gap: 1rem;
} 

.fl-ai-center {
    align-items: center;
} 

.fl-ai-fs {
    align-items: flex-start;
} 

.fl-ai-fe {
    align-items: flex-end;
} 

.fl-jc-sb {
    justify-content: space-between;
}

.fl-jc-fs {
    justify-content: flex-start;
}

.fl-jc-fe {
    justify-content: flex-end;
}

.fl-jc-center {
    justify-content: center;
}

.fl-dir-row {
    flex-direction: row;
}

.fl-dir-col {
    flex-direction: column;
}

.fl-dir-row-rev {
    flex-direction: row-reverse;
}

.fl-dir-col-rev {
    flex-direction: column-reverse;
}
.gd {
    display: grid;
}
.gd-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gd-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}


.black {
    color: var(--black);
}
.white {
    color: var(--white);
}


.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mx-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.no-undrerline {
    text-decoration: none;
}
.d-none {
    display: none;
}

/* Button */
.btn {
    padding: 12px 30px;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    border-radius: 12px;
    width: fit-content;
    display: block;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-barlow);
    line-height: 1;
    font-size: 18px;
    letter-spacing: 0;
    text-align: center;
    transition: all .25s linear;
    letter-spacing: 0.36px;
}
.btn:hover {
    background: var(--white);
    color: var(--green);
}

.btn-wrap {
    position: relative;
    padding-right: 45px;
    width: fit-content;
}
.button {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    padding: 9px 15px;
    border-radius: 32px;
    display: block;
    background-color: var(--black);
    color: var(--white) !important;
    text-decoration: none;
    width: fit-content;
    border: 1px solid var(--black);
    transition: all .25s linear;
}

.button:after{
    content: url('/wp-content/themes/ldwp/assets/img/btn-white-arrow.svg');
    position: absolute;
    right: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    padding: 6px;
    border-radius: 32px;
    aspect-ratio: 1;
    width: 45px;
    line-height: 1;
    border: 1px solid var(--black);
}
.button:hover {
    background-color: var(--white);
    color: var(--black) !important;
}
.button:hover:after {
    content: url('/wp-content/themes/ldwp/assets/img/black-arrow-small.png');
    background-color: var(--white);
    color: var(--black) !important;
}


/* Button White */
.button.bg-white {
    background-color: var(--white);
    color: var(--black) !important;
    border: 1px solid var(--white);
}

.button.bg-white:after{
    filter: invert(1);
}

.button.bg-white:hover {
    background-color: transparent;
    color: var(--white) !important;
}
.button.bg-white:hover:after {
    filter: unset;
    border: 1px solid #fff;
    background-color: transparent;
}
.button.bg-white:hover:after{
    content: url('/wp-content/themes/ldwp/assets/img/btn-white-arrow.svg');
}


/* Secondary Button */
.secondary-btn {
    font-family: var(--font-barlow);
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--black);
}
.secondary-btn:after {
    content: url('/wp-content/themes/ldwp/assets/img/sec-btn-arrow.svg');
    position: relative;
    top: 2px;
}

/* Overlay */
.overlay {
    position: relative;
}
.overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: saturation;
}
.overlay img {
    width: 100%;
    filter: grayscale(100%) contrast(80%)
}
.overlay.green img {
    filter: grayscale(100%) brightness(60%); 
}
.overlay.green::after {
    background: #6EA722;
    mix-blend-mode: screen;
}
.overlay.dark::after {
    background-color: var(--off-black);
}


/* Animation */
.copter {
  display: inline-block;
  animation: copter 2s ease-in-out infinite;
}

@keyframes copter {
  0%   { transform: translateY(0) rotate(0); }
  50%  { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes falling {
    0% { 
        top: 19%;
        right: 22%;
        rotate: 0deg;
        scale: .3;
        opacity: 1;
    }

    100% {
        top: calc(100% - 162px);
        right: 40%;
        rotate: 360deg;
        scale: 1;
        opacity: 1;
    }
}


@keyframes falling2 {
    0% { 
        top: 19%;
        right: 22%;
        rotate: 0;
        scale: .3;
        opacity: 1;
    }

    100% {
        top: calc(100% - 100px);
        right: 20px;
        rotate: 180deg;
        scale: 1;
        opacity: 1;
    }
}

@keyframes falling3 {
    0% { 
        top: 19%;
        right: 22%;
        scale: .2;
        opacity: 1;
    }
    70% {
        scale: .7;
        opacity: 1;
    }

    100% {
        top: calc(100% - 100px);
        right: 22%;
        scale: 1;
        opacity: 1;
    }
}

/* Layout */
.container {
    max-width: 1320px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}
.guttenberg-page {
    padding: 0 0 4rem 0;
}
.guttenberg-page h1,
.guttenberg-page h2,
.guttenberg-page h3,
.guttenberg-page h4,
.guttenberg-page h5, 
.guttenberg-page h6 {
	margin: 1rem 0 0.5rem;
    text-transform: uppercase;
}
.guttenberg-page ul li,
.guttenberg-page ol li {
	margin-bottom: .1em;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** 404 Page
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.error-404 {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-page-content h1 {
    font-size: 80px;
}







/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** responsive styles
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@media only screen and (max-width: 1024px) {
    /* GLobal */
    h1, .h1 {
        font-size: 70px;
    }
    h2, .h2 {
        font-size: 50px;
    }

    h3, .h3 {
        font-size: 42px;
    }

    h4, .h4 {
        font-size: 36px;
    }

    h5, .h5 {
        font-size: 24px;
    }

    h6, .h6 {
        font-size: 20px;
    }

    .lg-text {
        font-size: 17px;
    }

    .md-text {
        font-size: 15px;
    }

    .def-text {
        font-size: 14px;
    }
    .sm-text {
        font-size: 12px;
    }


}

@media only screen and (max-width: 998px) {
    .btn-wrap {
        padding-right: 40px;
    }
    .button {
        font-size: 14px;
    }
    .button:after {
        width: 40px;
    }

    /* Global */
    body {
        font-size: 18px;
    }
    h1, .h1 {
        font-size: 40px;
    }
    h2, .h2 {
        font-size: 25px;
    }

    h3, .h3 {
        font-size: 20px;
    }

    h4, .h4 {
        font-size: 32px;
    }

    h5, .h5 {
        font-size: 18px;
    }

    h6, .h6 {
        font-size: 18px;
    }

}


@media only screen and (max-width: 767px) {
    /* Global */
    body {
        font-size: 18px;
    }
    h1, .h1 {
        font-size: 30px;
    }
    h2, .h2 {
        font-size: 25px;
    }

    h3, .h3 {
        font-size: 20px;
    }

    h4, .h4 {
        font-size: 32px;
    }

    h5, .h5 {
        font-size: 18px;
    }

    h6, .h6 {
        font-size: 18px;
    }

    .lg-text {
        font-size: 17px;
    }

    .md-text {
        font-size: 15px;
    }

    .def-text {
        font-size: 14px;
    }
    .sm-text {
        font-size: 12px;
    }

    .d-none {
        display: block;
    }
    .mb-none {
        display: none;
    }





}



