@charset "UTF-8";

@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
    format("woff");
  font-weight: 100, 200, 300, 400, 500, 600, 700, 800, 900;
  font-style: normal;
}
* {
  font-family: "Pretendard-Regular" !important;
  box-sizing: border-box;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

i {
  font-size: 24px;
}

/*  */
header {
  position: fixed !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 3%;
  z-index: 100;
  gap: 30%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
header .logo a {
  display: block;
  width: 200px;
  height: 40px;
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
}
.hide {
  display: none;
}
header .gnb {
  display: flex;
  gap: 70px;
  justify-self: center;
}

header .gnb li > a {
  font-size: 30px !important ;
  color: white !important;
}

header .mobile {
  display: none;
  width: 600px;
  height: auto;
  position: relative;
}
header .mobile .mobile-btn {
  width: 0px;
  height: 0px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: -20px;
  z-index: 1000;
}
/* header .mobile .mobile-btn::before{
  width: 0 !important;
  height: 0 !important;
  text-indent: -9999px;
  position: absolute;

} */

.mobile-wrap {
  display: none;
  width: 350px;
  height: 400px;
  background-color: #fff;
  position: absolute;
  right: -22px;
  z-index: 1;
  box-shadow: 0px 0px 0px 3px #ddd inset;
}
.mobile-wrap.on {
  display: block;
  top: -45px;
}
.mobile-wrap .mobile-span {
  display: inline-block;
  width: 100%;
  height: 80px;
  padding-left: 20px;
  background-color: black;
}
.mobile-wrap .mobile-span span {
  font-weight: 600;
  font-size: 18px;
  line-height: 80px;
  position: relative;
  color: #fff;
}

.mobile-wrap .mobile-gnb {
  color: #000;
}
.mobile-wrap .mobile-gnb .mobile-depth1 {
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.mobile-wrap .mobile-gnb .mobile-depth1 a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 60px;
  color: black;
}

.mobile-wrap .mobile-gnb .mobile-depth1:hover > a {
  color: #ff0000;
}

.menu-svg, .close-svg {
  width: 24px;
  height: 24px;
  display: none;
}

.menu-svg.active, .close-svg.active {
  display: block;
}

/* SVG 색상 지정 */
.menu-svg path, .close-svg path {
  fill: #fff; 
}

main section img {
  width: 100%;
  height: auto;
}

/*  */

/********
footer-S
*******/

footer img {
  width: 100%;
  height: auto;
}
/********
footer-E
*******/
@media screen and (max-width: 1980px) {
  header {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 90px;
    padding: 0 3%;
    z-index: 100;
  }
  header .gnb li > a {
    font-size: 26px !important ;
    color: white !important;
  }
  header .gnb {
    display: flex;
    gap: 50px;
    justify-self: center;
  }
}
@media screen and (max-width: 1150px) {
  header {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 90px;
    padding: 0 3%;
    z-index: 100;
    gap: 20%;
  }
  header .gnb li > a {
    font-size: 20px !important ;
    color: white !important;
  }
  header .gnb {
    display: flex;
    gap: 40px;
    justify-self: center;
  }
  header .logo a {
    display: block;
    width: 150px;
    height: 40px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media screen and (max-width: 800px) {
  header .logo a {
    display: block;
    width: 100px;
    height: 40px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  header .gnb {
    display: none;
    gap: 40px;
    justify-self: center;
  }
  header .mobile {
    display: block;
    width: 600px;
    height: auto;
    position: relative;
  }
  header .mobile .mobile-depth1 {
    padding-left: 20px;
  }


}
