@charset "utf-8";




.nav-menus-wrapper{
	overflow-x: hidden;
}

.btn-show{
	padding: 10px 20px;
	color: #fff;
	cursor: pointer;
	border: none;
	background-color: #9fa7b0;
	transition: background .3s;
}
.btn-show:hover{
	background-color: #A0D468;
}

.zoom-in{
    -webkit-animation: zoomIn 400ms ease both;
    -moz-animation: zoomIn 400ms ease both;
    -o-animation: zoomIn 400ms ease both;
    animation: zoomIn 400ms ease both;
}
@-webkit-keyframes zoomIn {
    0% { -webkit-transform: scale(.6); }
    100% { -webkit-transform: scale(1); }
}
@keyframes zoomIn {
    0% { transform: scale(.6); }
    100% { transform: scale(1); }
}
.zoom-out{
    -webkit-animation: zoomOut 400ms ease both;
    -moz-animation: zoomOut 400ms ease both;
    -o-animation: zoomOut 400ms ease both;
    animation: zoomOut 400ms ease both;
}
@-webkit-keyframes zoomOut {
    0% { -webkit-transform: scale(1); }
    100% { -webkit-transform: scale(.6); }
}
@keyframes zoomOut {
    0% { transform: scale(1); }
    100% { transform: scale(.6); }
}

.navigation7{
	background-color: #9fa7b0;
}
.logo_title {
	width: 230px;
	height: 50px;
}
/****************************************
*****************************************
CORE STYLES
*****************************************
****************************************/

/*=== NAVIGATION ======================*/
.navigation, 
.navigation *{
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;

}
.navi_wrapper{
	overflow: hidden; /*float clear*/
	zoom:1; /*IE6*/
	position: relative;/*DW*/
	
	
}
.navigation{
	width: 100%;
	height: 70px;
	display: table;
	position: relative;
	z-index: 10;
	background: #fff;
	border-bottom: 1px solid #efefef;
	/* filter:alpha(opacity=50);
    -moz-opacity: 0.8;
    opacity: 0.8; */

    -webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	
}

.navigation:hover{
	
	filter:alpha(opacity=50);
    -moz-opacity: 1;
    opacity: 1;
}
.navigation-portrait{
	height: 48px;
}

/* Fixed navigation */
.navigation-fixed{
	position: fixed;
	top: 0;
	left: 0;
	margin: 0 auto !important;
}

/* Hidden navigation */
.navigation-hidden{
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/*=== RIGHT ALIGMENT FOR ELEMENTS =======*/
.align-to-right{
	float: right;
}

@media screen and (max-width: 999px){

.align-to-right{
	float: none;
}
.all_text_center{
	text-align: center;
}

}
/*=== NAVIGATION HEADER =================*/
.nav-header{
	float: left;
	display: block;
	margin-left: 10px;
	padding: 12px 0 5px 0;
	
}
@media screen and (max-width: 999px){
.nav-header{
	padding: 5px 0;
}
}
/* Header in hidden navigation */
.navigation-hidden .nav-header{
	display: none;
}

/*=== BRAND TEXT ========================*/
.nav-brand{
	
	color: #70798b;
	text-decoration: none !important;
}

.nav-brand:hover,
.nav-brand:focus{
	color: #70798b;
}
.navigation-portrait .nav-brand{
	font-size: 18px;
	line-height: 48px;
}

/*=== IMAGE LOGO ========================*/
.nav-logo > img{
	height: 48px;
	margin: 11px auto;
	padding: 0 15px;
	float: left;
}
.nav-logo:focus > img{
	outline: initial;
}
.navigation-portrait .nav-logo > img{
	height: 36px;
	margin: 6px auto 6px 15px;
	padding: 0;
}

/*=== TOGGLE BUTTON =====================*/
.nav-toggle{
	width: 40px;
	height: 40px;
	padding: 6px 2px 0 5px;
	position: absolute;
	top: 50%;
	margin-top: -18px;
	right: 15px;
	display: none;
	cursor: pointer;
	background: #275DAD;
}
.nav-toggle:after { 
    content: "NAVI";
    font-size: 10px;
    display:block;
	letter-spacing: 0.5px;
	margin-top: 20px;
	color: #fff;
	width: 100%;
	text-align: center;
	font-family: 'Hind', sans-serif;
 }

#navigation6 .nav-header .nav-toggle .me{
	display: block;
	margin: 20px 0 0 0;
	font-size: 11px;
	font-weight: bold;
	color: #fff;
}
.closed_text{
	float: right;
}

.nav-toggle:before{
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0.50em 0 0 #fff, 0 1em 0 0 #fff;
}
.navigation-portrait .nav-toggle{
	display: block;
}

/*=== NAVIGATION MENUS WRAPPER ===========*/
/*=== (OFFCANVAS PANEL ON MOBILE) ========*/
.navigation-portrait .nav-menus-wrapper{
	width: 320px;
	height: 100%;
	top: 0;
	left: -400px;
	position: fixed;
	background-color: #fff;
	z-index: 20000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition-duration: .8s;
	transition-timing-function: ease;
}

/* Offcanvas on right side */
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right{
	left: auto;
	right: -400px;
}

/* Offcanvas open */
.nav-menus-wrapper.nav-menus-wrapper-open{
	left: 0;
}
.nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open{
	right: 0;
}

/* Close button for Offcanvas */
.nav-menus-wrapper-close-button{
	width: 35px;
	height: 35px;
	margin: 10px 20px;
	display: none;
	float: right;
	color: #FFFFFF;
	font-size: 23px;
	cursor: pointer;
	text-align: center;
    background: #275DAD;
	
}

/*=== close ===============
.nav-menus-wrapper-close-button:after { 
    content: "close";
    font-size: 12px;
    display:block;
	letter-spacing: 0.5px;
	float:left;
	margin-top: 10px;
	padding-left: 5px;
 }
 */
 
.navigation-portrait .nav-menus-wrapper-close-button{
	display: block;
	width: 35px;
	
}

/*=== MENUS (FIRST LEVEL) ===============*/
.nav-menu{
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	float: left;
}
.navigation-portrait .nav-menu{
	width: 100%;
}

/* Centered menu */
.navigation-landscape .nav-menu.nav-menu-centered{
	float: none;
	text-align: center;
}

/* Menu itens */
.nav-menu > li{
	display: inline-block;
	float: left;
	text-align: left;
}
.navigation-portrait .nav-menu > li{
	width: 100%;
	position: relative;
	border-top: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li:last-child{
	border-bottom: solid 1px #f0f0f0;
}
.nav-menu + .nav-menu > li:first-child{
	border-top: none;
}

/* Menu items in centered menus */
.navigation-landscape .nav-menu.nav-menu-centered > li{
	float: none;
}

/* Menu links */
.nav-menu > li > a{
	height: 70px;
	padding: 26px 10px;
	display: inline-block;
	text-decoration: none;
	font-size: 15px;
	color: #333;
	transition: color .3s, background .3s;
	font-weight: bold;
}
@media screen and (max-width:768px) {
  .nav-menu > li > a{
	height: 70px;
	padding: 26px 12px;
	display: inline-block;
	text-decoration: none;
	font-size: 15px !important;
	color: #222;
	transition: color .3s, background .3s;
}
}
.navigation-portrait .nav-menu > li > a{
	height: auto;
}
.nav-menu > li:hover > a,
.nav-menu > .active > a,
.nav-menu > .focus > a{
	color: #222;
}
.navigation-portrait .nav-menu > li > a{
	width: 100%;
	padding: 12px 15px 12px 26px;
}

.nav-menu > .arrow_right > a:before{
	position: relative;
    content: "\f105";
    font-family: FontAwesome;
	 color: #222;
	 margin-right: 5px;
	 font-weight: bold;
	 
	
}
.nav-menu > .arrow_right > a:hover:before{
	color: #222;
	animation: arrow .5s ease-out forwards;
}

@keyframes arrow {
   0% {
    left: 0px;
  }
  50% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}

@media screen and (max-width:480px) {
    .nav-menu > .arrow_right > a:before{
	position: relative;
    content: "\f105";
    font-family: FontAwesome;
	 color: #222;
	 margin-right: 7px;
	 right: -95%;
	
}
.nav-menu > .arrow_right > a:hover:before{
	color: #BF949F;
	animation: arrow .5s ease-out forwards;
}
@keyframes arrow {
   0% {
    left: 95%;
  }
  50% {
    left: 90%;
  }
  100% {
    left: 95%;
  }
}
	
}

.nav-menu > .mail > a:before{
	position: relative;
    content: "\f003";
    font-family: FontAwesome;
	 color: #222;
	 margin-right: 5px;
	 
	
}
.nav-menu > .mail > a:hover:before{
	color: #222;
	animation: arrow .5s ease-out forwards;
}

@keyframes arrow {
   0% {
    left: 0px;
  }
  50% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}

@media screen and (max-width:480px) {
    .nav-menu > .mail > a:before{
	position: relative;
    content: "\f003";
    font-family: FontAwesome;
	 color: #222;
	 margin-right: 7px;
	 right: -95%;
	
}
.nav-menu > .mail > a:hover:before{
	color: #BF949F;
	animation: arrow .5s ease-out forwards;
}
@keyframes arrow {
   0% {
    left: 95%;
  }
  50% {
    left: 90%;
  }
  100% {
    left: 95%;
  }
}
	
}

li a .fa{
	-webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.fa-facebook-official{
	color: #315096;
}
.fa-facebook-official:hover{
	color: #999;
}
.fa-twitter{
	color: #55acee;
}
.fa-twitter:hover{
	color: #999;
}



/*
.social-links .fa-instagram{
	color: #3f729b;
}
.social-links .fa-instagram:hover{
	color: #999;
}
*/



/* Menu item with icons and text */
.nav-menu > li > a > i,
.nav-menu > li > a > [class*="ion-"]{
	width: 18px;
	height: 16px;
	line-height: 16px;
	-ms-transform: scale(1.4);
	transform: scale(1.4);
}
.nav-menu > li > a > [class*="ion-"]{
	width: 16px;
	display: inline-block;
	transform: scale(1.8);
}

/* Menu item with social icons */
.navigation-portrait .nav-menu.nav-menu-social{
	width: 100%;
	text-align: center;
}
.nav-menu.nav-menu-social > li{
	text-align: center;
	float: none;
	border: none !important;
}
.navigation-portrait .nav-menu.nav-menu-social > li{
	width: auto;
}
.nav-menu.nav-menu-social > li > a > [class*="ion-"]{
	font-size: 12px;
}
.nav-menu.nav-menu-social > li > a > .fa{
	font-size: 14px;
}
.navigation-portrait .nav-menu.nav-menu-social > li > a {
	padding: 15px;
}

/*=== SUBMENU INDICATORS ================*/
.submenu-indicator{
	margin-left: 6px;
	margin-top: 6px;
	float: right;
	transition: all .3s;
}
.navigation-portrait .submenu-indicator{
	width: 54px;
	height: 44px;
	margin-top: 0;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	z-index: 20000;
}

/* Chevron icon */
.submenu-indicator-chevron{
	height: 6px;
	width: 6px;
	display: block;
	border-style: solid;
	border-width: 0 1px 1px 0;
	border-color: transparent #70798b #70798b transparent;
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: border .3s;
}
.navigation-portrait .submenu-indicator-chevron{
	position: absolute;
	top: 18px;
	left: 24px;
}

.nav-menu > li:hover > a .submenu-indicator-chevron,
.nav-menu > .active > a .submenu-indicator-chevron,
.nav-menu > .focus > a .submenu-indicator-chevron{
	border-color: transparent #A0D468 #A0D468 transparent;
}

/* Indicator to up */
.navigation-portrait .submenu-indicator.submenu-indicator-up{
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

/*=== OVERLAY PANEL =====================*/
.nav-overlay-panel{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: none;
	z-index: 19999;
}

/* Prevent scrolling on body */
.no-scroll{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/****************************************
*****************************************
ADITIONAL STYLES
Check the features below and delete the
styles that you are not using
*****************************************
****************************************/

/*=== SEARCH PANEL ====================*/
.nav-search{
	height: 70px;
	float: right;
	z-index: 19998;
}
.navigation-portrait .nav-search{
	height: 48px;
	padding: 0 10px;
	margin-right: 52px;
}

/* Search in hidden navigation */
.navigation-hidden .nav-search{
	display: none;
}

/* Search button */
.nav-search-button{
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	cursor: pointer;
	background-color: #fbfcfd;
}

/* Search icon */ 
.nav-search-icon{
	width: 14px;
    height: 14px;
	margin: 2px 8px 8px 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #70798b;
    text-align: left;
    text-indent: -9999px;
	border: 2px solid;
	border-radius: 50%;
	-webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
	transition: color .3s;
}
.nav-search-icon:after, 
.nav-search-icon:before {
    content: '';
    pointer-events: none;
}
.nav-search-icon:before {
    width: 2px;
    height: 11px;
    top: 11px;
	position: absolute;
    left: 50%;
	border-radius: 0 0 1px 1px;
	box-shadow: inset 0 0 0 32px;
	transform: translateX(-50%);
}
.nav-search-button:hover .nav-search-icon{
	color: #A0D468;
}
.navigation-portrait .nav-search-button{
	width: 50px;
	height: 48px;
	line-height: 46px;
	font-size: 22px;
}

/* Form */
.nav-search > form{
	width: 100%;
	height: 100%;
	padding: 0 auto;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fff;
	z-index: 99;
}
.nav-search-inner{
	width: 70%;
	height: 70px;
	margin: auto;
	display: table;
}
.navigation-portrait .nav-search-inner{
	height: 48px;
}

.nav-search-inner input[type=text],
.nav-search-inner input[type=search]{
	height: 70px;
	width: 100%;
	margin: 0;
	padding: 0 12px;
	font-size: 26px;
	text-align: center;
	color: #70798b;
	outline: none;
	line-height: 70px;
	border: none;
	background-color: transparent;
	transition: all .3s;
}
.navigation-portrait .nav-search-inner input[type=text],
.navigation-portrait .nav-search-inner input[type=search]{
	height: 48px;
	font-size: 18px;
	line-height: 48px;
}

/* Close button for search form */
.nav-search-close-button{
	width: 28px;
	height: 28px;
	display: block;
	position: absolute;
	right: 20px;
	top: 20px;
	line-height: normal;
	color: #70798b;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
}
.navigation-portrait .nav-search-close-button{
	top: 10px;
	right: 14px;
}

/*=== NAVIGATION BUTTON ================*/
.nav-button{
	font-family: "Hiragino Kaku Gothic ProN","meiryo", sans-serif;
	margin:10px 15px 0;
	padding: 8px;

	display: inline-block;
	color: #fff;
	letter-spacing: 1px !important;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	transition: opacity .3s;
	-webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  
}
.nav-button:hover,
.nav-button:focus{
	color: #fff;
	text-decoration: none;
	/* opacity: 0.5; */
	
}
.navigation-portrait .nav-button{
	width: calc(100% - 52px);
	margin: 17px 26px;
}

.nav-button {
  display: inline-block;
 
  text-align: center;
  text-decoration: none;
 
  outline: none;
}
.nav-button::before,
.nav-button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.nav-button {
  position: relative;
  background-color: #9acbfb;
  border-radius: 2px;
  border: 2px solid #275DAD;
  color: #275DAD;
  border-radius: 3px;
 
  -webkit-transition: none;
  transition: none;
 -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.nav-button:hover {
  background-color: #9acbfb;
  color: #275DAD;
}
.nav-button:active {
  top: 3px;
  box-shadow: none;
}
.nav-button .fa{
	background: #ffffff;
	color: #275DAD;
	font-size: 18px;
	font-weight: bolder;
	padding: 5px;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #275DAD;
}


/*=== NAVIGATION TEXT ==================*/
/*.nav-text{
	margin: 25px 15px;
	display: inline-block;
	color: #FFFFFF;
	font-size: 14px;
}
.navigation-portrait .nav-text{
	width: calc(100% - 52px);
	margin: 12px 26px 0;
}
.navigation-portrait .nav-text + ul{
	margin-top: 15px;
}*/

/*=== NAVIGATION TEXT ==================*/
.nav-text{
	margin: 20px 15px  0px !important;
	display: inline-block;
	color: #70798b;
	font-size: 16px;
	
}
.nav_mg_t20{
	border-bottom: 1px solid #111;
}
.all_text_center{
	text-align: center;
}
.navigation-portrait .nav-text{
	/*width: calc(100% - 52px);*/
	margin: 12px 10px 0;
}
.navigation-portrait .nav-text + ul{
	margin-top: 15px;
}

/****************************************
*****************************************
DROPDOWN EXTENSION
This extension provides the use of 
dropdowns in navigation.
*****************************************
****************************************/

/*=== DROPDOWN ========================*/
.nav-dropdown{
	min-width: 180px;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	list-style: none;
	z-index: 98;
	white-space: nowrap;
}
.navigation-portrait .nav-dropdown{
	width: 100%;
	position: static;
	left: 0;
}
.nav-dropdown .nav-dropdown{
	left: 100%;
}
.nav-menu > li > .nav-dropdown{
	border-top: solid 1px #f0f0f0;
}

/* Dropdown items */
.nav-dropdown > li{
	width: 100%;
	float: left;
	clear: both;
	position: relative;
	text-align: left;
}
.nav-dropdown > li > a{
	width: 100%;
	padding: 16px 20px;
	display: inline-block;
	text-decoration: none;
	float: left;
	font-size: 13px;
	color: #70798b;
	background-color: #fdfdfd;
	transition: color .3s, background .3s;
}
.nav-dropdown > li:hover > a,
.nav-dropdown > .focus > a{
	color: #A0D468;
}

/* Dropdown to left */
.nav-dropdown.nav-dropdown-left{
	right: 0;
}
.nav-dropdown > li > .nav-dropdown-left{
	left: auto;
	right: 100%;
}
.navigation-landscape .nav-dropdown-left > li > a{
	text-align: right;
}

/* Dropdown indentation (until the fifth level) */
.navigation-portrait .nav-dropdown > li  > a{
	padding: 12px 20px 12px 30px;
}
.navigation-portrait .nav-dropdown > li  > ul > li  > a{
	padding-left: 50px;
}
.navigation-portrait .nav-dropdown > li  > ul > li  > ul > li  > a{
	padding-left: 70px;
}
.navigation-portrait .nav-dropdown > li  > ul > li  > ul > li  > ul > li  > a{
	padding-left: 90px;
}
.navigation-portrait .nav-dropdown > li  > ul > li  > ul > li  > ul > li  > ul > li  > a{
	padding-left: 110px;
}

/*=== SUBMENU INDICATORS ==============*/
.nav-dropdown .submenu-indicator{
	right: 15px;	
	top: 16px;
	position: absolute;
}
.navigation-portrait .submenu-indicator{
	right: 0;
	top: 0;
}
.nav-dropdown .submenu-indicator .submenu-indicator-chevron{
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron{
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-dropdown > li:hover > a .submenu-indicator-chevron,
.nav-dropdown > .focus > a .submenu-indicator-chevron{
	border-color: transparent #A0D468 #A0D468 transparent;
}

/* Submenu indicator to left */
.navigation-landscape .nav-dropdown-left .submenu-indicator{
	left: 10px;	
}
.navigation-landscape .nav-dropdown-left .submenu-indicator .submenu-indicator-chevron{
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}