@font-face {
  font-family: Pretendard;
  src: url("../../font/Pretendard-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url("../../font/Pretendard-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url("../../font/Pretendard-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url("../../font/Pretendard-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url("../../font/Pretendard-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard-400;
  src: url("../../font/Pretendard-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard-500;
  src: url("../../font/Pretendard-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard-600;
  src: url("../../font/Pretendard-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard-700;
  src: url("../../font/Pretendard-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --header-height: 100px;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  border: 0px;
  color: rgb(0, 18, 33);
  line-height: 1.2;
  list-style: none;
  font-family: 'Pretendard';
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #DEDEDE;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

  html {
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: auto;
  }

  body {
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: visible;
  }
  
body {
  width: 100%;
  position: relative;
  font-family: Pretendard, sans-serif;
  font-weight: 400;
  text-size-adjust: none;
  font-size: 15px;

}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  background: none;
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

address {
  font-style: normal;
}

.notScroll {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}

.MgT0 {
  margin-top: 0px !important;
}

.MgT13 {
  margin-top: 13px !important;
}

.header {
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1740px;
  padding: 0 20px;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transform: translateX(-50%);
  transition: 0.5s;
}

.header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header .logo {
  width: 326px;
  height: 22px;
}

.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gnb {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 50px;
  text-align: center;
}

.gnb>li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.gnb>li::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0px;
  height: 4px;
  background-color: rgb(51, 66, 184);
  content: "";
  transform: translateX(-50%);
  transition: 0.5s;
}

.gnb>li:hover::after,
.gnb>li.is-open::after {
  width: 100%;
}

.gnb>li>a {
  display: flex;
  align-items: center;
  height: 100%;
  color: rgb(53, 53, 53);
  font-size: 19px;
  letter-spacing: -0.9px;
  transition: 0.5s;
  font-weight: 600;
}

.lnb {
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: flex;
  align-items: center;
  width: max-content;
  height: 100px;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 100%);
  transition: opacity 0.25s, visibility 0.25s;
}

.gnb>li.gnb_admin .lnb {
  left: calc(50% - 130px);
}

.gnb>li:hover .lnb,
.gnb>li:focus-within .lnb,
.gnb>li.is-open .lnb {
  opacity: 1;
  visibility: visible;
}

.lnb>li>a {
  color: rgb(51, 51, 51);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.38px;
}

.lnb>li>a:hover {
  color: rgb(51, 66, 184);
}

.lnb_bg {
  position: absolute;
  top: var(--header-height);
  z-index: 20;
  display: none;
  width: 100%;
  height: 100px;
  background-color: rgb(255, 255, 255);
}

.lnb_bg.is-open {
  display: block;
}

.header_btn {
  display: flex;
  align-items: center;
  gap: 42px;
  filter: invert(0);
  transition: 0.5s;
}

.header_btn>button:first-child,
.header_btn>button:first-child a {
  display: flex;
  align-items: center;
}

.header_btn>button:first-child a {
  gap: 12px;
}

.header_btn>button:first-child img {
  width: 20px;
  height: 20px;
}

.header_btn>button:first-child span {
  color: rgb(55, 58, 61);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.34px;
}

.allMenu_btn {
  display: flex;
  width: 38px;
  height: 24px;
  align-items: center;
  justify-content: space-between;
}

.allMenu_btn span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(0, 18, 33);
}

.allMenu_btn span:first-child {
  background-color: rgb(32, 77, 189);
}

.header.header--hover {
  border-bottom: 1px solid rgb(239, 239, 239);
  background-color: rgb(255, 255, 255);
}

.header:has(.gnb > li:hover),
.header:has(.gnb > li:focus-within) {
  border-bottom: 1px solid rgb(239, 239, 239);
  background-color: rgb(255, 255, 255);
}

.header.header--hover .gnb>li>a,
.header:has(.gnb > li:hover) .gnb>li>a,
.header:has(.gnb > li:focus-within) .gnb>li>a {
  color: rgb(34, 34, 34);
}

.header.header--hover .header_btn,
.header:has(.gnb > li:hover) .header_btn,
.header:has(.gnb > li:focus-within) .header_btn {
  filter: none;
}

.m_gnb_close span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.m_gnb_wrap {
  --m-gnb-inner-width: min(1700px, calc(100vw - 80px));
  --m-gnb-gutter: calc((100vw - var(--m-gnb-inner-width)) / 2);
  position: fixed;
  z-index: 999;
  inset: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0px, -100%, 0px);
  will-change: transform, opacity;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.42s, visibility linear 0.42s;
}

.m_gnb_wrap.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0px, 0px, 0px);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.42s, visibility;
}

.m_gnb_inner {
  display: flex;
  width: var(--m-gnb-inner-width);
  height: 100%;
  margin: 0px auto;
}

.m_gnb_visual {
  flex: 0 0 calc(23% + var(--m-gnb-gutter));
  width: calc(23% + var(--m-gnb-gutter));
  margin-left: calc(var(--m-gnb-gutter) * -1);
  min-width: 0px;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(2, 9, 22);
}

.m_gnb_visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.m_gnb_panel {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  min-width: 0px;
  height: 100vh;
  overflow-y: auto;
}

.m_gnb_wrap .m_gnb_top {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.m_gnb_close {
  position: absolute;
  top: calc((var(--header-height) - 72px) / 2);
  right: 10px;
  width: 72px;
  height: 72px;
}

.m_gnb_close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 30px;
  background-color: rgb(74, 74, 74);
}

.m_gnb_close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.m_gnb_close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m_gnb_wrap .m_login_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 104px;
  height: 42px;
  margin: 33px 0px 0px 106px;
  padding: 0px 18px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 21px;
  background-color: rgb(255, 255, 255);
  color: rgb(55, 58, 61);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.34px;
}

.m_gnb_wrap .m_login_btn img {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.m_gnb_wrap .m_login_btn.is-logout img {
  width: 24px;
  height: 24px;
}

.m_gnb_wrap .m_login_btn span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.m_gnb_content {
  width: min(1180px, 100% - 160px);
  margin: 0px auto;
  padding: 150px 26px 92px;
}

.m_gnb_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
}

.m_gnb_kicker {
  color: rgb(34, 34, 34);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.84px;
}

.m_gnb_title {
  margin-top: 18px;
  color: rgb(23, 23, 23);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -1.92px;
}

.m_gnb_title strong {
  font-size: 50px;
  font-weight: 700;
}

.m_gnb_title span {
  font-size: 50px;
  font-weight: 300;
}

.m_gnb_word {
  margin-top: 12px;
}

.m_gnb_word img {
  display: block;
  width: 100%;
}

.m_gnb_nav {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgb(0, 0, 0);
}

.m_gnb_menu {
  display: grid;
  grid-template-columns: 260px minmax(0px, 1fr);
  align-items: start;
  gap: 36px;
  padding: 25px 0px;
  border-top: 1px solid rgb(221, 221, 221);
}

.m_gnb_menu:first-child {
  border-color: rgb(0, 0, 0);
}


.m_gnb_depth1 {
  display: block;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.66px;
}

.m_gnb_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  min-width: 0px;
}

.m_gnb_menu ul a {
  color: rgb(16, 16, 16);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.54px;
  padding-top: 2px;
}

.m_gnb_menu ul a:hover,
.m_gnb_menu ul a:focus-visible {
  color: rgb(32, 77, 189);
  outline: none;
  font-weight: 600;
}

.main_placeholder {
  min-height: 520px;
  padding-top: var(--header-height);
  background: linear-gradient(120deg, rgb(21, 21, 21), rgb(51, 66, 184));
}

.main_placeholder_inner {
  display: flex;
  align-items: center;
  width: 1280px;
  min-height: 520px;
  margin: 0px auto;
}

.main_placeholder h1 {
  max-width: 720px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.56px;
}

footer {
  position: relative;
  background-color: rgb(255, 255, 255);
  width: 100%;
  margin: 0px auto;
}

footer .inner {
  width: 100%;
  max-width: 1410px;
  padding: 70px 20px 50px;
  margin: 0px auto;
}

.footerLink {
  display: flex;
  align-items: center;
  gap: 17px;
}

.footerLink a {
  font-size: 16px;
  letter-spacing: -0.48px;
}

.footerLink a.white {
  font-weight: 700;
}

.footerLink span {
  display: none;
}

.footerCompany {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 50px;
  margin-top: 35px;
}

.footerCompany .footerCompany_box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footerCompany .footerCompany_box:first-child img {
  width: 200px;
}

.footerCompany .footerCompany_box:nth-child(2) img {
  width: 180px;
}

.footerCompany .footerCompany_box address {
  font-size: 16px;
  letter-spacing: -0.48px;
}

.copyright {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-top: 43px;
  padding-bottom: 40px;
  color: rgba(0, 0, 0, 0.5);
}

.footer_top_btn {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 52px;
  height: 52px;
}

.footer_top_btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .m_gnb_wrap {
    --m-gnb-inner-width: calc(100vw - 48px);
  }

  .m_gnb_inner {
    width: var(--m-gnb-inner-width);
  }

  .m_gnb_wrap .m_login_btn {
    margin: 33px 0px 0px 76px;
  }

  .m_gnb_visual {
    position: relative;
    flex-basis: calc(26% + var(--m-gnb-gutter));
    width: calc(26% + var(--m-gnb-gutter));
    margin-left: calc(var(--m-gnb-gutter) * -1);
  }

  .m_gnb_panel {
    flex: 1 1 auto;
    width: auto;
    margin: 0px;
  }

  .gnb {
    gap: 42px;
  }

  .m_gnb_content {
    width: min(980px, 100% - 100px);
    padding-top: 120px;
  }

  .m_gnb_wrap .m_gnb_top {
    right: 56px;
  }

  .m_gnb_title {
    font-size: 54px;
  }

  .m_gnb_word {
    margin-top: 10px;
  }

  .m_gnb_menu {
    grid-template-columns: 220px minmax(0px, 1fr);
    gap: 28px;
  }

  .m_gnb_depth1 {
    font-size: 20px;
  }

  .m_gnb_menu ul a {
    font-size: 17px;
  }

  footer .inner {
    padding: 50px 20px 0px;
  }
}

@media screen and (min-width: 1280px) and (max-height: 852px) {
  .m_gnb_wrap {
    --m-gnb-inner-width: 100%;
  }

  .m_gnb_inner {
    width: 100%;
    margin: 0px;
  }

  .m_gnb_visual {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1279px) {
  :root {
    --header-height: 78px;
  }

  html {
    font-size: 14px;
  }

  .header {
    height: var(--header-height);
  }

  .header .logo {
    width: 286px;
    height: 19px;
  }

  .gnb {
    display: none;
  }

  .header_btn>button:first-child {
    display: none;
  }

  .m_gnb_wrap {
    --m-gnb-inner-width: 100%;
    --m-gnb-gutter: 0px;
    display: block;
    padding: 13px 20px 50px;
    overflow: auto;
    transform: translate3d(100%, 0px, 0px);
  }

  .m_gnb_inner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
  }

  .m_gnb_visual {
    display: none;
    position: static;
    width: auto;
  }

  .m_gnb_panel {
    width: 100%;
    margin: 0px;
    height: auto;
    overflow: visible;
  }

  .m_gnb_wrap .m_gnb_top {
    position: static;
    justify-content: space-between;
    margin-bottom: 13px;
  }

  .m_gnb_close {
    position: relative;
    top: auto;
    right: -8px;
    width: 44px;
    height: 44px;
  }

  .m_gnb_close span {
    width: 20px;
    height: 1px;
  }

  .m_gnb_wrap .m_login_btn {
    width: auto;
    min-width: 86px;
    height: 34px;
    margin: 0px;
    padding: 0px 13px;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 17px;
    background-color: rgb(255, 255, 255);
    color: rgb(55, 58, 61);
    font-size: 13px;
    letter-spacing: -0.26px;
  }

  .m_gnb_wrap .m_login_btn img {
    width: 18px;
    height: 18px;
  }

  .m_gnb_wrap .m_login_btn.is-logout img {
    width: 20px;
    height: 20px;
  }

  .m_gnb_content {
    width: 100%;
    padding: 0px;
  }

  .m_gnb_text {
    display: none;
  }

  .m_gnb_menu {
    display: block;
    padding: 0;
  }

  .m_gnb_depth1 {
    position: relative;
    display: block;
    padding: 19px 28px 19px 6px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.8px;
  }

  .m_gnb_depth1::after {
    position: absolute;
    top: 50%;
    right: 9px;
    width: 9px;
    height: 9px;
    border-right: 1px solid rgb(85, 85, 85);
    border-bottom: 1px solid rgb(85, 85, 85);
    content: "";
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s;
  }

  .m_gnb_menu.is-active .m_gnb_depth1::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .m_gnb_menu {
    border-color: #eee;
  }

  .m_gnb_menu ul {
    display: block;
    max-height: 0px;
    margin-bottom: 0px;
    padding: 0px 22px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: #f7f7f7;
    transition: max-height 0.32s ease, padding 0.32s ease, margin-bottom 0.32s ease, opacity 0.22s ease, transform 0.32s ease;
  }

  .m_gnb_menu.is-active ul {
    max-height: 240px;
    margin-bottom: 20px;
    padding: 22px;
    opacity: 1;
    transform: translateY(0px);
  }

  .m_gnb_menu ul li+li {
    margin-top: 14px;
  }

  .m_gnb_menu ul a {
    font-weight: 400;
    font-size: 15px;
  }

  .main_placeholder {
    min-height: 420px;
    padding: 90px 20px 0px;
  }

  .main_placeholder_inner {
    width: 100%;
    min-height: 330px;
  }

  .main_placeholder h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  html {
    font-size: 12px;
  }

  .header {
    height: var(--header-height);
  }

  .header .logo {
    width: 232px;
    height: 16px;
  }

  .allMenu_btn {
    width: 30px;
    height: 22px;
  }

  .allMenu_btn span {
    width: 6px;
    height: 6px;
  }

  .footerLink a {
    font-size: 14px;
  }

  .footerCompany .footerCompany_box {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .footerCompany .footerCompany_box:first-child img,
  .footerCompany .footerCompany_box:nth-child(2) img {
    width: 170px;
  }

  .footerCompany .footerCompany_box address {
    font-size: 14px;
  }

  .copyright {
    font-size: 13px;
  }

  .footer_top_btn {
    width: 44px;
    height: 44px;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: 11px;
  }

  .header .logo {
    width: 210px;
    height: 14px;
  }

  .allMenu_btn {
    width: 28px;
  }

  footer .inner {
    padding: 40px 20px 0px;
  }

  .footerCompany .footerCompany_box address {
    font-size: 13px;
  }

  .copyright {
    font-size: 12px;
  }

  .footer_top_btn {
    right: 20px;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
}



/*----------------------------------------  로그인 - 팝업  -------------------------------------*/
.login_popup_wrap {
	backdrop-filter : blur(40px);
}

.login_popupBG {
	width: 100%;
	height: 100%;
	background-color: rgb(255 255 255 / 68%);
	position: relative;
	z-index: 999;
}

.login_form {
    width:414px;
    border-radius:10px;
    background-color:#fff;
    position:absolute;
    left:50%;
    top:50%;
    transform : translate(-50%, -50%);
    padding: 16px;
}

.login_form .popup_head {
    display:flex;
    justify-content: flex-end;
}

.login_form .login_tit {
    text-align:center;
    margin-top:55px;
}

.login_form .login_tit p{
    font-size:1.15rem;
    color:#444;
    font-family: 'SUIT';
    letter-spacing:-0.4px;
    font-weight:600;
}

.login_form .login_tit p b {
    font-family: 'SUIT';
    font-size:2.5rem;
    color:#000;
    letter-spacing:-0.9px;
    font-weight:700;
    line-height:1.6;
} 

.login_form .login_input input {
    border:0;
    width:100%;
    border-bottom:1px solid #cecece;
}

.login_form .login_input {
    padding:0 30px;
}
.login_form .login_input input::placeholder {
    font-size:1.15rem;
    color:#000;
    letter-spacing:-0.16px;
}

.login_form .login_btn_area {
    display:flex;
    justify-content:center;
    margin:50px 0 44px;
}

/*----------------------------------------  페이지 준비중  -------------------------------------*/
.pageReady{ margin-top: 120px; }
.pageReady img{ display: block; margin: 0 auto; }


@media screen and (max-width:1279px) {
    .promotionList {
        width:100%;
        flex-wrap:wrap;
        display:flex;
        justify-content:center;
    }
    
    .login_form {
        width:100%;
        height:100%;
        border-radius:0;
        margin-top:-1px;
    }

    .condition_search_wrap {
        border-radius:0;
        padding: 30px 20px 40px;
    }

    .condition_search_wrap,
    .condition_search--inputArea,
    .condition_search--inputBox {
        display:block;
    }

    .condition_search--inputBox:first-of-type p {
        margin-top:0;
    }

    .condition_search--inputBox p {
        text-align:left;
        width:auto;
        margin:1.2rem 0 8px;
        font-size:12px;
    }

    .condition_search--inputBox select {
        font-size:12px;
    }

    .m_select_category select {
        margin-top:4px;
    }

    .m_select_category select:first-of-type {
        margin-top:0;
    }

    .condition_search_wrap .btn_search {
        width:100%;
        height:48px;
        margin-top:16px;
    }

    .support {
        overflow-x:auto;
        overflow-y:hidden;
        padding: 0 20px;
    }
    .support::-webkit-scrollbar {
        display:none;
    }

    .platform_box .tabMenu ul li {
        font-size:12px;
    }

    .platform_box .tabMenu ul li::after{
        height:3px;
        margin-top:4px;
    }
    .prcsFrm_box .slide_content img {width:100%;}

    .service_equip_img .name p {
        font-size:1.5rem;
    }
    .service_equip_info p,
    .service_equip_person .profile p,
    .service_equip_person .profile p span {
        font-size:12px;
    }

    .service_equip_info {
        min-height:180px;
    }
}

@media screen and (max-width:767px) {
    /* .promotion_box {
        width:100%;
    }  */
    .prcsfrmSwiper-nav,
    .anlyfrmSwiper-nav,
    .serviceSwiper-nav {display:none;}

    .prcsFrm_box .slide_content,
    .anlyFrm_box .slide_content,
    .prcsFrm_box .slide_text,
    .anlyFrm_box .slide_text {
        margin-bottom:2rem;
    }    

    .prcsFrm_box .slide_content,
    .anlyFrm_box .slide_content  {
        display:block;
        text-align:center;
    }
}





.equip_noData {
    text-align: justify;
    justify-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    padding: 5%;
}