#wrap {
  width: 75%;
  margin: auto;
}

/* @media screen and (max-width:){

} */

#fp-nav.right {
  left: 17px;
}

#fp-nav ul li a span {
  background: #fff;
}

/* ----- basic end ----- */
/* header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
  height: 100px;
  text-align: center;
}

header a {
  position: relative;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

/* 로고설정 */
.main_logo {
  margin-left: 80px;
  float: left;
  position: relative;
}

.logos img {
  display: block;
  position: absolute;
  width: 200px;
  margin-top: 30px;
  float: left;
}

header .over_logo {
  opacity: 0;
}

.main_menu {
  width: 40%;
  margin: auto;
}

.main_menu li {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

.menu_line {
  text-align: center;
  line-height: 10rem;
  display: inline-block;
  /* 메뉴 하단에 밑줄 효과때문에 포지션효과 넣어야 함 */
  position: relative;
}

/* 밑줄 css작업 */
.menu_line::before {
  content: "";
  height: 3px;
  width: 0;
  background-color: #2e77cc;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
}

/* 오버 시 자연스럽게 나오도록 */
.menu_line:hover::before {
  width: 100%;
  font-weight: 700;
}

.sub_menu:hover .menu_line:hover::before {
  width: 100%;
  font-weight: 700;
}

/* submenu */
.sub_menu {
  position: absolute;
  display: none;
  width: 100%;
  overflow: hidden;
  top: 100px;
  left: 0;
}

.sub_menu li {
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: flex;
  justify-content: center;
}

.sub_menu li a {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.sub_menu li a:hover,
.main_menu li a:hover {
  color: #2e77cc;
  transition: all 0.2s;
}

.sub_menu li a:hover .main_menu li {
  color: #00459b;
}

.sub_bg {
  display: none;
  width: 100%;
  height: 300px;
  z-index: -1;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #fff;
  box-shadow: 1px 10px 10px rgba(0, 0, 0, 0.3);
}

header:hover {
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

header:hover a {
  color: #1c1c1c;
}

header:hover .logo {
  opacity: 0;
}

header:hover .over_logo {
  opacity: 1;
}

.sub_menu li:hover {
  border-bottom: none;
  color: #2e77cc;
}

.sub_menu:hover .main_menu li {
  color: #2e77cc;
}

/* plus */
.plus_menu {
  float: right;
  overflow: hidden;
  margin-right: 80px;
}

.plus_menu li {
  float: left;
  line-height: 10rem;
  height: 10rem;
  margin-right: 20px;
}

.plus_menu li:last-child {
  margin-right: 0;
}

.plus_menu img {
  width: auto;
  margin: auto;
  margin-top: 2.5rem;
}

.plus_menu button {
  width: 120px;
  background-color: #2e77cc;
  height: 40px;
  border: none;
  font-weight: 600;
  line-height: 4rem;
  font-family: "Pretendard", sans-serif;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.plus_menu button a {
  display: block;
  font-size: 1.6rem;
}

header:hover .plus_menu button a {
  color: #fff;
}

/* 햄버거메뉴 */
.button_container {
  position: relative;
  width: 40px;
  height: 30px;
  margin-top: 33px;
  cursor: pointer;
  z-index: 10;
}

.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background-color: #ffab2d;
}

.button_container.active .middle {
  opacity: 0;
}

.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background-color: #ffab2d;
}

.button_container span {
  background-color: #fff;
  border: none;
  height: 3px;
  border-radius: 50px;
  width: 100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease;
  cursor: pointer;
  display: block;
}

header:hover .top,
header:hover .middle,
header:hover .bottom {
  background-color: #1c1c1c;
}

.button_container span:nth-of-type(2) {
  top: 11px;
  width: 80%;
  left: 10px;
}

.button_container span:nth-of-type(3) {
  top: 22px;
}

/* 웹버전 햄버거메뉴 시작 */
.overlay {
  position: fixed;
  background: #0c0d2c;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}

.overlay.open {
  visibility: visible;
  height: 100%;
}

.overlay.open .w_ham_main_m {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}

.overlay.open .w_ham_main_m:nth-child(2) {
  animation-delay: 0.4s;
}

.overlay.open .w_ham_main_m:nth-child(3) {
  animation-delay: 0.45s;
}

.overlay.open .w_ham_main_m:nth-child(4) {
  animation-delay: 0.5s;
}

.overlay nav {
  position: relative;
  width: 75%;
  height: 100%;
  overflow: hidden;
  margin: auto;
  margin-top: 100px;
  font-size: 50px;
  font-weight: 400;
  color: #fff;
}

.overlay-menu a,
.overlay nav h1 {
  text-align: left;
  padding: 0 !important;
}

.overlay nav h1 {
  font-size: 7rem;
  color: #fff;
}

.overlay nav > ul {
  width: 100%;
  height: 100%;
  display: table;
}

.overlay .w_ham_main_m {
  width: 25%;
  display: table-cell;
  height: 100%;
  margin-right: 0;
  margin-top: 100px;
  text-align: left;
  opacity: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  padding: 5rem 1% 0 5%;
}

.overlay .w_ham_main_m:nth-child(2) {
  display: block;
}

.overlay .w_ham_main_m:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.overlay .w_ham_sub_m {
  margin-top: 60px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.overlay .w_ham_sub_m li {
  padding: 0;
  float: none;
  height: auto;
  margin-right: 0;
  font-size: 2rem;
  line-height: 5.5rem;
  font-weight: 400;
}

.overlay-menu li a {
  padding: 0;
}

.overlay .w_ham_sub_m a {
  color: #fff !important;
  position: relative;
  display: inline-block;
  width: auto;
}

.overlay .w_ham_sub_m li {
  float: none;
  text-align: left;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}

.overlay .w_ham_sub_m a:hover::after {
  width: 100%;
}

.overlay .w_ham_sub_m li:hover a {
  color: #ffab2d !important;
  transition: 0.3s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* ----- header mouse over + scroll moving_end -----*/
/* ----- header_end ----- */

/* 모바일메뉴 */
.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.5s ease-out;
  transition-delay: 0.2s;
  z-index: 99;
}

.header .burger-container {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.header .m_logo {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.header .m_logo a {
  display: block;
}

.header .burger-container #burger {
  width: 24px;
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}

.header .burger-container #burger .bar {
  width: 100%;
  height: 2px;
  display: block;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}

.header .burger-container #burger .bar.topBar {
  transform: translateY(0px) rotate(0deg);
}

.header .burger-container #burger .bar.btmBar {
  transform: translateY(6px) rotate(0deg);
}

.header ul.menu {
  position: relative;
  display: block;
}

.header ul.menu .etc {
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.header ul.menu li.menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 5px;
  transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.header ul.menu .etc {
  transition-delay: 0.2s;
}

.header ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}

.header ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0;
}

.header ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}

.header ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}

.header ul.menu li.menu-item {
  position: relative;
  color: #fff;
  font-weight: 100;
  text-decoration: none;
  font-size: 20px;
  line-height: 5rem;
  font-weight: 500;
  width: 100%;
  padding-left: 50px;
  cursor: pointer;
}

.header.menu-opened {
  height: 100%;
  background-color: rgba(12, 13, 44, 0.95);
  transition: all 0.3s ease-in;
  transition-delay: 0.25s;
}

.header.menu-opened .burger-container #burger {
  transform: rotate(90deg);
}

.header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}

.header.menu-opened .burger-container #burger .bar.topBar {
  transform: translateY(4px) rotate(45deg);
}

.header.menu-opened .burger-container #burger .bar.btmBar {
  transform: translateY(3px) rotate(-45deg);
}

.header.menu-opened ul.menu li.menu-item,
.header.menu-opened ul.menu .etc {
  transform: scale(1) translateY(0px);
  opacity: 1;
}

.header.menu-opened ul.menu .etc {
  width: 100%;
  background-color: rgba(12, 147, 219, 0.95);
  transition-delay: 0.1s;
}

.header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}

.header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}

.header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}

.header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}

/* submenu */
.m_sub_menu {
  display: none;
  margin: 10px 0 30px 0;
  width: 100%;
  overflow: hidden;
}

.m_sub_menu a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #eee;
  line-height: 50px;
}

.m_sub_menu li {
  padding-left: 70px;
}

/* etc */
.etc {
  width: 100%;
  margin: 20px 0;
  margin-bottom: 30px;
  overflow: hidden;
}

.etc ul {
  float: left;
}

.etc ul li {
  float: right;
  margin-left: 50px;
}

.etc ul li a {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  display: block;
  width: 95%;
  line-height: 50px;
  padding: 10px 0;
  color: #fff;
}

.etc ul li:last-child a {
  border-bottom: 3px solid #fff;
}
/* ----- 모바일메뉴 end ----- */

/* 하단 top버튼 고정 */
.fix {
  position: fixed;
  z-index: 999;
  bottom: 50px;
  right: 50px;
}

.fix li {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
}


.fix .btn_talk {
  background:#fae100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
}

.fix .btn_talk a{
  color: #000;
}

.fix .btn_service {
  background: rgb(6, 120, 180);
  background: linear-gradient(144deg, rgba(6, 120, 180, 1) 0%, rgba(16, 0, 99, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 20px;
}


.fix .btn_service a,
.fix .top a {
  color: #fff;
}

.fix .top {
  background-color: #1c1c1c;
  line-height: 80px;
  color: #fff;
  margin-top: 20px;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2);
}

/******herader end********/

/* footer */
footer {
  background-color: #333;
}

footer a {
  color: #fff;
}

footer .top {
  width: 100%;
  line-height: 70px;
  border-bottom: 1px solid #777;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 5rem;
}

footer .top_one {
  float: left;
  margin-left: 8%;
}

footer .top_two {
  float: right;
  margin-right: 8%;
}

footer ul li a {
  padding: 0 20px;
  border-right: 1px solid #777;
}

footer .top_one li:first-child a {
  padding-left: 0;
}

footer .top li {
  font-size: 16px;
  float: left;
}

footer ul li:last-child a {
  border-right: none;
}

footer .con {
  position: relative;
  padding: 50px 0;
  width: 83%;
  overflow: hidden;
  margin: auto;
}

footer .ft_logo {
  float: left;
  height: auto;
  overflow: hidden;
  margin-right: 50px;
}

footer .ft_logo img {
  margin-top: 24px;
}

footer .ft_notice {
  float: left;
  color: #fff;
  font-size: 1.6rem;
}

footer .ft_notice ul {
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}

footer .ft_notice li {
  float: left;
}

footer .ft_notice li:nth-child(2) {
  padding-left: 20px;
  border-left: 1px solid #777;
}

footer .ft_notice h6 {
  font-size: 1.6rem;
  float: left;
  margin-right: 20px;
}

footer .ft_notice p {
  font-weight: 300;
  float: left;
}

footer .ft_notice span {
  display: inline;
  float: left;
  margin-right: 20px;
  font-weight: 600;
}

footer .copy {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  color: #fff;
  opacity: 0.3;
  font-size: 14px;
}

/* sub setting */
/*intro*/
#intro {
  position: relative;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
}

#intro .text_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#intro .text_box h1 {
  text-align: center;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 5.5rem;
  color: #fff;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

#intro .text_box p {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}

#main_title {
  font-size: 4rem;
  text-align: center;
  font-weight: 900;
  padding-top: 150px;
  padding-bottom: 50px;
}

/* ----- intro end ----- */
/* nav */
nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
}

.inner {
  max-width: 100%;
  width: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  height: 70px;
}

.inner ul {
  width: 100%;
  height: auto;
}

nav a {
  font-size: 1.8rem;
  color: #fff;
}

nav ul {
  width: 60%;
  height: 100%;
  float: left;
}

nav li {
  float: left;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 7rem;
}

nav li:first-child {
  float: left;
}

nav li:first-child a {
  display: block;
  padding: 0 30px;
}

nav .fa-sort-down {
  font-size: 18px;
  float: right;
  line-height: 70px;
  margin-right: 20px;
}

.main_nav::before {
  content: "";
  width: 1px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 20px;
}

.main_nav {
  width: 22%;
  height: 100%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.main_nav i {
  margin-right: 20px;
  float: right;
}

.sub_nav {
  width: 100%;
  position: absolute;
  top: 70px;
  display: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}

.sub_nav li {
  width: 100%;
  overflow: hidden;
  float: none;
  line-height: 60px;
  height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sub_nav li a {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 60px;
  height: 60px;
  margin-left: 20px;
  color: #fff;
  font-size: 16px;
}

.sub_nav li:first-child a {
  padding: 0;
}

.sub_nav li:first-child {
  width: 100%;
  margin-left: 0;
}

.sub_nav li:hover {
  background-color: #2e77cc;
  transition: all 0.3s;
}

.sub_nav li:hover a {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
}

.sub_nav li:last-child {
  border-bottom: none;
}

.header_fix {
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

/* 내비 스크롤 시 효과 */
.sub_nav_fix {
  width: 100%;
  position: fixed;
  z-index: 9;
  top: 100px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.sub_nav_fix .inner {
  box-shadow: none;
  background-color: transparent;
}

/* ----- sub_nav end ----- */
/* Mobile nav ver */
.m_nav {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  color: #fff;
  display: none;
  font-weight: 500;
  position: absolute;
  bottom: 0;
}

.m_nav h1 {
  font-size: 16px;
  font-weight: 500;
}

.m_nav .fa-house::after {
  content: "\7c";
  color: #eee;
  display: block;
  float: right;
  margin-left: 10px;
  font-size: 16px;
}

.m_nav i {
  margin-right: 10px;
  margin-left: 10px;
}

/* 반응형start */
@media screen and (max-width: 1500px) {
  .main_logo {
    margin-left: 50px;
  }

  .plus_menu {
    margin-right: 50px;
  }

  .main_menu {
    width: 38%;
  }
}

@media screen and (max-width: 1200px) {
  .plus_menu li:nth-child(2) {
    display: none;
  }

  .main_menu {
    width: 45%;
  }

  .main_logo {
    margin-left: 30px;
  }

  .plus_menu {
    margin-right: 30px;
  }

  .sub_nav_fix {
    top: 100px;
  }

  #wrap {
    width: 80%;
  }
}

@media screen and (max-width: 1040px) {
  header {
    display: none;
  }

  .header {
    display: block;
  }

  nav ul {
    width: 100%;
  }

  nav li:first-child {
    width: 10%;
  }

  nav #wrap {
    width: 100%;
  }

  .main_nav {
    width: 30%;
  }
}

@media screen and (max-width: 1024px) {
  #intro {
    height: 450px;
  }

  footer .ft_notice {
    float: right;
  }
}

@media screen and (max-width: 900px) {
  .fix {
    display: none;
  }

  footer .con {
    width: 95%;
  }

  footer .top_one {
    margin-left: 2.5%;
  }
  footer .top_two {
    margin-right: 2.5%;
  }
}

@media screen and (max-width: 800px) {
  nav li:first-child {
    margin-left: 10px;
  }

  #wrap {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #main_title {
    padding-top: 120px;
  }

  #intro {
    height: 400px;
  }
}

@media screen and (max-width: 730px) {
  footer .con {
    padding: 50px 0;
  }
  footer .ft_logo img {
    margin-top: 0;
  }

  footer .copy {
    flex-direction: row;
  }

  footer .ft_logo {
    margin-bottom: 20px;
    float: none;
  }

  footer .ft_notice {
    float: none;
  }
}

@media screen and (max-width: 670px) {
  nav li:first-child {
    width: 15%;
  }

  .main_nav {
    width: 40%;
  }
}

@media screen and (max-width: 490px) {
  nav ul {
    width: 100%;
  }

  footer .top_one,
  footer .top_two,
  footer .ft_notice span {
    float: none;
    width: 100%;
    overflow: hidden;
    margin: 0;
  }

  footer .top {
    line-height: 4rem;
    padding: 10px 0;
  }

  footer .ft_notice h6 {
    width: 100%;
  }

  footer .ft_notice li:nth-child(2) {
    border: none;
    padding-left: 0;
  }

  footer ul li a,
  footer .top_one li:first-child a {
    padding: 0 10px;
  }

  footer .ft_logo img {
    width: 180px;
  }
}

@media screen and (max-width: 460px) {
  .header .m_logo a img {
    width: 150px;
    margin-top: 5px;
  }

  #intro {
    height: 350px;
  }

  #intro .text_box h1 {
    font-size: 3.5rem;
  }

  #intro .text_box p {
    font-size: 1.8rem;
  }

  #main_title {
    padding-top: 80px;
    padding-bottom: 20px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 420px) {
  .inner {
    display: none;
  }

  .m_nav {
    display: block;
  }
}

@media screen and (max-width: 330px) {
  .m_nav h1 {
    font-size: 14px;
  }

  .m_nav .fa-house {
    font-size: 14px;
  }

  .m_nav i {
    margin-right: 10px;
    margin-left: 10px;
  }

  nav ul {
    width: 100%;
  }

  nav li {
    width: 70%;
  }
}
