@charset "utf-8";

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  z-index: 50;
  color: #fff;
  height: 110px;
  transition: background-color 0.3s;
}
.header .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: 280px;
}
.header .logo .black {
  display: none;
}
.header .nav {
  margin-left: auto;
}
.header .nav,
.header nav,
.header .deps1 {
  height: 100%;
}

.header .header-btnWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.header .header-snsWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.header .header-snsWrap li a{
  display: flex;
  color: #ffffff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 60px;
  font-weight: bold;
}

.header .header-snsWrap li a span{
  font-size: 14px;
}

.header .header-snsWrap li.youtube-color a{
  color: #f11919;
  padding-bottom: 2px;
}

.header .header-snsWrap li.youtube-color a span{
  color: #ffffff;

}

.header .header-snsWrap li a svg{
  width: 64px;
  vertical-align: middle;
}

.header .header-snsWrap li a svg .cls-1{
  fill:#1dd645;
}

.header .share_btn {
  font-size: 32px;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.header .share_area {
  position: absolute;
  padding: 25px 0 20px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  border-radius: 50px;
  width: 70px;
  height: 0px;
  overflow: hidden;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #1947ba;
  flex-wrap: wrap;
  transition: height 0.5s, width 0s ease-in-out, opacity 0.5s;
  z-index: 3;
}
.header .share_area.on {
  height: 130px;
  opacity: 1;
  pointer-events: inherit;
}
.header .share_area .a_box {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border-radius: 0;
}
.header .share_area a {
  display: block;
  margin: 0 auto 0;
  text-align: center;
  opacity: 0.8;
  width: 100%;
  transition: 0.3s ease-in-out;
  color: #fff;
  font-size: 21px;
  line-height: 1;
}
.header .share_area a i {
  color: #fff;
}
.header .share_area .a_box + .a_box {
  margin-top: 30px;
}
.header .share_area a.facebook {
  width: 11px;
}
.header .share_area a.kakao {
  width: 21px;
}
.header .share_area a.blog {
  width: 23px;
}
.header .share_area a.youtube {
  width: 25px;
}

.header .nav .deps1 {
  display: flex;
}
.header .nav .deps1 > li {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.header .nav .deps1 > li > a {
  padding: 0 60px;
  display: block;
  position: relative;
}
.header .nav .deps1 > li > a:before {
  content: "";
  width: 0%;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translate(-50%, 100%);
  height: 2px;
  display: block;
  background-color: #1947ba;
  transition: 0.3s ease-in-out;
  z-index: 3;
}
.header .nav .deps1 > li.current > a:before {
  background-color: #fff;
}
.header.hover .nav .deps1 > li.current > a:before {
  background-color: #1947ba;
}
.header .nav .deps1 > li.current > a:before {
  width: calc(100% - 120px);
}

.header .nav .deps1 > li:hover a:before {
  width: calc(100% - 120px);
}

.header .nav .deps1 > li .deps2 {
  position: absolute;
  left: 50%;
  bottom: -0px;
  transform: translate(-50%, 100%);
  opacity: 0;
  z-index: 1;
  padding-top: 10px;
  pointer-events: none;
}
.header .nav .deps1 > li .deps2 > li {
  font-size: 17px;
  color: #000;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}
.header .nav .deps1 > li .deps2 > li a {
  white-space: nowrap;
  position: relative;
}
.header .nav .deps1 > li .deps2 > li a:before {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translate(-50%, 100%);
  background-color: #000;
  content: "";
  transition: all 0.3s;
  display: block;
  width: 0;
  height: 1px;
}

.header .nav .gnb_bg {
  position: absolute;
  left: 50%;
  bottom: 0px;
  background-color: #fff;
  width: 100%;
  height: 0px;
  display: block;
  transform: translate(-50%, 100%);
  content: "";
  transition: height 0.4s, opacity 0.4s;
  box-shadow: rgba(149, 157, 165, 0.07) 0px 8px 15px;
  border-top: 1px solid #d3e0e9;
  opacity: 0;
}

.header.hover {
  background-color: #fff !important;
}
.header.hover:after {
  content: "" !important;
}

.header.hover .logo .black {
  display: inline;
}
.header.hover .logo .white {
  display: none;
}

.header.hover a {
  color: #000 !important;
}

.header.hover .header-snsWrap li.youtube-color a{
  color: #f11919 !important;
}

.header.hover .header-snsWrap li a span{
  color: #000 !important;
}

/* .header.hover .header-snsWrap li a svg .cls-1{
  fill: #000 !important;
} */

.header.hover .nav .deps1 > li .deps2 {
  opacity: 1;
  transition: all 0.4s;
  pointer-events: visible;
  transition-delay: 0.2s;
}
.header.hover .nav .gnb_bg {
  height: 240px;
  opacity: 1;
}

.header.hover .share_btn {
  color: #000;
}

.sub38 .header,
.header.fixed {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.04);
}
.sub38 header .logo .black,
.header.fixed .logo .black {
  display: flex;
}
.sub38 .header .logo .white,
.header.fixed .logo .white {
  display: none;
}
.sub38 .header a,
.header.fixed a {
  color: #000 !important;
}

.sub38 .header i,
.header.fixed i {
  color: #000;
}

.header.fixed .header-snsWrap li.youtube-color a i{
  color: #f11919 !important;
}

.header.fixed .header-snsWrap li.youtube-color a span{
  color: #000;

}

/* .header.fixed .header-snsWrap li a svg .cls-1{
  fill: #000 !important;
} */

/*.header .nav .deps1 > li.current a:before{background-color: #fff; width: calc(100% - 100px); content: ""; height: 2px; left: 50%; bottom: 0; transform: translate(-50%,100%); position: absolute}*/
@media screen and (max-width: 1280px) {
  .header .in {
    padding-right: 20px;
  }

  .header .nav {
    margin-top: 0;
  }
  .header .nav .gnb_bg {
    display: none;
  }
  .header .share_btn {
    margin-left: auto;
    font-size: 28px;
  }
  .header .ham_btn {
    color: #fff;
    font-size: 28px;
    margin-left: 0;
  }

  .header .nav,
  .header nav,
  .header .deps1 {
    width: 100%;
  }

  .header .nav .close {
    position: absolute;
    right: 28px;
    top: 20px;
    color: #fff;
    font-size: 28px;
    display: block;
  }
  .header .nav .close i {
    color: #fff;
  }
  .header .nav {
    position: fixed;
    left: -0%;
    right: auto;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: block;
    background-color: #1947ba;
    transform: translate(100%, 0);
    padding: 20px 0px;
    transition: left 0.5s ease-in-out;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header.on .nav {
    left: -100%;
  }

  .header .nav .deps1 > li > a:before {
    display: none !important;
  }
  .header .nav .deps1 {
    padding: 0;
    margin-top: 40px;
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .header .nav .deps1 > li {
    width: 100%;
    height: auto;
    font-weight: 500;
    padding: 0 0px 0px;
    cursor: pointer;
    display: block;
  }
  .header .nav .deps1 > li > a {
    height: auto;
    padding: 0px;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px 0px;
    padding-bottom: 20px;
    font-size: 18px;
  }
  .header .nav .deps1 > li > a {
    pointer-events: none;
  }
  .header .nav .deps1 > li > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    font-size: 15px;
    transform: translateX(0);
    vertical-align: middle;
    line-height: 1;
    margin-left: auto;
    font-weight: 500;
    width: auto;
    transition: all 0.3s;
    opacity: 1;
    background-color: transparent;
    transform: none !important;
  }
  .header.scroll nav .deps1 > li > a::after {
    background-color: transparent;
  }
  .header .nav .deps1 > li:last-child a {
    padding-right: 30px;
  }

  .header .nav .deps1 > li:first-child a {
    margin-top: 0;
  }
  .header .nav .deps1 > li.on {
    background-color: transparent;
    color: #fff;
  }
  .header .nav .deps1 > li.on > a::after {
    transform: rotate(180deg) !important;
  }

  .header .nav .deps1 > li .deps2 {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    display: none;
    background: #10348f;
    pointer-events: visible;
    padding-bottom: 10px;
  }
  .header .nav .deps1 > li .deps2 li {
    text-align: left;
  }
  .header .nav .deps1 > li .deps2 li > a {
    justify-content: flex-start;
    padding-left: 50px;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  /* .in,
  .in2 {
    padding: 0 15px;
  } */
  .header {
    height: 90px;
  }
  .header .in {
    padding-right: 15px;
  }
  .header .logo{
    width: 160px;
  }

  .header .logo a {
    width: 100%;
  }
  .header .logo a {
    display: flex;
    align-items: center;
  }

  .header .logo img {
    width: 100%;
  }
  .header .share_btn {
    font-size: 24px;
  }
  .header .ham_btn {
    font-size: 24px;
  }

  .header .header-snsWrap{
    gap: 30px;
  }

  .header .header-snsWrap li a{
    font-size: 36px;
  }

  .header .header-snsWrap li.youtube-color a{
    padding-bottom: 0;
  }
  
  .header .header-snsWrap li a svg{
    width: 40px;
  }

}

@media screen and (max-width: 480px){
  .header .header-snsWrap li a span{
    font-size: 12px;
  }
  .header .header-btnWrap{
    gap: 30px;
  }
  .header .header-snsWrap{
    gap: 20px;
  }
  

}

@media screen and (max-width: 380px){
  .header .logo{
    width: 146px;
  }
  .header .header-snsWrap li a span{
    display: none;
  }

  .header .header-btnWrap{
    gap: 20px;
  }

  .header .header-snsWrap{
    gap: 10px;
  }

}

@media (min-width: 1280px) {
  .header .share_area a:hover {
    opacity: 1;
  }
  .header .nav .deps1 > li .deps2 > li a:hover:before {
    width: 100%;
  }
  .main .visual_sect .slide_move .swiper-button-next:hover,
  .main .visual_sect .slide_move .swiper-button-prev:hover {
    opacity: 1;
  }
  .main .visual_sect .share button:hover i {
    opacity: 0.7;
  }
  .view_btn:hover:before {
    width: 0%;
  }
  .view_btn:hover:after {
    width: 100%;
  }

  .main .special_sect .cont_box .cont:hover .img {
    box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.44);
    transform: translateY(-45px);
  }
  .main .special_sect .cont_box .cont:hover .hover_box {
    opacity: 1;
    transform: translateY(-45px);
  }
  .main .special_sect .cont_box .cont:hover .tit_box {
    display: none;
  }

  .footer .right_box .nav a:hover:before {
    width: 100%;
  }
  .footer .right_box .nav a:hover {
    color: #1947ba;
  }

  .footer .top_btn_box:hover {
    background-color: #000;
  }

  .header .nav .deps1 > li:hover > a:before {
    width: calc(100% - 80px);
  }
}
