@charset "utf-8";

  /* font */
  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
  /* font-family: 'Noto Sans KR', sans-serif; */

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
  /* font-family: 'Poppins', sans-serif; */

  @import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  /* font-family: 'Saira', sans-serif; */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {list-style: none;}

a { text-decoration: none;}

body {
  overflow-x: hidden;
}

header {
  width: 100%;
  background-color: white;
  position: relative;
}

.inner {
  height: 80px;
  border: 1px solid #ededed;
  position: relative;
  z-index: 3;
}

.inner .header-bg {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 280px;
  background-color: #fff;
  display: none;
  z-index: 2;
}

.inner .header-bg2 {
  position: absolute;
  top: 80px;
  width: 100%;
  /* height: calc(100vh - 80px); */
  height: 3000px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  display: none;
}

.inner nav .sub-bg {
  width: 100%;
  height: 280px;
  position: absolute;
  top: 80px;
  left: 0;
  background-color: #f0f0f0;
  /* background-color: rgba(0, 0, 0, 0.3); */
  display: none;
  /* z-index: 9; */
}

.inner .logo {
  line-height: 80px;
  padding-left: 300px;
}

.inner .nav .menu {
  position: absolute;
  top: 0;
  left: 47%;
  z-index: 10;
}

.inner .nav .menu > li {
  float: left;
}

.inner .nav .menu > li > a {
  padding: 20px;
  height: 80px;
  line-height: 40px;
  color: #222;
  font-size: 19px;
  text-align: center;
  display: block;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  font-weight: 500;
  position: relative;
  margin-right: 25px;
}

.inner .nav .submenu {
  margin-top: 10px;
  display: none;  
}

.inner .nav .menu > li:hover > a {
  color: #0E81A0;
  display: block;
  cursor: pointer;
  transform: translateX(0);
  transition: all 0.3s;
}

.inner .nav .menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 0px;
  height: 2px;
  background-color: #0E81A0;
  display: block;
  transition: width 0.3s;
}

 .inner .nav .menu > li:hover > a::after {
  width: 60px;
}

.inner .nav .submenu > li > a {
  padding: 20px 0px 20px 0px;
  height: 20px;
  color: #aaa;
  text-align: center;
  display: block;
  /* font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 400; */
  font: 400 17px 'Poppins', 'Noto Sans KR', sans-serif;
  font-size: 17px;
  transition: all 0.3s;
  letter-spacing: -0.8px;
  margin-left: -18px;
}

.inner .nav .menu > li:hover > .submenu > li a {
  color: #222;
} 

.inner .nav .menu-all-icon {
  width: 19px;
  height: 19px;
  background: url(../images/comn/all_menu.png);
  position: absolute;
  top: 40%; right: 0;
  margin-right: 300px;
}

.inner .nav .menu-all-icon:hover {
  background: url(../images/comn/all_menu_on.png);
  transition: all 0.2s;
}

.visual .container {
  width: 100%;
  height: 705px;
  background: url("../images/main/rowgroup_bg.png");
  background-position: center;
  overflow: hidden;
  display: flex;
}

.visual .container::before {
  content: '';
  background: url(../images/main/main_bg.png) no-repeat;
  position: absolute;
  top: 80px; left: 85.5%;
  width: 278px;
  height: 221px;
  display: block;
}

.visual .container::after {
  content: '';
  background: url(../images/comn/cont_cc02.png) no-repeat;
  position: absolute;
  bottom: -12%; right: 3%;
  width: 171px;
  height: 257px;
  display: block;
}

.visual .container .banner1 {
  width: 470px;
  height: 630px;
  margin: 0 auto;
  margin-left: 300px;
  display: flex;
  position: relative;
}

.visual .container .banner1 .swiper-wrapper {
  width: 470px;
  height: 470px;
  margin-top: 60px;
  margin-right: auto;
}

.visual .container .banner1 .swiper-wrapper .swiper-slide img {
  width: 470px;
  height: 470px; 
  border: 0;
  background: none;
  object-fit: cover;
  border-radius: 30px;
  cursor: pointer;
  display: block;
}

.visual .container .banner1 .swiper-pagination {
  width: 80px;
  height: 30px;
  position: absolute;
  bottom: 8%; left: 42%;
  margin-top: 10px;
  cursor: pointer;
}

.visual .container .banner1 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 12px;
}

.visual .container .banner1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  margin-left: 12px;
  background: #0E81A0;
}

.visual .container .r-wrap {
  margin-top: 70px;
  margin-right: 300px;
}

.search form {
  position: relative;
}

.search form div label {
  color:#0E81A0;
  margin-right: 15px;
  text-transform: uppercase;
  /* font-weight: 550; */
  /* font-size : 22px; */
  /* font-family: 'Poppins', sans-serif; */
  font: 500 22px 'Poppins', 'Noto Sans KR', sans-serif;
}

.search form div input {
  width: 678px;
  height: 66px;
  border: 2px solid #0E81A0;
  background: #fff;
  border-radius: 5px;
  padding: 0 25px;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  color: #444;
  font-weight: 400;
  font-size: 17px;
  outline: none;
}

.search form button {
  width: 65px;
  height: 65px; 
  border: none;
  border-radius: 0px 5px 5px 0px;
  position: absolute;
  top: 0; right: 0;
  background: #0E81A0 url('../images/cont/search_btn.png') no-repeat 50% 50%;
}

.search form button:hover {
  cursor: pointer;
  background-color: #0e8bb0;
}

.search form div .search-text ul {
  display: flex;
  padding: 12px 0px 0px 132px;
}

.search form div .search-text ul li a {
  color: #72949b;
  /* font-family: 'Poppins', sans-serif; */
  /* font-size: 17px; */
  /* font-weight: 550; */
  font: 400 17px 'Poppins', 'Noto Sans KR', sans-serif;
  margin-right: 20px;
}

.search form div .search-text ul li a:hover {
  text-decoration: underline;
}

.r-wrap .menu-box {
  width: 780px;
  height: 310px;
  background-color: #fff;
  border-radius: 15px;
  margin-top: 46px;
  box-shadow: 0px 10px 20px 6px rgba(0,0,0,0.07);
}

.r-wrap .menu-box ul {
  display: flex;
  flex-wrap: wrap;
}

.r-wrap .menu-box ul li {
  width: 33.33%;
  height: 155px;
  border-bottom: 1px solid #eee ;
  padding: 31px 13px;
  position: relative;
}

.r-wrap .menu-box ul li a {
  width: 100%;
  height: 90px; 
  display: inline-block;
  transition: all 0.2s;
}

.r-wrap .menu-box ul li:hover {
  background-color: #f3fcf8;;
}

.r-wrap .menu-box ul li a::after {
  content: '';
  border-right: 1px solid #eee;
  height: 60px;
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  display: block;
}

.r-wrap .menu-box ul li:nth-child(1) a {
  background: url(../images/main/quick01.png) no-repeat 15% 50%;
}

.r-wrap .menu-box ul li:nth-child(2) a {
  background: url(../images/main/quick02.png) no-repeat 10% 50% ;
}

.r-wrap .menu-box ul li:nth-child(3) a {
  background: url(../images/main/quick03.png) no-repeat 5% 50%;
}

.r-wrap .menu-box ul li:nth-child(4) a {
  background: url(../images/main/quick04.png) no-repeat 15% 30%;
}

.r-wrap .menu-box ul li:nth-child(5) a {
  background: url(../images/main/quick05.png) no-repeat 10% 30%;
}

.r-wrap .menu-box ul li:nth-child(6) a {
  background: url(../images/main/quick06.png) no-repeat 10% 30%;
}

.r-wrap .menu-box ul li:nth-child(1):hover a{
  background-position: 15% 40%;
}

.r-wrap .menu-box ul li:nth-child(2):hover a{
  background-position: 10% 40%;
}

.r-wrap .menu-box ul li:nth-child(3):hover a{
  background-position: 5% 40%;
}

.r-wrap .menu-box ul li:nth-child(4):hover a{
  background-position: 15% 20%;
}

.r-wrap .menu-box ul li:nth-child(5):hover a{
  background-position: 10% 20%;
}

.r-wrap .menu-box ul li:nth-child(6):hover a{
  background-position: 10% 20%;
}

.r-wrap .menu-box ul li a span {
  display: block;
}

.r-wrap .menu-box ul li a:hover span {
  color: #008859;
}

.r-wrap .menu-box ul li a .tt {
  font: 400 18px/22px 'Poppins', 'Noto Sans KR', sans-serif;
  color:  #111;
  margin: 10% 20px 0px 38%;
}

.r-wrap .menu-box ul li a .text {
  font: 300 15px/20px 'Poppins', 'Noto Sans KR', sans-serif;
  color: #888;
  margin-left: 38%;
}

.visual .category {
  position: relative;
  display: flex;
}

.visual .category .c-wrap {
  /* width: calc(100% - 265px); */
  width: calc(100% - 300px);
  height: 154px;
  /* max-width: 1300px; */
  background-color: #0E81A0;
  position: absolute;
  top: 0; left: 0;
  transform: translateY(-50%);
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  padding: 25px 0;
  padding: 0 40px;
}

.visual .category .c-wrap p {
  color: #fff;
  width: 95px;
  height: 58px;
  font-size: 20px; 
  font-family: 'Poppins', 'Noto Sans KR', sans-serif; 
  font-weight: 500;
  word-break: keep-all;
  border-right: 1px solid #449fb8;
  margin-left: 260px;
}

.visual .category .c-wrap ul {
  display: flex;
  margin: 0 20px;
}

.visual .category .c-wrap ul li {
  padding: 15px 10px 20px;
  width: 100px;
  height: 100px;
}

.visual .category .c-wrap ul li a {
  color: #fff;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif; 
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
}

.visual .category .c-wrap ul li a::before {
  content: '';
  width: 100%;
  height: 40px;
  display: block;
  margin-bottom: 8px;
}

.visual .category .c-wrap ul li:nth-child(1) a::before {
  background: url(../images/main/cate001.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(2) a::before {
  background: url(../images/main/cate002.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(3) a::before {
  background: url(../images/main/cate003.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(4) a::before {
  background: url(../images/main/cate004.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(5) a::before {
  background: url(../images/main/cate005.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(6) a::before {
  background: url(../images/main/cate006.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(7) a::before {
  background: url(../images/main/cate007.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(8) a::before {
  background: url(../images/main/cate008.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(9) a::before {
  background: url(../images/main/cate009.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(10) a::before {
  background: url(../images/main/cate010.png) no-repeat 50% 50%;
} 
.visual .category .c-wrap ul li:nth-child(11) a::before {
  background: url(../images/main/all_icon.png) no-repeat 50% 50%;
  margin: 0 auto;
} 

.visual .category .c-wrap ul li:hover {
  border-radius: 10px;
  background-color: #0e95af;
  transition: all 0.2s;
}

.visual .category .c-wrap ul li:last-child {
 background-color:  #0E81A0;
}

.visual .category .c-wrap ul li .all {
  width: 100px;
  height: 100px;
  background-color: #07627c;
  display: block;
  border-radius: 50%;
  color: #fff;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif; 
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  top: 18%; 
  padding: 15px; 
}

.visual .category .c-wrap ul li .all:hover {
  background-color :#008859;
}

header .top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px; 
  display: none;
  z-index: 99;
}

header .top_btn a {
  width: 70px;
  height: 70px;
  background: #555555;
  font: 500 16px 'Saira','Noto Sans KR',sans-serif;
  /* font-size: 16px; */
  /* font-family: 'Saira', sans-serif; */
  padding: 19px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
  text-align: center;
  display: block;
  /* overflow: visible; */
}

header .top_btn a::before {
  content: '';
  background: url(../images/comn/top_arr.png) no-repeat 50% 50%;
  width: 100%;
  height: 7px;
  display: block;
  margin-bottom: 3px;
}

/* ---------------------------- */
main .main_box {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

main .main_box h2 {
  height: 28px;
  color: #222222;
  font-weight: 600;
  font-size: 28px;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  margin-bottom: 20px;
  margin: 180px 0px 0px 300px;
}

main .main_box .wrap1 {
  width: 100%;
  max-width: 1380px;
  height: 584px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 0px 40px 0px;
  margin: 0px auto 100px;
}

main .main_box .wrap1 .imgtext {
  width: 884px;
  height: 411px;
  padding: 35px 0px 0px 20px;
  display: flex;
}

main .main_box .wrap1 .imgtext .img {
  width: 405px;
  height: 376px;
  background: url(../images/main/contact_img.jpg) no-repeat;
}

main .main_box .wrap1 .imgtext .info-text {
  width: 441px;
  height: 316px;
  padding: 0px 40px 85px 40px;
  display: block;
  place-self: flex-end start;
}

main .main_box .wrap1 .imgtext .info-text p {
  width: 363px;
  height: 72px;
  color: #222222;
  font-size: 25px;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 600;
  padding: 0px 10px;
  margin: 0 auto;
}

main .main_box .wrap1 .imgtext .info-text p b {
  color: #0E81A0;
}

main .main_box .wrap1 .imgtext .info-text span {
  width: 362px;
  height: 54px;
  color: #888;
  font: 300 16px "Poppins", "Noto Sans KR", sans-serif;
  /* font-size: 16px; */
  margin: 20px 0px 40px;
  padding: 0 10px;
  display: block;
  place-self: flex-end start;
}

main .main_box .wrap1 .imgtext .info-text a {
  width: 172px;
  height: 55px;
  color: #0E81A0;
  font-size: 17px;
  font-weight: 500;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: bold;
  border: 2px solid #0E81A0;
  border-radius: 30px;
  display: block;
  text-align: center;
  transition: all 0.2s;
  padding: 12px 20px;
}

main .main_box .wrap1 .imgtext .info-text a:hover {
  cursor: pointer;
  background-color: #0E81A0;
  color: #fff;
}

main .main_box .wrap1 .api  {
  width: 416px;
  height: 321px;
  place-self: flex-end start;
  padding: 0px 20px 30px 0;
}

main .main_box .wrap1 .api .text_more {
  width: 396px;
  height: 22px;
  display: flex;
  justify-content: space-between;
}
 
main .main_box .wrap1 .api .text_more h3 {
  color: #222222;
  font-size: 20px;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 600;
}

main .main_box .wrap1 .api .text_more .more {
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: url('../images/main/more.png') no-repeat 55% 50%;
  /* vertical-align: baseline; 수직정렬  */
}

main .main_box .wrap1 .api .text_more .more:hover {
  background: #008859 url('../images/main/more_on.png') no-repeat 55% 50%;
  border: 1px solid #008859;
}

main .main_box .wrap1 .api ul {
  margin-top: 15px;
}

main .main_box .wrap1 .api ul li {
  width: 396px;
  border-bottom: 1px solid #ddd;
  padding: 12px 0px;
}

main .main_box .wrap1 .api ul li:last-child {
  border: none;
}

main .main_box .wrap1 .api ul a {
  width: 396px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  cursor: pointer;
}

main .main_box .wrap1 .api ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
  display: inline-block;
  vertical-align: 4px;
  margin-right: 6px;
}

main .main_box .wrap1 .api ul li a:hover {
  text-decoration: underline;
}

main .main_box .wrap1 .api ul li span {
  width: 396px;
  height: 30px;
  line-height: 30px;
  /* font-size: 16px; */
  font: 300 16px "Poppins", "Noto Sans KR", sans-serif;
  color: #888;
  display: block;
  padding-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

main .main_box .wrap1 .guide {
  width: 1300px;
  height: 125px;
  position: relative;
  margin-top: -15px;
  z-index: 0;
}

main .main_box .wrap1 .guide p {
  width: 125px;
  height: 140px;
  background-color: #0c9194;
  border-radius: 60px 60px 0px 20px;
  display: inline-block;
  text-align: center;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #46ecef;
  display: inline-block;
  padding-top: 50px; 
}

main .main_box .wrap1 .guide span {
  width: 125px;
  color: #fff;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  position: absolute;
  top: 75px; left: 0;
}

main .main_box .wrap1 .guide ul {
  width: 1300px;
  height: 125px;
  background-color: #0C8487;
  position: absolute;
  top: 15px; left: 0;
  display: inline-block;
  z-index: -1;
  border-radius: 60px 0px 0px 20px;
  padding-left: 125px;
}

main .main_box .wrap1 .guide ul li {
  width: 190px;
  height: 125px;
  display: flex;
  display: inline-block;
}

main .main_box .wrap1 .guide ul li a {
  width: 100%;
  height: 125px;
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding-top: 80px;
  transition: all 0.3s;
}

main .main_box .wrap1 .guide ul li a::after {
  content: '';
  border-right: 1px solid #299c9f; 
  height: 74px;
  display: block;
  position: absolute;
  top: 27px;
}

main .main_box .wrap1 .guide ul li:nth-child(1) a::after {
  content: '';
  border: none;
}

main .main_box .wrap1 .guide ul li:nth-child(1) {
  background: url("../images/main/gd01.png") no-repeat 50% 30%;
}

main .main_box .wrap1 .guide ul li:nth-child(2) {
  background: url("../images/main/gd02.png") no-repeat 50% 35%;
}

main .main_box .wrap1 .guide ul li:nth-child(3) {
  background: url("../images/main/gd03.png") no-repeat 50% 30%;
}

main .main_box .wrap1 .guide ul li:nth-child(4) {
  background: url("../images/main/gd05.png") no-repeat 50% 35%;
}

main .main_box .wrap1 .guide ul li:nth-child(5) {
  background: url("../images/main/gd04.png") no-repeat 50%
  35%;
}

main .main_box .wrap1 .guide ul li:nth-child(6) {
  background: url("../images/main/gd06.png") no-repeat 50% 30%;
}

/* //////// hover //////// */
main .main_box .wrap1 .guide ul li:nth-child(1):hover {
  background: url("../images/main/gd01_on.png") no-repeat 50% 30%;
}

main .main_box .wrap1 .guide ul li:nth-child(2):hover {
  background: url("../images/main/gd02_on.png") no-repeat 50% 35%;
}

main .main_box .wrap1 .guide ul li:nth-child(3):hover {
  background: url("../images/main/gd03_on.png") no-repeat 50% 30%;
}

main .main_box .wrap1 .guide ul li:nth-child(4):hover {
  background: url("../images/main/gd05_on.png") no-repeat 50% 35%;
}

main .main_box .wrap1 .guide ul li:nth-child(5):hover {
  background: url("../images/main/gd04_on.png") no-repeat 50%
  35%;
}

main .main_box .wrap1 .guide ul li:nth-child(6):hover {
  background: url("../images/main/gd06_on.png") no-repeat 50% 30%;
}

main .main_box .wrap1 .guide ul li:hover a {
  color: #ecff0d;
}
/* --------------------------------------------------- */

.wrap2 {
  width: 100%;
  margin: 0 auto;
} 

.wrap2 .box1 {
  width: 100%;
  max-width: 1380px;
  height: 182px;
  margin: 0 auto;
}

.wrap2 .box1 .container {
  width: 100%;
  margin: 0 auto;
  background: url('../images/main/exper_bg.png') no-repeat right 12% bottom 0%;
  position: relative;
}

.wrap2 .box1 .container h2 {
  width: 1340px;
  height: 78px;
  margin: 0 auto;
  color: #222222;
  font: 600 28px/28px "Poppins", "Noto Sans KR", sans-serif;
  /* font-size: 28px; */
  background: url('../images/main/quotes.png') no-repeat 0px 0px;
  padding: 50px 40px 0;
}

.wrap2 .box1 .container h2 b {
  color: #0E81A0;
}

.wrap2 .box1 .container p {
  height: 84px;
  padding: 0 0 30px 60px;
  margin-top: 30px;
  /* font-size: 18px; */
  font: 300 18px/27px "Poppins", "Noto Sans KR", sans-serif;
  color: #888888;
}

/* ---------------- 스와이퍼 start --------------- */
.wrap2 .box2 {
  display: block;
}

.wrap2 .box2 .slide-box  {
  width: 100%;
  position: relative;
  display: block;
}

.wrap2 .box2 .slide-box .control {
  width: 1300px;
  margin: 0 auto;
  margin-left: 320px;
  display: flex;
  align-items: center;
}

.wrap2 .box2 .slide-box .control .p-next2 {
  background: url('../images/main/exper_next.png') no-repeat 50% 50%;
  width: 14px;
  height: 30px;
}

.wrap2 .box2 .slide-box .control .p-pagination2 {
  width: 47px;
  height: 16px;
  line-height: 16px;
  margin: 0 20px;
  color: #888888;
  /* font-size: 16px; */
  /* font-family: 'Saira', sans-serif; */
  text-align: center;
  font: 400 16px/16px "Saira", "Noto Sans KR", sans-serif;
}

.wrap2 .box2 .slide-box .control .p-pagination2 .swiper-pagination-current {
  color: #444;
}

.wrap2 .box2 .slide-box .control .p-prev2 {
  background: url('../images/main/exper_prev.png') no-repeat 50% 50%;
  width: 14px;
  height: 30px;
  cursor: pointer;
}

.wrap2 .box2 .slide-box .banner2 {
  width: 100%;
  /* max-width: 1380px; */
  height: 516px;
  display: block;
  position: relative;
  overflow: visible;
}

.wrap2 .box2 .slide-box .banner2-bg {
  width: 100%;
  height: 1100px;
  display: inline-block;
  background: linear-gradient(180deg, rgba(255,255,255,1) 36%, rgba(226,251,242,1) 36%, rgba(235,252,246,1) 82%, rgba(255,255,255,1) 82%);
  position: absolute;
  top: -33%; left: 0;
  z-index: -1;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper {
  width: 100%;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide {
  height: 100%;
  margin: 0 auto;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won {
  width: 320px;
  height: 100%; 
  margin: 0 auto;
  position: relative;
  transition: all .3s;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won .bubble {
  width: 270px;
  height: 100px;
  background-color: #56af7f;
  border-radius: 10px;
  text-align: center;
  display: none;
  font-size: 21px;
  font-family: 'Poppins', "Noto Sans KR", sans-serif;
  font-weight: 400;
  color: #fff;
  padding: 20px 10px;
  position: absolute;
  top: 0%; left: -15%;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide-active .won .bubble {
  display: block;  
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won .bubble::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 12px;
  display: block;
  background: url('../images/main/bubble.png')no-repeat;
  position: absolute;
  top: 100%; left: 49%;
}

.banner2 .swiper-wrapper .swiper-slide-active .won .bubble {
  transform: translateY(-100px);
  transition: all 0.5s;
  transition-delay: all 0.45s;
  display: block;
  height: 100%;
  box-shadow: 0px 8px 20px 6px rgb(0 0 0 / 7%);
}

.wrap2 .box2 .banner2 .swiper-wrapper .swiper-slide .won .list img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  transition: all .5s linear;
  position: absolute;
  top: 19%; left: 0;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won span {
  display: block;
  text-align: center;
  position: absolute;
  top: 57%; left: 18%;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  color: #8fb0a4;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide-active .won span {
  font-size: 0;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won .ex-more {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: none;
  position: absolute;
  top: 50%; left: 68%;
  background: #fff url('../images/main/exper_plus.png') no-repeat 50% 50%;
  transition: all .5s;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide-active .won .ex-more {
  display: block;
  transition: all 0.3s;
  box-shadow: 0px 8px 20px 6px rgb(0 0 0 / 7%);
}
.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide-active .won .ex-more:hover {
  background: #0e95af url('../images/main/exper_plus_on.png') no-repeat 50% 50%;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won .ment {
  width: 320px;
  text-align: center;
  color: #222222;
  display: none;
  margin: 0 auto;
  /* font-size: 20px; */
  font: 400 20px "Poppins", "Noto Sans KR", sans-serif;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide .won .ment b {
  margin-bottom: -25px;
  display: block;
}

.wrap2 .box2 .slide-box .banner2 .swiper-wrapper .swiper-slide-active .won .ment {
  width: 320px;
  position: absolute;
  top: 78%; left: -20%; 
  display: block;
}

.banner2 .swiper-wrapper .swiper-slide-active {
  width: 390px !important;
  left: 0px;
  right: 0px; 
}

.banner2 .swiper-wrapper .swiper-slide-active .won .list img {
  width: 100%;
  transform: scale(2.16);
  display: block;
  box-shadow: 0px 8px 20px 6px rgb(0 0 0 / 7%);
}

.banner2 .swiper-wrapper .swiper-slide-next {
  right: -15px !important ;
}

.banner2 .swiper-wrapper .swiper-slide-next .won .list img {
  transform: scale(1);
}

.banner2 .swiper-wrapper .swiper-slide-prev {
  left: -60px !important ;
  margin-left: 50px !important;
}

.banner2 .swiper-wrapper .swiper-slide-prev .won .list img {
  transform: scale(1);
}


/* ---------------- 서비스 추천리스트 ------------------- */
.wrap2 .box3 {
  width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.wrap2 .box3 .text {
  width: 1300px;
  position: relative;
}

.wrap2 .box3 .text h3 {
  color: #222222;
  float: left;
  /* font-size: 28px; */
  font:  28px/28px "Saira", "Noto Sans KR", sans-serif;
  font-weight: 500;
}

.wrap2 .box3 .text a {
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff url('../images/main/more.png') no-repeat 55% 50%;
  display: block;
  float: right;
  margin-top: 10px;
  transition: all 0.2s;
}

.wrap2 .box3 .text a:hover {
  background: #008859 url('../images/main/more_on.png') no-repeat 55% 50%;
  border: 1px solid #008859;
}

.wrap2 .box3 .list {
  width: 100%;
}

.wrap2 .box3 .list .banner3 {
  width: 1300px;
  height: 400px;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper {
  background-color: #fff;
  box-shadow: 0px 8px 20px 6px rgb(0 0 0 / 7%);
  width: 100%;
  height: 250px;
  margin-top: 20px;
  border-radius: 5px;
  position: relative;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide {
  width: 260px;
  height: 250px;
  padding: 30px;
  background-color: #fff;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide::after {
  content: '';
  display: inline-block;
  width: 1px;
  background: #d9e7e4;
  height: calc(100% - 60px);
  position: absolute;
  top: 50%; right: 0%;
  transform: translateY(-50%);
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .top {
  width: 200px;
  height: 55px;
  display: flex;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .top img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  /* vertical-align: middle; */
  box-shadow: 1px 3px 7px 0px rgba(0,0,0,0.1);
  display: block;
  margin-bottom: 12px;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .top .tt a {
  width: 145px; 
  font-size: 18px;
  font-weight: 500;
  font-family: "Saira", "Noto Sans KR", sans-serif;
  color: #222;
  padding: 0px 0px 10px 12px;
  margin-top: 20px;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 46px;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .top .tt .ment {
 margin-top: 6px;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .tt:hover a {
  color: #008859;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .info {
  width: 200px;
  height: 75px;
  margin: 12px 0 13px;
  color: #2c503e;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Noto Sans KR',sans-serif;
  word-break: keep-all;
  word-wrap: break-word;
  display: -webkit-box;
  /* white-space: nowrap; */
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 75px;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .tag-botton {
  width: 200px;
  height: 35px;
  margin-top: 10px;
}

.wrap2 .box3 .list .banner3 .swiper-wrapper .swiper-slide .tag-botton span {
  width: 200px;
  height: 35px;
  color: #0E81A0;
  margin: 4px 4px 4px 0;
  padding: 3px 5px;
  border: 1px solid #0E81A0;
  border-radius: 5px;
  line-height: 35px;
  /* font-size: 14px; */
  font: 400 14px/22px "Saira","Noto Sans KR", sans-serif;
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 1140px;
  height: 3px;
  position: absolute;
  top: 68%; left: 0;
  display: inline-block;
  /* width: calc(100% - 160px); */
  border-radius: 10px;
  overflow: hidden;
  background-color: #f2f2f2;
  background-image: linear-gradient(to right, black, black);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .4s ease-in-out;
  margin-top: 40px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-image: linear-gradient(to right, black, black);
}

.wrap2 .box3 .list .banner3 .p-pagination3 {
  position: absolute;
  top: 68%; left: 0;
}


.wrap2 .box3 .list .banner3 .p-pagination3_n {
  width: 40px;
  height: 16px;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Saira', 'Noto Sans KR', sans-serif;
  text-align: center;
  position: absolute;
  top: 75%; left: 90%;
}

.wrap2 .box3 .list .banner3 .p-pagination3_n .swiper-pagination-current {
  color: #444;
}

.wrap2 .box3 .list .banner3 .p-b-prev {
  width: 9px;
  height: 16px;
  background: url('../images/main/exper_prev.png') no-repeat 50% 50%;
  display: block;
  position: absolute;
  top: 76%; right: 5%;
}

.wrap2 .box3 .list .banner3 .p-b-next {
  width: 9px;
  height: 16px;
  background: url('../images/main/exper_next.png') no-repeat 50% 50%;
  display: block;
  position: absolute;
  top: 76%; right: 3%;
}

.wrap2 .box3 .list .banner3 .control .play {
  width: 9px;
  height: 16px;
  background: url('../images/main/play.png') no-repeat 50% 50%;
  position: absolute;
  top: 76%; right: 0%;
  border: none;
}

.wrap2 .box3 .list .banner3 .control .play.b-p-start {
  background-image: url('../images/main/stop.png');
}


/* -------------------------------------- */
.wrap3 {
  display: flex;
  /* margin-top: 10px; */
  width: 100%;
}

.wrap3 .notice {
  width: 755px;
  padding-bottom: 120px;
  margin-left: 300px;
}

.wrap3 .notice .notice-top {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.wrap3 .notice .notice-top h2 {
  color: #222222;
  font-size: 28px;
  font-weight: 600;
  font-family: 'Poppins', 'Noto Sans KR', sans-serif;
  margin-bottom: 25px;
}

.wrap3 .notice .notice-top span {
  color: #0E81A0;
}

.wrap3 .notice .notice-top .more {
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff url('../images/main/more.png') no-repeat 53% 50%;
  margin-bottom: 25px;
  cursor: pointer;
}

.wrap3 .notice .notice-top .more:hover {
  width: 22px;
  height: 22px;
  background: #008859 url('../images/main/more_on.png') no-repeat 55% 50%;
  border: 1px solid #008859;
}

.wrap3 .notice .n-tap {
  width: 755px;
  /* column-gap: 60px; */
}

.wrap3 .notice .n-tap ul {
  display: flex;
  width: 100%;
  height: 46px;
  border-bottom: 4px solid #eee;
}

.wrap3 .notice .n-tap .n-top-line li {
  transform: translateY(3px);
}

.wrap3 .notice .n-tap ul li a {
  height: 43px;
  color: #888888;
  font: 400 20px/23px "Saira", "Noto Sans KR", sans-serif;
  /* font-size: 20px; */
  /* font-family: 'Saira', sans-serif; */
  padding: 5px 25px 10px;
  letter-spacing: -0.8px;
}

.wrap3 .notice .n-tap ul li a.c {
  color: #0E81A0;
}

.wrap3 .notice .n-tap .n-top-line{
  position: relative;
}

.wrap3 .notice .n-tap .n-top-line li.on {
  border-bottom: 4px solid #0E81A0;
  display: inline-block;
  border-radius: 2px;
}

.wrap3 .notice .notice-b {
  width: 755px;
  margin-top: 20px;
}

.wrap3 .notice .notice-b ul {
  width: 100%;
  height: 236px;
}

.wrap3 .notice .notice-b ul .info {
  width: 100%;
  height: 59px;  
  display: none;
}

.wrap3 .notice .notice-b .info.on {
  display: block;
}

.wrap3 .notice .notice-b ul .info ul li a {
  width: 100%;
  height: 59px;  
  color: #222222;
  font-size: 18px;
  font-family: 'Saira', "Noto Sans KR", sans-serif;
  font-weight: 400;
  display: flex;
  padding: 18px 12px;
  align-items: center; 
  position: relative;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wrap3 .notice .notice-b ul .info ul li:hover a {
  color: #008859;
}

.wrap3 .notice .notice-b ul .info ul li a::after {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 46%; left: 0%;
}

.wrap3 .notice .notice-b ul .info ul li span {
  /* font-size: 15px; */
  font: 400 15px "Saira", "Noto Sans KR", sans-serif;
  color: #666666;
  margin-left: auto;
}

.wrap3 .notice .notice-b ul .info ul li a .n {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Saira', "Noto Sans KR", sans-serif;
}

.wrap3 .notice .notice-b ul .info ul li a b {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #008859;
  border-radius: 50%;
  margin-left: 6px;
  margin-top: 4px;
}


/* /////////// mbti */
.wrap3 .mbti {
  width: 485px;
  margin-left: 60px;
  /* float: right; */
}

.wrap3 .mbti a {
  width: 485px;
  height: 350px;
  background: url('../images/main/main_ban01.jpg') no-repeat 50% / cover;
  display: block;
  border-radius: 10px;
  /* float: right; */
}


/* footer   /////////////////////////////////// */
.footer {
  width: 100%;
  height: 250px;
  background-color:#f6f6f6;
}

.footer .f-site {
  height: 62px;
  background-color: #fff;
  border: 1px solid #eee;
  margin: 0 auto;
}

.footer .f-site ul {
  display: flex;
  margin-left: 300px;
}

.footer .f-site ul li {
  position: relative;
}

.footer .f-site ul li a {
  font: 400 16px "Poppins", "Noto Sans KR", sans-serif;
  /* font-size: 16px; */
  color: #222222;
  line-height: 62px;
  margin-right: 30px; 
}

.footer .f-site ul li a::after {
  content: '';
  position: absolute;
  top: 46%; 
  left: 83%;
  width: 4px;
  height: 4px;
  background-color: #ccc;
  border-radius: 50%;
}

.footer .f-site ul li .color::after {
  position: absolute;
  top: 46%; 
  left: 90%;
}

.footer .f-site ul li:last-child a::after {
  background-color: #fff;
}
      
.footer .f-site ul li .color {
  color: #0E81A0;
}

.footer .f-site ul li .color:hover {
  text-decoration: underline;
}

.footer .f-site ul li a:hover {
  text-decoration: underline;
}

.footer .f-info {
  width: 1380px;
  color: #888;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Poppins', "Noto Sans KR", sans-serif;
  margin: 40px auto;
  position: relative;
  justify-content: space-between;
  padding: 0 40px;
}

.footer .f-info .add .info ul {
  margin: 5px 0px 5px 0px;
  display: flex;
}

.footer .f-info .add .info ul li::after {
  content: '';
  border: 1px solid #ddd;
  height: 10px;
  margin: 0px 8px;
  display: inline-block;
}

.footer .f-info .add .info ul li:last-child:after {
  border: none;
}

.footer .f-info .sns {
  width: 160px;
  height: 82px;
  display: flex;
  position: absolute;
  top: 0; right: 4%;
}

.footer .f-info .sns a {
  width: 32px;
  height: 32px;
  display: block;
  margin-left: 8px;
}

.footer .f-info .sns a:nth-child(1) {
  background: url('../images/comn/fb.png') no-repeat; 
}

.footer .f-info .sns a:nth-child(2) {
  background: url('../images/comn/yt.png') no-repeat; 
}

.footer .f-info .sns a:nth-child(3) {
  background: url('../images/comn/bg.png') no-repeat; 
}

.footer .f-info .sns a:nth-child(4) {
  background: url('../images/comn/in.png') no-repeat; 
}

.footer .f-info .web-logo {
  background: url('../images/comn/wa_mark.png') no-repeat;
  width: 91px;
  height: 66px;
  position: absolute;
  top: 55%; right: 4%;
}