.home-form {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 8px 20px;
    background: rgb(39, 101, 217);
    z-index: 10;
}

.home-form-row {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.home-form .home-form-row .home-form-t {
    font-size: 20px;
    color: white;
    min-width: 160px;
}

.home-form .home-form-row .home-form-t span {
    font-size: 34px;
}

.home-form .home-form-row .home-form-b {
    display: flex;
    width: 100%;
}

.home-form .home-form-row .home-form-l {
    display: flex;
    width: 100%;
}

.home-form .home-form-row .home-form-r {
    display: flex;
    min-width: 310px;
}

.home-form .home-form-row input,
.home-form .home-form-row select {
    width: 33.3333%;
    height: 40px;
    line-height: 38px;
    border: solid 1px #CCC;
    border-radius: 10px;
    margin: 0 10px;
    padding-left: 10px;
}

.home-form .home-form-row label.checkbox {
    display: flex;
    min-width: fit-content;
    position: relative;
    overflow: hidden;
    align-items: center;
    margin: 0 10px;
}

.home-form .home-form-row label.checkbox input[type=checkbox] {
    position: absolute;
    left: -99999px;
}

.home-form .home-form-row label.checkbox .checkbox-text {
    color: white;
    margin-left: 7px;
}

.home-form .home-form-row label.checkbox .checkbox-box {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: solid 2px white;
    border-radius: 6px;
    position: relative;
    transition: ease-in-out 0.1s all;
}

.home-form .home-form-row label.checkbox .checkbox-box i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.home-form .home-form-row label.checkbox input[type=checkbox]:checked+.checkbox-box {
    background: #616161;
    border-color: #212112
}

.home-form .home-form-row label.checkbox input[type=checkbox]:checked+.checkbox-box i {
    display: inline-block;
    color: white;
}

.home-form .home-form-row button {
    width: 20%;
    min-width: 140px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border: 0;
    background: #212121;
    color: white;
    font-size: 15px;
    border-radius: 10px;
}

.home-form .home-form-row button.application-req {}

.home-form .home-form-row button.application-proc {
    display: none;
}

.home-form .home-form-row button.application-proc i {
    animation: application_proc 2s infinite backwards;
    font-size: 20px;
}

.home-form .home-form-row button.application-done {
    display: none;
    color: #00FF95
}

.home-form .home-form-row button.application-done i {
    font-size: 20px;
    margin-right: 5px;
    line-height: 40px;
    vertical-align: top;
}

.home-form.applicationproc .home-form-row button.application-req {
    display: none;
}

.home-form.applicationproc .home-form-row button.application-proc {
    display: inline-block;
}

.home-form.applicationproc .home-form-row button.application-done {
    display: none;
}

.home-form.applicationdone .home-form-row button.application-req {
    display: none;
}

.home-form.applicationdone .home-form-row button.application-proc {
    display: none;
}

.home-form.applicationdone .home-form-row button.application-done {
    display: inline-block;
}

.home-call {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 5;
    display: none;
}

.home-call button {
    width: 65px;
    height: 65px;
    border: solid 1px #CCC;
    border-radius: 50%;
    background: white;
    text-align: center;
    padding: 0;
}

.home-call button i {
    color: rgb(39, 101, 217);
    font-size: 32px;
    line-height: 65px;
    vertical-align: center;
}

@keyframes application_proc {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Section 1 Style : S ------------------------------------------------------------------------*/
/* section {
    overflow-x: hidden;
} */

.yc-home-1 {
    width: 100%;
    height: 100vh;
    min-height: 900px;
    position: relative;
}

.yc-home-1 .home-1-b,
.yc-home-1 .home-1-c {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.yc-home-1 .home-1-b {
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.yc-home-1 .home-1-b .home-1-b-cover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgb(5, 48, 128);
    background: linear-gradient(0deg, rgba(5, 48, 128, 0.7) 4%, rgba(5, 48, 128, 0.3) 100%);
}

.yc-home-1 .home-1-b video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    z-index: 1;
}

.yc-home-1 .home-1-c {
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
}

.yc-home-1 .home-1-top {
    height: 60px;
    line-height: 59px;
    border-bottom: solid 1px white;
}

.yc-home-1 .home-1-top h2 {
    font-size: 20px;
    color: white;
    font-weight: normal;
}

.yc-home-1 .home-1-body {
    height: -moz-calc(100% - 60px);
    height: -webkit-calc(100% - 60px);
    height: calc(100% - 60px);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.yc-home-1 .home-1-body .home-1-title h1 {
    font-size: 75px;
    color: white;
}

.yc-home-1 .home-1-body .home-1-title h3 {
    font-size: 65px;
    color: white;
    font-weight: normal;
}

.yc-home-1 .home-1-body .home-1-title p {
    font-size: 26px;
    color: white;
    opacity: 0.8;
}

.yc-home-1 .home-1-body .home-1-imgs {
    width: 50%;
    min-width: 50%;
    height: 100%;
    overflow: hidden;
}

.yc-home-1 .home-1-body .home-1-imgs ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.yc-home-1 .home-1-body .home-1-imgs ul li {
    width: 100%;
    min-height: 100%;
    position: relative;
}

.yc-home-1 .home-1-body .home-1-imgs img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
}

/* Section 1 Style : E ------------------------------------------------------------------------*/


/* Section 2 Style : S ------------------------------------------------------------------------*/
.home-2-desc {
    padding: 60px 0;
    text-align: center;
    font-size: 52px;
    color: black;
    line-height: 1.4;
    font-weight: 600;
}

/* Section 2 Style : E ------------------------------------------------------------------------*/

/* Section 3 Style : S ------------------------------------------------------------------------*/
.yc-home-3 {
    position: relative;
    overflow: hidden;
}

.yc-home-3 .home-3-contents {}

.yc-home-3 .home-3-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: -1;
}

.yc-home-3 .home-3-bg>* {
    width: 50%;
    margin: 0;
    height: 100%;
    float: left;
}

.yc-home-3 .home-3-bg .home-3-bg-left {
    background: rgb(247, 246, 255);
    background: linear-gradient(180deg, rgba(247, 246, 255, 1) 4%, rgba(247, 246, 255, 1) 70%, rgba(247, 246, 255, 0) 90%);
    ;
}

.yc-home-3 .home-3-bg .home-3-bg-right {
    background: rgb(228, 227, 251);
    background: linear-gradient(180deg, rgba(228, 227, 251, 1) 4%, rgba(228, 227, 251, 1) 70%, rgba(247, 246, 255, 0) 90%);
}

.home-3-top {}

.home-3-top .home-3-line {
    display: flex;
    height: 60px;
    justify-content: center;
}

.home-3-top .home-3-line .home-3-line-center {
    width: 200px;
}

.home-3-top .home-3-line .home-3-line-bar {
    height: 60px;
    width: 4px;
    background: white;
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
}

.home-3-top .home-3-box {
    position: relative;
    z-index: 2;
    margin: -1px auto 0;
    height: 120px;
    line-height: 120px;
    background: white;
    width: 90%;
    max-width: 600px;
    box-shadow: re4 -1px -1px 16px 2px rgba(171, 166, 237, 0.75);
    -webkit-box-shadow: -1px -1px 16px 2px rgba(171, 166, 237, 0.75);
    -moz-box-shadow: -1px -1px 16px 2px rgba(171, 166, 237, 0.75);
    text-align: center;
    font-size: 55px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-3-top .home-3-box img {
    height: 60px;
}

.home-3-body {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.home-3-body .home-3-body-left,
.home-3-body .home-3-body-right {
    width: 50%;
    max-width: 450px;
    padding: 0 20px;
}

.home-3-body .machine-item {
    text-align: center;
}

.home-3-body .machine-item .machine-item-t {
    font-size: 50px;
    font-weight: 700;
    margin-top: 10px;
}

.home-3-body .machine-item .machine-item-st {
    font-size: 23px;
    color: rgb(97, 116, 163);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-3-body .machine-item .machine-item-st img {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.home-3-body .machine-item .machine-item-st2 {
    font-size: 50px;
    color: rgb(97, 116, 163);
    font-weight: 700;
}

.home-3-body .machine-item .machine-item-l {
    margin: 10px auto;
    width: 1px;
    background: rgb(181, 198, 240);
    height: 90px;
    opacity: 0.5
}

.home-3-body .machine-item .machine-item-mov {
    margin-top: 10px;
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border: solid 5px rgb(181, 198, 240);
    border-radius: 16px;
    position: relative;
}

.home-3-body .machine-item .machine-item-mov .mov-img {
    position: absolute;
}

.home-3-body .machine-item .machine-item-mov .mov-img-top-right {
    width: 120px;
    height: auto;
    top: 0;
    right: 0;
    transform: translate(36%, -36%)
}

.home-3-body .machine-item .machine-item-mov .mov-img-bottom-right {
    width: 500px;
    height: auto;
    bottom: 0;
    right: 0;
    transform: translate(190px, 100px)
}

.home-3-body .machine-item .machine-item-mov .mov-img-bottom-left {
    width: 500px;
    height: auto;
    bottom: 0;
    left: 0;
    transform: translate(-210px, 100px)
}

.home-3-body .machine-item .machine-item-mov .mov-img-bottom-left img {
    width: 100%;
}

.home-3-body .machine-item .machine-item-mov .mov-img-bottom-right img {
    width: 100%;
}


.home-3-body .machine-item.youngcoffee .machine-item-t,
.home-3-body .machine-item.youngcoffee .machine-item-st,
.home-3-body .machine-item.youngcoffee .machine-item-st2 {
    color: rgb(105, 41, 255);
}

.home-3-body .machine-item.youngcoffee .machine-item-st2.mobile {
    display: none;
}

.home-3-body .machine-item.youngcoffee .machine-item-st2 span {
    animation: home13_textanim 1s infinite backwards;
}

.home-3-body .machine-item.youngcoffee .machine-item-l {
    background: rgb(105, 41, 255);
}

.home-3-body .machine-item.youngcoffee .machine-item-mov {
    border-color: rgb(105, 41, 255);
}

.home-3-bottom {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 90px;
}

.home-3-bottom .home-3-bottom-item {
    margin: 0 20px;
}

.home-3-bottom .home-3-bottom-item-t {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #777;
    margin-bottom: 10px;
}

.home-3-bottom .home-3-bottom-item-t i {
    font-size: 28px;
}

.home-3-bottom .home-3-bottom-item-b {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
}

.home-3-bottom .home-3-bottom-item-b span {
    font-size: 50px;
    color: rgb(35, 90, 212);
    font-weight: 700;
}

@keyframes home13_textanim {
    0% {
        visibility: visible
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}

/* Section 3 Style : E ------------------------------------------------------------------------*/

/* Section 4 Style : S ------------------------------------------------------------------------*/
.yc-home-4 {
    padding: 90px 0;
}

.yc-home-4 .home-4-t {
    font-size: 55px;
    text-align: center;
}

.yc-home-4 .home-4-b {
    position: relative;
    max-width: 800px;
    margin: 100px auto 0;
}

.yc-home-4 .home-4-b-row {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 14px auto;
    align-items: center;
    background: rgb(217, 230, 255);
    border-radius: 8px;
    height: 56px;
}

.yc-home-4 .home-4-b-row-c {
    min-width: 30%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.yc-home-4 .home-4-b-row-l {
    text-align: right;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.yc-home-4 .home-4-b-row-l .pc {
    display: block;
}

.yc-home-4 .home-4-b-row-l .mobile {
    display: none;
}

.yc-home-4 .home-4-b-row-l b {
    color: #777;
    font-size: 0.9em;
    font-weight: 500;
}

.yc-home-4 .home-4-b-row-l i {
    color: rgb(151, 168, 207);
    font-size: 20px;
    line-height: 14px;
    vertical-align: top;
}

.yc-home-4 .home-4-b-row-r {
    text-align: left;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: rgb(30, 81, 235);
}

.yc-home-4 .home-4-b-row-r i {
    font-size: 20px;
}

.yc-home-4 .home-4-b-row.row-t {
    background: black;
    height: 70px;
}

.yc-home-4 .home-4-b-row.row-t .home-4-b-row-c,
.yc-home-4 .home-4-b-row.row-t .home-4-b-row-l,
.yc-home-4 .home-4-b-row.row-t .home-4-b-row-r {
    color: white;
}

.yc-home-4 .home-4-b-row.row-t .home-4-b-row-c {
    font-size: 22px;
}

.yc-home-4 .home-4-b-row.row-t .home-4-b-row-l {
    font-size: 16px;
}



.yc-home-4 .home-4-b-row.row-t .home-4-b-row-r {
    font-size: 25px;
}

.yc-home-4 .home-4-b .home-4-img {
    width: 140px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

/* Section 4 Style : E ------------------------------------------------------------------------*/

/* Section 5 Style : S ------------------------------------------------------------------------*/
.yc-home-5 {
    position: relative;

}

.yc-home-5 .home-5-bglayer {
    position: absolute;
    background: rgb(242, 170, 52);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.yc-home-5 .home-5-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    padding: 100px 0;
    z-index: 2;
}

.yc-home-5 .img-snow-1 {
    position: absolute;
    top: 50px;
    left: 40%;
    width: 60px;
    animation: home-5-twinkle 1s infinite backwards;
    z-index: 0;
}

.yc-home-5 .img-snow-2 {
    width: 80px;
    position: absolute;
    left: 70%;
    top: 130px;
    animation: home-5-twinkle 2.1s infinite backwards;
    z-index: 0;
}

.yc-home-5 .home-5-box {
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 2;
}

.yc-home-5 .home-5-box .home-5-boxline {
    margin: 0 auto;
    width: 2px;
    background: white;
    height: 100px;
}

.yc-home-5 .home-5-box .home-5-box-container {
    position: relative;
    overflow: hidden;
}

.yc-home-5 .home-5-box .home-5-box-container-text {
    height: 200px;
    width: 200px;
    background: white;
    border-radius: 50%;
    position: relative;
    animation: home-5-rotate 3.1s infinite backwards;
}

.yc-home-5 .home-5-box .home-5-box-container-text span {
    text-align: center;
    display: inline-block;
    height: 50%;
    font-size: 22px;
    width: 1em;
    padding-top: 20px;
    position: absolute;
    left: 50%;
    transform-origin: bottom;
    transform: rotate(calc(17.6deg * var(--i)));
    font-weight: 600;
    color: rgb(242, 170, 52);
}

.yc-home-5 .home-5-box .home-5-box-container img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    animation: home-5-swable 1.1s ease-in-out infinite backwards;
    transform-origin: left;
}

.home-5-dessert-container {
    max-width: 90vw;
    margin: 237px auto 0;
}

.home-5-dessert-container .home-5-dessert-row {
    color: white;
    text-align: center;
    margin-bottom: 16px;
    font-size: 50px;
    height: 60px;
    line-height: 60px;
    font-weight: 600;
    font-family: 'Hakgyoansim', 'Pretendard', sans-serif, serif;

}


.home-5-dessert-container .home-5-dessert-row:last-child {
    margin-bottom: 0;
}

.home-5-dessert-container .home-5-dessert-row:nth-child(1) {
    opacity: 0.7;
}

.home-5-dessert-container .home-5-dessert-row:nth-child(2) {
    opacity: 0.5;
    font-size: 45px;
}

.home-5-dessert-container .home-5-dessert-row:nth-child(3) {
    opacity: 0.3;
    font-size: 40px;
}

.home-5-dessert-container .home-5-dessert-row:nth-child(4) {
    opacity: 0.1;
    font-size: 37px;
}


.yc-home-5 .home-5-t {
    font-size: 40px;
    text-align: center;
    color: rgb(119, 55, 46);
    line-height: 1.6;

}

.yc-home-5 .home-5-t span {
    font-weight: bold;
    font-size: 43px;
}

.yc-home-5 .home-5-t strong {
    font-family: 'Hakgyoansim', 'Pretendard', sans-serif, serif;
    font-weight: 600;
    font-size: 50px;
}


.yc-home-5 .home-5-b {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.yc-home-5 .home-5-b>* {
    margin: 0 5px;
}

.yc-home-5 .home-5-b .home-5-content-1 {
    background: rgb(119, 55, 46);
    color: white;
    font-size: 40px;
    display: inline-block;
    padding: 8px;
    font-weight: 600;
}

.yc-home-5 .home-5-b .home-5-content-2 .home-5-img {
    height: 220px;
    display: none;
    transition: ease-in-out 0.2s all;
}

.yc-home-5 .home-5-b .home-5-content-2 .home-5-img.on {
    display: inline-block;
}

.yc-home-5 .home-5-b .home-5-content-2 .home-5-img:hover {
    transform: rotate(10deg);
}

.yc-home-5 .home-5-b .home-5-content-3 {
    min-width: 140px;
    height: 56px;
    border-bottom: solid 5px rgb(119, 55, 46);
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
}

.yc-home-5 .home-5-b .home-5-content-3 .content-3-item {
    height: 56px;
    line-height: 56px;
    text-align: center;
    width: 100%;
    font-size: 50px;
    color: rgb(119, 55, 46);
    position: absolute;
    left: 0;
    top: 120%;
    transition: ease-in-out all 0.1s;
    font-weight: 700;
}

.yc-home-5 .home-5-b .home-5-content-3 .content-3-item.on {
    top: 0;
}

.yc-home-5 .home-5-b .home-5-content-4 {
    font-size: 40px;
    color: white;
}

.yc-home-5 .home-5-f {
    font-size: 48px;
    color: black;
    text-align: center;
}

.yc-home-5 .home-5-f br {
    display: none;
}

.yc-home-5 .home-5-f span {
    font-weight: 600;
    font-size: 1.1em;
}


@keyframes home-5-twinkle {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0.2
    }
}

@keyframes home-5-rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(365deg)
    }
}

@keyframes home-5-swable {
    0% {
        transform: rotate(0deg) translate(-50%, -50%)
    }

    50% {
        transform: rotate(14deg) translate(-50%, -50%)
    }

    0% {
        transform: rotate(0deg) translate(-50%, -50%)
    }
}

/* Section 5 Style : E ------------------------------------------------------------------------*/

/* Section 6 Style : S ------------------------------------------------------------------------*/
.yc-home-6 .home-6-row {
    width: 100%;
    display: flex;
}

.yc-home-6 .home-6-row>* {
    width: 50%;
}

.yc-home-6 .home-6-row .home-6-left {
    padding: 120px 0;
    text-align: center;
}

.yc-home-6 .home-6-row .home-6-right {
    position: relative;
    overflow: hidden;
}

.yc-home-6 .home-6-t {
    font-size: 50px;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 600;
}

.yc-home-6 .home-6-t span {
    color: rgb(35, 90, 212);
}

.yc-home-6 .home-6-s {
    font-size: 21px;
    line-height: 1.4;
}

.yc-home-6 .home-6-scroller {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.yc-home-6 .home-6-scroller .home-6-rail {
    width: 33.3333%;
    height: 100%;
}

.yc-home-6 .home-6-scroller .home-6-rail .home-6-rail-item {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yc-home-6 .home-6-scroller .home-6-rail .home-6-rail-item img {
    max-width: 80%;
    max-height: 80%;
    transition: ease-in-out 0.2s all;
}

.yc-home-6 .home-6-scroller .home-6-rail .home-6-rail-item:hover img {
    transform: rotate(14deg) scale(1.1)
}

.yc-home-6 .home-6-scroller .home-6-rail.rail-1 .home-6-rail-section {
    animation: swipe_bottom_top 10s linear infinite backwards;
}

.yc-home-6 .home-6-scroller .home-6-rail.rail-2 .home-6-rail-section {
    animation: swipe_top_bottom 10s linear infinite backwards;
}

.yc-home-6 .home-6-scroller .home-6-rail.rail-3 .home-6-rail-section {
    animation: swipe_bottom_top 10s linear infinite backwards;
}

.yc-home-6 .home-6-scroller-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 2;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 3%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
}

@keyframes swipe_bottom_top {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }

}

@keyframes swipe_top_bottom {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* Section 6 Style : E ------------------------------------------------------------------------*/

/* Section 7 Style : S ------------------------------------------------------------------------*/
.yc-home-7 {
    background: rgb(233, 240, 255);
    background: linear-gradient(180deg, rgba(233, 240, 255, 1) 0%, rgba(255, 255, 255, 1) 60%);
    padding: 120px 0;
}

.yc-home-7 .home-7-t {
    text-align: center;
    font-size: 55px;
    color: rgb(35, 90, 212);
    font-weight: 700;
    font-family: 'PaytoneOne', 'Pretendard', sans-serif, serif;
}

.yc-home-7 .home-7-b {
    margin-top: 60px;
}

.yc-home-7 .home-7-tab-menu {
    text-align: center;
}

.yc-home-7 .home-7-tab-menu button {
    background: transparent;
    border: 0;
    color: rgb(35, 90, 212);
    font-size: 24px;
    margin: 0 23px;
    border-bottom: solid 2px transparent;
    padding: 0 0 4px 0;
    opacity: 0.5;
    cursor: pointer;
    transition: ease-in-out 0.2s all;
    font-family: 'PaytoneOne', 'Pretendard', sans-serif, serif;
}

.yc-home-7 .home-7-tab-menu button.on {
    border-color: rgb(35, 90, 212);
    opacity: 1;
    font-weight: 600;
}

.yc-home-7 .home-7-tab-body {
    margin-top: 80px;
    position: relative;
}

.yc-home-7 .home-7-tab-body .home-7-tab-container {
    display: none;
}

.yc-home-7 .home-7-tab-body .home-7-tab-container.on {
    display: block;
    animation: home7show 0.03s ease-in-out;
}

.yc-home-7 .home-7-tab-body-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.yc-home-7 .home-7-menu {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.yc-home-7 .home-7-menu .home-7-menu-btn {
    position: absolute;
    background: #666;
    top: 50%;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    transition: ease-in-out 0.1s all;
    text-align: center;
    padding: 0;
}

.yc-home-7 .home-7-menu .home-7-menu-btn:active {
    transform: scale(0.9);
}

.yc-home-7 .home-7-menu .home-7-menu-btn i {
    line-height: 40px;
    font-size: 20px;
    color: white;
}

.yc-home-7 .home-7-menu .home-7-menu-btn.menu-btn-left {
    left: 20px;
}

.yc-home-7 .home-7-menu .home-7-menu-btn.menu-btn-right {
    right: 20px;
}

.yc-home-7 .home-7-menu .home-7-menu-scroll {
    display: flex;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.yc-home-7 .home-7-menu .home-7-menu-scroll .home-7-menu-item {
    min-width: 20%;
    text-align: center;
    padding: 0 20px;
}

.yc-home-7 .home-7-menu .home-7-menu-scroll .home-7-menu-item img {
    max-width: 100%;
    max-height: 187px;
    display: inline-block;
    transition: ease-in-out 0.2s;
}

.yc-home-7 .home-7-menu .home-7-menu-scroll .home-7-menu-item .home-7-menu-item-t {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    max-width: 100%;
    word-break: break-all;
    white-space: collapse;
}

.yc-home-7 .home-7-menu .home-7-menu-scroll .home-7-menu-item .home-7-menu-item-st {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    white-space: normal;

}

.yc-home-7 .home-7-menu .home-7-menu-scroll .home-7-menu-item:hover img {
    transform: scale(1.1) rotate(13deg)
}

@keyframes home7show {
    0% {
        transform: translateX(1%);
    }

    1000% {
        transform: translateX(100%);
    }
}

/* Section 7 Style : E ------------------------------------------------------------------------*/

/* Section 8 Style : S ------------------------------------------------------------------------*/
.yc-home-8 .home-8-top-img {
    display: block;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.yc-home-8 .home-8-t {
    text-align: center;
    font-size: 45px;
    line-height: 1.5;
    margin-top: 100px;
    font-weight: 600;
}

.yc-home-8 .home-8-t img {
    display: inline-block;
    margin-bottom: 10px;
}

.yc-home-8 .home-8-t span.highlight {
    color: rgb(35, 90, 212);
}

.yc-home-8 .home-8-b {
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 50px auto 0;
}

.yc-home-8 .home-8-menu {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.yc-home-8 .home-8-menu .home-8-menu-btn {
    position: absolute;
    background: rgba(0, 0, 0, .3);
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    transition: ease-in-out 0.2 all;
}

.yc-home-8 .home-8-menu .home-8-menu-btn:active {
    transform: translateY(-50%) scale(0.9)
}

.yc-home-8 .home-8-menu .home-8-menu-btn i {
    color: white;
    font-size: 20px;
    line-height: 40px;
}

.yc-home-8 .home-8-menu .home-8-menu-btn.menu-btn-left {
    left: 20px;
}

.yc-home-8 .home-8-menu .home-8-menu-btn.menu-btn-right {
    right: 20px;
}

.yc-home-8 .home-8-menu .home-8-menu-scroll {
    display: flex;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.yc-home-8 .home-8-menu .home-8-menu-scroll .home-8-menu-item {
    min-width: 33.333333%;
    width: 33.333333%;
    aspect-ratio: 1;
    position: relative;
    padding: 0 10px;
}

.yc-home-8 .home-8-menu .home-8-menu-scroll .home-8-menu-item-img {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    overflow: hidden;
}

/* Section 8 Style : E ------------------------------------------------------------------------*/

/* Section 9 Style : S ------------------------------------------------------------------------*/
.yc-home-9 {
    padding: 40px 0 0;
}

.yc-home-9 .home-9-b {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.yc-home-9 .home-9-bg {
    position: absolute;
    width: 100%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.yc-home-9 .home-9-bg video {
    width: 100%;
    filter: brightness(0.7);
}

.yc-home-9 .home-9-contents {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    text-align: center;
}

.yc-home-9 .home-9-contents .home-9-img {
    position: relative;
    display: inline-block;
}

.yc-home-9 .home-9-contents .home-9-img img {
    height: 160px;
}

.yc-home-9 .home-9-contents .home-9-img .hover {
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.yc-home-9 .home-9-contents .home-9-t {
    color: white;
    font-size: 45px;
    line-height: 1.4;
    margin-top: 30px;
    font-weight: 600;
}

.yc-home-9 .home-9-f {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.yc-home-9 .home-9-f .home-9-lines .home-9-lines-1,
.yc-home-9 .home-9-f .home-9-lines .home-9-lines-3 {
    background: rgb(217, 230, 255);
}

.yc-home-9 .home-9-f .home-9-lines .home-9-lines-2 {
    background: rgb(153, 187, 255);
}

.yc-home-9 .home-9-f .home-9-lines .home-9-lines-scroll {
    display: flex;
    position: relative;
}

.yc-home-9 .home-9-f .home-9-lines .home-9-lines-scroll .home-9-lines-item {
    height: 60px;
    line-height: 67px;
    min-width: fit-content;
    padding: 0 50px;
    font-size: 42px;
    color: rgb(49, 108, 232);
    font-weight: 700;
    white-space: nowrap;

}

.yc-home-9 .home-9-f .home-9-lines .home-9-lines-2 .home-9-lines-scroll .home-9-lines-item {
    color: rgb(217, 230, 255);
    -webkit-text-fill-color: rgb(217, 230, 255);
    -webkit-text-stroke: 2px rgb(49, 108, 232);
    white-space: nowrap;
}

/* Section 9 Style : E ------------------------------------------------------------------------*/

/* Section 10 Style : S ------------------------------------------------------------------------*/
.yc-home-10 {
    background: #212121;
    padding: 90px 0 0;
}

.yc-home-10 .home-10-t {
    text-align: center;
    color: rgb(35, 90, 212);
    font-size: 72px;
    font-weight: 700;
    font-family: 'Poppins', 'Pretendard', sans-serif, serif;
}

.yc-home-10 .home-10-t span {
    color: rgb(35, 90, 212);
    -webkit-text-fill-color: #212121;
    -webkit-text-stroke: 2px rgb(35, 90, 212);
    font-family: 'Poppins', 'Pretendard', sans-serif, serif;
}

.yc-home-10 .home-10-b {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.yc-home-10 .home-10-b iframe {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    border: solid 1px #515151;
}

.yc-home-10 .home-10-menu {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.yc-home-10 .home-10-menu .home-10-menu-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    border: 0;
    background: rgba(35, 90, 212, 0.7);
    border-radius: 50%;
    cursor: pointer;
}

.yc-home-10 .home-10-menu .home-10-menu-btn i {
    font-size: 20px;
    color: white;
    line-height: 40px;
}

.yc-home-10 .home-10-menu .home-10-menu-btn.menu-btn-left {
    left: 20px;
}

.yc-home-10 .home-10-menu .home-10-menu-btn.menu-btn-right {
    right: 20px;
}

.yc-home-10 .home-10-menu .home-10-menu-scroll {
    display: flex;
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.yc-home-10 .home-10-menu .home-10-menu-scroll .home-10-menu-item {
    min-width: 25%;
    padding: 0 10px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.yc-home-10 .home-10-menu .home-10-menu-scroll .home-10-menu-item img {
    width: 100%;
    height: auto;
}

.yc-home-10 .home-10-menu .home-10-menu-scroll .home-10-menu-item .menu-item-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
}

.yc-home-10 .home-10-menu .home-10-menu-scroll .home-10-menu-item:hover .menu-item-play path:nth-child(1) {
    transition: ease-in-out 0.2s all;
}

.yc-home-10 .home-10-menu .home-10-menu-scroll .home-10-menu-item:hover .menu-item-play path:nth-child(1) {
    fill: rgb(255, 0, 45);
}

.yc-home-10 .home-10-f {
    margin: 80px auto 0;
    position: relative;
    overflow: hidden;
}

.yc-home-10 .home-10-f .home-10-lines .home-10-lines-1,
.yc-home-10 .home-10-f .home-10-lines .home-10-lines-3 {
    background: rgb(217, 230, 255);
}

.yc-home-10 .home-10-f .home-10-lines .home-10-lines-2 {
    background: rgb(153, 187, 255);
}

.yc-home-10 .home-10-f .home-10-lines .home-10-lines-scroll {
    display: flex;
    position: relative;
}

.yc-home-10 .home-10-f .home-10-lines .home-10-lines-scroll .home-10-lines-item {
    height: 60px;
    line-height: 67px;
    min-width: fit-content;
    padding: 0 50px;
    font-size: 42px;
    color: rgb(49, 108, 232);
    font-weight: 700;
}

/* Section 10 Style : E ------------------------------------------------------------------------*/

/* Section 11 Style : S ------------------------------------------------------------------------*/
.yc-home-11 {
    padding: 90px 0;
}

.yc-home-11 .home-11-t {
    font-size: 50px;
    font-weight: 500;
    text-align: center;
}

.yc-home-11 .home-11-t span {
    font-size: 60px;
    color: rgb(49, 108, 232);
    font-weight: 700;
}

.yc-home-11 .home-11-d {
    text-align: center;
    margin: 40px 0;
    font-size: 22px;
    line-height: 1.4;
}

.yc-home-11 .home-11-d.mobile {
    display: none;
}

.yc-home-11 .home-11-b {
    margin-top: 40px;
    padding: 0 20px;
}

.yc-home-11 .home-11-infobox {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background-image: url(/assets/home/home_11_img_bg_2.webp);
    background-size: cover;
    background-position: center;
    display: flex;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item {
    height: 480px;
    position: relative;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-1 {
    min-width: 38%;

}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-1 .bg {
    background: linear-gradient(180deg, rgba(84, 84, 84, 0) -3%, rgba(69, 21, 0, .89) 67%);
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-2 {
    min-width: 34%;

}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-2 .bg {
    background: linear-gradient(180deg, rgba(255, 173, 66, .67) 0%, rgba(255, 173, 66, .78) 86%);
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-3 {
    min-width: 28%;
    background-image: url(/assets/home/home_11_img_bg_1.webp);
    background-size: cover;
    background-position: center;

}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-3 .bg {
    background: linear-gradient(180deg, rgba(66, 131, 252, .5) 25%, rgba(7, 64, 171, .82) 90%);
}

.yc-home-11 .home-11-infobox .home-11-infobox-item .text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item .info-type {
    display: inline-block;
    height: 50px;
    font-size: 30px;
    padding: 0 14px;
    border-radius: 46px;
    border: solid 2px;
    color: white;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item .info-type span {
    line-height: 46px;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item .info-value {
    font-size: 100px;
    color: white;
    font-weight: 600;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item .info-value span {
    font-size: 170px;
    font-weight: 700;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item img {
    max-width: 50%;
    max-height: 240px;
    position: absolute;
    top: 40px;
    right: 30px;
    z-index: 2;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-2 img {
    max-height: 180px;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-2 .info-value {
    font-size: 80px;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-2 .info-value span {
    font-size: 140px;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-3 .info-value {
    font-size: 60px;
}

.yc-home-11 .home-11-infobox .home-11-infobox-item.home-11-infobox-3 .info-value span {
    font-size: 100px;
}

/* Section 11 Style : E ------------------------------------------------------------------------*/

/* Section 12 Style : S ------------------------------------------------------------------------*/
.yc-home-12 {
    padding: 90px 0;
}

.yc-home-12 .home-12-t {
    text-align: center;
    font-size: 45px;
}

.yc-home-12 .home-12-b {
    margin: 60px auto 0;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
}

.yc-home-12 .home-12-b .home-12-img {
    min-width: 50%;
    padding-left: 50px;
    padding-right: 20px;
}

.yc-home-12 .home-12-b .home-12-table {
    min-width: 50%;
    padding-left: 20px;
    padding-right: 70px;
}

.yc-home-12 .home-12-b .home-12-img img {
    width: 100%;
}

.yc-home-12 .home-12-b .home-12-table table {
    width: 100%;
    font-size: 20px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.yc-home-12 .home-12-b .home-12-table table tr th {
    background: black;
    color: white;
    height: 80px;
    text-align: center;
    margin-bottom: 20px;
}

.yc-home-12 .home-12-b .home-12-table table tr td {
    background: #EEE;
    color: black;
    height: 80px;
    text-align: center;
    margin-bottom: 20px;
}

.yc-home-12 .home-12-b .home-12-table table tr.tf td {
    background: rgb(52, 121, 255);
    color: white;
}

.yc-home-12 .home-12-b .home-12-table table tr.tf td:nth-child(2) {
    font-size: 25px;
}

.yc-home-12 .home-12-b .home-12-table table tr.tf td:nth-child(3) {
    font-size: 30px;
    font-weight: 600;
}

.yc-home-12 .home-12-b .home-12-table table tr.tf td:nth-child(3) span {
    animation: home12textanim 2s infinite backwards;
    display: inline-block;
}

.yc-home-12 .home-12-b .home-12-table table tr th:first-child,
.yc-home-12 .home-12-b .home-12-table table tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.yc-home-12 .home-12-b .home-12-table table tr th:last-child,
.yc-home-12 .home-12-b .home-12-table table tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-right: 20px;
}

@keyframes home12textanim {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.4)
    }

    100% {
        transform: scale(1)
    }
}

/* Section 12 Style : E ------------------------------------------------------------------------*/

/* Section 13 Style : S ------------------------------------------------------------------------*/
.yc-home-13 {
    padding: 90px 0;
    background: rgb(217, 232, 255);
}

.yc-home-13 .home-13-t {
    font-size: 45px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

.yc-home-13 .home-13-t span {
    color: rgb(35, 90, 212);
}

.yc-home-13 .home-13-d {
    font-size: 20px;
    margin: 40px 0;
    text-align: center;
}

.yc-home-13 .home-13-d br {
    display: none;
}

.yc-home-13 .home-13-b {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    max-width: 1920px;
    overflow: hidden;
    position: relative;
}

.yc-home-13 .home-13-b .home-13-bg {
    background: rgb(233, 240, 255);
    background: linear-gradient(90deg, rgba(233, 240, 255, 1) 0%, rgba(224, 236, 255, 0) 8%, rgba(218, 232, 255, 0) 92%, rgba(217, 232, 255, 1) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.yc-home-13 .home-13-b .home-13-menu {}

.yc-home-13 .home-13-b .home-13-menu .home-13-scroll {
    position: relative;
    display: flex;
    width: 100%;
    z-index: 1;
}

.yc-home-13 .home-13-b .home-13-menu .home-13-scroll .home-13-item {
    min-width: 300px;
    position: relative;
    padding: 0 20px;
    width: 19%;
}

.yc-home-13 .home-13-b .home-13-menu .home-13-scroll .home-13-item .item-text {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    font-size: 45px;
    color: rgb(35, 90, 212);
    font-weight: 600;
    animation: home13textanim 1s infinite backwards;
}

.yc-home-13 .home-13-b .home-13-menu .home-13-scroll .home-13-item img {
    width: 100%;
}

@keyframes home13textanim {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* Section 13 Style : E ------------------------------------------------------------------------*/

/* Section 14 Style : S ------------------------------------------------------------------------*/
.yc-home-14 {
    position: relative;
    padding: 150px 0 0px;
}

.yc-home-14 img.home-14-rocket {
    position: absolute;
    top: 10px;
    left: calc(50% - 6px);
    transform: translate(-50%, 0) rotate(-28deg);
    z-index: 1;
    animation: home15rocketanim 2s infinite backwards;
}

.yc-home-14 .home-14-t {
    font-size: 45px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

.yc-home-14 .home-14-t span.highlight {
    color: rgb(35, 90, 212)
}

.yc-home-14 .home-14-d {
    color: rgb(35, 90, 212);
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.6;
    text-align: center;
}

.yc-home-14 .home-14-d brm {
    display: none;
}

.yc-home-14 .home-14-container {
    overflow: hidden;
}

.yc-home-14 .home-14-b {

    margin: 40px auto 0;
    width: 100%;
    max-width: 1600px;
    padding: 0 40px 90px;
}

.yc-home-14 .home-14-b .home-14-chart {}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-box {
    position: relative;
    height: 500px;
    border-bottom: solid 2px rgb(39, 101, 217);
    width: 100%;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line {
    width: calc((100% - 120px) / 5);
    height: 100%;
    position: absolute;
    bottom: 0;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line-t {
    height: 60px;
    line-height: 60px;
    font-size: 40px;
    text-align: center;
    color: rgb(35, 90, 212);
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line-b {
    height: calc(100% - 60px);
    width: 100%;
    background: black;
}


.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(1) {
    left: 0;
    height: 29%;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(1) .home-14-chart-line-b {
    background: rgb(232, 240, 251);
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(2) {
    left: calc(((100% - 120px) / 5) + 30px);
    height: 42%;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(2) .home-14-chart-line-b {
    background: rgb(213, 227, 247);
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(3) {
    left: calc(((100% - 120px) / 5) * 2 + 60px);
    height: 72%;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(3) .home-14-chart-line-b {
    background: rgb(151, 185, 236);
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(4) {
    left: calc(((100% - 120px) / 5) * 3 + 90px);
    height: 100%;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(4) .home-14-chart-line-b {
    background: rgb(131, 178, 245);
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(5) {
    left: calc(((100% - 120px) / 5) * 4 + 120px);
    height: 130%;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-line:nth-child(5) .home-14-chart-line-b {
    background: rgb(85, 134, 225);
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-t {
    margin-top: 30px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-t .text {
    text-align: center;
    width: 20%;
    margin-right: 30px;
    color: rgb(39, 101, 217);
    font-size: 28px;
}

.yc-home-14 .home-14-b .home-14-chart .home-14-chart-t .text:last-child {
    margin-right: 0px;
}


@keyframes home15rocketanim {
    0% {
        top: 10px;
    }

    50% {
        top: -20px;
    }

    100% {
        top: 10px;
    }
}

/* Section 14 Style : E ------------------------------------------------------------------------*/

/* Section 15 Style : S ------------------------------------------------------------------------*/
.yc-home-15 {
    background: rgb(250, 250, 250);
    padding: 90px 0;
}

.yc-home-15 .home-15-t {
    font-size: 45px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
}

.yc-home-15 .home-15-t brm {
    display: none;
}

.yc-home-15 .home-15-b .home-15-scroll {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 30px;
}

.yc-home-15 .home-15-b .home-15-item {
    width: 33.33333%;
    margin-right: 40px;
}

.yc-home-15 .home-15-b .home-15-item:last-child {
    margin-right: 0;
}

.yc-home-15 .home-15-b .home-15-item .img {
    aspect-ratio: 0.94;
    width: 100%;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    border: solid 1px #CCC;
}

.yc-home-15 .home-15-b .home-15-item .home-15-item-t {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 600;
}

.yc-home-15 .home-15-b .home-15-item .home-15-item-d {
    margin-top: 13px;
    font-size: 19px;
    color: #999;
}

/* Section 15 Style : E ------------------------------------------------------------------------*/

/* Section 16 Style : S ------------------------------------------------------------------------*/
.yc-home-16 {
    padding: 90px 0;
}

.yc-home-16 .home-16-t {
    font-size: 45px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
}

.yc-home-16 .home-16-t span.highlight {
    color: rgb(35, 90, 212);
}

.yc-home-16 .home-16-b {
    max-width: 1200px;
    margin: 40px auto 0;
}

.yc-home-16 .home-16-menu {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.yc-home-16 .home-16-menu>button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    z-index: 3;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

.yc-home-16 .home-16-menu>button i {
    font-size: 20px;
    color: white;
    line-height: 40px;
}

.yc-home-16 .home-16-menu>button.btn-left {
    left: 20px;
}

.yc-home-16 .home-16-menu>button.btn-right {
    right: 20px;
}

.yc-home-16 .home-16-menu-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(224, 236, 255, 0) 8%, rgba(218, 232, 255, 0) 92%, rgba(255, 255, 255, 1) 100%);
}

.yc-home-16 .home-16-menu-indicator {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 6px 8px;
    border-radius: 50px;
    z-index: 2;
    white-space: nowrap;
    opacity: 0.8
}

.yc-home-16 .home-16-menu-indicator .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #888;
    transition: ease-in-out all 0.2s;
    cursor: pointer;
}

.yc-home-16 .home-16-menu-indicator .dot.on {
    background: white;
}

.yc-home-16 .home-16-scroll {
    display: flex;
    width: 100%;
    position: relative;
}

.yc-home-16 .home-16-scroll .home-16-scroll-item {
    min-width: 29%;
    padding: 0 8px;
}

.yc-home-16 .home-16-scroll .home-16-scroll-item img {
    width: 100%;
}

/* Section 16 Style : E ------------------------------------------------------------------------*/

/* Section 17 Style : S ------------------------------------------------------------------------*/
.yc-home-17 {
    padding: 90px 0 0;
}

.yc-home-17 .home-17-t {
    font-size: 45px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
}

.yc-home-17 .home-17-t span {
    color: rgb(35, 90, 212);
}

.yc-home-17 .home-17-b {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.yc-home-17 .home-17-row {
    display: flex;
    margin: 20px 0;
}

.yc-home-17 .home-17-row .home-17-col {
    width: 29%;
    margin: 0 10px;
    border: solid 1px #CCC;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.yc-home-17 .home-17-row .home-17-col.large {
    width: 42%;
    height: auto;
    aspect-ratio: auto;
}

.yc-home-17 .home-17-row .home-17-col:first-child {
    margin-left: 0;
}

.yc-home-17 .home-17-row .home-17-col:last-child {
    margin-right: 0;
}

.yc-home-17 .home-17-row .home-17-col .col-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    filter: brightness(0.7);
    background-size: cover;
    background-position: center;
}

.yc-home-17 .home-17-row .home-17-col .col-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.yc-home-17 .home-17-row .home-17-col .col-text .col-text-n {
    font-size: 28px;
    color: #AAA;
}

.yc-home-17 .home-17-row .home-17-col .col-text .col-text-t {
    margin-top: 15px;
    font-size: 28px;
    color: white;
}

.yc-home-17 .home-17-f {
    margin: 80px auto 0;
    position: relative;
    overflow: hidden;
}

.yc-home-17 .home-17-f .home-17-lines .home-17-lines-1,
.yc-home-17 .home-17-f .home-17-lines .home-17-lines-3 {
    background: rgb(217, 230, 255);
}

.yc-home-17 .home-17-f .home-17-lines .home-17-lines-2 {
    background: rgb(153, 187, 255);
}

.yc-home-17 .home-17-f .home-17-lines .home-17-lines-scroll {
    display: flex;
    position: relative;
}

.yc-home-17 .home-17-f .home-17-lines .home-17-lines-scroll .home-17-lines-item {
    height: 60px;
    line-height: 67px;
    min-width: fit-content;
    padding: 0 50px;
    font-size: 42px;
    color: rgb(49, 108, 232);
    font-weight: 700;
}

/* Section 17 Style : E ------------------------------------------------------------------------*/

/* Section 18 Style : S ------------------------------------------------------------------------*/
.yc-home-18 {
    padding: 90px 0 120px;
    background: rgb(235, 241, 255);
}

.yc-home-18 .home-18-t {
    font-size: 45px;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
}

.yc-home-18 .home-18-b {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.yc-home-18 .home-18-b .home-18-d {
    color: rgb(30, 101, 217);
    text-align: right;
}

.yc-home-18 .home-18-b table {
    width: 100%;
    margin-top: 15px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.yc-home-18 .home-18-b table tr td {
    height: 72px;
    background: rgb(207, 221, 252);
    font-size: 17px;
}

.yc-home-18 .home-18-b table tr td:first-child {
    padding-left: 15px;
    padding-right: 20px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    font-weight: 600;
}

.yc-home-18 .home-18-b table tr td:last-child {
    padding-right: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.yc-home-18 .home-18-b table tr td div.desc {
    width: fit-content;
    text-align: right;
}

.yc-home-18 .home-18-b table tr td span {
    color: rgb(30, 101, 217);
    font-size: 1.2rem;
}

.yc-home-18 .home-18-b table tr td span.underline {
    color: black;
    text-decoration: line-through;
    font-size: 1rem;
}

.yc-home-18 .home-18-b table tr td span.desc {
    font-size: 0.9rem;
}

.yc-home-18 .home-18-b table tr.th td {
    background: #414141;
    color: white;
}

.yc-home-18 .home-18-b table tr.tf td {
    background: rgb(39, 101, 217);
    color: white;
}

.yc-home-18 .home-18-b table tr.tf td span {
    color: white !important;
}

.yc-home-18 .home-18-b table tr td .pc {
    display: block;
}

.yc-home-18 .home-18-b table tr td .mobile {
    display: none;
}

/* Section 18 Style : E ------------------------------------------------------------------------*/