:root {
  --primary-color: #3932af;
  --text-color1: #222222;
  --text-color2: #555555;
}

/* ! common */
#container {
  padding-top: 120px;
}

#content-wrap {
  padding-bottom: 100px;
  border-bottom: 1px solid #eaeeef;
}

/** text */
.bold {
  font-weight: bold;
}

.tc1 {
  color: var(--primary-color);
}

.feel-guide {
  margin-top: 17px;
}

.feel-guide ul li {
  position: relative;
  line-height: 22px;
  font-size: 14px;
  color: #777777;
  padding-left: 18px;
}

.feel-guide ul li + li {
  margin-top: 3px;
}

.feel-guide ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../img/ico_feel_mark.png) no-repeat;
}

/** btn */
.btn-link {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: #fff;
  padding: 0 15px;
  border-radius: 6px;
  background-color: #555;
}

.btn-link > span {
  position: relative;
  font-size: 13px;
  padding-right: 16px;
}

.btn-link > span::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  width: 5px;
  height: 9px;
  background: url(../img/ico_btn_arrow1.png) no-repeat;
}

.btn-agree,
.btn-pill {
  min-width: 130px;
  height: 46px;
  line-height: 46px;
  padding: 0 30px;
  font-size: 16px;
  color: #ffffff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 46px;
}

.help {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 5px;
  background: url(../img/ico_sgi_tooltip.png);
  vertical-align: middle;
  cursor: pointer;
}

/* ? accordion tab */
.question-box .title h5 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color1);
}

.question-box .q-list {
  margin-top: 20px;
}

.question-box .q-list .item {
  border: 1px solid #dddddd;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s;
}

.question-box .q-list .item + .item {
  margin-top: 10px;
}

.question-box .q-list .item.active {
  border-color: var(--primary-color);
}

.question-box .q-list .item .q {
  color: var(--text-color1);
  padding: 0 40px;
  cursor: pointer;
}

.question-box .q-list .item .q p {
  position: relative;
  width: 100%;
  line-height: 22px;
  padding: 27px 50px 27px 40px;
}

.question-box .q-list .item .q > p::before {
  content: 'Q.';
  position: absolute;
  left: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.question-box .q-list .item .q > p::after {
  content: '';
  position: absolute;
  top: 34px;
  right: 0;
  width: 18px;
  height: 10px;
  background: url(../img/ico_accordion_arrow.png) no-repeat;
  transition: 0.3s;
}

.question-box .q-list .item.active .q p::after {
  transform: rotate(180deg);
}

.question-box .q-list .item .a {
  position: relative;
  padding: 27px 40px 27px 80px;
  border-top: 1px solid #e6e6e6;
  background-color: #f8fafb;
}

.question-box .q-list .item .a > p {
  line-height: 24px;
  color: var(--text-color2);
}

.question-box .q-list .item .a > p:first-child::before {
  content: 'A.';
  position: absolute;
  left: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #f4534b;
}

/* ? container */
#container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* ? header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  border-bottom: 1px solid #eaeeef;
  background-color: #ffffff;
  transform: translateY(0);
  transition: 0.6s;
  z-index: 200;
}

#header.off {
  transform: translateY(-100%);
  transition: 0.6s;
}

#header > div {
  position: relative;
  width: 1100px;
  height: 100%;
  margin: 0 auto;
}

#header .util-menu {
  position: absolute;
  top: 10px;
  right: 0;
  margin: 0 auto;
}

#header .util-menu ul {
  display: flex;
}

#header .util-menu > ul > li {
  position: relative;
  padding: 7px;
}

#header .util-menu ul li:nth-child(1) {
  position: relative;
}

#header .util-menu ul li .login-list {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}

#header .util-menu ul li .login-list a {
  position: relative;
  width: 88px;
  height: 28px;
  display: none;
  line-height: 30px;
  font-size: 13px;
  color: #ffffff;
  padding: 0 10px 0 30px;
  border-radius: 14px;
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity: 0;
}

#header .util-menu ul li .login-list a::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 13px;
  width: 12px;
  height: 11px;
  background: url(../img/spr_ico_util.png) no-repeat;
}

#header .util-menu ul li .login-list .individual {
  background: #e32c23;
  transform: translateX(50px);
}

#header .util-menu ul li .login-list .corporation {
  background: var(--primary-color);
  margin-left: 10px;
  transform: translateX(30px);
}

#header .util-menu ul li .login-list .corporation::before {
  background-position: 0 -12px;
}

#header .util-menu ul li .login-list a.on {
  transform: translateX(0);
  opacity: 1;
}

#header .util-menu ul li a {
  font-size: 13px;
  color: var(--text-color2);
}

/*? header > util menu global */
#header .util-menu ul li a.global {
  position: relative;
  padding: 7px 16px 7px 7px;
}

#header .util-menu ul li a.global::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #4d5256;
  transform: rotate(135deg);
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

#header .util-menu ul li a.global.on::after {
  transform-origin: 90% 50%;
  transform: rotate(315deg);
}

#header .util-menu ul li .global-list {
  position: absolute;
  top: 30px;
  left: 7px;
  display: flex;
  flex-direction: column;
  padding: 8px 5px;
  background: #ffffff;
  border: 1px solid #e1e4e6;
  border-radius: 10px;
  transform-origin: 100% 0;
  transform: scaleY(0);
  transition: 0.4s;
}

#header .util-menu ul li .global-list a {
  display: block;
  text-transform: uppercase;
  margin: 3px 5px;
}

#header .util-menu ul li .global-list.on {
  transform: scale(1);
}

/* ? header-wrap search layer */
#header-wrap > .search-layer {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  transition: 0.8s;
  z-index: 300;
}

#header-wrap > .search-layer::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}

#header-wrap > .search-layer.on::before {
  opacity: 1;
}

#header-wrap > .search-layer .inner {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 127px 0 80px 0;
  border-bottom-right-radius: 60px;
  transition: 0.6s;
}

#header-wrap > .search-layer.on .inner {
  top: 0;
}

#header-wrap .search-layer .inner .btn-close {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: 550px;
  background: url(../img/btn-close2.svg) no-repeat center center;
}

#header-wrap .search-layer .inner > .search {
  position: relative;
  width: 790px;
  height: 90px;
  margin: 0 auto;
}

#header-wrap .search-layer .inner > .search > input[type='text'] {
  width: 100%;
  height: 100%;
  font-size: 40px;
  padding-right: 130px;
  border: none;
  border-bottom: 3px solid #000;
  background: #ffffff;
}

#header-wrap .search-layer .inner > .search > input[type='text']::placeholder {
  font-size: 40px;
  font-weight: 700;
  color: #e1e4e6;
}

#header-wrap
  .search-layer
  .inner
  > .search
  > input[type='text']:focus::placeholder {
  color: transparent;
}

#header-wrap .search-layer .inner > .search > .btn-search {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 77px;
  height: 90px;
  background: url(../img/ico_search_total.png) no-repeat center center;
}

#header-wrap .search-layer .inner > .keyword {
  display: flex;
  width: 790px;
  margin: 40px auto 0;
}

#header-wrap .search-layer .inner > .keyword > .item {
  width: 50%;
  padding-right: 10px;
}

#header-wrap .search-layer .inner > .keyword > .item > .list {
  margin-top: 12px;
}

#header-wrap .search-layer .inner > .keyword > .item > .list ul {
  display: flex;
  flex-wrap: wrap;
}

#header-wrap .search-layer .inner > .keyword > .item > .list ul li {
  margin: 13px 6px 0 0;
}

#header-wrap .search-layer .inner > .keyword > .item > .list ul li > a {
  display: block;
  max-width: 385px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #4d5256;
  padding: 0 18px;
  overflow-wrap: 40px;
  border: 1px solid #e1e4e6;
  border-radius: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ? header-wrap sitemap */
#header-wrap .sitemap {
  position: fixed;
  top: 100%;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  transition: 0.8s cubic-bezier(0.77, 0, 0.375, 1);
  z-index: 300;
}

#header-wrap .sitemap.on {
  top: 0;
}

#header-wrap .sitemap .title {
  width: 100%;
  height: 100px;
  background-color: var(--primary-color);
}

#header-wrap .sitemap .title > .inner {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}

#header-wrap .sitemap .title .inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -70px;
  width: 233px;
  height: 100px;
  background: url(../img/bg_sitemap.png) no-repeat;
}

#header-wrap .sitemap .title > .inner > h3 {
  line-height: 100px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

#header-wrap .sitemap .title > .inner > .btn-close {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(../img/ico_close_sitemap.png);
  transform: translateY(-50%);
}

#header-wrap .sitemap .sitemap-menu {
  width: 1100px;
  height: 100vh;
  margin: 0 auto;
  overflow: scroll;
  padding-bottom: 120px;
}

#header-wrap .sitemap .sitemap-menu > .item {
  position: relative;
  padding: 50px 0 0 185px;
}

#header-wrap .sitemap .sitemap-menu > .item + .item {
  margin-top: 50px;
  border-top: 1px solid #b2b2b2;
}

#header-wrap .sitemap .sitemap-menu > .item > h4 {
  position: absolute;
  top: 45px;
  left: 0;
  width: 120px;
  line-height: 36px;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-color1);
}

#header-wrap .sitemap .sitemap-menu > .item > .list-wrap {
  display: flex;
  width: 100%;
}

#header-wrap .sitemap .sitemap-menu > .item > .list-wrap + .list-wrap {
  margin-top: 35px;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6;
}

#header-wrap .sitemap .sitemap-menu > .item > .list-wrap > .sitemap-list {
  width: 25%;
}

#header-wrap .sitemap .sitemap-menu > .item > .list-wrap > .sitemap-list > h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color1);
}

#header-wrap .sitemap .sitemap-menu > .item > .list-wrap > .sitemap-list > ul {
  margin-top: 14px;
}

#header-wrap
  .sitemap
  .sitemap-menu
  > .item
  > .list-wrap
  > .sitemap-list
  > ul
  li
  > a {
  position: relative;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
  color: #777777;
  padding: 3px 0;
  transition: 0.3s;
}

#header-wrap
  .sitemap
  .sitemap-menu
  > .item
  > .list-wrap
  > .sitemap-list
  > ul
  li
  > a:hover {
  color: var(--primary-color);
}

#header-wrap
  .sitemap
  .sitemap-menu
  > .item
  > .list-wrap
  > .sitemap-list
  > ul
  li
  > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: 0.4s;
}

#header-wrap
  .sitemap
  .sitemap-menu
  > .item
  > .list-wrap
  > .sitemap-list
  > ul
  li
  > a:hover::after {
  width: 100%;
}

/*? header > gnb */
#header .gnb {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  z-index: 999;
}

#header .gnb .logo {
  position: relative;
}

#header .gnb .logo a {
  position: absolute;
  top: -23px;
  left: 0;
  display: block;
  width: 161px;
  height: 32px;
  background: url(../img/SGI_logo.svg) no-repeat center center;
  background-size: 161px 32px;
  cursor: pointer;
}

#header .gnb .right-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 188px;
}

#header .gnb .right-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

#header .gnb .right-box .gnb-menu {
  display: flex;
  align-items: center;
}

#header .gnb .right-box .gnb-menu > .tab {
  position: relative;
  font-size: 20px;
  padding: 28px 20px;
  cursor: default;
}

#header .gnb .right-box .gnb-menu > .tab::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #3d43ad;
  border-radius: 100%;
  transform: scale(0) translateY(6px);
  transition: 0.5s cubic-bezier(0.48, 1.97, 0.5, 0.63);
}

#header .gnb .right-box .gnb-menu > .tab.on {
  color: var(--primary-color);
}

#header .gnb .right-box .gnb-menu > .tab.on::after {
  transform: scale(1) translateY(6px);
}

#header .gnb .right-box div {
  display: flex;
}

#header .gnb .right-box .gnb-menu > .tab a {
  position: relative;
  display: block;
  color: var(--text-color1);
  cursor: default;
}

#header .gnb .right-box div .direct-signup {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding-left: 35px;
}

#header .gnb .right-box div .direct-signup::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../img/direct_icon.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

#header .gnb .right-box div .btn-search {
  display: block;
  width: 22px;
  height: 28px;
  margin-left: 26px;
  background-image: url(../img/icon_search_util.png);
  background-repeat: no-repeat;
}

#header .gnb .right-box div .btn-sitemap {
  display: block;
  width: 22px;
  height: 28px;
  margin-left: 26px;
  background-image: url(../img/icon_sitemap_util.png);
  background-repeat: no-repeat;
}

/*? gnb submenu */
#container #header-wrap .gnb-submenu-bg {
  position: fixed;
  top: 120px;
  width: 100%;
  height: 0;
  background-color: #ffffff;
  border-bottom-right-radius: 60px;
  transition: height 0.4s;
  z-index: 100;
}

#container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

#container.on::before {
  bottom: 0;
}

#gnb-submenu-wrap {
  position: fixed;
  top: 120px;
  width: 100%;
  z-index: 100;
}

#gnb-submenu-wrap .gnb-submenu {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  width: 1100px;
  margin: 0 auto;
  opacity: 0;
  overflow: hidden;
  transform-origin: 100% 0;
  transform: translateY(-50px);
  transition: 0.4s;
  z-index: 300;
}

#gnb-submenu-wrap .gnb-submenu.on {
  opacity: 1;
}

#gnb-submenu-wrap .gnb-submenu .box-1 {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e1e4e6;
  border-left: 1px solid #e1e4e6;
}

#gnb-submenu-wrap .gnb-submenu .box-1 > a {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  width: 260px;
  padding: 40px 25px;
  background-color: #f9fafc;
}

#gnb-submenu-wrap .gnb-submenu .box-1 > a::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: url(../img/spr_gnb_ico.png) no-repeat;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(1) .box-1 > a:nth-child(2):before,
#gnb-submenu-wrap .gnb-submenu:nth-child(2) .box-1 > a:nth-child(3):before {
  background-position: 0 -42px;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(2) .box-1 > a:nth-child(1):before {
  background-position: 0 -252px;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(2) .box-1 > a:nth-child(2):before {
  background-position: 0 0px;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(3) .box-1 > a:nth-child(1):before {
  background-position: 0 -84px;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(3) .box-1 > a:nth-child(2):before {
  background-position: 0 -126px;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(4) .box-1 > a:nth-child(1):before,
#gnb-submenu-wrap .gnb-submenu:nth-child(5) .box-1 > a:nth-child(1):before {
  background-position: 0 -168px;
}

#gnb-submenu-wrap .gnb-submenu:nth-child(4) .box-1 > a:nth-child(2):before,
#gnb-submenu-wrap .gnb-submenu:nth-child(5) .box-1 > a:nth-child(2):before {
  background-position: 0 -210px;
}

#gnb-submenu-wrap .gnb-submenu .box-1 > a::after {
  content: '';
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  height: 1px;
  background: #e1e4e6;
}

#gnb-submenu-wrap .gnb-submenu .box-1 a h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color1);
}

#gnb-submenu-wrap .gnb-submenu .box-1 a p {
  line-height: 20px;
  font-size: 12px;
  color: #777777;
  margin-top: 12px;
}

#gnb-submenu-wrap .gnb-submenu .box-1 a span {
  position: relative;
  display: block;
  font-size: 13px;
  color: var(--primary-color);
  margin-top: 13px;
}

#gnb-submenu-wrap .gnb-submenu .box-1 a span::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 55px;
  width: 5px;
  height: 9px;
  background: url(../img/ico_arrow_link.png) no-repeat;
}

#gnb-submenu-wrap .gnb-submenu .box-1 a span.tel {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-top: 14px;
}

#gnb-submenu-wrap .gnb-submenu .box-1 a span.tel::after {
  background: none;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list {
  display: flex;
  flex-direction: column;
  width: 210px;
  padding: 40px 25px;
  border-right: 1px solid #e1e4e6;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list > div + div {
  margin-top: 32px;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color1);
}

#gnb-submenu-wrap .gnb-submenu .submenu-list ul {
  margin-top: 12px;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list ul li a {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #4d5256;
  padding: 3px 0;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list ul li a:hover {
  color: var(--primary-color);
}

#gnb-submenu-wrap .gnb-submenu .submenu-list ul li a span {
  display: inline-block;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list ul li a span::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.4s;
}

#gnb-submenu-wrap .gnb-submenu .submenu-list ul li a:hover span::after {
  width: 100%;
}

/* ? footer */
#footer {
  width: 1100px;
  margin: 0 auto;
}

#footer .award {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

#footer .award ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

#footer .swiper {
  display: flex;
  align-items: center;
  width: 250px;
  height: 30px;
  padding-left: 25px;
  margin: 0;
}

#footer .swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#footer .swiper .swiper-slide img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#footer .swiper .control {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 30;
}

#footer .swiper .control .btn-prev,
#footer .swiper .control .btn-next,
#footer .swiper .control .btn-pause {
  display: inline-block;
  width: 12px;
  height: 8px;
  background: url(../img/spr_sgi_footer_banner_control.png) no-repeat;
  border: none;
  cursor: pointer;
}

#footer .swiper .control .btn-pause {
  background-position: -24px 0;
}

#footer .swiper .control .btn-pause.play {
  background-position: -36px 0;
}

#footer .swiper .control .btn-next {
  background-position: -12px 0;
}

#footer .footer-menu {
  position: relative;
  padding: 35px 0;
  border-top: 1px solid #eaeeef;
}

#footer .footer-menu ul {
  display: flex;
}

#footer .footer-menu ul li {
  margin-right: 20px;
}

#footer .footer-menu ul li a {
  font-size: 13px;
  color: #535353;
}

#footer .footer-menu .sns {
  position: absolute;
  top: 35px;
  right: 200px;
}

#footer .footer-menu .sns li a {
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/spr_ico_sns.png) no-repeat;
}

#footer .footer-menu .sns li:nth-child(2) a {
  background-position: 0 -30px;
}

#footer .footer-menu .sns li:nth-child(3) a {
  background-position: 0 -60px;
}

#footer .footer-menu .family-site {
  position: absolute;
  top: 35px;
  right: 0;
}

#footer .footer-menu .family-site > a {
  display: block;
  line-height: 40px;
  width: 172px;
  height: 40px;
  color: #4d5256;
  padding: 0 20px;
  border: 1px solid #e1e4e6;
  border-radius: 40px;
  cursor: pointer;
}

#footer .footer-menu .family-site > a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 18px;
  width: 13px;
  height: 6px;
  background: url(../img/arrUp.svg) no-repeat;
}

#footer .footer-menu .site-list {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 255px;
  padding: 0 30px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  z-index: 49;
}

#footer .footer-menu .site-list.on {
  padding: 22px 30px;
  background: #ffffff;
  transition: 0.4s;
}

#footer .footer-menu .site-list ul {
  display: flex;
  flex-direction: column;
}

#footer .footer-menu .site-list li {
  padding: 7px 0;
}

#footer .footer-menu .site-list li:last-child {
  padding: 0;
}

#footer .footer-menu .site-list li > button.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 13px;
  height: 13px;
  background: url(../img/btn-close.svg) no-repeat;
  border: none;
  cursor: pointer;
  z-index: 50;
}

#footer .contactus {
  margin-top: 30px;
  line-height: 23px;
}

#footer .contactus span {
  font-size: 13px;
  color: #4d5256;
}

#footer .copyright {
  font-size: 13px;
  margin-top: 14px;
  color: #4d5256;
}

/* ? breadcrumbs */
#content-wrap .breadcrumbs {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 1100px;
  margin: 20px auto 0;
}

#content-wrap .breadcrumbs ul {
  display: flex;
}

#content-wrap .breadcrumbs ul li {
  position: relative;
  display: flex;
  padding-right: 24px;
}

#content-wrap .breadcrumbs ul li::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 9px;
  width: 3px;
  height: 5px;
  background: url(../img/ico_breadcrumbs_arrow.png) no-repeat;
}

#content-wrap .breadcrumbs ul li:last-child::after {
  display: none;
}

#content-wrap .breadcrumbs ul li span {
  font-size: 13px;
  line-height: 14px;
  color: #777777;
}

#content-wrap .breadcrumbs ul li:last-child span {
  color: #4d5256;
}

#content-wrap .breadcrumbs ul li:first-child span {
  display: block;
  width: 15px;
  height: 14px;
  margin-top: -1px;
  background: url(../img/ico_home.png) no-repeat;
}

#content-wrap .breadcrumbs .btn-print {
  position: relative;
  height: 28px;
  line-height: 28px;
  font-size: 13px;
  padding: 0 12px;
  padding-left: 34px;
  background-color: #ffffff;
  border: 1px solid #b2b2b2;
  border-radius: 28px;
}

#content-wrap .breadcrumbs .btn-print::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 12px;
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../img/ico_print.png) no-repeat;
}
