/* 폰트 */
@font-face {
    font-family: "Pretendard Variable";
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: local("Pretendard Variable"),
        url("../font/PretendardVariable.woff2") format("woff2-variations");
}

.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}

/* common */
.con {
    max-width: 118rem;
    margin: 0 auto;
    position: relative;
}

.hidden {
    overflow: hidden;
}

.padding {
    padding-left: 6rem;
    padding-right: 6rem;
}

.padding-tb {
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.padding-in-bottom {
    padding-bottom: 12rem;
}

.w100per {
    width: 100%;
}

.h100per {
    height: 100%;
}

.h100vh {
    height: 100vh;
}

.pointer {
    cursor: pointer;
}

.img-box img {
    display: block;
    width: 100%;
}

.scroll-down {
    bottom: 3.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    z-index: 2;
}

.scroll-down img {
    animation-name: moving_1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/* .tracking-firmer {
    letter-spacing: -0.065em;
}
.tracking-tighter {
    letter-spacing: -0.039em;
}
.tracking-tight {
    letter-spacing: -0.017em;
} */
.tracking-normal {
    letter-spacing: 0;
}

.zi-2 {
    z-index: 2;
}

@media (max-width: 1200px) {

    .padding {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .padding-tb {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .scroll-down {
        bottom: 0.8rem;
    }
    .scroll-down img{
        width: 2.8rem;
    }
}
@media (max-width: 767px) {

    .padding {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .padding-tb {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .scroll-down img {
        width: 2.4rem;
    }
}

/* 애니메이션 추가 */
@keyframes moving_1 {
    50% {
        transform: translateY(30%);
    }
}

@keyframes moving_2 {
    50% {
        transform: translateY(20%);
    }
}

@keyframes moving_3 {
    0% {
        transform: translateY(-30%) translateX(-18%);
    }
    60% {
        transform: translateY(20%) translateX(14%);
    }
    /* 40% {
        transform: translateY(-20%) translateX(-14%);
    } */
    100% {
        transform: translateY(-30%) translateX(-18%);
    }
}

@keyframes fadeInRightDown {
    0% {
        opacity: 0;
        transform: translateY(-50px) translateX(50px);
      }
    100% {
      opacity: 1;
      transform: translateY(0) translateX(0);
    }
  }
  
  .fadeInRightDown {
    animation-name: fadeInRightDown;
  }

@keyframes rotate_1 {
    0% {
        transform: rotate(360deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate_2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/********** ↓ color ↓ **********/

.bg-fff {
    background-color: #fff;
}
.bg-000 {
    background-color: #000;
}
.bg-002346 {
    background-color: #002346;
}
.c-fff {
    color: #fff;
}
.c-00ACFC {
    color: #00ACFC;
}
.c-030915 {
    color: #030915;
}
.c-8BA1B8 {
    color: #8BA1B8;
}
.c-002346 {
    color: #002346;
}
.gr-01 {
    background: linear-gradient(45deg, #0177DC, #007FDA 50%, #01B7DB 100%);
}



/********** ↓ line-height ↓ **********/
.lh-120 {
    line-height: 1.2;
}
.lh-130 {
    line-height: 1.3;
}
.lh-140 {
    line-height: 1.4;
}
.lh-150 {
    line-height: 1.5;
}
.lh-160 {
    line-height: 1.6;
}
.lh-170 {
    line-height: 1.7;
}


/********** ↓ text-align ↓ **********/
.tac {
    text-align: center;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}


/********** ↓ font-size ↓ **********/
.fs-8 {
    font-size: 0.8rem;
}
.fs-9 {
    font-size: 0.9rem;
}
.fs-10 {
    font-size: 1rem;
}
.fs-11 {
    font-size: 1.1rem;
}
.fs-12 {
    font-size: 1.2rem;
}
.fs-13 {
    font-size: 1.3rem;
}
.fs-14 {
    font-size: 1.4rem;
}
.fs-15 {
    font-size: 1.5rem;
}
.fs-16 {
    font-size: 1.6rem;
}
.fs-17 {
    font-size: 1.7rem;
}
.fs-18 {
    font-size: 1.8rem;
}
.fs-19 {
    font-size: 1.9rem;
}
.fs-20 {
    font-size: 2rem;
}
.fs-21 {
    font-size: 2.1rem;
}
.fs-22 {
    font-size: 2.2rem;
}
.fs-23 {
    font-size: 2.3rem;
}
.fs-24 {
    font-size: 2.4rem;
}
.fs-25 {
    font-size: 2.5rem;
}
.fs-26 {
    font-size: 2.6rem;
}
.fs-27 {
    font-size: 2.7rem;
}
.fs-28 {
    font-size: 2.8rem;
}
.fs-29 {
    font-size: 2.9rem;
}
.fs-30 {
    font-size: 3rem;
}
.fs-31 {
    font-size: 3.1rem;
}
.fs-32 {
    font-size: 3.2rem;
}
.fs-33 {
    font-size: 3.3rem;
}
.fs-34 {
    font-size: 3.4rem;
}
.fs-35 {
    font-size: 3.5rem;
}
.fs-36 {
    font-size: 3.6rem;
}
.fs-37 {
    font-size: 3.7rem;
}
.fs-38 {
    font-size: 3.8rem;
}
.fs-39 {
    font-size: 3.9rem;
}
.fs-40 {
    font-size: 4rem;
}
.fs-41 {
    font-size: 4.1rem;
}
.fs-42 {
    font-size: 4.2rem;
}
.fs-43 {
    font-size: 4.3rem;
}
.fs-44 {
    font-size: 4.4rem;
}
.fs-45 {
    font-size: 4.5rem;
}
.fs-46 {
    font-size: 4.6rem;
}
.fs-47 {
    font-size: 4.7rem;
}
.fs-48 {
    font-size: 4.8rem;
}
.fs-49 {
    font-size: 4.9rem;
}
.fs-50 {
    font-size: 5rem;
}
.fs-51 {
    font-size: 5.1rem;
}
.fs-52 {
    font-size: 5.2rem;
}

@media (max-width: 1280px){
    .fs-18 {
        font-size: 1.7rem;
    }
    .fs-24 {
        font-size: 2.0rem;
    }
    .fs-32 {
        font-size: 2.8rem;
    }
    .fs-36 {
        font-size: 3.2rem;
    }
    .fs-42 {
        font-size: 3.6rem;
    }
    .fs-48 {
        font-size: 4.0rem;
    }
    
}
@media (max-width: 768px){
    .fs-18 {
        font-size: 1.5rem;
    }
    .fs-24 {
        font-size: 1.6rem;
    }
    .fs-32 {
        font-size: 2.4rem;
    }
    .fs-36 {
        font-size: 2.8rem;
    }
    .fs-42 {
        font-size: 3.0rem;
    }
    .fs-48 {
        font-size: 3.6rem;
    }
}
@media (max-width: 540px){
    .fs-36 {
        font-size: 2.2rem;
    }
    .fs-42 {
        font-size: 2.4rem;
    }

}
/********** ↓ display ↓ **********/
.none {
    display: none!important;
}
.rel {
    position: relative;
}
.abs {
    position: absolute;
}
.fixed {
    position: fixed;
}
.sticky {
    position: sticky;
}
.block {
    display: block;
}
.in-block {
    display: inline-block;
}
.grid {
    display: grid;
}
.flex {
    display: flex;
}
.flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.in-flex {
    display: inline-flex;
}
.fdc {
    flex-direction: column;
}
.fdc-r {
    flex-direction: column-reverse;
}
.fdr {
    flex-direction: row;
}
.fdr-r {
    flex-direction: row-reverse;
}
.fww {
    flex-wrap: wrap;
}
.fwn {
    flex-wrap: nowrap;
}
.fww-r {
    flex-wrap: wrap-reverse;
}
.aic {
    align-items: center;
}
.ais {
    align-items: flex-start;
}
.aie {
    align-items: flex-end;
}
.jcc {
    justify-content: center;
}
.jcs {
    justify-content: flex-start;
}
.jce {
    justify-content: flex-end;
}
.jcsb {
    justify-content: space-between;
}
.jcsa {
    justify-content: space-around;
}
.flex-1 {
    flex: 1;
}
.flex-2 {
    flex: 2;
}
.flex-3 {
    flex: 3;
}
.gap-1 {
    gap: 0.1rem;
}
.gap-2 {
    gap: 0.2rem;
}
.gap-3 {
    gap: 0.3rem;
}
.gap-4 {
    gap: 0.4rem;
}
.gap-5 {
    gap: 0.5rem;
}
.gap-6 {
    gap: 0.6rem;
}
.gap-7 {
    gap: 0.7rem;
}
.gap-8 {
    gap: 0.8rem;
}
.gap-9 {
    gap: 0.9rem;
}
.gap-10 {
    gap: 1rem;
}
.gap-12 {
    gap: 1.2rem;
}
.gap-16 {
    gap: 1.6rem;
}
.gap-20 {
    gap: 2rem;
}
.gap-30 {
    gap: 3rem;
}
.gap-40 {
    gap: 4rem;
}
.gap-50 {
    gap: 5rem;
}
.gap-60 {
    gap: 6rem;
}


/********** ↓ margin ↓ **********/
.mt-0 {
    margin-top: 0;
}
.mr-0 {
    margin-right: 0;
}
.ml-0 {
    margin-left: 0;
}
.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 0.4rem;
}
.mt-8 {
    margin-top: 0.8rem;
}
.mr-8 {
    margin-right: 0.8rem;
}
.ml-8 {
    margin-left: 0.8rem;
}
.mb-8 {
    margin-bottom: 0.8rem;
}
.mt-9 {
    margin-top: 0.9rem;
}
.mr-9 {
    margin-right: 0.9rem;
}
.ml-9 {
    margin-left: 0.9rem;
}
.mb-9 {
    margin-bottom: 0.9rem;
}
.mt-10 {
    margin-top: 1rem;
}
.mr-10 {
    margin-right: 1rem;
}
.ml-10 {
    margin-left: 1rem;
}
.mb-10 {
    margin-bottom: 1rem;
}
.mt-6 {
    margin-top: 0.6rem;
}
.mr-6 {
    margin-right: 0.6rem;
}
.ml-6 {
    margin-left: 0.6rem;
}
.mb-6 {
    margin-bottom: 0.6rem;
}
.mt-16 {
    margin-top: 1.6rem;
}
.mr-16 {
    margin-right: 1.6rem;
}
.ml-16 {
    margin-left: 1.6rem;
}
.mb-16 {
    margin-bottom: 1.6rem;
}
.mt-20 {
    margin-top: 2rem;
}
.mr-20 {
    margin-right: 2rem;
}
.ml-20 {
    margin-left: 2rem;
}
.mb-20 {
    margin-bottom: 2rem;
}
.mt-24 {
    margin-top: 2.4rem;
}
.mr-24 {
    margin-right: 2.4rem;
}
.ml-24 {
    margin-left: 2.4rem;
}
.mb-24 {
    margin-bottom: 2.4rem;
}
.mt-30 {
    margin-top: 3rem;
}
.mr-30 {
    margin-right: 3rem;
}
.ml-30 {
    margin-left: 3rem;
}
.mb-30 {
    margin-bottom: 3rem;
}
.mt-40 {
    margin-top: 4rem;
}
.mr-40 {
    margin-right: 4rem;
}
.ml-40 {
    margin-left: 4rem;
}
.mb-40 {
    margin-bottom: 4rem;
}
.mt-52 {
    margin-top: 5.2rem;
}
.mr-52 {
    margin-right: 5.2rem;
}
.ml-52 {
    margin-left: 5.2rem;
}
.mb-52 {
    margin-bottom: 5.2rem;
}
.mt-80 {
    margin-top: 8rem;
}
.mr-80 {
    margin-right: 8rem;
}
.ml-80 {
    margin-left: 8rem;
}
.mb-80 {
    margin-bottom: 8rem;
}



br.mb-ver {
    display: none;
}
br.pc-ver {
    display: block;
}

@media (max-width: 640px) {
    br.mb-ver {
        display: block
    }
    br.pc-ver {
        display: none;
    }
}


.list-dot{
    margin-left: 2rem;
  }
.list-dot::before{
content: "•";
position: relative;
left: -0.5rem;
margin-left: -1.8rem;
}
.list-dash{
    margin-left: 2rem;
    display: block;
    line-height: 1.5;
}
.list-dash::before{
content: "-";
position: relative;
left: -0.5rem;
margin-left: -1.8rem;
}


.public-btn-1{
    font-size: 2.4rem;
    color: #00ACFC;
    line-height: 1.3;
    font-weight: 600;
    border-radius: 1.2rem;
    border: 0.1rem solid #00ACFC;
    position: relative;
    display: inline-block;
}
.public-btn-1:hover {
    background: rgb(0, 172, 252,0.1);
}
.public-btn-2 {
    position: relative;
    display: inline-block;

    color: #002346;
    border-radius: 12px;
    font-weight: 700;
    background: linear-gradient(241deg, #00C2DB -2.88%, #007FDA 55.86%, #0072DD 111.03%);
    box-shadow: -2px -2px 1px 0px #00A0BC inset, 
                2px 2px 2px 0px #008DEB inset, 
                -3px -3px 2px 0px #A2E9FF inset, 
                3px 3px 2px 0px #A5FFF6 inset, 
                0px 0.96px 44.112px 0px #0079D0;  
    overflow: hidden;
    max-width: 360px;
}
.public-btn-2:hover {
    color: #fff;
}
.public-btn-2::before,
.public-btn-2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: radial-gradient(50.7% 50% at 50% 49.44%, #FFF 0%, #E4E4E4 13%, #A0A0A0 41%, #333 81%, #000 99%);
    background-blend-mode: color-dodge;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.public-btn-2::before {
    top: 0;
}

.public-btn-2::after {
    bottom: 0;
}


.public-btn-1::before,
.public-btn-1::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background: radial-gradient(50.7% 50% at 50% 49.44%, #FFF 0%, #E4E4E4 13%, #A0A0A0 41%, #333 81%, #000 99%);
    background-blend-mode: color-dodge;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.public-btn-1::before {
    top: -6px;
}

.public-btn-1::after {
    bottom: -6px;
}