@media screen and (min-width: 1200px) {

.wrap{
  width: 100%;
  height: 100%;
  position: relative;
}

.main-header{
  width: 100%;
  height: 80px;
  background-color: #0a52a7;
  padding: 0 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.main-logo{
  width: 200px;
  height: 60px;
  transform: translateX(-15px);
}

.main-menu{
  width: 630px;
  height: 50px;
  transition-duration: 0.2s;
  display: flex;
  justify-content: space-between;
  color: #F5F7FA;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
}

.top-menu{
  width: calc(100% / 7);
  text-align: center;
}

.menu-icon{
  display: none;
}

.mo-sub-overlay, .mo-sub-dim{
  display: none;
}

/* -----------------------------------------------------*/

.main-container{
  width: 100%;
  height: 100%;
  position: relative;
}

.out-box{
  width: 100%;
  box-sizing: border-box;
  transition-duration: 0.2s;
}

.out-box-1{
  height: 500px;
  overflow: hidden;
  position: relative;
}

/* 배너 */
.banner-img-box{
  width: 100%;
  height: 100%;
}

.banner-blur-layer{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  backdrop-filter: blur(2.5px);
}

.banner-wrap img{
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-content-wrap {
  height: 55%;
  width: 100%;
  padding-left: 200px;
  padding-right: 200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.banner-text-wrap {
  width: 1000px;
  height: auto;
  text-align: left;
  color: #F5F7FA;
  text-shadow: 0px 3px 3px rgba(26, 26, 26, 0.8);
}

/*.banner-text-wrap{
  width: 1200px;
  height: 300px;
  text-align: center;
  align-content: center;
  color: #F5F7FA;
  position: absolute;
  top: calc(50% - 210px);
  left: calc(50% - 600px);
  z-index: 3;
  text-shadow: 0px 3px 3px 4px rgba(26, 26, 26, .8);
  *//* background-color: cadetblue; *//*
}*/

.banner-text-wrap h2{
  font-size: 2.5rem;
}

.banner-text-wrap p{
  font-size: 1rem;
  margin: 10px 0 20px 0;
}

.view-more{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  background: var(--accent-color);
  color: #F5F7FA;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 35px;
  text-align: center;
}

.view-more:hover{
  background: #0052a3;
}

/* banner - quick menu */
.quick-menu-wrap {
  width: 400px;
  height: 90%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: rgba(245, 247, 250, 0.5);
}

/*.quick-menu-wrap{
  width: 400px;
  height: 150px;
  *//* background-color: cadetblue; *//*
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  position: absolute;
  bottom: 35px;
  left: calc(50% - 200px);
  z-index: 3;
  background-color: rgba(245, 247, 250, .5);
}*/

.quick-menu-header{
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
}

.quick-item-wrap{
  display: flex;
}

.quick-menu-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  background-color: rgba(220, 227, 237, .7);
  cursor: pointer;
  text-align: center;
}

.quick-menu-item:hover{
  background-color: rgba(215, 228, 251, 0.7);
}

.quick-menu-item img{
  width: 100px;
  height: 30px;
  object-fit: contain;
}

.quick-menu-item p{
  font-size: 0.86rem;
}

.q-menu-2{
  margin: 0 15px;
}

/* -----------------------------------------------------*/
/* 2) Research & News */

.out-box-2{
  height: max-content;
  margin: 80px 0;
  padding: 0 200px;
  display: flex;
  justify-content: space-between;
}

.section-header{
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.research, .news{
  width: 50%;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(119, 119, 119, .4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.research{
  margin-right: 30px;
  flex: 1;
}

.news{
  flex: 1;
}

.add-btn{
  font-size: 1rem;
  border: none;
  background-color: transparent;
}

.add-btn:hover{
  color: #007bff;
  font-weight: 600;
}

.info{
  height: max-content;
}

.research-text,.news-text{
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.1rem;
  margin: 4px 0;
}

.research-list li, .news-list li{
  display: flex;
  margin-bottom: 20px;
  cursor: pointer;
}

.research-list li{
  width: 100%;
  justify-content: space-between;
}

.num{
  font-size: 1.6rem;
  font-weight: bold;
  color: #007bff;
}

.news-num-1{
  font-size: 2.6rem;
  margin-right: 15px;
}

/* -----------------------------------------------------*/
/* 3) ETC */

.out-box-3{
  margin-bottom: 80px;
  padding: 0 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.box3-con{
  width: calc(100% / 3);
  height: 100%;
  background-color: #DCE3ED;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  cursor: pointer;
}

.box3-con:hover{
  background-color: rgb(200, 214, 234);
  transition-duration: 0.2s;
}

.box3-big-text{
  color: #1947BA;
  font-size: 1.2rem;
  font-weight: 700;
}

.box3-small-text{
  font-size: 0.7rem;
}

#box3-icon1,#box3-icon2{
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 8px;
}

#box3-icon3{
  width: 140px;
  height: 50px;
  object-fit: contain;
}


/* --------------------------------------------- */
/* Footer */

.main-footer{
  width: 100%;
  height: max-content;
  background: var(--primary-color);
  padding: 30px 100px;
  box-sizing: border-box;
  color: var(--text-color);
}

.ft-logo-wrap{
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-logo-wrap select{
  width: 110px;
  height: 40px;
  padding: 0.5rem;
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 5px;
}

.ft-logo-wrap img{
  display: block;
  width: 200px;
  object-fit: contain;
}

.ft-info{
  font-size: 0.9rem;
  text-align: center;
}

.tel-num{
  margin: 10px 0;
}

/* -----------------------------------------------------*/
/* 4) Scroll to Top */

.top-but-wrap{
  width: 100%;
  height: 100%;
  position: relative;
}

.top-btn{
  width: 30px;
  height: 30px;
  position: absolute;
  right: 45px;
  bottom: 30px;
  z-index: 4;
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
}

.top-btn img{
  width: 50%;
  height: 50%;
  object-fit: contain;
}



}