.layout {
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: 100%;
}

.blindWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

body {
    /* padding-top: 100px; */
    /* min-width: 1300px; */
    /* max-width: 1920px; */
    margin: 0 auto;
    position:relative;
}

.header {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 60px;
    transition: all .5s;
    z-index: 1500;
    /* max-width: 1920px; */
    margin:0 auto;
    /* background-color: #fff; */
}

.header.scroll .topWrap {
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #064547;
}

.header.active .topWrap {
    height: 100%;
    background-color:#064547;
    background-position: center 100%;
}

.header .topWrap {
    position:relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    padding-left: 20px;
    /* padding-right: 20px; */
    transition:all .5s;
    /* border-bottom:1px solid rgba(255, 255, 255, 0.2); */
}

.header.active .topWrap {
    border-bottom:none;
}

.header .topWrap .leftWrap {
    display: flex;
    align-items: center;
}

.header .topWrap .logo {
    width: 140px;
    /* margin-left: 15px; */
    position:relative;
}

/* .header .topWrap .logo>img {
    transition: all .5s;
}

.header .topWrap .logo>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
}

.header:not(.active):not(.scroll) .topWrap .logo>img:last-child,
.header.active .topWrap .logo>img:first-child,
.header.scroll .topWrap .logo>img:first-child {
    opacity: 0;
} */

/* .header .topWrap .toggleBtn>img {
    transition:all .5s;
}

.header .topWrap .toggleBtn>img:not(:first-child) {
    position:absolute;
}

.header:not(.active) .topWrap .toggleBtn>img:last-child,
.header.active .topWrap .toggleBtn>img:first-child {
    opacity: 0;
} */

.header .topWrap .logo2 {
    width: 70px;
}

.header .topWrap .rightWrap {
    display: flex;
    align-items: center;
}

.header .topWrap .rightWrap .toggleBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    overflow: hidden;
    position:relative;
    transition:all .5s;
}

/* .header.active .topWrap .rightWrap .toggleBtn {
    transform: rotate(-135deg);
} */

.header .topWrap .rightWrap .toggleBtn span {
    width: 6px;
    height: 6px;
    display: block;
    border-radius:100%;
    background-color: #fff;
    transition:all .5s;
    position:absolute;
}

.header.active .topWrap .rightWrap .toggleBtn span,
.header.scroll .topWrap .rightWrap .toggleBtn span {
    background-color: #232323;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(1) {
    top:0;
    left:0;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(2) {
    top:0;
    right:0;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(3) {
    bottom:0;
    right:0;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(4) {
    bottom:0;
    left:0;
}

.header .topWrap .telBtn {
    margin-right: 20px;
    position:relative;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    /* border-right:1px solid rgba(255, 255, 255, 0.2); */
}

/* .header .topWrap .telBtn>img {
    width: 18px;
    transition:all .5s;
}

.header .topWrap .telBtn>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
}

.header:not(.active):not(.scroll) .topWrap .telBtn>img:last-child,
.header.active .topWrap .telBtn>img:first-child,
.header.scroll .topWrap .telBtn>img:first-child {
    opacity: 0;
} */

.header .topWrap .cusBtn {
    width: 20px;
}

.header .topWrap .menu {
    display: flex;
    flex-flow: column;
    height: 100%;
    position:absolute;
    top:60px;
    left:0;
    width: 100%;
    background-color: #064547;
    height: calc(100vh - 60px);
    /* background:url(../../images/common/bg_menu.png) no-repeat center/cover; */
    /* background-color: #fff; */
    padding:30px 30px;
    display: none;
    align-items: center;
}

.header .topWrap .menu>li {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .topWrap .menu>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header .topWrap .menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    font-family: 'NotoKrM';
    font-size: 18px;
    color: #fff;
    width: 100%;
    position: relative;
}

/* .header.active .topWrap .menu>li>a,
.header.scroll .topWrap .menu>li>a {
    color:#333333;
} */

/* .header .topWrap .menu>li>a:before {
    content:'+';
    color: #fff;
    font-size: 20px;
    font-family: 'NanumSL';
}

.header .topWrap .menu>li>a:after {
    content: '+';
    color: #000;
    font-size: 20px;
    font-family: 'NanumSL';
}

.header .topWrap .menu>li.active>a:after {
    content: '-';
} */

.header .topWrap .menu .link {
    width: 65%;
    display: block;
    margin:40px auto 0;
}

.header .topWrap .depth2 {
    width: 100%;
    display: none;
    border-top: 1px solid #dadada;
     background-color: #fff; 
    padding: 10px 0;
}

.header .topWrap .depth2>li:not(:last-child) {
    margin-bottom: 13px;
}

.header .topWrap .depth2>li>a {
    font-family: 'NotoKrR';
    font-size: 15px;
    text-align: center;
    display: block;
    color: #222;
}

.header .topWrap .depth2>li.active>a {
    font-weight: bold;
}

.header .topWrap .depth2>li>a>span {
    display: block;
    font-size: 13px;
    margin-top: 3px;
}

.header .topWrap .depth3 {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.header .topWrap .depth3>li {
    margin:3px 0;
}

.header .topWrap .depth3>li>a {
    color:#876546;
    font-size: 12px;
}

.header .topWrap .rightWrap {
    display: flex;
    height: 100%;
    align-items: center;
}

.header .topWrap .rightWrap .telBtn {
    margin-left: 12px;
}

.header .bottomWrap {
    position:absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: calc(100% - 110px);
    transition:all .5s;
    border-top:1px solid transparent;
}

.header.active .bottomWrap {
    border-top: 1px solid #c9caca;
}

.header .linksWrap {
    position:absolute;
    bottom:30px;
    left:0;
    width: 100%;
    display: none;
}

.header .linksWrap a {
    flex:auto;
    padding:0 15px;
}

.quickWrap {
    position:fixed;
    top:100px;
    right:0;
    width: 95px;
    height: calc(100% - 100px);
    z-index: 10000;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.quickWrap .linkWrap {
    padding:0 17px;
    background-color: #002a60;
    margin-bottom: 96px;
    width: 100%;
    height: 100%;
}

.quickWrap .linkWrap a {
    display: flex;
    justify-content: center;
    padding:20px 0;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

.quickWrap .bottomWrap {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding-bottom: 30px;
}

.quickWrap .bottomWrap .topBtn {
    margin-top: 30px;
}

.quickWrap .open {
    position:absolute;
    right:calc(100% + 20px);
    top:20px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    flex-flow: column wrap;
    /* padding:30px 20px; */
    /* background-color: #f5f5f5; */
}

.footer .cWrap {
    padding:15px 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    /* background-color: #f0f0f0; */
}

.footer .topBtn {
    position:absolute;
    top:0;
    right:10px;
    width: 40px;
    /* box-shadow: 5.313px 5.76px 5px 0px rgba(0, 0, 0, 0.1); */
    /* border-radius:100%; */
}

.footer .topWrap {
    display: flex;
}

.footer .topWrap>* {
    flex:1 1 50%;
    width: 50%;
    max-width: 50%;
}

.footer .linkWrap {
    position:absolute;
    bottom:30px;
    left:0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: .5;
}

.footer .linkWrap a {
    width: auto;
    height: 20px;
    margin:0 10px;
}

.footer .linkWrap a img {
    max-width: 1000000%;
    height: 100%;
    width: auto;
}

.footer>a.link {
    position: absolute;
    bottom: 12%;
    right: 0;
    width: 10%;
    height: 12%;
}

.footer>a.link.link1 {
    right: 56%;
    width: 8%;
}

.footer>a.link.link2 {
    right: 46%;
    width: 8%;
}

.footer>a.link.link3 {
    right: 36%;
    width: 8%;
}

.popupWrap {
    position:absolute;
    top:100px;
    left:300px;
    width: 400px;
    border: 1px solid #bab7aa;
    display: flex;
    flex-flow: column wrap;
    z-index: 1000;
}

.popupWrap .imageWrap {
    flex:1;
    width: 100%;
}

.popupWrap .btnsWrap {
    height: 45px;
    display: flex;
    background-color: #000000;
    border-top: 1px solid #bab7aa;
}

.popupWrap .closeBtn {
    position:absolute;
    top:20px;
    right:15px;
    z-index: 10;
}

.popupWrap .btnsWrap a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-family: 'NotoKrR';
    color:#d5cfc0;
}

.popupWrap .btnsWrap a:first-child {
    border-right: 1px solid #bab7aa;
}

.iframeWrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rotateAni {
    position: relative;
    overflow: hidden;
}

.rotateAni img {
    position: absolute;
    top: 0;
    max-width: 10000%;
    height: 100%;
}

.beBtnWrap {
    display: flex;
}

.beBtnWrap>* {
    width: 50%;
}