@charset "utf-8";
@import url("./defaults/reset.css?ver=240126");
@import url("./defaults/utils.css?ver=240126");
@import url("./defaults/board.css?ver=240126");
@import url("./defaults/popup.css?ver=240126");
@import url("./defaults/ckeditor5.css?ver=240126");
@import url("./defaults/scroll-ani-transition.css?ver=240126");

@font-face {
  font-family: "Orbitron";
  src: url("../font/Orbitron/static/Orbitron-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Orbitron";
  src: url("../font/Orbitron/static/Orbitron-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  font-family: var(--font-primary);
  font-weight: 400;
}

#sian-nav {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 9999999999;
}
#sian-nav a {
  display: block;
  font-size: 14px;
  background-color: #666;
  color: #fff;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
  margin-bottom: 2px;
  transition: background-color 0.3s;
  min-width: 80px;
}
#sian-nav a:hover {
  background-color: #999;
}
#sian-nav a.active {
  background-color: #fc6262;
  color: #fff;
  font-weight: 700;
}

/* ** 전역적으로 사용될 변수 스타일을 작성합니다. */
:root {
  --container-width: 1200px;
  --container-medium-width: 1100px;
  --container-narrow-width: 1024px;
  --container-wide-width: 1400px;

  --primary: #3f3f3f;
  --secondary: #008700;

  --navy: #333399;
  --blue: #0090ff;
  --skyblue: #c8dceb;

  --font-primary: "Pretendard", "맑은 고딕", sans-serif;
  --font-secondary: "Poppins", var(--font-primary);

  --cubic-pop1: cubic-bezier(0.85, 0.14, 0.29, 0.99);
  --cubic-pop2: cubic-bezier(0.71, 0.45, 0.36, 1.31);
  --cubic-pop3: cubic-bezier(0.85, 0.14, 0.29, 0.99);

  --scrollbar-color: var(--primary);

  --header-h: 60px;
}

/* Base assets */
body {
  font-family: var(--font-primary);
  letter-spacing: 0em;
}

.effect_bg {
  height: 100%;
}

.pcView {
  display: block;
}
.tabView {
  display: none;
}
.moView {
  display: none;
}
.moViewN {
  display: block;
}
.pcViewN {
  display: none;
}

br.min {
  display: none;
}

.mt-50 {
  margin-top: 50px;
}
.pb-0 {
  padding-bottom: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  font-family: var(--font-secondary);
  transition: background 0.4s, transform 0.4s;
  background: rgb(0, 0, 0);
  color: #fff;
}
.header-container {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  height: 100%;
  gap: 55px;
  width: 100%;
  padding-inline-start: 79px;
  position: relative;
}
.header .logo {
  display: flex;
  position: relative;
  font-size: 42px;
  font-size: 0;
  width: 183px;
  height: 21px;
}
.header .logo img {
  display: block;
  width: 180px;
  transition: opacity 0.4s;
}
.header .logo img.light {
  opacity: 1;
}
.header .logo img.dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.header-gnb {
  display: flex;
  margin: 0 auto;
  height: 100%;
}
.header-gnb-item {
  display: flex;
  align-items: stretch;
  position: relative;
}
.header-gnb-item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: 40px;
  font-weight: 500;
  font-size: 20px;
  font-family: var(--font-primary);
  position: relative;
  font-family: var(--font-primary);
  transition: 0.3s ease;
}

.header-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 20px 15px;
  border-radius: 0px;
  overflow: hidden;
  color: #303030;
  width: 100%;
  height: auto;
  padding-block: 10px;
  min-width: 180px;
  opacity: 0;
  transition: transform 0.5s var(--easing1), opacity 0.5s var(--easing1);
  text-align: center;
  pointer-events: none;
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: white;
}
.header-submenu-item > a {
  display: block;
  padding: 0.5em 10px;
  font-size: 16px;
  color: #fff;
}

.header-etc-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.header-lang-nav {
}
.header-lang-nav .lang-ls {
  display: flex;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}
.header-lang-nav .lang-ls a {
  position: relative;
  padding-inline: 0.6em;
  color: #989898;
  line-height: 1;
}
.header-lang-nav .lang-ls a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 0.8em;
  background: #989898;
  content: "";
  transform: translate(50%, -50%);
}
.header-lang-nav .lang-ls a.active {
  color: white;
}

.header-dropdown {
  --rounded: 0px;
  --theme-1: #fff;
  color: var(--theme-1);
  position: relative;
  font-size: 15px;
  height: 100%;
  background-color: #2b2b2b;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.header-dropdown .trigger {
  padding: 0 28px;
  border-radius: var(--rounded);
  transition: color 0.4s, border 0.4s, background 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1;
}
.header-dropdown .arrow {
  border-color: var(--theme-1);
  width: 10px;
  height: 10px;
  transition: color 0.4s, border 0.4s, background 0.4s;
  margin: 3px auto 0;
}
.header-dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom-left-radius: var(--rounded);
  border-bottom-right-radius: var(--rounded);
  padding-block: 0.5em;
  border-top: none;
  display: none;
  background: #2b2b2b;
  transition: color 0.4s, border 0.4s, background 0.4s;
}
.header-dropdown ul > li {
}
.header-dropdown ul > li > a {
  display: flex;
  align-items: center;
  padding-inline: 1em;
  padding-block: 0.3em;
  line-height: 1;
  font-weight: 500;
  transition: color 0.4s, border 0.4s, background 0.4s;
  gap: 0.5em;
}
.header-dropdown ul > li > a img {
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  object-fit: cover;
}
.header-dropdown:hover .trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header-dropdown:hover ul {
  display: block;
}
.header-dropdown ul > li > a:hover {
  color: var(--sub-color1);
}

.btn--sitemap-toggle {
  background-color: #0c00ae;
  padding-inline: 23.5px;
  height: 100%;
}
.btn--sitemap-toggle img {
  width: 33px;
  height: 31px;
}

.header-dim {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 300px;
  background: #000;
  opacity: 0;
  transform: translate(0, -100px);
  transition: 0.3s ease;
  pointer-events: none;
  box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.06);
  z-index: -999;
}
.header-dim::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
:lang(en) .header-gnb-item > a {
  font-size: 17px;
  white-space: nowrap;
}
:lang(en) .header-gnb-item .header-submenu {
  font-size: 14px;
  padding-inline: 30px;
  min-width: none;
  line-height: 1.3;
}
:lang(en) .header-dim {
  height: 370px;
}
:lang(en) .header-submenu-item > a {
  padding: 0.5em 5px;
  width: 280px;
  display: inline-block;
  line-height: 1.3;
}
/* 



:lang(en) .header-dropdown ul li a{padding-left: 10px;display: block;} */
/* 서브페이지 헤더 */
.header.sub {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Header 상태관리 */
.header--scrolled {
  background: black;
}
.header--hide {
  transform: translate(0, -100%);
}

.sitemap {
  display: none;
}

@media (hover: hover) {
  .header
    .header-gnb:has(.header-gnb-item:hover)
    .header-gnb-item:not(:hover)
    > a {
    opacity: 0.4;
  }
  .header .header-gnb-item:hover > a {
    opacity: 1;
  }
  .header-gnb-item:hover .header-submenu {
    opacity: 1;
    pointer-events: initial;
  }
  .header-submenu-item > a:hover {
    font-weight: 700;
    color: #054cff;
  }
  .header-lang-nav > a:not(.active):hover {
    opacity: 0.7;
  }

  .header.header--hover {
    background-color: #000;
  }
  .header.header--hover .header-gnb-item > a {
    padding-inline: 50px;
  }
  .header.header--hover .header-dim {
    opacity: 1;
    transform: translate(0);
    pointer-events: initial;
  }
  .header.header--hover .header-dim::after {
    animation-name: header-dim-on;
    animation-duration: 0.3s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
  }
  :lang(en) .header.header--hover .header-gnb-item > a {
    padding-inline: 60px;
  }
  :lang(en) .header.header--hover .header-gnb-item:nth-of-type(2) > a {
    width: 250px;
  }
  @keyframes header-dim-on {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .header.header--hover .header-submenu {
    opacity: 1;
    pointer-events: initial;
  }
}
@media screen and (max-width: 1499px) {
  .header-gnb-item > a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1399px) {
  .pcView {
    display: none;
  }
  .tabView {
    display: block;
  }
  .moView {
    display: none;
  }
  .moViewN {
    display: block;
  }
  .pcViewN {
    display: block;
  }

  .header {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    color: #333 !important;
  }
  .header-container {
    width: min(1920px, calc(100% - 30px));
    display: flex;
    justify-content: space-between;
    padding-inline: 0;
    gap: 0;
  }
  .header-gnb {
    display: none;
  }
  .header .logo {
  }
  .header .logo img {
    height: 100%;
    width: auto;
  }
  .header .logo .light {
    opacity: 1 !important;
  }
  .header .logo .dark {
    opacity: 0 !important;
  }

  .header-etc-nav {
    gap: 25px;
    padding: 0;
  }
  .header-etc-nav .btn--sitemap-toggle {
    display: flex;
  }
  .header-lang-nav {
    display: none;
  }
  .header .header-dropdown {
    display: none;
  }

  .header-etc-nav .btn--sitemap-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    outline: none;
    box-shadow: none;
    appearance: none;
    width: 45px;
    height: 30px;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--primary);
  }
  .header-etc-nav .btn--sitemap-toggle .bar {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.4s;
    border-radius: 2px;
  }
  .header-etc-nav .btn--sitemap-toggle .bar {
    background: #fff;
  }

  .sitemap {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none;
  }
  .sitemap-dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.5s;
  }
  .sitemap-container {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 520px;
    height: 100%;
    background: #222;
    overflow: hidden auto;
    --padding-inline: 30px;
    transform: translate(100%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
  }

  .sitemap-container .head {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 30px 20px;
    padding-inline: var(--padding-inline);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    align-items: center;
  }
  .sitemap-container .head .logo {
    height: auto;
    width: auto;
  }
  .sitemap-container .head .logo a {
    display: flex;
    width: 130px;
  }

  .sitemap-container .etc-nav {
    display: flex;
    gap: 15px;
  }
  .sitemap-container .etc-nav button .hidden {
    display: none;
  }

  .sitemap-container .body {
    padding-block: 20px;
  }
  .sitemap-container .body .block {
    padding-inline: var(--padding-inline);
    padding-block: 15px;
  }

  body.sitemap--open .sitemap {
    pointer-events: initial;
  }
  body.sitemap--open .sitemap-dim {
    opacity: 1;
  }
  body.sitemap--open .sitemap-container {
    opacity: 1;
    transform: translate(0);
  }

  .sitemap-gnb {
  }
  .sitemap-gnb-item {
    padding-block: 0.7em;
  }
  .sitemap-gnb-item:not(:last-child) {
    border-bottom: 1px solid #ededed;
  }
  .sitemap-gnb-item .trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-family: var(--font-primary);
    color: white;
  }
  .sitemap-gnb-item .trigger .ico--plus {
    width: 1em;
    height: auto;
    aspect-ratio: 1 / 1;
    display: none;
  }
  .sitemap-gnb-item .trigger .ico--plus::before,
  .sitemap-gnb-item .trigger .ico--plus::after {
    background: #afafaf;
    border-radius: 2px;
  }
  .sitemap-gnb-item .trigger .ico--plus::before {
    width: 2px;
  }
  .sitemap-gnb-item .trigger .ico--plus::after {
    height: 2px;
  }
  .sitemap-gnb-item.active .trigger {
    font-weight: 700;
  }
  .sitemap-gnb-item.active .trigger .ico--plus::before {
    display: none;
  }
  .sitemap-gnb-item.active .trigger .ico--plus::before,
  .sitemap-gnb-item.active .trigger .ico--plus::after {
    background: var(--secondary);
  }

  .sitemap-submenu {
    display: none;
    margin-block: 10px;
    padding: 0 0 20px 5px;
  }
  .sitemap-gnb-item.active .sitemap-submenu {
    display: block;
  }
  .sitemap-submenu-ls {
    font-size: 20px;
    color: white;
  }
  .sitemap-submenu-ls > .item {
  }
  .sitemap-submenu-ls > .item > a {
    display: block;
    padding-block: 8px;
    font-size: 20px;
    font-weight: 300;
    color: #dfdfdf;
  }
  .sitemap-submenu-ls > .item.active > a {
    font-weight: 500;
    color: var(--blue);
  }

  .sitemap-submenu-ls > .item:has(.depth2-ls) > a {
    display: flex;
    align-items: center;
    gap: 0.8em;
  }
  .sitemap-submenu-ls > .item:has(.depth2-ls) > a::after {
    width: 0.3em;
    aspect-ratio: 1 / 1;
    border-top: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    transform: rotate(45deg);
    content: "";
    display: block;
    transition: transform 0.4s;
  }
  .sitemap-submenu-ls > .item:has(.depth2-ls).active > a::after {
    transform: translate(0, -25%) rotate(135deg);
  }
  .sitemap-submenu-ls > .item .depth2-ls {
    display: none;
    font-size: 0.9em;
    padding: 5px 0 40px 10px;
  }
  .sitemap-submenu-ls > .item.active .depth2-ls {
    display: block;
  }
  .sitemap-submenu-ls > .item:last-child .depth2-ls {
    padding-bottom: 0;
  }
  .sitemap-submenu-ls > .item .depth2-ls > li > a {
    display: block;
    padding-block: 8px;
    font-size: 16px;
    line-height: 1;
  }
  .sitemap-submenu-ls > .item .depth2-ls > li.active {
    color: #1b1b1b;
    font-weight: 500;
  }

  .sitemap-lang {
    display: flex;
    font-size: 18px;
  }
  .sitemap-lang a {
    display: flex;
    align-items: center;
    color: #909090;
    text-transform: uppercase;
  }
  .sitemap-lang a.active {
    color: var(--blue);
    font-weight: 600;
  }
  .sitemap-lang a:not(:last-child)::after {
    width: 1px;
    height: 0.7em;
    content: "";
    background: #dfdfdf;
    margin: 0 0.6em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-h: 50px;
  }
  .pcView {
    display: none;
  }
  .tabView {
    display: none;
  }
  .moView {
    display: block;
  }
  .moViewN {
    display: none;
  }
  .pcViewN {
    display: block;
  }
  .br.min {
    display: none;
  }

  .header {
    height: 50px;
  }
  .header-etc-nav {
    gap: 10px;
  }

  .sitemap-container {
    --padding-inline: 20px;
  }
}

@media screen and (max-width: 360px) {
  br.min {
    display: block;
  }
  br.nomin {
    display: none;
  }
}

/* Footer */
footer {
  background-color: #171717;
  padding: 63px 0 71px;
  color: #fff;
  font-family: "Pretendard";
}
footer .container {
  width: min(var(--container-wide-width), calc(100% - 100px));
}
footer .footer-cont {
  display: flex;
}
footer .logo {
  display: block;
  background: url(../images/footer-logo.png) no-repeat center;
  background-size: cover;
  width: 314px;
  height: 37px;
  font-size: 0;
}

footer .center {
  margin: 0 auto 0 91px;
}
footer .center p {
  font-size: 18px;
  font-family: var(--font-primary);
}
footer .center span {
  color: #054cff;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-primary);
}
footer .ad {
  margin: 16px 0 5px;
}
footer .center .flex p:last-child {
  margin: 0 0 0 40px;
}
footer .center .copyright {
  font-size: 16px;
  color: #7f7f7f;
  margin: 29px 0 0;
}

footer .ps {
  margin: auto 0 0;
}
footer .ps a {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: #cfcfcf;
  font-family: var(--font-primary);
}
footer .ps a:first-child {
  margin: 0 19px 0 0;
  position: relative;
}
footer .ps a:first-child:before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  background-color: #cfcfcf;
  height: 14px;
}
:lang(en) footer .ps {
  margin-left: auto;
}
:lang(en) footer .center {
  margin-right: 0;
  width: 100%;
}
@media screen and (max-width: 1399px) {
  footer .container {
    max-width: calc(100% - 30px);
    width: 720px;
  }
  footer .footer-cont {
  }
  footer .logo {
    width: 180px;
    height: 20px;
  }
  footer .center {
    margin: 0;
    margin-left: 100px;
  }
  footer .center p {
    font-size: 14px;
  }
  footer .center span {
    font-size: 16px;
  }
  footer .center .flex {
    margin-top: 10px;
  }
  footer .center p span {
    font-size: 14px;
    font-weight: 600;
  }
  footer .ad {
    font-size: 14px;
  }
  footer .center .copyright {
    font-size: 12px;
  }
  footer .ps {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-cont {
    display: block;
  }
  footer .center {
    margin-left: 0;
    margin-top: 20px;
  }
  :lang(en) footer .center .flex {
    flex-direction: column;
  }
  :lang(en) footer .center .flex p:last-child {
    margin: 0;
  }
  :lang(en) footer .footer-cont {
    text-align: center;
  }
  :lang(en) footer .logo {
    margin: 0 auto;
  }
}

/* Modal */
.modal {
  --width: 890px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 50px 15px;
  display: none;
  opacity: 0;
  background: rgb(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.modal-small {
  --width: 652px;
}
.modal .dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal .container {
  --padding: 70px 60px;
  width: var(--width) !important;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background: #fff;
  overflow: hidden auto;
  max-height: 100%;
  border-radius: 10px;
}
.modal .container .head {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--padding);
  padding-bottom: 30px;
  background: #fff;
  z-index: 10;
}
.modal .container .btn--close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal .container .btn--close .ico--times::before {
  background: #000;
}
.modal .container .btn--close .ico--times::after {
  background: #000;
}
.modal .container .content {
  padding: var(--padding);
  padding-top: 0;
}

.modal.overflow {
  overflow: hidden auto;
  align-items: flex-start;
}
.modal.overflow .dim {
  background: none;
  backdrop-filter: none;
}
.modal.overflow .container {
  overflow: visible;
  max-height: none;
}
.modal.overflow .container .head {
  top: -50px;
  border-radius: 10px 10px 0 0;
  padding-block: 50px 20px;
  padding-right: 60px;
  border-bottom: 1px solid var(--gray-lighter);
}
.modal.overflow .container .content {
  padding-top: 20px;
}

.modal-brand-notice {
  --width: 500px;
}
.modal-brand-notice.active {
  opacity: 1;
  display: flex;
}
.modal-brand-notice .container .head {
  padding-block: 50px 20px;
}
.modal-brand-notice .container .content .title {
  margin-bottom: 0.6em;
}

.modal.type--video {
  --width: 1000px;
}
.modal.type--video .container {
  --padding: 0;
  border-radius: 0;
  display: flex;
  overflow: visible;
  flex-direction: column;
  background: transparent;
  gap: 20px;
}
.modal.type--video .container .content {
  border-radius: 10px;
  overflow: hidden;
  order: 1;
}
.modal.type--video .container .btn--close {
  position: static;
  margin-inline: auto;
  order: 2;
}
.modal.type--video .container .btn--close .ico--times::before,
.modal.type--video .container .btn--close .ico--times::after {
  background: #fff;
}

@media screen and (max-width: 1399px) {
  .modal .container {
    --padding: 70px 30px;
  }
  .modal.overflow .container .head {
    padding-block: 20px;
  }
}
@media screen and (max-width: 767px) {
  .modal .container {
    --padding: 70px 15px;
  }
  .modal.type--video {
    padding-inline: 0;
  }
  .modal.type--video .container {
    --padding: 0;
    max-height: none;
  }
}

/* Policy */
.policy-doc {
  padding: 30px;
  border-radius: 10px;
  background: #fcfcfc;
  border: 1px solid #e8e8e8;
  font-size: 16px;
}
.policy-doc dl {
  word-break: break-all;
}
.en .policy-doc dl {
  word-break: normal;
}
.policy-doc dt {
  display: block;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.3em;
}
.policy-doc dd {
  margin-bottom: 1.5em;
}
.policy-doc dd :where(h1, h2, h3, h4, h5, h6) {
  color: var(--dark-navy);
  margin-bottom: 0.3em;
}
.policy-doc dd .indent {
  padding-left: 1em;
}
.policy-doc dd p {
  margin-bottom: 0.5em;
}
.policy-doc dd table {
  width: 100%;
  font-size: 13px;
}
.policy-doc dd table :where(th, td) {
  border: 1px solid var(--gray-lighter);
  padding: 0.3em 0.5em;
  line-height: 1.5;
}
.policy-doc dd table thead th {
  background: var(--gray-light);
}
.policy-doc .bullet > li::before {
  background: var(--primary);
}
.policy-doc ol {
  margin-block: 1em;
}
.policy-doc ol > li:not(:last-child) {
  margin-bottom: 0.7em;
}

@media screen and (max-width: 1399px) {
  .policy-doc {
    padding: 30px 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .policy-doc {
    padding: 25px 15px;
    font-size: 14px;
  }
  .policy-doc dd .indent {
    padding-left: 0em;
  }
}
