:root {
    --dark-blue: #00588d;
    --light-blue: #57a7dc;
    --light-blue-2: #00cccc;
}
p {
    margin-bottom: 14px;
    line-height: 1.5;
}
p:last-child {
    margin-bottom: 0;
}
.color-dark-blue {
    color: var(--dark-blue);
}
.color-light-blue {
    color: var(--light-blue);
}
.color-light-blue-2 {
    color: var(--light-blue-2);
}
.color-red {
    color: red;
}
.emfusion--main .banner {
    position: relative;
    /* background-image: url(/images/emfusion/banner.jpg); */
    /* background-position: center; */
    height: auto;
    min-height: auto;
    max-height: none;
    padding-bottom: 0;
}
.emfusion-banner__txt {
    position: absolute;
    top: 50%;
    width: 25%;
    left: 10%;
    transform: translateY(-50%);
}
.emfusion-banner__txt._2 {
    left: auto;
    right: 10%;
}
.emfusion-banner__txt img {
    display: block;
    width: 100%;
}
.emfusion--main .banner__logo {
    margin-bottom: 0;
    height: 70px;
}
.main-1__textarea {
    max-width: 800px;
    margin: 0 auto 58px;
    color: var(--dark-blue);
    text-align: center;
}
.main-1__title {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 24px;
    font-weight: normal;
}
.main-1__title-row {
    display: flex;
    align-items: center;
}
.main-1__title img {
    width: auto;
    height: 1em;
    margin-right: 8px;
}
.main-1__video {
    display: block;
    width: 100%;
}
.main-1__blk {
    display: flex;
}
.main-1__blk-left {
    width: 60%;
    padding-top: 38px;
    margin-left: -10%;
    text-align: center;
}
.main-1__swiper {
    margin: 24px 0;
}
.main-1__swiper .swiper-wrapper {
    transition-timing-function: linear;
}
.main-1__swiper .swiper-slide {
    line-height: 1;
    font-size: 64px;
    font-weight: 100;
    opacity: 0.1;
    transition: 0.3s opacity ease;
}
.main-1__swiper .swiper-slide-prev,
.main-1__swiper .swiper-slide-next {
    opacity: 0.4;
}
.main-1__swiper .swiper-slide-active {
    opacity: 1;
}
.main-1__blk-tagline {
    display: inline-block;
    padding: 4px 0;
    border-top: 1px #b9ddec solid;
    border-bottom: 1px #b9ddec solid;
}
.main-1__blk-right {
    width: 50%;
}
.main-1__blk-img {
    display: block;
    width: 100%;
}
.main-2 {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    overflow: hidden;
    z-index: 200;
}
.main-2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(#00508c, #000a32) center / cover no-repeat;
    /* z-index: -1; */
}
@supports (background-attachment: fixed) {
    .main-2:before {
        background-position: right bottom;
        background-size: 200% 200%;
        background-attachment: fixed;
    }
}
.main-2__head {
    position: absolute;
    top: calc(50vh - 60px - 48px);
    left: 50%;
    display: flex;
    flex-flow: column;
    align-items: center;
    transform: translate(-50%, -100%);
}
.main-2._sticky .main-2__head {
    position: fixed;
}
.main-2._end .main-2__head {
    top: auto;
    bottom: calc(50vh + 60px + 48px);
    transform: translate(-50%, 0);
}
.main-2__emfusion-logo {
    width: 200px;
    margin-bottom: 28px;
}
.main-2__title {
    width: auto;
    height: 3em;
    margin-bottom: 2em;
}
.main-2__head-tagline {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: lighter;
}
.main-2__head-tagline:before,
.main-2__head-tagline:after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
.main-2__head-tagline span {
    margin: 0 6px;
}
.main-2__content-trigger {
    margin: 75vh auto 0;
}
.main-2__content {
    position: relative;
}
.main-2__content-inner {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    max-width: 520px;
    padding-top: 24px;
    text-align: center;
    transform: translate(-50%, 0);
}
._content-1-active .main-2__content._1 .main-2__content-inner {
    position: fixed;
    top: calc(50vh - 60px - 48px);
}
.main-2__content-logo {
    width: auto;
    height: 60px;
    margin-bottom: 48px;
}
.main-2__content-title {
    color: var(--light-blue-2);
    margin-bottom: 12px;
}
.main-2__prod {
    position: absolute;
    top: 6vw;
    left: -2%;
    width: calc(50vw - 520px / 2);
}
.main-2__prod img {
    display: block;
    width: 100%;
}
._sticky .main-2__prod {
    position: fixed;
}
/* ._end .main-2__prod {
    top: calc(100% - 58vw) !important;
} */
.main-2__line {
    position: absolute;
    opacity: 0;
    transition: 0.3s opacity ease;
}
._sticky .main-2__line {
    position: fixed;
    top: 50vh;
    left: 28vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
._content-1-active .main-2__line {
    opacity: 1;
}
._end .main-2__line {
    position: absolute;
    top: auto;
    left: 15vw;
    bottom: 50vh;
    opacity: 1;
    transform: translate(-50%, 50%);
}
.main-2__line-circle {
    width: 12vw;
    height: 12vw;
    border: 1px rgba(255, 255, 255, 0.3) solid;
    border-radius: 50%;
}
.main-2__line:before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
}
.main-2__line-bar {
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    display: block;
    width: calc((100vw - 28vw * 2 - 520px) / 2 + 520px);
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
._end .main-2__line-bar {
    width: calc((100vw - 15vw * 2 - 520px) / 2 + 520px);
}
.main-2__mb-prod {
    display: none;
}
.main-3 {
    position: relative;
    color: #00578d;
    background: linear-gradient(150deg, #fff 40%, rgba(150, 210, 255, 0.4));
    overflow: hidden;
}
.main-3 .wrapper {
    position: relative;
    max-width: 900px;
}
.main-3_ball {
    position: absolute;
    top: 4%;
    left: 0%;
    width: 10%;
    pointer-events: none;
}
.main-3_ball._2 {
    top: 18%;
    left: 10%;
    width: 50px;
}
.main-3_ball._3 {
    top: 60%;
    left: -1%;
    width: 80px;
}
.main-3_ball._4 {
    top: 23%;
    left: 80%;
    width: 12%;
}
.main-3_ball._5 {
    top: 70%;
    left: 83%;
    width: 28%;
}
.main-3__title {
    margin-bottom: 0.5em;
    text-align: center;
}
img.main-3__title,
img.main-6__title,
img.faq__title {
    display: block;
    height: 32px;
    margin: 0 auto 1rem;
}
img.faq__title {
    margin-bottom: 2rem;
}
.faq__title {
    color: var(--light-blue-2);
}
@media screen and (max-width: 991px) {
    img.main-3__title,
    img.main-6__title,
    img.faq__title {
        height: 28px;
    }
}
@media screen and (max-width: 767px) {
    img.main-3__title,
    img.main-6__title,
    img.faq__title {
        height: 24px;
    }
}
@media screen and (max-width: 479px) {
    img.main-3__title,
    img.main-6__title,
    img.faq__title {
        height: 20px;
    }
}
.main-3__item-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
}
.main-3__item {
    display: flex;
    align-items: center;
}
.main-3__item-icon {
    width: 2em;
    height: 2em;
    margin-right: 0.5em;
    flex-shrink: 0;
}
.main-3__body {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    justify-content: center;
    /* max-width: 767px; */
    margin: 38px auto;
}
.main-3__body-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-flow: column; */
    /* width: calc(50% - 12px); */
    width: 100%;
    gap: 38px 24px;
}
.main-3__body-title {
    margin-bottom: 0.5em;
}
.main-3__body-img {
    display: block;
    /* width: 100%; */
    width: 400px;
    max-width: 40%;
    margin-top: auto;
}
.main-3__body-remark {
    width: 100%;
    max-width: 560px;
    margin-top: 14px;
    font-size: 14px;
}
.main-3__foot {
    display: flex;
    justify-content: space-between;
}
.main-3__foot-item {
    flex-grow: 1;
    text-align: center;
}
.main-3__chart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 132px;
    height: 132px;
    margin: 0 auto 12px;
}
/* percentage */
@property --p {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}
._p75.animated2 {
    --p: 75%;
}
._p80.animated2 {
    --p: 80%;
}
._p90.animated2 {
    --p: 90%;
}
.main-3__chart-bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: conic-gradient(
        var(--light-blue-2) var(--p),
        rgb(146, 196, 234, 0.4) var(--p)
    );
    background-repeat: no-repeat;
    mask: url(/images/emfusion/mask-border.svg);
    mask-size: 100%;
    z-index: 2;
    transition: 1s --p ease;
}
.main-4 {
    position: relative;
    color: #00578d;
    text-align: center;
    background: linear-gradient(311deg, #fff, rgba(150, 210, 255, 0.3));
    overflow: hidden;
}
.main-4 .wrapper {
    position: relative;
}
.main-4__ball {
    position: absolute;
    top: 5%;
    right: 2%;
    width: 120px;
    pointer-events: none;
}
.main-4__ball._2 {
    top: 22%;
    right: 7%;
    width: 40px;
}
.main-4__ball._3 {
    top: 75%;
    left: auto;
    right: 80%;
    width: 24%;
    z-index: 2;
}
.main-4__title {
    width: auto;
    height: 44px;
    object-fit: contain;
}
.main-4__hr {
    position: relative;
    display: block;
    width: 470px;
    max-width: 100%;
    height: 1px;
    background-color: rgb(0 87 141 / 30%);
    margin: 18px auto;
}
.main-4__hr:before {
    content: "";
    position: absolute;
    top: -3px;
    left: calc(50% - 3px);
    display: block;
    width: 6px;
    height: 6px;
    background-color: #00578d;
    transform: rotate(45deg);
}
.main-4__item-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 24px;
}
.main-4__item {
    position: relative;
    padding: 108px 5% 98px;
    background: linear-gradient(135deg, transparent, #fff 50%);
    animation-duration: 2s;
}
.main-4__item-numb {
    margin-bottom: 16px;
    font-size: 68px;
    line-height: 1;
}
.main-4__item-title {
    margin-bottom: 4px;
}
.main-4__item-desc {
    line-height: 2;
}
.main-4__item-line {
    position: absolute;
    top: 147px;
    left: calc(100% - 50px);
    width: 124px;
    height: 1px;
    background-color: rgb(0 87 141 / 30%);
    z-index: 2;
}
.main-4__item-line:after {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: block;
    width: 6px;
    height: 6px;
    background: #00578d;
    transform: rotate(45deg);
}
.main-5 {
    position: relative;
    color: #00578d;
    background-color: rgb(185 221 236 / 15%);
}
.main-5__textarea {
    width: 46%;
}
.main-5:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50%;
    height: 100%;
    background: url(/images/emfusion/img-5-4.jpg) left center/ cover no-repeat;
    mix-blend-mode: multiply;
}
.main-5__textarea hr {
    display: block;
    width: 158px;
    max-width: 100%;
    height: 1px;
    margin: 58px 0;
    border: 0;
    background-color: rgb(0 87 141 / 30%);
}
.main-5__row {
    margin-top: 38px;
}
.main-5__row-title {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    line-height: 1.5;
}
.main-5__row-title img {
    position: relative;
    top: 0.1em;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
    object-fit: contain;
    object-position: left center;
}
.main-6 {
    text-align: center;
    color: #00578d;
    background: url(/images/emfusion/img-6-bg.png?v=2) right bottom / 30%
            no-repeat,
        linear-gradient(115deg, rgb(150 210 255 / 20%) 30%, transparent);
}
.main-6__body {
    margin-top: 42px;
}
.main-6__row {
    display: flex;
    padding-bottom: 42px;
    border-bottom: 1px solid rgb(0 87 141 / 30%);
    margin-bottom: 42px;
}
.main-6__row:after {
    content: "";
    display: block;
    width: 10%;
    flex-shrink: 0;
}
.main-6__row:first-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 24px;
}
.main-6__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}
.main-6__col {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    width: 40%;
    padding: 0 24px;
}
.main-6__col._1 {
    width: 10%;
    flex-shrink: 0;
    text-align: left;
    padding: 0;
}
.main-6__emfusion-logo {
    display: block;
    width: auto;
    height: 28px;
    margin: auto;
}
.main-6__special {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 340px;
    text-align: left;
}
.main-6__special p {
    padding-left: 1.5em;
    margin-bottom: 4px;
    text-align: center;
    background: url(/images/emfusion/check-mark.svg) left top 0.25em / 1em
        no-repeat;
}
.faq__btn.active {
    color: var(--light-blue-2);
}
.faq__btn {
    transition: 0.3s color ease;
}
.faq {
    background: #00578d;
}
.faq__btn:after {
    background-color: var(--light-blue-2);
}
.faq__content {
    max-width: 930px;
}
.ani-floating {
    animation-timing-function: ease-in-out;
}
@media screen and (max-width: 991px) {
    .main-1__textarea {
        margin-bottom: 28px;
    }
    .main-1__blk {
        flex-flow: column;
    }
    .main-1__blk-left {
        width: 100%;
        margin: 0 0 28px;
        padding-top: 0;
    }
    .main-1__blk-right {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .main-2__head {
        position: relative;
        top: auto !important;
        left: 0;
        bottom: auto !important;
        transform: none !important;
        padding-top: 58px;
    }
    .main-2 {
        z-index: 1;
    }
    .main-2._sticky .main-2__head {
        position: relative;
    }
    .main-2__content-trigger {
        margin: 0;
    }
    .main-2__content {
        min-height: auto !important;
        opacity: 1 !important;
    }
    .main-2__content-inner,
    ._content-1-active .main-2__content._1 .main-2__content-inner {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
    .main-2__line {
        display: none;
    }
    .main-2__prod {
        display: none;
    }
    .main-2__title {
        height: 2.5em;
    }
    .main-2__content-logo {
        margin-bottom: 24px;
    }
    .main-2__content._2 {
        margin-bottom: 58px !important;
    }
    .main-2__mb-prod {
        position: relative;
        display: block;
        width: 80%;
        max-width: 270px;
        margin: 0 auto;
    }
    .main-2__mb-prod-circle {
        position: absolute;
        top: 30%;
        left: 86%;
        display: block;
        width: 30%;
        border: 1px rgba(255, 255, 255, 0.3) solid;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: 0.5s top ease, 0.5s left ease;
    }
    .main-2__mb-prod-circle._content-2 {
        top: 51%;
        left: 48%;
    }
    .main-2__mb-prod-circle:before {
        content: "";
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }
    .main-2__mb-prod-circle:after {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        left: calc(50% - 2px);
        display: block;
        width: 4px;
        height: 4px;
        background-color: #fff;
        transform: rotate(45deg);
    }
    .main-3_ball._2 {
        top: 0%;
    }
    .main-3_ball._3 {
        top: 93%;
        left: 0;
    }
    .main-3_ball._4 {
        top: 2%;
        left: 90%;
    }
    .main-3_ball._5 {
        top: 90%;
    }
    .main-3__item {
        font-size: 18px;
    }
    .main-4__item-line {
        top: 76px;
    }
    .main-4__title {
        height: 38px;
    }
    .main-4__item-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-4__item:nth-child(2) .main-4__item-line {
        display: none;
    }
    .main-4__item {
        padding-top: 38px;
        padding-bottom: 38px;
    }
    .main-4__item-line {
        top: 76px;
    }
    .main-4__ball._3 {
        top: auto;
        bottom: -5%;
    }
    .main-5:before {
        display: none;
    }
    .main-5__textarea {
        width: 100%;
    }
    .main-6__emfusion-logo {
        height: 26px;
    }
    .main-6__special p {
        padding-left: 1.2em;
    }
}
@media screen and (max-width: 767px) {
    .emfusion-banner__txt {
        top: 10%;
        left: 5%;
        width: 45%;
        max-width: 250px;
    }
    .emfusion-banner__txt._2 {
        right: 5%;
    }
    .emfusion--main .banner__logo {
        height: 50px;
    }
    .main-1__swiper .swiper-slide {
        font-size: 54px;
    }
    /* .main-3__item-container {
        grid-template-columns: repeat(2, 1fr);
    } */
    .main-3__body-item {
        flex-flow: column;
    }
    .main-3__body-img {
        max-width: 100%;
    }
    .main-3__foot {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        max-width: 380px;
        margin: 0 auto;
    }
    .main-3_ball._5 {
        left: 50%;
        top: 80%;
        width: 51%;
    }
    .main-4__title {
        height: 34px;
    }
    .main-5__textarea hr {
        margin: 38px 0;
    }
    .main-6__emfusion-logo {
        height: 24px;
    }
    /* .main-6__body {
        overflow: auto;
    } */
    /* .main-6__row {
        width: max-content;
    } */
    .main-6__row:after {
        display: none;
    }
    .main-6__col {
        width: calc((100% - 50px) / 2);
        /* width: 320px; */
        /* max-width: 80vw; */
        flex-shrink: 0;
        padding: 0 12px;
    }
    .main-6__col._1 {
        width: 50px;
    }
}
@media screen and (min-width: 480px) {
    .main-4__item-title._mobile-only {
        display: none;
    }
}
@media screen and (max-width: 479px) {
    .emfusion--main .banner__logo {
        height: 38px;
    }
    .emfusion-banner__txt {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
    }
    .emfusion-banner__txt._2 {
        top: 79%;
        left: 50%;
        right: auto;
    }
    .main-1__swiper .swiper-slide {
        font-size: 42px;
    }
    .main-3__item {
        font-size: 16px;
    }
    .main-3__chart {
        width: 110px;
        height: 110px;
    }
    .main-4__title {
        height: 28px;
    }
    .main-4__item-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .main-4__item {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .main-4__item-line {
        top: calc(100% - 20px);
        left: 50%;
        width: 48px;
        transform: rotate(90deg);
        transform-origin: top left;
    }
    .main-4__item:nth-child(2) .main-4__item-line {
        display: block;
    }
    .main-4__item-numb {
        display: none;
        font-size: 38px;
    }
    .main-4__item-desc {
        line-height: 1.5;
    }
    .main-4__item-title {
        margin-bottom: 8px;
    }
    .main-5 .title-32 {
        font-size: 20px;
    }
    .main-6__emfusion-logo {
        height: 20px;
        margin-bottom: 10px;
    }
    /* .main-6 .title-28 {
        font-size: 18px;
    }
    .main-6__col {
        width: calc((100% - 36px) / 2);
        padding: 0 6px;
        font-size: 14px;
    }
    .main-6__col._1 {
        width: 36px;
    } */
    .main-6__row {
        flex-flow: column;
        gap: 18px 0;
    }
    .main-6__col,
    .main-6__col._1 {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .main-6__col._3 {
        width: calc(100% + (100vw - 24px) * 0.08);
        padding: 24px 12px;
        margin-left: calc((100vw - 24px) * 0.04 * -1);
        background-color: rgba(255,255,255,0.8);
    }
    .main-6__col._3 .title-28 {
        margin-bottom: 6px;
    }
}
/* @media screen and (max-width: 375px) {
    .main-6 .title-28 {
        font-size: 14px;
    }
    .main-6__col {
        width: calc((100% - 28px) / 2);
    }
    .main-6__col._1 {
        width: 28px;
    }
} */