@charset "utf-8";

/* 서비스_서브페이지 */

#scroll_navi {
  position: relative;
  z-index: 99;
}

#scroll_navi ul {
  position: fixed;
  right: 1%;
  bottom: 100px;
  /* background: #fff; */
  width: 200px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 20px;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

#scroll_navi ul.active {
  bottom: 180px;
  opacity: 1;
  pointer-events: auto;
}

#scroll_navi ul > li {
  position: relative;
  transition: 0.4s;
  background-color: #fff;
}
#scroll_navi ul > li:hover::before {
  position: absolute;
  content: "";
  border: 1px solid #ff4200;
  height: 100%;
}
#scroll_navi ul > li:hover {
  background-color: #f6f8fa;
}

.service_navi ul > li > a {
  display: block;
  font-weight: 400;
  color: #6e6e6e;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.service_navi ul li a > i {
  font-size: 22px;
  margin-right: 10px;
}

#scroll_navi ul > li > a:hover {
  color: #000;
}

#top_navi {
  margin-top: 50px;
}

#top_navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top_navi ul>li {
  width:16.66%
}

#top_navi ul>li>a {
  padding: 15px 0px;
  font-size: 18px;
  justify-content: center;
}

#top_navi ul>li>a:hover {
  background-color: #ff4200;
  color: #fff;
  transition: all 0.3s ease;
}

.navi_btn {
  position: fixed;
  bottom: 150px;
  right: 18px;
  width: 55px;
  height: 55px;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 26px;
  z-index: 999;
  background: #ff4200;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 20px;
}

.navi_btn i {
  transition: opacity 0.3s ease;
}

.navi_btn i.rotate {
  transform: rotate(180deg); /* 아이콘 회전 효과 */
}

@media screen and (max-width: 920px) {
  #top_navi {
    display: none;
  }
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.title_textBox {
  margin-bottom: 50px;
}

.title_textBox h2 {
  font-size: 36px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.title_textBox p {
  font-size: 17px;
  color: #6e6e6e;
  font-weight: 400;
}

/* section01 */

.section01 {
  width: 100%;
  padding: 100px 0 200px;
}

.section01_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section01_wrap .left {
  width: 67.5%;
  padding-top: 0%;
}

.section01_wrap .right {
  width: 30%;
  margin-top: -150px;
  position: relative;
}

.section01 .discover_button {
  margin-left: 0;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .section01_wrap .left {
    width: 100%;
  }

  .section01_wrap .right {
    width: 100%;
    margin-top: 20px;
  }
}

.section01 p {
  font-size: 17px;
  color: #6e6e6e;
  font-weight: 400;
  max-width: 630px;
  word-break: keep-all;
}

@media screen and (max-width: 768px) {
  .section01 .grid {
    width: calc(100% - 0px);
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
  .section01 {
    padding: 100px 0;
  }

  .section01 .grid .txt h2 {
    font-size: 27px;
  }
}

/* section01*/

/* section02 */
.section02 {
  padding: 130px 0px;
  text-align: center;
  overflow: hidden;
  background: url(../../images/sub/main_about_wrap_bg.webp) center top no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.section02 h2 {
  font-size: 36px;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 600;
}

.section02 p {
  font-size: 17px;
  color: #fff;
  opacity: 0.8;
  padding: 20px;
  word-break: keep-all;
  margin: 0 auto;
  line-height: 1.6;
}

/* section02 */

/* section03 */
.section03 {
  width: 100%;
  padding: 200px 0
}

.section03 .single-services {
  border: 1px solid #e3e3e3;
  padding: 44px 26px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  min-height: 415px;
}

.mb-30 {
  margin-bottom: 30px;
}

.single-services .services-ion {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  margin-bottom: 31px;
  line-height: 80px;
  text-align: center;
  box-shadow: 0px 15px 60px rgb(157 157 157 / 10%);
}

.single-services .services-ion img {
  width: 40px;
}

.single-services:hover {
  /* box-shadow: -10px 10px 76px rgb(73 73 73 / 12%) */
  background: #ff4200;
}

.single-services:hover h2,
.single-services:hover p {
  color: #fff;
}

.single-services .services-cap h3 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 10px;
  display: block;
  color: #333;
}
@media screen and (max-width: 576px) {
  .section03 .single-services {
    min-height: auto;
  }
}
/* section03 */

/* section04 */

.section04 {
  /* padding-top: 200px; */
}

.section04 .service_list ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section04 .service_list ul li {
  width: 25%;
  height: 793px;
  padding: 0 70px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  background-repeat: no-repeat;
}

.section04 .service_list ul li h3 {
  font-size: 28px;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.section04 .service_list ul li p {
  font-size: 17px;
  color: #fff;
  opacity: 0.8;
  font-weight: 500;
  word-break: keep-all;
  line-height: 1.6;
}

.section04 .service_list .img01 {
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../../images/sub/section04_img01.webp");
}

.section04 .service_list .img02 {
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../../images/sub/section04_img02.webp");
}

.section04 .service_list .img03 {
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../../images/sub/section04_img03.webp");
}

.section04 .service_list .img04 {
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("../../images/sub/section04_img04.webp");
}

@media screen and (max-width: 960px) {
  .section04 .service_list ul li {
    width: 50%;
    height: 393px;
  }
}

@media screen and (max-width: 768px) {
  .section04 .service_list ul li {
    width: 100%;
    padding: 0 20px 70px;
  }
}

/* section04 */

/* section05 */
.section05 {
  width: 100%;
  padding-top: 200px;
}

/* section05 */

/* section06 */
.tl_section06 {
  padding-top: 200px;
}
.tl_thumb_area_wrap {
  overflow: hidden;
  /* padding-bottom: 200px; */
}

.tl_thumb_area_wrap .thumb_box {
  width: 31.3333%;
  margin-right: 3%;
  display: block;
  float: left;
}

@media screen and (min-width: 961px) {
  .thumb_box:nth-child(3n+3) {
    margin-right: 0
  }
}

.tl_thumb_area_wrap .thumb_box .img {
  width: 100%;
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  clear: both;
  overflow: hidden;
  position: relative
}

.tl_thumb_area_wrap .thumb_box .photo01 {
  background-image: url(/theme/tlog-new/images/sub/thumb01.webp);
}

.tl_thumb_area_wrap .thumb_box .photo02 {
  background-image: url(/theme/tlog-new/images/sub/thumb02.webp);
}

.tl_thumb_area_wrap .thumb_box .photo03 {
  background-image: url(/theme/tlog-new/images/sub/thumb03.webp);
}

.tl_thumb_area_wrap .thumb_box .txt {
  width: 100%;
  padding: 40px 0 20px;
  text-align: left;
  clear: both
}

.tl_thumb_area_wrap .thumb_box .txt h3 {
  font-size: 24px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (max-width: 993px) {
  .tl_thumb_area_wrap .thumb_box {
    width: 49%;
    margin-right: 2%
  }

  .tl_thumb_area_wrap .thumb_box:nth-child(2n+2) {
    margin-right: 0
  }
}

@media screen and (max-width: 576px) {
  .tl_thumb_area_wrap {
    margin-top: 0px
  }

  .tl_thumb_area_wrap .thumb_box {
    width: 100%;
    margin-bottom: 5%;
    clear: both;
    float: none
  }
}

.section06 {
  width: 100%;
  padding: 150px 0px;
  text-align: center;
  overflow: hidden;
  background: url(/theme/tlog-new/images/main/main_board-.webp) center top
    no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  clear: both;
}

.section06 h2,
.section06 p {
  color: #fff;
}

.section06 ul {
  box-sizing: border-box;
  border: 14px solid rgba(255, 255, 255, 0.2);
  height: 240px;
  margin-top: 100px;
}

.section06 ul li {
  width: 25%;
  float: left;
  position: relative;
  border-right: 0;
}

.section06 ul li .num {
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  background: #ff4200;
  padding-top: 14px;
}

.section06 ul li .num span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  opacity: 1;
}

.section06 ul li dl {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 140px;
  margin-top: 35px;
  padding-top: 35px;
}

.section06 ul li:last-child dl {
  border-right: 0;
}

.section06 ul li dl dt {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.section06 ul li dl dd {
  font-size: 17px;
  color: #fff;
  opacity: 0.8;
  line-height: 1.6;
}

@media screen and (max-width: 976px) {
  .section06 ul {
    height: auto;
    overflow: hidden;
    margin-top: 6%;
  }

  .section06 ul li {
    width: 50%;
    padding: 4% 0;
  }

  .section06 ul li .num {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
  }

  .section06 ul li dl {
    border-right: 0;
    height: auto;
    margin-top: 3%;
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .section06 ul {
    border-width: 10px;
    padding: 4% 0;
  }

  .section06 ul li .num {
    width: 60px;
    height: 60px;
    padding-top: 16px;
    font-size: 8px;
  }

  .section06 ul li .num span {
    font-size: 22px;
  }
}

/* section06 */

/* section07 */
.section07 {
  width: 100%;
  padding: 200px 0;
}

.section07 .title_textBox p {
  max-width: 815px;
}

.equipment_area {
  display: flex;
  flex-wrap: wrap;
}

.equipment_area .equipment_warp {
  width: 60%;
}

.equipment_area .btn_navi {
  width: 38%;
  margin-left: 2%;
}

.equipment_area .btn_navi div {
  overflow: hidden;
}

.equipment_area .btn_navi div a {
  display: block;
  cursor: pointer;
  padding: 30px 25px;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
}

.equipment_area .btn_navi div a > h3 {
  font-size: 21px;
  margin-bottom: 25px;
}

.equipment_area .btn_navi div a.active {
  background: #ff4200;
  border: 1px solid #ff4200;
  box-shadow: 0px 0px 2px rgba(75, 81, 91, 0.1),
    0px 2px 20px rgba(75, 81, 91, 0.14);
}

.equipment_area .btn_navi div a.active > h3,
.equipment_area .btn_navi div a.active > p {
  color: #fff;
}

.equipment_area .slide li {
  overflow: hidden;
  cursor: pointer;
}

.equipment_area .slide li .box {
}

.equipment_area .slide li img {
  display: block;
  width: 100% !important;
  border: 1px solid #e3e3e3;
}

.equipment_area .slide .owl-dots {
  display: none;
}

.equipment_area .slide .owl-nav {
  position: absolute;
  width: 100%;
  top: 30px;
}

.equipment_area .slide .owl-nav .owl-prev,
.equipment_area .slide .owl-nav .owl-next {
  display: none;
}

@media screen and (max-width: 991px) {
  .equipment_area .equipment_warp {
    width: 100%;
  }

  .equipment_area .btn_navi {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

/* section07 */

.review {
  padding: 200px 0;
  background-color: #f6f8fa;
}

.review .title_textBox h2 {
  text-align: center;
}

.slide_box {
  width: 460px;
  height: 360px;
  padding: 30px;
  /* border: 1px solid #EFEFEF;
    box-shadow: 0px 0px 2px rgba(75, 81, 91, 0.1), 0px 2px 20px rgba(75, 81, 91, 0.14); */
  background-color: #fff;
}

.slide_box > h3 {
  font-size: 21px;
  margin-top: 10px;
}

.slide_box .star_img {
  text-align: right;
}

.flow_banner {
  display: flex;
}

.flow_banner .list {
  display: flex;
}

.flow_banner .list > li {
  padding: 20px;
}

.flow_banner .list > li p {
  font-size: 17px;
  margin-top: 30px;
  height: 180px;
}

@keyframes flowRolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1280px) {
  .flow_banner .list > li {
    font-size: 16px;
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .flow_banner .list > li {
    font-size: 14px;
    padding: 5px;
  }
}

/* section08 */
.section08 {
  width: 100%;
  padding: 200px 0 150px 0;
}

.section08 .single-card {
  background: #ffff;
  padding: 70px 0px;
  border: 1px solid #e3e3e3;
}

.section08 .single-card .card-top {
  padding: 0 26px;
  margin-bottom: 20px;
}

.section08 .single-card .card-top .icon_wrap {
  width: 45px;
  height: 45px;
  margin: 0 auto 20px;
}

.section08 .single-card .card-top p {
  font-size: 15px;
  margin-bottom: 8px;
}

.section08 .single-card .card-top h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.section08 .single-card .card-mid {
  margin-bottom: 25px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e7e6eb;
}

.section08 .single-card .card-mid h4 {
  font-size: 38px;
  font-weight: 600;
}

.section08 .single-card .card-mid h4 span {
  color: #838a9b;
  font-size: 17px;
  font-weight: 400;
}

.section08 .single-card .card-bottom ul {
  text-align: left;
  padding: 0 30px;
}

.section08 .single-card .card-bottom ul li {
  color: #717081;
  font-weight: 300;
  margin-bottom: 23px;
  font-size: 17px;
}

.section08 .single-card .card-bottom ul li:last-child {
  margin-bottom: 46px;
}


 .section09 { max-width: 1400px; margin: 150px auto}
 .section09 .container-box {
    max-width: 1400px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 60px;
    box-sizing: border-box;
    background-color: #f2f2f2 
    }
.section09 h2 {
   font-size: 36px;
   margin-bottom: 10px;
    font-weight: bold
}
.section09 p {
    font-size: 18px;
    color: #666;
    font-weight: 500
}
.section09 ul {
    list-style-type: none;
    padding: 0;
}
.section09 li {
    padding-left: 20px;
    position: relative;
}
.section09 li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}
.section09 .highlight {
    color: #e74c3c;
}
.section09 .button-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0 auto
}
.section09 .button {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: inherit;
    font-weight: bold;
    background-color: transparent
}
.section09 .inquiry {
    color: #333;
    height: inherit;
    padding: 0;
    font-size: 20px;
    font-weight: 900
}
.section09 .terms {
    color: #333;
    font-size: 20px;
    font-weight: 900;
    text-decoration: underline;
    text-align: right;
    margin-top: 50px;
    display: block

}

.section09 .list { font-weight: bold; font-size: 20px; margin-bottom: 10px}



.container-box { max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; gap: 20px; flex-wrap: wrap; }
.license { flex: 1; padding: 30px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.license h2 { font-size: 24px; margin-bottom: 15px; color: #333; }
.license p { color: #666; margin-bottom: 20px; line-height: 1.6; }

@media screen and (max-width: 767px) {
  .section09 .container-box {padding:20px}
  .license { flex: 1 1 100%; }
}


.tl_pop_con{background:#fff;} 
.tl_pop_con h2.f_pop_tit{width:100%;height:80px;line-height:80px;background:#076aa3;font-size:20px;color:#fff;}
.tl_pop_con h2.f_pop_tit img {display:inline-block;margin-left:50px;margin-right:5px;margin-top:-10px;width:120px;}
.tl_pop_con h2.f_pop_tit span {display:inline-block; padding-left:50px;}
.f_pop_wrap {line-height:23px;text-align:justify;word-break:break-all;font-size:15px;overflow-y:auto;}
.f_pop_wrap h3 {color: rgb(0, 131, 185); font-weight: bold; margin: 10px 0;}
.f_pop_wrap h3:first-child {margin-top: 0;}
.f_pop_wrap strong {color:#00a19a;font-weight:normal;}
.f_pop_wrap p { color:#333;  line-height:1.6;}
#terms_bpopup_form .button {width:40px; height: 40px;}
.mfp-close:after { content: ''; display: block; width: 22px; height: 22px; position: absolute; top: 9px; left: 9px; background: url("./../../img/btn_close_w.png") no-repeat center center; -webkit-transition: -webkit-transform 400ms; transition: -webkit-transform 400ms; transition: transform 400ms; transition: transform 400ms, -webkit-transform 400ms; border-radius: 50%; z-index: 2 }
#tl_quick .mfp-close:after {background: url("../img/btn_close.png") no-repeat center center;}
.mfp-close { width: 40px; height: 40px; text-indent: -999px;opacity: 1; overflow: hidden; background-color:transparent; border:0; }
button.mfp-close:hover:after { -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); }

