﻿/* fonts --------------------------------------------- */
@font-face {
    font-weight: normal;
    font-family: 'Montserrat';
    src: url("/portfolio/seoulbd/static/fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
}

/* SpokaHanSansNeo */
@font-face {
    font-family: 'SpokaHanSansNeo';
    src: url('/static/fonts/SpoqaHanSans_TTF_subset/SpoqaHanSansNeo-Regular.woff') format('woff');
    ;
    font-style: normal;
}

@font-face {
    font-family: 'SpokaHanSansNeoM';
    src: url('/static/fonts/SpoqaHanSans_TTF_subset/SpoqaHanSansNeo-Medium.woff') format('woff');
    ;
    font-style: normal;
}

@font-face {
    font-family: 'SpokaHanSansNeoB';
    src: url('/static/fonts/SpoqaHanSans_TTF_subset/SpoqaHanSansNeo-Bold.woff') format('woff');
    ;
    font-style: normal;
}


/* ---------------------------------------------  */
body {
    font-family: 'SpokaHanSansNeo', sans-serif;
    letter-spacing: -.05em;
    font-size: 20px;
    overflow-x: hidden;
}

div,
p,
span,
header,
section,
footer,
nav,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    word-break: keep-all;
    letter-spacing: -.05em;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000
}

button {
    cursor: pointer;
}

img,
video {
    max-width: 100%;
    max-height: 100%;
}

button {
    background: transparent;
    border: none;
}

marquee {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
}

:after,
:before {
    content: '';
    display: none;
}

/* 헤더 --------------------------------------------- */
#header {
    background: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    /* height:50px; */
    z-index: 30;
    transition: background-color .25s ease-in-out;
}

#header.open {
    background: #000;
}

#header>.inner {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    height: 50px;
    padding: 0 70px;
}

#header .logo {
    position: absolute;
    height: 34px;
    left: 22px;
    top: 8px;
}

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

#header .logo img {
    width: 100%;
    height: 100%;
}

#header .menu {
    height: 50px;
    display: flex;
    align-items: center;
}

#header .menu .depth01 {
    display: flex;
}

#header .menu .depth01 li {
    position: relative;
    margin: 0 11px;
    padding: 15px 0;
}

#header .menu .depth01 a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    font-family: 'SpokaHanSansNeoM';
}

#header .menu .depth01 li a:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 1px;
    left: 50%;
    background: #fff;
    transform: translateX(-50%);
    transition: .3s;
}

#header .menu .depth01>li>a:hover:after {
    width: 100%;
}

#header .menu .depth01 li .depth02 {
    position: absolute;
    width: 100px;
    padding: 8px 0;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    background: #1a1a1a;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition-duration: .25s;
    transition-property: opacity, visibility, top;
    transition-timing-function: ease-in-out;
    z-index: 10;
}

#header .menu .depth01 li .depth02 li {
    text-align: center;
    padding: 0;
}

#header .menu .depth01 li .depth02 li a {
    line-height: 1.8;
}

#header .menu .depth01 li:hover>.depth02 {
    opacity: 1;
    visibility: inherit;
    top: 40px
}

#header .header_link {
    position: absolute;
    right: 0;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(-50%);
}

#header .header_link li {
    width: 20px;
    height: 20px;
    text-align: center;
    align-content: center;
}

#header .header_link .mypage a {
    display: inline-block;
    vertical-align: middle;
}

#header .header_link .mypage a img {
    width: 14px;
    height: 14px;
}

#header .header_link .sitemap {
    position: relative;
    width: 20px;
}

#header .header_link .sitemap button {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    padding: 3px;
}

#header .header_link .sitemap button span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    width: 14px;
    height: 1px;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    transition: all .25s ease-in-out;
}

#header .header_link .sitemap button span:before,
#header .header_link .sitemap button span:after {
    display: block;
    position: absolute;
    width: 14px;
    height: 1px;
    background: #fff;
    left: 0;
    right: 0;
    transition: all .25s ease-in-out;
}

#header .header_link .sitemap button span:before {
    top: -5px;
}

#header .header_link .sitemap button span:after {
    top: 5px;
}

#header .mo_btn {
    display: none;
    position: absolute;
    top: 15px;
    left: 12px;
    width: 20px;
    height: 20px;
}

#header .mo_btn .menu_btn span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    width: 14px;
    height: 1px;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    transition: all .25s ease-in-out;
}

#header .mo_btn .menu_btn span:before,
#header .mo_btn .menu_btn span:after {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 14px;
    height: 1px;
    background: #fff;
    transition: all .25s ease-in-out;
}

#header .mo_btn .menu_btn span:before {
    top: -5px;
}

#header .mo_btn .menu_btn span:after {
    top: 5px;
}

/* side menu  --------------------------------------------- */
#header .sitemap_menu {
    display: none;
    position: absolute;
    top: 50px;
    left: calc(50vw + 256px);
    right: 0;
    z-index: 2;
    height: calc(100vh - 50px);
    padding: 0 15px;
    background: #1a1a1a;
    text-align: left;
    transition: background-color .25s ease-in-out;
}

#header .sitemap_menu>ul {
    position: relative;
}

#header .sitemap_menu>ul li {
    display: block;
    margin: 0;
    padding: 0;
}

#header .sitemap_menu>ul>li>a {
    display: block;
    position: relative;
    padding: 12px 0;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
}

#header .sitemap_menu>ul>li+li {
    border-top: 1px solid #333;
}

#header .sitemap_menu>ul>li.has>a {
    pointer-events: none;
}

#header .sitemap_menu>ul>li.has>ul {
    opacity: 1;
    visibility: inherit;
    top: 53px;
    padding: 12px 10px 10px;
    background: #111;
}

#header .sitemap_menu>ul>li.has>ul li a {
    color: #fff;
    font-size: 12px;
    line-height: 22px;
}

@media (max-width:1024px) {
    #header .inner {
        padding: 0 15px;
    }

    #header .logo {
        left: 0;
        right: 0;
        width: 35px;
        margin-left: auto;
        margin-right: auto;
    }

    #header .menu {
        display: none;
    }

    #header .header_link {
        right: 12px;
    }

    #header .header_link .sitemap {
        display: none;
    }

    #header .mo_btn {
        display: block
    }

    /* side menu */
    #header .menu {
        /* display:none; */
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        height: calc(100vh - 50px);
        padding: 0 15px;
        background: #1a1a1a;
        text-align: left;
        transition: background-color .25s ease-in-out;
    }

    #header.open .menu {
        background: #000;
        z-index: 11;
    }

    #header .menu>.depth01 {
        flex-direction: column;

    }

    #header .menu>.depth01>li {
        display: block;
        margin: 0;
        padding: 0;
    }

    #header .menu>.depth01>li+li {
        border-top: 1px solid #333;
    }

    #header .menu>.depth01>li>a {
        padding: 11px 0;
        font-size: 13px;
    }

    #header .menu .depth01>li>a:hover:after {
        display: none;
    }

    #header .menu>.depth01>li.has a {
        pointer-events: none;
    }

    #header .menu>.depth01>li.has ul.active {
        opacity: 1;
        visibility: inherit;
        top: 53px;
        padding: 12px 10px 10px;
        background: #111;
        position: relative;
        width: 100%;
        top: 0;
        border-radius: 0;
        box-sizing: border-box;
    }

    #header .menu>.depth01>li .depth02 li {
        margin: 0;
        padding: 0;
    }

    #header .menu>.depth01>li.has ul.active li a {
        color: #fff;
        font-size: 12px;
        line-height: 22px;
        text-align: left;
    }
}

/* sub_header --------------------------------------------- */
.sub_header {
    position: relative;
    background: rgba(34, 34, 34, 0.9);
    z-index: 0;
}

.sub_header .inner {
    max-width: 1024px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub_header .sub_title {
    font-size: 13px;
    color: #fff;
    line-height: 50px;
}

.sub_header .sub_menu {
    display: flex;
    gap: 20px;
}

.sub_header .sub_menu li a {
    color: #fff;
    font-size: 12px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 22px;
}

.sub_header .sub_menu li.type1 a {
    padding: 0 12px;
    border-radius: 11px;
    background: #e4a369;
}

/* sidebar */
.sidebar {
    position: fixed;
    width: 60px;
    height: 100vh;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    animation: sidebarAnimation 1s 1.5s both;
}

.sidebar .sidebar_wrap {
    height: 370px;
    background: #1a1a1a;
    margin: 0 auto;
    padding: 28px 0;
    border-radius: 30px;
}

.sidebar .quick_list li a {
    position: relative;
    height: 41px;
    padding-top: 10px;
    display: block;
    text-align: center;
}

.sidebar .quick_list li a:hover {
    background: #232323;
}

.sidebar .quick_list li a img {
    opacity: .4;
}

.sidebar .quick_list li a .quick_text {
    position: absolute;
    width: 97px;
    top: 0;
    right: calc(100% - 10px);
    border-radius: 4px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    line-height: 41px;
    transition: all .25s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.sidebar .quick_list li a:hover .quick_text {
    opacity: 1;
    visibility: inherit;
    right: calc(100% + 10px);
}

.sidebar .quick_list li a:hover .quick_text:before {
    position: absolute;
    display: block;
    top: 0;
    right: -9px;
    bottom: 0;
    width: 0;
    height: 0;
    margin: auto 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid #1a1a1a;
}

.sidebar .quick_call {
    display: inline-block;
    margin-top: 11px;
    padding-top: 19px;
    border-top: 1px solid #313131;
}

.sidebar .quick_call img {
    margin: auto;
    display: block;
}

.sidebar .quick_call p {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    margin-top: 6px;
    line-height: 14px;
}

.sidebar .quick_call p span {
    display: inline-block;
    margin-top: 7px;
    color: #e9ad79;
    font-size: 16px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 18px;
}

@media(max-width:1024px) {
    .sidebar {
        display: none;
    }
}

@keyframes sidebarAnimation {
    0% {
        opacity: 0;
        right: -60px;
    }
    100% {
        opacity: 1;
        right: 30px;
    }
}

/* footer ---------------------------------------------  */
#footer {
    background: #000;
}

#footer .inner {
    max-width: 1024px;
    padding: 30px 22px 110px 22px;
    margin: auto;
}

#footer .inner .footer_link {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

#footer .inner .footer_link a,
#footer .inner .footer_link button {
    color: #fff;
    font-size: 12px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 18px;
}

#footer .inner .footer_info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgb(38, 38, 38);
}

#footer .inner .footer_info p {
    display: flex;
    gap: 20px;
}

#footer .inner .footer_info p span {
    color: #6e6e73;
    font-size: 11px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 18px;
}

/* footer cs */
.foot_cs {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 18px 15px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-size: 0;
    z-index: 99;
    animation: csAnimation 1s 1s both;
}

.foot_cs .cs_box .cs_title {
    color: #fff;
    font-size: 18px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 54px;
    vertical-align: top;
}

.foot_cs .cs_box select {
    width: 200px;
    height: 34px;
    margin-top: 10px;
    margin-left: 46px;
    padding: 0 23px 0 19px;
    border: 0;
    background: #fff url("/portfolio/seoulbd/static/images/icon/select_arrow.png") no-repeat right 14px center;
    color: #000;
    font-size: 12px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 34px;
    vertical-align: top;
    appearance: none;
    transition: width .25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.foot_cs .cs_box input[type="text"] {
    width: 200px;
    height: 34px;
    margin-top: 10px;
    margin-left: 16px;
    padding: 0 19px;
    border: 0;
    background: #fff;
    color: #000;
    font-size: 12px;
    line-height: 34px;
    vertical-align: top;
    transition: width .25s ease-in-out;
}

.foot_cs .cs_box .agree_check {
    display: inline-block;
    position: relative;
    margin-top: 18px;
    margin-left: 20px;
    padding-left: 24px;
    vertical-align: top;
}

.foot_cs .cs_box .agree_check input {
    display: none;
}

.foot_cs .cs_box .agree_check label {
    color: #fff;
    line-height: 18px;
    display: flex;
    align-items: center;
}

.foot_cs .cs_box .agree_check label:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 2px;
    background: #000;
    box-sizing: border-box;
}

.foot_cs .cs_box .agree_check input:checked+label:before {
    border: 0;
    border-radius: 0;
    background: #d7a176 url('/static/images/icon/cs_check.png') no-repeat center;
}

.foot_cs .cs_box .agree_check .check_more {
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
}

.foot_cs .cs_box button {
    width: 250px;
    height: 54px;
    margin-left: 55px;
    background: #d7a176;
    color: #fff;
    font-size: 24px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 54px;
}

.foot_cs .cs_box button img {
    margin-top: 17px;
    margin-left: 20px;
    vertical-align: top;
}

@keyframes csAnimation {
    0% {
        opacity: 0;
        bottom: -90px;
    }

    100% {
        opacity: 1;
        bottom: 0;
    }
}

@media(max-width:1524px) {
    .foot_cs .cs_box .cs_title {
        font-size: 14px;
        line-height: 40px;
    }

    .foot_cs .cs_box select,
    .foot_cs .cs_box input[type="text"] {
        width: 130px;
        height: 30px;
        margin-top: 5px;
        line-height: 30px;
    }

    .foot_cs .cs_box select {
        margin-left: 10px;
    }

    .foot_cs .cs_box input[type="text"] {
        margin-left: 6px;
    }

    .foot_cs .cs_box .agree_check {
        margin-top: 12px;
        margin-left: 10px;
    }

    .foot_cs .cs_box button {
        width: 130px;
        height: 30px;
        margin-top: 5px;
        margin-left: 20px;
        font-size: 16px;
        line-height: 30px;
    }

    .foot_cs .cs_box button img {
        height: 13px;
        margin-top: 9px;
        margin-left: 10px;
    }
}


/* modal */
.modal_box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1521px;
    height: 776px;
    background: #151516;
    box-shadow: 27px 34px 139px #000;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* #modal .modal_box .modal_body { display:flex; } */
.modal_box .modal_body>div {
    display: inline-block;
    vertical-align: middle;
}

.modal_box .modal_img_box {
    position: aboslute;
    top: 0;
    left: 0;
}

.modal_box .modal_text_box {
    color: #fff;
    margin-left: 24px;
}

.modal_box .modal_text_box h3 {
    font-size: 42px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 44px;
}

.modal_box .modal_text_box p {
    margin-top: 15px;
    color: #a1a1a6;
    font-size: 17px;
    line-height: 19px;
}

.modal_box .modal_text_box ul {
    margin-top: 15px;
}

.modal_box .modal_text_box ul li {
    position: relative;
    font-size: 17px;
    line-height: 27px;
    color: #a1a1a6;
    padding-left: 7px;
}

.modal_box .modal_text_box ul li:before {
    display: inline-block;
    position: absolute;
    width: 2px;
    height: 2px;
    background: #a1a1a6;
    left: 0;
    top: 13px;
}

.modal_box .modal_text_box ul+ul {
    margin-top: 25px;
}

.modal_box .modal_text_box .item_link {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 44px;
}

.modal_box .modal_text_box .item_link a span {
    color: #a1a1a6;
    font-size: 17px;
    line-height: 27px;
    vertical-align: top;
    margin-right: 15px;
}

.close_btn {
    position: absolute;
    top: 32px;
    right: 32px;
}

.close_btn button {
    color: #a1a1a6;
    font-size: 14px;
    line-height: 16px;
    padding-top: 40px;
    background: url('/static/images/icon/popup_close.png')no-repeat center top;
    text-transform: uppercase;
}

/* #modal{ display:none; } */
.modal_box {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.modal_box.open {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.no-scroll {
    overflow: hidden;
}


/* content ---------------------------------------------  */
/* top button --------------------------------------------- */
.floating {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 38px;
    right: 38px;
    z-index: 999;
    font-size: 0;
    line-height: 0;
    transition-property: opacity, visibility, top, bottom;
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
}

.floating.show {
    top: auto;
    bottom: 38px;
    opacity: 1;
    visibility: inherit;
}

.floating .top {
    background: url('/static/images/icon/top_white.png')no-repeat center top / 45px auto;
    width: 45px;
    height: 38px;
    transition: background .1s .15s ease-in-out;
    font-size: 0;
}

.floating .memo {
    position: relative;
    margin: 10px 0 0 3px;
}

.floating .memo .memo_icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    padding: 7px;
    border-radius: 100%;
    background: #1c1b17;
    box-shadow: 0 10px 30px rgba(43, 33, 5, .4);
}

.floating .memo .memo_icon img {
    width: 26px;
    height: 26px;
}

.floating .memo_text {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 40px;
    border-radius: 20px;
    background: #1c1b17;
    box-shadow: 0 10px 30px rgba(43, 33, 5, .4);
    color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    transition: all .5s ease-in-out;
    opacity: 0;
}

.floating .memo .memo_icon:hover+.memo_text {
    opacity: 1;
    visibility: inherit;
    right: 48px;
}

/* 메인 공통 --------------------------------------------- */
#wrapper {
    position: relative;
    width: 100%;
    min-height: calc(10vh - 225px);
    margin-top: 50px;
    overflow: hidden;
    background: #000;
}

#container {
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.section {
    position: relative;
    z-index: 1;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
}

.section .section_inner {
    position: relative;
    max-width: 1564px;
    padding: 0 20px;
    margin: 0 auto;
}

.section .section_inner .title {
    font-size: 65px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 67px;
    color: #888;
}

.section .section_box:after {
    display: block;
    clear: both;
}

.section_flex_box {
    display: flex;
}

.flex_margin {
    display: flex;
}

.flex_margin .flex_left {
    padding-left: 75px;
}


@media(max-width:1024px) {

    .modal_box {
        width: 96%;
        height: auto;
        padding: 120px 20px 60px;
        margin: 0 20px;
        left: 0;
        transform: translateY(-50%);
    }

    .modal_box .modal_img_box {
        width: 250px;
        left: auto;
        bottom: auto;
    }

    .modal_box .modal_body {
        display: flex;
        justify-content: center;
    }

    .modal_box .modal_text_box h3 {
        font-size: 30px;
    }

    .modal_box .modal_text_box ul li {
        font-size: 15px;
        line-height: 25px;
    }

    .section .section_inner {
        max-width: 782px;
        padding: 0 10px;
    }

    .section .section_inner .title {
        font-size: 32px;
        line-height: 33px;
    }

    .section .section_box .section_box_right {
        float: none;
        display: block;
        /* width:100%; */
        margin-top: 40px;
    }

    .section .section_box .section_box_left {
        float: none;
        width: 100%;
        display: block;
    }

    .flex_margin .flex_left {
        padding-left: 0;
    }
}

@media(max-width:580px) {
    .flex_margin {
        flex-direction: column;
    }

    .flex_margin .flex_left,
    .flex_margin .section_flex_right {
        width: 100%
    }

    .modal_box {
        width: calc(100% - 40px);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .modal_box .modal_body {
        flex-direction: column;
    }

    .modal_box .modal_img_box {
        margin: auto;
    }

    .modal_box .modal_text_box {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* 그라데이션 --------------------------------------------- */
.gradient_text {
    background: linear-gradient(to right, #f1c195, #bc8a5e);
    color: transparent;
    -webkit-background-clip: text;
}

.black_text {
    color: #000;
}

.sub_text {
    color: #000;
    font-size: 19px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 21px;
}

.text1 {
    color: #888;
    font-size: 19px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 29px;
}

.text1 span {
    color: #fff;
    font-family: 'SpokaHanSansNeoB';
    font-size: 19px;

}

.text2 {
    color: #888;
    font-size: 19px;
    font-family: 'SpokaHanSansNeoM';
    line-height: 29px;
}

.text2 span {
    color: #000;
    font-family: 'SpokaHanSansNeoB';
    font-size: 19px;
}

.text3 {
    font-size: 28px;
    font-family: 'SpokaHanSansNeoB';
}

.sub_title {
    color: #888;
    font-size: 56px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 68px;
}

.sub_title span {
    color: #000;
    font-family: 'SpokaHanSansNeoB';

}



.video_box1 .video_btn {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0;
}


.video_box1 .video_btn.black {
    background: url('/static/images/icon/refresh_black.png');
}

.video_box1 .video_btn.white {
    background: url('/static/images/icon/refresh_white.png');
}


.video_box .video_btn {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0;
    transition: all .25s ease-in-out
}

.video_box .video_btn.black {
    background: url('/static/images/icon/refresh_black.png');
}

.video_box .video_btn.white {
    background: url('/static/images/icon/refresh_white.png');
}

.video_btn {
    opacity: 0;
    visibility: hidden;

}

.video_btn.active {
    opacity: 1;
    visibility: visible;
}

.cont_black {
    background: #000;
}

.cont_white {
    background: #fff;
}

@media(max-width:1024px) {

    .text1,
    .text1 span {
        font-size: 14px;
        line-height: 20px;
    }

    .text2,
    .text2 span {
        font-size: 14px;
        line-height: 20px;
    }

    .video_box1 .video_btn {
        right: 14px;
        bottom: 14px;
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }

    .video_box .video_btn {
        right: 20px;
        bottom: 20px;
        width: 16px;
        height: 16px;
        background-size: 16px 16px !important
    }

}

/* box common --------------------------------------------- */
.white_card {
    position: relative;
    max-width: 1386px;
    margin: 0 auto;
    background: #fff;
    border-radius: 17px;
    overflow: hidden;
}

.white_card .inner {
    /* max-width:880px; */
    margin: 0 auto;
}

.white_card .inner:after {
    display: block;
    clear: both;
}

.white_card .cont_left h3 p,
.white_card .cont_left h3 p span {
    font-size: 40px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 52px;
}

.white_card .phone_img {
    position: absolute;
    bottom: 0;
}

.white_card .cont_left .text_box {
    margin-top: 35px;
}

.white_card .cont_left .text_box p+p {
    margin-top: 35px;
}

@media(max-width:1024px) {
    .white_card .inner {
        max-width: 440px;
    }

    .white_card .cont_left h3 p,
    .white_card .cont_left h3 p span {
        font-size: 22px;
        line-height: 28px;
    }
}

@media(max-width:580px) {
    .white_card .inner .cont_left {
        float: none;
    }
}

/* info 공통 화면 */
/* 다른 치과에서 치료 받았어요 */
.section.info {
    padding: 180px 66px 0;
}

.section.info .white_card {
    padding: 120px 0;
}

.section.info .white_card .cont_left {
    max-width: 880px;
    margin: auto;
}

.section.info .white_card .cont_left h3 {
    margin-top: 35px;
}

.section.info .white_card .phone_img {
    width: 644px;
    height: 685px;
    right: 0;
    background: url("/portfolio/seoulbd/static/images/main/intro_section13_bg01.png") no-repeat;
    overflow: hidden;
}

.section.info .white_card .phone_img .bx-wrapper {
    position: absolute;
    top: 240px;
    left: 82px;
    right: 154px;
    bottom: 0;
}

/* .section.info{ 
    padding-top:180px;
} */
.section.info .section_inner {
    max-width: 1386px;
    margin: 0 auto;
}

.phone_img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 644px;
    height: 685px;
    background: url("/portfolio/seoulbd/static/images/main/intro_section13_bg01.png") no-repeat;
}

/* 진료시간, 찾아오시는길 */
.section.info .section_flex_box {
    max-width: 1386px;
    gap: 2%;
    margin: 100px auto
}

.section.info .section_flex_box .white_card2 {
    width: 49%;
    height: 685px;
    padding: 90px 0;
    background: #fff;
    border-radius: 17px;
    text-align: center;
}

.section.info .section_flex_box .white_card2 .title {
    font-size: 64px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 66px;
}

.section.info .section_flex_box .white_card2 .title_box {
    margin-top: 28px;
}

.section.info .section_flex_box .white_card2 .title_box p {
    font-size: 28px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 39px;
}

.section.info .section_flex_box .white_card2 ul {
    margin: 33px auto 0;
}

.section.info .section_flex_box .white_card2 ul li,
.section.info .section_flex_box .white_card2 ul li .justify_text,
.section.info .section_flex_box .white_card2 ul li span {
    font-size: 28px;
    font-family: 'SpokaHanSansNeoB';
    line-height: 40px;
}

.section.info .section_flex_box .white_card2 ul li .justify_text {
    width: 77px;
    text-align: justify;
    display: inline-block;
    vertical-align: top;
    height: 0;
    margin-right: 40px;
}

.section.info .section_flex_box .white_card2 ul li .justify_text:after {
    display: inline-block;
    width: 100%;
}

.section.info .section_flex_box .white_card2 .text2 {
    margin-top: 35px;
}

.section.info .section_flex_box .white_card2 .text2 .underline {
    border-bottom: 1px solid #000;
}

.section.info .section_flex_box .white_card2 .service_center {
    max-width: 410px;
    margin: 30px auto 0;
    text-align: left;
}

.section.info .section_flex_box .white_card2 .service_center li {
    color: #888;
}

.section.info .section_flex_box .white_card2 .service_center li span {
    margin-left: 40px;
    color: #000;
}

.section.info .section_flex_box .white_card2 .map {
    margin-top: 10px
}

.section.info .section_flex_box .white_card2 .map .root_daum_roughmap {
    margin: 0 auto;
}

/* 카카오맵 주소 및 전화번호 숨기기 */
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .section_address,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .section_tel,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .lst_address,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .lst_tel,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .wrap_address,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .wrap_tel,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .info_address,
.section.info .section_flex_box .white_card2 .map .root_daum_roughmap .info_tel {
    display: none !important;
}


/* info section n03 */
.info_section.n03 .video_box {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 37px;
    overflow: hidden;
}

.info_section.n03 .flex_justify_center {
    display: flex;
    justify-content: center;
    margin-top: 45px
}

.info_section.n03 .flex_justify_center .flex_left h3 {
    color: #fff;
    font-family: 'SpokaHanSansNeoB';
    font-size: 40px;
    line-height: 52px;
    margin-top: 49px;
}

.info_section.n03 .flex_justify_center .flex_right {
    padding-left: 100px;
}

.info_section.n03 .flex_justify_center .flex_right .text1+.text1 {
    margin-top: 45px
}

.info_section.n04 {
    margin-top: 100px;
    text-align: center;
}

.info_section.n04 .slide_common {
    margin-left: -10rem;
    margin-right: -10rem;
}

.info_section.n04 .slide_common .swiper-slide {
    max-width: 701px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;

}

/* 이용약관 팝업 */
.popup_wrap,
.popup_wrap .popup {
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease-in-out;
}

.popup_wrap.active,
.popup_wrap .popup.active {
    opacity: 1;
    visibility: inherit;
}

.popup_wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.3);
}

.popup_wrap .popup {
    position: fixed;
    top: 55%;
    left: 50%;
    width: 80vw;
    height: 80vh;
    background-color: #151516;
    box-shadow: 27px 34px 139px black;
    transform: translate(-50%, -50%);
}

.popup_wrap .popup.active {
    top: 50%;
}

.popup_wrap .popup .popup_close {
    position: absolute;
    top: 40px;
    right: 32px;
    color: #a1a1a6;
    font-size: 14px;
    text-align: center;
    line-height: 16px;
}

.popup_wrap .popup .popup_close img {
    display: block;
    margin: 0 auto 10px auto;
}

.popup_wrap .popup.popup_agree {
    padding: 100px 35px 45px 35px;
}

.popup_wrap .popup.popup_agree .agree_title {
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.popup_wrap .popup.popup_agree .agree_box {
    position: relative;
    height: 100%;
}

.popup_wrap .popup.popup_agree .agree_box textarea {
    position: relative;
    width: 100%;
    height: calc(100% - 58px);
    margin-top: 10px;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    word-break: keep-all;
    border: none;
    font-family: 'SpokaHanSansNeoM';
}

@media(max-width:1524px) {
    .section.info {
        padding: 90px 20px 0;
    }

    .section.info .white_card {
        padding: 120px 20px;
    }

    .section.info .white_card .cont_left {
        max-width: 100%;
    }

    .section.info .section_flex_box .white_card2 .service_center li span {
        font-size: 28px;
        font-family: 'SpokaHanSansNeoB';
        line-height: 40px;
    }
}

@media(max-width:1024px) {
    .section.info {
        padding-left: 0;
        padding-right: 0;
    }

    .section.info .n01,
    .section.info .n02,
    .section.info .n03 {
        padding: 0 33px;
    }

    .section.info .white_card {
        max-width: 693px;
        padding: 60px 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .white_card .cont_left {
        float: none;
        max-width: 100%;
        padding: 0 20px;
    }

    .white_card .cont_left .text_box {
        margin-top: 17px;
    }

    .white_card .cont_left .text_box p+p {
        margin-top: 17px;
    }

    .section.info .white_card .cont_left .icon {
        width: 25px;
    }

    .section.info .white_card .cont_left h3 {
        margin-top: 17px;
    }

    .section.info .white_card .cont_left h3 p {
        font-size: 20px;
        line-height: 26px;

    }

    .section.info .white_card .phone_img {
        right: -40px;
        width: 322px;
        height: 343px;
        background-sizE: 322px auto;
    }

    .section.info .white_card .phone_img .bx-wrapper {
        top: 120px;
        left: 42px;
        right: 80px;
    }

    .section.info .section_flex_box {
        margin: 52px 0 0;
    }

    .section.info .section_flex_box .white_card2 {
        padding: 35px 20px;
        border-radius: 8px;
        height: 430px;
    }

    .section.info .section_flex_box .white_card2 .title {
        font-size: 32px;
        line-height: 34px;
    }

    .section.info .section_flex_box .white_card2 .title_box {
        margin-top: 19px;
    }

    .section.info .section_flex_box .white_card2 .title_box p {
        font-size: 16px;
        line-height: 22px;
    }

    .section.info .section_flex_box .white_card2 ul {
        max-width: 190px;
        margin: 21px auto 0;
    }

    .section.info .section_flex_box .white_card2 ul li,
    .section.info .section_flex_box .white_card2 ul li .justify_text {
        font-size: 16px;
        line-height: 24px;
    }

    .section.info .section_flex_box .white_card2 ul li {
        text-align: left;
    }

    .section.info .section_flex_box .white_card2 ul li .justify_text {
        width: 45px;
        margin-right: 10px;
    }

    .section.info .section_flex_box .white_card2 .text2 {
        margin-top: 15px;
        font-size: 12px;
        line-height: 1.4
    }

    .section.info .section_flex_box .white_card2 .text2 span {
        font-size: 12px;
        line-height: 1.2
    }

    /* .section.info .section_flex_box .white_card2 .map{ height:190px; } */
    .section.info .section_flex_box .white_card2 .map .root_daum_roughmap {
        width: 100% !important;
    }

    .section.info .section_flex_box .white_card2 .service_center {
        margin-top: 15px;
        max-width: 15rem;
    }

    .section.info .section_flex_box .white_card2 .service_center li,
    .section.info .section_flex_box .white_card2 .service_center li span {
        font-size: 14px;
        line-height: 16px;
        margin-top: .625rem;
    }

    .section.info .section_flex_box .white_card2 .service_center li span {
        margin-left: 20px;
    }

    .root_daum_roughmap .wrap_map {
        height: 9rem !important;
    }

    .root_daum_roughmap .wrap_controllers .wrap_btn_roadview .txt {
        font-size: 12px;
    }

    /* 치료 받고 싶어도.. */
    .info_section.n03 {
        margin-top: 50px;
    }

    .info_section.n03 .flex_justify_center {
        justify-content: flex-start;
    }

    .info_section.n03 .flex_justify_center .flex_left img {
        width: 25px;
    }

    .info_section.n03 .flex_justify_center .flex_left h3 {
        font-size: 20px;
        line-height: 26px;
        margin-top: 10px;
    }

    .info_section.n03 .flex_justify_center .flex_right {
        padding-left: 30px;
    }

    .info_section.n04 {
        margin-top: 50px;
    }

    .info_section.n03 .video_box {
        width: 100%;
    }

    .info_section.n04 .slide_common {
        margin-left: 0;
        margin-right: 0;
    }

    .info_section.n04 .slide_common .swiper-slide {
        width: 340px;
    }

}

@media(max-width:580px) {
    .non {
        display: none;
    }

    .section_flex_box {
        flex-direction: column
    }

    .section.info .white_card {
        padding-bottom: 0;
    }

    .section.info .white_card .phone_img {
        position: relative;
        bottom: 0;
        left: calc(50% - 145px);
        right: auto;

    }

    .section.info .section_flex_box {
        max-width: 100%;
        gap: 20px;
    }

    .section.info .section_flex_box .white_card2 {
        width: 100%;
        height: auto;
    }

    .info_section.n03 .video_box {
        max-width: 100%;
        border-radius: 18px;
    }

    .info_section.n03 .flex_justify_center {
        flex-direction: column;
        gap: 20px
    }

    .info_section.n03 .flex_justify_center .flex_right {
        padding-left: 0;
    }

    .info_section.n03 .flex_justify_center .flex_right .text1+.text1 {
        margin-top: 20px;
    }

    #footer {
        padding-bottom: 180px;
    }

    #footer .inner .footer_info p {
        display: inline-block;
    }

    .popup_wrap .popup .popup_close {
        top: 30px;
        right: 20px;
    }

    #footer .inner .footer_link {
        gap: 10px;
    }
}
