@charset "UTF-8";
/* --------------------
 Header
-------------------- */
.header {
    background-color: white;
    height: 65px;
    height: var(--header-height);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: background-color var(--com-transition),height var(--com-transition), top var(--com-transition);
    z-index: 99;
}

@media (max-width: 767px) {
    .header.scrolled.scroll-down {
        top: calc(var(--header-height) * -1);
    }
}

@media (min-width: 992px) {
    .header {
        background-color: rgba(255, 255, 255, 0);
    }
}

@media (min-width: 992px) {
    .header.scrolled {
        background-color: rgba(255, 255, 255, 0.85);
        --header-height:65px;
    }
}

.header-container {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 30px;
    }
}

.header__logo a {
    transition: opacity var(--com-transition);
}

.header__logo a:focus {
    opacity: 0.65;
}

@media (hover: hover) and (pointer: fine) {
    .header__logo a:hover {
        opacity: 0.65;
    }
}

.header__logo a img {
    transition: width var(--com-transition);
    width: 120px;
}

@media (min-width: 768px) {
    .header__logo a img {
        width: 190px;
    }
}

@media (min-width: 992px) {
    .header.scrolled .header__logo a img {
        width: 160px;
    }
}

@media (min-width: 1240px) {
    .header__logo a img {
        width: 240px;
    }
    .header.scrolled .header__logo a img {
        width: 160px;
    }
}

.header__nav {
    align-items: center;
    display: none;
    flex-flow: row nowrap;
    gap: 20px;
    justify-content: flex-end;
    padding: 10px 0 0;
    transition: padding var(--com-transition);
}

@media (min-width: 992px) {
    .header__nav {
        display: flex;
    }
    .header.scrolled .header__nav {
        padding: 0;
    }
}

.header__nav__menu {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
}

.header__nav__menu__item {
    border-right: 1px solid #000;
    font-size: 1rem;
    line-height: 1.2;
    padding: 0 10px;
}

.header__nav__menu__item:first-child {
    padding-left: 0;
}

.header__nav__menu__item:last-child {
    border-right: none;
    padding-right: 0;
}

.header__nav__menu__item a {
    color: inherit;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    position: relative;
    text-decoration: none;
    transition: color var(--com-transition);
}

@media (min-width: 1240px) {
    .header__nav__menu__item a {
        padding: 0 5px;
    }
}

.header__nav__menu__item a:after {
    background-color: #29a039;
    bottom: -1px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    margin: auto;
    max-width: 100%;
    position: absolute;
    right: 0;
    transition: width var(--com-transition);
    width: 0;
    z-index: 0;
}

.header__nav__menu__item a:focus {
    color: #29a039;
}

.header__nav__menu__item a:focus:after {
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .header__nav__menu__item a:hover {
        color: #29a039;
    }

    .header__nav__menu__item a:hover:after {
        width: 100%;
    }
}

.header__nav__action {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
}

@media (min-width: 1240px) {
    .header__nav__action {
        gap: 15px;
    }
}

.header__nav__action__button {
    align-items: center;
    color: #29a039;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.4rem;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: color var(--com-transition);
    width: 120px;
}

@media (min-width: 1240px) {
    .header__nav__action__button {
        font-size: 1.6rem;
        width: 180px;
    }
}

.header__nav__action__button-inner {
    align-items: center;
    background-color: #fff;
    border: 1px solid #29a039;
    border-radius: 17px;
    display: flex;
    flex-flow: row nowrap;
    height: 34px;
    justify-content: center;
    text-align: center;
    transition: background-color var(--com-transition), border-color var(--com-transition);
    width: 100%;
}

.header__nav__action__button:focus {
    color: #fff;
}

.header__nav__action__button:focus .header__nav__action__button-inner {
    background-color: #29a039;
}

@media (hover: hover) and (pointer: fine) {
    .header__nav__action__button:hover {
        color: #fff;
    }

    .header__nav__action__button:hover .header__nav__action__button-inner {
        background-color: #29a039;
    }
}

.header__nav__action__button--doc {
    color: #fff;
}

.header__nav__action__button--doc .header__nav__action__button-inner {
    background-color: #f7931e;
    border: 1px solid #fff;
}

.header__nav__action__button--doc:focus {
    color: #f7931e;
}

.header__nav__action__button--doc:focus .header__nav__action__button-inner {
    background-color: #fff;
    border: 1px solid #f7931e;
}

@media (hover: hover) and (pointer: fine) {
    .header__nav__action__button--doc:hover {
        color: #f7931e;
    }

    .header__nav__action__button--doc:hover .header__nav__action__button-inner {
        background-color: #fff;
        border: 1px solid #f7931e;
    }
}

.header__mb {
    display: none;
}

@media (min-width: 768px) {
    .header__mb {
        align-items: center;
        display: flex;
        flex-flow: row nowrap;
        gap: 10px;
        justify-content: flex-end;
        padding: 0 45px 0 0;
    }
}

@media (min-width: 992px) {
    .header__mb {
        display: none;
    }
}

.header__mb__item__button {
    align-items: center;
    color: #29a039;
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.4rem;
    font-weight: 700;
    height: 48px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    transition: color var(--com-transition);
    width: 120px;
}

.header__mb__item__button-inner {
    align-items: center;
    background-color: #fff;
    border: 1px solid #29a039;
    border-radius: 17px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-flow: row nowrap;
    height: 32px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: background-color var(--com-transition);
    width: 100%;
}

.header__mb__item__button__img {
    display: block;
    position: relative;
}

.header__mb__item__button__img > img {
    transition: opacity var(--com-transition);
}

.header__mb__item__button__img__hover {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--com-transition);
}

.header__mb__item__button:focus {
    color: #fff;
}

.header__mb__item__button:focus .header__mb__item__button-inner {
    background-color: #29a039;
}

.header__mb__item__button:focus .header__mb__item__button__img > img {
    opacity: 0;
}

.header__mb__item__button:focus .header__mb__item__button__img__hover {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .header__mb__item__button:hover {
        color: #fff;
    }

    .header__mb__item__button:hover .header__mb__item__button-inner {
        background-color: #29a039;
    }

    .header__mb__item__button:hover .header__mb__item__button__img > img {
        opacity: 0;
    }

    .header__mb__item__button:hover .header__mb__item__button__img__hover {
        opacity: 1;
    }
}

.header__mb__item__button--doc {
    color: #fff;
}

.header__mb__item__button--doc .header__mb__item__button-inner {
    background-color: #f7931e;
    border: 1px solid #f7931e;
}

.header__mb__item__button--doc:focus {
    color: #f7931e;
}

.header__mb__item__button--doc:focus .header__mb__item__button-inner {
    background-color: #fff;
    border: 1px solid #f7931e;
}

@media (hover: hover) and (pointer: fine) {
    .header__mb__item__button--doc:hover {
        color: #f7931e;
    }

    .header__mb__item__button--doc:hover .header__mb__item__button-inner {
        background-color: #fff;
        border: 1px solid #f7931e;
    }
}

.header__burger {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: block;
    height: 48px;
    margin: auto;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 12px;
    width: 48px;
    z-index: 100;
}

@media (min-width: 992px) {
    .header__burger {
        display: none;
    }
}

.header__burger__box {
    display: block;
    height: 15px;
    margin: 0 auto 5px;
    position: relative;
    width: 26px;
}

.header__burger__box__line {
    display: block;
    margin: 0px 0 0;
    top: 50%;
    transition: transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.075s ease;
}

.header__burger__box__line, .header__burger__box__line:before, .header__burger__box__line:after {
    background-color: #29a039;
    height: 1px;
    position: absolute;
    width: 26px;
}

.header__burger__box__line:before, .header__burger__box__line:after {
    content: "";
    display: block;
}

.header__burger__box__line:before {
    top: -7px;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease, background-color 0.075s ease;
}

.header__burger__box__line:after {
    bottom: -7px;
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.075s ease;
}

.header__burger.is-active .header__burger__box__line {
    background-color: #29a039;
    transform: rotate(45deg);
    transition: transform 0.075s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, background-color 0.075s ease;
}

.header__burger.is-active .header__burger__box__line:before {
    background-color: #29a039;
    opacity: 0;
    top: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease, background-color 0.075s ease;
}

.header__burger.is-active .header__burger__box__line:after {
    background-color: #29a039;
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.075s ease;
}

.header__burger__label {
    display: block;
    font-size: 0.8rem;
    line-height: 1;
    text-align: center;
}