@charset "utf-8";


/************************************************** 
    #header
***************************************************/
#header {position: fixed; width: 100%; background: var(--white); transition: background-color .3s, color .3s; z-index: 9999;}
body[data-page-type="sub2"] #header {border-bottom: 1px solid var(--border);}
#header.is-active {border-bottom: 1px solid var(--border);}
#header.is-hidden{transform: translateY(-100%);}
#header .inner {width: 100%; height: 90px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; transition: all .3s ease-out;}

#header .head-logo {width: 100%; max-width: 210px; transition: all ease .3s;}
#header .head-logo a {display: block;}
#header .head-logo .logo-white {display: none;}
#header .head-logo .logo-basic {display: block;}
#header.is-active .head-logo .logo-white {display: none;}
#header.is-active .head-logo .logo-basic {display: block;}

#header .gnb {margin: 0 20px; transition: all .3s ease-out; height: 90px;}
#header .gnb .dep1 {display: flex; justify-content: center; gap: 42px; height: 100%;}
#header .gnb .dep1 > li {font-size: 22px; font-weight: 500; }
#header .gnb .dep1 > li > a {position: relative; display: flex; align-items: center; height: 100%; padding: 0 5px; transition: .3s;}
#header .gnb .dep1 > li.active > a, #header .gnb .dep1 > li > a:is(:hover, :focus-visible) {color: var(--primary-1);}
#header .gnb .dep1 > li > a::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 4px; background: var(--primary-1); opacity:0; transition: .3s;}
#header .gnb .dep1 > li.active > a::after {width: 100%; opacity: 1;}

#header .gnb .sub-menu-cmn {position: absolute; top: 100%; left: 0; width : 100%; box-shadow: 0px 20px 20px rgba(0,0,0,.1); background: var(--white); border-top: 1px solid var(--border); z-index: 999; overflow: hidden; display:none; padding: 0 60px;}
#header .gnb .sub-menu-cmn .inner {display: flex; align-items: start; gap: 40px; width: 100%; height: 100%; margin: 0 auto; transition: .3s; }
#header .gnb .sub-menu-cmn .sub-title {width: 25%; border-radius: 0 0 30px 0; position: relative; padding :50px 0;}
#header .gnb .sub-menu-cmn .sub-title h2 {font-size: 30px; color:var(--text); display: flex; height: auto;}
#header .gnb .sub-menu-cmn .sub-title p {color: var(--text-muted); margin-top: 10px; font-size: var(--fs-20);}

#header .gnb .dep2 {width: calc(75% - 40px); height:100%; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 50px 0 150px 50px; border-left: 1px solid var(--border);}
#header .gnb .dep2 > li { font-size: var(--fs-18); font-weight: 600; }
#header .gnb .dep2 > li > a { display: flex; justify-content: space-between; align-items: center; padding: 15px 15px; width: 100%; border: 1px solid var(--border); border-radius: 10px; color: var(--dark); background-image: linear-gradient(105deg, var(--primary-1) 50%, var(--white) 50.1%); background-color: var(--white); background-repeat: no-repeat; background-size: 250% 100%; background-position: 100% 0; transition: background-position 0.6s ease, color 0.4s ease; color: var(--text);}
#header .gnb .dep2 > li > a::after { content: ''; background: url(/resources/user/eng/images/icon/icon_sprite_main.svg) no-repeat -414px 0; width: 8px; height: 14px; display: block; transition: 0.4s ease;  flex-shrink:0; margin-left:10px;}
#header .gnb .dep2 > li:is(:hover, :focus-within) > a { background-position: 0 0; color: var(--white); }
#header .gnb .dep2 > li:is(:hover, :focus-within) > a::after { filter: invert(1) brightness(10); }
#header .gnb .dep2 > li > a[target=_blank]::after {background-position: -366px 0; width: 18px; height: 18px;}

#header .gnb .dep3 {width: 78%; display: flex; flex-direction: column; padding: 12px 15px; width: 100%; transition: .3s; background: var(--bg); }
#header .gnb .dep3 > li > a {display: block; padding: 4px 0; width: 100%; padding-left: 14px; color: var(--text-muted); transition: color .3s; position: relative; font-size: var(--fs-16); font-weight: 500;}
#header .gnb .dep3 > li > a::before {content: '-';color: var(--primary-1);position: absolute;left: 0; top: 4px; font-weight: 500;}
#header .gnb .dep3 > li > a:hover {background: none;color: var(--primary-1);font-weight: 700; text-decoration: underline;}
#header .gnb .dep3 > li > a[target=_blank]::after { content: ''; background: url(/resources/user/eng/images/icon/icon_sprite_sub.svg) no-repeat -425px -1px; width: 14px; height: 14px; display: inline-block; transition: 0.4s ease; margin-left: 6px;}


#header .util-list {display: flex; align-items: center; justify-content: flex-end; gap: 20px;}
#header .util-list .lang-list {position: relative; font-size: var(--fs-16);}
#header .util-list .lang-list button {display: block; width: 100%;}
#header .util-list .lang-list .btn-lang {display: flex; align-items: center; gap: 10px;}
#header .util-list .lang-list .btn-lang::after { content: '';  display: block;  width: 8px;  height: 8px;  border-bottom: 2px solid currentColor; border-right: 2px solid currentColor;  transform: translateY(-2px) rotate(45deg);  transition: transform 0.3s ease;}
#header.is-active .util-list .lang-list .btn-lang::after {border-color: var(--gray-500);}
#header .util-list .lang-list.active .btn-lang::after {transform: translateY(2px) rotate(-135deg); }
#header .util-list .lang-list .list {opacity: 0; visibility: hidden; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--white); padding: 10px 24px; border-radius: 4px; overflow: auto; z-index: 9999; box-shadow: 0 0 5px rgba(0,0,0,.2);}
#header .util-list .lang-list .list li {padding: 4px 0; color: var(--text);}
#header .util-list .lang-list .list li button {display: flex; align-items: center; gap: 10px; font-weight: 500;}
#header .util-list .lang-list .list li button:hover {color: var(--primary-1); text-decoration: underline;}
#header .util-list .lang-list .list li img {width: 20px;}
#header .util-list .lang-list.active .list {opacity: 1; visibility: visible;}

#header .search-btn {width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;}
#header .search-btn .icon {background: url('/resources/user/eng/images/icon/icon_sprite_main.svg') no-repeat -2px -2px;width: 24px; height: 24px;}
#header .search-panel{position:absolute;top:100%;left:0;width:100%;background:var(--white);border-top:1px solid rgba(0,0,0,0.08);box-shadow:0 12px 30px rgba(0,0,0,0.08);opacity:0;visibility:hidden;transform:translateY(-12px);transition:opacity .3s ease,transform .3s ease,visibility .3s ease;z-index:999;}

#header.search-open .search-panel{opacity:1;visibility:visible;transform:translateY(0);}
#header .search-panel .inner{padding-top:40px;padding-bottom:40px;min-height:280px;background:#F9F9F9;box-shadow:0 20px 20px rgba(0,0,0,.1);}
#header .search-panel-inner{width:100%;max-width:700px;margin:0 auto;}
#header .search-form{position:relative;display:flex;align-items:center;min-height:64px;padding:0 78px 0 0;border:2px solid var(--primary-1);border-radius:999px;background:var(--white);}
#header .search-label{flex-shrink:0;display:inline-flex;align-items:center;height:64px;padding:0 24px 0 28px;font-size:var(--fs-20);font-weight:700;color:var(--primary-1);white-space:nowrap;}
#header .search-input{flex:1 1 auto;min-width:0;height:30px;padding:0 20px 0 0;border:0;background:transparent;font-size:var(--fs-18);color:var(--text);}
#header .search-input::placeholder{color:#8c8c8c;}
#header .search-input:focus{outline:0;}
#header .search-submit{position:absolute;top:-4px;right:-2px;width:70px;height:70px;border:0;border-radius:50%;background:var(--primary-1);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;}
#header .search-submit span {background: url(/resources/user/eng/images/icon/icon_sprite_main.svg) no-repeat -2px -2px; width: 24px; height: 24px; transform: scale(1.3); filter: brightness(10);}
#header .search-form:focus-within{border-color:var(--primary-1);box-shadow:0 0 0 3px rgba(0,85,162,.15);}
#header .search-keyword-wrap{margin-top:18px;display:flex;align-items:flex-start;gap:18px;padding:0 30px;}
#header .keyword-title{flex-shrink:0;padding-top:8px;font-size:var(--fs-16);font-weight:700;color:var(--primary-1);white-space:nowrap;}
#header .keyword-list{display:flex;align-items:center;flex-wrap:wrap;gap:8px;}
#header .keyword-item{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 14px;border:1px solid #d9d9d9;border-radius:999px;background:var(--white);font-size:var(--fs-16);color:#666;transition:.2s ease-in-out;}
#header .keyword-item:hover{border-color:var(--primary-1);color:var(--primary-1);background:#f7fbff;}

#header .util-list .sitemap-btn {display: flex; align-items: center; gap: 10px;}
#header .util-list .sitemap-btn .btn-ic {background: url('/resources/user/eng/images/icon/icon_sprite_main.svg') no-repeat -1207px 0;width: 29px;height: 24px;}

#header .gnb .sub-menu-cmn .sub-title,#header .gnb .sub-menu-cmn .dep2{opacity:0;transform:translateY(-10px);transition:.25s;}
#header .gnb .dep1>li.active .sub-menu-cmn .sub-title,#header .gnb .dep1>li.active .sub-menu-cmn .dep2{opacity:1;transform:translateY(0);}
#header .gnb .dep1>li.active .sub-menu-cmn .dep2{transition-delay:.06s;}

#header span.btn-line {width: 1px; height: 24px; background: #222; opacity: .6;}
#header.is-active span.btn-line { background: #222; opacity: .6;}

@media screen and (max-width: 1400px) {
    #header .head-logo {max-width: 200px;}
    #header .gnb .dep1 {width: 100%; gap: 20px;}
    #header .gnb .dep1 > li {font-size: 20px;}
    #header .util-list .btn-company-intro {font-size: var(--fs-18);}
}
@media screen and (max-width: 1200px) {
    #header .head-top {display: none;}
    #header .gnb {display: none;}
    #header .util-list .btn-company-intro {display: none;}
    #header .util-list .sitemap-btn {display: none;}
    #header .theme-toggle {margin-left: auto; margin-right: 10px;}
}

@media screen and (max-width: 768px) {
    #header .util-list .lang-list {font-size: var(--fs-16);}

    #header .search-panel-inner{width: calc(100% - 40px);}
    #header .search-keyword-wrap {padding: 0 10px;}
    #header .search-label {font-size: 18px;}
}
@media screen and (max-width: 480px) {
    #header .head-logo {margin-right: 15px;}
    #header .theme-toggle {margin-right: 5px; gap: 4px;}
    #header .util-list {gap: 10px;}
    #header .util-list .lang-list > li > button {gap: 0; padding: 6px 10px; box-sizing: border-box;}

    #header .theme-toggle {height: 32px; display: none;}
    #header .lang-list {display: none;}
}


/************************************************** 
    사이트맵
***************************************************/
#header .sitemap-popup {position: fixed;inset: 0;z-index: 9999;background: rgba(0, 0, 0, 0.7);backdrop-filter: blur(8px);display: flex;align-items: center;justify-content: center;opacity: 0;visibility: hidden;transition: all .3s ease;}
#header .sitemap-popup.active {opacity: 1;visibility: visible;}
#header .sitemap-popup a {text-decoration: none;color: inherit; display: block; }
#header .sitemap-popup a[target=_blank] {display: flex !important; align-items: center; gap: 8px;}
#header .sitemap-popup .sitemap-box {width: 95%;max-width: 1800px;max-height: 90vh; background: var(--white);border-radius: 20px;padding: 80px 50px 60px;position: relative;overflow-y: auto; }
#header .sitemap-popup .sitemap-logo {position: absolute;top: 40px;left: 50px;display: flex;align-items: center;}
#header .sitemap-popup .sitemap-logo img {height: 24px;width: auto;}
#header .sitemap-popup .sitemap-cls-btn {position: absolute; top: 32px; right: 32px; width: 24px; height: 24px; background: transparent; border: 0; cursor: pointer; z-index: 10;}
#header .sitemap-popup .sitemap-cls-btn::before, #header .sitemap-popup .sitemap-cls-btn::after {content: ""; position: absolute; top: 50%; left: 50%; width: 100%; height: 2px; background-color: #333; border-radius: 2px;}
#header .sitemap-popup .sitemap-cls-btn::before {transform: translate(-50%, -50%) rotate(45deg);}
#header .sitemap-popup .sitemap-cls-btn::after {transform: translate(-50%, -50%) rotate(-45deg);}
#header .sitemap-popup .sitemap-cls-btn:is(:hover, :focus-visible) {outline-offset: 4px;}
#header .sitemap-popup .sitemap-cls-btn:is(:hover, :focus-visible)::before, #header .sitemap-popup .sitemap-cls-btn:is(:hover, :focus-visible)::after {background-color: var(--primary-1);}
#header .sitemap-popup .menu-wrap {display: flex;justify-content: center; flex-wrap: nowrap; gap: 15px; margin-top: 50px;}
#header .sitemap-popup .menu-list {flex: 0 0 calc(90% / 7); min-width: 150px;box-sizing: border-box;display: block !important;}
#header .sitemap-popup .menu-list .hd {padding-bottom: 15px;border-bottom: 2px solid #333;margin-bottom: 25px;width: 100%; display: block !important;position: relative;text-align: left;}
#header .sitemap-popup .menu-list .hd h3 {font-size: 22px; color: var(--primary-5); word-break: keep-all; margin: 0;padding: 0;line-height: 1.3; font-weight: bold;}
#header .sitemap-popup .menu-list:hover .hd h3 {font-weight: bold; color: var(--primary-1);}
#header .sitemap-popup .menu-list .group:hover .group-title {color: var(--primary-1); text-decoration: underline;}
#header .sitemap-popup .menu-list .list {margin: 0;padding: 0;list-style: none;display: block !important;}
#header .sitemap-popup .menu-list .group {margin-top: 25px;display: block !important;}
#header .sitemap-popup .menu-list .group:first-child {margin-top: 0;}
#header .sitemap-popup .menu-list .group-title {display: block !important;font-size: 17px;color: #333;margin-bottom: 10px;position: relative; font-weight: 600;}
#header .sitemap-popup .menu-list .group:is(:hover, :focus-within) .group-title {color: var(--primary-2); text-decoration: underline; font-weight: bold;}
#header .sitemap-popup .menu-list .group-title[target=_blank]::after { content: ''; background: url(/resources/user/eng/images/icon/icon_sprite_sub.svg) no-repeat -1129px -2px; width: 16px; height: 16px; display: inline-block; vertical-align: middle; margin-left: 8px; margin-top: -2px;}
#header .sitemap-popup .menu-list .depth3 {margin: 0;padding: 0;list-style: none;display: flex;flex-direction: column;gap: 6px;}
#header .sitemap-popup .menu-list .depth3 li a {font-size: 15px;color: #555;font-weight: 500; text-decoration: none;line-height: 1.4;transition: color 0.2s;display: block;}
#header .sitemap-popup .menu-list .depth3 li a:hover {color: var(--text);font-weight: 600;text-decoration: underline;}
#header .sitemap-popup .menu-list .depth3 li a[target=_blank]::after { content: ''; background: url(/resources/user/eng/images/icon/icon_sprite_sub.svg) no-repeat -425px -1px; width: 14px; height: 14px; margin-top: -4px;}
#header .sitemap-popup .sitemap-box::-webkit-scrollbar {width: 8px; }
#header .sitemap-popup .sitemap-box::-webkit-scrollbar-track {background: #f1f1f1; border-radius: 10px;margin: 20px 0; }
#header .sitemap-popup .sitemap-box::-webkit-scrollbar-thumb {background: #ccc;border-radius: 10px;border: 2px solid #f1f1f1;}
#header .sitemap-popup .sitemap-box::-webkit-scrollbar-thumb:hover {background: var(--primary-1);}

@media (max-width: 1600px) {
    #header .sitemap-popup .menu-wrap {flex-wrap: wrap;justify-content: flex-start;gap: 30px 15px;}
    #header .sitemap-popup .menu-list {flex: 0 0 calc(25% - 15px);}
}

@media (max-width: 1024px) {
    #header .sitemap-popup .sitemap-box {padding: 60px 30px;}
    #header .sitemap-popup .menu-list {flex: 0 0 calc(50% - 15px);}
}


/************************************************** 
   모바일 메뉴
***************************************************/
#header .mob-menu-btn {display: none;}
#header .mob-menu-btn .btn-ic {background: url('/resources/user/eng/images/icon/icon_sprite_main.svg') no-repeat -1207px 0;width: 29px;height: 24px;}

.mob-gnb-dim {position: fixed; top: 0; left: 0; width: 100%; height: 100vh;background: rgba(0, 0, 0, 0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;}
.mob-gnb-dim.is-open {opacity: 1; visibility: visible;}

#mob-gnb { position: fixed; top: 0;  right: -100%; width: 375px; max-width: 100vw; height: 100vh; background: #fff; z-index: 9999;  display: flex; flex-direction: column;  box-shadow: 5px 0 15px rgba(0,0,0,0.1);  transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1); visibility: hidden;}
#mob-gnb.is-open {visibility: visible; right: 0; }
.mob-gnb-hd { display: flex; justify-content: space-between; align-items: center;  padding: 0 20px; height: 60px; border-bottom: 1px solid #ddd; }
.mob-gnb-hd .lang-switch { display: flex; align-items: center; font-size: 16px; color: #555; }
.mob-gnb-hd .lang-switch a {display: block;}
.mob-gnb-hd .lang-switch a.active { font-weight: bold; color: #000; }
.mob-gnb-hd .lang-switch .bar { color: #ddd; margin: 0 8px; }

.mob-menu-close { position: relative; width: 24px; height: 24px; background: none; border: none; cursor: pointer; }
.mob-menu-close::before, .mob-menu-close::after { content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 1.5px; background: #333; }
.mob-menu-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mob-menu-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.mob-gnb-body { display: flex; flex: 1; height: calc(100vh - 60px); overflow: hidden; }
.mob-dep-01-list { width: 40%; background: var(--surface); height: 100%; overflow-y: auto; min-width: 120px; }
.mob-dep-01-list > li > .dep-01 { display: block; width: 100%; text-align: left; padding: 18px 16px; font-size: 16px; font-weight: bold; color: #222; }
.mob-dep-01-list > li.active > .dep-01 { background: var(--primary, #00428e); color: #fff; }
.mob-dep-02-container { width: 60%; height: 100%; overflow-y: auto; background: #fff; position: relative; }
.mob-panel { display: none; }
.mob-panel.active { display: block; }
.mob-dep-02-list { padding: 0 16px; }
.mob-dep-02-list > li { border-bottom: 1px solid #ccc; }
.mob-dep-02-list > li > .dep-02 { display: flex; justify-content: space-between; align-items: center; width: 100%; text-align: left; padding: 16px 0; font-size: 15px; color: #222; background: none; font-weight: 500; }
.mob-dep-02-list > li > .dep-02:hover { font-weight: bold; }
.mob-dep-02-list > li.has-child > .dep-02::after { content: ''; display: block; width: 8px; height: 8px; border-bottom: 1.5px solid #888; border-right: 1.5px solid #888; transform: rotate(45deg); transition: transform 0.3s; margin-right: 4px; }
.mob-dep-02-list > li > .dep-02[target="_blank"]::after {content: ''; display: inline-block; background: url(/resources/user/eng/images/icon/icon_sprite_sub.svg) no-repeat -425px -1px; width: 14px; height: 14px; margin-top: -4px; vertical-align: middle;}
.mob-dep-02-list > li.has-child.active > .dep-02::after { transform: rotate(-135deg); border-color: var(--primary, #00428e); }
.mob-dep-02-list > li.has-child.active > .dep-02 { color: var(--primary, #00428e); font-weight: bold; }
.mob-dep-03-list { display: none; background: #f8f9fb; padding: 15px 20px; border-top: 1px solid var(--primary-1); }
.mob-dep-02-list > li.has-child.active > .mob-dep-03-list { display: block; }
.mob-dep-03-list li { margin-bottom: 12px; }
.mob-dep-03-list li:last-child { margin-bottom: 0; }
.mob-dep-03-list li a { display: block; font-size: 14px; color: #555; position: relative; padding-left: 10px; }
.mob-dep-03-list li a::before { content: ''; position: absolute; left: 0; top: 8px; width: 3px; height: 3px; background: #555; border-radius: 50%; }
.mob-dep-03-list li a[target="_blank"]::after {content: ''; display: inline-block; background: url(/resources/user/eng/images/icon/icon_sprite_sub.svg) no-repeat -425px -1px; width: 14px; height: 14px; margin-top: -4px; vertical-align: middle; margin-left: 5px;}
.mob-dep-03-list li a:hover { font-weight: bold; }

@media screen and (max-width: 1200px) {
#header .mob-menu-btn { display: block; }
}

/************************************************** 
    footer
***************************************************/

#footer {background: #1B1D1F;border-radius: 100px 100px 0 0; color: var(--white);}
#footer .inner {padding-top: 80px; padding-bottom: 70px;}
#footer .footer-top {display: flex;justify-content: space-between;align-items: flex-start;gap: 40px;}
#footer .footer-left {display: flex;flex-direction: column; gap: 30px;}
#footer .footer-logo img {height: 36px;}
#footer .footer-info p {margin: 0 0 6px; color: var(--white); }
#footer .family-site-list { margin-left: auto; flex-shrink: 0; }
#footer .family-site-list > li { position: relative; border-radius: 24px; background: var(--gray-400); }
#footer .family-site-list > li button.btn-family { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 12px 24px 12px 30px; color: var(--white); background: transparent; border: none; cursor: pointer; }
#footer .family-site-list > li button.btn-family::after { content: ''; display: block; width: 8px;  height: 8px; border-bottom: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-2px) rotate(45deg);  margin-left: 20px; transition: transform 0.4s;}
#footer .family-site-list > li.on button.btn-family::after { transform: translateY(0) rotate(-135deg);}
#footer .family-site-list > li ul {position: absolute; top: calc(100% + 8px); left: 0; width: 100%; background: var(--gray-400); max-height: 130px; overflow: hidden; overflow-y: auto; display: none; border: 1px solid var(--dark); border-radius: 8px; padding:10px 5px}
#footer .family-site-list > li a {display: block; color: var(--dark); font-weight: 400;}
#footer .family-site-list > li ul li a {padding: 10px 20px;}
#footer .family-site-list > li ul li a:hover {background: #3b82f660;}
#footer .footer-line {height: 1px;background: #bbb;margin: 60px 0 24px;}
#footer .footer-bottom {display: flex;justify-content: space-between;align-items: center;flex-wrap: wrap;gap: 12px;}
#footer .footer-links {display: flex;flex-wrap: wrap;list-style: none;margin: 0;padding: 0;}
#footer .footer-links li::after {content: ''; background: var(--border); width: 1px; height: 15px; display: inline-block; vertical-align: middle; margin: 0 20px}
#footer .footer-links li:last-child:after {display:none;}
#footer .footer-links li a {font-size: var(--fs-16);color: var(--gray-200); font-weight: 500;}
#footer .footer-links li:last-child{border-right: none;}
#footer .copyright {margin-top: 30px;font-size: var(--fs-16); font-weight: 400; color: #aeaeae;}


@media (max-width: 1200px) {
  #footer {border-radius: 40px 40px 0 0;}
  #footer .inner {padding-top: 60px; padding-bottom:60px;}
  #footer .family-site-btn {padding: 14px 24px;gap: 40px;}
}

@media (max-width: 768px) {
    #footer {border-radius: 30px 30px 0 0;}
    #footer .inner {padding-top: 50px;}
    #footer .footer-top {flex-direction: column;gap: 20px;}
    #footer .footer-line {margin: 40px 0 24px;}
    #footer .footer-links li::after {margin: 0 10px;}
    #footer .footer-info p {font-size: 15px;}
  #footer .family-site-list > li ul {max-height:100px}
  #footer .family-site-list > li ul li a {padding:4px 20px; font-size:14px}
    
}


