/* Generated global bundle. Source files are listed before each section. */

/* css/global/reset.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

button:not(:disabled), input[type="submit"] {
    cursor: pointer;
}

button, input {
    outline: none;
    background-color: transparent;
    border: none;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* css/global/variables.css */
html {
    --primary-font: "Roboto", sans-serif;
    --second-font: "Roca One", sans-serif;
    --third-font: "IBM Plex Sans", sans-serif;

    --color-darkest-green: #0E1203;
    --color-dark-green: #1F2605;
    --color-green: #1F6521;
    --color-beige: #F1EAE1;
    --color-white: #FFFFFF;
    --color-white_rgb: 255, 255, 255;

    --color-forest-green: #53900F;
    --color-olive-green: #A9C887;
    --color-cream: #F8F5F0;

    --color-text: #000;

    --max-width: 1415px;
}

/* css/global/typography.css */
h1 {
    font-size: 60px;

    @media screen and (max-width: 991px) {
        font-size: 36px;
    }
}

h2 {
    font-size: 32px;

    @media screen and (max-width: 1024px) {
        font-size: 28px;
    }

    @media screen and (max-width: 768px) {
        font-size: 22px;
    }
}

h3 {
    font-size: 22px;
    margin-block: 1em;
}

h4 {
    font-size: 22px;
    line-height: 1.4;

    @media screen and (max-width: 991px) {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--second-font);
    scroll-margin-top: 250px;
}

p {
    font-family: var(--primary-font);
    font-size: 16px;
}

.link-underline {
    background: linear-gradient(to right, var(--color-olive-green), var(--color-olive-green));
    background-size: 100% 40%;
    background-position: left bottom;
    background-repeat: no-repeat;
}

/* css/global/base.css */
body {
    background-color: #f5f5f5;
}

a {
    color: inherit;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    overflow: visible;
    fill: currentColor;
    vertical-align: -0.125em;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.keep-reading-content.hide > *:not(:nth-child(1)) {
    display: none !important;
}

.contact__text {
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
}

.contact {
    border: solid 1px #eee;
    margin-block: 40px 150px;
    padding: 20px;
}

.js-appear-on-expand {
    transition: all 350ms;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
}

/* css/blocks/header.css */
.header__bar {
    background-color: var(--color-cream);
}

.header__bar-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 15px;
}

.header__bar-link {
    display: block;
    padding: 7px 15px;

    color: var(--color-text);
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

.header__bar-divider {
    position: relative;
}

.header__bar-divider::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0px;
    width: 1px;
    height: 19px;
    background-color: #CCCCCC;
}

.header {
    width: 100%;
    background-color: var(--color-green);

    position: sticky;
    left: 0;
    top: 0;
    z-index: 3;
}

body:has(#wpadminbar) .header {
    top: 32px;
}

.header--white {
    background-color: var(--color-white);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: center;

	width: 100%;
    max-width: 1415px;
    padding: 15px;
    margin-inline: auto;
}

.alternative-header .header__container {
    justify-content: flex-start;
}

.header__menu-button {
    display: none;
    width: 20px;
    height: 20px;

    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;

    transition: color .3s ease;
}

.header__menu-button:hover,
.header__menu-button:focus {
    color: var(--color-olive-green);
}

.header__menu {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.alternative-header .header__menu {
    padding-right: 20px;
}

.header__menu.left {
    margin-inline: 15px auto;
}

.header__menu.right {
    margin-inline: auto 15px;
}

.header--white .header__menu-link,
.header--white .header__menu-button,
.header--white .header__search {
    color: var(--color-text);
}


.header__search {
    display: flex;
    align-items: center;

    max-width: 200px;
    height: 30px;
    border: 1px solid transparent;
    border-radius: 13px;
}

.header__search.show {
    width: 100%;
    border-color: #fff;
}

.header__search:not(.show) > .header__search-input {
    display: none;
}

.header__search-input {
    max-width: 310px;
    width: 100%;
    height: 100%;
    padding-left: 17px;
    background-color: transparent;

    color: #fff;
    font-size: 0.8rem;
}

.header__search-input::placeholder {
    color: #fff;
}

.header__search-submit {
    min-width: 45px;
    height: 100%;

    color: #fff;
    font-size: 16px;
    text-align: center;
}


.header__menu-link {
    color: var(--color-white);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;

    padding-block: 20px;

    transition: color .3s linear;
}

.header__menu-link:hover, .header__menu-link:focus {
    color: var(--color-olive-green);
}

.alternative-header .header__menu-link {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.header__logo {
    height: 60px;
}

.header__logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.alternative-header .header__logo {
    margin-inline: 15px 40px;
}


@media screen and (max-width: 991px) {

    .header__logo {
        height: 30px;
    }

    .header__container {
        justify-content: space-between;
    }

    .header__menu {
        display: none;
    }

    .header__bar-item:not(.header__bar-item--social) {
        display: none;
    }

    .header__menu-button {
        display: block;
    }
}

/* css/blocks/menu.css */
.menu {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    z-index: 100;
}

.menu:not(.show) {
    display: none;
}

.menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    background-color: rgba(255,255,255,.6);
    z-index: 1;

    transition: opacity .35s ease;
}

.menu:not(.animate) .menu__overlay {
    opacity: 0;
}

.menu__list {
    position: relative;
    z-index: 2;

    padding-block: 12px 80px;
    width: 100%;
    max-width: 320px;
    height: 100%;
    
    background-color: var(--color-darkest-green);

    transition: transform .35s ease;
}

.menu:not(.animate) .menu__list {
    transform: translateX(-100%);
}

.menu__item-link {
    display: block;

    color: var(--color-white);
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;

    padding: 5px 20px;

    /* transition: all .2s linear; */
}

.menu__item-link:hover, .menu__item-link:focus {
    background-color: var(--color-olive-green);
    color: var(--color-darkest-green);
}

.menu__item:last-child {
    padding-bottom: 13px;
    border-bottom: 1px solid #333;
}

@media screen and (max-width: 991px) {
    .menu {
        top: 112px;
    }

    .menu__list {
        max-width: 100%;
        overflow-y: auto;
    }
}

/* css/blocks/footer.css */
.footer {
    padding-top: 45px;
    background-color: var(--color-white);
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 45px 15px;

    border-top: 1px solid #ccc;
}

.footer__info {
    display: flex;
}

.footer__logo {
    max-width: 237px;
    height: auto;
    object-fit: contain;
}

.footer__copyright {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #ccc;

    color: var(--color-text);
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
}

.footer__copyright > span {
    display: block;
}

.footer__nav-list {
    display: flex;
    column-gap: 20px;
}

.footer__nav-link {
    color: var(--color-text);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

@media screen and (max-width: 991px) {
    .footer__container, .footer__nav-list, .footer__info {
        flex-direction: column;
        justify-content: center;
    }

    .footer__container {
        width: calc(100% - 30px);
    }
    
    .footer__copyright {
        display: flex;
        column-gap: 1rem;

        margin: 20px 0px 15px;
        padding: 0;
        border: none;
        text-align: center;
    }

    .footer__nav-list {
        row-gap: 15px;
    }

    .footer__nav-item {
        text-align: center;
    }
}
