@charset "utf-8";
@import url(reset.css);

/* CSS에 들어간 항목 : 헤더, top버튼, 디지털 카탈로그 보러가기 버튼 */

html {
    background-color: #273034;
    color: #273034;
    width: 100%;
    position: relative;
    height: auto;
}

body {
    background-color: #f0f0f0;
    max-width: 1200px;
    max-height: 100%;
    min-height: 100%;
    min-width: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
    height: 274px;
    background-color: #273034;
    box-shadow: 2px 2px 14px 6px rgba(0, 0, 0, 0.20);
    margin: 0 auto;
}

.inner {
    width: 1200px;
    height: auto;
    margin: 0 auto;
}

.logo {
    width: 100%;
    display: inline-block;
    margin: 0 auto 0;
}

.logo img {
    width: 230px;
    display: inline-block;
    float: left;
    margin-top: 3%;
}


/*nav*/

#nav {
    float: right;
    z-index: 100;
    position: relative;
    margin-top: -1%;
    text-shadow: 0px 2px 0px #000;
}

#nav ul {
    text-align: right;
}

#nav .about {
    margin: 0 0 1.7%;
}

#nav .about li {
    margin: 0;
}

#nav .work .nav_line {
    width: 100%;
    height: 1px;
    background-color: #e0ad82;
    margin-bottom: 1.7%;
    box-shadow: 0px 2px 0px #000;
}

#nav li {
    margin: 0 7px;
    display: inline-block;
    padding: 0;
    position: relative;
}

#nav li a {
    font: 600 23px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';
    color: #e0ad82;
    transition: all 400ms ease;
    letter-spacing: 1.3px;
    display: inline-block;
}

#nav li a:hover {
    text-decoration: underline;
}

.work p {
    /*이외의 ACTIVE 안되는 메뉴*/
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
    font: 600 21px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';
    color: #e0ad82;
    letter-spacing: 1px;
    display: inline-block;
    cursor: default;
}

.work p:first-child {
    margin-left: 0;
    padding-left: 0;
}

.work p:last-child {
    margin-right: 0;
}

/*mobile menu*/

.flexpanel {
    display: none;
}

.navigation ul li {
    display: none;
}

.footer_nav_info p {
    display: none;
}

.mobile_mini_txt2 {
    display: none;
}


/*top버튼*/

#btn_top {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 24%;
    /* Place the button at the bottom of the page */
    right: 13%;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    background-color: #fff;
    /* Set a background color */
    color: #273034;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 20px;
    /* Some padding */
    border-radius: 100%;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
    text-align: center;
    line-height: 2;
    box-shadow: 2px 3px 14px 6px rgba(0, 0, 0, 0.01);
    width: 35px;
    height: 35px;
}

#btn_top:hover {
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(7px);
    transition: .3s ease;
}

/*드래그 선택 영역*/

::selection {
    color: #e0ad82;
    background: #273034;
}

/*contents*/

.swiper-container {
    width: 100%;
    height: 100%;
}

/*디지털 카탈로그 보러가기 버튼*/

.btn_go {
    width: 140px;
	background-color:#273034;
	display:block;
	cursor:pointer;
	color:#f0f0f0;
	font: 11px 'Cormorant Garamond', 'Garamond', 'Adobe 명조 Std', 'Nanum Myeongjo', 'AppleMyungjo', 'serif';    
    text-align: center;
    letter-spacing: 1.4px;
	padding:20px 32px;
    margin: 18% auto 0;
}

.btn_go:hover {
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(7px);
    transition: .3s ease;
}