@font-face {
    font-family: 'yg-jalnan';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OKGUNG';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/OKGUNG.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Shilla_CultureB-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/Shilla_CultureB-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'TheJamsil5Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil5Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'TmoneyRoundWindExtraBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/TmoneyRoundWindExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.header-font {
    font-family: 'yg-jalnan', sans-serif;
}
.okman-font {
    font-family: 'OKGUNG', sans-serif;
}
.shilla-font{
    font-family: 'Shilla_CultureB-Bold', sans-serif;
}
.jamsil-font{
    font-family:'TheJamsil5Bold', sans-serif;
}
.tmoney-font{
    font-family: 'TmoneyRoundWindExtraBold', sans-serif;
}

/* display-container */
.display-container {
    max-width: 415px;   
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    z-index: -10;
    background-color: #b2ccff;
    overflow-x: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}


/* nav section */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    margin: auto;
}
.navbar .menu-items {
    display: flex;
}
.navbar .nav-container li {
    list-style: none;
}
.navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
}
.navbar .nav-container a:hover{
    font-weight: bolder;
}
.nav-container {
    display: block;
    position: relative;
    height: 60px;
}
.nav_logo {
    position: absolute;
    top: 13px;
    left: 15px;
    font-size: 1.2rem;
}
.nav_logo img{
    width: 45px;
    height: auto;
}
.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}
.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
}
.nav-container .hamburger-lines .line1 {
     transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}
.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}
.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

/* hamburger menu section */
.navbar .menu-items {
    margin-top: 55px;
    width: 100%;    /* 가로 길이 auto -> 100% */
    height: 650px;
    transform: translate(150%);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    z-index: 100;   
    align-items: center;    /*align-items center 추가*/
}
.menu_durumari {
    width: 395px;
    height: 800px;
    background-image: url(../../static/images/durumari2.png);
    background-size: 395px 650px;
    z-index: 1000;
    letter-spacing: normal;
}
.menu-items .menu_logo{
    margin-top: 120px;
    margin-bottom: 10px;
}
.menu-items .menu_logo img {
    width: 65px;
    height: auto;
    border-radius: 20px;
}
.menu_durumari .tmoney {
    margin-bottom: 0;
    color: #758DBB;
    font-size: 13px;
}
.menu_line {
    border: 2px solid #758DBB;
    width: 170px;
    margin: 10px 114px;
}
.shilla {
    font-family: 'OKGUNG', sans-serif;
    margin-bottom: 1.2rem;
    font-size: 22px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
}

.menu_footer svg {
    margin: 3px 2px;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}

/* header section */
.header_title{
    position:relative;
    text-align: center;
    z-index:1;
    margin-top:21px;
}
.header_name{
    font-size:50px;
    color:#ffffff;
    -webkit-text-stroke: 1px #000000;
    margin-bottom: 0px;
}
.header_sub{
    font-size:20px;
    color:#ffffff;
    -webkit-text-stroke: 1px #000000;
}
.header_sub2{
    font-size:20px;
    color:#91AEE6;
    -webkit-text-stroke: 1px #000000;
    margin-top:-20px;
}

/* background img */
.background_img {
    position: relative;
}
/* 구름 애니메이션 넣기 */
@-webkit-keyframes cloud-ani {
    0% {
        -webkit-transform: translateX(170px) translateY(0px);
    }

    100% {
        -webkit-transform: translateX(-500px) translateY(0px);
    }
}
@-webkit-keyframes cloud-ani2 {
    100% {
        -webkit-transform: translateX(-170px) translateY(0px);
    }

    0% {
        -webkit-transform: translateX(700px) translateY(0px);
    }
}
.cloud1 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    right: -25px;
    margin-top: -50px;
    -webkit-animation-name: cloud-ani;
    -webkit-animation-duration: 15s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud2 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    left: -25px;
    top: 100px;
    -webkit-animation-name: cloud-ani2;
    -webkit-animation-duration: 18s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud3 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    right: -25px;
    top: 280px;
    -webkit-animation-name: cloud-ani;
    -webkit-animation-duration: 16.5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud4 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    left: -25px;
    top: 500px;
    -webkit-animation-name: cloud-ani2;
    -webkit-animation-duration: 17s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud5 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    right: -25px;
    top: 700px;
    -webkit-animation-name: cloud-ani;
    -webkit-animation-duration: 18s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud6 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    left: -25px;
    top: 900px;
    -webkit-animation-name: cloud-ani2;
    -webkit-animation-duration: 15s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud7 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    right: -25px;
    top: 1100px;
    -webkit-animation-name: cloud-ani;
    -webkit-animation-duration: 16s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud8 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    left: -25px;
    top: 1300px;
    -webkit-animation-name: cloud-ani2;
    -webkit-animation-duration: 18s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}
.cloud9 {
    z-index: 0;
    height: auto;
    position: absolute;
    width: 180px;
    right: -25px;
    top: 1500px;
    -webkit-animation-name: cloud-ani;
    -webkit-animation-duration: 17s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
}



/* logo section */
.logo_section {
}
.logo_glover {
    margin: 30px -10px 30px 30px;
    z-index: 10;
}
.handshake {
    margin-top: 60px;
}
.logo_likelion {
    margin: 30px 30px 30px -10px;
    width: 119px;
    z-index: 10;
}
.logo_header{
    font-size: 15px;
    font-weight: 700;
}
.logo_header p {
    margin-bottom: 0;
}
.logo_header .color {
    color: #2A4884;
}
.glover_icon img {
    width: 80px;
    height: auto;
    border-radius: 20px;
}
.likelion_icon img {
    width: 80px;
    height: auto;
    margin-bottom: 9px;
}
.who_made {
    margin-bottom: 50px;
}
.who_made p{
    font-size: 11px;
    z-index: 10;
    font-weight: 500;
    margin-bottom: 0px;
    font-weight: 700;
}
.info .color {
    /* 색상변경  */
    color: #2A4884;
}


/* makers section */
.makers {
    margin-bottom: 100px;
}
.team {
    margin: 70px 0 20px 0;
}
.team a {
    text-decoration: none;    
    color: #000000;
    z-index: 10;
}
.makers_logo {
    z-index: 10;
}
.makers_logo img {
    width: 4rem;
    margin-bottom: 10px;
    border-radius: 20px;
}
.team p {
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 10;
    margin-bottom: 0px;
}
.team .color {
    color: #2A4884;
}
.glover-section {
    flex-wrap: wrap;
}
.likelion-section {
    flex-wrap: wrap;  
}
.box_tool{
    z-index: 10;
}
.m_box {
    background-color: #fff;
    border: 1px solid #2A4884;
    border-radius: 20px;
    height: 170px;
    width: 130px;
    font-size: 10px;
    text-align: center;
    flex-wrap: wrap;
    margin: 10px;
    font-weight: 900;
}

.m_mimo img {
    padding-top: 10px;
    width: 80px;
}
.m_icon img {
    width: 15px;
    border-radius: 5px;
    margin: 6px 2px 0 0;
}
.m_icon2 img {
    width: 15px;
    border-radius: 5px;
    margin: 8px 2px 0 0;
}
.m_name {
    padding-top: 4px;
    font-size: 14px;
}
.m_role {
    font-size: 13px;
}
.hill {
    padding-top: 70px;
}
.hill img {
    width: 415px;
    height: auto;
    opacity: 0.75;
}

/* 아이폰 SE 또는 375px 미만의 화면 너비에서 스타일을 적용 */
@media (max-width: 376px) {
    .logo_header p{
        width:124px;
    }
    /* .navbar .menu-items {
        margin-left:-23px;
    } */
    /* 언덕 위치 조정 */
    /* .hill{
        position: absolute;
        bottom:0;
    } */
}