@charset "UTF-8";

/*!
 * Copyright 2024-2024 Johnson
 */

@import "reset.css";

:root {
    --primary: #51B960;
    --secondary: #D9FFC2;
    --sectionbg: #EEEEEE;
    --imagebg: #A0D0D5
}

body {
    font-size: 16px;
    line-height: 1.5;
    padding-top: 120px;
}

@media (max-width: 786px) {
    body {
        padding-top: 80px;
    }
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    /* font-weight: 500; */
    /* line-height: 1.2; */
}

h5,
h4,
h3,
h2,
h1 {
    font-weight: bold;
}

h1,
.h1 {
    font-size: 64px;
}

h2,
.h2 {
    font-size: 56px;
}

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

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

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

@media (max-width: 786px) {
    body {
        font-size: 14px;
    }

    h1,
    .h1 {
        font-size: 56px;
    }

    h2,
    .h2 {
        font-size: 40px;
    }

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

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

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


.mx-width {
    margin: auto;
    padding: 0 20px;
    max-width: 1280px;
    width: 100%;
}

.mx-width-half {
    max-width: 640px;
    width: 100%;
}

a {
    transition: 0.3s;
}

.nav-menu a:hover,
.footer-link-group a:hover {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    border-radius: 10px;
    background: transparent;
    color: #fff !important;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #51B960;
    z-index: -1;
}

.btn-primary:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #1A8427;
    z-index: -1;
    transition: .3s;
}

.btn-primary:hover:after {
    left: 0;
}

.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    ;
    background: transparent;
    color: var(--primary);
    ;
    overflow: hidden;
}

.btn-secondary:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: var(--primary);
    ;
    z-index: -1;
    transition: .3s;
}

.btn-secondary:hover {
    color: #fff;
}

.btn-secondary:hover:after {
    left: 0;
}

.btn-disabled {
    display: inline-block;
    padding: 15px 20px;
    color: #B2B2B2;
    pointer-events: none;
}

.lock {
    overflow: hidden;
}

.headline {
    display: inline-block;
    margin-bottom: 40px;
}

.headline p {
    opacity: 70%;
}

.headline h2+p {
    margin-top: 30px;
}

.headline p:last-child {
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

@media (max-width: 786px) {
    .headline {
        display: inline-block;
        margin-bottom: 20px;
    }

    .headline h2+p {
        margin-top: 20px;
    }

    .headline p:last-child {
        margin-bottom: 20px;
    }
}

.flexblock {
    display: flex;
}

.flexblock+.flexblock {
    margin-top: 40px;
}

.flexblock li {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.flexblock-body>div {
    padding: 80px 40px 80px 0;
}

.flexblock li+.flexblock-body>div {
    padding: 80px 20px 80px 40px;
}


.flexblock-img {
    background: url(../images/kv.jpg) no-repeat center center / cover;
}

@media (max-width: 786px) {
    .flexblock {
        display: block;
    }

    .flexblock+.flexblock {
        margin-top: 20px;
    }

    .flexblock-body>div {
        padding: 0;
    }

    .flexblock li+.flexblock-body>div {
        padding: 20px;
    }
}

.section {
    margin: 80px 0;
}

.section-primary {
    padding: 80px 0;
    background: var(--sectionbg);
}

.section-primary .headline {
    text-align: center;
}


.section-secondary {
    /* background: var(--primary); */
    background: var(--primary) url(../images/bg-wind.png) no-repeat right 20px bottom 20px / auto 150px;
    color: #fff;
}

.section-secondary .headline .badge {
    border-left-color: var(--secondary);
    color: var(--secondary);
}

@media (max-width: 786px) {
    .section {
        margin: 40px 0;
    }

    .section-primary {
        padding: 40px 0;
    }

    .section-secondary {
        padding-bottom: 40px;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 7;
}

.nav {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.nav-logo {
    display: inline-block;
    padding: 20px 0;
    height: 100%;
    text-align: center;
}

.nav-logo img {
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    display: inline-block;
    color: #000;
    font-size: 20px;
}

.nav-menu a+a {
    margin-left: 20px;
}

.nav-menu-mobile {
    display: none;
    padding: 0px;
    align-items: center;
}

.nav-menu-mobile img {
    display: inline-block;
    width: 100%;
}

.nav-menu-header {
    display: none;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 40px;
}

.nav-menu-logo img {
    height: 80px;
}

.nav-menu-mobile-close {
    display: flex;
    align-items: center;
}

.nav-menu-mobile-close img {
    height: 32px;
}

@media (max-width: 992px) {
    .nav-logo {
        text-align: left;
    }

    .nav-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        padding: 20px 40px;
        background: #fff;
        transition: .5s;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
        font-size: 24px;
    }

    .nav-menu a+a {
        margin-left: 0px;
    }

    .nav-menu .btn-primary {
        margin-top: 40px;
        text-align: center;
    }

    .nav-menu-mobile {
        display: flex;
        width: 48px;
    }

    .nav-menu-header {
        display: flex;
    }

}

@media (max-width: 786px) {
    .nav {
        height: 80px;
    }

    .nav-menu {
        padding: 20px;
    }

    .nav-menu a {
        padding: 10px 20px;
        font-size: 16px;
    }

    .nav-menu-mobile {
        width: 24px;
    }

    .nav-menu-logo img {
        height: 48px;
    }

    .nav-menu-mobile-close img {
        height: 24px;
    }
}

.kv {
    display: flex;
    height: 656px;
    background: url(../images/home-kv.jpg) no-repeat center center / cover;
}

.kv-title {
    width: 66.66%;
}

@media (max-width: 786px) {
    .kv {
        padding-top: 0;
        margin-top: 0px;
        height: calc(100vh - 80px);
    }

    .kv-title {
        width: 100%;
    }
}

.data {
    background: var(--primary);
    overflow: hidden;
}

.data-body {
    display: inline-block;
    float: left;
    padding: 20px;
    width: 25%;
    color: #fff;
    text-align: center;
}

.data-body span.h3 {
    font-weight: bold;
}

.data-body span+span {
    margin-left: 10px;
}

@media (max-width: 786px) {
    .data-body {
        width: 50%;
        padding: 20px 10px;
    }

    .data-body:nth-child(odd) {
        clear: left;

    }
}

.home-about .flexblock {
    align-items: center;
}

.home-about .flexblock li:first-child {
    height: 433px;
    text-align: center;
}

.home-about .flexblock li:first-child img {
    height: 100%;
}

@media (max-width: 768px) {
    .home-about .flexblock li:first-child {
        height: auto;
        padding-bottom: 20px;
    }

    .home-about .flexblock li:first-child img {
        height: auto;
        width: 80%;
    }
}

.text-group p+h5 {
    margin-top: 30px;
}

.text-group p {
    opacity: 80%;
}

@media (max-width: 786px) {
    .text-group p+h5 {
        margin-top: 20px;
    }
}

.item-group {
    display: flex;
    margin: -10px;
}

.item {
    padding: 40px;
    margin: 10px;
    border-radius: 10px;
    background: #fff;
}

.item img {
    width: 86px;
    height: 86px;
}

.item p {
    margin-bottom: 20px;
    opacity: 70%;
}

.item-body h5 {
    margin: 30px 0 15px;
}

@media (max-width: 786px) {
    .item-group {
        display: block;
    }

    .item {
        display: flex;
        padding: 20px;
    }

    .item img {
        width: 48px;
        height: 48px;
    }

    .item+.item {
        margin-top: 20px;
    }

    .item-body {
        margin-left: 20px;
    }

    .item-body h5 {
        margin: 0 0 10px;
    }
}

.text-group {
    max-width: 640px;
    width: 100%;
}

@media (max-width: 786px) {
    .text-group {
        max-width: none;
    }
}

.home-platform-img {
    background: url(../images/home-platform.jpg) no-repeat center center / cover;
}

@media (max-width: 786px) {
    .home-platform-img {
        height: 161.8vw;
    }
}

.card-group {
    display: flex;
    margin: -10px;
}

.card {
    flex: 1;
    margin: 10px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.card-img {
    display: block;
    position: relative;
    width: 100%;
    height: 226px;
    background: var(--imagebg);
}

.card-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.card-body {
    padding: 40px;
}

.card-body h5 {
    margin-bottom: 15px;
}

.card-body p {
    opacity: 70%;
}

@media (max-width: 786px) {
    .card-group {
        display: block;
    }

    .card+.card {
        margin-top: 20px;
    }

    .card-body {
        padding: 20px 20px 30px;
    }
}

.home-consult {}

@media (max-width: 786px) {
    .home-consult .flexblock li {
        display: none;
    }

    .home-consult .flexblock li.flexblock-body {
        display: block;
    }

    .home-consult .flexblock li+.flexblock-body>div {
        padding: 0;
    }

}

footer {
    padding-top: 80px;
    background: #666666;
    color: #fff;
}

.footer-logo img {
    display: inline-block;
    height: 64px;
}

.footer-logo img+p {
    margin-top: 20px;
}

.footer-logo p {
    opacity: 70%;
}

.footer-logo p+p {
    margin-top: 10px;
}

.footer-link-group a {
    display: block;
    color: #fff;
    opacity: 70%;
}

.footer-link-group h5+a {
    margin-top: 20px;
}

.footer-link-group a+a {
    margin-top: 10px;
}

.footer-rights {
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid #D9FFC2;
}

@media (max-width: 786px) {
    footer {
        padding-top: 40px;
    }

    .footer-logo {
        margin-bottom: 40px;
    }

    .footer-logo img {
        height: 48px;
    }

    .flexblock li+li {
        margin-top: 20px;
    }

    .footer-rights {
        margin: 40px -20px 0;
        padding: 20px;
        border-top: 1px solid #D9FFC2;
    }
}

.report {
    text-align: center;
}

.report-box+.report-box {
    margin-top: 40px;
}

.report-box .h4 {
    margin-bottom: 20px;
}

.report-body {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    overflow: hidden;
}

.report-body a {
    margin: 10px;
    width: calc(25% - 20px);
}

@media (max-width: 786px) {
    .report-body a {
        width: calc(33.33% - 20px);
    }

    .report-body a span {
        display: block;
    }
}

/* animate */
.fadein {
    position: relative;
    opacity: 0;
    top: 50px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadePlay {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
}

.fadeInUp {
    animation-fill-mode: both -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.fadeAnime>div {
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}




@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}



/*css end*/