@font-face {
    font-family: 'Ownglyph_wiseelist-Rg';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/Ownglyph_wiseelist-Rg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
.hiddenGnb{
    position: fixed;
    z-index: 1004;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: none;
}
.btnClose{
    line-height: 0;
    position: absolute;
    width: 2rem;
    top: 1.2rem;
    right: 2rem;
    cursor: pointer;
}
.gnb{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
}
.gnb li{
    margin-bottom: 2.2rem;
}
.gnb>li:hover{
    color: var(--main-color);
}
.gnb li:last-of-type{
    margin-bottom: 0;
}

.btnMenu{
    position: fixed;
    z-index: 100;
    top: 1rem;
    right: 2rem;
    line-height: 0;
    cursor: pointer;
    display: none;
    filter: drop-shadow(0 0.1rem 0.3rem rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease 0s;
    /* height: 2rem;
    width: 2rem; */
    padding: 0.5rem;
    border-radius: 2.5rem;
    box-sizing: border-box;
    background-color: #fff;
}
.btnMenu path{
    fill: var(--main-color);
}
.btnMenu:hover{
    transform: scale(1.1);
}
.btnMenu svg{
    transition: all 0.4s ease 0s;
    height: 2rem;
    width: 2rem;
    aspect-ratio: 1/1;
}
.btnStyle{
    border: 0.1rem solid var(--main-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2.5rem;
}
.btnStyle:hover{
    color: #fff;
    background-color: var(--main-color);
}
.btnStyle:hover svg path{
    stroke: #fff;
}

header{
    width: 1400px;
    z-index: 100;
    position: fixed;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 13rem; */
    /* border: 1px solid red; */
}
.gnbFloat{
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--main-color);
    border-radius: 1rem;
    box-sizing: border-box;
    filter: drop-shadow(0 3px 6px #00000044);
}
.gnbFloat>li{
    color: #fff;
}
.gnbFloat>li{
    transition: all ease 0.5s 0s;
}
.gnbFloat>li:hover{
    transform: scale(1.2);
}
.btnResume{
    /* border: 0.1rem solid #fff; */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2.5rem;
    color: var(--main-color);
    background-color: #fff;
    filter: drop-shadow(0 3px 6px #00000044);
    transition: all ease 0.5s 0s;
}
.btnResume svg,
.btnResume path{
    stroke: var(--main-color);
    transition: all ease 0.5s 0s;
}
.btnResume:hover{
    background-color: var(--main-color);
    color: #fff;
}
.btnResume:hover svg path{
    stroke: #fff;
}

/* hero영역 */
.hero{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.hero>img{
    position: absolute;
    width: 100%;
    max-width: 300%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
    transform: translateX(0);
}
.floatingHeroTxt{
    width: 100%;
    padding: 0 13rem;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.floatingHeroTxt h1{
    font-size: 3rem;
    font-weight: 700;
}
.floatingHeroTxt .Ownglyph{
    color: var(--sub2-color);
    font-family: "Ownglyph_wiseelist-Rg", sans-serif;
    font-weight: 100;
}

/* about영역 */
.about{
    /* border: 1px solid red; */
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 12rem;
    gap: 99px;
}
.aboutImg{
    /* border: 1px solid blue; */
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}
.aboutImg img{
    width: 450px;
    border-radius: 480px;
}
.aboutImg span{
    display: inline-block;
}
.aboutTxt{
    /* border: 1px solid blue; */
    width: 806px;
}
.aboutTxt p:last-of-type{
    /* border: 1px solid palevioletred; */
    margin-bottom: 0;
}
.aboutTxt h1{
    font-family: "Ownglyph_wiseelist-Rg", sans-serif;
    font-weight: 100;
    font-size: 4rem;
    margin-bottom: 5rem;
    position: relative;
}
.aboutTxt p{
    margin-bottom: 1rem;
}
.plane{
    width: 4rem;
    position: absolute;
    right: 0;
    top: 0;
    animation: swing 2s ease 0s infinite alternate;
}
@keyframes swing {
    0%{
        transform: rotate(-10deg);
    }
    100%{
        transform: rotate(20deg);
    }
}

/* skill 영역 */

.skills{
    width: 100%;
    margin: 0 auto;
    background-color: var(--sub-color);
}
.skillTitle{
    /* border: 1px solid black; */
    margin: 0 auto;
    height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1400px;
}
.skillTitle h1{
    /* border: 1px solid red; */
    margin-bottom: 1rem;
    font-family: "Ownglyph_wiseelist-Rg", sans-serif;
    font-size: 2.6rem;
    text-align: center;
}
.skillTitle h1+p{
    /* border: 1px solid blue; */
    text-align: center;
}
.skillList {
    width: 1400px;
    margin: 0 auto;
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 5rem 6rem;
    border-radius: 5rem 5rem 0 0;
    box-shadow: 0px -3px 10px #00000030;
    box-sizing: border-box;
}
.skillList>li{
    /* border: 1px solid #000; */
    width: calc((100% - 2rem)/3);
    margin-bottom: 2rem;
    box-sizing: border-box;
}
.skillList>li h3{
    /* border: 1px solid #ccc; */
    margin-bottom: 1rem;
    gap: 1rem;
}

/* Certifications 영역 */

.certi{
    padding: 8rem 13rem;
    position: relative;
    display: flex;
    align-items: center;
}
.certi figure{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;
    overflow: hidden;
}
.certi figure img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-width: 200%;
    display: block;
    /* aspect-ratio: 19/10; */
}
.certiShadow{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0),rgba(0, 0, 0, 0));
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certiTxt{
    width: 100%;
    color: #fff;
}
.certiTxt h1{
    margin-bottom: 1rem;
    font-family: "Ownglyph_wiseelist-Rg",sans-serif;
    font-size: 2.6rem;
}
.certiTxt p{
    margin-bottom: 3rem;
}
.cerList{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.cerList>.list{
    display: flex;
    gap: 1rem;
}
.cerList dt{
    flex-shrink: 0;
    font-weight: 700;
    width: 5rem;
}
.cerList dd{
    flex: 1;
}

/* 팝업 영역 */

.popupTitle{
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 4rem;
}
.popupTitle h1{
    font-family: "Ownglyph_wiseelist-Rg", sans-serif;
    font-size: 2.6rem;
    flex: 1;
}
.popupTitle p{
    flex: 2;
}
.popupList{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem 1rem;
    margin-bottom: 2rem;
}
.popupList figure{
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    line-height: 0;
}
.txtFramePopup>*{
    margin-bottom: 0.5rem;
}
.txtFramePopup>*:last-child{
    margin-bottom: 0;
}
.txtFramePopup dl{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.txtFramePopup dt{
    margin-right: 2rem;
}
.txtFramePopup dd{
    padding: 0.25rem 0.9rem;
    border: 1px solid var(--main-color);
}

/* 배너슬라이드 영역 */
.bannerTxt{
    /* background-color: aqua; */
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}
.bannerTxt h3{
    /* border: 1px solid red; */
    /* box-sizing: border-box; */
    flex-shrink: 0;
}
.bannerTxt p{
    /* border: 1px solid yellow; */
    /* box-sizing: border-box; */
    /* margin-right: 5.3rem; */
    flex-shrink: 1;
    font-size: var(--detail);
}
.swiper-slide>figure{
    border-radius: 0.5rem;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 2rem;
}
.tools{
    display: flex;
    align-items: start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}
.tools>span{
    display: inline-block;
    border: 1px solid var(--main-color);
    padding: 0.25rem 0.6rem;
}
.bannerStation{
    width: 100%;
    display: flex !important;
    flex-direction: column-reverse;
}
.bannerStation .swiper-pagination {
    --swiper-theme-color: var(--main-color);
    bottom: 0 !important;
    margin-top: 2rem;
    position: static;
}
.stickyMenu.commonFrame{
    padding-top: 0;
    margin-bottom: 4rem;
}
.stickyMenu{
    /* border: 1px solid red; */
    position: sticky;
    top: 4rem;
    left: 0;
    display: flex;
    gap: 1rem;
}
.stickyMenu.m1>li{
    padding: .4rem 1rem;
    color: #fff;
    font-size: .8rem;
    border-radius: 40px;
    background: linear-gradient(to bottom, rgb(137, 121, 106),rgb(0, 0, 0));
    transition: all ease 0.5s 0s;
}
.stickyMenu.m2>li{
    padding: .4rem 1rem;
    color: #fff;
    font-size: .8rem;
    border-radius: 40px;
    background: linear-gradient(to bottom, rgb(157, 178, 201),rgb(25, 68, 114));
    text-align: center;
    transition: all ease 0.5s 0s;

}
.stickyMenu.m1>li:hover{
    background: linear-gradient(to top, rgb(137, 121, 106),rgb(0, 0, 0));
}
.stickyMenu.m2>li:hover{
    background: linear-gradient(to top, rgb(157, 178, 201),rgb(25, 68, 114));
}
.imgall{
    text-align: center;
    min-height: 500px;
    line-height: 0;
}
.imgall img {
    width: 100%;
    max-width: 1920px;
}

.contact{
    height: 44rem;
    position: relative;
    color: #FFFCDD;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10rem;
    height: 0.1rem;
    background-color: #FFFCDD;
}
.cont_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    filter: brightness(0.7);
    overflow: hidden;
}
.cont_img img{
    height: 100%;
    width: 100%;
    max-width: 200%;
}
.bgBlur{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(1rem);
}
.contactTxt{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.t1 figure img{
    height: 3rem;
}
.t1 figure{
    margin-bottom: 1rem;
}
.t1 p{
    line-height: 140%;
}

.t2{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.t2 li{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    white-space: nowrap;
}
.t2 li img{
    padding-right: 1rem;
}
#Layer_1{
    overflow: visible;
}
#Layer_1 path{
    fill: transparent;
    stroke: #FFFCDD;
    stroke-width: 2px;
    transition: all 1s ease 0s;
    
}
#Layer_1.on path{
    stroke-dashoffset: 0 !important;
}
