@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');

/* CSS Document */

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tfoot, thead, 
article, aside, canvas, details, embed, 
figure, .figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
border: 0;
font-size: 100%;
font-family: 微軟正黑體,Microsoft JhengHei,arial,serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, .figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
html{height:100%;}
body{line-height:1; color: #000 !important; background-color: #fff !important; position: relative;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after{content:''; content:none;}
table{border-collapse:collapse; border-spacing:0;}
sup{vertical-align:super;}

button{cursor:pointer;}

.text-center {
	text-align: center;
}

.text-right {
    text-align: right;
}

.high-center {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.row {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.main-wrapper {
    width: 100%;
    overflow: hidden;
}

/*button style*/
.primary-btn {
	padding-top: 10px;
	margin-right: 10px;
}
.primary-btn a, 
.primary-btn button {
    color: #fff;
    padding: 10px 36px;
    border-radius: 50px;
    transition: all 0.5s;
}
.primary-btn button {
    border: 0;
}
.primary-btn a:hover, 
.primary-btn button:hover {
    color: #fff;
}
.primary-btn i {
    transition: all 0.5s;
}
.primary-btn a:hover i, 
.primary-btn button:hover i {
    transform: translateX(8px);
}

/*start*/
#wrapper{
    height: 100%;
	min-height:100%;
    overflow: hidden;
	position:relative;
}
header{
    background-color: #fff;
    border-bottom: 1px solid #b1cde2;
    /*height: 70px;*/
	width:100%;
	position:fixed;
	z-index:9999;
    /*box-shadow: 0 2px 8px rgb(0 0 0 / 20%);*/
}
img{width: 100%; height:auto; margin:0px auto;}

nav{width: 100%; position: relative;}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.main-menu{
    padding-left:0;
    /*margin-top:0.3rem;
    margin-bottom:0.5rem;*/
    list-style:none;
    display:flex;
    justify-content:center;
	}

.main-logo{margin-top:15px; margin-bottom:15px;}

#logo{max-width:280px;}

.main-logo a{display:block;}

.nav-container>ul>li{padding:10px 18px;}

.nav-container>ul>li>a{
	color:#000;
	font-size:16px;
	text-decoration:none;
	padding: 15px 0;
	letter-spacing:.1em;
	position:relative;
	transition: all 0.5s;
}

.nav-item>a:hover {
    color: #00aced;
}

.nav-container>ul>li>a::after{
    content:"";
    position:absolute;
    height:2px;
    width:100%;
    transform:scale(0,1);
    background:#00aced;
    transition:all 0.2s ease-in-out;
    top:40px;
    border-radius:5px;
    left:0%;
}

.nav-container>ul>li a:hover::after{transform:scale(1,1);}

.nav-icon-box {
    position: absolute;
    top: 0;
    right: 5%;
}

.nav-social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.nav-lan-box{
	margin-left:15px;
	display:flex;
	align-items:center;
	position: absolute;
    top: 50%;
    right: 3%;
    transform: translate(0, -50%);
}

.nav-lan-box .nav-lan-btn{color:#000; cursor:pointer;}
.nav-lan-btn i{margin-right:5px;}

.nav-lan-list{
	padding-left:0;
	list-style:none;
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-35px;
    -webkit-transform-origin:top;
    -ms-transform-origin:top;
    transform-origin:top;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition:all 0.4s ease;
    -o-transition:all 0.4s ease;
    transition:all 0.4s ease;
    pointer-events:none;
    -webkit-transform:rotateX(90deg);
    transform:rotateX(90deg);
    opacity:0;
    border: 1px solid #fff;
}

.nav-lan-open .nav-lan-list{
	pointer-events:auto;
    -webkit-transform:rotateX(0deg);
    transform:rotateX(0deg);
    opacity:1;
    }

.nav-lan-list li{background-color:#00aced;}

.nav-lan-list li a{
	display:inline-block;
    width:100%;
    height:35px;
    line-height:35px;
    padding:0 25px;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    text-align:center;
    position:relative;
    font-size:13px;
    font-weight:300;
    color:#fff;
	}

.nav-lan-list li:not(:first-child) a::before{
    content:"";
    position:absolute;
    top:0;
    left:10px;
    width:calc(100% - 20px);
    height:1px;
    background-color:rgba(255, 255, 255, 0.3);
	}

.nav-lan-btn:hover {
    color: #00aced;
}

.nav-lan-list li:hover{background-color:#0088cc;}

.main-menu li.has-drop{position:relative;}

.main-menu li.has-drop .navDrop{
	display:none;
	position:absolute;
    top:135%;
    left:0;
    width:150%;
}

.main-menu li.has-drop:hover .navDrop{display:block;}

.main-menu .navDropmenu{
	width:100%;
	padding-left:0;
	margin:10px;
}

.main-menu .navDropmenu li{background-color:#dcdcdc;}

.main-menu .navDropmenu li a{
	display:block;
	padding:15px;
	}
 
.main-menu .navDropmenu li:hover{
	background-color:#ccc;
	}

#logo img{width:100%;}

a{
	color:#00aced; 
	font-size:16px;
	text-decoration:none;
}
p{
	font-size:16px;
	color:#000;
	line-height:1.5em;
}

#mobile{display:none; text-align:left;}

#mobile>a{
	color:#fff;
	letter-spacing:2px;
	position:relative;
	transition: all 0.5s;
}

.navmenu-block {
    height: 95vh;
    overflow-y: scroll;
    background: linear-gradient(to bottom, #a2c1d8, #7386a4);

    &::-webkit-scrollbar {

        width: 7px;
  
      }
  
      &::-webkit-scrollbar-button {
  
        background: transparent;
  
        border-radius: 4px;
  
      }
  
      &::-webkit-scrollbar-track-piece {
  
        background: transparent;
  
      }
  
      &::-webkit-scrollbar-thumb {
  
        border-radius: 4px;
  
        background-color: rgba(0, 0, 0, 0.4);
  
        border: 1px solid slategrey;
  
      }
  
      &::-webkit-scrollbar-track {
  
        box-shadow: transparent;
  
      }
}

.navmenu-block>ul{ 
    padding-top: 25px;
    padding-left: 0;
}

.navmenu-inner {
    display: block;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    padding: 20px 20px 10px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.5s;
}

.navmenu-inner:hover {
    color: #000;
}

.navmenu-accordion {
    display:block;
    font-size:18px;
    position: relative;
    cursor: pointer;
    padding:20px 20px 10px;
    color:#fff;
    letter-spacing:2px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.5s;
}
  
.navmenu-panel {
	padding: 0 20px;
	max-height: 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.navmenu-accordion:after {
    position: absolute;
    top: 20px;
    right: 20px;
    content: '+';
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
}

.navmenu-panel p {
    color: #ddd;
    margin-top: 10px;
}

.navmenu-accordion:hover {
    color: #000;
}

.mobile-lan-box {
    display: flex;
    padding: 20px;
}

.mobile-lan-tit {
    color: #fff;
}

.mobile-lan-list {
    display: flex;
    list-style: none;
}

.mobile-lan-list li {
    padding-right: 10px;
}

.mobile-lan-list li a {
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.5s;
}

.mobile-lan-list li a:hover {
    color: #7386a4;
    background-color: #fff;
}

/* The component will reset button browser styles */

.r-button{
    --uirButtonBackgroundColor: var(--rButtonBackgroundColor, transparent);
    --uirButtonPadding: var(--rButtonPadding, var(--rButtonPaddingTop, 0) var(--rButtonPaddingRight, 0) var(--rButtonPaddingBottom, 0) var(--rButtonPaddingLeft, 0));
    --uirButtonBorderWidth: var(--rButtonBorderWidth, 0);
    --uirButtonBorderStyle: var(--rButtonBorderStyle, solid);
    --uirButtonBorderColor: var(--rButtonBorderColor, currentColor);
    --uirButtonFontFamily: var(--rButtonFontFamily, inherit);
    --uirButtonFontSize: var(--rButtonFontSize,  inherit);
    --uirButtonColor: var(--rButtonColor);
  
    background-color: var(--uirButtonBackgroundColor);
    padding: var(--uirButtonPadding);
  
    border-width: var(--uirButtonBorderWidth);
    border-style: var(--uirButtonBorderStyle);
    border-color: var(--uirButtonBorderColor);
  
    cursor: pointer;
  
    font-family: var(--uirButtonFontFamily);
    font-size: var(--uirButtonFontSize);
  }
  
  .r-button::-moz-focus-inner,
  .r-button[type="button"]::-moz-focus-inner,
  .r-button[type="reset"]::-moz-focus-inner,
  .r-button[type="submit"]::-moz-focus-inner {
    
    /* Remove the inner border and padding in Firefox. */
    
    border-style: none;
    padding: 0;
  }
  
  /* The component will reset browser's styles of link */
  
  .r-link{
      --uirLinkDisplay: var(--rLinkDisplay, inline-flex);
      --uirLinkTextColor: var(--rLinkTextColor);
      --uirLinkTextDecoration: var(--rLinkTextDecoration, none);
  
      display: var(--uirLinkDisplay) !important;
      color: var(--uirLinkTextColor) !important;
      text-decoration: var(--uirLinkTextDecoration) !important;
  }
  
  /* The component will reset browser's styles of list */
  
  .r-list{
      --uirListPaddingLeft: var(--rListPaddingLeft, 0);
      --uirListMarginTop: var(--rListMarginTop, 0);
      --uirListMarginBottom: var(--rListMarginBottom, 0);
      --uirListListStyle: var(--rListListStyle, none);
  
      padding-left: var(--uirListPaddingLeft) !important;
      margin-top: var(--uirListMarginTop) !important;
      margin-bottom: var(--uirListMarginBottom) !important;
      list-style: var(--uirListListStyle) !important;
  }
  
  /* Basic styles of the hamburger component */
  
  .m-hamburger{  
    --uiHamburgerThickness: var(--hamburgerThickness, 4px);
  
    display: var(--hamburgerDisplay, inline-flex);
    width: var(--hamburgerWidth, 28px);
    height: var(--hamburgerHeight, 20px);
    position: relative;
    z-index: 999999;
  }
  
  .m-hamburger::before, 
  .m-hamburger::after, 
  .m-hamburger__label{
    width: 100%;
    height: var(--uiHamburgerThickness);
    border-radius: var(--hamburgerBorderRadius, 5px);
    background-color: var(--hamburgerBackgroundColor, currentColor);
  
    position: absolute;
    left: 0;
  }
  
  .m-hamburger::before, 
  .m-hamburger::after{
    content:"";
  }
  
  .m-hamburger::before{
    top: 0;
  }
  
  .m-hamburger::after{
    bottom: 0;
  }
  
  .m-hamburger__label{
    /* The calculation of middle hamburger button line position */
    
    top: calc(50% - calc(var(--uiHamburgerThickness) / 2));
  }
  
  /* helper to hide elements that are available only for screen readers. */
  
  .screen-reader{
    width: var(--screenReaderWidth, 1px) !important;
    height: var(--screenReaderHeight, 1px) !important;
    padding: var(--screenReaderPadding, 0) !important;
    border: var(--screenReaderBorder, none) !important;
  
    position: var(--screenReaderPosition, absolute) !important;
    clip: var(--screenReaderClip, rect(1px, 1px, 1px, 1px)) !important;
    overflow: var(--screenReaderOverflow, hidden) !important;
  }
  
  /*
  =====
  MENU STYLES
  =====
  */
  
  .menu-container{
    --uiMenuCircleSize: var(--menuCircleSize, 6.25rem);
    --uiMenuCircleOffset: var(--menuCircleOffset, 1rem);
    --uiMenuCircleHeight: calc(var(--uiMenuCircleSize) / 2);  

    --uiMenuCircleBackgroundColor: var(--menuCircleBackgroundColor, currentColor);
  
    --uiMenuHamburgerWidth: var(--menuHamburgerWidth, 1.75rem);
    --uiMenuHamburgerHeight: var(--menuHamburgerHeight, 1.25rem);
    
    --rButtonPaddingTop: calc(var(--uiMenuCircleHeight) - var(--uiMenuHamburgerHeight) - var(--uiMenuCircleOffset));
    
    --hamburgerWidth: var(--uiMenuHamburgerWidth);
    --hamburgerHeight: var(--uiMenuHamburgerHeight);
    --hamburgerBackgroundColor: var(--menuHamburgerBackgroundColor, #fff);
  
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;  
  
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--menuZindex, 9998);
  }
  
  .menu__nav{
    box-sizing: border-box;
    width: 100%;
    height: 0;
  
    transition: opacity .2s ease-out;
    opacity: 0;
  
    display: flex;
    align-items: flex-end;
    z-index: 2;

    overflow-y: overlay;

    &::-webkit-scrollbar {

        width: 7px;
  
      }
  
      &::-webkit-scrollbar-button {
  
        background: transparent;
  
        border-radius: 4px;
  
      }
  
      &::-webkit-scrollbar-track-piece {
  
        background: transparent;
  
      }
  
      &::-webkit-scrollbar-thumb {
  
        border-radius: 4px;
  
        background-color: rgba(0, 0, 0, 0.4);
  
        border: 1px solid slategrey;
  
      }
  
      &::-webkit-scrollbar-track {
  
        box-shadow: transparent;
  
      }
  }
  
  .menu__list{
    width: 100%;
    max-height: 100%;
  
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .menu__toggle{
    box-sizing: border-box;
    width: var(--uiMenuCircleSize);
    height: var(--uiMenuCircleHeight);
    flex: none;
  
    position: relative;
  }
  
  .menu__toggle::before{
    /*
    1. The font-size property is used to simplify calculations of the element's sizes and position
    2. The negative value for the bottom property need for hiding half of circle. 
    */
  
    content: "";
    width: 1em;
    height: 1em;
    font-size: var(--uiMenuCircleSize); /* 1 */
  
    background-color: var(--uiMenuCircleBackgroundColor);
    border-radius: 50%;
  
    position: absolute;
    bottom: -.5em; /* 2 */
    left: calc(50% - .5em);
    z-index: -1;
  
    will-change: width, height;
    transition: transform .25s cubic-bezier(0.04, -0.1, 0.29, 0.98),
                width .25s cubic-bezier(0.04, -0.1, 0.29, 0.98),
                height .25s cubic-bezier(0.04, -0.1, 0.29, 0.98);
  }
  
  /* styles of hamburger's animation */
  
  .m-hamburger::before, 
  .m-hamburger::after, 
  .m-hamburger__label{
    transition-timing-function: ease;
    transition-duration: .15s;  
  }
  
  .m-hamburger::before, 
  .m-hamburger::after{
    transition-property: transform;
  }
  
  .m-hamburger__label{
    transition-property: transform, opacity;
  }
  
  /*
  =====
  MENU STATES
  =====
  */
  
  .menu__toggle:focus,
  .menu__link:focus{
    outline: var(--menuHaburgerOutlineOWidth, 2px) solid var(--menuHaburgerOutlineColor);
    outline-offset: var(--menuHaburgerOutlineOffset, 5px);
  }
  
  .menu_activated{
    height: 100%;
  }
  
  .menu_activated .menu__nav{
    flex-grow: 1;
    opacity: 1;
  
    will-change: opacity;
    transition-duration: .2s;
    transition-delay: .3s;
  }
  
  .menu_activated .menu__toggle::before{
    width: 100vmax;
    height: 100vmax;
    transform: translate3d(-50vh, -50vh, 0) scale(5);
    transition-duration: 1s;
  }
  
  .menu:not(.menu_activated) .menu__list{
    display: none;
  }
  
  .menu_activated .m-hamburger::before{
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(45deg);
  }
  
  .menu_activated .m-hamburger::after{
    transform: translate3d(0, -50%, 0) rotate(135deg);
    top: 50%;
  }
  
  .menu_activated .m-hamburger__label{
    transform: rotate(-45deg) translate3d(-.285em,-.3em, 0);
    opacity: 0;
  }
  
  /*
  =====
  SETTINGS
  =====
  */
  
  :root{
    --colorWhite: #fff;
    --colorMain: #8ba4be;
    --menuCircleBackgroundColor: var(--colorMain);
    --menuHamburgerBackgroundColor: var(--colorWhite);
    --menuHaburgerOutlineColor: var(--colorMain);
  }
  
  .menu_activated{
    --menuHaburgerOutlineColor: var(--colorWhite);
  }
  
  .menu__group{
    --rLinkTextColor: var(--colorWhite);
  
    padding: .5rem 2rem; 
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  

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

.navmenu-logo {
    width: 100%;
    max-width: 260px;
    float: left;
    margin-top: 20px;
}

.navmenu-row {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 30px 0 !important;
}

.navmenu-list {
    padding: 20px 10px;
    list-style: none;
}

.navmenu-list h3 {
    color: #082e4a;
    font-size: 20px;
    font-weight: bold;
}

.navmenu-list li {
    padding: 10px 0;
}

.navmenu-list a {
    color: #fff;
}

.navmenu-list a:hover {
    color: #000;
}

.navmenu-list i {
    width: 100%;
    max-width: 32px;
    font-size: 16px;
    text-align: center;
}

.navmenu-image {
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 60%;
    overflow: hidden;
    position: relative;
}

.navmenu-image img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    transform: translate(-50% , 0);
}

.navmenu-item{
    width: 100%;
    position: relative;
    list-style: none;
    font-size: 16px;
    font-weight: bold;
}

.navmenu-info {
    padding-top: 10px;
}

.dropnav-item a:hover {
    color: #00aced;
}

.language-tit {
    color: #fff;
    font-size: 18px;
}

.language-tit i {
    margin-right: 5px;
}

.language-options {
    padding: 15px 0 0;
}

.language-options li {
    display: inline;
    padding: 0 15px 0 0;
}

.language-options li a {
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.5s;
}

.language-options li a:hover {
    background-color: #fff;
    color: #7386a4;
}

.drop-box h3 {
    font-size: 20px;
    color: #082e4a;
}

.dropnav-item a {
    font-size: 16px !important;
    color: #000;
    line-height: 1.5em;
    padding: 10px 15px;
}

#mobile>ul>li:hover>a{color:#000;}

.navmenu-item.lang{text-align:center;}
.navmenu-item.lang a{display:inline-block; padding:20px 0;}

.navmenu-item.has-drop>a::before{
	content:"";
    display:inline-block;
    width:60px;
    height:100%;
    background:#f0f0f2;
    position:absolute;
    top:0;
    right:0;
    border-left:1px solid #ededed;
    z-index:1;
	}

.navmenu-item.has-drop>a::after{
	content:"+";
	font-size:20px;
	position:absolute;
    top:30%;
    left:auto;
    right:22px;
    z-index:10;
	}

.navmenu-item.has-drop:hover>a::after{color:#5f605d;}
.navmenu-item.has-drop:hover>a.is-open::after{
	content:"-";
	font-size:28px;
	top:20%;
	}

/*手機次選單_start*/
#mobile ul.mobile-dropmenu{
	padding-left:0;
	margin:0;
	}

#mobile ul.mobile-dropmenu li{
	width:100%;
	background-color:#486371;
	}

#mobile ul.mobile-dropmenu li:hover{background-color:#668bc4;}

#mobile ul.mobile-dropmenu li a{color:#fff;}
/*手機次選單_end*/

.mobile-menu{width:100%;}

.mobile-logo {
    display: none;
}

.open-nav{display: none; position:absolute; right: 5%; cursor:pointer; z-index:999999;}

.open-nav i {
    color: #aaa;
    font-size: 28px;
	padding: 12px 20px;
}

/* dropdown menu */
.main-menu .dropdown {
    position: relative;
}
.drop-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 260px;
    left: 0;
    right: 0;
    top: 45px;
    border-radius: 0;
    /*max-height: 40vh;
    overflow-y: scroll;*/
    background-color: #fff;
    border-left: 5px solid #00aced;
    box-shadow: 0 5px 10px rgb(0,0,0,0.4);
    transition: all 0.5s;
    z-index: 0;

    &::-webkit-scrollbar {

        width: 7px;
  
      }
  
      &::-webkit-scrollbar-button {
  
        background: transparent;
  
        border-radius: 4px;
  
      }
  
      &::-webkit-scrollbar-track-piece {
  
        background: transparent;
  
      }
  
      &::-webkit-scrollbar-thumb {
  
        border-radius: 4px;
  
        background-color: rgba(0, 0, 0, 0.4);
  
        border: 1px solid slategrey;
  
      }
  
      &::-webkit-scrollbar-track {
  
        box-shadow: transparent;
  
      }
}
.main-menu .dropdown:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
.drop-list .dropnav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.dropnav-item {
    list-style: none;
    width: 100%;
    transition: all 0.3s;
}
.dropnav-item:hover {
    background-color: #eee;
}
.dropnav-item a {
    display: flex;
    align-items: center;
}
.dropnav-item i {
    color: #00aced;
    font-size: 24px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
.dropnav-item a:hover i {
    color: #0072af;
}
.drop-row {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto !important;
    padding-top: 10px !important;
}
.drop-box {
    padding: 10px 6px !important;
    margin-bottom: 10px;
    transition: all 0.5s;
}
.drop-box:hover {
    background-color: #e2f3fb;
}
.drop-menu h3 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
}
.dropnav {
    padding: 0 !important;
    margin: 0 !important;
}

/*hover animation effect*/
.hover-fadeup, .hover-fadedown {
    transform: translateY(0);
    transition: all 0.5s;
}

.hover-fadeup:hover {
    transform: translateY(-20px);
}

.hover-fadedown:hover {
    transform: translateY(20px);
}

.hover-fadeleft, .hover-faderight {
    transform: translateX(0);
    transition: all 0.5s;
}

.hover-fadeleft:hover {
    transform: translateX(-20px);
}

.hover-faderight:hover {
    transform: translateX(20px);
}

.hover-zoomin {
    transform: scale(1);
    transition: all 0.5s;
}

.hover-zoomin:hover {
    transform: scale(1.1);
}

.hover-underline {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    padding: 5px 8px;
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

.hover-underline:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #00aced;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hover-underline:hover:before, .hover-underline:focus:before, .hover-underline:active:before {
    right: 0;
}

/*index_banner*/

#section2 {
    padding-top: 65px;
}

.banner-slide-body {
    width: 100%;
    padding-top: 70px;
}

.index-banner-block {
    width: 100%;
    position: relative;
}

.swiper{width:100%; height:100%; overflow:hidden;}

.index-banner-block .swiper-slide {
    position: relative;
    height: 100%;
    min-height: 900px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.banner-slide-3 {
    display: flex;
    height: 100%;
    max-height: 900px;
}

.banner-slide-3 .banner-object {
    position: relative !important;
    width: 33.3%;
}

.banner-slide-3 img {
    width: auto;
}

.object1-1 {
    top:0;
    right: -100px;
}

.object1-2 {
    left: -300px;
}

.object2-1 {
    bottom: 20%;
    left: -200px;
}

.object2-2 {
    top: 5%;
    left: 5%;
}

.object2-3 {
    right: 0;
    bottom: 0;
}

.object2-4 {
    top: -100px;
    right: 15%;
}

.object3-1 {
    bottom: 300px;
}

.object3-2 {
    top: 300px;
}

.object3-3 {
    bottom: 300px;
}

.object4-1 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.object4-1 img {
    width: 100%;
    height: 100%;
    min-height: 900px;
}

.object4-1-s {
    display: none;
    width: 100%;
    justify-content: center;
}

.object4-1-s img {
    width: 100%;
    height: 100%;
}

.object4-2 {
    width: 100%;
    top: -270px;
}

.object4-2 img {
    width: 90%;
    max-width: 550px;
}

.banner-slide-5 {
    height: 100%;
    max-height: 900px;
    overflow: hidden;
}

.banner-slide-5 .banner-object {
    position: relative !important;
    overflow: hidden;
    display: block;
    height: 0;
    text-align: center;
}

.banner-slide-5 img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    transform: translate(-50% , 0);
}

.object5-1 {
    width: 50%;
    float: left;
    top: 0;
    left: -300px;
    padding-bottom: 25%;
}

.object5-2 {
    width: 50%;
    float: right;
    right: -300px;
    padding-bottom: 58%;
}

.object5-3 {
    width: 50%;
    float: left;
    left: -300px;
    bottom: 0;
    padding-bottom: 32%;
}

.object6-1 {
    right: 5%;
}

.object6-2 {
    left: 10%; bottom: -150px;
}

/* banner effect */
.swiper-slide .banner-object {
    position: absolute;
    transform: none;
    transition-duration: 0.8s;
}
.swiper-slide .banner-delay-s {
    transition-delay: 0.4s;
}
.swiper-slide .banner-delay {
    transition-delay: 0.8s;
}
.swiper-slide .banner-opacity {
    opacity: 0;
}
.swiper-slide-active .banner-opacity {
    opacity: 1;
}
.swiper-slide-active .banner-fade-up {
    transform: translateY(-300px);
}
.swiper-slide-active .banner-fade-down {
    transform: translateY(300px);
}
.swiper-slide-active .banner-fade-left {
    transform: translateX(-300px);
}
.swiper-slide-active .banner-fade-right {
    transform: translateX(300px);
}
.swiper-slide-active .banner-fade-up-left {
    transform: translate(-100px,-100px);
}
.swiper-slide-active .banner-fade-up-right {
    transform: translate(100px,-100px);
}
.swiper-slide-active .banner-fade-down-left {
    transform: translate(-100px,100px);
}
.swiper-slide-active .banner-fade-down-right {
    transform: translate(100px,100px);
}
.swiper-slide .banner-zoom-in {
    transform: scale(0.9);
}
.swiper-slide-active .banner-zoom-in {
    transform: scale(1);
}
.swiper-slide .banner-zoom-out {
    transform: scale(1.1);
}
.swiper-slide-active .banner-zoom-out {
    transform: scale(1);
}

/* index about area */
.area-container {
    position: relative;
}

.about-area {
    background-image: url(/images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.area-row {
    width: 100%;
    max-width: 1400px;
    padding: 80px 0 !important;
    margin: 0 auto !important;
}
.area-col {
    z-index: 1;
}
.about-area-img img {
    width: 720px;
}
.area-row-txt {
    z-index: 1;
}
.about-area .area-row {
    padding: 120px 0 !important;
}

.area-txt-box {
    position: absolute;
    top: -12%;
    right: 20%;
    width: 100%;
    max-width: 720px;
    padding: 40px 30px;
    background-color: #fff;
    z-index: 99;
}

.about-area-txt {
    margin: auto;
    padding: 0 15px;
}

.area-entit {
    width: auto !important;
}
.area-entit h2 {
    font-family: 'Yeseva One', serif;
    font-size: 100px;
}
.about-area-entit h2 {
    color: #00aced;
}
.quote-left {
    text-align: left;
}
.quote-right {
    text-align: right;
}
.quote-icon i {
    color: #9ebdd4;
    font-size: 90px;
}
.area-tit {
    margin-bottom: 15px;
}
.area-tit span {
    font-size: 40px;
    color: #00aced;
}
.area-tit h3 {
    font-size: 28px;
    font-weight: 600;
}
.area-btn {
    display: flex;
    margin-top: 20px;
}
.area-btn .circle-btn-box {
    flex: 1;
}
.circle-btn {
    display: inline-block;
    color: #000;
    padding: 32px;
    position: relative;
    letter-spacing: 1px;
  
    &:hover {
      .btn__circle {
        transform: scale(0);
      }
  
      .btn__white-circle {
        transform: translate(-50%, -50%) scale(1);
      }
  
      .btn__text {
        transform: translate(40px, -50%);
      }
    }
}
.circle-btn:hover {
    color: #0088cc;
}
.btn__circle,
.btn__text,
.btn__white-circle {
    position: absolute;
}
  
.btn__circle {
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 100%;
    width: 100%;
    box-shadow: 0 0 1px 1px #000;
    transition: 0.3s linear;
}

.btn__white-circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background: #00aced;
    display: flex;
    transition: 0.3s ease-in-out;
}
  
.btn__text {
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 2;
    padding: 24px 5px;
    transition: 0.3s linear;
}
.circle-btn i {
    color: #fff;
    font-size: 24px;
    margin: auto;
}
.about-hover-container {
	position: relative;
	display: flex;
	.container {
		position: relative;
		height: 430px;
		width: 310px;
		margin: auto;
		display: -webkit-box;
		&:hover {
			> .bottom-right {
				top: 55%;
				left: 80%;
				box-shadow: 0px 37px 29px rgba(0, 0, 0, 0.3);
				width: 350px;			
			}
			> .middle {
				height: 90%;
				left: 5%;
				top: 5%;
				width: 90%;
				box-shadow: 0px 23px 33px rgba(0, 0, 0, 0.34);
				.overlay {
					opacity: 1;
					z-index: 1;

					p:nth-child(1) {
						padding-top: 0;
					}
				}
			}
			> .top-left {
				left: -70px;
				top: -90px;
				width: 150px;
				box-shadow: 0px 37px 29px rgba(0, 0, 0, 0.3);
			}
			> .top-right {
				 left: 250px;
				 top: -90px;
				 width: 260px;
				 height: 280px;
				box-shadow: 0px 37px 29px rgba(0, 0, 0, 0.3);
			}
			> .bottom-left {
				left: -89%;
				top: 65%;
				width: 360px;
				box-shadow: 0px 37px 29px rgba(0, 0, 0, 0.3);
			}
		
		}
		.about-area-img {
			background: url(/images/about-area-img.jpg) no-repeat;
		}
		.bg-image {
			background-size: auto;
			background-attachment: fixed;
			background-position: 10% 10%; 
		}
		.middle {
			transition: 500ms all;
			 transition-delay: 0.25s;
			transition-timing-function: cubic-bezier(.17,.67,.33,.97);
			position: relative;
			margin: auto;
			height: 100%;
			width: 100%;
			margin: 0px;
			left: 0;
			top: 0;
			box-shadow: 0px 17px 23px rgba(0, 0, 0, 0.34);
			.bg-image {
				height: 100%;
				width: 100%;	
			}
			.overlay {
				position: absolute;
				top: 0;
				left: 0;
				height: 100%;
				width: 100%;
				z-index: 9;
				background: rgba(0, 47, 82, 0.75);
				display: flex;
				flex-direction: column;
				transition: 300ms all;
			 transition-delay: 0.37s;
				opacity: 0;
				text-decoration: none;
				z-index: -1;
			}
            .overlay p {
                position: relative;
                margin: auto;
                color: #fff;
                text-transform: uppercase;
                font-family: 'Roboto', sans-serif;
                font-size: 1.1em;
                opacity: 0.8;
                &:nth-child(1) {
                    margin-bottom: 4px !important;
                    padding-top: 30px;
                    transition: all 400ms;
                    transition-delay: 0.3s;
                }
                &:nth-child(2) {
                    margin-top: 4px !important;
                }
            }
		}
		.bottom-right {
			transition: 800ms all;
			transition-delay: 0.15s;
			transition-timing-function: cubic-bezier(.17,.67,.33,.97);
			position: absolute;
			left: 0%;
			top: 48%;
			width: 100%;
			box-shadow: 0px 37px 29px rgba(0, 0, 0, 0);
			z-index: 1;
			.bg-image {
				height: 220px;
				width: 100%;	
			}
		}
		.bottom-left {
			transition: 800ms all;
			transition-delay: 0.17s;
			transition-timing-function: cubic-bezier(.17,.67,.33,.97);
			position: absolute;
			left: 0%;
			top: 48%;
			width: 100%;
			z-index: 1;
			.bg-image {
				height: 220px;
				width: 100%;	
			}
		}
		
		.top-left {
			transition-timing-function: cubic-bezier(.17,.67,.33,.97);
			transition: 600ms all;
			transition-delay: 0.19s;
			position: absolute;
			left: 0%;
			top: 0%;
			width: 150px;
			z-index: 1;
			.bg-image {
				height: 220px;
				width: 100%;	
			}
			
			
		}
		.top-right {
			transition: 500ms all;
			transition-delay: 0.08s;
			position: absolute;
			left: 0%;
			top: 0%;
			width: 300px;
			height: 260px;
			z-index: 1;
			transition-timing-function: cubic-bezier(.17,.67,.33,.97);
			.bg-image {
				 float: right;
				 height: 100%;
				 width: 100%;
			}
		}	
	}
}

@media (max-width: 920px) {
	.about-hover-container {
		transform: scale(.8) translateX(0px);
		overflow: hidden;
		.overlay {
			p:nth-child(1) {
				 margin-top: 125px;
			}
			p:nth-child(2) {
				margin-bottom: 30px !important;
			}
		}
		.bottom-right, .bottom-left, .top-left, .top-right {
			box-shadow: 0px 0px 0px !important;
		}
		
	}	
}
@media (max-width: 350px) {
	.bottom-right, .bottom-left, .top-left, .top-right {
		display: none !important;
	}
}

/* index service slide */
.service-hexagon-area {
    background-image: url(/images/service-hexagon-bg.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    padding: 60px 0 100px;
}

.service-hexagon-row {
    flex-direction: row-reverse;
}

.service-hexagon-entit {
    z-index: 9;
}

.service-hexagon-entit h2 {
    color: #fff;
}

.service-hexagon-area .area-tit {
    border-left: 12px solid #00aced;
    padding-left: 10px;
}

.service-hexagon-area .area-btn a {
    color: #000;
}

.service-hexagon-area .area-btn a:hover {
    color: #1b415d;
}

:root{
    --width: 100%;
    --height: 100%;
    --border-width: 200px;
    --border-height: 200px;
}
  
  .service-hexagon-gallery{
    position:relative;
    height:100%;
    width:100%;
  }
  
  .service-hexagon-gallery:after{
    content:'';
  }
  
  .service-hexagon-item img{
    width:var(--width);
    height:var(--height);
  }

  .service-hexagon-item:hover img {
    opacity: 0.3;
}

  .service-hexagon-item span {
    color: #ffffff;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 6px black;
    filter: drop-shadow(2px 2px 6px black);
    opacity: 1;
}

.service-hexagon-item i {
    color: #fff;
    position: absolute;
    right: 25%;
    bottom: 30%;
    font-size: 28px;
    text-shadow: 0 0 5px black;
    filter: drop-shadow(1px 1px 3px black);
}

.service-hexagon-item:hover span {
    color: #ffffff;
    text-shadow: none;
    opacity: 1;
}
  
  .service-hexagon-item{
    -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
     clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
     padding:5px;
     background:linear-gradient(#0072af,#00aced);
     width:var(--border-width);
     height:var(--border-height);
     max-height:250px;
     max-width:250px;
     height: var(--height);
     width:var(--width);
     transition:transform 0.2s;
     position:absolute;
     cursor:pointer;
  }
  
  
  
  .service-hexagon-item:before{
    content:'';
    position:absolute;
    opacity:0.5;
    width:350px;
    height:70px;
    background:white;
    top:0;
    left:0;
    z-index:1;
    transform:rotate(45deg);
    transition:transform 0.5s;
  }
  
  .service-hexagon-item:hover:before{
    transform: translate(-100px,400%) rotate(45deg);
    transition:transform 0.5s;
  }
  
  .service-hexagon-item:nth-child(2){
    top:196px;
    left:118px;
  }
  
  .service-hexagon-item:nth-child(3){
    top:0;
    left:235px;
  }
  
  .service-hexagon-item:nth-child(4){
    top:196px;
    left:353px;
  }
  
  .service-hexagon-item:nth-child(5){
    top:0;
    left:470px;
  }
  
  #hexagon {
  -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  
  }
  
  .service-hexagon-item:hover{
    transform:scale(1.2);
    transition:transform 0.2s;
    z-index:10;
  }

.service-slide-entit {
    position: absolute;
    top: -20%;
    right: 1%;
    z-index: 9;
}

.service-slide-entit h2 {
    color: #ccc;
}

.service-slide-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
  
.service-slide-main {
    width: 80%;
    height: 360px;
    box-shadow: 0 50px 75px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9e9e9;
    margin: 0 !important;
}
  
.service-slide-main .swiper-button-prev, 
.service-slide-main .swiper-button-next {
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
    left: auto;
    height: 45px;
    width: 40px;
    color: #e9e9e9;
    background: #1e1e1e;
}

.service-slide-main .swiper-button-prev::after, 
.service-slide-main .swiper-button-next::after {
    font-size: 12px;
}

.service-slide-main .swiper-button-prev {
    right: 40px;
    border-right: 1px solid #e9e9e9;
}
  
.service-slide-title {
    position: absolute;
    top: 20px;
    left: 0;
    font-family: "Epilogue", sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 172, 237, 0.8);
    color: #fff;
    background-image: linear-gradient(to right, #00aced, rgba(0, 0, 0, 0));
    padding: 5px 50px 5px 5px;
}

.swiper-slide-active .service-slide-title {
    animation: slide-in 0.3s ease-in both;
}
  
.service-slide-thumbs {
    order: -1;
    width: 15%;
    height: 360px;
}

.service-slide-thumbs .swiper-slide {
    background-color: #000;
}

.service-slide-thumbs .swiper-slide img {
    opacity: 0.6;
    transition: 0.3s;
}
  
.service-slide-thumbs .swiper-slide-active {
    opacity: 0.9;
}
  
.service-slide-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
  
.service-slide-thumbs .swiper-slide-thumb-active img {
    opacity: 1;
}
  
@keyframes slide-in {
    from {
      opacity: 0;
      right: -50%;
    }
}  

/* index service area */
.service-area {
    background-image: linear-gradient(#eee 60%, #fff 40%);
    padding: 60px 0;
}
.service-area .area-col {
    position: relative;
}
.service-area-txt {
    padding: 40px 8px 0;
}
.link {
	width: 12rem;
	height: 12rem;
	display: inline-block;
	font: 300 1.55rem/1.4 "Josefin Sans"; 
	text-transform: uppercase;
	letter-spacing: 0.1175em;
	word-spacing: 0.3em;
	text-decoration: none;
}
.link__svg {
		width: 100%;
		height: auto;
		transform-box: fill-box;
		fill: #2B3338;
		stroke: #2B3338;
		stroke-width: 0.05em;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.link__cloud {
		transform-origin: 50% 50%;
		animation: rotate normal infinite 3 * 20s linear;
		fill: rgba(255, 255, 255, 0.15);
	}

	.link__face,
	.link__arrow {
		transform-origin: 50% 50%;
		transition: transform 0.3s / 2 cubic-bezier(0.32, 0, 0.67, 0);

		.link:hover & {
			transform: scale(1.1);
			transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
		}
	}
	
	.link__arrow {
		stroke-width: 0.075em;
	}

	.link__text {
		animation: rotateReverse normal infinite 20s linear;
		transform-origin: 50% 50%;

		.link:hover & {
			animation-play-state: paused;
		}
	}

	.link--alt {
		font-size: 1.15rem;
		letter-spacing: 0;
		word-spacing: 0;
	}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

@keyframes rotateReverse {
	to {
		transform: rotate(-360deg);
	}
}

.service-center-box {
    position: absolute;
    left: -35%;
    bottom: -8%;
    width: 100%;
}

.service-center-block {
    display: flex;
    position: relative;
}

.service-logopic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-circle-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-circle-line img {
    width: 100%;
    max-width: 600px;
    animation: rotation 5s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform:rotate(0deg); /*為Chrome/Safari*/
        -moz-transform:rotate(0deg); /*為Firefox*/
        -ms-transform:rotate(0deg); /*為IE*/
        -o-transform:rotate(0deg); /*為Opera*/
    }
    100% {
        transform: rotate(359deg);
        -webkit-transform:rotate(359deg); /*為Chrome/Safari*/
        -moz-transform:rotate(359deg); /*為Firefox*/
        -ms-transform:rotate(359deg); /*為IE*/
        -o-transform:rotate(359deg); /*為Opera*/
    }
  }

.service-center-block .service-link {
    margin: auto;
}

.service-logopic img {
    max-width: 130px;
}
.service-area-entit {
    position: absolute;
    top: -10%;
    right: 5%;
    z-index: 9;
}
.service-area-entit h2 {
    color: #ccc;
}
.service-area .area-tit {
    border-left: 12px solid #00aced;
    padding-left: 10px;
}
.service-container {
    display: flex;
    width: 100%;
    padding: 4% 2%;
    box-sizing: border-box;
  }
  
  .service-box {
    flex: 1;
    overflow: hidden;
    transition: .5s;
    margin: 0 2%;
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    line-height: 0;
    height: 420px;
  }
  
  .service-box img {
    width: 100%;
    height: calc(100% - 45px);
    object-fit: cover; 
    transition: .5s;
  }

  .service-box span {
    font-size: 18px;
    display: block;
    text-align: center;
    height: 45px;
    line-height: 2.6;
    background-color: #fff;
    color: #000;
}
.service-box:hover span {
    color: #0072af;
}
  
.service-box:hover { flex: 1 1 50%; }
.service-box:hover > img {
    width: 100%;
    height: 100%;
}

/* index works area */

/*
.works-area {
    background-image: url(/images/work-bg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
*/

.works-area {
    /*background-image: linear-gradient(#9ee6da, #69cff7);*/
    background-color: #a2c1d8;
    padding: 40px 0;
    z-index: 1;
}

.works-block {
    flex-direction: row-reverse;
}
.works-area-entit {
    top: 0;
}
.works-area-entit h2 {
    color: #fff;
    text-align: center;
}
.works-area .area-tit h3 {
    text-align: center;
}
.work-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 40px;
}
.works-item {
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    background: #000000;
    text-align: center;
  }
  .works-item * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .works-img {
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
}
.works-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    transform: translate(-50% , 0) scale(1);
    transition: all 0.3s;
}

.works-item:hover>.works-img>img:last-child{
    opacity:0;
}

  .works-item img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
  }
  .works-item .works-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
  }
  .works-item .works-info > div {
    float: left;
    height: 100%;
    overflow: hidden;
    width: 50%;
    position: relative;
  }
  .works-item .works-info::before {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    width: 2px;
    content: '';
    opacity: 0;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  .works-item h2,
  .works-item p {
    margin: 0;
    padding: 20px;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
    transition: opacity 0.45s,-webkit-transform 0.45s,-moz-transform 0.45s,-o-transform 0.45s,transform 0.45s;
  }
  .works-item h2 {
    font-size: 28px;
    text-align: right;
    display: inline-block;
    word-spacing: -0.1em;
    font-weight: 300;
    text-transform: uppercase;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translate3d(50%, 0%, 0);
    transform: translate3d(50%, 0%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .works-item h2 span {
    font-weight: 800;
  }
  .works-item p {
    display: block;
    bottom: 0;
    text-align: left;
    font-weight: 300;
    top: 0%;
    color: #000;
    background: #ffffff;
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .works-item a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;
  }
  /*.works-item:hover img {
    opacity: 0.7;
  }*/
  .works-item:hover .works-info h2,
  .works-item:hover .works-info p {
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .works-item:hover .works-info h2 {
    opacity: 1;
  }
  .works-item:hover .works-info p {
    opacity: 1;
  }
  .works-item:hover .works-info::before {
    background: #ffffff;
    top: 0px;
    bottom: 0px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.works-area .area-btn {
    justify-content: center;
    align-items: center;
}
.works-area .area-btn a {
    color: #000;
}
.works-area .area-btn a:hover {
    color: #1b415d;
}

/* Graphic works - Turn page effect */
.turnpage-item {
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  background: #000000;
  text-align: left;
}
.turnpage-item * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.turnpage-item img {
  opacity: 1;
  width: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.turnpage-item > .works-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.turnpage-item > .works-info::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  background-image: linear-gradient(45deg, #000000 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.8));
}
.turnpage-item h2 {
    width: 100%;
    word-spacing: -0.1em;
    font-size:22px;
    font-weight: 400;
    text-transform: uppercase;
    top: 0;
    opacity: 0;
    padding: 25px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: transparent;
    text-shadow: 0 0 10px #ffffff;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.turnpage-item p {
    opacity: 0;
    position: absolute;
    top: 30%;
    padding: 0 25px;
    color: transparent;
    text-shadow: 0 0 10px #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    min-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.turnpage-item i {
  display: inline-block;
  font-size: 24px;
  color: #ffffff;
  padding: 10px 18px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: 0.05s linear;
  transition: 0.05s linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.turnpage-item .curl {
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(225deg, #ffffff, #f3f3f3 20%, #bbbbbb 38%, #aaaaaa 44%, #888888 50%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3));
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all .4s ease;
}
.turnpage-item .curl:before,
.turnpage-item .curl:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 12%;
  bottom: 6%;
  width: 70%;
  max-width: 300px;
  max-height: 100px;
  height: 55%;
  box-shadow: 0 12px 15px rgba(0, 0, 0, 0.3);
  transform: skew(-10deg) rotate(-6deg);
}
.turnpage-item .curl:after {
  left: auto;
  right: 6%;
  bottom: auto;
  top: 14%;
  transform: skew(-15deg) rotate(-84deg);
}
.turnpage-item a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: #ffffff;
}
.turnpage-item:hover > .works-info h2,
.turnpage-item.hover > .works-info h2 {
  opacity: 1;
  text-shadow: 0 0 0px #ffffff;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.turnpage-item:hover > .works-info p,
.turnpage-item.hover > .works-info p {
  opacity: 1;
  text-shadow: 0 0 0px #ffffff;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.turnpage-item:hover > .works-info::before,
.turnpage-item.hover > .works-info::before {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.turnpage-item:hover i,
.turnpage-item.hover i {
  opacity: 0.7;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.turnpage-item:hover .curl,
.turnpage-item.hover .curl {
  width: 90px;
  height: 90px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

/* Website works - Turn page effect */
.wsd-item {
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  background: #000000;
  text-align: center;
}

.wsd-item * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.wsd-item img {
  opacity: 0.9;
  width: 100%;
}

.wsd-item .works-info {
  top: 50%;
  left: 40px;
  right: 40px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wsd-item .works-info h2 {
  position: relative;
  text-transform: uppercase;
  -webkit-transform: translateY(75%);
  transform: translateY(75%);
}

.wsd-item .works-info p {
    color: #fff;
    opacity: 0;
    margin: 0;
    min-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.wsd-item:before,
.wsd-item:after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s, -moz-transform 0.6s, -o-transform 0.6s, transform 0.6s;
}

.wsd-item:before {
  border-top: 1px double #fff;
  border-bottom: 1px double #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.wsd-item:after {
  border-right: 1px double #fff;
  border-left: 1px double #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.wsd-item a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.wsd-item:hover img,
.wsd-item.hover img {
  opacity: 0.3;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transform: translate(-50% , 0) scale(1.1);
  transform: translate(-50% , 0) scale(1.1);
}

.wsd-item:hover .works-info h2,
.wsd-item.hover .works-info h2,
.wsd-item:hover .works-info p,
.wsd-item.hover .works-info p {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.wsd-item:hover .works-info p,
.wsd-item.hover .works-info p {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.wsd-item:hover:before,
.wsd-item.hover:before,
.wsd-item:hover:after,
.wsd-item.hover:after {
  opacity: 0.8;
  -webkit-transform: scale(1);
  transform: scale(1);
}


/* index news area */

/*
.news-area {
    background-image: url(/images/news-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
*/

.news-area {
    background-image: linear-gradient(white 60%, lightblue 0%);
}

.news-area-row {
    padding: 80px 0 !important;
}

.news-area-entit {
    position: absolute;
    top: 0;
    right: 0;
}
.news-area-entit h2 {
    color: #eee;
    font-size: 220px;
}
.news-area-content {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
}
.index-news-item {
    position: relative;
    background-color: #00aced;
    display: block;
    height: 0;
    padding-bottom: 30%;
    overflow: hidden;
}
.index-news-item img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    opacity: 1;
    transition: all 0.5s;
}
.index-news-item:hover img {
    opacity: 0.1;
}
.index-news-info {
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: 100%;
    max-width: 70%;
    opacity: 0;
    transition: all 0.5s;
}
.index-news-item:hover .index-news-info {
    opacity: 1;
}
.index-news-tit {
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}
.area-item-img {
    display: block;
    height: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.area-item-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    transform: translate(-50% , 0) scale(1);
    transition: all 0.3s;
}
.area-item:hover .area-item-img img {
    transform: translate(-50% , 0) scale(1.1);
}
.area-item-tit h4 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    min-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.area-item-date p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}
.area-item-txt p {
    font-size: 16px;
    line-height: 1.5em;
    color: #ccc;
    min-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.area-more-btn {
    text-align: right;
}
.area-more-btn button {
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    color: #666;
    padding: 5px 10px;
    transition: all 0.4s;
}
.area-item:hover .area-more-btn button {
    border: 1px solid #00aced;
    background-color: #00aced;
    color: #fff;
}
.news-area-txt {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-bottom: 20px;
}

.news-area-txt .area-tit {
    border-left: 12px solid #00aced;
    padding-left: 10px;
}

/* index article area */

/*
.article-area {
    background-image: url(/images/article-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
*/

.article-area {
    width: 100%;
    overflow: hidden;
    background-image: linear-gradient(lightblue 40%, white 0%);
}

.text-scroller{
    display: inline-flex;
    width: 100%;
    overflow: hidden;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
}

.werd {
    color: #eee;
    font-family: serif;
    font-size: 100px;
    text-indent: 0;
    white-space: nowrap;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.article-top-text .werd {
    color: #a2c1d8;
}

.left-werd {
    animation: text-left-scroller 10000ms linear 0ms normal infinite;
}

.right-werd {
    animation: text-right-scroller 10000ms linear 0ms normal infinite;
}

@keyframes text-left-scroller {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--scroller-size)*-0.5));
    }
}

@keyframes text-right-scroller {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--scroller-size)*0.5));
    }
}

:root {
    --scroller-size: 150vw;
}

@media only screen and (max-width: 600px) {
    :root {
    --scroller-size: 200vw;
    }
}

.article-area-txt {
    margin-top: auto !important;
}

.article-area-item {
    margin-bottom: 20px;
    z-index: 1;
}
.article-area-item:first-child, .article-area-item:nth-child(3) {
    margin-top: -50px;
}
.article-area-entit h2 {
    color: #eee;
}
.article-area-txt .area-tit h3 {
    color: #000;
}
.article-box {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
}
.article-area-img {
    padding-bottom: 70%;
}
.article-area-info {
    padding: 5px 10px;
}
.article-tit h4 {
    color: #00aced;
    margin-top: 10px;
}
.article-box:hover .article-tit h4 {
    color: #008ec3;
}
.article-date p {
    color: #ccc;
}
.article-txt p {
    color: #aaa;
}

/* index faq area */

.faq-area {
    background-image: linear-gradient(135deg, #fff 40%, #00aced 0%);
}

/*
.faq-area::before {
    position: absolute;
    display: block;
    content: "";
    background-image: url(/images/faq-before.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -120px;
    z-index: 1;
    width: 100%;
    height: 150px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(.1);
}
*/

.faq-area-titbox {
    padding: 10px;
}

.faq-area-entit h2 {
    color: #eee;
}
.faq-area .area-tit {
    margin-top: -30px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.collapsible-filter {
    margin-bottom: 20px;
}

.collapsible-accordion {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.5s;
}

.collapsible-icon {
    background-color: #00aced;
    border-radius: 50px;
}

.collapsible-icon i {
    color: #fff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.collapsible-expand, .collapsible-accordion:hover {
	border: 1px solid #00aced;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,0.3);
}
  
.collapsible-panel {
	padding: 0 18px;
	background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,0.1);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.collapsible-accordion:after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: '+';
    color: #aaa;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
    transform: translate(0 , -50%);
}

.collapsible-txt {
    margin-top: 10px;
	padding: 10px;
}

.collapsible-tit {
    margin-left: 10px;
    margin-right: 30px;
}

.collapsible-tit h4 {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.collapsible-tit b {
    font-size: 22px;
    font-weight: 900;
    color: #00aced;
}

.collapsible-txt p {
    color: #666;
}

.faq-area-img {
    position: relative;
}

.faq-img {
    display: block;
    width: 100%;
    height: 0;
    max-width: 80%;
    padding-bottom: 80%;
    overflow: hidden;
    position: relative;
}
.faq-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

/* index contact area */

.contact-area {
    background-image: url(/images/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.contact-area .area-row {
    position: relative;
    background-color: rgba(255,255,255,0.8);
    border-right: 12px solid #00aced;
    padding: 120px 60px !important;
}

.contact-quote {
    text-align: right;
}

.contact-quote i {
    color: #000;
    padding-right: 20px;
}

.contact-area-entit {
    position: absolute;
    top: 5%;
    left: -3%;
}

.contact-area-entit h2 {
    color: #00aced;
}
.contact-area-box {
    padding-top: 45px;
}
.contact-btn {
    margin-top: 30px;
}
.contact-btn a {
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    padding: 12px 16px;
    margin-right: 10px;
    transition: all 0.4s;
}
.contact-btn a:hover {
    color: #fff;
    background-color: #00aced;
    border: 1px solid #00aced;
}

/*索引區_start*/
.bread-block {
    width: 100%;
    position: relative;
    padding: 0 15px;
    z-index: 1;
}

.bread-block ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 5px !important;
}

.bread-block ul li{
    color:#000;
    list-style: none;
    padding: 5px;
}

.bread-block ul li a {
    position: relative;
    color: #000;
    transition: all 0.5s;
}

.bread-block ul li a:hover{color: #fff;}

.bread-block ul li a::after{
	content:">";
    padding-left:7px;
    color:#666;
}

.bread-block ul li span {
    font-size: 16px;
}

.bread-block ul li i{margin-right:3px;}

/*索引區_end*/

/*page_banner*/
.page-banner {
    position: relative;
}
.page-banner-container {
    height: 100%;
    max-height: 100%;
    min-height: 500px;
    /*animation: fadedown 500ms;*/
}
/*
@keyframes fadedown {
	0%{
		transform: translateY(-100px);
        opacity: 0;
	}
	100%{
		transform: translateY(0);
        opacity: 1;
	}
}
*/

.page-banner-info {
    position: absolute;
    top: 30%;
    left: 15%;
}
.page-banner-txt h1 {
    font-family: 'Anton', sans-serif;
    font-style: normal;
    font-size: 60px;
    letter-spacing: 2px;
    color: #67bd9a;
}
.page-banner-txt h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

/*about_page*/
.banner-body {
    width: 100%;
    display: flex;
    position: relative;
    background-image: url(/images/page-banner-bg.png);
    background-position: center left;
    background-repeat: no-repeat;
    padding-top: 90px;
}

.page-banner-block {
    width: 100%;
    max-width: 35%;
}

.page-banner-box {
    padding: 35px 15px 0;
}

.page-banner-entit h1 {
    font-family: 'Yeseva One', serif;
    font-size: 72px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-banner-tit h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    position: relative;
    z-index: 1;
}

.page-banner-img {
    display: block;
    width: 100%;
    max-width: 65%;
    height: 0;
    margin-left: auto;
    text-align: center;
    padding-bottom: 20%;
    overflow: hidden;
    position: relative;
}

.page-banner-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    padding-top: 35px;
}

.page-container {
    position: relative;
    padding-top: 60px;
    padding-bottom: 100px;
}

.page-edit-block {
    width: 100%;
    max-width: 1400px;
    margin: auto !important;
    padding: 0 15px;
}

.page-edit-box {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.content-col {
    position: relative;
    margin: auto !important;
}

.page-article-tit {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.page-article-tit h3 {
    color: #000;
    font-size: 28px;
    font-weight: bold;
}

.page-article-tit span {
    font-size: 40px;
    color: #00aced;
}

.page-article-content img {
    padding-bottom: 20px;
}

.page-article-content hr {
    margin: 30px 0;
}

.page-article-content h4 {
    font-size: 24px;
    font-weight: bold;
}

.page-article-content ul, .page-article-content ol {
    padding-left: 2em;
}

.printbox-col {
    margin-bottom: 30px;
}

.printbox-item {
    height: 100%;
    border: 1px solid #ccc;
    background-color: #eee;
}

.printbox-cover img {
    padding: 0;
    margin: 0;
}

.printbox-info h5 {
    color: #fff;
    background-color: #00aced;
    font-size: 20px;
    text-align: center;
    padding: 10px;
}

.printbox-info p {
    padding: 10px 15px;
}

.back-btn {
    margin-top: 40px;
}

.back-btn a {
    background: #00aced;
    color: #fff;
    line-height: 42px;
    padding: 10px 30px;
    border: none;
    position: relative;
    transition: 300ms ease all;
}

.back-btn a:hover {
    background: transparent;
    color: #000;
}

.back-btn a:before,
.back-btn a:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #00aced;
    transition:400ms ease all;
}

.back-btn a:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
}

.back-btn a:hover:before,
.back-btn a:hover:after{
    width:100%;
    transition:800ms ease all;
}
  
.back-btn i {
	transition: all 0.5s;
}
.back-btn a:hover i {
	transform: translateX(-8px);
}

.page-tab .tab {
    margin-bottom: 40px;
}

.tablinks {
    display: block;
    width: 100%;
    max-width: 180px;
    min-width: 140px;
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.5s;
}
.work-tab .tablinks.active {
    background-color: #00aced;
    border-color: transparent;
    color: #fff;
}
.page-tab .active {
    background-color: #a2c1d8;
}
.tablinks:hover {
    color: #fff;
    background-color: #00aced;
    border: 1px solid #00aced;
}
.page-title h3 {
    font-size: 26px;
    font-weight: 600;
}
.about-brand {
    padding: 0 !important;
}
.about-content-txt {
    width: 100%;
    max-width: 80%;
}
.about-content-map {
    padding: 0 !important;
}
.about-map-box iframe {
    width: 100%;
    height: 360px;
}

.content-row {
    padding: 20px 0 60px !important;
}

.about-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-box {
    border-bottom: 3px solid #00aced;
    padding-bottom: 20px;
}

.content-row .about-area-txt h3 {
    color: #000;
}

.content-row .about-area-txt p {
    color: #000;
}

.about-img-box {
    display: block;
    width: 100%;
    max-width: 60%;
    height: 0;
    margin: 40px auto;
    text-align: center;
    padding-bottom: 60%;
    border-radius: 999em;
    overflow: hidden;
    position: relative;
}

.about-img-box img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

.circle-line {
    width: 100%;
    max-width: 65%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-line img {
    width: 100%;
    animation: rotation 5s infinite linear;
}

/* software page */
.page-project-block {
    background-color: #eee;
}

.page-project-block .content-row {
    width: 100%;
    max-width: 1600px;
    margin: auto !important;
    position: relative;
}

.software-box {
    margin: auto !important;
}

.software-left, .software-right {
    z-index: 2;
}

.software-item-img img {
    width: 100%;
}

.page-project-tit {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translate(-50% , 0);
    z-index: 1;
}

.page-project-tit h4 {
    font-size: 22px;
    font-weight: bold;
}

.page-project-tit h3 {
    font-family: serif;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.software-item {
    padding: 15px;
    margin: 15px 0;
    border-bottom: 1px solid #fff;
    transform: translateY(0);
    transition: all 0.5s;
}

.software-item:hover {
    transform: translateY(-10px);
}

.software-item a {
    display: flex;
}

.software-left .software-item a {
    flex-direction: row-reverse;
}

.software-left .software-info {
    text-align: right;
}

.software-num span {
    font-family: 'Yeseva One', serif;
    font-size: 18px;
    color: #fff;
    background-color: #00aced;
    border-radius: 99em;
    padding: 10px;
    margin: 10px;
    transition: all 0.5s;
}

.software-info h4 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.software-item:hover .software-info h4 {
    color: #00aced;
}

.software-info p {
    font-size: 16px;
    line-height: 1.5em;
    color: #333;
    min-height: 1.5em;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.software-more {
    font-size: 14px;
}

/* service page */
.page-project-block .service-row {
    max-width: 1200px;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-txt-box {
    margin: auto !important;
    padding: 40px 25px 30px 40px !important;
}

.service-num {
    font-family: 'Yeseva One', serif;
    font-size: 100px;
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 5px;
    color: #ddd;
    z-index: -1;
}

.service-sub {
    font-family: 'Yeseva One', serif;
    font-size: 18px;
    font-weight: 200;
    color: #666;
}

.service-tit {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

.service-info p {
    color: #333;
    padding: 8px 12px;
    margin-left: 8px;
    border-left: 1px solid #666;
}

.service-img {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 80%;
    overflow: hidden;
}

.service-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

/* news page */
.news-row {
    padding: 20px 0 30px !important;
}

.second-news-col {
    padding: 0 !important;
}

.news-item {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
}

.main-news-item .news-img {
    padding-bottom: 85%;
}

.news-img {
    display: block;
    height: 0;
    text-align: center;
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
}

.news-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) scale(1);
    transition: all 0.5s;
}

.news-item:hover .news-img img {
    transform: translate(-50% , -50%) scale(1.1);
}

.main-news-item .news-tit {
    margin-top: 20px;
}

.news-tit {
    color: #00aced;
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    margin-top: 10px;
    min-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.news-item:hover .news-tit {
    color: #008ec3;
}

.main-news-item .news-txt {
    min-height: 96px;
    -webkit-line-clamp: 4;
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-txt {
    font-size: 16px;
    line-height: 1.5em;
    min-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.main-news-item .news-date {
    top: 40px;
}

.news-date {
    background-color: #00aced;
    padding: 0 10px;
    position: absolute;
    top: 30px;
    left: 0;
}

.main-news-item .news-date span {
    font-size: 26px;
}

.news-date span {
    color: #fff;
    font-family: 'Yeseva One', serif;
    font-size: 18px;
}

.news-detail-header {
    position: relative;
}

.news-detail-img {
    display: block;
    height: 0;
    padding-bottom: 35%;
    overflow: hidden;
    position: relative;
}

.news-detail-img img {
    max-width: 85%;
    min-width: 85%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0 , -50%);
}

.news-detail-date {
    width: auto !important;
    position: absolute;
    right: 0;
    bottom: 20%;
    border-bottom: 1px solid #000;
}

.news-detail-date span {
    color: #000;
    font-family: 'Yeseva One', serif;
    font-size: 40px;
    text-align: right;
}

.news-detail-tit {
    margin-top: 30px !important;
    margin-left: 10px;
    border-left: 6px solid #00aced;
}

.news-detail-tit h4 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5em;
}

.news-detail-content {
    margin-top: 20px !important;
}

.news-detail-content img {
    margin-bottom: 20px;
}

.news-detail-content p {
    margin-bottom: 1.8rem;
}

/* table style */
.table-responsive table {
    width: 100%;
    border-top: 1px solid #ccc;
}
.table-responsive th {
    background-color: #00aced;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 5px 10px;
}
.table-responsive tr {
    border-bottom: 1px solid #ccc;
    transition: 0.5s;
}
.table-responsive tr:hover {
    background-color: #eee;
    transition: 0.5s;
}
.table-responsive td:first-child {
    font-weight: 600;
    color: #00aced;
}
.table-responsive td {
    border: 1px solid #aaa;
    padding: 10px;
}
.edit-content-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.timetable-option {
    margin: 30px 0 40px;
}
.timetable-content {
    margin-bottom: 20px;
}
#monthOption {
    border-radius: 5px;
    border-color: #00aced;
    padding: 6px 20px 6px 6px;
}

/*contact_page*/
.contact-form-part {
    padding-left: 20px;
}
.contact-form-box {
    padding-top: 25px;
}
.form-box-inner label {
    display: block;
}
.form-verify img {
    width: auto;
}
.contact-column {
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #333;
    padding: 5px;
}
:focus {
    outline: 0;
}
#contact-message {
    height: 100%;
    min-height: 100px;
    max-height: 200px;
	margin-bottom: 0;
}
.contact-verify {
    display: flex;
}
.contact-verify .contact-form-column {
    flex: 5;
}
.contact-verify img {
    flex: 1;
    padding: 10px 0 5px 15px;
}
.ruleCheckbox {
    padding: 20px 0;
}
.ruleCheckbox input[type="checkbox"] {
    margin-right: 5px;
}
.content-form-btn {
    margin-top: 15px;
}
.content-form-btn button {
    color: #fff;
    background-color: #00aced;
    border-radius: 3px;
    border: none;
    padding: 10px 40px;
    transition: all 0.3s;
}
.content-form-btn button:hover {
    background-color: #0072af;
}
.contact-info-box {
    padding-top: 30px;
}
.contact-info-box h4 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.contact-info-box ul {
    padding: 0;
}
.contact-info-box ul li {
    list-style: none;
}
.contact-info-box ul li a {
    color: #333;
    transition: all 0.4s ease;
    line-height: 1.5em;
}
.contact-info-box ul li a:hover {
    color: #00aced;
}
.contact-info-box ul li i {
    padding-right: 5px;
}
.contact-map-block {
    margin-bottom: 40px;
}
.contact-map-box iframe {
    width: 100%;
    height: 400px;
}

/* product-showbox */
.product-showbox {
    height: 100%;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.product-showbox .swiper-container{
	width:100%;
	height:480px;
	margin-left:auto;
	margin-right:auto;
    }

	.product-showbox .swiper-slide {
		background-size: cover;
		background-position: center;
		display: block;
		height: 0;
		text-align: center;
		padding-bottom: 100%;
		overflow: hidden;
		position: relative;
	}

	.product-showbox .swiper-slide img {
		width: 100%;
		max-width: 100%;
    	min-width: 100%;
	    object-fit: cover;
    	height: 100%;
	    -moz-object-fit: cover;
    	-ms-object-fit: cover;
    	-o-object-fit: cover;
    	-webkit-object-fit: cover;
    	position: absolute;
    	transform: translate(-50% , 0) scale(1);
    	transition: all 0.3s;
	}

	.product-showbox .service-hexagon-gallery-top {
		height: 100%;
		max-height: 360px;
		width: 100%;
	}

.product-showbox .service-hexagon-gallery-thumbs{height:100px; box-sizing:border-box; padding:10px 0;}

.product-showbox .service-hexagon-gallery-thumbs .swiper-slide{height:100%; opacity:0.4;}

.product-showbox .service-hexagon-gallery-thumbs .swiper-slide-thumb-active{opacity:1;}

.product-infobox .project-price {
    margin: 15px 0;
}
.product-infobox .article-detail-txt {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #aaa;
}
.product-infobox .article-detail-txt h4 {
    font-size: 20px;
    font-weight: 600;
    color: #00aced;
}
.product-detail img {
    margin-bottom: 15px;
}

/*article page*/
.article-block {
    flex-direction: row-reverse;
    padding: 0 !important;
}
.article-content-box {
    padding-right: 40px !important;
}
.article-content-tit h3 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.article-item {
    padding-bottom: 40px;
}
.article-item .row {
    padding-bottom: 30px !important;
    border-bottom: 1px solid #aaa;
}
.article-item a:hover .row {
    border-bottom: 1px solid #00aced;
}
.article-date {
    color: #aaa;
    font-size: 14px;
}
.article-list-box h3 {
    font-size: 24px;
    font-weight: bold;
}
.article-category {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.category-box {
    padding: 0 !important;
}
.category-box li {
    list-style: none;
    padding: 3px 0;
}
.category-box i {
    color: #00aced;
    padding-right: 3px;
}
.category-box a {
    color: #666;
}
.category-box a:hover {
    color: #00aced;
}
.article-area-img {
    display: block;
    height: 0;
    padding-bottom: 20%;
    overflow: hidden;
    position: relative;
}
.article-area-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
	opacity: 0.8;
    transition: all 0.5s;
    padding: 5px;
}
.article-item a:hover .article-area-img img {
    opacity: 1;
}
.article-tit h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    display: -webkit-box;
    width: 100%;
    height: 2.4em;
    line-height: 1.2em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	transition: all 0.5s;
}
.article-item a:hover .article-tit h3 {
    color: #355ba8;
}
.article-sub {
    padding-bottom: 5px;
}
.article-sub span {
    color: #888;
}
.more-btn {
    margin-top: 15px;
}
.article-area-info {
    padding: 0 20px;
}
.article-date span {
    color: #888;
    font-size: 14px;
}
.article-detail-img {
    display: block;
	width: 100%;
    margin: auto;
    height: 0;
    padding-bottom: 40%;
    overflow: hidden;
    position: relative;
}
.article-detail-img img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.article-detail-intro {
    padding-left: 20px !important;
}
.article-detail-tit {
    margin: 20px 0;
}
.article-detail-tit h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
}
.article-detail-date {
    margin: 20px 0 10px !important;
}
.article-detail-date span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #aaa;
}
.article-detail-date a {
    font-size: 18px;
    font-weight: 600;
    color: #e9876e;
}
.article-detail-date a:hover {
    color: #355ba8;
}
.article-detail-content {
    border-top: 1px solid #aaa;
    margin-top: 20px !important;
    padding-top: 20px;
}
.article-detail-txt {
    margin-bottom: 20px;
}
.article-detail-txt p {
    color: #333;
}
.article-detail-content img {
    margin-bottom: 15px;
}
.article-table-responsive table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #ccc;
}
.article-table-responsive th {
    background-color: #00aced;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
}
.article-table-responsive tr {
    transition: 0.5s;
}
.table-responsive tr:hover {
    background-color: #eee;
    transition: 0.5s;
}
.article-table-responsive td {
    border-width: 1px;
    border-color: #ccc;
    background-color: #fff;
    text-align: center;
    padding: 10px;
    transition: all 0.5s;
}
.article-table-responsive td:hover {
    background-color: #eee;
}

/*privacy_page*/
.privacy-row {
    max-width: 1000px;
}
.content-block {
    padding-top: 40px;
}
.content-txt h1 {
    font-size: 30px;
    font-weight: 600;
}
.content-txt h2 {
    font-size: 20px;
}
.content-txt p, 
.content-txt ul {
    color: #888;
}


/* fixed icon */
.fixed-icon {
    background-color: #00aced;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 42px;
    opacity: 0.6;
    transition: all 0.5s;
    z-index: 99;
}

.fixed-icon:hover {
    opacity: 1;
}

.fixed-icon ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0 !important;
    padding: 0 !important;
}

.fixed-icon ul li {
    display: inline;
    padding: 0 20px;
}

.fixed-icon ul li a {
    color: #fff;
    font-size: 24px;
}


/*footer_start*/
footer{
    position: relative;
	line-height:1.4em;
	padding:30px 0 70px;
    background-color: #fff;
    box-shadow: 0 -2px 8px rgb(0 0 0 / 20%);
    background-color: #333;
    background-image: url(/images/footer-bg.png);
    background-position: right bottom;
    background-repeat: no-repeat;
}

footer a{
	color:#fff;
	transition:all 0.4s ease;
	line-height:1.5em;
    font-size:16px;
	}
	
footer a:hover{color:#00aced;}

.foot-logo {
    width: 100%;
    margin-bottom: 15px;
    z-index: 2;
}
.foot-logo img {
    width: 100%;
    max-width: 300px;
}
.foot-privacy {
    text-align: center;
    padding: 10px 0;
}
.foot-privacy a {
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}
footer li {
    list-style: none;
}
footer i {
    transition: all 0.4s ease;
}
footer a:hover i {
    color: #00aced;
}
.foot-icon {
    text-align: center;
}
.foot-icon a {
    font-size: 26px;
    padding: 6px;
    transform: translateY(0);
    transition: all 0.5s;
}
.foot-icon a i {
    transform: translateY(0);
    transition: all 0.5s;
}
.foot-icon a:hover i {
    transform: translateY(-5px);
}

.foot-subtit {
	font-size:22px;
	color:#fff;
	margin-bottom:10px;
}

.foot-list li {
    transform: translateX(0);
    transition: all 0.5s;
}
.foot-list li:hover {
    transform: translateX(5px);
}
/*
.foot-subtit {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 5px;
}
*/
.foot-untitled {
    padding-top: 40px;
}

footer .green-circle {
    position: absolute;
    bottom: 0;
    right: 5%;
    animation: float 3000ms infinite;
}

.foot-block{width:100%; max-width:1400px; margin:20px auto 40px;}

.foot-block .foot-row {
    width: 100%;
    margin: 0;
    padding: 0;
}

.foot-info-block {
    padding-right: calc(var(--bs-gutter-x)/ 2);
    padding-left: calc(var(--bs-gutter-x)/ 2);
}

.foot-box{width:33.333%; position:relative;}

.foot-box>.box-inner{margin:15px;}

.foot-box>.box-inner i{margin-right:5px;}

.foot-box-contact {
    margin: auto;
}

#footlogo{max-width:220px;}
#footlogo img{width:100%;}

.foot-block h3{
	font-size:20px;
	font-weight:600;
	color:#fff;
	margin-bottom:10px;
}

.foot-block p{
	line-height:1.7em;
	color:#fff;
	letter-spacing:1px;
    margin-bottom: 0;
}

.foot-block ul{padding-left:0;}

ul.foot-project-list li{
	display:inline-block;
	color:#fff;
	padding:3px 10px 3px 0;
	}

.foot-block li i{margin-right:5px; color:#fff;}

.ccin{
	width:100%;
    max-width:400px;
    margin:0 auto;
    text-align:center;
    color:#666;
    font-size:12px;
    box-sizing:border-box;
	}

.ccin a{font-size:12px; color:#888;}
.ccin li{font-size:12px;}

.ccin img{vertical-align:middle;}

.ccin a:hover{color:#00aced;}
/*footer_end*/

/*goTop*/
.goTop{
    position: fixed;
    bottom: 0;
    right: 10px;
    width: 40px;
    z-index: 999;
}
.goTop a:link, .goTop a:visited {
    text-decoration: none;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 0;
    font-size: 0;
    font-weight: 500;
    font-family: 'Microsoft YaHei', sans-serif;
    color: #fff;
    width: 100%;
    height: 40px;
    overflow: hidden;
    background-color: #00aced;
    /*box-shadow: 0 0 13px rgba(0, 0, 0, 0.3);*/
    transition: all 0s ease 0s;
}
.goTop a:active, .goTop a:hover {
	text-decoration:none;
	cursor:pointer;
	font-size:16px;
    color: #fff;
	transition: all 0.25s ease 0s;
}
.goTop a::after {
    content: '\f062';
    font-size: 20px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    Opacity: 1.0;
    transition: all 0.5s ease 0s;
}
.goTop a:hover::after{
	filter:alpha(opacity=0);
	Opacity:0;
	transition:all 0.25s ease 0s;
}


/* bread_start */


/* bread_end */


/*頁籤區_start*/
.numpage-btn{width:100%; text-align:center; margin-top: 20px;}

.numpage-btn .pagination{
	margin:20px 0;
    display:inline-flex;
    border-radius:0;
    padding-left:0;
    list-style:none;
	}

.pagination>li{display:inline;}

.numpage-btn .pagination li{padding:5px 10px;}
.numpage-btn .pagination li.active{
    color:#fff;
	}

.pagination>li>a, .pagination>li>span {
	position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.3s;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover{
    color:#fff;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover{
	background-color:#a2c1d8;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover{
	color: #fff;
    background-color: #00aced;
}

.pagination>li a:hover i{color:#fff;}
/*頁籤區_end*/


/*螢幕大小*/
@media screen and (max-width:1700px){
    .news-area-txt .area-btn {
        margin-left: 20px;
    }
}
@media screen and (max-width:1600px){
	nav {
		padding: 0 20px;
	}
	.main-menu{padding-right:80px;}
    .object2-2 {
        left: 0;
    }
    .object2-2 img {
        width: 550px;
    }
    .object2-3 {
        right: -100px;
    }
    .object2-3 img {
        width: 700px;
    }
    .object5-1 {
        padding-bottom: 30%;
    }
    .object5-2 {
        padding-bottom: 65%;
    }
    .object5-3 {
        padding-bottom: 36%;
    }
    .about-area-img img {
        width: 620px;
    }
}

@media screen and (max-width:1500px){
    .contact-area .area-row {
        max-width: 90%;
    }
    .contact-area-entit {
        left: 0;
    }
}

@media screen and (max-width:1400px){
    .object1-2 {
        width: 100%;
    }
    .object1-2 img {
        width: 100%;
    }
    .object2-2 {
        left: -5%;
    }
    .object2-4 {
        top: -150px;
        right: 10%;
    }
    .object5-1 {
        padding-bottom: 36%;
    }
    .object5-2 {
        padding-bottom: 76%;
    }
    .object5-3 {
        padding-bottom: 40%;
    }
    .area-txt-box {
        right: 10%;
    }
	.area-row {
		padding: 80px 0 !important;
	}
    .service-project {
        max-width: 220px;
    }
    .service-project-1 {
        left: 25%;
    }
    .service-project-2 {
        right: 25%;
    }
    .service-project-3 {
        left: 22%;
    }
    .service-project-4 {
        right: 30%;
    }
    .works-item h2 {
        font-size: 26px;
    }
    .bread-block {
        position: relative;
        right: auto;
        bottom: auto;
    }
}

@media screen and (max-width:1200px){
    .nav-container>ul>li {
        padding: 10px 12px;
    }
    .nav-lan-box {
        right: 2%;
    }
    .object2-1 img {
        width: 550px;
    }
    .object2-2 {
        top: 10%;
    }
    .object2-2 img {
        width: 450px;
    }
    .object2-3 {
        right: -120px;
        bottom: 5%;
    }
    .object2-3 img {
        width: 550px;
    }
    .object5-1 {
        padding-bottom: 40%;
    }
    .object5-2 {
        padding-bottom: 85%;
    }
    .object5-3 {
        padding-bottom: 45%;
    }
    .object6-1 img {
        width: 100%;
        max-width: 800px;
    }
    .service-project {
        max-width: 200px;
    }
    .service-project-1 {
        top: 10%;
        left: 22%;
    }
    .service-project-2 {
        top: 18%;
        right: 20%;
    }
    .service-project-3 {
        bottom: 10%;
        left: 20%;
    }
    .service-project-4 {
        right: 25%;
        bottom: 3%;
    }
    .works-item h2 {
        font-size: 24px;
    }
    .article-content-box {
        padding-right: calc(var(--bs-gutter-x)/ 2) !important;
    }
    .article-list-box {
        margin-top: 40px !important;
    }
    .contact-tit h3 {
        font-size: 150px;
    }
    .contact-area-entit {
        top: 0;
    }
    .contact-quote {
        text-align: left;
    }
    .contact-area-box {
        padding-top: 20px;
    }
    .foot-info-box {
        margin: 0 auto;
    }
    .about-area-img img {
        width: 540px;
    }
    .page-project-tit h3 {
        font-size: 40px;
    }
    .page-project-tit h4 {
        font-size: 20px;
    }
}

@media screen and (max-width:1080px){
	nav {
		padding: 10px 0;
	}
    .nav-container {
        display: none;
    }
    .nav-container>ul>li {
        padding: 10px;
    }
    .nav-lan-box {
        display: none;
    }
    .mobile-logo {
        display: block;
    }
    .open-nav {
        display: block;
    }
    .object1-2 {
        top: 15%;
    }
    .object2-2 {
        top: 10%;
        left: -200px;
    }
    .object2-3 {
        right: -150px;
    }
    .object5-1 {
        padding-bottom: 45%;
    }
    .object5-2 {
        padding-bottom: 94%;
    }
    .object5-3 {
        padding-bottom: 48%;
    }
    .page-banner-entit h1 {
        font-size: 64px;
    }
    .area-entit h2 {
        font-size: 80px;
    }
    .news-area-entit h2 {
        font-size: 200px !important;
    }
    .area-txt-box {
        right: 2%;
        max-width: 640px;
    }
    .quote-icon i {
        font-size: 70px;
    }
    .area-tit h3 {
        font-size: 20px;
    }
    .area-tit span {
        font-size: 30px;
    }
	.area-row {
		padding: 70px 0 !important;
	}
    .service-hexagon-item {
        max-height: 225px;
        max-width: 225px;
    }
    .service-project {
        max-width: 180px;
    }
    .about-map-box iframe {
        height: 300px;
    }
	nav>ul{display:none;}
	#openNav{
		float:left;
		cursor:pointer;
	}
    .page-banner-img {
        max-width: 85%;
        padding-bottom: 35%;
    }
	#logo{text-align:center; float:none; margin:10px 20px;}
	.footbox{width:90%;}
	.foot-infoblock{width:60%;}
	.foot-service-block{width:80%;}
	.footbox{max-width:700px; justify-content:center;}
	.foot-box{width:100%;}
	.foot-box.foot-box-contact{width:60%;}
	.foot-box.foot-box-project{width:40%;}
}

@media screen and (max-width:992px){
    .service-hexagon-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        float: left;
        width: 25%;
        height: 200px;
    }
}

@media screen and (max-width:991px){
    .navmenu-image {
        display: none;
    }
    .object2-2 {
        top: 5%;
        left: -200px;
    }
    .object2-3 {
        bottom: 12%;
    }
    .object2-4 {
        right: 5%;
    }
    .object2-4 img {
        max-width: 200px;
    }
    .banner-slide-3 .banner-object {
        width: 50%;
    }
    .object3-3 {
        display: none;
    }
    .object5-1 {
        padding-bottom: 120%;
    }
    .object5-2 {
        padding-bottom: 120%;
    }
    .object5-3 {
        display: none !important;
    }
    .object6-2 img {
        width: 100%;
        max-width: 500px;
    }
    .area-txt-box {
        max-width: 500px;
    }
    .quote-icon i {
        font-size: 50px;
    }
    .area-tit h3 {
        font-size: 18px;
    }
    .area-tit span {
        font-size: 24px;
    }
    .area-entit h2 {
        font-size: 70px;
    }
    .service-hexagon-item span {
        font-size: 16px;
    }
    .service-hexagon-item i {
        font-size: 24px;
        bottom: 25%;
    }
    .service-area-txt {
        padding-bottom: 20px;
    }
    .service-container {
        padding: 10% 2%;
    }
    .service-area-entit {
        top: 0;
    }
    .service-center-box {
        left: 0;
        bottom: -6%;
    }
    .service-project {
        max-width: 160px;
    }
    .about-area-img {
        margin-top: 30px;
    }
    .about-area-img img {
        width: 500px;
    }
    .article-area-txt {
        margin-bottom: 25px;
    }
    .works-item h2 {
        font-size: 22px;
    }
    .news-area-content {
        padding: 0 25px !important;
    }
    .index-news-item {
        padding-bottom: 35%;
    }
    .indes-news-img {
        padding-bottom: 50%;
    }
    .article-area-txt {
        margin-bottom: 80px;
    }
    .article-area-item {
        margin-bottom: 30px;
    }
    .faq-img {
        max-width: 60%;
        padding-bottom: 60%;
        margin: 0 auto 40px;
    }
    .banner-info {
        top: 35%;
        left: 10%;
    }
	.article-item {
		padding: 40px 10px;
	}
	.article-area-img {
		padding-bottom: 50%;
	}
	.article-area-info {
		margin-top: 10px !important;
	}
    .page-project-tit {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
    }
    .software-left .software-item a {
        flex-direction: row;
    }
    .software-left .software-info {
        text-align: left;
    }
    .contact-form-part {
        padding-left: 0;
    }
}

@media screen and (max-width:767px){
	#logo {
		max-width: 250px;
	}
	#openNav {
		margin: 5px 0 0 10px;
	}
    .open-nav i {
        padding: 6px 20px;
    }
	header {
		height: 70px;
	}
    .index-banner-block .swiper-slide {
        min-height: 90vh;
    }
    .object1-1 img {
        width: 100%;
    }
    .object2-1 img {
        width: 500px;
    }
    .object2-2 img {
        width: 360px;
    }
    .object2-3 img {
        width: 500px;
    }
    .banner-slide-3 {
        max-height: 90vh;
    }
    .object4-1 {
        display: none;
    }
    .object4-1-s {
        display: flex;
    }
    .object4-1-s img {
        min-height: 90vh;
    }
    .banner-slide-5 {
        max-height: 90vh;
    }
    .object5-1 {
        width: 100%;
        padding-bottom: 90vh;
    }
    .object5-2 {
        display: none !important;
    }
    .page-banner-entit h1 {
        font-size: 52px;
    }
    .page-banner-tit h2 {
        font-size: 20px;
    }
    .area-txt-box {
        right: 50%;
        transform: translate(50% , 0);
        max-width: 90%;
        padding: 20px 10px;
    }
    .about-area-entit {
        opacity: 0;
    }
    .service-hexagon-item {
        height: 150px;
    }
    .service-center-box {
        bottom: -5%;
    }
    .service-container {
        display: inline-block;
    }
    .service-box {
        margin: 2%;
        width: 100%;
        max-width: 46%;
        float: left;
        height: 300px;
    }
    .service-project-box {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
    }
    .service-project {
        max-width: 100%;
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        padding: 10px;
    }
    .service-item span {
        font-size: 16px;
        letter-spacing: 0;
    }
    .work-tab {
        display: block;
        padding: 10px 15px 40px;
    }
    .work-tab .tablinks {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 10px;
        margin: 0 0 10px;
    }
    .area-item-tit h4 {
        font-size: 18px;
        min-height: 42px;
    }
    .area-item-txt p {
        min-height: 48px;
        -webkit-line-clamp: 2;
    }
    .contact-area .area-row {
        padding: 80px 20px !important;
    }
    .page-banner-img {
        padding-bottom: 45%;
    }
    .banner-info {
        left: 0;
        padding: 10px;
        max-width: 100%;
    }
    .page-banner-info {
        top: 25%;
    }
    .page-banner-txt h1 {
        font-size: 50px;
    }
    .page-banner-txt h2 {
        font-size: 26px;
    }
	.area-row {
		padding: 60px 0 !important;
	}
    .about-content-txt {
        max-width: 100%;
    }
    .listing-item {
        width: -webkit-calc(100%/2);
        width: -moz-calc(100%/2);
        width: calc(100%/2);
    }
    .contact-info-item {
        margin-top: 15px;
    }
	.article-detail-img {
		padding-bottom: 50%;
	}
    .contact-tit {
        display: none;
    }
    .contact-info-box {
        padding-top: 20px;
    }
    .foot-col .col-sm-4 {
        display: flex;
    }
    .foot-list-box {
        margin-top: 40px !important;
    }
}

@media screen and (max-width: 640px){
    .object1-2 {
        left: -400px;
    }
    .object2-1 {
        bottom: 20%;
    }
    .object2-1 img {
        width: 300px;
    }
    .object2-2 {
        left: -250px;
    }
    .object2-3 {
        right: -120px;
    }
    .service-hexagon-item span {
        font-size: 14px;
    }
    .service-hexagon-item i {
        font-size: 20px;
    }
    .service-slide-main {
        width: 75%;
        height: 300px;
    }
    .service-slide-thumbs {
        width: 20%;
        height: 300px;
    }
    .service-slide-title {
        font-size: 20px;
    }
    .service-box {
        height: 250px;
    }
    .link {
        width: 10rem;
        height: 10rem;
    }
    .service-project-box {
        display: block;
        padding-top: 30px;
    }
    .service-project {
        max-width: 70%;
        margin: auto;
    }
    .service-item span {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .news-area-entit h2 {
        font-size: 180px !important;
    }
	.article-tit h3 {
		font-size: 22px;
	}
	.article-detail-tit h3 {
		font-size: 22px;
	}
	.article-sub span {
		font-size: 14px;
	}
    .contact-form-tit h5 {
        font-size: 16px;
    }
    .bread-block {
        padding: 0 8px;
    }
    .bread-block ul li {
        padding: 1px;
    }
    .bread-block ul li span {
        font-size: 12px;
    }
    .bread-block ul li i {
        font-size: 12px;
    }
    .bread-block ul li a::after {
        font-size: 12px;
        padding-left: 0;
    }
    .page-banner-img img {
        padding-top: 55px;
    }
}

@media screen and (max-width:575px){
    .index-banner-block .swiper-slide {
        min-height: 80vh;
    }
    .object1-2 img {
        min-width: 720px;
    }
    .object2-2 img {
        width: 300px;
    }
    .object2-3 img {
        width: 380px;
    }
    .object2-4 img {
        max-width: 160px;
    }
    .banner-slide-3 {
        max-height: 80vh;
    }
    .object4-1-s img {
        min-height: 80vh;
    }
    .banner-slide-5 {
        max-height: 80vh;
    }
    .object5-1 {
        padding-bottom: 80vh;
    }
    .object6-2 img {
        max-width: 360px;
    }
    .page-banner-entit h1 {
        font-size: 36px;
    }
    .about-area .area-row {
        padding: 40px 0 !important;
    }
    .about-area-entit {
        display: none;
    }
    .area-txt-box {
        position: relative;
        right: 0;
        transform: none;
        max-width: 100%;
        padding: 25px 15px;
        background-color: transparent;
    }
    .about-area .quote-icon i {
        color: #fff;
    }
    .about-area-txt h3 {
        color: #fff;
    }
    .about-area-txt p {
        color: #fff;
    }
    .area-txt-box .area-btn a {
        color: #fff;
    }
    .area-txt-box .area-btn a:hover {
        color: #00aced;
    }
    .main-title-block h1 {
        font-size: 18px;
    }
    .main-title-block h2 {
        font-size: 72px;
    }
    .main-title-block p {
        color: #fff;
        font-size: 14px;
    }
    .about-area-img img {
        width: 440px;
    }
    .service-hexagon-item {
        width: 50%;
        height: 220px;
    }
    .work-list-tab {
        margin-bottom: 20px;
    }
    .index-news-item {
        padding-bottom: 60%;
    }
    .news-area-entit h2 {
        font-size: 140px !important;
    }
    .article-area-txt {
        margin-bottom: 40px;
    }
    .article-area-item {
        margin-top: 0 !important;
    }
    .news-row, .news-detail-row {
        padding: 20px 0 0 !important;
    }
    .main-news-item .news-img {
        padding-bottom: 70%;
    }
    .main-news-item .news-date span {
        font-size: 18px;
    }
    .main-news-item .news-txt {
        min-height: 72px;
        -webkit-line-clamp: 3;
    }
    .news-txt {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .news-detail-img {
        padding-bottom: 40%;
    }
    .news-detail-img img {
        max-width: 80%;
        min-width: 80%;
    }
    .news-detail-date span {
        font-size: 32px;
    }
    .news-detail-tit h4 {
        font-size: 22px;
    }
    footer {
        background-position: left bottom;
    }
    .foot-block .foot-row {
        margin: auto !important;
    }
    .foot-block ul {
        margin: 0;
    }
    .foot-logo-item {
        width: 30% !important;
    }
    .foot-info-item {
        width: 70% !important;
        margin: auto !important;
        padding-left: 20px !important;
    }
    .foot-col .col-sm-4 {
        display: block;
    }
    .foot-list-box .col-sm-4 {
        width: 33%;
    }
    .foot-list {
        margin: 0 0 30px;
    }
}

@media screen and (max-width:500px){
    .service-slide-main {
        height: 250px;
    }
    .service-slide-thumbs {
        height: 250px;
    }
    .link {
        width: 8rem;
        height: 8rem;
    }
    .service-center-box {
        bottom: -3%;
    }
    .service-logopic img {
        max-width: 100px;
    }
    .page-banner-img {
        padding-bottom: 55%;
    }
    .about-area-img img {
        width: 400px;
    }
    .primary-btn a, 
    .primary-btn button {
        font-size: 14px;
        padding: 8px 25px;
    }
    .banner-txt h1 {
        font-size: 28px;
    }
	.area-row {
		padding: 50px 0 !important;
	}
    .area-tit {
        margin-bottom: 0;
    }
    .area-tit h2 {
        font-size: 22px;
    }
    .area-entit h3 {
        font-size: 48px;
    }
    .contact-info-item h4 {
        font-size: 20px;
    }
	.article-detail-img {
		padding-bottom: 60%;
	}
    .foot-logo {
        top: -10%;
    }
}

@media screen and (max-width:480px){
    p {
        font-size: 14px;
    }
    .works-info p {
        min-height: 66px !important;
    }
    .banner-slide-3 .banner-object {
        width: 100%;
    }
    .object2-4 {
        top: -200px;
        right: 3%;
    }
    .object3-1 {
        display: none;
    }
    .object6-1 {
        top: 10%;
    }
    .object6-2 {
        bottom: -200px;
    }
    .object6-2 img {
        max-width: 250px;
    }
    .service-hexagon-item {
        height: 200px;
    }
    .service-box {
        height: 220px;
    }
    .page-banner-entit h1 {
        font-size: 24px;
    }
    .page-banner-tit h2 {
        font-size: 18px;
    }
    .page-container {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .about-img-box {
        max-width: 80%;
        padding-bottom: 80%;
    }
    .circle-line {
        max-width: 85%;
    }
    .main-title-block h1 {
        font-size: 16px;
    }
    .main-title-block h2 {
        font-size: 60px;
    }
    .news-area-entit h2 {
        font-size: 120px !important;
    }
    .index-news-item {
        padding-bottom: 70%;
    }
    .werd {
        font-size: 60px;
    }
    .collapsible-icon i {
        font-size: 16px;
        width: 35px;
        height: 35px;
    }
    .news-item {
        padding: 10px;
    }
    .main-news-item .news-date span {
        font-size: 16px;
    }
    .main-news-item .news-txt {
        min-height: 64px;
    }
    .news-txt {
        min-height: 64px;
    }
    .contact-btn a {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .article-table-responsive {
        width: 240px;
        height: auto;
        overflow-x: scroll;
        scrollbar-width: thin;
    }
    .article-table-responsive table {
        table-layout: auto;
    }
	.numpage-btn .pagination li {
		padding: 4px 7px;
	}
	.pagination>li>a, .pagination>li>span {
		font-size: 14px;
		padding: 4px 8px;
	}
    .listing-item {
        width: 100%;
    }
    .product-showbox .service-hexagon-gallery-top {
        max-height: 300px;
    }
    .product-showbox .service-hexagon-gallery-thumbs {
        height: 90px;
    }
	#logo img{width:100%;}
    .open-nav i {
        font-size: 24px;
        padding: 5px 10px;
    }
    footer {
        padding: 10px 0 70px;
    }
    .foot-list-box .col-sm-4 {
        width: 100%;
    }
    .foot-list-serve {
        margin-top: 10px !important;
    }
    .foot-list-box li {
        display: inline-block;
        padding: 3px;
    }
    .foot-untitled {
        padding-top: 0;
    }
}

@media screen and (max-width:420px){
    .about-area-img img {
        width: 340px;
    }
    .service-hexagon-item {
        height: 180px;
    }
    .foot-logo-item {
        width: 100% !important;
    }
    .foot-info-item {
        width: 100% !important;
        margin: 10px auto 0 !important;
        padding-left: calc(var(--bs-gutter-x)/ 2) !important;
    }
}

@media screen and (max-width: 400px){
    .object1-1 img {
        min-width: 720px;
    }
    .object1-2 img {
        min-width: 550px;
    }
    .object2-1 {
        left: -250px;
    }
    .object2-1 img {
        width: 250px;
    }
    .object2-2 {
        left: -300px;
    }
    .object2-2 img {
        width: 250px;
    }
    .object2-3 img {
        width: 300px;
    }
    .service-hexagon-item {
        height: 160px;
    }
    .service-slide-main {
        height: 200px;
    }
    .service-slide-thumbs {
        height: 200px;
    }
    .service-slide-title {
        top: 30px;
        font-size: 18px;
    }
    .service-slide-entit {
        top: -28%;
    }
    .service-box {
        margin: 5% 2%;
        max-width: 95%;
        height: 280px;
    }
    .service-center-box {
        bottom: -2%;
    }
    .service-area-entit h2 {
        font-size: 60px;
    }
    .service-project {
        max-width: 90%;
    }
    .works-item h2 {
        font-size: 20px;
    }
    .news-area-entit {
        top: 5%;
    }
    .news-area-entit h2 {
        font-size: 80px !important;
    }
    .index-news-item {
        padding-bottom: 75%;
    }
    .area-item-txt p {
        font-size: 14px;
        min-height: 42px;
    }
    .fixed-icon ul li {
        padding: 0 10px;
    }
    .about-map-box iframe {
        height: 240px;
    }
    .news-detail-img {
        padding-bottom: 50%;
    }
    .news-detail-date span {
        font-size: 26px;
    }
    .news-detail-tit h4 {
        font-size: 20px;
        line-height: 1.3em;
    }
    .product-showbox .service-hexagon-gallery-top {
        max-height: 240px;
    }
    .product-showbox .service-hexagon-gallery-thumbs {
        height: 70px;
    }
	#footlogo{width:100%; margin-top:0;}
}

@media screen and (max-width: 360px){
    #logo {
        max-width: 220px;
        margin: 8px 15px 0;
    }
    .object1-2 img {
        min-width: 480px;
    }
    .object2-1 {
        left: -280px;
    }
    .object2-4 {
        top: -250px;
        right: 2%;
    }
    .object2-4 img {
        max-width: 120px;
    }
    .about-area-img img {
        width: 280px;
    }
    .service-hexagon-item {
        height: 150px;
    }
    .service-hexagon-item span {
        font-size: 12px;
    }
    .service-slide-main {
        height: 180px;
    }
    .service-slide-thumbs {
        height: 180px;
    }
    .service-slide-title {
        top: 25px;
        font-size: 16px;
    }
    .service-slide-entit {
        top: -22%;
    }
    .service-slide-entit h2 {
        font-size: 50px;
    }
    .contact-btn a {
        display: block;
        margin-bottom: 15px;
    }
    .about-map-box iframe {
        height: 220px;
    }
    .page-banner-txt h1 {
        font-size: 42px;
    }
    .page-banner-txt h2 {
        font-size: 24px;
    }
    .news-detail-date span {
        font-size: 22px;
    }
    footer {
        padding: 1px 0 70px;
    }
    .foot-logo {
        max-width: 240px;
    }
}

@media screen and (max-width: 320px){
    .page-banner-entit h1 {
        font-size: 20px;
    }
    .page-banner-tit h2 {
        font-size: 16px;
    }
    .about-map-box iframe {
        height: 200px;
    }
    .product-showbox .service-hexagon-gallery-top {
        max-height: 200px;
    }
    .product-showbox .service-hexagon-gallery-thumbs {
        height: 60px;
    }
}









