.header {
    padding: 0 72px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    justify-content: space-between;
}

.header-item {
    font-size: 16px;
    font-family: "Inter-Regular", serif;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #636E72;
    cursor: pointer;
}

.navigator {
    display: flex;
    justify-content: center;
    background-color: #eaeaea;
    box-shadow: 0 4px 8px 0 #0000000F;
    padding-top: 24px;
    padding-bottom: 24px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navigator div {
    font-size: 14px;
    font-family: "Inter-Regular", serif;
    line-height: 17px;
    color: #8B8B8B;
    margin-right: 48px;
    cursor: pointer;
}

.navigator div:last-child {
    margin-right: 0;
}

.header-video {
    width: 100vw;
    height: calc(100vw * (682 / 1440));
    max-height: calc(100vh - 420px);
    object-fit: cover;
}

.explore {
    padding: 72px 0;
    background-color: #FFFFFF;
}

.title1 {
    font-size: 36px;
    font-family: "Inter-Regular", serif;
    line-height: 40px;
    color: #636E72;
    margin-left: 72px;
}

.explore-title {
    font-size: 24px;
    font-family: "Inter-Regular", serif;
    line-height: 36px;
    color: #8B8B8B;
    margin-bottom: 24px;
}

.explore-item-container {
    width: calc(100vw - 72px);
    margin-top: 56px;
    display: flex;
    overflow-x: auto;
    padding-left: 72px;
}

.explore-image-1 {
    width: 755px;
    height: 480px;
    object-fit: contain;
}

.explore-image-2 {
    width: 455px;
    height: 480px;
    object-fit: contain;
}

.calculate {
    padding: 72px;
    background-color: #FAFAFA;
    display: flex;
}

.calculate-cont-1 {
    flex: 2;
    padding-top: 72px;
    padding-right: 72px;
    padding-left: 24px;
}

.calculate-cont-2 {
    flex: 3;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.title2 {
    font-size: 48px;
    font-family: "Inter-Regular", serif;
    line-height: 72px;
    color: #636E72;
}

.text1 {
    margin-top: 32px;
    font-size: 20px;
    font-family: "Inter-Light", serif;
    line-height: 40px;
    color: #636E72;
}

.dropdownButton {
    border: 1px solid #D6D9D8;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: "Inter-Regular", serif;
    line-height: 17px;
    color: #636E72;
    width: 100%;
    background-color: #FFFFFF;
    cursor: pointer;
}

.dropdownButton span {
    color: #F64E60;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    width: calc(100% - 36px);
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 4px 0 #0000000A;
    border-right: 1px solid #D6D9D8;
    border-left: 1px solid #D6D9D8;
    border-bottom: 1px solid #D6D9D8;
    z-index: 1;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 16px;
    top: 42px;
}

.dropdown-content div {
    padding: 10px 8px;
    display: block;
    font-size: 14px;
    font-family: "Inter-Regular", serif;
    line-height: 17px;
    color: #636E72;
    cursor: pointer;
}

.dropdown-content.show {
    display: block;
}

.dropdownButton.show {
    background-color: #FFFFFF;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.general-button {
    background-color: #B06767;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Inter-Regular", serif;
    line-height: 17px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    margin-top: 32px;
}

.general-button.passive {
    background-color: #d7bcbc;
    cursor: unset;
}

.showDataHead {
    border-bottom: 1px solid #D6D9D8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
}

.backTitle {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: "Inter-Regular", serif;
    line-height: 17px;
    color: #B06767;
    cursor: pointer;
}

.dataShowTitle {
    font-size: 12px;
    font-family: "Inter-Regular", serif;
    line-height: 15px;
    color: #636E72;
}

.stageButton {
    background-color: #ECDBDB;
    border-radius: 6px;
    font-family: "Inter-Bold", serif;
    font-size: 12px;
    line-height: 15px;
    color: #B06767;
    width: 108px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    cursor: pointer;
}

.stageButton.active {
    background-color: #B06767 !important;
    color: #FFFFFF !important;
}

.calculate-header {
    flex: 3;
    display: flex;
    border: 0.5px solid #D6D9D8;
    background-color: #F1F1F1;
    height: 52px;
    font-family: "Inter-Bold", serif;
    font-size: 12px;
    line-height: 15px;
    color: #636E72;
    border-radius: 6px;
}

.calculate-header div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0.5px solid #D6D9D8;
    text-align: center;
}

.calculate-header div:last-child {
    border-right: none !important;
}

.calculate-row-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #D6D9D8;
    background-color: #F1F1F1;
    height: 115px;
    font-family: "Inter-Bold", serif;
    font-size: 12px;
    line-height: 15px;
    color: #636E72;
    border-radius: 6px;
    flex: 1;
    margin-right: 16px;
    text-align: center;
}

.calculate-row {
    flex: 3;
    display: flex;
    border: 0.5px solid #D6D9D8;
    background-color: #FAFAFA;
    height: 115px;
    border-radius: 6px;
}

.calculate-row div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0.5px solid #D6D9D8;
}

.calculate-row div:last-child {
    border-right: none !important;
}

.c1 {
    font-family: "Inter-Regular", serif;
    font-size: 14px;
    line-height: 17px;
    color: #2D3436;
}

.c2 {
    font-family: "Inter-Bold", serif;
    font-size: 14px;
    line-height: 17px;
    color: #26C9A2;
}

.c3 {
    font-family: "Inter-Regular", serif;
    font-size: 12px;
    line-height: 15px;
    color: #2D3436;
    margin-top: 4px;
}

.c4 {
    font-family: "Inter-Bold", serif;
    font-size: 14px;
    line-height: 17px;
    color: #B06767;
}

.services {
    background-color: #FFFFFF;
    padding: 72px;
    display: flex;
}

.service-item {
    font-family: "Inter-Light", serif;
    font-size: 16px;
    line-height: 27px;
    color: #636E72;
    border-bottom: 1px solid #D6D9D8;
    padding: 16px 0;
    display: flex;
    width: 194px;
}

.service-item:first-child {
    padding-top: 0 !important;
}

.service-title {
    font-family: "Inter-Light", serif;
    font-size: 40px;
    line-height: 44px;
    color: #636E72;
}

.touch {
    padding: 72px;
    background-color: #FAFAFA;
    display: flex;
}

.touch-text1 {
    font-family: "Inter-Light", serif;
    font-size: 16px;
    line-height: 27px;
    color: #636E72;
}

.touch-input {
    border: 1px solid #D6D9D8;
    padding: 18px;
    border-radius: 6px;
    font-family: "Inter-Regular", serif;
    font-size: 14px;
    line-height: 17px;
    color: #636E72;
    outline: none;
}

.touch-input2 {
    border: 1px solid #D6D9D8;
    padding: 18px;
    border-radius: 6px;
    font-family: "Inter-Regular", serif;
    font-size: 14px;
    line-height: 17px;
    color: #636E72;
    outline: none;
    resize: none;
}

.agreement {
    font-family: "Inter-Light", serif;
    font-size: 16px;
    line-height: 27px;
    color: #636E72;
    display: flex;
    align-items: center;
}

.agreement span {
    color: #007BFF;
    cursor: pointer;
}

.footer {
    font-family: "Inter-Regular", serif;
    font-size: 14px;
    line-height: 17px;
    color: #636E72;
    padding: 56px 72px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-menu {
    display: none;
    cursor: pointer;
}

.ecufile-logo {
    width: 313px;
    height: 88px;
    object-fit: contain;
}

.mobile-menu {
    display: none;
}

.mobile-cont {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 16px 32px 40px 32px;
    width: 100%;
}

.mobile-cont div {
    width: 100%;
    border-bottom: 0.5px solid #D6D9D8;
    font-family: "Inter-Regular", serif;
    font-size: 16px;
    line-height: 20px;
    color: #8B8B8B;
    padding: 16px 0;
}

.ic-scroll {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.scroll-cont {
    display: flex;
    margin-top: 56px;
    justify-content: flex-end;
    margin-right: 72px;
}

.service-cont {
    display: flex;
    margin-top: 56px;
}

.s-ct1 {
    flex: 1;
    margin-right: 36px;
}

.s-ct2 {
    flex: 1;
    margin-left: 36px;
}

.s-img {
    width: 670px;
    height: 480px;
    object-fit: contain;
}

.img-touch {
    width: 476px;
    height: 706px;
    object-fit: contain;
}

.lang-dr {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 32px;
    border: 1px solid #636E72;
    padding: 0 12px;
    width: 100%;
    z-index: 99999;
    border-radius: 12px;
    background-color: #FFFFFF;
}

.lang-dr div {
    padding: 8px 0;
    cursor: pointer;
}

.lang-dr div:hover {
    background-color: #F1F1F1;
}

.lang-dr div:first-child {
    border-bottom: 1px solid #636E72;
}

.fade-in-animation, #selectionContainer {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .lang-dr {
        top: 62px !important;
        width: 100px !important;
        padding: 12px !important;
    }

    .navigator {
        display: none;
    }

    .header-right {
        display: none;
    }

    .header-menu {
        display: block;
    }

    .ecufile-logo {
        width: 196px;
        height: 56px;
    }

    .header {
        position: sticky;
        top: 0;
        padding: 8px 24px;
        z-index: 99;
    }

    .mobile-menu {
        position: absolute;
        left: 0;
        top: 116px;
        background-color: rgba(0, 0, 0, 0.4);
        width: 100vw;
        height: calc(100vh - 116px);
        align-items: flex-start;
    }

    .header-video {
        height: 382px;
    }

    .title1 {
        font-size: 28px;
        margin-left: 24px;
    }

    .explore-item-container {
        padding-left: 24px;
        width: calc(100vw - 48px);
        margin-top: 32px;
    }

    .explore-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .explore-image-1 {
        width: 438px;
        height: 274px;
        object-fit: contain;
    }

    .explore-image-2 {
        width: 264px;
        height: 274px;
        object-fit: contain;
    }

    .ic-scroll {
        width: 40px;
        height: 40px;
    }

    .scroll-cont {
        margin-top: 32px;
        margin-right: 24px;
    }

    .explore {
        padding: 32px 0;
    }

    .calculate {
        padding: 32px 24px;
        flex-direction: column;
    }

    .calculate-cont-2 {
        flex: 1;
        padding: 32px 24px;
    }

    .title2 {
        font-size: 32px;
        line-height: 48px;
    }

    .text1 {
        margin-top: 16px;
        font-size: 16px;
        line-height: 32px;
        border-bottom: 1px solid #D6D9D8;
        padding-bottom: 32px;
    }

    .general-button {
        margin-top: 24px;
    }

    .services {
        padding: 32px 24px;
        flex-direction: column-reverse;
    }

    .service-title {
        font-size: 28px;
        line-height: 40px;
        margin-top: 32px;
    }

    .service-cont {
        margin-top: 32px;
        flex-direction: column;
    }

    .service-item {
        width: calc(100vw - 48px);
    }

    .s-ct1 {
        margin-right: 0;
    }

    .s-ct2 {
        margin-left: 0;
    }

    .s-img {
        width: calc(100vw - 48px);
        height: calc((100vw - 48px) * (480 / 670));
    }

    .touch {
        padding: 32px 24px;
        flex-direction: column;
    }

    .img-touch {
        width: calc(100vw - 48px);
        height: calc((100vw - 48px) * (706 / 476));
    }

    .touch-text1 {
        border-bottom: 1px solid #D6D9D8;
        padding-bottom: 32px;
    }

    .footer {
        flex-direction: column;
    }

    .calculate-cont-1 {
        padding-top: 32px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .dataShowTitle {
        font-size: 10px;
        line-height: 14px;
    }

    .calculate-header {
        font-size: 10px;
        line-height: 14px;
    }

    .calculate-row-item {
        font-size: 10px;
        line-height: 14px;
    }

    .c1 {
        font-size: 12px;
        line-height: 14px;
    }

    .c2 {
        font-size: 12px;
        line-height: 14px;
    }

    .c3 {
        font-size: 12px;
        line-height: 14px;
    }

    .c4 {
        font-size: 12px;
        line-height: 14px;
    }
}
