@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

* {margin: 0;padding: 0;box-sizing: border-box;}
html {font-size: 10px; scroll-behavior: smooth;}
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #F0F0F3;
}
img, svg {vertical-align: top;}
ul, li {list-style: none;}


.blind {
    position: absolute;
    left: -9999em;
    top: -9999em;
    overflow: hidden;
}
/* .montserrat {font-family: 'Montserrat', sans-serif;} */


/* header - nav */
header {
    position: fixed;
    height: 8rem;
    width: 100%;
    z-index: 100;
    transition: all 0.3s;
}
header.active {
    background-color: #F0F0F3;
}
header nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 5rem;
    transition: all 0.3s;
}
header nav h1 {
    width: 100px;
    height: 60px;
    background: url(./../img/logo.png) no-repeat 50% 50% / contain;
}
header nav h1 a{
    display: block;
    width: 100%;
    height: 100%;
}


header .btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 0;
    outline: none;
    background: none;
    cursor: pointer;
    z-index: 100;
}
header .btn .box {
    position: absolute;
    left: 5px;
    width: 34px;
    height: 5px;
    background-color: #FF0000;
    transition: all 0.3s;
}
header .btn .box:nth-of-type(1) {transform: translateY(-12px);}
header .btn .box:nth-of-type(2) {transform: translateY(-2px);}
header .btn .box:nth-of-type(3) {transform: translateY(8px);}

header .btn.on .box:nth-of-type(1) {transform: rotate(45deg);}
header .btn.on .box:nth-of-type(2) {width: 0;}
header .btn.on .box:nth-of-type(3) {transform: rotate(-45deg);}

header nav .gnb {
    position: absolute;
    left: 0; right: 0;top: 0;bottom: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: all 0.3s;
    display: flex;
}
header .back {
    content: '';
    width: calc(100% - 800px);
    height: 100vh;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
}
header nav .gnb ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 800px;
    margin-left: auto;
    padding-left: 10rem;
    background-color: #F0F0F3;
}
header nav .gnb li {
    transition: all 0.3s;
    margin: 10px 0;
}
header nav .gnb li a {
    display: block;
    width: 500px;
    height: 120px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 55px;
    line-height: 120px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #B5B5B5;
    background-color: #F0F0F3;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), inset -10px -5px 4px rgba(201, 201, 201, 0.3), inset 15px 4px 10px rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: all 0.3s;

}
header nav .gnb li:hover a {
    color: #434343;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), inset -4px -4px 10px rgba(255, 255, 255, 0.72), inset 4px 4px 10px rgba(146, 146, 146, 0.4);
    transition: all 0.3s;
}




#container {
    width: 100%;
    height: 100vh;
    padding-top: 8rem;
    display: flex;
    flex-wrap: wrap;
}
.map {
    width: 60%;
}


/* info */
.info {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
}

.info .box {
    width: 50%;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #434343;
}
.info .box img {
    width: 130px;
    height: 100px;
    object-fit: cover;
}
.info .box .desc {
    padding-top: 1rem;
}






/* footer */

footer {
    box-shadow: inset 0px 4px 4px rgba(159, 159, 159, 0.25);
    width: 100%;
    color: #434343;
}
footer p {
    font-size: 1.2rem;
    font-weight: 200;
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer p img {
    height: 24px;
}
footer p span {
    padding: 0 10px;
}
footer p br {
    display: none;
}







