@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Roboto:wght@300;400;500;700&display=swap");

.ft_robo {
  font-family: "Roboto", sans-serif;
  letter-spacing: normal;
}
.inner {
  max-width: 1200px;
  height: 100%;
  margin: auto;
}

.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper_btn {
  position: absolute;
  max-width: 1360px;
  width: 100%;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 62px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #dbdbdb;
  opacity: 1;
  box-sizing: border-box;
}
.swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  border: solid 2px #001976;
  background-color: #fff;
}
.btn {
  cursor: pointer;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
  height: 100px;
  padding: 0 30px;
}
header.on {
  background-color: #001976;
  height: 230px;
  transition: height 0.3s ease;
}
.sub header,
header.sticky {
  background-color: #001976;
}
header.down {
  background-color: #fff;
}

header .inner {
  display: flex;
  align-items: center;
  height: 100px;
}
header .logo {
  width: 144px;
  height: 100%;
  margin-right: 56px;
  background: url("../../images/img/img_logo_sdr4.png") no-repeat center / 100% auto;
}
header.down .logo {
  background: url("../../images/img/mo_menu_logo.png") no-repeat center / 100% auto;
}
header .gnb {
  height: 100%;
  display: flex;
  align-items: center;
}

header .gnb > li {
  position: relative;
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 12px;
}
header .gnb > li > a {
  position: relative;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

header .gnb > li > a::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: 0;
  transform: translate(0, 5px);
}
header .gnb > li:hover > a::before {
  transform: translate(0, 0);
  transition: all 0.5s;
}
header .gnb_sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 144px;
}
header.on .gnb_sub {
  display: block;
}

header .gnb_sub li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

header .gnb_sub a {
  font-size: 14px;
  letter-spacing: -0.35px;
  line-height: normal;
  color: #fff;
}
header .gnb_sub a:hover {
  text-decoration: underline;
}
header .mo_menu {
  display: none;
  width: 36px;
  height: 36px;
  background: url("../../images/icon/icon_menu.png") no-repeat center / 100% auto;
}

header.down .mo_menu {
  background: url("../../images/icon/close.png") no-repeat center / 100% auto;
}
.mo_gnb {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 15px 0;
}
.mo_gnb > li {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.mo_gnb > li > span {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: -0.8px;
  text-align: left;
  color: #191919;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 30px;
}
.mo_gnb > li > span.show {
  color: #001976;
}

.mo_gnb > li > span::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../../images/icon/arrow_down.png") no-repeat center / 100% auto;
}
.mo_gnb > li > span.show::after {
  background: url("../../images/icon/arrow_up_active.png") no-repeat center / 100% auto;
}

.mo_gnb_sub {
  display: none;
  flex-direction: column;
  background-color: #f8f8fa;
  opacity: 0.48;
  width: 100%;
}
.mo_gnb_sub a {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: -0.8px;
  text-align: left;
  color: #555;
  padding: 16px 40px;
}

footer {
  position: relative;
  background-color: #f8f8fa;
  overflow: hidden;
  z-index: 0;
  padding: 70px 30px 80px;
}
footer .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer_sec:first-child {
  flex: 1;
}

footer .footer_sec:last-child {
  width: 192px;
  position: relative;
}

footer .footer_sec h2 {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.4px;
  text-align: left;
  color: #767676;
}

footer .footer_sec .com_info {
  max-width: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}

footer .footer_sec .com_info li {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.4px;
  text-align: left;
  color: #767676;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
footer .footer_sec .com_info li::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #707070;
  margin: 0 12px;
}
footer .footer_sec .com_info li:nth-child(2):after,
footer .footer_sec .com_info li:last-child:after {
  display: none;
}
footer .footer_sec .com_info li br {
  display: none;
}
footer .footer_sec .copyright {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #767676;
}

footer .select_site {
  position: absolute;
  top: 0;
  left: 0;
  width: 192px;
  border-radius: 6px;
  border: solid 1px #707070;
  padding: 0 10px 0;
  background-color: #fff;
}
footer .select_site.on {
  padding: 0 10px 20px;
}
footer .family_site {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #767676;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .family_site::after {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  background: url("../../images/icon/select_down.png") no-repeat center / 100% auto;
}
footer .select_site.on .family_site::after {
  background: url("../../images/icon/select_up.png") no-repeat center / 100% auto;
}
footer .select_site ul {
  display: none;
  border-top: 1px solid #dbdbdb;
  padding-top: 10px;
}
footer .select_site.on ul {
  display: block;
}

footer .select_site ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #767676;
  margin-bottom: 9px;
  padding: 0 10px;
  display: block;
}
footer .sns_icons {
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media all and (max-width: 768px) {
  .swiper_btn {
    display: none;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 34px;
  }

  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
  .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
  header {
    height: 80px;
  }

  header .inner {
    justify-content: space-between;
    height: 80px;
  }
  header .logo {
    width: 142px;
  }
  header .gnb {
    display: none;
  }

  header .mo_menu {
    display: block;
  }
  header .mo_menu img {
    width: 36px;
  }

  footer {
    padding: 0 30px 33px;
  }
  footer .inner {
    flex-direction: column-reverse;
  }
  footer .footer_sec:first-child {
    flex: none;
    padding-top: 135px;
  }

  footer .footer_sec h2 {
    font-size: 18px;
  }

  footer .footer_sec .com_info {
    margin: 22px 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  footer .footer_sec .com_info li {
    font-size: 16px;
    margin-bottom: 8px;
  }
  footer .footer_sec .com_info li::after {
    display: none;
  }

  footer .footer_sec .com_info li br {
    display: block;
  }
  footer .footer_sec .copyright {
    font-size: 16px;
  }
  footer .footer_sec:last-child {
    width: 100%;
  }
  footer .select_site {
    left: -30px;
    width: 100vw;
    border-radius: 0;
    border: none;
    padding: 0;
  }

  footer .select_site.on {
    padding: 0;
  }
  footer .family_site {
    background-color: #f8f8fa;
    font-size: 16px;
    border-bottom: solid 1px #707070;
    padding: 32px 30px;
    margin: 0;
    justify-content: flex-start;
  }
  footer .select_site.on .family_site {
    background: #fff;
  }

  footer .family_site::after {
    width: 12px;
    margin-left: 15px;
  }

  footer .select_site ul {
    border-top: none;
    padding: 22px 30px;
  }

  footer .select_site ul li a {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0;
  }

  footer .select_site ul li:last-child a {
    margin-bottom: 0;
  }

  footer .sns_icons {
    position: absolute;
    right: 0;
    height: 84px;
    padding-top: 0;
    display: flex;
    align-items: center;
    background: transparent;
  }

  footer .sns_icons a + a {
    margin-left: 15px;
    margin-right: 0;
  }
  footer .sns_icons a > img {
    width: 24px;
  }
}
@media all and (max-width: 540px) {
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 22px;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
  }

  header {
    height: 60px;
    padding: 0 16px;
  }

  header .inner {
    height: 60px;
  }
  header .logo {
    width: 95px;
  }

  header .mo_menu {
    width: 24px;
    height: 24px;
  }
  header .mo_menu img {
    width: 24px;
  }
  .mo_gnb {
    top: 60px;
  }
  footer {
    padding: 0 16px 22px;
  }
  footer .footer_sec:first-child {
    flex: none;
    padding-top: 90px;
  }

  footer .footer_sec h2 {
    font-size: 12px;
  }

  footer .footer_sec .com_info {
    margin: 16px 0;
  }

  footer .footer_sec .com_info li {
    font-size: 12px;
    margin-bottom: 5px;
  }

  footer .footer_sec .copyright {
    font-size: 12px;
  }
  footer .select_site {
    left: -16px;
  }
  footer .family_site {
    font-size: 12px;
    padding: 22px 16px;
  }
  footer .family_site::after {
    width: 8px;
    margin-left: 10px;
  }

  footer .select_site ul {
    padding: 14px 16px;
  }

  footer .select_site ul li a {
    font-size: 12px;
    margin-bottom: 10px;
  }

  footer .sns_icons {
    height: 64px;
  }

  footer .sns_icons a + a {
    margin-left: 10px;
  }
  footer .sns_icons a > img {
    width: 16px;
  }
}

/* 서브페이지 공통 */
.sub .content {
  padding-top: 100px;
}
.sub_title {
  position: relative;
  width: 100%;
  max-height: 240px;
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sub_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #000;
  z-index: 0;
}
.sub_title h2 {
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.75;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  z-index: 1;
}


.sub_title_sdr {
  position: relative;
  width: 100%;
  max-height: 100vh;
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sub_title_sdr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #000;
  z-index: 0;
}
.sub_title_sdr h2 {
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.75;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.sub_tab {
  position: relative;
  background-color: #f1f3fc;
  z-index: 1;
}

.sub_tab ul {
  width: 100%;
  display: flex;
  height: 74px;
}

.sub_tab ul li {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.sub_tab ul li.active {
  /* border-bottom: 3px solid #001976; */
  background: #dfe5ff;
}

.sub_tab ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #555;
}

.sub_tab ul li.active a {
  font-size: 16px;
  font-weight: bold;
  color: #001976;
}
.sub_tab ul li + li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: 1px;
  height: 100%;
  background: #c8c8c8;
  display: block;
  /* border-left: 2px solid #c8c8c8; */
}

@media all and (max-width: 768px) {
  /* 서브페이지 공통 */
  .sub .content {
    padding-top: 80px;
  }

  .sub_title h2 {
    font-size: 30px;
  }

  .sub_tab ul {
    height: 68px;
  }
  .sub_tab ul li.active a > img {
    display: none;
  }
  .prod_sg .sub_tab ul li.active:nth-child(1) a,
  .prod_sdr .sub_tab ul li.active:nth-child(1) a {
    background: url("../../images/img/prod/prod_sg_on_mo.png") no-repeat center / 145px auto;
  }
  .prod_sg .sub_tab ul li.active:nth-child(2) a,
  .prod_sdr .sub_tab ul li.active:nth-child(2) a {
    background: url("../../images/img/prod/prod_sdr_on_mo.png") no-repeat center / 55px auto;
  }
  .sub_tab ul li:nth-child(1) a > img {
    width: 145px;
  }
  .sub_tab ul li:nth-child(2) a > img {
    width: 55px;
  }
  .sub_tab ul li.active {
    border: none;
    background-color: #001976;
  }
  .sub_tab ul li.active a {
    color: #fff;
  }
  .sub_tab ul li + li a::before {
    height: 100%;
  }
}

@media all and (max-width: 540px) {
  .sub .content {
    padding-top: 60px;
  }

  .sub_title h2 {
    font-size: 20px;
  }

  .sub_tab ul {
    height: 46px;
  }

  .sub_tab ul li.active {
    /* border-bottom: 2px solid #001976; */
  }

  .sub_tab ul li a {
    height: 100%;
  }

  .sub_tab ul li.active a {
    font-size: 14px;
  }
  .prod_sg .sub_tab ul li.active:nth-child(1) a,
  .prod_sdr .sub_tab ul li.active:nth-child(1) a {
    background: url("../../images/img/prod/prod_sg_on_mo.png") no-repeat center / 97px auto;
  }
  .prod_sg .sub_tab ul li.active:nth-child(2) a,
  .prod_sdr .sub_tab ul li.active:nth-child(2) a {
    background: url("../../images/img/prod/prod_sdr_on_mo.png") no-repeat center / 37px auto;
  }
  .sub_tab ul li:nth-child(1) a > img {
    width: 97px;
  }
  .sub_tab ul li:nth-child(2) a > img {
    width: 37px;
  }
}
