/*basic style*/
*{margin: 0; padding: 0; box-sizing: border-box;}
ul{list-style: none;}
a{text-decoration: none;}
img{
    vertical-align: top;
}
body{
    width: 100%;
    overflow-x: hidden;
    min-height: 100dvh;
    background: #222;
    font-family: "pretendard",sans-serif;
}

/*font style*/
@font-face{
    font-family: 'BankGothic';
    src: url('./source/font/OPTIBankGothic-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'RoadRage';
    src: url('./source/font/Road_Rage.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
.opti{
    font-family: "BankGothic", sans-serif;
}
.road{
    font-family: "RoadRage", sans-serif;
    font-weight: normal;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*header*/
.header-nav{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 64px;
    height: 64px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.header-nav.header-hidden{
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.header-menu{
    width: 0;
    height: 47px;
    background: rgba(242, 242, 242, 0.57);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    pointer-events: none;
    white-space: nowrap;
    transition:
        width 0.7s cubic-bezier(0.55, 0, 1, 0.45),
        right 0.7s cubic-bezier(0.55, 0, 1, 0.45);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.header-nav.active .header-menu{
    width: 390px;
    right: 79px;
    pointer-events: auto;
    transition:
        width 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
        right 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.header-menu>li{
    opacity: 0;
    transition: opacity 0.1s ease;
}
.header-nav.active .header-menu>li{
    opacity: 1;
    transition: opacity 0.25s ease 0.3s;
}
.header-menu>li>a{
    color: #F2F2F2;
    font-size: 14px;
}
.header-menu>li>a:hover{
    color: #BFEC1D;
}
.menu-button{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 5px solid rgba(34,187,57,0.2);
    background: #BFEC1D;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.5),
        0 0 16px rgba(191, 236, 29, 0.35);
}
.menu-button>img{
    width: 36px;
    transform: translate(-2px,2px);
}
/*hero*/
#hero{
    position: relative;
    min-height: 300vh;
}
.sticky-scene{
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.sticky-scene::after,
.sticky-scene::before{
    content: "";
    position: absolute;
    background-image: url(desktop/linepng.png);
    background-repeat: no-repeat;
    width: 258px;
    height: 110px;
    background-size: contain;
    z-index: 3;
}
.sticky-scene::after{
    top: 0;
    left: 0;
}
.sticky-scene::before{
    right: 0;
    bottom: 0;
}
.sticky-scene>h1{
    margin-top: 45px;
    text-align: center;
    font-weight: normal;
    position: relative;
    z-index: 1;
}
.sticky-scene>h1>span:first-child{
    color: #f2f2f2;
    font-size: 350px;
    text-shadow: 0px 30px 0 #777;
    display: inline-block;
    position: relative;
}
.sticky-scene>h1>span.trail-out::after{
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(191, 236, 29, 0.8);
    text-shadow:
        0 0 8px rgba(191, 236, 29, 0.75),
        0 0 20px rgba(191, 236, 29, 0.45);
    pointer-events: none;
    animation: hero-neon-trail 0.12s steps(2) infinite;
}
.sticky-scene>h1.hero-auto-drop{
    animation:
        hero-auto-drop 0.9s
        cubic-bezier(0.7, 0, 1, 0.35)
        forwards;
}
.sticky-scene>h1>span.hero-neon-smoke{
    animation:
        hero-main-fade 0.9s linear forwards;
}
.sticky-scene>h1>span.hero-neon-smoke::after{
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    -webkit-text-stroke:
        2px rgba(191, 236, 29, 0.5);
    text-shadow:
        0 0 8px rgba(191, 236, 29, 0.45),
        0 0 24px rgba(191, 236, 29, 0.25);
    pointer-events: none;
    animation:
        hero-neon-smoke 1.35s ease-out forwards;
}
.energy-text.hero-energy-drop{
    animation:
        hero-energy-drop 0.9s
        cubic-bezier(0.7, 0, 1, 0.35)
        forwards;
}
.sticky-scene>h1.hero-impact-fade,
.energy-text.energy-impact-fade{
    animation:
        hero-impact-fade 0.55s ease-out forwards;
}
@keyframes hero-impact-fade{
    0%{
        opacity: 1;
        filter: brightness(1);
    }
    16%{
        opacity: 1;
        filter:
            brightness(2.2)
            drop-shadow(0 0 14px rgba(191, 236, 29, 0.8));
    }
    35%{
        opacity: 0.75;
        filter:
            brightness(1.45)
            drop-shadow(0 0 24px rgba(191, 236, 29, 0.45));
    }
    100%{
        opacity: 0;
        filter:
            brightness(1)
            drop-shadow(0 0 38px rgba(191, 236, 29, 0));
    }
}
@keyframes hero-auto-drop{
    0%{
        transform:
            translateY(-260px) scale(1.7);
    }
    58%{
        transform:
            translateY(48px) scale(0.9);
    }
    70%{
        transform:
            translateY(0) scale(1);
    }
    100%{
        transform:
            translateY(110px) scale(1.04);
    }
}
@keyframes hero-main-fade{
    0%, 58%{
        color: #f2f2f2;
        text-shadow: 0 30px 0 #777;
    }
    100%{
        color: rgba(242, 242, 242, 0);
        text-shadow: 0 30px 0 rgba(119, 119, 119, 0);
    }
}
@keyframes hero-energy-drop{
    0%{
        opacity: 1;
    }
    58%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes hero-neon-smoke{
    0%, 45%{
        opacity: 0;
        filter: blur(0);
        transform: scale(1);
    }
    58%{
        opacity: 0.58;
        filter: blur(2px);
        transform: scale(1.01);
    }
    100%{
        opacity: 0;
        filter: blur(22px);
        transform:
            translateY(-25px) scale(1.38);
    }
}
@keyframes hero-neon-trail{
    0%{
        opacity: 0.75;
        transform: translateY(-18px);
    }
    35%{
        opacity: 0.2;
        transform: translate(-3px, -38px);
    }
    65%{
        opacity: 0.6;
        transform: translate(3px, -58px);
    }
    100%{
        opacity: 0.08;
        transform: translateY(-78px);
    }
}
.sticky-scene>h1>span.glitch-out{
    animation: monster-glitch 0.12s steps(2) infinite;
}
@keyframes monster-glitch{
    0% {
        transform: translate(0, 0);
        text-shadow:
            0 30px 0 #777,
            5px 0 0 #BFEC1D;
    }
    25% {
        transform: translate(-4px, 2px);
        text-shadow:
            4px 30px 0 #777,
            -6px 0 0 #BFEC1D;
    }
    50% {
        transform: translate(5px, -2px);
        text-shadow:
            -4px 30px 0 #777,
            6px 0 0 #BFEC1D;
    }
    75% {
        transform: translate(-3px, -1px);
        text-shadow:
            5px 30px 0 #777,
            -5px 0 0 #BFEC1D;
    }
    100% {
        transform: translate(0, 0);
        text-shadow: 0 30px 0 #777;
    }
}
.energy-text{
    width: min(1414px, 90%);
    height: 105px;
    margin: 0 auto;
    color: #BFEC1D;
    font-size: 80px;
    line-height: 105px;
    letter-spacing: 1.7em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.energy-text span{
    white-space: nowrap;
    margin-right: -1.7em;
}
.hero-can{
    width: 1024px;
    height: 778px;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    left: 50%;
    top: 176px;
    transform: translateX(-50%);
    display: block;
    z-index: 2;
}
.best-intro{
    font-size: 240px;
    color: #BFEC1D;
    text-align: center;
    font-weight: normal;
    position: absolute;
    left: 50%;
    top: 110%;
    opacity: 0;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 3;
}

/*best*/
#best{
    position: relative;
    z-index: 4;
    margin-top: -10vh;
    height: 600vh;
}
.sticky-best{
    position: absolute;
    inset: 0;
    height: 100%;
}
.black-energy{
    z-index: 2;
}
.white-energy{
    z-index: 3;
}
.black-can,
.white-can{
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.black-can>img,
.white-can>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.black-can>img {
    object-position: 0 -62px;
}
.white-can{
    opacity: 0;
}
.product>img{
    position: absolute;
}
.black-energy .product>img{
    width: 460px;
    top: 160px;
    left: 39%;
}
.white-energy .product>img{
    width: 405px;
    transform: rotate(-12.99deg);
    top: 184px;
    left: 40%;
}
.black-can .info-line path{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.white-can .info-line path{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.info-item{
    position: absolute;
}
.black-can .info-item{
    opacity: 1;
}
.black-can .item-ingredient{
    color: #BFEC1D;
    opacity: 0;
    transform: translateY(20px);
}
.black-can .item-ingredient span{
    text-shadow:
        0 0 4px #BFEC1D,
        0 0 10px rgba(191, 236, 29, 0.7);
}
.white-can .item-ingredient{
    color: #f2f2f2;
    opacity: 0;
    transform: translateY(20px);
}
.white-can .item-ingredient span {
    text-shadow:
        0 0 4px #f2f2f2,
        0 0 10px rgba(242, 242, 242, 0.6);
}
.item-ingredient{
    position: absolute;
}
.item-ingredient>span{
    display: block;
    text-align: center;
}
.item-ingredient span:first-child{
    font-size: 24px;
}
.item-ingredient span:last-child{
    font-size: 32px;
    margin-top: 5px;
}
.black-can .volume-info{
    left: 548px;
    top: 230px;
}
.black-can .volume-info .item-ingredient{
    right: 260px;
    bottom: 6px;
}
.black-can .caffeine-info{
    left: 1164px;
    top: 350px;
}
.black-can .caffeine-info .item-ingredient{
    left: 295px;
    bottom: 24px;
}
.black-can .calories-info{
    left: 430px;
    top: 560px;
}
.black-can .calories-info .item-ingredient{
    right: 300px;
    bottom: -2px;
}
.black-can .sugar-info{
    left: 1130px;
    top: 690px;
}
.black-can .sugar-info .item-ingredient{
    left: 237px;
    top: 34px;
}

.white-can .caffeine-info{
    left: 1127px;
    top: 235px;
}
.white-can .caffeine-info .item-ingredient{
    left: 185px;
    bottom: 8px;
}
.white-can .calories-info{
    left: 564px;
    top: 415px;
}
.white-can .calories-info .item-ingredient{
    right: 205px;
    bottom: 12px;
}
.white-can .sugar-info{
    left: 1168px;
    top: 590px;
}
.white-can .sugar-info .item-ingredient{
    left: 228px;
    top: 34px;
}
.white-can .volume-info{
    left: 639px;
    top: 737px;
}
.white-can .volume-info .item-ingredient{
    right: 165px;
    top: 24px;
}
#best h2{
    font-size: 200px;
    text-align: center;
    font-weight: normal;
    z-index: 1;
}
.product > img,
.info-item {
    z-index: 2;
}
.black-energy h2{
    -webkit-text-stroke: 1px rgba(242, 242, 242, 0.8);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.white-energy h2{ 
    -webkit-text-stroke: 1px rgba(191, 236, 29, 0.8);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/*about*/
#about{
    position: relative;
    z-index: 5;
    margin-top: -10vh;
    min-height: 1560px;
}
.slogan-belt-wrap{
    width: 100%;
    overflow-x: clip;
    z-index: 1;
}
.slogan-belt{
    width: 110vw;
    margin-left: -5vw;
    height: 130px;
    display: flex;
    gap: 60px;
    background: #BFEC1D;
    position: relative;
    clip-path: inset(0 100% 0 0);
}
.slogan-belt:first-of-type{
    clip-path: inset(0 100% 0 0);
    transform: rotate(14.67deg);
    top: 190px;
}
.slogan-belt:last-of-type{
    clip-path: inset(0 0 0 100%);
    transform: rotate(-15.05deg);
    top: 180px;
}
.slogan-belt li{
    width: max-content;
    font-size: 96px;
    color: #222;
    line-height: 130px;
    white-space: nowrap;
}
.slogan-belt:first-of-type li:first-child{
    margin-left: -300px;
}
.slogan-belt:last-of-type li:first-child{
    margin-left: -180px;
}
.skateboard{
    display: block;
    position: absolute;
    top: 40px;
    left: 910px;
    z-index: 2;
    width: 793px;
}
.about-text{
    position: absolute;
    left: 210px;
    bottom: 220px;
}
.about-text h2{
    font-weight: normal;
    font-size: 48px;
    line-height: 63px;
    color: #BFEC1D;
}
.about-slogan{
    margin-top: 30px;
    font-size: 30px;
    line-height: 39px;
    color: #BFEC1D;
}
.about-description{
    margin-top: 70px;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 40px;
    color: #F2F2F2;
}
.about-text>strong{
    font-weight: normal;
    font-size: 36px;
    line-height: 47px;
    color: #BFEC1D;
}
/*marquee style*/
.cover{
    width: 100vw;
    height: 130px;
    background: #BFEC1D;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
}
.cover>p{
    white-space: nowrap;
    width: max-content;
    font-size: 96px;
    color: #222;
    line-height: 130px;
    display: flex;
}

/*lineup*/
#lineup{
    min-height: 1118px;
    position: relative;
    overflow: hidden;
}
#lineup::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to top,
        #000 0%,
        rgba(0, 0, 0, 0.7) 35%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 3;
    pointer-events: none;
}
#lineup>h2{
    font-weight: normal;
    font-size: 58px;
    line-height: 90px;
    text-align: center;
    color: #F2F2F2;
    margin-top: 140px;
}
.energy-cans{
    width: 100%;
    display: flex;
    position: absolute;
    left: 0;
    bottom: -430px;
    z-index: 1;
}
.energy-cans:hover .energy-item>img{
    opacity: 0.3;
}

.energy-cans .energy-item:hover>img{
    opacity: 1;
}
.energy-item{
    flex: 1;
    position: relative;
    text-align: center;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.energy-item>img{
    width: 375px;
    display: block;
    transition: opacity 0.4s ease;
}
.energy-item:hover{
    transform: translateY(-150px);
    z-index: 2;
}
.energy-item:hover .energy-name{
    opacity: 1;
}
.energy-name{
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 40px;
}
.original{
    color: #BFEC1D;
}
.ultra{
    color: #F2F2F2;
}
.peachy{
    color: #E68F7C;
}
.strawberry{
    color: #ECA9CA;
}
.violet{
    color: #C498F0;
}

/*motorbike*/
#motorbike{
    position: relative;
    height: 300vh;
    margin-top: -2px;
    z-index: 4;
}
.motorbike-sticky::after,
.motorbike-sticky::before{
    content: "";
    position: absolute;
    background-image: url(desktop/linepng.png);
    background-repeat: no-repeat;
    width: 258px;
    height: 110px;
    background-size: contain;
    z-index: 3;
}
.motorbike-sticky::after{
    top: 0;
    left: 0;
}
.motorbike-sticky::before{
    right: 0;
    bottom: 0;
}
.motorbike-sticky{
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.motorbike-sticky>img:first-child{
    display: block;
    width: 100%;
    height: calc(100% + 80px);
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.bike-text-wrap{
    position: absolute;
    inset: 0;
    z-index: 2;
}
.bike-img{
    width: 1067px;
    position: absolute;
    top: 303px;
    right: 1000px;
}
.motorbike-sticky>p>span{
    display: block;
    color: rgba(242, 242, 242, 0);
    -webkit-text-stroke: 1px rgba(242, 242, 242, 0.23);
    font-size: 200px;
    position: absolute;
}
.motorbike-sticky>p>span:first-child{
    top: 0px;
    left: 74px;
}
.motorbike-sticky>p>span:last-child{
    top: 214px;
    left: 30px;
}
.bike-title>h2{
    width: 100%;
    font-size: 64px;
    font-weight: normal;
    line-height: 70px;
    color: #BFEC1D;
    position: absolute;
    top: 270px;
    left: 0;
}
.bike-title>h2>span{
    display: block;
    position: absolute;
    white-space: nowrap;
}
.bike-title>h2>span:first-child{
    top: 0;
    right: 500px;
}
.bike-title>h2>span:last-child{
    top: 100px;
    right: 250px;
}
.bike-description>p{
    color: #f2f2f2;
    font-size: 28px;
    position: absolute;
    top: 530px;
    right: 180px;
    font-weight: 400;
    line-height: 40px;
}
.bike-description>strong{
    font-weight: 500;
    font-size: 28px;
    color: #BFEC1D;
    position: absolute;
    top: 690px;
    right: 350px;
}

/*action*/
#action{
    position: relative;
    padding-top: 140px;
    overflow: hidden;
    z-index: 5;
}
#action::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 60px;
    background: linear-gradient(
        to bottom,
        #000 0%,
        #0b0b0b 35%,
        #181818 70%,
        #222 100%
        );
    z-index: 3;
    pointer-events: none;
}
.action-text{
    width: 95%;
    margin: 0 auto;
}
.action-text>h2{
    font-size: 58px;
    line-height: 40px;
    color: #F2F2F2;
}
.action-text>p{
font-weight: 400;
font-size: 20px;
line-height: 30px;
color: #F2F2F2;
margin-top: 40px;
margin-bottom: 80px;
}
.action-list{
    width: 100%;
    height: 602px;
    display: flex;
}
.action-item{
    width: 639px;
    height: 602px;
    flex-shrink: 0;
    position: relative;
    transition:
        width 0.5s ease,
        transform 0.5s ease;
    padding: 1px;
    background: #F2F2F2;
    clip-path: polygon(
        25% 0,
        100% 0,
        75% 100%,
        0 100%
    );
}
.action-item+.action-item{
    margin-left: -210px;
}
.action-card{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        25% 0,
        100% 0,
        75% 100%,
        0 100%
    );
    cursor: pointer;
}
.action-card>img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(1) brightness(0.55);
    transition: filter 0.4s ease;
}
.action-info{
    position: absolute;
    left: 80px;
    bottom: 45px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.08s ease;
}
.action-info>h3{
    font-size: 32px;
    line-height: 90px;
    color: #BFEC1D;
}
.action-info>p{
    font-size: 24px;
    line-height: 40px;
    color: #F2F2F2;
}
.action-item.active{
    width: 722px;
    z-index: 2;
    padding: 1px;
    background: #BFEC1D;
}
.action-item:last-child.active{
    transform: translateX(-83px);
}
.action-item.active .action-card>img{
    filter: grayscale(0) brightness(1);
}
.action-item.active .action-info{
    opacity: 1;
    transition-duration: 0.4s;
}
.neon-fog{
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
    left: 0;
    top: -150px;
    z-index: 1;
    pointer-events: none;
}

/*message*/
#monster-message{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1118px;
    overflow: hidden;
}
#monster-message>img{
    width: 100%;
    height: 115%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: -7.5%;
}
.message-title h2{
    font-size: 58px;
    line-height: 90px;
    text-align: center;
    color: #F2F2F2;
    position: absolute;
    left: 50%;
    top: 272px;
    transform: translateX(-50%);
}
.message-text>p{
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    color: #F2F2F2;
    position: absolute;
    transform: translateX(-50%);
}
.message-text>p:first-child{
    left: 50%;
    top: 415px;
}
.message-text>p:last-child{
    left: 50%;
    top: 541px;
}
.message-text>p>span{
    color: #BFEC1D;
    font-weight: 600;
}
.message-slogan{
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: #BFEC1D;
    position: absolute;
    left: 50%;
    top: 729px;
    transform: translateX(-50%);
}
.message-title h2,
.message-text > p,
.message-slogan {
    opacity: 0;
}

/*footer*/
footer{
    position: relative;
    z-index: 2;
    background: #222;
    margin-top: -200px;
}
.footer-wrap{
    width: 95%;
    margin: 0 auto;
}
.footer-wrap>h2{
    font-size: 170px;
    text-align: center;
    color: #BFEC1D;
    opacity: 0;
    transform-origin: center;
    margin-bottom: 50px;
}
.footer-wrap>h2.neon-pulse{
    animation: footer-neon-pulse 1.4s ease-in-out infinite;
}
@keyframes footer-neon-pulse{
    0%{
        text-shadow:
        0 0 6px rgba(242, 242, 242, 0.7),
        0 0 16px rgba(191, 236, 29, 0.8),
        0 0 38px rgba(191, 236, 29, 0.5);
    }
    25%{
    text-shadow:
        0 0 4px rgba(191, 236, 29, 0.75),
        0 0 14px rgba(191, 236, 29, 0.5),
        0 0 38px rgba(191, 236, 29, 0.25),
        0 0 65px rgba(191, 236, 29, 0.12);
    }
    55%{
        text-shadow:
            0 0 2px rgba(191, 236, 29, 0.55),
            0 0 8px rgba(191, 236, 29, 0.3),
            0 0 22px rgba(191, 236, 29, 0.15);
    }

    80%{
        text-shadow:
            0 0 5px rgba(191, 236, 29, 0.7),
            0 0 18px rgba(191, 236, 29, 0.45),
            0 0 45px rgba(191, 236, 29, 0.22);
    }
    100%{
        text-shadow:
        0 0 6px rgba(242, 242, 242, 0.7),
        0 0 16px rgba(191, 236, 29, 0.8),
        0 0 38px rgba(191, 236, 29, 0.5);
    }
}
.footer-menu-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 260px;
}
.footer-info>ul{
    display: inline-block;
    margin-right: 155px;
    vertical-align: top;
}
.footer-info>ul>li{
    margin-bottom: 70px;
}
.footer-info>ul>li>a{
    font-size: 17px;
    text-align: center;
    color: #BFEC1D;
}
.footer-sns{
    display: flex;
    justify-content: right;
    gap: 38px;
}
.footer-sns>li{
    display: inline-block;
}
.footer-sns>li:last-child{
    margin-right: 30px;
}
.footer-sns>li>a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #BFEC1D;
    border-radius: 50%;
    text-align: center;
}
.footer-sns>li:first-of-type>a>img,
.footer-sns>li:nth-child(2)>a>img{
    width: 30px;
}
.footer-sns>li:nth-child(3)>a>img{
    width: 38px;
}
.footer-sns>li:last-of-type>a>img{
    width: 36px;
}
.dashed{
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #BFEC1D 0,
        #BFEC1D 12px,
        transparent 12px,
        transparent 20px
    );
}
.footer-meta>li,
.footer-meta>li>a{
    color: #F2F2F2;
    font-size: 14px;
    line-height: 90px;
}
.footer-bottom{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.footer-meta{
    display: flex;
    gap: 12px;
}
.footer-bottom>img{
    width: 140px;
    height: 77px;
    margin-top: 6px;
}
