@charset "utf-8";

*{box-sizing: border-box;}
.mb-0{margin-bottom: 0 !important;}

.page-section{
  width: 100%;
  margin-bottom: 60px;
}
.page-section.border-b{
  padding-bottom: 60px;
  border-bottom: 1px solid #D6DDE8;
}

.page-section.first{
  padding-top: 100px;
}
.page-section.last{
  margin-bottom: 100px;
}

.page-con{
  width: 100%;
  max-width: 1470px;
  padding: 100px 15px;
  margin: 0 auto;
}

.page-section > .page-con{
  padding: 0 15px;
}

.page-tit{
  width: 100%;
  margin-bottom: 40px;
}
.page-tit > h5{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #004097;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-tit > h5 > span{
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #004097 ;
}
.page-tit > h4{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #141920;
  font-weight: 700;
}
.page-tit > h4 > span{
  font-size: 18px;
  color: #004097 ;
}
.page-tit > h3{
  font-size: 28px;
  font-weight: 700;
  color: #0d1f3c;
}
.page-tit > h2{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  color: #141920;
  font-weight: 700;
}
.page-tit > h2 > span{
  font-size: 26px;
  color: #004097 ;
}
.page-tit > p{
  font-size: 18px;
  color: #6B7A90;
  font-weight: 400;
  margin-top: 10px; 
}

/* 회사소개 */
.about-bg{
  width: 100%;
  background: linear-gradient(0deg, #F5F7FB 0%, #F5F7FB 100%), #FFF;
}
.about-img{
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.about-img img{
  width: 100%;
}
.about-tit{
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 50px;
  gap: 1rem;
}
.about-tit > p{
  font-size: 12px;
  color: #00428b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-tit > h5{
  font-size: 26px;
  color: #111827;
  font-weight: 700;
}
.about-tit > span{
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #e5e7eb;
}
.history-list{
  width: 100%;
}
.history-list > ul{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.history-list > ul > li{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: #FFF;
  transition: .2s;
}
.history-list > ul > li > span{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  background: #F7F8FA;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: .2s;
} 
.history-tit{
  display: flex;
  gap: 1rem;
  align-items: center;
}
.history-tit > p{
  display: inline-block;
  padding: 10px 1rem;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
  background: #F7F8FA;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 700;
  letter-spacing: 1px;
  transition: .2s;
}
.history-tit > span{
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #e5e7eb;
  transition: .2s;
}
.history-tit > h5{
  font-size: 15px;
  color: #374151;
  font-weight: 400;
  line-height: 1.6;
  transition: .2s;
}
.history-list > ul > li:hover{
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-color: rgba(0,66,139,0.3);
  background: #e6eef5;
}
.history-list > ul > li:hover > span{
  color: #00428b;
  border-color: rgba(0,66,139,0.25);
  background-color: #fff;
}
.history-list > ul > li:hover .history-tit > p{
  background-color: #00428b;
  border-color: #00428b;
  color: #fff;
}
.history-list > ul > li:hover .history-tit > span{
  background-color: rgba(0,66,139,0.3);
}
.history-list > ul > li:hover .history-tit > h5{
  color: #111827;
  font-weight: 600;
}

/* 조직도 */
.oc-wrap {
  --ceo-h: 75px;
  --ceo-w: 200px;
  --ceo-gap: 42px;
  --main-h: 65px;
  --main-gap: 22px;
  --center-w: 200px;
  --main-bottom-gap: 42px;
  --bottom-line-offset: 21px;
  --bottom-gap: 18px;

  position: relative;
  margin: 0 auto;
  padding: 14px 20px 8px;
  color: #10213c;
  box-sizing: border-box;
}

.oc-wrap * {
  box-sizing: border-box;
}

.oc-ceo {
  width: var(--ceo-w);
  height: var(--ceo-h);
  margin: 0 auto var(--ceo-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004097;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.oc-ceo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: var(--ceo-h);
  width: 1px;
  height: 42px;
  background: #CDD6E0;
  transform: translateX(-50%);
}

.oc-main-row {
  display: grid;
  grid-template-columns: 1fr var(--center-w) 1fr;
  gap: var(--main-gap);
  align-items: center;
  position: relative;
  margin-bottom: 60px;
}

.oc-main-row::before {
  content: "";
  position: absolute;
  left: calc((100% - var(--center-w) - (var(--main-gap) * 2)) / 4);
  right: calc((100% - var(--center-w) - (var(--main-gap) * 2)) / 4);
  top: calc(var(--main-h) / 2);
  height: 1px;
  background: #CDD6E0;
  z-index: 0;
}

.oc-box {
  height: var(--main-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.oc-wide {
  background: #F0F5FB;
  border: 1px solid #DDE6F0;
  color: #1A2B45;
}

.oc-director {
  background: #E6EDF7;
  border: 1px solid #004097;
  color: #004097;
}

.oc-director::after {
  content: "";
  position: absolute;
  left: 50%;
  top: var(--main-h);
  width: 1px;
  height: 60px;
  background: #CDD6E0;
  transform: translateX(-50%);
}

.oc-lab {
  width: 200px;
  min-height: 67px;
  margin: 0 auto 41px;
  padding: 13px 10px;
  border: 1px solid #004097;
  border-radius: 9px;
  background: #fff;
  color: #004097;
  text-align: center;
  position: relative;
  z-index: 2;
}

.oc-lab strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.oc-lab span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #4A5E7A;
  line-height: 1.35;
}

.oc-lab::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 67px;
  width: 1px;
  height: 21px;
  background: #CDD6E0;
  transform: translateX(-50%);
}

.oc-bottom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--bottom-gap);
  position: relative;
}

.oc-bottom::before {
  content: "";
  position: absolute;
  left: calc((100% - (var(--bottom-gap) * 4)) / 10);
  right: calc((100% - (var(--bottom-gap) * 4)) / 10);
  top: calc(var(--bottom-line-offset) * -1);
  height: 1px;
  background: #CDD6E0;
}

.oc-bottom-box {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border: 1px solid #DDE6F0;
  border-radius: 10px;
  color: #1A2B45;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-align: center;
  line-height: 1.35;
}

.oc-bottom-box > span {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-top: 4px;
}

.oc-bottom-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--bottom-line-offset) * -1);
  width: 1px;
  height: var(--bottom-line-offset);
  background: #CDD6E0;
  transform: translateX(-50%);
}

.ohr-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  padding: 30px 0;
}
.ohr-box{
  width: 33.3333333%;
  padding: 0 40px;
  border-right: 1px solid #D0DDEF;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ohr-box:last-child{
  border-right: 0;
}
.ohr-graph{
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ohr-graph > svg{
  position: absolute;
  top: 0;
  left: 0;
}
.ohr-graph > p{
  font-size: 13px;
  color: #004097;
  font-weight: 700;
  text-align: center;
}
.ohr-box:last-child .ohr-graph > p{
  color: #A8C0E0;
}
.ohr-tit > h5{
  font-size: 12px;
  color: #8a9ab8;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.ohr-tit > h3{
  font-size: 18px;
  color: #6b7a90;
  font-weight: 400;
  margin-bottom: 6px;
}
.ohr-tit > h3 > span{
  font-size: 36px;
  color: #0d1f3c;
  font-weight: 700;
}
.ohr-tit > p{
  font-size: 14px;
  color: #6b7a90;
  font-weight: 400;
}

.oct-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.oct-box{
  width: calc((100% - 36px) / 4);
}
.oct-card{
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  width: 100%;
  transition: .2s;
  padding: 24px 20px;
}
.oct-card > p{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #004097;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}
.oct-card > p > span{
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #004097;
}
.oct-card > h5{
  font-size: 17px;
  color: #0d1f3c;
  font-weight: 700;
  margin-bottom: 1rem;
}
.oct-card > ul > li{
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #6b7a90;
  font-weight: 400;
  margin-bottom: 10px;
}
.oct-card > ul > li:last-child{
  margin-bottom: 0;
}
.oct-card > ul > li > span{
  display: inline-block;
  color: #004097;
  font-size: 12px;
}
.oct-card:hover{
  background: #e6eef8;
  border-color: #004097;
  box-shadow: 0 4px 16px rgba(0,64,151,0.10);
}

.og-btn-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
}
.og-btn{
  display: inline-flex;
  padding: 20px 24px;
  border-radius: 12px;
  background: #004097;
  align-items: center;
  gap: 10px;
}
.og-btn > span{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.og-btn > p{
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.og-btn > h5{
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

/* 찾아오시는 길 */
.page-map{
  width: 100%;
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  background: rgba(255, 255, 255, 0.00);
  box-shadow: 0 4px 24px 0 rgba(0, 64, 151, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
}
.map-wrap{
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-bottom: 20px;
}
.map-box{
  width: calc((100% - 1rem) / 2);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  display: flex;
  gap: 20px;
  transition: .2s;
}
.map-box:hover{
  border-color: #004097;
  box-shadow: 0 4px 16px rgba(0,64,151,0.10);
}
.map-box > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #E6EEF8;
  font-size: 17px;
  color: #004097;
  transition: .2s;
}
.map-box:hover > span{
  background-color: #004097;
  color: #fff;
}
.map-tit > p{
  font-size: 11px;
  color: #8a9ab8;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.map-tit > h5{
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #0d1f3c;
  font-weight: 500;
  gap: 8px;
}
.map-tit > h5 > span{
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  background: #E6EEF8;
  font-size: 12px;
  color: #8a9ab8;
  font-weight: 500;
}
.map-table{
  width: 100%;
}
.map-table > table{
  width: 100%;
  border-spacing: 0;
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  overflow: hidden;
}
.map-table > table thead th{
  padding: 24px;
  text-align: left;
  background: #004097;
}
.map-table > table thead th h5{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}
.map-table > table thead th h5 span{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.map-table > table tbody th{
  padding: 24px;
  text-align: left;
  background: #E6EEF8;
  border-right: 1px solid #D0DDEF;
  border-bottom: 1px solid #D0DDEF;
}
.map-table > table tbody tr:last-child th{
  border-bottom: 0;
}
.map-table > table tbody th h5{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #004097;
  font-weight: 700;
}
.map-table > table tbody td{
  padding: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid #D0DDEF;
}
.map-table > table tbody tr:last-child td{
  border-bottom: 0;
}
.map-table > table tbody td > span{
  font-size: 11px;
  color: #004097;
}
.map-table > table tbody td > p{
  font-size: 14px;
  color: #3d5068;
  font-weight: 400;
}
.map-table > table tbody td > p > b{
  color: #0d1f3c;
  font-weight: 600;
}
.map-table > table tbody td > p > span{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #004097;
  padding: 4px 8px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

/* 채용 및 복리후생 */
.page-caption{
  width: 100%;
  padding: 20px 24px;
  display: flex;
  gap: 10px;
  border-radius: 8px;
  background: #E6EEF8;
  align-items: center;
}
.page-caption > span{
  font-size: 15px;
  color: #004097;
}
.page-caption > p{
  font-size: 15px;
  color: #3d5068;
  font-weight: 400;
  line-height: 1.6;
}

.rc-table{
  width: 100%;
}
.rc-table > table{
  width: 100%;
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  box-shadow: 0 4px 24px 0 rgba(0, 64, 151, 0.07);
  overflow: hidden;
  border-spacing: 0;
}
.rc-table > table thead th{
  padding: 1rem 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  border-right: 1px solid rgba(208, 221, 239, 0.1);
  border-bottom: 1px solid rgba(208, 221, 239, 0.1);
  background: #004097;
}
.rc-table > table thead th:last-child{
  border-right: 0;
}
.rc-table > table thead tr:first-child th{
  padding: 20px 24px;
  text-align: left;
}
.rc-table > table thead tr:first-child th h5{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}
.rc-table > table thead tr:first-child th h5 span{
  color: rgba(255, 255, 255, 0.75);
}
.rc-table > table tbody th{
  padding: 1rem 5px;
  border-right: 1px solid #D0DDEF;
  border-bottom: 1px solid #D0DDEF;
  background: #F8FAFD;
  vertical-align: middle;
  font-size: 15px;
  color: #0d1f3c;
  font-weight: 700;
  line-height: 1.6;
}
.rc-table > table tbody td{
  padding: 1rem;
  border-right: 1px solid #D0DDEF;
  border-bottom: 1px solid #D0DDEF;
  vertical-align: middle;
  font-size: 14px;
  color: #3D5068;
  font-weight: 400;
  line-height: 1.6;
}
.rc-table > table tbody td:last-child{
  border-right: 0;
}
.rc-table > table tbody tr:last-child td{
  border-bottom: 0;
}
.rc-table > table tbody tr:last-child th{
  border-bottom: 0;
}
.rc-table > table tbody td.center{
  text-align: center;
}
.rc-table > table tbody td ul li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3D5068;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 6px;
}
.rc-table > table tbody td ul li:last-child{
  margin-bottom: 0;
}
.rc-table > table tbody td ul li span{
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #004097;
}
.rc-table > table tbody td.bg{
  background: #FAFCFF;
}

.rc-con{
  width: 100%;
  border-radius: 12px;
  border: 1px solid #D0DDEF;
  box-shadow: 0 4px 24px 0 rgba(0, 64, 151, 0.07);
  overflow: hidden;
}
.rc-tit{
  width: 100%;
  padding: 20px 24px;
  background: #004097;
}
.rc-tit > h5{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}
.rc-tit > h5 > span{
  color: rgba(255, 255, 255, 0.75);
}
.rc-wrap{
  width: 100%;
  padding: 24px;
  background: #f4f8fc;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rc-box{
  width: calc((100% - 36px) / 4);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .2s;
}
.rc-box.half{
  width: calc((100% - 12px) / 2);
}
.rc-box > p{
  font-size: 14px;
  color: #3d5068;
  font-weight: 400;
}
.rc-box > p > span{
  display: inline-block;
  font-size: 12px;
  color: #8a9ab8;
  font-weight: 400;
  margin-left: 8px;
}
.rc-box > span{
  font-size: 14px;
  color: #004097;
}
.rc-box:hover{
  background: #e6eef8;
  border-color: #004097;
  box-shadow: 0 4px 14px rgba(0,64,151,0.10);
}

.rcp-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.rcp-tit{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 36px;
  border-right: 1px solid #D0DDEF;
  background: #E6EEF8;
  justify-content: center;
}
.rcp-tit > span{
  font-size: 14px;
  color: #004097;
}
.rcp-tit > h5{
  font-size: 14px;
  color: #004097;
  font-weight: 700;
}
.rcp-cont{
  padding: 0 24px;
}
.rcp-cont > ul{
  display: flex;
  align-items: center;
  gap: 10px;
}
.rcp-cont > ul > li > p{
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: #004097;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}
.rcp-cont > ul > li > span{
  font-size: 11px;
  color: #004097;
}

.rc-card{
  width: calc((100% - 24px) / 3);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #D0DDEF;
  background: #FFF;
  transition: .2s;
}
.rc-card > h5{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #004097;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.rc-card > p{
  font-size: 14px;
  color: #3D5068;
  font-weight: 400;
  line-height: 1.6;
}
.rc-card:hover{
  background: #e6eef8;
  border-color: #004097;
  box-shadow: 0 4px 14px rgba(0,64,151,0.10);
}

/* 연구분야 */
.rs-tit{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  align-items: center;
}
.rs-tit .page-tit{
  margin-bottom: 0;
}
.rs-slide{
  width: 100%;
  overflow: hidden;
}
.rs-img{
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.rs-img img{
  display: block;
  width: 100%;
  transition: .3s;
}
.rs-img:hover img{
  transform: scale(1.04);
  opacity: 1;
}
.rs-img::after{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 20, 70, 0.78) 0%, rgba(0, 20, 70, 0.10) 55%, rgba(0, 20, 70, 0.00) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.rs-caption{
  width: 100%;
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.rs-caption > p{
  font-size: 12 px;
  color: #a8c0e0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rs-caption > h5{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
}
.rs-caption > h5 > span{
  color: #fff;
  font-size: 13px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
}
.rs-pn{
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}
.swiper-pagination.rspn,
.swiper-button-prev.rsnav,
.swiper-button-next.rsnav{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
}
.swiper-button-prev.rsnav,
.swiper-button-next.rsnav{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D6DDE8;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #3A4455;
    transition: .3s;
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
.swiper-button-prev.rsnav:hover,
.swiper-button-next.rsnav:hover{
    background-color: #004097;
    border-color: #004097;
    color: #fff;
}
.swiper-pagination.rspn{
    width: 40px;
    font-size: 13px;
    color: #6B7A90;
    font-weight: 500;
}
.swiper-pagination.rspn > span.swiper-pagination-current{
    color: #004097;
    font-size: 15px;
    font-weight: 700;
}

.rsa-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #D6DDE8;
  border-left: 1px solid #D6DDE8;
}
.rsa-box{
  width: 33.333333%;
  padding: 30px;
  border-bottom: 1px solid #D6DDE8;
  border-right: 1px solid #D6DDE8;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: .2s;
}
.rsa-wrap.half .rsa-box{
  width: 50%;
}
.rsa-box > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #E6EDF8;
  font-size: 18px;
  color: #004097;
  transition: .2s;
}
.rsa-tit > h5{
  font-size: 18px;
  color: #3A4455;
  font-weight: 500;
}
.rsa-tit > p{
  font-size: 14px;
  color: #6B7A90;
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.6;
}
.rsa-tit > a{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 30px;
  background: #E6EDF8;
  gap: 6px;
  align-items: center;
  transition: .2s;
  font-size: 13px;
  color: #004097;
  font-weight: 500;
  margin-top: 10px;
}
.rsa-tit > a > span{
  font-size: 11px;
}
.rsa-tit > a:hover{
  background-color: #004097;
  color: #fff;
}
.rsa-box:hover{
  background: #f5f7fa;
}
.rsa-box:hover > span{
  background: #004097;
  color: #fff;
}

.rsd-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.rsd-wrap.whole{
  gap: 30px;
}
.rsd-box{
  width: calc((100% - 40px) / 3);
  transition: .2s;
  border: 1px solid #D6DDE8;
  background: #FFF;
}
.rsd-wrap.whole .rsd-box{
  width: 100%;
}
.rsd-box:hover{
    box-shadow: 0 10px 36px rgba(0, 64, 151, 0.1);
    transform: translateY(-4px);
}
.rsd-tit{
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #004097;
}
.rsd-tit > h5{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}
.rsd-tit > h3{
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.rsd-tit > h3 > span{
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
}
.rsd-cont{
  width: 100%;
  padding: 20px;
}
.rsd-cont > ul > li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #3A4455;
  font-weight: 400;
  margin-bottom: 1rem;
}
.rsd-cont > ul > li:last-child{
  margin-bottom: 0;
}
.rsd-cont > ul > li > span.line{
  width: 8px;
  height: 2px;
  background-color: #004097;
}
.rsd-cont > ul > li > span.circle{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #004097;
}
.rsd-sect{
  width: 100%;
  margin-bottom: 30px;
}
.rsds-tit{
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #E6EDF8;
}
.rsds-tit > h5{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #004097;
  font-weight: 700;
}
.rsds-tit > h5 > span{
  font-size: 14px;
  color: #004097;
}
.rsd-caption{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px;
  gap: 1rem;
  background: #F5F7FA;
  margin-bottom: 14px;
}
.rsd-caption > h5{
  font-size: 14px;
  color: #3A4455;
  font-weight: 600;
}
.rsd-caption > p{
  font-size: 14px;
  color: #6B7A90;
  font-weight: 400;
}
.rsd-sect > p{
  display: flex;
  align-items: center;
  padding-top: 6px;
  gap: 10px;
  font-size: 16px;
  color: #3A4455;
  font-weight: 400;
}
.rsd-sect > p > span{
  width: 8px;
  height: 2px;
  background-color: #004097;
}


/* media-query */

@media(min-width:1200px){
  .d-lg-block{display: block;}
  .d-lg-none{display: none;}

  .ani.up.delay {
      transition: 1s opacity 0.2s, 1s transform 0.2s;
  }

  .ani.up.delay2 {
      transition: 1s opacity 0.5s, 1s transform 0.5s;
  }

  .ani.up.delay3 {
      transition: 1s opacity 0.8s, 1s transform 0.8s;
  }

  .ani.up.delay4 {
      transition: 1s opacity 1.1s, 1s transform 1.1s;
  }
}

@media(max-width:1600px){
  .page-con{
    max-width: 1440px;
  }
}

@media(max-width:1440px){
  .page-con{
    max-width: 1300px;
  }

  .about-img{
    margin-bottom: 30px;
  }
  .about-tit{
    padding-bottom: 1rem;
    margin-bottom: 30px;
    gap: 12px;
  }
  .about-tit > h5{
    font-size: 24px;
  }
  .history-list > ul > li{
    padding: 1rem 20px;
  }

  .map-box{
    padding: 24px;
  }
}

@media(max-width:1199px){
  .d-block{display: block;}
  .d-none{display: none;}
  
  .page-con{
    padding: 80px 15px;
  }
  .page-section.first{
    padding-top: 80px;
  }
  
  .oc-wrap {
    padding: 10px 12px;
  }

  .oc-ceo,
  .oc-lab {
    width: 180px;
  }
  .oc-ceo{
    margin: 0 auto 24px;
  }
  .oc-lab{
    margin: 0 auto 20px;
  }

  .oc-main-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .oc-main-row::before,
  .oc-ceo::after,
  .oc-director::after,
  .oc-lab::after,
  .oc-bottom::before,
  .oc-bottom-box::before {
    display: none;
  }

  .oc-box {
    height: 56px;
  }

  .oc-director {
    order: -1;
  }

  .oc-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .oc-bottom-box {
    height: 56px;
  }

  .about-tit > h5{
    font-size: 22px;
  }
  .history-list > ul > li{
    padding: 10px 1rem;
  }
  .history-tit{
    gap: 10px;
  }
  .history-tit > p{
    padding: 8px 12px;
  }
  .history-tit > h5{
    font-size: 14px;
  }
  .history-list > ul > li > span{
    padding: 4px 8px;
  }

  .page-tit{
    margin-bottom: 30px;
  }
  .page-tit > h3{
    font-size: 24px;
  }
  .ohr-wrap{
    padding: 20px 0;
  }
  .ohr-box{
    padding: 0 20px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .ohr-tit > h3{
    font-size: 15px;
  }
  .ohr-tit > h3 > span{
    font-size: 26px;
  }
  .oct-wrap{
    gap: 10px;
  }
  .oct-box {
    width: calc((100% - 20px) / 2);
  }
  .og-btn{
    padding: 1rem 20px;
    border-radius: 10px;
  }
  .og-btn > span{
    font-size: 14px;
  }
  .og-btn > p{
    font-size: 12px;
  }
  .og-btn > h5{
    font-size: 17px;
  }

  .page-map iframe{
    height: 300px !important;
  }
  .map-wrap{
    flex-wrap: wrap;
  }
  .map-box{
    width: 100%;
    padding: 20px;
    gap: 1rem;
  }
  .map-box > span{
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .map-table > table thead th{
    padding: 20px;
  }
  .map-table > table tbody th{
    padding: 20px 10px;
  }
  .map-table > table tbody th h5{
    justify-content: center;
  }
  .map-table > table tbody td{
    padding: 20px;
  }

  .page-caption{
    gap: 6px;
    padding: 1rem;
  }
  .page-caption > span{
    font-size: 13px;
  }
  .page-caption > p{
    font-size: 14px;
  }
  .rc-table > table thead tr:first-child th{
    padding: 20px;
  }
  .rc-table > table tbody th{
    font-size: 13px;
    line-height: 1.4;
    word-break: keep-all;
  }
  .rc-table > table tbody td{
    padding: 1rem 10px;
    font-size: 13px;
    line-height: 1.4;
  }
  .rc-table > table tbody td ul li{
    font-size: 13px;
    gap: 6px;
    align-items: flex-start;
    line-height: 1.4;
  }
  .rc-table > table tbody td ul li span{
    flex: 0 0 auto;
    margin-top: 7px;
  }

  .rc-tit{
    padding: 20px;
  }
  .rc-wrap{
    padding: 20px;
    gap: 10px;
  }
  .rc-box{
    padding: 1rem;
    gap: 8px;
    width: calc((100% - 10px) / 2);
  }
  .rc-box.half {
    width: calc((100% - 10px) / 2);
  }
  .rc-box > p > span{
    margin-left: 4px;
  }
  .rc-box > p{
    line-height: 1.4;
    word-break: keep-all;
  }
  .rcp-tit{
    padding: 20px;
  }
  .rcp-cont{
    padding: 0 20px;
  }
  .rcp-cont > ul > li > p{
    font-size: 12px;
  }

  .rs-tit{
    margin-bottom: 30px;
  }
  .page-tit > h2 > span{
    font-size: 22px;
  }
  .page-tit > h2{
    font-size: 26px;
  }
  .page-tit > p{
    font-size: 16px;
  }
  .page-tit > h4 > span{
    font-size: 16px;
  }
  .page-tit > h4{
    font-size: 18px;
  }
  .rsa-box{
    padding: 20px;
    width: 50%;
  }
  .rsa-box > span{
    width: 42px;
    height: 42px;
    font-size: 16px;
    flex: 0 0 auto;
  }
  .rsa-tit > h5{
    font-size: 16px;
  }
  .rsd-wrap{
    gap: 10px;
  }
  .rsd-box{
    width: calc((100% - 10px) / 2);
  }
  .rsd-tit{
    padding: 1rem;
  }
  .rsd-tit > h3{
    font-size: 18px;
  }
  .rsd-cont{
    padding: 1rem;
  }
  .rsd-cont > ul > li{
    font-size: 14px;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .rsd-cont > ul > li > span.line{
    width: 6px;
    margin-top: 8px;
  }
  .rsd-tit > h3 > span{
    font-size: 12px;
    margin-left: 3px;
  }
  .rsd-tit > h5{
    font-size: 13px;
  }
  .rsds-tit > h5 > span{
    font-size: 12px;
  }
  .rsds-tit > h5{
    font-size: 16px;
  }
  .rsds-tit{
    padding-bottom: 10px;
    margin-bottom: 12px;
  }
  .rsd-caption{
    padding: 12px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .rsd-caption > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .rsd-sect > p{
    padding-top: 2px;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    align-items: flex-start;
  }
  .rsd-sect > p > span{
    margin-top: 8px;
  }
  .rsd-sect{
    margin-bottom: 20px;
  }
  
}
@media(max-width:600px){

  .page-con{
    padding: 60px 15px;
  }
  .page-section{
    margin-bottom: 50px;
  }
  .page-section.first{
    padding-top: 60px;
  }

  .oc-bottom {
    grid-template-columns: 1fr;
  }

  .history-list > ul > li{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .history-tit{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .history-tit > span{
    width: 100%;
    height: 1px;
    border-radius: 0;
  }
  .about-tit > h5{
    font-size: 20px;
  }
  .about-tit > p{
    letter-spacing: 1px;
  }

  .page-tit > h3{
    font-size: 22px;
  }

  .ohr-wrap{
    flex-wrap: wrap;
    padding: 0;
  }
  .ohr-box{
    width: 100%;
    padding: 20px 1rem;
    flex-direction: row;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid #D0DDEF;
  }
  .ohr-box:last-child{
    border-bottom: 0;
  }

  .oct-card{
    padding: 20px;
  }
  .oct-box{
    width: 100%;
  }

  .page-map iframe{
    height: 250px !important;
  }
  .map-box{
    flex-direction: column;
  }
  .map-tit > h5{
    flex-direction: column;
    align-items: flex-start;
  }
  .map-tit > h5 > span{
    max-width: 75px;
  }
  .map-table > table tbody th h5{
    gap: 6px;
  }
  .map-table > table thead th{
    padding: 1rem;
  }
  .map-table > table tbody th{
    padding: 1rem;
  }
  .map-table > table tbody td{
    padding: 1rem;
    flex-direction: column;
  }
  .map-table > table tbody td > span{
    transform: rotate(90deg);
  }

  .page-caption > p{
    font-size: 13px;
  }
  .page-caption > span{
    font-size: 12px;
    margin-top: 3px;
  }
  .page-caption{
    align-items: flex-start;
  }
  .rc-table > table{
    min-width: 600px;
  }
  .rc-table{
    overflow-x: scroll;
  }
  .rc-box{
    width: 100%;
  }
  .rc-box.half{
    width: 100%;
  }
  .rc-box > span{
    font-size: 11px;
  }
  .rcp-wrap{
    flex-direction: column;
  }
  .rcp-tit{
    width: 100%;
    border-right: 0;
  }
  .rcp-cont{
    width: 100%;
    padding: 20px;
  }
  .rcp-cont > ul{
    justify-content: center;
  }
  .rc-card{
    width: 100%;
    padding: 1rem;
  }
  .rc-card > h5{
    margin-bottom: 10px;
  }

  .rs-tit{
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .swiper-button-prev.rsnav, .swiper-button-next.rsnav{
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .swiper-pagination.rspn{
    display: none;
  }
  .page-section.first .rs-tit{
    margin-bottom: 1rem;
  }
  .page-tit > h2{
    font-size: 24px;
  }
  .page-tit > h2 > span{
    font-size: 20px;
  }
  .rsa-box{
    width: 100%;
  }
  .rsd-box{
    width: 100%;
  }
  .rsd-tit > h5{
    font-size: 12px;
    margin-top: 4px;
  }
  .rsd-tit > h3{
    font-size: 16px;
    line-height: 1.4;
    align-items: flex-start;
  }
  .page-tit > h5{
    gap: 8px;
    align-items: flex-start;
  }
  .page-tit > h5 > span{
    width: 20px;
    margin-top: 6px;
  }
  .page-tit > p{
    font-size: 14px;
    line-height: 1.4;
  }
  .rsa-tit > h5{
    font-size: 15px;
    line-height: 1.3;
  }
  .rsa-tit > p{
    font-size: 13px;
    margin-top: 4px;
  }
  .rsd-tit{
    align-items: flex-start;
  }
  .rsd-cont > ul > li > span.circle{
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    margin-top: 7px;
  }
  .rsa-wrap.half .rsa-box{
    width: 100%;
  }
  .rsa-tit > a{
    margin-top: 6px;
  }
}

/* animation */

.ani.up {
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act {
    transform: translateY(0);
    opacity: 1;
}