header {
  height: 65px;
  width: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  z-index: 99;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1360px) {
  header.webMenu {
    display: none;
  }
}
header.mobileMenu {
  display: none;
}
@media (max-width: 1360px) {
  header.mobileMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .headerLogo {
  background: url(../images/logo.png) center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 214px;
  height: 37px;
  margin-right: 100px;
}
@media (max-width: 1680px) {
  header .headerLogo {
    width: 160px;
    margin-right: 30px;
  }
}
header .header-menus ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
header .header-menus ul li a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
}
header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 55px;
}
@media (max-width: 1440px) {
  header .header-right {
    display: none;
  }
}
header a.btn-joinUs {
  border: 1px solid #fff;
  font-size: 16px;
  height: 29px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}
header a.btn-joinUs:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 1680px) {
  header a.btn-joinUs {
    font-size: 14px;
    height: 25px;
  }
}
header .language-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 0px;
  padding: 10px 30px 10px 40px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  outline: none;
}
@media (max-width: 1680px) {
  header .language-select {
    font-size: 14px;
    padding: 8px 30px 8px 40px;
  }
}
header .select-wrapper {
  position: relative;
  display: inline-block;
}
header .select-wrapper::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M12 2a15 15 0 0 1 4 10 15 15 0 0 1-4 10 15 15 0 0 1-4-10 15 15 0 0 1 4-10z'%3E%3C/path%3E%3Cpath d='M2 12h20'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
header .select-wrapper::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
header .language-container {
  display: inline-block;
}
header.active {
  background: #fff;
  -webkit-box-shadow: 0 0 9px 0 #a1a1a1;
          box-shadow: 0 0 9px 0 #a1a1a1;
}
header.active .headerLogo {
  background: url(../images/logo_b.png) center;
  background-size: contain;
  background-repeat: no-repeat;
}
header.active .header-menus ul li a {
  color: #000;
  font-weight: 600;
}
header.active a.btn-joinUs {
  border: 1px solid #000;
  color: #000;
  font-weight: 600;
}
header.active a.btn-joinUs:hover {
  background: #000;
  color: #fff;
}
header.active .language-select {
  color: #000;
}
header.active .select-wrapper::before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.active .select-wrapper::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.btnHamburger {
  display: none;
  position: fixed;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 101;
  top: 3%;
  left: 4%;
}
@media (max-width: 1360px) {
  .btnHamburger {
    display: block;
  }
}
.btnHamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #1EC55A;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btnHamburger span:nth-child(1) {
  top: 0;
}
.btnHamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btnHamburger span:nth-child(3) {
  bottom: 0;
}

.mobileMenu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100dvh;
  background-color: #fff;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobileMenu.active {
  left: 0;
}
.mobileMenu .mobileMenu-top {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mobileMenu .mobileMenu-top .btnClose {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.mobileMenu .mobileMenu-top .btnClose span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.mobileMenu .mobileMenu-top .btnClose span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobileMenu .mobileMenu-top .btnClose span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobileMenu .mobileMenu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  padding: 0 25px;
}
.mobileMenu .mobileMenu-content .mobileMenu-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mobileMenu .mobileMenu-content .mobileMenu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobileMenu .mobileMenu-content .mobileMenu-nav ul li {
  border-bottom: 1px solid #eee;
}
.mobileMenu .mobileMenu-content .mobileMenu-nav ul li a {
  display: block;
  padding: 15px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}
.mobileMenu .mobileMenu-content .mobileMenu-nav ul li a:hover {
  background-color: #f5f5f5;
}
.mobileMenu .mobileMenu-content .mobileMenu-bottom {
  padding: 15px;
}
.mobileMenu .mobileMenu-content .mobileMenu-bottom .btn-joinUs {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #0060B0;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 15px;
}
@media screen and (max-width: 1360px) {
  .mobileMenu .mobileMenu-content .mobileMenu-bottom .btn-joinUs {
    height: auto;
    border: 0;
  }
}
.mobileMenu .mobileMenu-content .mobileMenu-bottom .language-container {
  width: 100%;
}
.mobileMenu .mobileMenu-content .mobileMenu-bottom .language-container .select-wrapper {
  width: 100%;
}
.mobileMenu .mobileMenu-content .mobileMenu-bottom .language-container .select-wrapper .language-select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding-left: 32px;
}

@media (max-width: 1360px) {
  .header-menus,
  .header-right {
    display: none;
  }
}
footer {
  height: 65px;
  width: 100%;
  border-top: 1px solid #dcdada;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
footer .footerLogo {
  background: url(../images/logo_b.png);
  display: block;
  width: 160px;
  height: 27px;
  background-size: cover;
}
footer p {
  color: #949494;
  font-size: 14px;
}
footer a.btnlink {
  border: 1px solid #949494;
  font-size: 12px;
  height: 29px;
}
@media (max-width: 480px) {
  footer {
    height: auto;
    padding: 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  footer p {
    font-size: 14px;
    text-align: center;
    word-break: keep-all;
  }
  footer a.btnlink {
    font-size: 11px;
    height: 26px;
    padding: 0 10px;
  }
}

body {
  opacity: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", Arial, sans-serif;
}

.main {
  width: 100%;
  min-height: 100vh;
}

a.btnlink {
  min-width: 140px;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #222;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  gap: 7px;
  position: relative;
}
a.btnlink.btnCenter {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 180px;
}
a.btnlink span {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
a.btnlink:hover {
  background: #222;
  color: #fff;
}
a.btnlink:hover span {
  color: #fff;
  margin-left: 5px;
}
@media screen and (max-width: 480px) {
  a.btnlink {
    min-width: 120px;
    height: 35px;
    font-size: 14px;
  }
  a.btnlink.btnCenter {
    max-width: 150px;
  }
}

.meteIcon {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(12px, 10px + 0.42vw, 18px);
  color: #000;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
}

.btn-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background: url("../images/btn-top.png") no-repeat center center;
  background-size: cover;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
}
@media (max-width: 1440px) {
  .btn-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}
.btn-top:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.btn-top.active {
  opacity: 1;
}

.bannerWrap {
  width: 100%;
  height: 430px;
}
.bannerWrap__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerWrap .titleWrap h1 {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 480px) {
  .bannerWrap .titleWrap h1 {
    font-size: 36px;
  }
}
.bannerWrap .bottomWrap {
  width: 100%;
}
.bannerWrap .bottomWrap .quickMenu {
  margin-bottom: 15px;
}
.bannerWrap .bottomWrap .quickMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bannerWrap .bottomWrap .quickMenu ul li {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}
.bannerWrap .bottomWrap .quickMenu ul li::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -8px;
  top: 8px;
  width: 14px;
  height: 18px;
  background: url("../images/icon-rightArrow.svg") no-repeat;
}
@media (max-width: 1080px) {
  .bannerWrap .bottomWrap .quickMenu ul li::after {
    top: 4px;
  }
}
.bannerWrap .bottomWrap .quickMenu ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.bannerWrap .bottomWrap .quickMenu ul li:last-child::after {
  display: none;
}
.bannerWrap .bottomWrap .quickMenu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .bannerWrap .bottomWrap .quickMenu ul li a span {
    font-size: 14px;
  }
}
.bannerWrap .bottomWrap .quickMenu ul li a .home {
  background: url("../images/icon-home.svg") no-repeat center center;
  width: 12px;
  height: 12px;
  display: block;
  margin-right: 8px;
}
.bannerWrap .bottomWrap .subMenu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1440px) {
  .bannerWrap .bottomWrap .subMenu {
    padding: 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .bannerWrap .bottomWrap .subMenu {
    padding: 0 0px;
  }
}
.bannerWrap .bottomWrap .subMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  height: 100%;
}
@media (max-width: 1440px) {
  .bannerWrap .bottomWrap .subMenu ul {
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .bannerWrap .bottomWrap .subMenu ul {
    gap: 15px;
  }
}
.bannerWrap .bottomWrap .subMenu ul li {
  height: 100%;
  position: relative;
}
.bannerWrap .bottomWrap .subMenu ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0%;
  height: 0px;
  background: #1EC55A;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.bannerWrap .bottomWrap .subMenu ul li.active a {
  opacity: 1;
}
.bannerWrap .bottomWrap .subMenu ul li.active:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120%;
  height: 2px;
  background: #1EC55A;
}
.bannerWrap .bottomWrap .subMenu ul li:hover a {
  opacity: 1;
}
.bannerWrap .bottomWrap .subMenu ul li:hover:before {
  content: "";
  width: 120%;
  height: 2px;
}
.bannerWrap .bottomWrap .subMenu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.6;
}
.bannerWrap.researcherIntro {
  background: url("../images/researcherIntro/img-researcherIntro-banner.png") no-repeat center center;
  background-size: cover;
}
.bannerWrap.lapiLoadMap {
  background: url("../images/lapiLoadMap/bg-lapiLoadMap.png") no-repeat center center;
  background-size: cover;
}
.bannerWrap.clo {
  background: url("../images/cloCouncil/bg-clo.png") no-repeat center center;
  background-size: cover;
}
.bannerWrap.lapiProject {
  background: url("../images/lapiProject/bg-lapiProject.png") no-repeat center center;
  background-size: cover;
}
.bannerWrap.lapiCenter {
  background: url("../images/lapiCenter/bg-lapiCenter.png") no-repeat center center;
  background-size: cover;
}
.bannerWrap.lapiCooperation {
  background: url("../images/lapiCooperation/bg-lapiCooperation.png") no-repeat center center;
  background-size: cover;
}

.Gdot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: green;
  border-radius: 50%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0 0;
  gap: 20px;
}
.pagination .pagination-arrow {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .pagination-arrow:hover {
  color: #333;
}
.pagination .pagination-arrow svg {
  width: 28px;
  height: 28px;
  padding-top: 2px;
}
@media screen and (max-width: 480px) {
  .pagination .pagination-arrow {
    font-size: 14px;
    white-space: nowrap;
  }
}
.pagination .pagination-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #666;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .pagination .pagination-number {
    font-size: 14px;
  }
}
.pagination .pagination-number:hover {
  background-color: #eaeaea;
}
.pagination .pagination-number.active {
  background-color: #0066b3;
  color: white;
  font-weight: bold;
}

.opacity0 {
  opacity: 0;
  font-size: inherit;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: revert-layer;
  width: revert-layer;
}