/* PC Header */
header {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #313131;
}

.main-header {
    top: 0;
    position: absolute;
    z-index: 9999999;
}
h1.navbar-header {
    width: 212px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
nav ul.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
nav ul.navbar-nav > li {
    margin: 0 3rem;
    position: relative;
}
nav ul.navbar-nav > li > a {
    position: relative;
    font-size: 1.9rem;
    font-weight: 400;
}
nav ul.navbar-nav > li.on > a {
    color: #00506b;
    font-weight: bold;
}
nav ul.navbar-nav > li > a:hover {
    font-weight: bold;
}
nav ul.navbar-nav > li > a:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -37px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #00506b;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
nav ul.navbar-nav > li a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
header.main-header.navbar-fixed-top nav ul.navbar-nav > li > a {
    color:#313131 !important
}
header.main-header.navbar-fixed-top nav ul.navbar-nav > li > a:hover {
    color:#cc9062 !important
}
.main-header nav ul.navbar-nav > li > a:hover {
    color: #cc9062
}
header.navbar-fixed-top nav ul.navbar-nav > li > a:before {
    bottom: -27px;
}
.main-header.navbar-fixed-top nav ul.navbar-nav > li > a:before {
    bottom: -26px;
}
nav ul.navbar-nav > li.on > a:before,
header.navbar-fixed-top nav ul.navbar-nav > li.on > a:before {
    background: transparent;
    background: none;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #00506b;
}
header.navbar-fixed-top nav ul.navbar-nav > li:before {
    bottom: -27px;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/* SNS */
.header-sns {
    display: flex;
    align-items: center;
}
.header-sns li {
    position: relative;
}
.header-sns li:last-child {
    margin-left: 33px;
}
.header-sns li a {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: bilo, sans-serif;
    font-weight: normal;
}
.header-sns li a:hover {
    color: #313131;
}
.header-sns li a svg {
    margin-right: 7px;
}
.header-sns li a:hover svg * {
    fill: #313131;
}
.header-inquiry {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin-left: 20px;
    padding: 0 15px;
    background-color: #00506b;
    font-size: 14px;
}
.header-inquiry:hover {
    background-color: #cc9062;
    color: #ffffff;
}
.header-inquiry img {
    width: auto;
    margin-right: 10px;
}

/* Main Header */
.main-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.main-header nav ul > li.on a::before,
.main-header nav ul > li:hover a::before {
    background-color: #cc9062;
}
.main-header nav ul > li > a:hover,
.main-header .header-sns li a:hover,
.main-header .nav > li.on > a {
    color: #ffffff;
}
.main-header .header-sns li a:hover svg * {
    fill: #ffffff;
}

/* Header fixed */
header.navbar-fixed-top {
    width: 100%;
    height: 80px;
    position: fixed !important;
    background: #ffffff;
    border-bottom:1px solid rgba(0,0,0,0.15);
    /* border-bottom: 0; */
    color: #313131;
    z-index: 99999;
}
header.navbar-fixed-top h1.navbar-header {
    width: 180px;
}
header .fixed-logo {
    display: block;
}
header .navbar-logo,
.main-header .fixed-logo,
.main-header.navbar-fixed-top .navbar-logo,
header.navbar-fixed-top .navbar-logo {
    display: none;
}
.main-header .navbar-logo,
header.navbar-fixed-top .fixed-logo {
    display: block;
}
header.navbar-fixed-top .header-sns li a:hover {
    color: #313131;
}
header.navbar-fixed-top .header-sns li a:hover svg * {
    fill: #313131;
}
header.navbar-fixed-top .header-inquiry {
    color: #ffffff;
}
/*  Header 미디어쿼리 */
@media all and (max-width: 1400px) {
    h1.navbar-header {
        width: 180px;
    }
    nav ul.navbar-nav > li {
        margin: 0 1.5rem;
    }
    nav ul.navbar-nav > li a.nav-link {
        font-size: 1.6rem;
    }
    .header-sns li:last-child {
        margin-left: 20px;
    }
    .header-sns li a {
        font-size: 1.3rem;
    }
    .header-sns li a svg {
        width: 17px;
    }
}
@media all and (max-width: 1200px) {
    header .pc-menu,
    header .header-right {
        display: none;
    }
    nav {
        justify-content: center;
        height: 80px;
        padding: 0 5%;
        border-bottom: 1px solid #e9e5d9;
    }
    nav.navbar-fixed-top {
        padding: 5px 0;
        height: 60px;
    }
    .mobile-menu h1.navbar-header {
        width: 191px;
    }
    .mobile-menu-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-slider-sns {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        font-size: 12px;
    }
    .menu-slider-sns li {
        margin: 0 7px;
    }
    .menu-slider-sns a {
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
    }
    .menu-slider-sns li img {
        width: 17px;
        margin-right: 5px;
    }
}
@media all and (max-width: 640px) {
    header,
    header.navbar-fixed-top {
        height: 50px;
    }
    h1.navbar-header,
    header.navbar-fixed-top .fixed-logo {
        width: 120px;
    }
}

/* footer */
footer {
    position: relative;
    background: #313131;
}
footer a:hover {
    color: #cc9062;
}
footer .ft-tit {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    display: block;
}
footer .ft-top {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
footer .ft-top .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .sitemap {
    display: flex;
    align-items: center;
}
footer .sitemap li {
    display: flex;
    align-items: center;
}
footer .sitemap li:not(:last-child) {
    margin-right: 30px;
}
footer .sitemap li a {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
}
footer .sitemap li a:hover {
    color: #cc9062;
}
footer .btn-blue {
    width: 160px;
    height: 50px;
    background-color: #00506b;
    border: 1px solid #00506b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
}
footer .btn-blue:hover {
    border: 1px solid #cc9062;
    background-color: transparent;
}
footer .ft-mid {
    color: rgba(255, 255, 255, 0.5);
    padding: 70px 0 110px;
    font-weight: 300;
}
footer .ft-mid .layout {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
footer .ft-mid .flex-left {
    width: 30%;
}
footer .ft-mid .flex-right {
    width: 60%;
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
    font-weight: 300;
}
footer .flex-inner {
    display: flex;
    flex-direction: column;
}
footer .flex-inner:first-of-type {
    padding-right: 4%;
}
footer .ft-mid-info:not(:first-of-type),
footer .ft-mid-sns {
    margin-top: 45px;
}
footer .ft-mid-cs {
    display: flex;
    flex-direction: column;
    height: 100%;
}
footer .ft-mid-cs .ft-logo {
    display: block;
    max-width: 216px;
}
footer .ft-mid-cs .contact {
    display: flex;
    flex-direction: column;
    margin-top: 55px;
}
footer .ft-mid-cs .contact .contact-center {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
footer .ft-mid-cs .contact .contact-center em {
    font-size:2rem;
    font-weight: inherit;
    color: #cc9062;
    display: block;
}
footer .ft-mid-cs .contact .contact-center .call2 {
    font-size: 1.9rem;
}
footer .ft-mid-cs .contact .contact-center:last-of-type {
    margin-bottom: 0;
}
footer .ft-mid-cs .contact span {
    color: rgba(255, 255, 255, 1);
    font-size: 1.6rem;
    font-weight: bold;
}
footer .ft-mid-cs .contact strong {
    font-size: 4rem;
    font-weight: bold;
    color: #cc9062;
}
footer .ft-mid-cs .contact strong a:hover {
    color:#FFAB6A
}
footer .ft-mid-info {
    width: 100%;
}
footer .ft-mid-info p {
    margin-bottom: 5px;
}
footer .ft-mid dt {
    float: left;
}
footer .ft-mid dd,
footer .ft-mid-sns li {
    margin-bottom: 5px;
}
footer .ft-mid-info dd {
    padding-left: 120px;
}
footer .ft-mid-hours dd {
    width: 100%;
    padding-left: 115px;
}
footer .ft-mid dd::after {
    content: "";
    display: table;
    clear: both;
}
footer .ft-mid-hours {
    width: 100%;
}
footer .ft-btm {
    height: 80px;
    padding-bottom: 30px;
}
footer .ft-btm .layout {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}
footer .ft-btm span {
    position: absolute;
    z-index: 0;
    display: block;
    margin: 0 auto;
}
footer .ft-btm .copyright {
    position: relative;
    z-index: 1;
}

/* 푸터 미디어쿼리*/
@media all and (max-width: 1000px) {
    footer .ft-mid-cs .ft-logo {
        max-width: 190px;
    }
    footer .ft-tit {
        margin-bottom: 15px;
    }
    footer .ft-mid {
        padding: 40px 0 90px;
    }
    footer .ft-mid .layout {
        flex-direction: column;
        justify-content: flex-start;
    }
    footer .ft-mid .flex-left,
    footer .ft-mid .flex-right {
        width: 100%;
    }
    footer .ft-mid .flex-right {
        margin-top: 30px;
    }
    footer .sitemap li:not(:last-child) {
        margin-right: 20px;
    }
    footer .ft-mid-cs .contact {
        margin-top: 30px;
    }
    footer .ft-mid-info {
        width: 100%;
    }
}
@media all and (max-width: 640px) {
    footer .ft-top .layout {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .ft-mid-info:not(:first-of-type),
    footer .ft-sns {
        margin-top: 20px;
    }
    footer .ft-tit {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    footer .btn-blue {
        margin-top: 20px;
        width: 150px;
        height: 45px;
    }
    footer .sitemap {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    footer .sitemap li:not(:last-child) {
        margin-right: 0;
    }
    footer .sitemap li {
        width: 33%;
        margin-bottom: 5px;
    }
    footer .sitemap li a {
        font-size: 1.4rem;
    }
    footer .ft-mid {
        padding: 30px 0 60px;
    }
    /* footer .ft-mid-cs {
            margin-bottom:20px
        }         */
    footer .ft-mid-cs .ft-logo {
        max-width: 150px;
    }
    footer .ft-mid-cs .contact,
    footer .ft-mid-cs .contact .contact-center {
        margin-bottom: 20px;
    }
    footer .ft-mid-cs .contact em {
        font-size:1.8rem
    }
    footer .ft-mid-cs .contact strong {
        font-size: 3rem;
    }
    footer .ft-mid .flex-right {
        flex-direction: column;
        font-size: 1.4rem;
    }
    /* footer .ft-mid-info,
        footer .ft-mid-hours {
            width:100%;
            margin-bottom:20px
        } */
    footer .ft-mid-hours,
    footer .ft-mid-sns {
        margin-top: 20px;
    }
    footer .ft-btm {
        height: 60px;
        padding-bottom: 15px;
    }
    footer .ft-btm span {
        width: 60px;
        height: 60px;
    }
    footer .ft-btm .copyright {
        font-size: 1.4rem;
    }
}

/* 서브 상단 */
aside {
    padding-top: 100px;
    position: relative;
}
aside .sub-top .layout {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
aside .aside-title {
    font-size: 6rem;
    font-weight: bold;
    color: #313131;
}
aside .aside-title img {
    width: auto;
    height: 60px;
}
aside .aside-visual {
    width: 100%;
    height: 397px;
    margin-top: 30px;
}
.about .aside-visual {
    background: center / cover url("/public/images/about.jpg") no-repeat;
}
.damages .aside-visual {
    background: center / cover url("/public/images/damages.jpg") no-repeat;
}
.divorce .aside-visual {
    background: center / cover url("/public/images/divorce.jpg") no-repeat;
}
.bankruptcy .aside-visual {
    background: center / cover url("/public/images/bankruptcy.jpg") no-repeat;
}
.criminal .aside-visual {
    background: center / cover url("/public/images/criminal.jpg") no-repeat;
}
.success .aside-visual {
    background: center / cover url("/public/images/success.jpg") no-repeat;
}
.inquiry .aside-visual {
    background: center / cover url("/public/images/inquiry.jpg") no-repeat;
}
.faq .aside-visual {
    background: center / cover url("/public/images/faq.jpg") no-repeat;
}
.news .aside-visual {
    background: center / cover url("/public/images/news.jpg") no-repeat;
}

/* 네비게이션 영역 */
.breadcrumbs {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.breadcrumbs .home {
    width: 64px;
    height: 64px;
    background-color: #f6f6f6;
    border: 1px solid #e6e6e6;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumbs .crumbs {
    width: 190px;
    height: 64px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    margin-left: 5px;
    position: relative;
}
.breadcrumbs .crumbs-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    cursor: pointer;
}
.breadcrumbs .crumbs-title strong {
    font-size: 1.8rem;
    font-weight: 500;
    color: #313131;
}
.breadcrumbs .crumbs-title.on strong {
    color: #00506b;
}
.breadcrumbs .crumbs-title span {
    width: 12px;
    transform: rotate(90deg);
}

/* 드롭다운 메뉴 */
.breadcrumbs .dropdown {
    width: 190px;
    position: absolute;
    background: #fff;
    z-index: 100;
    /* box-shadow: 0px 3px 5px 0px rgba(61, 40, 40 , 0.1); */
    border: 1px solid #e6e6e6;
    border-width: 0px 1px 1px 1px;
    left: -1px;
}
.breadcrumbs .dropdown > li {
    overflow: hidden;
    color: #313131;
    height: 40px;
    font-size: 1.6rem;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s height cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.3s padding cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.3s margin cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.3s 0.1s;
}
.breadcrumbs .dropdown > li:first-child {
    border-top: 1px solid #e6e6e6;
}
.breadcrumbs .dropdown > li > a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
}
.breadcrumbs .dropdown > li.on > a,
.breadcrumbs .dropdown > li:hover > a {
    background: #00506b;
}
.breadcrumbs .dropdown > li.on > a,
.breadcrumbs .dropdown > li > a:hover {
    font-weight: bold;
    color: #ffffff;
}
.breadcrumbs .crumbs:not(:hover) .dropdown > li {
    visibility: hidden;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}
/* 서브상단 미디어쿼리*/
@media all and (max-width: 1000px) {
    aside {
        padding-top: 60px;
    }
    aside .sub-top .layout {
        z-index: 1;
    }
    aside .aside-title {
        font-size: 4rem;
    }
    aside .aside-visual {
        height: 300px;
    }
    .breadcrumbs .home {
        width: 50px;
        height: 50px;
    }
    .breadcrumbs .crumbs {
        height: 50px;
    }
}
@media all and (max-width: 640px) {
    aside {
        padding-top: 40px;
    }
    aside .aside-title {
        font-size: 3.5rem;
        position: relative;
        z-index: 1;
    }
    aside .aside-visual {
        height: 230px;
    }
    aside .sub-top .layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .breadcrumbs {
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }
    .breadcrumbs .home {
        width: 12%;
        max-width: 40px;
        height: 45px;
        padding: 5px;
    }
    .breadcrumbs .crumbs {
        width: 44%;
        height: 45px;
    }
    .breadcrumbs .crumbs-title {
        padding: 0 10px;
    }
    .breadcrumbs .crumbs-title strong {
        font-size: 1.4rem;
    }
    .breadcrumbs .crumbs1 .dropdown,
    .breadcrumbs .crumbs2 .dropdown {
        width: 101.2%;
    }
    .breadcrumbs .dropdown > li {
        height: 35px;
        font-size: 1.4rem;
    }
    .breadcrumbs .dropdown > li > a {
        height: 35px;
        padding: 0 10px;
    }
}
