﻿:root {  
  --blue1: #069ae7;
  --blue2: #0073bc;
  --blue3: #81d4ff;
  --blue4: #e6f5fd;
  --darkblue1: #0054bc;
  --darkblue2: #11509e;
  --darkblue3: #bfd0e5;
  --darkblue4: #043c82;
  --lakegreen1: #05ceb4;
  --lakegreen2: #00a18c;
  --lakegreen3: #047169;
  --lakegreen4: #c2e9e5;
  --lakegreen5: #defef6;
  --lightgreen1: #afff60;  
  --lightgreen2: #e7ffcf;       
  --grey1: #f6f6f6;
  --grey2: #dddddd;
  --grey3: #767676;
  --icon-size: 40px;
  --button-border-radius: 30px;
  --border-radius: 20px;
  --swiper-arrow-size: 40px;
  --page-header-height: 112px;
  --textshadow: 0px 0px 10px rgba(0,0,0,.75), 2px 2px 15px rgba(0,0,0,.75), -2px -2px 15px rgba(0,0,0,.75);  
  --anim-speech-base: 2.8s;
}
@font-face {
  font-family: 'icons';
  src: url('../fonts/icons.eot');
  src: url('../fonts/icons.eot#iefix') format('embedded-opentype'),
  url('../fonts/icons.ttf') format('truetype'),
  url('../fonts/icons.woff') format('woff'),
  url('../fonts/icons.svg#icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[id] {
  scroll-margin-top: var(--page-header-height);
}
body {
  color: #333;
  background-color: #fff;
}
@layer core {
  html {
    border: 0;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    scroll-behavior: smooth;
  }

  body {
    font-family: "Roboto", Arial, "微軟正黑體", "Microsoft JhengHei", sans-serif;
    font-variant-ligatures: none;
    font-size: 20px;
    color: #333;
    line-height: 1.4;
    font-weight: 400;
    min-height: 100vh;
  }

  .clearfix:before,
  .clearfix:after {
    display: table;
    content: " ";
  }

  .clearfix:after {
    clear: both;
  }

  *:focus-visible {
    outline: #11509e solid 2px;
  }
  sub,
  sup {
    font-size: 80%; 
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sup {
    top: -0.425em;
  }

  sub {
    bottom: -0.25em;
  }

  em, i{
    font-style: italic;
  }
  #skipToContent {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 5000;
  }

  #skipToContent a {
    background: #fff;
    font-size: 100%;
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  #skipToContent a:focus,
  #skipToContent a:active {
    display: inline;
    height: auto;
    left: 0;
    padding: 4px;
    top: 0;
    width: 180px;
    z-index: 1000;
    background: #005295;
    color: #fff;
  }

  .videoWrap,
  .youtubeWrap {
    position: relative;
  }

  .youtubeWrap iframe,
  .videoWrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .sr-only,
  .accessibility {
    position: absolute!important;
    height: 0;
    width: 0;
    display: inline-block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-indent: -9999px;
  }

  .hidden,
  .invisible {
    position: absolute!important;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    display: inline;
  }

  object {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    -moz-transition: width 0.25s ease 0s;
    -o-transition: width 0.25s ease 0s;
    -webkit-transition: width 0.25s ease;
    -webkit-transition-delay: 0s;
    transition: width 0.25s ease 0s;
  }

  ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: rgba(51, 51, 51, 0.8);
  }

  :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(51, 51, 51, 0.8);
    opacity: 1;
  }

  ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(51, 51, 51, 0.8);
    opacity: 1;
  }

  :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(51, 51, 51, 0.8);
  }

  ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(51, 51, 51, 0.8);
  }

  ::placeholder {
    /* Most modern browsers support this now. */
    color: rgba(51, 51, 51, 0.8);
  }

  input:focus::-moz-placeholder {
    color: rgba(51, 51, 51, 1);
  }

  input:focus:-ms-input-placeholder {
    color: rgba(51, 51, 51, 1);
  }

  input:focus::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 1);
  }

  /* Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  input[type="number"] {
    -moz-appearance: textfield;
  }

  input[type="search"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  input[type="search"]::-webkit-search-cancel-button{
    -webkit-appearance: none;
  }
  strong {
    font-weight: 700;
  }
  /*custom style*/
  .f-left {
    float: left;
  }

  .f-right {
    float: right;
  }

  .a-center {
    text-align: center;
  }

  .a-right {
    text-align: right;
  }

  .v-top {
    vertical-align: top;
  }

  .v-middle {
    vertical-align: middle;
  }

  .v-bottom {
    vertical-align: bottom;
  }

  .no-wrap {
    white-space: nowrap;
  }

  .no-padding {
    padding: 0;
  }

  .no-margin {
    margin: 0;
  }

  .display-m {
    display: none;
  }
  .container {
    width: 100%;
    padding: 0 2.22em;
    margin: 0 auto;
    /* max-width: 2000px; */
  }
}
/*end layer*/
#wrapper {
  width: 100%;
  min-width: 320px;
  /*max-width: 3000px;*/
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

#wrapper.grayscale {
  filter: grayscale(1);
}
#headerZone {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  transition: background 0.3s ease 0s;
}
#headerZone:before {
  content: "";
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  background-image: url(../../images/header-gradient-mask.png);
  pointer-events: none;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 300px;
}
#headerZone.fixed:before,
.showMMenu #headerZone:before,
#headerZone.showMenu:before {
  display: none;
}
#headerZone.fixed,
#headerZone.showMenu {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.showMMenu #headerZone{
  box-shadow: none;
}
#headerTop {
  display: flex;
  padding: 0 30px;
  position: relative;
  z-index: 600;
  align-items: center;
}
#topAssitLink{
  position: relative;
  z-index: 600;
  font-size: 0.8em;
  font-weight: 300;
  padding: 4px 30px 5px;
  background-color: var(--blue2);
  display: flex;
  justify-content: flex-end;
}
#topAssitLink > ul{
  display: flex;
  gap: 40px;
}
#topAssitLink > ul a {
  position: relative;
  color: #fff;
  text-decoration: none;
}
#topAssitLink > ul li a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: .45em;
  left: -14px;
}
#topAssitLink > ul li a:hover,
#topAssitLink > ul li a:focus-within {
  text-decoration: underline;
}
#logoWrap {
  align-items: center;
	display: flex;
}
#logoWrap a {
  display: block;
  line-height: 0;    
}
#logoWrap a#siteLogo img {
	height: 46px;
  max-height: 46px;
}
#logoWrap a#siteLogo{ 
	padding: 12px 0;
	width: var(--logo-width); 
}
#dj60Logo{
	line-height: 0;
	width: 56px;
	height: 56px;
	margin-left: 10px;
}

#mmenuCtrl {
  display: none;
  height:100%;
  width: 54px;
  position: relative;
}

#mmenuCtrl a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

#mmenuCtrl.active {
  background-color: var(--darkblue1);
}

#mmenuCtrl a > span {
  display: block;
  width: 42px;
  height: 42px;
}

#mmenuCtrl a > span {
  text-indent: -9999px;
  color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 24px;
  height: 3px;
  border-radius:1.5px;
  background-color: var(--blue1);
}

#mmenuCtrl a > span:before,
#mmenuCtrl a > span:after {
  content: "";
  height: 3px;
  border-radius:1.5px;
  width: 24px;
  background-color: var(--blue1);
  position: absolute;
  display: block;
}

#mmenuCtrl a > span,
#mmenuCtrl a > span:before,
#mmenuCtrl a > span:after {
  transition: all 0.3s ease 0s;
}

#mmenuCtrl.active a:hover > span:before,
#mmenuCtrl.active a:hover > span:after {
  background-color: var(--blue2);
}

#mmenuCtrl a > span:before {
  top: -9px;
}

#mmenuCtrl a > span:after {
  top: 9px;
}

#mmenuCtrl a:hover span,
#mmenuCtrl a:hover span:before,
#mmenuCtrl a:hover span:after,
#mmenuCtrl a:focus-within span,
#mmenuCtrl a:focus-within span:before,
#mmenuCtrl a:focus-within span:after {
  width: 24px;
  background-color: var(--blue2);
}

#mmenuCtrl.active a > span {
  background: transparent;
  width: 24px;
}

#mmenuCtrl.active a > span:before,
#mmenuCtrl.active a > span:after {
  top: 0;
  width: 24px;
  background-color: #fff!important;
}

#mmenuCtrl.active a > span:before {
  transform: rotate(45deg);
}

#mmenuCtrl.active a > span:after {
  transform: rotate(-45deg);
}
#topNavWrap{
  display: flex;
  align-items: center;    
  column-gap: 40px;
  margin-left: auto;
}  
#topNavWrap > div{
  position: relative;
}
#topNavWrap > div:before {
  content: "";
  background-color: var(--darkblue3);
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}  
#topNavWrap > div:first-child:before {
  display: none;
}
#topNavList{
  font-size: 0.8em;
  font-weight: 300;
}
#topNavList .navlist li{
  white-space: nowrap;
}
#headerZone{
	opacity: 0;
	transition: opacity .1s ease 0s;
}
#headerZone.shown{
	opacity: 1;
}
#hotline > a{    
  color: var(--blue2);
	font-family: "Roboto", Arial, "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
#hotline > a > span{
  display: block;
  white-space: nowrap;   
}
#hotline > a > span:first-child{
	font-size: .8em; 
	font-weight: 700; 
}
#hotline > a > span.tel{	
  position: relative;
  font-weight: 900;
  font-size: 1.2em;
  padding-left: 26px;
  line-height: 1em;
}
#hotline > a > span.tel:before{
  content: "\e908";
  font-family: icons;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;	
  position: absolute;
  font-size: 24px;
  line-height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: color 0.3s ease 0s;
} 
#mobileTop{
  display: flex;
  column-gap: 10px;
  margin-bottom: 25px;
}
#esdLogin_m{  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  background-color: var(--darkblue4);
  color: #fff;
  text-align: center;
  font-size: 0.889em;
}
#esdLogin_m > span{
  display: block;
  width: 100%;
  padding-top: 20px;
  position: relative;
}
#esdLogin_m > span:before{
  content: "\e919";
  font-family: icons;
  position: absolute;
  font-size: 20px;
  line-height: 20px;
  top: 0;
  left: 50%;
  color: currentColor;
  transform: translateX(-50%);
  transition: color 0.3s ease 0s;  
}
#hotline_m{
  flex: 1;
  padding: 12px 20px;  
  background-color: var(--blue3);
}
#hotline_m > a{
  display: inline-block;
  padding-left: 26px;
  position: relative;
  font-weight: 700;
  color: var(--darkblue2);
}
#hotline_m > a:before{
  content: "\e908";
  font-family: icons;
  position: absolute;
  font-size: 22px;
  line-height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: color 0.3s ease 0s;
}
#hotline_m > a span {
  display: inline-block;    
}
#hotline_m > a span.tel{
  font-weight: 900;
  font-size: 1.333rem;
}
#siteTools {
  position: relative;
  display: flex;
  justify-content: right;
  width: 100%;
  font-family: "Roboto", Arial, sans-serif;
}

#siteTools > ul {
  text-align: right;
  display: flex;
  position: relative;
  align-items: center;
}
#siteTools > ul > li {
  display: flex;
  align-items: center;
  position: relative;    
  text-align: left;
  font-size: 1em;
  height: 100%;
}
#siteTools > ul > li > a:before{
  content: "";
  z-index: 10;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 84, 188, .95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0s;
}
#siteTools > ul > li#toolSearch.active > a:before, #siteTools > ul > li#toolLangs.active > a:before, #siteTools > ul > li#toolShare.active > a:before{
  opacity: 1;
  pointer-events: visible;
}
#siteTools > ul > li:first-child > a {
  margin-left: 0;
}
#siteTools > ul > li:last-child > a {
  margin-right: 0;
}
#toolLangs .subnavWrap ul li a{
  white-space: nowrap;
  display: block;
  background-color: transparent;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
}
#siteTools .subnavWrap {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  border-radius: var(--border-radius);
  background-color: rgba(0, 84, 188, .95);
  pointer-events: none;
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}
.DOM-slider-hidden.subnavWrap { visibility: hidden;}
#siteTools > ul > li.active > .subnavWrap {    
  pointer-events: visible;
}
#siteTools > ul > li > a {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 990;
  font-size: 0;
  margin: 0 5px;
  line-height: 0;
  display: inline-block;
  opacity: 1;
  color: #fff;
  border: none;
  transition: opacity 0.3s ease 0s, background-color 0.3s ease 0s,
    left 0.3s ease 0s, right 0.3s ease 0s;
}
#siteTools #toolLogin > a{
	display: flex;
	align-items: center;
	width: auto;
	height: 40px;
	border-radius: 25px;
	border: 1px solid var(--lakegreen3);
	background-color: var(--lakegreen3);
}
#siteTools #toolLogin > a > span{
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 20px 0 48px;
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 500;
	left: inherit;
	top: inherit;
	transform: none;
}
#siteTools #toolLogin > a:focus-within,
#siteTools #toolLogin > a:hover{
	background-color: #fff;
	color: var(--lakegreen3);
}
#siteTools #toolLogin > a:focus-within > span,
#siteTools #toolLogin > a:hover > span{
}
#siteTools #toolLogin > a:focus-within > span:before,
#siteTools #toolLogin > a:hover > span:before{
	color: var(--lakegreen3);
}
#siteTools #toolLogin > a > span:before{
	font-weight: 400;
	left: 15px;
	transform: translateY(-50%);
}
#siteTools > ul > li > a > span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border-radius: 50%;
  border: 1px solid var(--blue1);
  background-color: var(--blue1);
  transition: background-color .3s ease 0s;
}
#mobileMenu a.btn-share > span:before,
#siteTools > ul > li > a > span:before {
  font-family: icons;
  position: absolute;
  font-size: 24px;
  line-height: 24px;
  top: 50%;
  left: 50%;
  color: currentColor;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease 0s;
}
#siteTools > ul > li > a:hover > span,
#siteTools > ul > li.active > a > span {
  background-color: #fff;
}
#siteTools > ul > li > a:hover > span:before,
#siteTools > ul > li.active > a > span:before {
  color: var(--blue1);
}
#mobileMenu a.btn-share > span:before,
#toolShare > a > span:before {
  content: "\e900";
} 
#toolFontsize > a > span:before {
  content: "\e915";
}
#toolLangs > a > span:before {
  content: "\e901";
}  
#toolFontsize > a > span:before {
  content: "\e902";
}
#toolSearch > a > span:before {
  content: "\e903";
}
#toolContact > a > span:before {
  content: "\e905";
}
#toolAppForms > a > span:before {
  content: "\e91a";
}
#toolFaq > a > span:before {
  content: "\e904";
}
#toolLogin> a > span:before {
  content: "\e919";
}
#siteTools > ul > li .subnavWrap {
  position: absolute;    
  color: #fff;
}
#siteTools > ul > li:not(#toolSearch) .subnavWrap {
  left: 50%;
  transform: translateX(-50%);
}
#toolLangs .subnav > a,
#toolShare .subnav > a {
  line-height: 40px;
  position: relative;
  color: inherit;
}
#toolLangs .subnav > a:after,
#toolShare .subnav > a:after{
  content: "";
  background-color: rgba(255, 255, 255, 0.15);
  width: 1px;
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
#toolLangs .subnav > a:first-child:after,
#toolShare .subnav > a:first-child:after{
  display: none;
}
#siteTools > ul > li.active > .subnavWrap form {
  display: block;
}
#toolFontsize > a > span:after {
  content: "\e906";
  color: #7fb61c !important;
}

#toolFontsize.active > a > span:after,
#toolFontsize > a:hover > span:after,
#toolFontsize > a:focus-within > span:after {
  color: #fff!important;
}
#toolShare .subnav a {
  font-size: 0;
  width: var(--icon-size);
}
#toolLangs .subnav a{
  padding: 12px 20px;
}
#toolLangs .subnav ul li:not(:last-child){
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#toolLangs .subnav a.selected,
#toolLangs .subnav a:hover,
#toolLangs .subnav a:focus-within{
  background-color: var(--blue3);
  color: var(--darkblue1);
}
#toolShare .subnav a.selected > span,
#toolShare .subnav a:hover > span,
#toolShare .subnav a:focus-within > span{
  background-color: var(--blue3);
  color: var(--darkblue1);
}
#toolSearch .subnavWrap {
  position: absolute;    
  right: 0;
  width: 300px;
  z-index: 980;
  transition:  transform 0.3s ease 0s;
}
#siteTools .subnav{
  padding: 15px 0;
}
#siteTools .subnav.socialmedia, #siteTools .subnav.searchForm{
  padding: 20px;
}
#toolSearch .quickSearch{
  width: 100%;
}
#toolSearch .searchForm form .inputWrap {
  position: relative;
}

#toolSearch .searchForm form .inputWrap label {
  position: absolute;
  left: 0;
  top: 0;
}
#toolSearch .searchForm form .inputWrap{
  display: flex;
  gap: 10px;
}
#toolSearch .searchForm form .inputWrap input {
  height: 40px;
  padding: 0;
  width: 100%;
  color: #FFF;
  border: none;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-bottom-color 0.3s ease 0s;
  background: transparent;
}

#toolSearch .searchForm form .inputWrap input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgba(255, 255, 255, 0.8);
}

#toolSearch .searchForm form .inputWrap input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

#toolSearch .searchForm form .inputWrap input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

#toolSearch .searchForm form .inputWrap input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(255, 255, 255, 0.8);
}

#toolSearch .searchForm form .inputWrap input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(255, 255, 255, 0.8);
}

#toolSearch .searchForm form .inputWrap input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(255, 255, 255, 0.8);
}

#toolSearch .searchForm form .inputWrap input:focus {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

#toolSearch .searchForm .btnSearch {
  position: absolute;
  text-align: left;
  width: 22px;
  height: 22px;
  color: #fff;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-indent: -9999px;
}

#toolSearch .searchForm .btnSearch:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#toolSearch .searchForm .advSearch {
  text-align: right;
  margin-top: 5px;
}

#toolSearch .searchForm .advSearch a {
  color: #fff;
}

#toolSearch .searchForm .advSearch a:hover {
  text-decoration: underline;
}

#mobileMenu .shareTo > a{
  color: var(--darkblue2);
}
.socialmedia {
  display: flex;
  gap: 10px;
  align-items: center;
}
#toolShare_m{
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-block;
}
#toolShare_m > .subnavWrap{
  display: none;
  width: 100%;
  position: absolute;
  background: var(--blue3);
  top: calc(100% - 15px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
#toolShare_m > .subnavWrap .socialmedia{
  justify-content: center;
  padding: 10px 0;
}
#toolShare_m > a{
	display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: 0;	
}
#toolShare_m > a > span{
  display: block;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
  height: 100%;
  font-size: 0;
  position: relative;	
}
.socialmedia > a {
	display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  line-height: 0;
}
.socialmedia > a > span {
  display: block;
  height: 100%;
  font-size: 0;
  position: relative;
}
#toolShare_m > a.btn-share{
  position: relative;
}
#toolShare_m > a.btn-share:before{
  content: "";
  z-index: 10;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--blue3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0s;
}
#toolShare_m.active > a:before{
  opacity: 1;
  pointer-events: visible;
}

.socialmedia > a > span:before {
  font-family: 'icons' !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;  
  display: block;
  color: #fff;
  font-size: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1em;
  transition: color 0.3s ease 0s;
}
.socialmedia > a > span:before {
  color: #fff;
}
.socialmedia.shareto > a {
	border:0;
}
.socialmedia.shareto > a > span{
  background-color: #fff;
  transition: background-color 0.3s ease 0s;
}
.socialmedia.shareto > a > span:before {
  color: var(--blue2);
}

.socialmedia > a.btn-fb > span:before,
.socialmedia > a.shareFB > span:before{
  content: "\e90a";
}
.socialmedia > a.btn-wechat > span:before,
.socialmedia > a.shareWechat > span:before {
  content: "\e90b";
}
.socialmedia > a.shareWhatsApp > span:before {
  content: "\e912";
}
.socialmedia > a.shareTwitter > span:before {
  content: "\e90f";
}
.socialmedia > a.shareWeibo > span:before {
  content: "\e90e";
}
.socialmedia > a.btn-youtube > span:before {
  content: "\e90c";
}
.socialmedia > a.btn-ig > span:before {
  content: "\e90d";
}  
.socialmedia > a.btn-fb {
   border-color: #3b5998;
   background-color: #3b5998;
	 color: #fff;
}
.socialmedia > a.btn-fb:hover > span:before {
   color: #3b5998;
}
.socialmedia > a.btn-wechat{
   border-color: #18cc21;
   background-color: #18cc21;
}
.socialmedia > a.btn-wechat:hover > span:before {
   color: #18cc21;
}
.socialmedia > a.btn-youtube  {
   border-color: #e62117;
   background-color: #e62117;
	 color: #fff;
}
.socialmedia > a.btn-youtube:hover > span:before {
   color: #e62117;
}
.socialmedia > a.btn-ig {
   border-color: #971f9e;
   background-color: #971f9e;
	 color: #fff;
}
.socialmedia > a.btn-ig:hover > span:before {
   color: #971f9e;
}

.socialmedia > a.btn-fb:hover,
.socialmedia > a.btn-wechat:hover,
.socialmedia > a.btn-youtube:hover,
.socialmedia > a.btn-ig:hover{
   background-color: #ffffff;
}
#toolShare_m a.btn-share span{
  background-color: #fff;
}
#toolShare_m a.btn-share span:before{
    color: var(--blue2);
}
#toolShare_m a.btn-share:hover span,
#toolShare_m.active a.btn-share span{
	background-color: var(--blue3);
}
#toolShare_m a.btn-share:hover span:before{
    
}
#socialMeida_m{
	padding-bottom: 25px;
  position: relative;
  border-bottom: 1px solid var(--darkblue2);
}
#footerZone{ overflow: hidden}
#footerTop .socialmedia{ display: none;}
#footerTop .socialmedia > a{
  width: 60px;
  height: 60px;
}
#footerTop .socialmedia > a > span:before{
  font-size: 38px;
  line-height: 60px;
}
#mainNavWrap {
  position: relative;
  z-index: 500;
  width: 100%;
}

#mainNav > ul {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  margin: 0 30px;
  padding: 0;
}

#mainNav > ul > li {
  position: relative;
  text-align: center;
}
#mainNav > ul > li:before, #mainNav > ul > li:last-child:after{
  content: "";
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 1px;
  background-color: var(--darkblue3);
}
#mainNav > ul > li:last-child:after{
  left: 100%;
}
#mainNav > ul > li > a {
  font-weight: 500;
  color: var(--darkblue2);
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 20px;    
  width: 100%;
  transition: padding 0.3s ease 0s, color 0.3s ease 0s,
    background-color 0.3s ease 0s;
}
#mainNav > ul > li > a > span {
  text-align: center;
  width: 100%;
  padding: 15px 0;
  position: relative;
  line-height: 20px;
}

#mainNav > ul > li.selected > a,
#mainNav > ul > li.active > a,
#mainNav > ul > li > a:hover {
  text-decoration:underline;
  color: #333333;
}
#mainNav > ul > li > .subnav {
  position: absolute;
  left: 10px;
  top: 100%;
  pointer-events: none;
  font-weight: 300;
  border-bottom-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  overflow: hidden;
}
#mainNav > ul > li.hasSubnav > a:before {
  content: "";
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 84, 188, .95);
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
#mainNav > ul > li.active > a:before  {
  opacity: 1;
}  
#mainNav > ul > li.active > .subnav {
  pointer-events: visible;
}

#mainNav > ul > li > .subnav.alignRight {
  left: inherit;
  right: 0;
}

#mainNav > ul > li > .subnav > ul {
  padding: 20px 0 30px;
  background-color: rgba(0, 84, 188, .95);
  width: 400px;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
  max-height: 70vh;
  overflow-y: auto;
}

#mainNav > ul > li > .subnav > ul::-webkit-scrollbar {
  width: 10px;
}
#mainNav > ul > li > .subnav > ul::-webkit-scrollbar-track {
  background: var(--blue4);
}
#mainNav > ul > li > .subnav > ul::-webkit-scrollbar-thumb {
  background: var(--darkblue4);
}
#mainNav > ul > li > .subnav > ul::-webkit-scrollbar-thumb:hover {
  background: var(--blue3);
}

#mainNav > ul > li.active > .subnav > ul {
  opacity: 1;
  transform: translate(0, 0);
}

#mainNav .subnav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

#mainNav .subnav > ul > li:last-child {
  border-bottom: none;
}

#mainNav > ul > li > .subnav > ul > li.active > a,
#mainNav > ul > li > .subnav > ul > li.selected > a,
#mainNav > ul > li > .subnav > ul > li > a:hover,
#mainNav > ul > li > .subnav > ul > li > a:focus {
  color: var(--darkblue1);
}

#mainNav > ul > li > .subnav > ul > li:first-child {
  border-top: none;
}

#mainNav .subnav > ul > li > a {
  position: relative;
  display: block;
  padding: 12px 20px;
  text-align: left;
  color: #fff;
  line-height: 24px;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

#mainNav .subnav > ul > li.active > a,
#mainNav .subnav > ul > li.selected > a,
#mainNav .subnav > ul > li > a:hover,
#mainNav .subnav > ul > li > a:focus{
  background-color: var(--blue3);
}

#mainNav > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > a:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  transition: transform 0.3s ease 0s;
}

#mainNav > ul > li.hasSubnav > .subnav > ul > li.hasSubnav:hover > a:before {
  border-color: #ebd639;
}

#mainNav > ul > li.hasSubnav > .subnav > ul > li.hasSubnav:hover > .subnav,
#mainNav  > ul  > li.hasSubnav  > .subnav  > ul  > li.hasSubnav  > a:focus-within  + .subnav,  #mainNav  > ul  > li.hasSubnav  > .subnav  > ul  > li.hasSubnav.active  > a  + .subnav {
  opacity: 1;
  pointer-events: visible;
}

#mainNav  > ul  > li.hasSubnav  > .subnav  > ul  > li.hasSubnav  > .subnav  > ul  > li  > a {
background-color: #004277;
}
#mainNav  > ul  > li.hasSubnav  > .subnav  > ul  > li.hasSubnav  > .subnav  > ul  > li  > a:hover,  #mainNav  > ul  > li.hasSubnav  > .subnav  > ul  > li.hasSubnav  > .subnav  > ul  > li  > a:focus-within {
  background-color: #00355f;
}

/*mainNav css ends*/
#mainZone {
  position: relative;
  z-index: 10;
}
#contentWrap .container{
  padding: 0 30px;
}
#footerMain {
  color: #333;
  font-size: 0.8em;
  font-weight: 300;
}
#footerMain {
  max-width: 2000px;
  padding: 20px 30px;      
}
#footerBtm{
  padding: 15px 0;
}
#footerTop > .socialmedia, #footerTop .footerLogos{
  display: flex;  
  flex-wrap: wrap;  
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
#footerTop > .socialmedia{
  gap: 30px;
}
#footerTop .footerLogos{
  gap: 20px;
}
#footerTop .footerLogos > a, #footerTop .footerLogos > div{
  display: inline-block;
  line-height: 0;
}
#topNavList_m,
#footerNav{
  padding: 0 20px;
  margin: 0 0 15px;    
}
#footerNav ul.navlist{
  flex-wrap: wrap;
}
#topNavList_m{
  display: none;
}
ul.navlist {  
  display: flex;    
  column-gap: 40px;
  justify-content: center;       
}
#topNavList_m,
#footerNav{
  flex-wrap: wrap;
  row-gap: 10px;
}
ul.navlist li {
  position: relative;
  padding: 0;
}

ul.navlist li a {
  color: #000;
  text-decoration: none;
  text-underline-offset: 3px;
}
ul.navlist li a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--lakegreen2);
  border-radius: 50%;
  top: .5em;
  left: -14px;
}
ul.navlist li a:hover,
ul.navlist li a:focus-within {
  text-decoration: underline;
}
#footerCopyright{
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 60px;
}
#footerCopyright > div{
  position: relative;
  margin-bottom: 10px;
}

/*mobile menu css starts*/
#mobileBgLayer {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 998;
  left: 0;
  top: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  100% {
    opacity: 0.5;
  }
}

#mobileNavWrap {
  position: fixed;
  width: 100%;
  height: calc(100% - var(--page-header-height));
  top: -100%;
  opacity: 1;
  z-index: 999;
  display: none;
  background: var(--darkblue1);
  transition: top 0.5s ease 0s;
}

.showMMenu #mobileNavWrap {
  display: block;
}

#mobileNavWrap.show {
  top: var(--page-header-height);
}
#mobileNav {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}

#mobileMenu {
  padding: 30px 20px;
  transition: padding .3s ease 0s;
}

#mainNav_m a {
  font-size: 0.889em;
  line-height: 1.25em;
  color: #fff;
  font-weight: 300;
}
#mainNav_m {
  margin-bottom: 30px;
}
#mainNav_m ul{
  padding: 0;
}  
#mainNav_m > ul > li > a {
  padding: 20px 0;
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 1.125em;
}
#mainNav_m > ul > li {
  padding: 0 20px;
}
#mainNav_m .hasSubnav {
  position: relative;
}
#mainNav_m > ul > li:not(.selected) > a:hover,
#mainNav_m > ul > li.selected:not(.hasSubnav) > a {
  
}
#mainNav_m .hasSubnav > button {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
#mainNav_m > ul > li.hasSubnav.active > button {
}
#mainNav_m .hasSubnav.selected > button {
  display: none;
}
#mainNav_m li.hasSubnav > button:before {
  font-family: 'icons';
  display: block;
  font-size: 10px;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 40px;
  transition: color 0.3s ease 0s;
}
#mainNav_m > ul > li.hasSubnav > button:before {
  content: "\e914";
  color: #fff;
}
#mainNav_m > ul > li.hasSubnav > a:hover + button:before {
}
#mainNav_m > ul > li.hasSubnav.active > button:before {
  content: "\e913";
  color: var(--blue3);
}
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > button:before {
  height: 22px;
  width: 2px;
  margin-top: -11px;
  margin-left: -1px;
}
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > button:after {
  height: 2px;
  width: 22px;
  margin-top: -1px;
  margin-left: -11px;
}
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > button {
  top: 7px;
}
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav.active > button:before { 
  transform: rotate(90deg);
}
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > button:before,
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav > button:after {
  background-color: #fff;
}
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav.active > button:before,
#mainNav_m > ul > li.hasSubnav > .subnav > ul > li.hasSubnav.active > button:after { }

#mainNav_m > ul > li > .subnav > ul {
  display: none;
  overflow: hidden;
}

#mainNav_m > ul > li.hasSubnav.selected > .subnav > ul {
  display: block;
}
#mainNav_m > ul > li > .subnav > ul > li {
  margin-bottom: 1px;
  transition: background 0.3s ease 0s;
}
#mainNav_m .subnav > ul > li:last-child {
  margin-bottom: 10px;
}
#mainNav_m > ul > li > .subnav > ul > li > a {
  padding: 10px 30px 15px 24px;
  display: inline-block;
  position: relative;
  text-underline-offset: 3px; 
}
#mainNav_m > ul > li > .subnav > ul > li > a > span {
  position: relative;
}
#mainNav_m > ul > li > .subnav > ul > li > a > span:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--blue3);
  border-radius: 50%;
  top: 7px;
  left: -16px;
}

#mainNav_m > ul > li > .subnav > ul > li.li.hasSubnav > .subnav > ul {
  border-left: 2px solid #262626;
}

#mainNav_m > ul > li > .subnav > ul > li.li.hasSubnav > .subnav > ul > li {
  padding: 8px 0 8px 10px;
}

#mainNav_m > ul > li > .subnav > ul > li > .subnav {
  padding: 0 12px;
}
#mainNav_m > ul > li > .subnav > ul > li > .subnav > ul {
  overflow: hidden;
  display: none;
}

#mainNav_m > ul > li > .subnav > ul > li > .subnav > ul > li > a {
  padding: 10px 20px 10px 24px;
  display: inline-block;
  position: relative;
  font-weight: 300;
  color: #fff;
}

#mainNav_m > ul > li > .subnav > ul > li > .subnav > ul > li > a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  left: 10px;
  top: 1em;
}

#mainNav_m > ul > li.hasSubnav.selected > .subnav > ul > li.hasSubnav.selected > .subnav { 
  display: block;
}
#mobileMenu .others_m > li,
#mainNav_m > ul > li {
  border-bottom: 1px solid var(--darkblue2);
}
#mainNav_m > ul > li.active, #mainNav_m > ul > li.hasSubnav.selected {
  background-color: var(--darkblue2);
}
#mainNav_m li.selected > a,
#mainNav_m li.active > a {
  color: var(--blue3);
}

#mainNav_m .subnav li > a:hover {
  text-decoration: underline;
}
/*inside*/
#insideVisualWrap {
  position: relative;
  z-index: 99;
}
#insideVisual {
  overflow: hidden;
  position: relative;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 490px;
  aspect-ratio: 1900 / 520; 
  background-size: auto 100%;
  background-image: url(../../images/inside/secbanner.jpg);
  background-color: #e6f7fe;
}
#insideVisual:after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  aspect-ratio: 2000/100;  
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: url(../../images/inside/secbanner-wave.svg);
  background-size: 100% auto;
  z-index: 1;
}
#secTitleWrap {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: calc(100% - var(--page-header-height));
  top: var(--page-header-height);
  left: 0;
  text-align: left;
  display: flex; 
  align-items: center;
  max-width: 1300px;
}
#secTitle {
  display: inline-block;
  position: relative;
  font-size: 3.4em;
  font-size: clamp(2.125rem, -0.4573rem + 5.3797vw, 4.25rem);
  line-height: 1.111em;
  color: var(--darkblue4);
  font-weight: 900;
  margin: 0 40px;
}
#secTitle > * {
  position: relative;
}
#secTitle:before{
  content: "\e909";
  font-family: icons;
  color: rgba(129, 212, 255, .5);
  position: absolute;
  font-size: 110px;
  font-size: clamp(3.75rem, -0.0475rem + 7.9114vw, 6.875rem);
  line-height: 1em;
  top: -30px;
  left: -40px;
}
/*mobile menu css ends*/
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  opacity: 0;
  z-index: 1000;
  color: #fff;
  border: 4px solid var(--lakegreen5);
  background-color: var(--blue2);
  visibility: hidden;
  transition: background-color 0.5s ease 0s, opacity 0.3s ease 0s, border-color 0.5s ease 0s;
}

#backToTop:hover,
#backToTop:focus-within{
  background-color: #fff;
  color: var(--blue2);
  border-color: var(--blue2);
}
#backToTop > span {
  display: block;
  height: 100%;
  position: relative;
  font-size: 0;
}

#backToTop > span:after {
  content: "\e913";
  font-family: icons;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 12px;
  line-height: 20px;
  color: currentColor
}
#backToTop:hover > span:after,
#backToTop:focus-within > span:after{

}
#backToTop.fixed {
  position: absolute;
  bottom: 0;
}

#backToTop.active {
  opacity: 1;
  visibility: visible;
}

#wrapper.showMMenu #backToTop {
  visibility: hidden;
}
/*breadcrumb*/
#breadcrumbWrap {
  font-size: 0.8em;
  display: flex; 
  align-items: center;
  min-height: 48px;
  position: relative;
  z-index: 100;
}
#breadcrumbWrap > .container{
  display: flex; 
  align-items: center;
  column-gap: 20px;
}
#breadcrumbWrap .printBtn {
  margin-left: auto;
}
#btnPrint {
  position: relative;
  padding: 0 18px 0 38px;
  color: var(--lakegreen3);
  border-radius: 20px;
  border: 1px solid #bfebe7;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
}
#btnPrint:hover,
#btnPrint:focus-within {
	background:var(--lightgreen1);
	text-decoration:underline;
}
#btnPrint > span {
  display: block;
  line-height: 30px;
  font-weight: 500;
}
#btnPrint:before {
  font-family: icons;
  content: "\e917";
  position: absolute;
  font-size: 20px;
  line-height: 20px;
  color: var(--lakegreen3);
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  transition: color 0.3s ease 0s;
}
#btnPrint:hover:before,
#btnPrint:focus-within:before {
  color: var(--lakegreen3);
}
#newDesign #breadcrumb {
  margin:0;
  padding: 0;
  width: auto;
  text-align: left;  
}
#breadcrumb:before,
#breadcrumb li:not(.navHome) a:after{
	display: none;
  padding: 0;
}
#breadcrumb .navHome {
  padding-left: 0;
  margin-right: 0px;
}
#breadcrumb .navHome > a {
  width: 30px;
  height: 16px;
  position: relative;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}

#breadcrumb .navHome > a:before{
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--lakegreen4);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
  background:#ffffff;
}
#breadcrumb .navHome > a:after{
  font-family: icons;
  content: "\e916";
  color: var(--lakegreen3);
  display: block;
  font-size: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 16px;
  transition: color 0.3s ease 0s;
	padding-left:0;
}
#breadcrumb .navHome > a:hover:before, 
#breadcrumb .navHome > a:focus-within:before{
  background-color: var(--lightgreen1);
  border-color: var(--lightgreen1);
}
#breadcrumb .navHome > a:hover:after, 
#breadcrumb .navHome > a:focus-within:after{
	color:var(--lakegreen3);
}
#breadcrumb ul {
  color: #6e6e6e;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}
#breadcrumb ul li {
  display: inline-block;
  padding: 0 0 0 25px;
  position: relative;
}

#breadcrumb ul li:first-child {
  margin-left: 0;
}

#breadcrumb ul li > a {
  position: relative;
  color: var(--lakegreen3);
  text-decoration: underline;
}

#breadcrumb ul li.curPage span {
  position: relative;
}
#breadcrumb ul li > a{
  transition: color 0.3s ease 0s;
}
#breadcrumb ul li > a:hover {
  text-decoration: none;
  color: var(--olive);
}

#breadcrumb ul li > a,
#breadcrumb ul li span {
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
}
#breadcrumb ul li.acwsNav{
  padding-left: 0;
}
#breadcrumb ul li.acwsNav a:before{
  display: none;
}
#breadcrumb ul li:not(.navHome) a:before,
#breadcrumb ul li.curPage span:before {
  border: 1px solid #666;
  content: "";
  background: none;
  height: 5px;
  top: 0.3em;
  left: -15px;
  width: 5px;
  pointer-events: none;
  position: absolute;
  transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
  transition: transform 0.25s ease 0s;
}

#pageTitle {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.8em;
  font-size: clamp(1.75rem, -0.3766rem + 4.4304vw, 3.5rem);
  line-height: 1.143em;
  color: var(--darkblue2);
  font-weight: 700;
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 2px solid var(--darkblue2);
}
#mainContentWrap.hasLeftNav > .container{
  display: flex;
  column-gap: 60px;
}
#mainContentWrap.hasLeftNav > .container #mainContent {
  width: calc(100% - 310px);
}
#leftNavWrap {
  position: relative;
  z-index: 100;
  width: 320px;
  margin-bottom: 30px;
  text-align: left;
  transition: left .3s ease-in-out 0s;
}
#leftNavClose{
	display: none;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity .3s ease 0s;
}  
#leftNav {     
  position: relative;
  color: #fff;
  font-weight: 300;
  width: 100%;
  transition: all 0.3s ease 0s;
  background-color: var(--darkblue1);
  border-radius: var(--border-radius);
  background-image: url(../../images/home/highlights-bg1.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
}  
#leftNav > ul{
  padding: 30px 0 60px;
}
#leftNav > ul > li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color .3s ease 0s;
}
#leftNav > ul > li:first-child {
  border-top: none;
}

#leftNav li > a {
  display: block;
  padding: 6px 50px 6px 30px;
  position: relative;  
  text-align: left;    
  font-size: 1em;
  line-height: 24px;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
#leftNav li:hover {
	background: var(--blue3);
	color: var(--darkblue2);
}

#leftNav > ul > li.hasSubnav:hover > button:before {
	color: var(--darkblue2);
}

#leftNav > ul > li > a{
  padding: 15px 50px 15px 30px;
}
#leftNav > ul > li.selected,
#leftNav > ul > li.active{
  color: #333;
  background-color: var(--blue4);
}
#leftNav > ul > li.selected > a,
#leftNav > ul > li.active > a{
  color: var(--darkblue2);
  font-weight: 700;
}
#leftNav > ul > li > .subnav > ul { 
  display: none; 
  overflow: hidden; 
}
#leftNav > ul > li > .subnav > ul > li{
  position: relative;
  margin-bottom: 5px;
}
#leftNav > ul > li > .subnav > ul > li:last-child{ margin-bottom: 20px;}
#leftNav > ul > li.hasSubnav > .subnav > ul{
  margin-left: 30px;
}
#leftNav > ul > li.hasSubnav > .subnav > ul > li{

}
#leftNav > ul > li.hasSubnav > .subnav > ul > li > a{
  padding: 6px 50px 6px 15px;
  position: relative;
}

#leftNav > ul > li.hasSubnav > .subnav a:hover,
#leftNav > ul > li.hasSubnav > .subnav .selected > a{
  text-decoration: underline;
  color: var(--blue2);
}
#leftNav > ul > li.hasSubnav > .subnav > ul li:hover{
	background: none;
}
#leftNav > ul > li.hasSubnav > .subnav > ul > li > a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--darkblue2);
  border-radius: 50%;
  top: .75em;
  left: 4px;
}
#leftNav .hasSubnav > button {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 8px;
  right: 10px;
  cursor: pointer;
}

#leftNav li.hasSubnav > button:before {
  font-family: 'icons';
  display: block;
  font-size: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 40px;
  transition: color 0.3s ease 0s;
}
#leftNav > ul > li.hasSubnav > button:before {
  content: "\e914";
  color: var(--blue3);
}
#leftNav > ul > li.hasSubnav.selected > button:before {
  color: var(--darkblue2);
}
#leftNav > ul > li.hasSubnav > a:hover + button:before {
}

#leftNav > ul > li.hasSubnav.active > button:before {
  content: "\e913";
  color: var(--darkblue2);
}
#leftNavCtrl,#leftNavClose{
  cursor: pointer;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
}
#leftNavClose{
  background-color: var(--darkblue4);
  position: absolute;
  right: -55px;
  top: 0;
}
#leftNavClose:hover{
  background-color: var(--lightgreen1);
}
#leftNavClose:hover > span:before, #leftNavClose:hover > span:after {
	background-color:var(--lakegreen3);
}
	
#leftNavClose > span{
  display: block;
  position: relative;
  height: 100%;
  text-indent: -9999px;
}
#leftNavCtrl{
  position: relative;
  background-color: var(--blue1); 
  display: none;
}
#leftNavCtrl > span {
  display: block;
  width: 14px;
  height: 2px;
  text-indent: -9999px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background-color: #fff;
}

#leftNavCtrl > span:before,
#leftNavCtrl > span:after {
  content: "";
  height: 2px;
  background-color: #fff;
  position: absolute;
  display: block;
}
#leftNavCtrl > span:before{
  width: 18px;
  top: -5px;
}
#leftNavCtrl > span:after{
  width: 10px;
  bottom: -5px;
}
#leftNavCtrl > span,
#leftNavCtrl > span:before,
#leftNavCtrl > span:after {
  transition: all 0.3s ease 0s;
}

#leftNavClose > span:before, #leftNavClose > span:after {
	content: '';
	height: 3px;
	width: 25px;
	border-radius:1.5px;
	display: block;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: rotate(-45deg) translate(-50%, -50%);
	transform-origin: top left;
}
#leftNavClose > span:after {
	transform:rotate(45deg) translate(-50%, -50%);
}
#mainContentWrap{
  padding-top: 30px;
}
.blank #mainContentWrap{
	padding-top: 80px;
}
#mainContent {
  width: 100%;
  position: relative;
  min-height: 460px;
  font-weight: 400;
}
#mainContentWrap.hasLeftNav > .container #mainContent{  
  width: calc(100% - 380px);
}
#contentWrap.shown #content {
  opacity: 1;
}
#content{
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

#lastRevDate {
  text-align: left;
  color: #6e6e6e;
  font-size: 0.833em;
  padding: 10px 20px;
}
/*swiper*/
.swiper-wrap {
  position: relative;
}

.swiper-wrap .swiper-arrow {
  cursor: pointer;
  position: relative;
  width: var(--swiper-arrow-size);
  height: var(--swiper-arrow-size);
  z-index: 990;
  font-size: 0;
  line-height: 0;
  display: inline-block;
  overflow: hidden;
  border: none;
}

.swiper-wrap .swiper-arrow span {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.swiper-wrap .swiper-arrow span:before {
  font-family: 'icons';
  display: block;
  color: var(--lakegreen2);
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 40px;
  transition: color 0.3s ease 0s, margin-left 0.3s ease 0s;
}

.swiper-wrap .swiper-prev span:before {
  content: "\e910";
}

.swiper-wrap .swiper-next span:before {
  content: "\e911";
}

.swiper-wrap .swiper-arrow:not(.swiper-button-disabled):hover span:before,
.swiper-wrap .swiper-arrow:not(.swiper-button-disabled):focus-within span:before {
  color: var(--lakegreen1);
}

.swiper-wrap .swiper-prev span:before {
  margin-left: 0;
}

.swiper-wrap .swiper-prev:not(.swiper-button-disabled):hover span:before,
.swiper-wrap .swiper-prev:not(.swiper-button-disabled):focus-within span:before {
  margin-left: -5px;
}

.swiper-wrap .swiper-next span:before {
  margin-left: 0;
}

.swiper-wrap .swiper-next:not(.swiper-button-disabled):hover span:before,
.swiper-wrap .swiper-next:not(.swiper-button-disabled):focus-within span:before {
  margin-left: 5px;
}
.swiperCtrls {
  text-align: center;
  font-size: 0.89em;
}
.swiper-wrap .swiperCtrls .swiper-paging,
.swiper-wrap .swiperCtrls .swiper-paging2 {
  width: inherit;
}
.swiper-paging,
.swiper-paging2 {
  display: flex;
  padding: 0 10px;
  font-weight: 300;
}
.swiper-paging > a {
  display: inline-block;
  height: 40px;
  width: 10px;
  position: relative;
  vertical-align: top;
  text-indent: -9999px;
  opacity: 0.25;
}
.swiper-paging > a.swiper-pagination-bullet-active {
  width: 20px;
}
.swiper-paging > a:before {
  content: "";
  position: absolute;
  background-color: var(--green1);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease 0s;
}
.swiper-paging .swiper-pagination-bullet:hover {
  opacity: 1;
}
.swiper-paging .swiper-pagination-bullet:hover:before {
  background-color: var(--lightgreen1);
}
.swiper-paging .swiper-pagination-bullet-active:before {
  background-color: transparent;
  width: 16px;
  height: 16px;
  border: 4px solid var(--green1);
  transition: border-color .3s ease 0s;
}
.swiper-paging .swiper-pagination-bullet-active:hover:before{
  border: 4px solid var(--lightgreen1);
  background-color: transparent;
}
.swiper-paging .swiper-pagination-bullet {
  background: none;
}
.swiper-paging .swiper-pagination-bullet-active {
  opacity: 1;
}
.swiperCtrls .swiper-paging span,
.swiperCtrls .swiper-paging2 span {
  padding: 0 2px;
}
.swiper-wrap .swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}
.swiper-notification {
  position: absolute;
  height: 0;
  width: 0;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
}
.btn-play {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-indent: -9999px;
  font-size: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--lakegreen2);
  outline: 2px solid rgba(255,255,255,0.25);
  z-index: 990;
  transition: background-color 0.3s ease 0s;
}
.btn-play:hover, .btn-play:focus-within{
  background-color: var(--lightgreen1);
}
.btn-play:before,
.btn-play:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 12px;
  background-color: #fff;
  border-radius: 5px;  
  top: 50%;
  transform: translateY(-50%);
}
.btn-play:hover:before,
.btn-play:hover:after,
.btn-play:focus-within:before,
.btn-play:focus-within:after  {  
   background-color: var(--lakegreen3);
}
.btn-play:before {
  left: 12px;
}
.btn-play:after {
  right: 12px;
}
.btn-play.stop:before {
  content: "";
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  background: none;
  border-radius: 0;
  height: 0;
  top: 50%;
  left: calc(50% + 1px);
  width: 0;
  transform: translate(-50%, -50%);
  /* transition: border-color .2s ease 0s; */
}
.btn-play.stop:hover:before{
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--lakegreen3);
  border-top: 6px solid transparent;
  
}
.btn-play.stop::after {
  display: none;
}
/*swiper*/
#sitemapZone{
  position: relative;
  margin-top: 40px;
  font-weight: 300;
}
@property --rotation {
  syntax: "<angle>";
  inherits: false;
  initial-value: 90deg;
}
#sitemapTrigger{  
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: rgb(0,84,188);
  background: linear-gradient(var(--rotation), rgba(0,84,188,1) 0%, rgba(5,206,180,1) 100%);
  transition: --rotation .3s ease-in 0s;
} 
#sitemapTrigger.enabled{
  cursor: pointer;
}
#sitemapTrigger:hover{
  --rotation: -90deg;
}
#sitemapTrigger > span{
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding: 0 30px;
  color: #fff;
}

#sitemapTrigger:hover > span{
  text-decoration: underline;
}
#sitemapTrigger > span:after{
  content: "\e914";
  font-family: icons;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7px;
  line-height: 20px;
  color: #fff;
}

#sitemapTrigger.active > span:after{
  content: "\e913";
}
#sitemapWrap{
  display: none;
  padding: 40px 30px; 
  background-color: var(--lakegreen5);
  opacity: 0;
}
#sitemapTrigger.active ~ #sitemapWrap{
  transition: opacity .3s ease 0s;
  opacity: 1;
}
#sitemapMain > div{ position: relative;}
#sitemapMain hr{
  width: 100%;
  height: 1px;
  background: var(--lakegreen1);
  margin: 30px 0;
}
#sitemapMain h2{
  font-size: 1em;
  font-weight: 700;
  color: var(--lakegreen3);
  margin-bottom: 10px;
}
#sitemapMain ul{  
  list-style-type: disc;
  margin-left: 26px;
  font-size: 0.8em;
}
#sitemapMain ul li {
  position: relative;
  padding: 0;
  margin-bottom: 10px;
}
#sitemapMain ul >li::marker{
  color: var(--lakegreen1);
  font-size: 1em;
}
#sitemapMain ul li a {
  text-decoration: none;
  color: var(--lakegreen3);
}
#sitemapMain a:hover,
#sitemapMain a:focus-within {
  text-decoration: underline;
}

#sitemapMain .item{
	border-radius:25px;
	width: calc((100% - 45px)/4);	
	position:absolute;
	display: block;
}
#sitemapTop{
  position: relative;
}
#pageBack{
  margin-top: 50px;
  padding-left: 36px;
  position: relative;
  color: var(--lakegreen3);
  font-weight: 700;
  line-height: 30px;
}
#pageBack:hover{
	text-decoration:underline;
}
#pageBack:before{
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid var(--lakegreen4);
  background: var(--lakegreen2);
  border-radius: 50%;
  left: 0;
  z-index: 1;
}
#pageBack:hover:before{
  border: 2px solid var(--lightgreen2);
  background: var(--lightgreen1);
}
#pageBack:after{
  font-family: 'icons';
  content: "\e918";
  display: block;
  color: #fff;
  font-size: 12px;
  position: absolute;
  left: 9px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  line-height: 30px;
  transition: color 0.3s ease 0s;
  z-index: 2;
}

#pageBack:hover:after{
  color: var(--lakegreen3);
}
#homeIcon_m{
  color: #fff;
  padding: 20px;
  border-bottom: 1px solid var(--darkblue2);
}
html.dialogOpen{ overflow:hidden!important; }
/********* dialog ************/
dialog {
  inset: 0;
  z-index: 10000;
  width: 95%;
  max-width: 800px;
  max-height: 100svh;
  overflow: hidden;
  transition: opacity .5s;
  border-radius: var(--border-radius);
  background: #fff; 
  animation-timing-function: cubic-bezier(.5, -.5, .1, 1.5);  
  padding: 0;
  border: 0;
  box-shadow: 0 0 15px 7px rgba(0, 0, 0, 0.2);
}
dialog[open] {
  --animation-slide-in-up: slide-in-up .5s cubic-bezier(.25, 0, .3, 1);
  animation: var(--animation-slide-in-up) forwards;
}
dialog:not([open]) {
  pointer-events: none;
  opacity: 0;
}
dialog::backdrop {
  backdrop-filter: blur(0);
  background-color: rgba(0, 0, 0, .5);
}
dialog[open]::backdrop {
  animation: backdrop-fade-in 0.5s ease-out forwards;
}
@keyframes slide-in-up {
  0% {
    transform: translateY(-100%)
  }
}
@keyframes backdrop-fade-in {
  from {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
  to {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}
dialog .modal-content{
  /* color: #fff; */
}
dialog .modal-content .modal-scroll-content>*:last-child {
  margin-bottom: 0 !important;
}
dialog .modal-content {
  padding: 0 1.2rem 1.2rem;
}
dialog .modal-content .modal-scroll-content {
  max-height: calc(100svh - 280px);
  min-height: 200px;
  overflow-y: auto;
  padding-right: 5px;
}
.firefox dialog .modal-content .modal-scroll-content {
  scrollbar-color: #05ceb4 #f4f4f4;
  scrollbar-width: thin;
}
dialog .modal-content .modal-scroll-content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
dialog .modal-content .modal-scroll-content::-webkit-scrollbar-track {
  background-color: #f4f4f4;
  border-radius: 5px;
}
dialog .modal-content .modal-scroll-content::-webkit-scrollbar-thumb {
  background-color: #05ceb4;
  border-radius: 5px;
}
dialog #modal-main{ 
  width: 100%;
  max-height: 100svh;
}
dialog #modal-main{
  padding: 20px;
}
dialog #modal-main .modal-content h2{ 
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 1.667em;
}
dialog #modal-main .modal-content p{
  margin: 0 0 20px 0;
}
dialog #modal-main .modal-content u{
  text-decoration: underline;
  font-weight: 700;
}
dialog #modal-main .modal-content a {
  text-decoration: underline;
}
dialog #modal-main #modal-nav{
  position: relative;
  padding: 20px 0;
}
dialog #modal-main .modalClose {
  cursor: pointer;
  position: absolute;
  width: 34px;
  height: 34px;
  top: 0;
  right: 0;
  text-indent: -9999px;
}
dialog #modal-main .modalClose:before,
dialog #modal-main .modalClose:after {
  content: '';
  height: 3px;
  width: 34px;
  display: block;
  background: var(--darkblue1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: left top;
  -webkit-transform-origin: left top;
  transition: width .3s ease 0s;
}
dialog #modal-main .modalClose:after {
  transform: rotate(45deg) translate(-50%, -50%);
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
}
dialog #modal-main .modalClose:hover:before,
dialog #modal-main .modalClose:hover:after,
dialog #modal-main .modalClose:focus-within:before,
dialog #modal-main .modalClose:focus-within:after{
  width: 38px;
}
dialog #modal-main .btn-wrap>button{
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  line-height: 30px;
  color: var(--main-color);
  font-weight: 700;
  background-color: #f3f7fb;
  transition: background-color .3s ease 0s;
}
dialog #modal-main .btn-wrap>button:hover, dialog #modal-main .btn-wrap>button:focus-within {
  background-color: var(--main-color);
  color: #fff;
}
dialog #modal-main .btn-wrap>button:not(only-of-type){
  margin-right: 20px;
  margin-bottom: 20px;
}
@supports not selector(::-webkit-scrollbar) {
  dialog .modal-content .modal-scroll-content,
  #content .popInfoBox .infoMain .details{
    scrollbar-color: #05ceb4 #ffffff;
    scrollbar-width: thin;
  }
}
#wrapper.blank #mainContent{ padding-bottom: 50px;}
#wrapper.blank #headerZone:before{ display: none;}
html#content, body#content{ opacity: 1!important;}
.notice{ color: #c20005;}
#topAssitLink_m{
	background-color: var(--blue3);
	padding: 10px 20px;
}
#topAssitLink_m li{
	padding:5px 15px;
}
#topAssitLink_m li a{
  display: inline-block;
  position: relative;
  color: #333;
  text-decoration: none;
}
#topAssitLink_m > ul li a:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  top: .5em;
  left: -14px;
}
#topAssitLink_m > ul li a:hover,
#topAssitLink_m > ul li a:focus-within{
	text-decoration: underline;
}

/*chatbot*/
#chatbotWrapper {
  z-index: 998;
  position: relative;
}
#chatbotBtn {
  cursor: pointer;
  position: fixed;
  bottom: 40%;
  right: 0;
  width: 101px;
  height: 102px;
  display: block;
  /* background-image: url(../../images/btn-chatbot-en.png); */
  transition: right 0.3s ease 0s;
}
#chatbotMain {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: fixed;
  right: -375px;
  bottom: 50px;
  width: 375px;
  background-color: var(--blue3);
  transition: right 0.3s ease 0s;
}
#chatbotIframe{
	line-height: 0;
}
#chatbotIframe iframe {
  border: 0;
  width: 100%;
  height: 500px;
}
#chatbotWrapper.active #chatbotMain {
  right: 0;
}
#chatbotWrapper.active #chatbotBtn {
  right: -102px;
}
#chatbotHead {
  position: relative;
  padding: 0 60px 0 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.25em;
  color: #fff;
  line-height: 60px;
  background-color: var(--blue1);
}
#chatClose {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
#chatClose:before {
  content: "\e911";
  color: #fff;
  font-family: "icons";
  display: block;
  font-size: 22px;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 40px;
  transition: color 0.3s ease 0s;
}
@media screen and (max-width: 435px) {
	#chatbotBtn {
		bottom: 70px;
	}
  #chatbotMain {
    width: 100%;
    height: 100%;
    border: none;
    right: -100%;
    margin: 0;
    position: fixed;
    bottom: 0;
    border-radius: 0;
    box-shadow: none;
  }
  #chatbotIframe iframe {
    border: 0;
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
  }
}
.showSitemap{
	display: none;
}
@media screen and (max-width: 1399.98px) {
.showSitemap{
	display: inline-block;
}	
}