/* HEADER */
.Header-area {
    background: #8ec31e;
}
.Header-area.scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.Header-area.scroll .Header-up {
    display: none;
}
.Header-container {
    padding-bottom: 10px;
    position: relative;
}
.Header-up > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Header-down {
    padding: 10px 0 0;
    border-top: 1px solid #fff;
}
.Header-logo {
    width: 120px;
    /*height: 55px;*/
}
.MainContainer-area {
    margin-top: auto;
}
.Header-btn_menu {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.Header-btn_menu > div {
    margin: 4px 0;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
.Header-btn_menu.active > #one {
    transform: translateY(11px) rotate(-135deg);
    transition: all 0.3s ease-in-out;
}
.Header-btn_menu.active > #two {
    opacity: 0;
    transition: 0.2s ease;
}
.Header-btn_menu.active > #three {
    transform: translateY(-11px) rotate(-45deg);
    transition: all 0.3s ease-in-out;
}
.Header-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.Header-menu > li {
    display: flex;
    align-items: center;
}
.Header-menu > li.active > a {
    background: #fff;
    color: #8ec31e !important;
}
.Header-menu > li > a {
    display: inline-block;
    padding: 0px 5px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-out;
}
.Header-menu > li > a:hover {
    background: #fff;
    color: #8ec31e;
}
.Header-menu_backdrop {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.Header-menu_backdrop.active {
    top: 75px;
}

/* MAIN CONTAINER */
.MainContainer-area {
    margin-bottom: 80px;
    min-height: 100px;
}

/* FOOTER */
.Footer-container {
    position: relative;
    text-align: center;
}
.Footer-up {
    padding: 20px 0 30px;
    background: #8ec31e;
    color: #fff;
}
.Footer-title {
    font-size: 16px;
}
.Footer-logo {
    display: inline-block;
    width: 100px;
    /*height: 55px;*/
}
.Footer-socials {
    margin: 15px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
}
.Footer-socials > li > a {
    margin: 0 5px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.Footer-socials > li > a > span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #8ec31e;
    font-size: 26px;
    border-radius: 6px;
    transition: all 0.3s ease-out;
}
.Footer-socials > li > a > span:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.Footer-listMenu h5 {
    font-size: 17px;
    font-weight: 700;
    color: #16710b;
    padding: 0 0 13px 0;
    margin: 0;
    text-align: start;
    margin-left: 33px;
}
.Footer-listMenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
}
.Footer-listMenu > .Footer-menu {
    margin: 0;
    width: 30%;
    flex-direction: column;
}
.Footer-area,
.Footer-menu {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.ftArea-item,
.ftMenu-item {
    list-style-type: none;
    padding-right: 3rem;
}
.ftArea-item > li,
.ftMenu-item > li {
    margin-bottom: 10px;
    text-align: left;
}
.ftArea-item > li > a,
.ftMenu-item > li > a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.ftArea-item > li > a:before,
.ftMenu-item > li > a:before {
    margin-right: 5px;
    content: "\25CF";
    position: relative;
    font-size: 5px;
}
.ftArea-item > li > a:hover,
.ftMenu-item > li > a:hover {
    color: #fff;
    text-decoration: underline;
}
.Footer-options {
    margin-top: 20px;
    justify-content: space-evenly;
}
.Footer-options > li {
    width: 30%;
}
.Footer-copyright {
    padding: 5px 0;
    font-size: 14px;
    color: #8ec31e;
}
.Footer-copyright p {
    margin: 0;
}
#backToTop {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 40px;
    height: 47.5px;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    transform: translateX(-50%);
    text-transform: uppercase;
    cursor: pointer;
}
.BackToTop-icon {
    margin-top: 10px;
    position: relative;
    display: inline-flex;
}
.BackToTop-icon:before,
.BackToTop-icon:after {
    content: "";
    position: relative;
    width: 40px;
    height: 1px;
    background: #000;
}
.BackToTop-icon:before {
    transform: translateX(3px) rotate(135deg);
}
.BackToTop-icon:after {
    transform: translateX(-3px) rotate(-135deg);
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    font-size: 14px;
    border: 1px solid #adb5bd;
    outline: none;
    background-color: #0dcaf0;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-weight: bold;
}

#myBtn:hover {
    background-color: #fff;
    color: #0dcaf0;
}

.BackToTop {
    position: fixed;
    margin-bottom: env(safe-area-inset-bottom);
    bottom: 48px;
    right: 10px;
    width: 48px;
    height: 48px;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    background: #8ec31e;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 50%);
    z-index: 10;
    text-decoration: none;
}
.BackToTop > span {
    color: #fff;
    font-size: 9px;
}

.BackToTop.hidden {
    display: none;
}

.Ic-backToTop {
    display: inline-block;
    background: url(../img/ic_backtotop.8854700e.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 900px) {
    .Header-down {
        padding: 10px 0 0;
        border-top: 1px solid #fff;
    }
    .Header-up .container {
        padding-left: 0;
    }
    .Header-container {
        padding-bottom: 0;
    }
    .Header-logo {
        width: 108px;
    }
    .Header-area {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
    .Header-area.scroll .Header-up {
        display: block;
    }
    .Header-down {
        margin-top: 0;
        padding: 0;
        border: none;
    }
    .Header-btn_menu {
        display: inline-flex;
    }
    .Header-menu.mobile {
        position: fixed;
        top: -520px;
        left: 0;
        max-width: initial;
        max-height: calc(100vh - 75px);
        width: 100%;
        padding: 20px 40px 40px;
        flex-direction: column;
        background: #8ec31e;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
        overflow: auto;
        z-index: 12;
        transition: all 0.3s ease-in-out;
    }
    .Header-menu.mobile.active {
        top: 60px;
        border-top: 1px solid #fff;
    }
    .Header-menu.mobile > li > a {
        margin-bottom: 5px;
        padding: 12px 10px;
        width: 100%;
        font-size: 16px;
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    .Header-menu.mobile > li > a:before {
        margin-right: 5px;
        content: "\25CF";
        position: relative;
        font-size: 5px;
    }
    .Header-menu.mobile > li:last-child > a {
        margin-bottom: 0;
    }
    .MainContainer-area {
        /* margin-top: 60px !important; */
    }
    .headline {
        margin-top: 70px !important;
    }
    .MainContainer-area {
        margin-top: 10px !important;
    }

}

@media screen and (max-width: 768px) {
    .Footer-options {
        justify-content: space-evenly !important;
    }
    .Footer-listMenu > .Footer-menu,
    .Footer-options > li {
        width: calc(50% - 5px);
    }
}

@media screen and (max-width: 480px) {
    .Footer-menu > li > a {
        font-size: 14px;
    }
    .Header-menu.mobile.active {
        top: 52px;
    }
    .Header-up .container {
        padding-left: 0;
    }
    .Header-logo {
        width: 94px;
        /*height: 45px;*/
    }
    .MainContainer-area {
        /* margin-top: 52px !important; */
    }
    .Footer-logo {
        display: inline-block;
        width: 100px;
        /*height: 45px;*/
    }
    #banner {
        margin-top: 30px;
    }
}

@media screen and (max-width: 375px) {
    .Footer-menu > li > a {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .Header-menu.mobile {
        padding: 20px 20px 40px;
    }
    .Footer-menu > li > a {
        font-size: 12px;
    }
}

.headline {
    margin: 15px 0;
    font-size: 16px;
    font-weight: 700;
}

@media screen and (max-width: 480px) {
    .headline {
        margin-top: 60px !important;
    }
}

@media screen and (max-width: 900px) {
    .headline {
        margin-top: 70px !important;
    }
}
