@charset "utf-8";

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

.page-section{
  width: 100%;
  margin-bottom: 100px;
}

.success-con{
  width: 100%;
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid #3e4c59;
}
.success-con > h3{
  font-size: 30px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
}
.success-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.success-box{
  display: block;
  width: 24%;
  padding: 30px 20px;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  transition: .3s;
}
.success-box > span{
  display: inline-block;
  min-width: 100px;
  padding: 10px;
  border-radius: 30px;
  background-color: #017ad4;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: .3s;
  margin-bottom: 30px;
}
.success-box > h3{
  font-size: 20px;
  color: #121212;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: .3s;
}
.success-box > p{
  font-size: 13px;
  color: #121212;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: .3s;
}
.success-box > h5{
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  padding: 7px 15px;
  color: #fff;
  transition: .3s;
  margin-top: 5px;
  background-color: #017ad4;
}
.success-box:hover{
  background-color: #017ad4;
}
.success-box:hover > span{
  background-color: #fff;
  color: #000;
}
.success-box:hover > h3, .success-box:hover > p{
  color: #fff;
}
.success-box:hover > h5{
  background-color: #fff;
  color: #000;
}
@media(max-width:1199px){
  .success-con{
    padding-top: 30px;
    margin-top: 40px;
  }
  .success-con > h3{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .success-wrap{
    flex-direction: column;
  }
  .success-box{
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
  }
  .success-box > span{
    margin-bottom: 1rem;
  }
  .success-box > h3{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .success-box > p{
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .success-box > h5{
    padding: 7px 10px 5px;
  }

}

.banner{
  width: 100%;
  height: 530px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner::after{
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-caption{
  width: 100%;
  padding: 0 55px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.banner-caption > h5{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.banner-caption > h3{
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 1rem;
}
.banner-caption > p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.banner-caption > p > span{
  font-weight: 700;
}
@media(max-width:1199px){
  .banner{
    height: 330px;
  }
  .banner::after{
    width: 100%;
    height: 55%;
    background: linear-gradient(1800deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0.00) 100%);
    top: auto;
    bottom: 0;
  }
  .banner-caption{
    padding: 15px;
    transform: translateY(0);
    top: auto;
    bottom: 0;
  }
  .banner-caption > h5{
    font-size: 13px;
    margin-bottom: 10px;
  }
  .banner-caption > h3{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .banner-caption > p{
    font-size: 16px;
    line-height: 1.4;
  }
}

.page-tit{
  width: 100%;
  padding: 90px 15px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(107deg, var(--color-grey-98, #F8F9FA) 0%, var(--color-white-solid, #FFF) 100%);
  margin-bottom: 1.5rem;
}
.page-tit.last{
  padding: 80px 40px;
  text-align: left;
  margin-bottom: 0;
}
.page-tit::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-azure-42, #0078D4) 0%, var(--color-cyan-56, #40E0D0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.page-tit > h3{
  font-size: 45px;
  color: #323130;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.page-tit.last > h3{
  font-size: 30px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 3rem;
}
.page-tit > h5{
  color: #0078D4;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.page-tit > h5::after{
  content: "";
  width: 100px;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.page-tit > p{
  color: #605e5c;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.page-tit > p > span{
  font-weight: 700;
}
.page-tit.last > p{
  line-height: 1.8;
}
.page-tit.last > p > span{
  display: inline-block;
  background: linear-gradient(93deg, #0078D4 0%, #40E0D0 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}

span.light{
  display: inline-block;
  background: linear-gradient(93deg, #0078D4 0%, #40E0D0 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}

.cont-tit{
  width: 100%;
  margin-bottom: 1.5rem;
}
.cont-tit.flex{
  display: flex;
  align-items: center;
}
.cont-tit > h3{
  font-size: 30px;
  font-weight: 700;
  color: #323130;
}
.cont-tit > p{
  font-size: 16px;
  color: #605e5c;
  font-weight: 400;
  margin-top: 1rem;
}
.cont-tit.flex > p{
  margin-top: 0;
  margin-left: 1rem;
}

.cont-bg{
  width: 100%;
  border-radius: 16px;
  padding: 60px 40px;
  background-color: rgba(0, 120, 212, 0.05);
  margin-bottom: 30px;
}
.cont-bg.mint{
  background-color: rgba(64, 224, 208, 0.10);
}
.cont-bg > h5{
  font-size: 20px;
  font-weight: 700;
  color: #0078D4;
  margin-bottom: 30px;
  text-align: center;
}

.icon-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.icon-wrap.row3 > .icon-box{
  width: calc((100% - 50px) / 3);
}
.icon-wrap.row4 > .icon-box{
  width: calc((100% - 75px) / 4);
}
.icon-wrap.row5 > .icon-box{
  width: calc((100% - 100px) / 5);
}
.icon-box{
  width: calc((100% - 25px) / 2);
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 120, 212, 0.10);
  transition: .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.icon-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  transition: .3s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ib-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F3F2F1 0%, #E1DFDD 100%);
  transition: .3s;
  margin-bottom: 20px;
}
.ib-icon > span{
  color: #0078D4;
  font-size: 28px;
  line-height: 1;
  transition: .3s;
}
.icon-box > span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F3F2F1 0%, #E1DFDD 100%);
  margin-bottom: 20px;
  transition: .3s;
}
.icon-box > span > svg{
  transition: .3s;
  fill: #0078D4;
  width: 28px;
  height: 28px;
}
.icon-box > span.num{
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #40E0D0 0%, #0078D4 100%);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.icon-box > h5{
  font-size: 16px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 1rem;
}
.icon-box > p{
  color: #323130;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.icon-box > p:last-child{
  margin-bottom: 0;
}
.icon-box:hover{
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.2);
  transform: translateY(-2px);
}
.icon-box:hover::before{
  width: 100%;
}
.icon-box:hover > span{
  background:linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
}
.icon-box:hover > .ib-icon{
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
}
.icon-box:hover > .ib-icon > span{
  color: #fff;
}
.icon-box:hover > span.num{
  transform: scale(1.05);
  background: linear-gradient(135deg, #40E0D0 0%, #0078D4 100%);
}
.icon-box:hover > span > svg{
  fill: #fff;
}

.caption-bg{
  width: 100%;
  background: linear-gradient(103deg, rgba(248, 249, 250, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%);
  backdrop-filter: blur(5px);
  padding: 70px 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 120, 212, 0.1);
  margin-bottom: 30px;
}
.caption-bg::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.caption-wrap{
  width: 100%;
}
.caption-box{
  width: 100%;
  padding: 40px 30px 30px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0, 120, 212, 0.10);
  position: relative;
  transition: .3s;
}
.caption-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s ease;
}
.caption-box > span{
  display: flex;
  width: 40px;
  height: 40px;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
  box-shadow: 0 4px 12px 0 rgba(0, 120, 212, 0.30);
  position: absolute;
  left: 25px;
  top: -20px;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}
.caption-box > h5{
  font-size: 20px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 1rem;
}
.caption-box > p{
  color: #323130;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.caption-box > p > span{
  display: inline-block;
  background: linear-gradient(93deg, #0078D4 0%, #40E0D0 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}
.caption-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
  border-color: rgba(0, 120, 212, 0.2);
}
.caption-box:hover::before{
  width: 100%;
}

.wn-caption{
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  background-color: rgba(255, 87, 87, 0.10);
  border-left: 4px solid #ff5757;
}
.wn-caption.bl{
  background-color: rgba(0, 120, 212, 0.10);
  border-left: 4px solid #0078D4;
  margin-bottom: 30px;
}
.wn-caption.bl > h5{
  font-size: 14px;
  color: #000;
  font-weight: 700;
}
.wn-caption.bl > h3{
  font-size: 16px;
  color: #0078D4;
  font-weight: 700;
  margin-bottom: 20px;
}
.wn-caption.bl > p{
  font-size: 16px;
  color: #323130;
  font-weight: 400;
  line-height: 1.8;
}
.wn-caption > ul > li{
  font-size: 16px;
  font-weight: 500;
  color: #323130;
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
  line-height: 1.6;
}
.wn-caption > ul > li > span{
  font-weight: 800;
}
.wn-caption > ul > li:last-child{
  margin-bottom: 0;
}
.wn-caption > ul > li::before{
  content: "";
  width: 3px;
  height: 3px;
  background-color: #323130;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
}

.ir-wrap{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.ir-box{
  width: 49%;
  background-color: #fff;
  border: 1px solid #e1dfdd;
  border-radius: 8px;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.ir-box::before{
  content: "";
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s ease;
}
.ir-box > span{
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: #f3f2f1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-right: 1rem;
}
.ir-box > span > svg{
  width: 24px;
  height: 24px;
  fill: #0078D4;
  transition: .3s;
}
.ir-box > h5{
  font-size: 18px;
  color: #323130;
  font-weight: 600;
  margin-right: 1rem;
}
.ir-box > p{
  font-size: 14px;
  color: #605e5c;
  font-weight: 400;
}
.ir-box:hover{
  border-color: #0078D4;
  box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
  transform: translateY(-2px);
}
.ir-box:hover > span{
  background-color: #0078D4;
}
.ir-box:hover > span > svg{
  fill: #fff;
}
.ir-box:hover::before{
  width: 100%;
}

.tab_tit{
  width: 100%;
  margin-bottom: 100px;
}
.tab_tit > ul{
  width: 100%;
  display: flex;
}
.tab_tit > ul > li{
  flex: 0 0 auto;
  width: 50%;
  padding: 30px 15px;
  background-color: #ebf2f8;
  font-size: 20px;
  color: #323130;
  font-weight: 700;
  text-align: center;
  transition: .3s;
  cursor: pointer;
  border: 1px solid #ebf2f8;
}
.tab_tit > ul > li.on{
  background-color: #0885d4;
  color: #fff;
  border-color: rgba(0, 120, 212, 0.3);
}
.tab_tit > ul > li:hover{
  border: 1px solid rgba(0, 120, 212, 0.3);
}
.tab_tit > ul > li.on:hover{
  border-color: #0885d4;
}
.tab{
  display: none;
}
.tab:first-child{
  display: block;
}

.il-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.il-wrap.row3 > .il-box{
  width: calc((100% - 40px) / 3);
}
.il-wrap.row7 > .il-box{
  width: calc((100% - 120px) / 7);
}
.il-box{
  width: calc((100% - 60px) / 4);
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #e1dfdd;
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.il-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  transition: .3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.il-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0078D4 0%, #40E0D0 100%);
  margin-bottom: 20px;
  transition: .3s;
}
.il-icon > span{
  transition: .3s;
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.il-box > h5{
  font-size: 18px;
  color: #323130;
  font-weight: 700;
  line-height: 1.4;
}
.il-box > ul{
  margin-top: 1rem;
}
.il-box > ul > li{
  font-size: 15px;
  font-weight: 400;
  color: #605e5c;
  padding-left: 10px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4; 
}
.il-box > ul > li:last-child{
  margin-bottom: 0;
}
.il-box > ul > li::before{
  width: 3px;
  height: 3px;
  content: "";
  background-color: #605e5c;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.il-box:hover{
  border-color: #0078D4;
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
  transform: translateY(-4px);
}
.il-box:hover::before{
  width: 100%;
}
.il-box:hover > .il-icon{
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
}

.bl-caption{
  width: 100%;
  border-radius: 16px;
  background-color: #ebf2f8;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}
.bl-caption.white{
  background-color: #fff;
  border: 1px solid #e1dfdd;
}
.bl-caption.grey{
  background: linear-gradient(124deg, rgba(248, 249, 250, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%);
  border: 1px solid rgba(0, 120, 212, 0.10);
  backdrop-filter: blur(5px);
}
.bl-caption.center{
  background-color: #f8f9fa;
  text-align: center;
}
.bl-caption.line::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078D4 0%, #40E0D0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.bl-caption > h3{
  font-size: 30px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}
.bl-caption.grey > h3{
  text-align: center;
  margin-bottom: 55px;
}
.bl-caption > p{
  font-size: 18px;
  color: #323130;
  font-weight: 400;
  line-height: 1.8;
}
.bl-caption > p > span{
  color: #40E0D0;
}

.qa-bg{
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e1dfdd;
  transition: .3s;
  padding-top: 4px;
}
.qa-bg::before{
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0078D4 0%, #40E0D0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.qa-tit{
  width: 100%;
  padding: 50px 30px;
  background-color: rgba(0, 120, 212, 0.05);
  border-bottom: 1px solid rgba(0, 120, 212, 0.10);
}
.qa-tit > h3{
  font-size: 20px;
  color: #323130;
  font-weight: 700;
}
.qa-cont{
  width: 100%;
  padding: 40px 30px;
  background-color: #fff;
}
.qa-cont > h5{
  font-size: 16px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 120, 212, 0.20);
}
.qa-caption{
  width: 100%;
  margin-bottom: 30px;
}
.qa-caption:last-child{
  margin-bottom: 0;
}
.qa-caption > p{
  font-size: 16px;
  color: #323130;
  font-weight: 400;
  line-height: 1.8;
}
.qa-caption > p > span{
  color: #0078D4;
  font-weight: 600;
}
.qa-caption > p > b{
  font-weight: 700;
}
.qa-bg:hover{
  border-color: #0078D4;
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
  transform: translateY(-2px);
}

.ps-bg{
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background-color: rgba(0, 120, 212, 0.05);
}
.ps-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ps-wrap.row3 .ps-box{
  width: calc((100% - 40px) / 3);
}
.ps-box{
  width: calc((100% - 20px) / 2);
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 120, 212, 0.10);
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.ps-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.ps-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.2);
}
.ps-box:hover::before{
  width: 100%;
}
.ps-box > span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078D4 0%, #40E0D0 100%);
  transition: .3s;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.ps-box:hover > span{
  box-shadow: 0 6px 16px 0 rgba(0, 120, 212, 0.40);
  transform: scale(1.1);
}
.ps-box > h5{
  font-size: 18px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 20px;
}
.ps-box > ul > li{
  font-size: 15px;
  color: #605e5c;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
}
.ps-box > ul > li::before{
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #605e5c;
  position: absolute;
  top: 7px;
  left: 0;
}
.ps-box > ul > li:last-child{
  margin-bottom: 0;
}
.ps-box > p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #323130;
}

.bc-wrap{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.bc-wrap.row2 .bc-box{
  width: calc((100% - 30px) / 2);
}
.bc-box{
  width: calc((100% - 60px) / 3);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0, 120, 212, 0.10);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2.5px);
  padding: 60px 30px 30px;
  position: relative;
  transition: .3s;
}
.bc-box::before{
  content: "";
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4 0%, #40e0d0 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s ease;
}
.bc-box > span{
  border-radius: 50%;
  background: linear-gradient(135deg, #0078D4 0%, #40E0D0 100%);
  box-shadow: 0 4px 12px 0 rgba(0, 120, 212, 0.30);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: -20px;
  left: 25px;
}
.bc-box > h5{
  font-size: 20px;
  color: #323130;
  font-weight: 700;
  margin-bottom: 20px;
}
.bc-box > p{
  font-size: 16px;
  color: #323130;
  font-weight: 400;
  line-height: 1.6;
}
.bc-box > ul > li{
  font-size: 15px;
  color: #605e5c;
  font-weight: 400;
  padding-left: 10px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4;
}
.bc-box > ul > li::before{
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #605e5c;
  position: absolute;
  top: 9px;
  left: 0;
}
.bc-box > ul > li:last-child{
  margin-bottom: 0;
}
.bc-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
  border-color: rgba(0, 120, 212, 0.2);
}
.bc-box:hover::before{
  width: 100%;
}

.grey-caption{
  width: 100%;
  padding: 80px 60px;
  border-radius: 16px;
  background-color: #f8f9fa;
}
.grey-caption > p{
  font-size: 18px;
  color: #323130;
  font-weight: 400;
  line-height: 1.8;
}

/* 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;
  }

  .success-box > h3{
    min-height: 56px;
  }
}

@media(max-width:1199px){
  .d-block{display: block;}
  .d-none{display: none;}

  .page-section{
    margin-bottom: 70px;
  }
  .page-tit{
    padding: 50px 15px;
  }
  .page-tit > h3{
    font-size: 24px;
  }
  .page-tit > h5{
    font-size: 18px;
  }
  .page-tit > p{
    font-size: 16px;
  }

  .cont-tit > h3{
    font-size: 20px;
  }
  .cont-tit > p{
    font-size: 14px;
  }

  .cont-bg{
    padding: 30px 20px;
  }
  .cont-bg > h5{
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .icon-wrap{
    gap: 15px;
  }
  .icon-box{
    width: 100%;
    padding: 20px;
  }
  .icon-box > span{
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }
  .icon-box > span > svg{
    width: 22px;
    height: 22px;
  }
  .icon-box > h5{
    margin-bottom: 10px;
  }
  .icon-box > p{
    font-size: 13px;
  }
  .icon-wrap.row3 > .icon-box{
    width: 100%;
  }
  .icon-wrap.row4 > .icon-box{
    width: 100%;
  }
  .icon-wrap.row5 > .icon-box{
    width: 100%;
  }
  .icon-box > span.num{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .caption-bg{
    padding: 50px 15px;
  }
  .caption-box{
    padding: 40px 20px 30px;
  }
  .caption-box > h5{
    font-size: 16px;
  }
  .caption-box > p{
    font-size: 13px;
  }
  .wn-caption{
    padding: 20px;
  }
  .wn-caption > ul > li{
    font-size: 13px;
    margin-bottom: 10px;
    padding-left: 7px;
  }
  .wn-caption > ul > li::before{
    top: 7px;
  }

  .page-tit.last{
    padding: 40px 15px;
  }
  .page-tit.last > h3{
    font-size: 20px;
    margin-bottom: 1.5rem;
  }
  .page-tit.last > p{
    font-size: 14px;
    line-height: 1.6;
  }

  .ir-wrap{
    flex-direction: column;
  }
  .ir-box{
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .ir-box > span{
    width: 44px;
    height: 44px;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .ir-box > span > svg{
    width: 20px;
    height: 20px;
  }
  .ir-box > h5{
    font-size: 16px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .ir-box > p{
    font-size: 13px;
  }

  .tab_tit{
    margin-bottom: 50px;
  }
  .tab_tit > ul > li{
    padding: 15px 5px;
    font-size: 16px;
  }
  .il-wrap{
    gap: 10px;
  }
  .il-box{
    width: 100%;
    padding: 20px;
  }
  .il-icon{
    width: 50px;
    height: 50px;
  }
  .il-box > ul > li{
    font-size: 13px;
    margin-bottom: 5px;
  }
  .il-icon > span{
    font-size: 20px;
  }

  .bl-caption{
    padding: 50px 30px;
  }
  .bl-caption > h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .bl-caption > p{
    font-size: 15px;
    line-height: 1.6;
  }

  .qa-tit{
    padding: 20px;
  }
  .qa-tit > h3{
    font-size: 16px;
  }
  .qa-cont{
    padding: 20px;
  }
  .qa-cont > h5{
    font-size: 14px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .qa-caption > p{
    font-size: 13px;
    line-height: 1.4;
  }
  .wn-caption.bl > h3{
    margin-bottom: 1rem;
  }
  .wn-caption.bl > p{
    font-size: 13px;
    line-height: 1.6;
  }

  .ps-bg{
    padding: 20px;
  }
  .ps-wrap{
    gap: 10px;
  }
  .ps-box{
    width: 100%;
    padding: 20px;
  }
  .ps-box > span{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .ps-box > h5{
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .ps-box > ul > li{
    font-size: 13px;
  }

  .bl-caption.grey > h3{
    margin-bottom: 35px;
  }
  .bc-box{
    width: 100%;
    padding: 35px 20px 20px;
  }
  .bc-box > h5{
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .bc-box > p{
    font-size: 13px;
    line-height: 1.4;
  }

  .grey-caption{
    padding: 30px 20px;
  }
  .grey-caption > p{
    font-size: 15px;
    line-height: 1.6;
  }
  .il-wrap.row3 > .il-box{
    width: 100%;
  }
  .il-wrap.row7 > .il-box{
    width: 100%;
  }
  .cont-tit.flex{
    align-items: flex-start;
    flex-direction: column;
  }
  .cont-tit.flex > p{
    margin-top: 10px;
    margin-left: 0;
  }
  .bc-wrap.row2 .bc-box{
    width: 100%;
  }
  .ps-wrap.row3 .ps-box{
    width: 100%;
  }
}
@media(max-width:600px){
  h2, h3, h5{
    line-height: 1.4;
  }
  p, li{
    line-height: 1.4;
  }
}

/* animation */

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

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