@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: rgba(0, 0, 0, 0.7);
}
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%;
    background-color: transparent;
    z-index: 100;
    transition: all 0.3s;
}
header.active {
    background-color: rgb(242, 103, 032);
}
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_white.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;
    top: 50%;
    width: 30px;
    height: 3px;
    border-radius: 50px;
    background-color: #fff;
    transition: all 0.3s;
}
header .btn:hover .box {
    background-color: rgb(196, 196, 196);
}
header .btn .box:nth-of-type(1) {transform: rotate(45deg);}
header .btn .box:nth-of-type(2) {transform: rotate(-45deg);}


#container img {
    width: 100%;
    object-fit: cover;
}
#container img.m {
    display: none;
}




/* footer */

footer {
    width: 100%;
    background-color: #ff0a0a;
    color: #fff;
}
footer p {
    font-size: 1.2rem !important;
    font-weight: 200 !important;
    text-align: center;
    padding: 3rem 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
footer p img {
    height: 24px !important;
}

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

@media (max-width: 1040px) {
    header nav h1 {
        width: 80px;
        height: 40px;
    }

}
@media (max-width: 770px) {
    header {
        height: 4rem;
    }
    header nav {
        padding: 0rem 0rem;
        display: flex;
        justify-content: flex-end;
    }
    header nav h1 {
        display: none;
    }
    header .btn .box {
        width: 20px;
        height: 2px;
    }
    header nav .gnb li img {
        height: 4rem;
    }
    footer {
        padding: 0 10px;
    }
    footer p {
        flex-direction: column !important;
        line-height: 24px;
    }
    footer p span {
        display: none;
    }
    footer p br {
        display: block;
    }
}


@media (max-width: 640px) {
    header nav .gnb img {
        height: 40px;
    }
    #container img.pc {
        display: none;
    }
    #container img.m {
        display: block;
    }

}


@media (max-width: 490px) {
    header nav img{
        height: 40px;
    }
    header .btn .box {
        top: 20px;
        left: 10px;
    }
    footer p {
        padding: 1.4rem 0 !important;
    }
} 