@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&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&family=Righteous&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
    height:auto;
}

a{
    text-decoration:none;
}

button{
    display: inline-flex;

    border:none;
    cursor:pointer;
    font-family:inherit;
}

.text {
    position: absolute; /* 부모요소 따르겠다는 의미 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 위치 시작점 조절 중앙 정렬용 */
    color: white;
    text-align: center; 
    width: 100%;
}

/* 상단 헤더 & 메뉴 */
.header {
    position: absolute;
    top: 0;
    left: 0;    
    box-sizing: border-box;

    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2.1vw 2.6vw 2vw 5.9vw;

    background: transparent;
}

.header img {
    width: 40%;
}

.menu {
    display: flex;
    gap: 4vw;
    align-items: center;
}

.menu a {
    color:white;
    text-decoration:none; /* 글자 밑줄 속성 */
    background:none;
    border:none;
    cursor:pointer;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 1vw 4vw;
    font-size: 1.4vw;
}

.dropdown{
    position:relative;
}

/* .dropdown:hover {
    background-color: rgba(255, 255, 255, 0.300);
} */

.dropbtn {
    display:block;
    text-align:center;

    color:white;
    text-decoration:none; /* 글자 밑줄 속성 */

    background:none;
    border:none;
    cursor:pointer;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 1vw 2.66vw;
    font-size: 1.4vw;
}

.dropdown-content {
    display:none;
    position:absolute;

    top:100%;
    left:50%;
    transform:translateX(-50%);

    background:rgba(255, 255, 255, 0.300);;
    /* min-width:180px; */
    padding-top: 7%;
}

.dropdown-content a {
    display:block;
    text-align:center;

    color:white;
    text-decoration:none; /* 글자 밑줄 속성 */

    background:none;
    border:none;
    cursor:pointer;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 1vw 2.6vw;
    font-size: 1.35vw;
}

.dropdown-content a:hover {
    background:rgba(255, 255, 255, 0.300);;
}

.dropdown:hover .dropdown-content {
    display:block;
}

.dropdown:hover .dropbtn {
    background-color: rgba(255, 255, 255, 0.300);;
}

/* 하단 네비게이터 */
.footer {
    position: relative;
}

.footer-contents {
    position: absolute;
    display: flex;
    justify-content: space-between;

    width: 90%;
    height: auto;

    top:18%;
    left:5%;
}

.info .title {
    font-family: 'inter';
    font-size: 1.85vw;
    font-weight: 700;
    color: #000;
}

.info .sub {
    font-family: 'inter';
    font-size: 1.04vw;
    font-weight: 600;
    color: #00000080;
    
    display: grid;
    gap: 370%
}

.navigater {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

.navigater a,
.a {
    font-family: 'inter';
    font-size: 1.3vw;
    font-weight: 600;
    text-decoration:none;
    background:none;
    color: #000;
    border:none;
    cursor:pointer;
}

.a a {
    display: grid;
    color: #00000080;
    margin-top: 17%;
}