/* -------------------------------- 

Primary style

-------------------------------- 
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Hind", sans-serif;
  color: #25283D;
  background-color: #ECF0F1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #8F3985;
  text-decoration: none;
}
*/
a{text-decoration:none; border:none;}
a:link{text-decoration:none; border:none;}			/* 기본 */
a:visited{text-decoration:none; border:none;}		/* 클릭후 */
a:active{text-decoration:none; border:none;}		/* 클릭할때 */
a:hover,a:focus{text-decoration:none; border:none;}		/* 마우스오버 */


/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
@media screen and (min-width: 320px), screen and (max-width: 319px) {
	.cd-auto-hide-header {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  color:#ffffff;
  background-color: rgba(0,0,0,0.7);
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  content: "";
  clear: both;  
  display: table;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.cd-auto-hide-header .logo,
.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo {
  left: 5%;
}
.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
  display: block;
}

.cd-auto-hide-header .nav-trigger {
  /* vertically align its content */
  display: table;
  height: 100%;
  padding: 0 1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #f2f2f2;
  font-weight: bold;
  right: 0;
  border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #ffffff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
  /* this is the menu central line */
  margin: 12px auto 14px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger em::after {
  /* this is the menu icon bottom line */
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}

.cd-auto-hide-header.nav-open .nav-trigger em {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
.cd-primary-nav > ul {
  position: absolute;
  z-index: 2;
  top: 45px;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.7);
  display: none;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
.cd-primary-nav > ul a {
  /* target primary-nav links */
  display: block;
  height: 45px;
  line-height: 44px;
  padding-left: 5%;
  color: #ffffff;
  font-size: 1rem;
  border-top: 1px solid #f2f2f2;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
  color: #ffffff;
  background-color:inherit;
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
  /* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
  display: block;
}

.cd-auto-hide-header .logo {
  left: 75px;
}
.cd-primary-nav {float:left;}
.cd-auto-hide-header .nav-trigger {left:0; border-left:0px; border-right:1px solid #f2f2f2;}

.navi_quick_menu_pc {display:none; visibility:hidden;}
.navi_quick_menu_pc a {color:#ffffff; text-decoration:none;}
.navi_quick_menu_pc a:link,a:visited,a:active,a:hover,a:focus {color:#ffffff; text-decoration:none;}

.navi_quick_menu_mobile {display:table; visibility:visible; float:right; height:100%; padding-right:10px;}
.navi_quick_menu_mobile a {color:#ffffff; text-decoration:none;}
.navi_quick_menu_mobile a:link,a:visited,a:active,a:hover,a:focus {color:#ffffff; text-decoration:none;}

.navi_quick_menu_mobile ul {
	display: table-cell; vertical-align: middle; 
	/* reset mobile style */
    position: relative; width: auto; top: 0; right: 10px; padding: 0;
    background-color: transparent; box-shadow: none;
}
.navi_quick_menu_mobile ul li {
	display:inline-block; margin-left:15px; font-size:0.9rem;
}
.navi_quick_menu_mobile ul li a.email{
	padding:8px 20px;
	background:url(/_img/icon_email_white.png) no-repeat;
	background-size:contain;
}
.navi_quick_menu_mobile ul li a.tel{
	padding:7px 10px 4px 20px;
	background:url(/_img/icon_tel_white.png) no-repeat;
	background-size:contain;
}
}


/*========================================================================
  스크린사이즈 - 700px 이상
========================================================================*/
@media screen and (min-width: 700px) {
.cd-auto-hide-header .logo {
  left:20px; margin:0; padding:17px 42px; 
	background:url(/_img/allbino_logo_white.png) no-repeat;
	background-size:contain;
}
	.cd-auto-hide-header {
    height: 80px;
  }
	.cd-auto-hide-header .nav-trigger {
    display: none;
  }
  
.cd-primary-nav {
    /* vertically align its content */
    display: table;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
	left: 120px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 0;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 10px;
    border: none;
  }
	
.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
	display: table-cell;
}


.navi_quick_menu_mobile {display:none; visibility:hidden;}
.navi_quick_menu_pc {
	display:table; visibility:visible; float:right; height:100%; padding-right:10px;
}
.navi_quick_menu_pc ul {
	display: table-cell; vertical-align: middle; 
	/* reset mobile style */
    position: relative; width: auto; top: 0; right: 20px; padding: 0;
    background-color: transparent; box-shadow: none;
}
.navi_quick_menu_pc ul li {
	display:inline-block; margin-left:20px; font-size:0.9rem;
}
.navi_quick_menu_pc ul li.li_tel {
	display:none; visibility:hidden;
}
.navi_quick_menu_pc ul li.li_email_mobile {
	display:none; visibility:hidden;
}
.navi_quick_menu_pc ul li.li_email_tablet {
	display:block; visibility:visible;
}
.navi_quick_menu_pc ul li.li_email {
	display:none; visibility:hidden;
}
.navi_quick_menu_pc ul li a.email{
	padding:2px 0 2px 25px;
	background:url(/_img/icon_email_white.png) no-repeat;
	background-size:contain;
}
.navi_quick_menu_pc ul li a.tel{
	padding:2px 0 2px 22px;
	background:url(/_img/icon_tel_white.png) no-repeat;
	background-size:contain;
}

}

/*========================================================================
  스크린사이즈 - 769px 이상
========================================================================*/
@media screen and (min-width: 769px) {
}

/*========================================================================
  스크린사이즈 - 1025px 이상
========================================================================*/
@media screen and (min-width: 1025px) {
.cd-auto-hide-header .logo {
  left: 30px;
  padding:20px 48px;
}

	.cd-auto-hide-header {
    height: 80px;
  }
	.cd-auto-hide-header .nav-trigger {
    display: none;
  }
  
.cd-primary-nav {
    /* vertically align its content */
    display: table;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
	left: 180px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 30px;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 10px;
    border: none;
  }
	
.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
	display: table-cell;
}


.navi_quick_menu_mobile {display:none; visibility:hidden;}
.navi_quick_menu_pc {
	display:table; visibility:visible; float:right; height:100%; padding-right:10px;
}
.navi_quick_menu_pc ul {
	display: table-cell; vertical-align: middle; 
	/* reset mobile style */
    position: relative; width: auto; top: 0; right: 20px; padding: 0;
    background-color: transparent; box-shadow: none;
}
.navi_quick_menu_pc ul li {
	display:inline-block; margin-left:30px; font-size:0.9rem;
}
.navi_quick_menu_pc ul li.li_tel {
	display:none; visibility:hidden;
}
.navi_quick_menu_pc ul li.li_email_mobile {
	display:none; visibility:hidden;
}
.navi_quick_menu_pc ul li.li_email_tablet {
	display:none; visibility:hidden;
}
.navi_quick_menu_pc ul li.li_email {
	display:block; visibility:visible;
}
.navi_quick_menu_pc ul li a.email{
	padding-left:25px;
	background:url(/_img/icon_email_white.png) no-repeat;
	background-size:contain;
}
.navi_quick_menu_pc ul li a.tel{
	padding-left:18px;
	background:url(/_img/icon_tel_white.png) no-repeat;
	background-size:contain;
}

}


