section .content-inner {
    max-width: 1600px;
}

.visual-section {
    padding: 80px 0 0;
}

.visual-section .content-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px 0;
}

.visual-title-group {
    width: 100%;
    display: grid;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0 40px;
    grid-template-columns: auto 1fr 40px;
}

.visual-title-group .title span{
    margin-right: 34px;
}

.visual-title-group>span {
    width: inherit;
    height: 2px;
    background-color: var(--colorBlack);
    margin-bottom: 47px;
}

.scroll-group {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px 0;
    margin-bottom: 10px;
}

.scroll {
    width: 26px;
    height: 42px;
    border-radius: 50px;
    box-sizing: border-box;
    position: relative;
    border: 2px solid var(--colorBlack);
    animation: scroll-border infinite 1.5s ease;
}

@keyframes scroll-border {
    0% {
        border: 2px solid var(--colorBlack);
    }

    100% {

        border: 2px solid var(--colorGray400);
    }
}

.scroll-dot {
    width: 5px;
    height: 5px;
    background-color: var(--colorBlack);
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-dot infinite 1.5s ease;
}

@keyframes scroll-dot {
    0% {
        top: 7px;
        opacity: 1;
    }

    100% {
        top: 80%;
        opacity: 0;
    }
}

.scroll-group p {
    font-size: var(--fontSizeSm);
    font-weight: var(--fontWeightSemibold);
    color: var(--colorBlack);
    letter-spacing: 0.84px;
    animation: scroll-text infinite 1.5s ease;
}

@keyframes scroll-text {
    0% {
        color: var(--colorBlack);
    }

    100% {

        color: var(--colorGray500);
    }
}

.visual-img {
    width: 100%;
    height: 600px;
}

.visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.first-section {
    padding: 120px 0;
}

.first-section .content-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 80px 0;
}

.group-title {
    font-weight: var(--fontWeightHeavy);
}

.service-box {
    width: 100%;
}

.service-box ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px 0;
}

.service-box ul li {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 700px 1fr;
    gap: 0 100px;
}

.service-text-group {
    width: inherit;
    padding-left: 60px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px 0;
}

.item-title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px 0;
}

.item-title span {
    font-size: var(--fontSizeXl);
    font-weight: var(--fontWeightHeavy);
    line-height: var(--lineHeightXl);
}

.service-box .btn-group{
    position: relative;
}

.service-box .btn-group::after{
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid var(--colorBlack);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.service-box .btn-group::before{
    content: "";
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #FF352E 0%, #FB4E00 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: width 0.5s;
}

/*.service-box .btn-group:hover::before{*/
/*    width: 100%;*/
/*}*/

.service-box .btn{
    position: relative;
    z-index: 2;
    border: none;
}

.service-box .btn span{
    width: 18px;
    height: 18px;
    background-image: url("../../images/main/more-arrow.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: background-image .5s;
}

/*.service-box .btn:hover {*/
/*    color: var(--colorWhite);*/
/*}*/

/*.service-box .btn:hover span{*/
/*    background-image: url("../../images/common/btn-arrow.svg");*/
/*}*/

.service-img {
    width: inherit;
}

.service-img img {
    max-width: 100%;
}


.second-section {
    padding: 173px 0;
    background-color: var(--colorBlack);
}

.second-section .content-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px 0;
}

.brand-title-group {
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 0 60px;
    grid-template-columns: auto 1fr;
}

.brand-title-group .title span{
    margin-right: 24px;
}

.brand-title-group>span {
    height: 2px;
    background-color: var(--colorWhite);
}

.brand-title-group .title span:after {
    right: -24px;
}

.value-box {
    width: 100%;
}

.value-box ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0 35px;
}

.value-box ul li {
    background-color: var(--colorPrimary);
    height: 600px;
    padding-top: 110px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0;
}

.motion-img-group {
    width: 200px;
    height: 200px;
    position: relative;
}

.motion-img-group img {
    position: absolute;
    top: 0;
    left: 0;
}

.value-box ul li:first-child .motion-img {
    animation: global-motion infinite 1.5s ease-in-out;
}

@keyframes global-motion {
    0% {
        transform: translateY(15px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(15px);
    }
}

.value-box ul li:nth-child(2) .motion-img {
    animation: stability-motion infinite 1.5s ease-in-out;
}

@keyframes stability-motion {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.value-box ul li:last-child .motion-img {
    animation: privacy-motion infinite 1.5s ease-in-out;
}

@keyframes privacy-motion {
    0% {
        transform: rotate(20deg) translateY(0);
    }

    50% {
        transform: rotate(0) translateY(10px);
    }

    100% {
        transform: rotate(20deg) translateY(0);
    }
}

.value-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px 0;
}

.value-text p {
    color: var(--colorWhite);
    font-size: var(--fontSize4Xl);
    font-weight: var(--fontWeightExtrabold);
    line-height: var(--lineHeight5Xl);
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--colorWhite);
}

.value-text span {
    color: var(--colorWhite);
    font-size: var(--fontSizeMd);
    line-height: var(--lineHeightMd);
}


.third-section {
    padding: 120px 0 140px;
}

.third-section .content-inner {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0 80px;
}

.support-group {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}





@media (hover: hover) and (pointer: fine) {
    .service-box .btn-group:hover::before{
        width: 100%;
    }

    .service-box .btn:hover {
        color: var(--colorWhite);
    }

    .service-box .btn:hover span{
        background-image: url("../../images/common/btn-arrow.svg");
    }
}





/* responsive css */
@media screen and (min-width: 1280px) and (max-width: 1440px) {

    .visual-title-group {
        gap: 0;
        grid-template-columns: auto;
    }

    .visual-title-group .title span{
        margin-right: 0;
    }

    .visual-title-group>span {
        display: none;
    }

    .scroll-group {
        display: none;
    }

    .brand-title-group {
        width: 100%;
        display: grid;
        align-items: center;
        justify-content: space-between;
        gap: 0 60px;
        grid-template-columns: auto auto;
    }

    .brand-title-group .title span{
        margin-right: 0;
    }

}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    section .content-inner {
        max-width: 100%;
    }

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

    .visual-section .content-inner {
        gap: 30px 0;
    }

    .visual-title-group {
        gap: 0;
        grid-template-columns: auto;
    }

    .visual-title-group .title span{
        margin-right: 0;
    }

    .visual-title-group>span {
        display: none;
    }

    .scroll-group {
        display: none;
    }

    .visual-img {
        width: calc(100% + 88px);
        height: 400px;
        margin-left: -44px;
    }

    .first-section {
        padding: 80px 0;
    }

    .first-section .content-inner {
        gap: 40px 0;
    }

    .service-box ul {
        gap: 40px 0;
    }

    .service-box ul li {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .service-text-group {
        padding-left: 0;
        gap: 30px 0;
    }

    .service-img img {
        width: 100%;
    }

    .first-section .btn-group {
        width: auto;
    }

    .second-section {
        padding: 80px 0;
    }

    .second-section .content-inner {
        gap: 30px 0;
    }

    .brand-title-group {
        gap: 0;
        grid-template-columns: auto;
    }

    .brand-title-group>span {
        display: none;
    }

    .brand-title-group .title span{
        margin-right: 0;
    }

    .brand-title-group .title span:after {
        right: -14px;
    }

    .value-box ul {
        grid-template-columns: 1fr;
        gap: 35px 0;
    }

    .value-box ul li {
        height: auto;
        padding: 120px 0;
    }

    .third-section {
        padding: 80px 0 120px;
    }

    .third-section .content-inner {
        grid-template-columns: 1fr;
        gap: 80px 0;
    }

    .support-group {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    section .content-inner {
        max-width: 100%;
    }

    .visual-section {
        padding: 30px 0 0;
    }

    .visual-section .content-inner {
        gap: 15px 0;
    }

    .visual-title-group {
        gap: 0;
        grid-template-columns: auto;
    }

    .visual-title-group .title span{
        margin-right: 0;
    }

    .visual-title-group>span {
        display: none;
    }

    .scroll-group {
        display: none;
    }

    .visual-img {
        width: calc(100% + 40px);
        height: 200px;
        margin-left: -20px;
    }

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

    .first-section .content-inner {
        gap: 20px 0;
    }

    .service-box ul {
        gap: 40px 0;
    }

    .service-box ul li {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .service-text-group {
        padding-left: 0;
        gap: 25px 0;
    }

    .item-title {
        gap: 2px 0;
    }

    .item-title span {
        font-size: var(--fontSizeBase);
        line-height: var(--lineHeightBase);
    }

    .service-img img {
        width: 100%;
    }

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

    .second-section .content-inner {
        gap: 15px 0;
    }

    .brand-title-group {
        gap: 0;
        grid-template-columns: auto;
    }

    .brand-title-group>span {
        display: none;
    }

    .brand-title-group .title span{
        margin-right: 0;
    }

    .brand-title-group .title span:after {
        right: -9px;
    }

    .value-box ul {
        grid-template-columns: 1fr;
        gap: 15px 0;
    }

    .value-box ul li {
        height: auto;
        padding: 50px 0;
        gap: 5px 0;
    }

    .motion-img-group {
        width: 140px;
        height: 140px;
    }

    .motion-img-group img {
        width: 100%;
    }

    @keyframes global-motion {
        0% {
            transform: translateY(10px);
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(10px);
        }
    }

    @keyframes privacy-motion {
        0% {
            transform: rotate(20deg) translateY(0);
        }

        50% {
            transform: rotate(0) translateY(5px);
        }

        100% {
            transform: rotate(20deg) translateY(0);
        }
    }

    .value-text {
        gap: 5px 0;
    }

    .value-text p {
        font-size: var(--fontSizeXl);
        line-height: var(--lineHeightXl);
        font-weight: var(--fontWeightMedium);
    }

    .value-text span {
        font-size: var(--fontSizeXs);
        line-height: var(--lineHeightXs);
    }


    .third-section {
        padding: 40px 0 80px;
    }

    .third-section .content-inner {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .support-group {
        width: 100%;
    }
}