@charset "UTF-8";
.clsbtn:focus {
  outline: 3px solid #0078D7;   /* High-contrast blue */
  outline-offset: 4px;          /* Space between image and outline */
}

.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
}
.element-invisible.element-focusable:active, .element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto;
}
#skip-link {
    margin-top: 0;
    position: absolute;
    left: 50%;
    margin-left: -5.25em;
    width: auto;
    z-index: 50;
}
#skip-link a, #skip-link a:link, #skip-link a:visited {
    display: block;
    background: #444;
    color: #fff;
    font-size: 0.94em;
    padding: 1px 10px 2px 10px;
    text-decoration: none;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-radius: 0 0 10px 10px;
}
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
    outline: 0;
}

html, body {
  font-family: 'Microsoft JhengHei', 微軟正黑體, 微軟雅黑體, Arial, sans-serif;
  overflow-x: hidden;
  /* turn grayscale; 
	        filter: grayscale(100%); 
        -webkit-filter: grayscale(100%); 
        -moz-filter: grayscale(100%); 
        -ms-filter: grayscale(100%); 
        -o-filter: grayscale(100%); 
        -webkit-filter: grayscale(1);*/
}

img, svg {
  max-width: 100%;
  height: auto;
  /* border-radius: 2px; */

}

[data-bg-img], .with-bg-img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

.h1, .h2, .h3, h1, h2, h3 {
  /*font-family: Arial, sans-serif;*/
}

a {
  color: #1364b5;
}
a[name]:before {
  content: " ";
  display: inline-block;
  width: 1rem;
  height: 100px;
  margin: -100px 0 0;
}

.footer-menu a {
  color: #105497;
}

.page-content a {
  word-break: break-word;
}

.bg-blue {
  background: #C9E0F5;
}

.bg-yellow {
  background: #FFD939;
}

.txt-dark {
  color: #3E3E3E;
}

.txt-blue {
  color: #1364b5;
}

@media (min-width: 768px) {
  .bg-gn {
    background: url('/img/common/bar.png') no-repeat;
  }
}

@media (max-width: 768px) {
  .bg-gn {
    background: url('/img/common/bar_m.png') no-repeat;
  }
}

.bg-gn {
  /*background: url('/img/common/bar.png') no-repeat;*/
  background-size: contain;
  background-position: right;
  background-color: rgba(63,125,35,1);
}

.btn-outline {
  border-radius: 0;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding: .5rem 3rem;
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #666;
  border-color: #666;
}

.dropdown-outline {
  margin-bottom: 2rem;
}

.dropdown-outline, .dropdown-outline .btn {
  font-size: 1.5rem;
  font-weight: 800;
  /*font-family: Arial, sans-serif;*/
  color: #3E3E3E;
}

.dropdown-outline .dropdown-toggle {
  line-height: 1;
  border-bottom: 0.5rem solid #FFD939;
  padding: .3rem 0;
}

.dropdown-outline .dropdown-toggle:focus {
  outline: none;
}

.dropdown-outline .dropdown-toggle::after {
  content: "\e800";
  font-family: "fontello";
  border: 0;
  font-size: 1rem;
  padding-right: .8rem;
}

dl, ol, ul {
  padding-left: 1.2rem;
}

li {
  margin: .5rem 0;
}

img.icon {
  margin-right: .3rem;
}

.container-1640 {
  width: 90%;
  /*padding: 0 0.8rem;*/
  margin: 0 auto;
}

@media (min-width: 1200px) and (max-width: 1917px) {
  .container-1640 {
    max-width: 1440px;
  }
}

@media (min-width: 1918px) {
  .container-1640 {
    max-width: 1494px;
  }
}
/* #page-wrapper {
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.loaded #page-wrapper {
  opacity: 100;
} */
/*--------------------------------------------------------------
	Preloader
--------------------------------------------------------------*/
.page-loader {
  position: fixed;
  background: #fff;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9998;
}

.loader {
  position: absolute;
  border-left: 2px solid #ffffff;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  height: 46px;
  width: 46px;
  left: 50%;
  top: 50%;
  margin: -23px 0 0 -23px;
  text-indent: -9999em;
  font-size: 10px;
  z-index: 9999;
  -webkit-animation: load 0.8s infinite linear;
          animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#header-wrapper {
  position: relative;
  background: #79C454;
}
#header-wrapper.fixed-top {
  position: fixed;
  box-shadow: 0px 3px 4px rgba(150, 150, 150, 0.2);
}

.head-top {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header--small .head-top {
  padding: .5rem 0;
}
.head-top-right {
  display: none;
  padding-right: 3%;
}

@media (min-width: 992px) and (max-width: 1917px) {
  .head-top-right {
    display: inline-block;
    min-width: 50%;
    text-align: right;
    padding-right: 4%;
  }
}
@media (min-width: 1918px) {
  .head-top-right {
    display: inline-block;
    min-width: 50%;
    text-align: right;
    padding-right: 0%;
  }
}

.head-top-right .block {
  display: inline-block;
  margin: 0 0.5rem;
}

@media (min-width: 1918px) {
  .head-top-right .block {
    margin: 0 0 0 0.5rem;
  }
}

.head-top-right a {
  color: #000;
}

.site-logo {
  display: inline-block;
}

.site-logo img {
  width: auto;
  /*max-width: 370px;*/
  max-height: 55px;
  margin-left: 12%;
}

@media (max-width: 1201px) {
  .site-logo img {
    margin-left: 12%;
  }

  .en .site-logo img {
    margin-left: 9%;
  }
}

@media (min-width: 1201px) and (max-width: 1917px) {
  .site-logo img {
    margin-left: 18%;
  }
  .en .site-logo img {
    margin-left: 13%;
  }
}

@media (min-width: 1918px) {
  .en .site-logo img, .site-logo img {
    margin-left: 0%;
  }
}

@media (max-width: 1080px) {
  .site-logo img {
    max-height: 48px;
  }
}

@media (max-width: 768px) {
  .site-logo img {
    margin-left: 16%;
    width: auto;
    max-height: 40px;
  }
  /*.header--small .site-logo img {
    height: 40px;
  }*/
}

@media (max-width: 540px) {
  .site-logo img {
    margin-left: 26%;
    max-height: 26px;
  }
  .en .site-logo img {
    margin-left: 16%;
    max-height: 26px;
  }
}

.block.lang-switcher {
  margin-right: 0;
}

.block.lang-switcher a {
  display: inline-block;
  margin: 0 0.5rem;
}

@media (min-width: 1200px) {
  .block.lang-switcher a {
    margin: 0 1rem;
  }
}

.block.block-icons {
  margin-left: 0;
}

.block.block-icons a {
  display: inline-block;
  margin: 0 0.5rem;
}

@media (min-width: 1200px) {
  .block.block-icons a {
    margin: 0 1rem;
  }
}

.block.block-icons svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.search-wrapper {
  position: absolute;
  background: #EDEDED;
  right: 8%;
  /*border-radius: 50px;*/
  /*margin-left: 8%;*/
  /*margin-top: 10px;*/
}

@media (min-width: 1200px) {
  .search-wrapper {
    right: 11%;
  }
}

.search-wrapper .icon-search {
  position: absolute;
  left: 5px;
  padding: .3rem;
}

.search-wrapper input[type=text] {
  padding: .3rem 0 .3rem 1rem;
  vertical-align: middle;
  border: 0;
  background: transparent;
}

@media (min-width: 992px) {
  .search-wrapper input[type=text] {
    width: 210px;
  }
}

.search-wrapper input[type=text]:focus {
  outline: none;
}

.search-wrapper input[type=submit] {
  vertical-align: middle;
  border: 0;
  margin: 0 0.5rem;
  padding: 10px 1rem;
  text-indent: -99999rem;
  background: url(../img/common/icon/search.png) no-repeat 100%;
  background-size: contain;
}

/* Style for share-btns */
/* ------------------------------------------ */
.block-share {
  display: inline-block;
  position: relative;
}

.share-sub-holder {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 8px 15px 12px;
  text-align: left;
  z-index: 5;
  min-width: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 10px;
  background: #FFF;
  -webkit-box-shadow: 0px 3px 4px rgba(150, 150, 150, 0.2);
          box-shadow: 0px 3px 4px rgba(150, 150, 150, 0.2);
}

@media screen and (max-width: 1480px) {
  .header-nav__tool--share .share-sub-holder {
    margin-left: -100px;
  }
}

@media screen and (max-width: 991px) {
  .share-sub-holder {
    display: none !important;
  }
}

.share-sub-holder:after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
  position: absolute;
  background: #eb6100;
}
.mob-nav .block-share,
.block-share.is-active .share-sub-holder {
  display: block;
}

.block-share.is-active .share-sub-holder a {
  margin: 0;
  font-size: 0;
}

.share-btns {
  position: relative;
  margin-top: 15px;
}

.block-share .share-btns {
  white-space: nowrap;
}

.mob-nav .block-share .share-btns {
  padding: 0 3%;
}

.block-share .share-btns a {
  margin: 0;
  font-size: 0;
}

.mob-nav .block-share .share-btns .share-btns__btn {
  margin-left: .3rem;
}

.share-btns__btn {
  display: inline-block;
  vertical-align: top;
  width: 34px;
  height: 34px;
  margin-right: 5px;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.mob-nav__control .share-btns__btn {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.share-btns__btn:before {
  content: '';
  width: 26px;
  height: 26px;
  left: 4px;
  top: 4px;
  display: block;
  position: absolute;
  background: url() center top;
  background-size: 100% auto;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.block-share .share-btns__btn:before {
  background-position-y: -26px;
}

.mob-nav__control .share-btns__btn:before {
  background-position-y: -22px;
}

.mob-nav__control .share-btns__btn:before {
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
}

.share-btns__btn:hover:before {
  background-position-y: -26px;
}

.mob-nav__control .share-btns__btn:hover:before {
  background-position-y: -22px;
}

.share-btns__btn.share-btns__btn--email:before {
  background-image: url(../img/common/icon/icon-social-email-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--email, .block-share .share-btns__btn.share-btns__btn--email, .share-btns__btn.share-btns__btn--email:hover {
  background-color: yellowgreen;
}

.share-btns__btn.share-btns__btn--fb:before {
  background-image: url(../img/common/icon/icon-social-facebook-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--fb, .block-share .share-btns__btn.share-btns__btn--fb, .share-btns__btn.share-btns__btn--fb:hover {
  background-color: #3b5998;
}

.share-btns__btn.share-btns__btn--wa:before {
  background-image: url(../img/common/icon/icon-social-whatsapp-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--wa, .block-share .share-btns__btn.share-btns__btn--wa, .share-btns__btn.share-btns__btn--wa:hover {
  background-color: #1bd741;
}

.share-btns__btn.share-btns__btn--wb:before {
  background-image: url(../img/common/icon/icon-social-weibo-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--wb, .block-share .share-btns__btn.share-btns__btn--wb, .share-btns__btn.share-btns__btn--wb:hover {
  background-color: #df2029;
}

.share-btns__btn.share-btns__btn--wc:before {
  background-image: url(../img/common/icon/icon-social-wechat-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--wc, .block-share .share-btns__btn.share-btns__btn--wc, .share-btns__btn.share-btns__btn--wc:hover {
  background-color: #09b83e;
}

.share-btns__btn.share-btns__btn--tw:before {
  background-image: url(../img/common/icon/icon-social-twitter-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--tw, .block-share .share-btns__btn.share-btns__btn--tw, .share-btns__btn.share-btns__btn--tw:hover {
  background-color: #00aff0;
}

.share-btns__btn.share-btns__btn--ig:before {
  background-image: url(../img/common/icon/icon-social-ig-white.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--ig, .block-share .share-btns__btn.share-btns__btn--ig, .share-btns__btn.share-btns__btn--ig:hover {
  background-color: #bc2a8d;
}

.share-btns__btn.share-btns__btn--rss:before {
  background-image: url(../img/common/icon/icon-rss.png);
}

.mob-nav__control .share-btns__btn.share-btns__btn--rss, .block-share .share-btns__btn.share-btns__btn--rss, .share-btns__btn.share-btns__btn--rss:hover {
  background-color: #f26522;
}

.share-btns__btn:last-child {
  margin-right: 0;
}

.mainmenu-wrapper .sf-menu {
  display: none;
}

.mainmenu-wrapper, .topicbar, .swiper-slide {
  font-family: 'Microsoft JhengHei', 微軟正黑體, 微軟雅黑體, Arial, sans-serif;
}

@media (min-width: 992px) {
  .mainmenu-wrapper .sf-menu {
    /* display: block; */
    display: flex;
    /*justify-content: space-evenly;*/
    justify-content: space-between;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .mainmenu-wrapper .sf-menu {
    padding-left: 9.5%;
    padding-right: 7%;
  }
}
@media (min-width: 1440px) and (max-width: 1917px) {
  .mainmenu-wrapper .sf-menu {
    padding-left: 10%;
    padding-right: 8%;
  }
}

@media (min-width: 1918px) {
  .mainmenu-wrapper .sf-menu {
    padding-left: 11%;
    padding-right: 11%;
  }
}

.sf-mega > .container-1640 {
  width: 80%;
}

.mobile-menu {
  display: block;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

.swiper-container {
  /*margin-left: 1rem;*/
  /*margin-right: 1rem;*/
}

@media (min-width: 992px) {
  .swiper-container {
    margin-left: 0;
    margin-right: 0;
    /*margin-bottom: 2rem;*/
  }
}

.swiper-slide {
  height: auto;
}

.swiper-slide img {
  width: 90%;
}

.swiper-pagination,
.swiper-container-horizontal .swiper-pagination-bullets {
  width: auto;
  left: 50%;
  bottom: -2rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-pagination .swiper-pagination-bullet,
.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  width: .8rem;
  height: .8rem;
  margin: 0 .2rem;
  background: #885420;
  opacity: 66%;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #000000;
}

.btnSwiperPrev,
.btnSwiperNext {
  display: inline-block;
  font-size: 1.5rem;
  position: absolute;
  top: calc( 50% + 1.6rem);
  z-index: 10;
  cursor: pointer;
  height: 46px;
}
.flex-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:#FFF;
}
.flex-btn .swiper-pagination {
  position: relative !important;
}
@media (max-width: 992px) {
  .btnSwiperPrev,
  .btnSwiperNext {
    display: inline-block;
    font-size: 1rem;
    position: absolute;
    top: calc( 50% + 1.1rem);
    z-index: 10;
    cursor: pointer;
    height: 46px;
  }
}

.btnSwiperPrev {
  left: 0;
}
@media (min-width: 1440px) {
  .btnSwiperPrev {
    left: -4.2%;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .btnSwiperPrev {
    left: -3.2%;
  }
}

/*@media (min-width: 1250px) {
  .btnSwiperPrev {
    left: -2.1rem;
  }
}*/

.btnSwiperNext {
  right: 0;
}

@media (min-width: 1918px) {
  .btnSwiperPrev {
    left: 0%;
  }
  .btnSwiperNext {
    right: 0%;
  }
}
@media (min-width: 1440px) and (max-width: 1917px) {
  .btnSwiperNext {
    right: -3.2%;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .btnSwiperNext {
    right: -4.2%;
  }
}

/*@media (min-width: 1250px) {
  .btnSwiperNext {
    right: -2.7rem;
  }
}*/


.swiper-img-border .swiper-slide {
  margin-bottom: 1px;
}

.swiper-img-border .swiper-zoom-container {
  /*border: 1px solid #b8b8b8;*/
}

.swiper-img-border .swiper-zoom-container > a {
  display: inline-block;
  /*width: 100%;*/
  width: 220px;
  /*border: 1px solid #b8b8b8;*/
}
.swiper-img-border .swiper-zoom-container > a > img {
  /*width: 100%;*/
  border: 1px solid #b8b8b8;
}
.swiper-img-border .swiper-zoom-container > a > img.noborder {
  /*width: 100%;*/
  border: 0px solid #ffffff;
}
@media (max-width: 768px) {
  .swiper-img-border .swiper-zoom-container > a {
    width: 180px;
  }
}

#indexbanner {
  position: relative;
  overflow: hidden;
  /*border: #ffd939 solid;*/
  /*border-width: 2px 0;*/
  background: #F7F7F7;
}
#indexbanner .d-block.d-md-flex.flex-wrap {
  /* max-width: 1918px; */
  /* margin: 0 auto; */
}

#indexbanner .slide-info {
  position: relative;
  width: 100%;
  display: inline-block;
  /*padding: 3rem;*/
  /*margin-top: 2.5rem;*/
  overflow: visible;
}

@media (min-width: 992px) {
  #indexbanner .slide-info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-top: 0;
    /*padding: 2rem 2rem 4rem;*/
  }
}

@media (min-width: 1440px) {
  #indexbanner .slide-info {
    /*padding-top: 4rem;*/
    /* padding-left: calc( (100% - 1440px) / 2 + 1.5rem); */
    /*padding-left: 3rem;*/
    /*padding-right: 3rem;*/
  }
}

#indexbanner .slide-info .swiper-slide {
  -ms-flex-item-align: unset;
      -ms-grid-row-align: unset;
      align-self: unset;
}

#indexbanner .slide-info .title {
  /*font-size: 1.3125rem;*/
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  /*font-family: Arial, sans-serif;*/
  position: absolute;
  top: 20%;
  left: 18%;
  color: #FFF;
  font-size: 300%;
  text-shadow: 3px 3px #000;
}

@media (max-width: 992px) {
  #indexbanner .slide-info .title {
    top: 21%;
    left: 20%;
    font-size: 230%;
  }
}

@media (max-width: 768px) {
  #indexbanner .slide-info .title {
    top: 20%;
    left: 12%;
    font-size: 140%;
  }
}

@media (max-width: 540px) {
  #indexbanner .slide-info .title {
    top: 12%;
    font-size: 100%;
  }
}

#indexbanner .slide-info .desc {
  margin-bottom: 2rem;
  font-size: .9375rem;
}

@media (min-width: 992px) {
  #indexbanner .slide-info .desc {
    /* margin-bottom: 5rem; */
    padding-bottom: 3rem;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  #indexbanner .slide-info .desc .long {
    display: none;
  }
}
@media (min-width: 1400px) {
  #indexbanner .slide-info .desc .long {
    display: block;
  }
}
#indexbanner .slide-info .desc .crop {
  display: none;
}
@media (min-width: 992px) and (max-width: 1399px) {
  #indexbanner .slide-info .desc .crop {
    display: block;
  }
}

#indexbanner .slide-info .btnMore {
  display: inline-block;
  /*font-family: Arial, sans-serif;*/
  font-weight: 800;
  background: #79C454;
  border-radius: 24px;
  border: none;
  color: #000;
  font-weight: bold;
  width: auto;
  position: absolute;
  top: 74%;
  left: 18%;
}

@media (max-width: 992px) {
  #indexbanner .slide-info .btnMore {
    left: 20%;
    top: 70%;
  }
}

@media (max-width: 768px) {
  #indexbanner .slide-info .btnMore {
    font-size: 70%;
    padding: 0.5rem 2rem;
    left: 12%;
    top: 70%;
  }
}

@media (max-width: 540px) {
  #indexbanner .slide-info .btnMore {
    font-size: 60%;
    padding: 0.5rem 2rem;
    left: 12%;
    top: 60%;
  }
}

/*@media (max-width: 540px) {
  #indexbanner .slide-info .btnMore {
    top: 60%;
  }
*/}

#indexbanner .swiper-container {
  margin: 0;
}

#indexbanner .slide-banner {
  width: 100%;
  display: inline-block;
}

@media (min-width: 992px) {
  #indexbanner .slide-banner {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

#indexbanner .slide-banner .swiper-slide {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (min-width: 992px) {
  #indexbanner .slide-banner .swiper-slide {
    /* padding-top: 4rem; */
  }
}
@media (min-width: 1440px) {
  #indexbanner .slide-banner .swiper-slide {
    /* padding-top: 6rem; */
  }
}

#indexbanner .slide-banner img {
  width: 100%;
}

#indexbanner .btnPlayPause {
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
/*  position: absolute; */
  left: 50%;
  bottom: .8rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  color: #000;
  z-index: 10;
}
.btnPlayPause2 {
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
  font-weight:800;
/*  position: absolute; */
  left: 50%;
  bottom: .8rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  color: #000;
  z-index: 10;
}
#indexbanner .btnSwiperPrev, #indexbanner .btnSwiperNext {
  background: rgba(128,195,90,1);
  border-radius: 10px;
  padding: 6px 4px 6px 8px;
  color: #885420;
  color: #FFF; 
  top: 46%;
  height: 46px;
}

@media (max-width: 992px) {
  #indexbanner .btnSwiperPrev, #indexbanner .btnSwiperNext {
    height: 34px;
  }
}

@media (min-width: 992px) {
  #indexbanner .btnSwiperPrev, #indexbanner .btnSwiperNext {
    top: auto;
    bottom: 2rem;
    padding: 0;
    background: transparent;
  }
}

#indexbanner .btnSwiperPrev {
  left: 2%;
  transform: rotateY(180deg);
}

@media (min-width: 992px) {
  #indexbanner .btnSwiperPrev {
    background: #79C454;
    border-radius: 10px;
    padding-left: 6px;
    padding-top: 9px;
    color: #FFF;
    top: 52%;
    /*height: 46px;*/
  }
}

@media (min-width: 1918px) {
  #indexbanner .btnSwiperPrev {
    /* left: calc( (100% - 1918px) / 2 + 3rem); */
  }
}

#indexbanner .btnSwiperNext {
  right: 2%;
}

@media (min-width: 992px) {
  #indexbanner .btnSwiperNext {
    background: rgba(128,195,90,1);
    border-radius: 10px;
   padding-left: 6px;
   padding-top: 9px;
   color: #885420;
/*    color: #FFF; */
    right: 2%;
    top: 52%;
    /*height: 50px;*/
  }
}

@media (min-width: 992px) {
  .block-gov .container {
    max-width: 76%;
  }
}

@media (min-width: 768px) {
  .container {
      max-width: 78%;
  }
}
@media (min-width: 576px) {
  .container {
      max-width: 76%;
  }
}

.container {
  max-width: 78%;
}

@media (max-width: 991px) {
  .con img{
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}

.utube-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
 
.utube-container iframe,
.utube-container object,
.utube-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

#indexbanner .swiper-pagination {
  bottom: auto;
  top: 1rem;
}

@media (min-width: 992px) {
  #indexbanner .swiper-pagination {
    top: auto;
    bottom: 2.5rem;
  }
}

#indexbanner .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(194,114,44,1);
}

.index #main-wrapper .block:not(.block-contact, .block-shortcut) {
  padding-top: 3rem;
  padding-bottom: 3rem;
  /*border: #1364b5 solid;*/
  border-width: 0 0 10px;
}

.index #main-wrapper .block:last-child {
  border: 0;
}

@media (max-width: 768px) {
   .index #main-wrapper .block:not(.block-contact, .block-gov) {
    padding-top: 0rem;
  }

/*  .index #main-wrapper .block-gov {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }*/
}


@media (min-width: 992px) {
  .index #main-wrapper .block:not(.block-contact) {
    padding-top: 1.2rem;
    padding-bottom: 1.7rem;
  }
}

div:not(.index) #main-wrapper {
  margin-bottom: 1.2rem;
}

@media (max-width: 991px) {
  div:not(.index) #main-wrapper {
    margin-bottom: 0rem;
  }
}

#main-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
}
#main-wrapper .container .page-content {
  min-height: 200px;
}
@media (min-height: 750px) {
  #main-wrapper .container .page-content {
    min-height: 400px;
  }
}
@media (min-height: 900px) {
  #main-wrapper .container .page-content {
    min-height: 500px;
  }
}
@media (min-height: 1019px) {
  #main-wrapper .container .page-content {
    min-height: 600px;
  }
}
@media (min-height: 1300px) {
  #main-wrapper .container .page-content {
    min-height: 900px;
  }
}

.transformer-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.3rem;
    background: #1364b5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border-radius: 5px;
}

.transformer-tabs li {
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  font-size: 1.2rem;
  /*font-family: Arial, sans-serif;*/
}

.transformer-tabs a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 1.2rem 1rem;
}

.transformer-tabs a.active {
  position: relative;
}

.transformer-tabs a.active::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 20px;
  top: 45px;
  z-index: -1;
  background: #1364b5;
}

@media (max-width: 991px) {
  .transformer-tabs ul {
    border-bottom: 0;
    overflow: hidden;
    position: relative;
    display: block;
  }
  .transformer-tabs ul::after {
    content: '\e800';
    font-family: "fontello";
    font-size: 1.2rem;
    position: absolute;
    top: 1rem;
    right: 15px;
    z-index: 2;
    pointer-events: none;
    color: #fff;
  }
  .transformer-tabs ul.open::after {
    content: '\e807';
  }
  .transformer-tabs ul.open a {
    position: relative;
    display: block;
  }
  .transformer-tabs li {
    display: block;
  }
  .transformer-tabs a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .transformer-tabs a.active {
    border: 0;
    z-index: 1;
    background: #1364b5;
  }
  .transformer-tabs a.active::after {
    display: none;
  }
}

.tabs-content > div {
  display: none;
  padding: 0 1rem;
}

.tabs-content > .active {
  display: block;
}

.list-content {
  padding: 1rem;
}

@media (min-width: 992px) {
  .list-content {
    padding: 1rem 0;
  }
}

.list-content + .list-content {
    border-top: 1px solid rgba(211, 211, 211);
}

.list-content .title {
  font-weight: bold;
  /*font-family: Arial, sans-serif;*/
  margin-bottom: .5rem;
}

.more-link, .more-link a {
  /*color: #1364b5;*/
  color: #0C457D;
  font-weight: 700;
}

.block-title {
  color: #1364b5;
  font-weight: bold;
  /*font-family: Arial, sans-serif;*/
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.block-whats-new .block-title {
  margin-bottom: .5rem;
}

.block-slw-blog {
  /*background: #C9E0F5;*/
  background: #D7E7F9;
}

.block-slw-blog .slide-blog {
  margin-bottom: 2rem;
}

.block-slw-blog .btnSwiperPrev, .block-slw-blog .btnSwiperNext {
  top: 50%;
}

.block-slw-blog .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  padding: 1.8rem 1.5rem 1rem;
  margin-bottom: .5rem;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  border-radius: 7px;
}

.block-slw-blog .swiper-slide .title {
  /*font-family: Arial, sans-serif;*/
  font-weight: 700;
  font-size: 1.25rem;
  width: 100%;
  display: block;
}

.block-slw-blog .swiper-slide .date {
  margin: 1rem 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.block-slw-blog .swiper-pagination {
  bottom: 1.5rem;
}

.block-social .swiper-slide {
  color: #fff;
  border-radius: 5px;
}

.block-social .swiper-slide:nth-of-type(4n+1) {
  background: #1364b5;
}

.block-social .swiper-slide:nth-of-type(4n+2) {
  background: #355C5A;
}

.block-social .swiper-slide:nth-of-type(4n+3) {
  background: #9B5050;
}

.block-social .swiper-slide:nth-of-type(4n+4) {
  background: #745F42;
}

.block-social .swiper-slide > div {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.block-social .swiper-slide .title {
  /*font-family: Arial, sans-serif;*/
  padding: 1.5rem 1rem 0.8rem;
}

.block-social .swiper-slide .icons-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: .5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: .8rem;
}

.block-social .swiper-slide .icons-wrapper img {
  margin-right: .5rem;
  max-width: 30px;
}

.block-shortcut .container {
  max-width: 86%;
}

@media (max-width: 992px) {
  .block-shortcut .container {
    margin-left: 6%;
    margin-right: 9%;
    margin-bottom: 1.5rem;
  }
}


.block-shortcut a {
  color: #000;
}

@media (min-width: 992px) {
  .block-shortcut .row+.row {
    margin-top: 1.7rem;
  }
}

/*.block-shortcut .col-12+.col-12 {
  margin: 1.5rem 0rem;
}

@media (min-width: 768px) {
  .block-shortcut .col-12+.col-12 {
    margin: 0rem 1.5rem;
  }
}*/

.box {
  border-radius: 10px;
  padding: 1.5rem;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .block-shortcut .col-12 {
    margin-top: 1.5rem;
  }
  .block-shortcut .col-12:first-child {
    margin-top: 1rem;
  }
  .topbox img {
    display: none;
  }
}

@media (min-width: 992px) {
  .box {
    border-radius: 10px;
    width: 12.5rem;
    height: 12.5rem;
    padding: 1.5rem;
    margin: 0 auto;
  }
  .topbox {
    height: 40%;
  }
  .topbox img {
    max-height: 90%;
  }
  .downbox {
    height: 48%;
    margin-top: 4%;
    display: table;
  }
  .downbox div {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (min-width: 1200px) {
  .box {
    border-radius: 10px;
    width: 14rem;
    height: 13rem;
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .box {
    border-radius: 10px;
    width: 16rem;
    height: 13rem;
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    margin: 0 auto;
  }
}

.boxy {
  background: #FFDE53;
  -webkit-box-shadow: 10px 10px 0px 0px #817956;
  -moz-box-shadow: 10px 10px 0px 0px #817956;
  box-shadow: 10px 10px 0px 0px #817956;
}

.boxb {
  background: rgba(111,206,218,1);
  -webkit-box-shadow: 10px 10px 0px 0px #408B95;
  -moz-box-shadow: 10px 10px 0px 0px #408B95;
  box-shadow: 10px 10px 0px 0px #408B95;
}

.block-contact {
  background: #79C454;
}

.block-contact .container {
  max-width: 100%;
  padding: 0;
}

.block-contact a {
  color: #000;
}

.block.block-contact .col-lg-5 img {
  min-height: 100%;
}

.block-contact .content {
  margin: 2rem 2rem;
  margin-left: 16%;
}

@media (min-width: 1918px) {
  .block-contact .content {
    margin-left: 19%;
  }
}

@media (max-width: 992px) {
  .block-contact .content {
    margin-left: 10.6%;
  }
}

.redtext {
  color: #DC3545;
}

.gdtext {
  color:#AD6848;
}

.congrid {
  line-height: 2rem;
}

.conhr {
  color: #808080;
}

hr.half {
  width: 50%;
  border-top: 1px dashed #000;
}

hr.dash {
  border-top: 1px dashed #000;
}


@media (min-width: 1200px) {
  .congrid {
    line-height: 1.5rem;
  }
}

.congrid .row {
  margin: 0;
}

.block-contact .congrid .row div {
  padding: 0;
}

.block-contact .congrid .row {
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .block-contact .congrid .row {
    padding-bottom: 0.5rem;
  }
}


.congrid img {
  width: 60%;
}

div.basel {
  align-items: baseline;
}

.block-gov .btnSwiperPrev, .block-gov .btnSwiperNext {
  top: calc( 50% - 1rem);
  color: rgba(199,111,37,1);
  margin: 0 -1rem;
  font-weight: bold;
}

@media (max-width: 992px) {
  .block-gov {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .block-gov .btnSwiperPrev, .block-gov .btnSwiperNext {
    margin: 0;
  }
}

footer {
  background: #79C454;
}

footer .container-1640 {
  position: relative;
  width: 84%;
}
@media (max-width: 768px) {
  footer .container-1640 {
    position: relative;
    width: 90%;
  }
}

.back-to-top {
  text-align: center;
  margin: 2rem auto 0;
  width: 100%;
  display: inline-block;
}
.back-to-top {
  color: #0C457D;
}
@media (min-width: 768px) {
  .back-to-top {
    position: absolute;
    top: 15px;
    right: 15px;
    width: auto;
    margin: 0;
  }
}

footer .footer-bottom {
  display: block;
  font-weight: bold;
  padding: 1rem 1.2% 2rem;
  width: 100%;
}

@media (min-width: 992px) {
  footer .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 1918px) {
  footer .footer-bottom {
    padding: 1rem 0% 2rem;
  }
}

footer .footer-bottom, footer .footer-bottom a {
  color: #3E3E3E;
}

@media (min-width: 992px) {
  footer .footer-bottom .footer-links {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  footer .footer-bottom .footer-links {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .footer-links .right {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .footer-links .right {
    margin-top: 1rem;0
  }
}

footer .footer-bottom .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

@media (min-width: 768px) {
  footer .footer-bottom .icons {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

footer .footer-bottom .icons img {
  padding: 1rem 0rem;
  height: 100px;
}

@media (max-width: 768px) {
  footer .footer-bottom .icons img {
    height: 80px;
  }
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-top: 0;
  /*margin-bottom: 2rem;*/
  /*font-family: Arial, sans-serif;*/
}

@media (max-width: 768px) {
  .breadcrumb {
    /*margin-bottom: 1.5rem;*/
  }
}

/*@media (min-width: 768px) {
  .breadcrumb {
    padding: 1.5rem 0;
  }
}
*/
/*.breadcrumb, .breadcrumb a, .breadcrumb .breadcrumb-item.active {
  color: #3E3E3E;
}*/

.breadcrumb li {
  margin: 0;
}

/*@media (min-width: 992px) {
  .breadcrumb li {
    margin: .5rem 0;
  }
}*/

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #000;
  padding: 0 1rem;
}

.page-banner {
  text-align: center;
  /* padding: 0 2rem; */
}
.page-banner.with-bg-img {
  min-height: 150px;
}
.breadcrumb-wrapper + .page-banner {
  margin-top: -3rem;
  margin-bottom: 3rem;
}

.topicbar {
  /*background: transparent;*/
  padding: 1rem 0;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.topicbar-item {
  color: #FFF;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.topicbar li {
  margin: 0;
  list-style-type: none;
}

.topicbar h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.2rem;
}

.page-content {
  text-align: justify;
 text-justify: distribute;
}

.page-content h2, .lv2 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: rgba(65,120,32,1);
  line-height: 2.5rem;
}

@media (max-width: 768px) {
  .page-content h2 {
    margin-top: 1rem;
  }
}


@media (min-width: 992px) {
  .topicbar li {
    margin: .5rem 0;
  }
}

@media (min-width: 768px) {
  .topicbar {
    padding: 3rem 0;
  }
}

ul.gn, #sitemap ul {
  list-style: none;
}

ul.gn > li::before, #sitemap ul.gn > li::before {
  content: "\25CF";
  color: rgba(123,195,88,1);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1em;
  position: absolute;
  left: 6px;
}

ul.gn > li, #sitemap ul.gn > li {
  line-height: 2em;
  padding-left: 1em;
  position: relative;
  /*margin: 2rem 0;*/
}

ul.abc {
  list-style: none;
  padding-left: 0.2rem;
}

.sidebar {
  display: none;
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding-right: 2rem;
  /*font-family: Arial, sans-serif;*/
}

@media (min-width: 992px) {
  .sidebar {
    display: block;
  }
}

.sidebar + .page-content {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 992px) {
  .sidebar + .page-content {
    max-width: 80%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    padding-left: 1rem;
  }
}

.sidemenu {
  list-style: none;
  padding-left: 0;
}

.sidemenu a {
  color: #3E3E3E;
}

.sidemenu .sidemenu-item {
  margin-bottom: 1rem;
}

.sidemenu .sidemenu-item.active a {
  font-weight: 800;
  color: #1364b5;
}

.page-title {
  color: #3E3E3E;
  line-height: 1.2;
  margin-bottom: 3rem;
  font-size: 1.75rem;
}

@media (min-width: 992px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.listing-content {
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .listing-content {
    max-width: 80%;
  }
}

.listing-content .list-item {
  border-bottom: 1px solid rgba(112, 112, 112, 0.55);
  margin-bottom: .5rem;
  padding: 1rem 0 .3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media (min-width: 768px) {
  .listing-content .list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: inherit;
            flex-flow: inherit;
  }
}

.listing-content .list-item .date {
  font-size: .8rem;
}

@media (min-width: 768px) {
    .listing-content .list-item .date {
        font-size: 1rem;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-right: 3rem;
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    }
}

.listing-content .list-item .desc {
  display: block;
}

@media (min-width: 768px) {
  .listing-content .list-item .desc {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.listing-content.one-col .list-item {
  display: block;
  border: 0;
}

.listing-content.one-col .list-item .desc {
    font-weight: normal;
    font-size: smaller;
    display: none;
}

.collapseItems .item {
  margin-bottom: 5rem;
}

.collapseItems .collapse-toggle {
  font-size: 1.25rem;
  font-weight: 800;
  /*font-family: Arial, sans-serif;*/
  color: #3E3E3E;
}

@media (min-width: 992px) {
  .collapseItems .collapse-toggle {
    font-size: 1.75rem;
  }
}

.collapseItems .collapse-toggle:after {
  content: "\e807";
  font-family: "fontello";
  margin-left: 1.5rem;
  font-size: 1rem;
  vertical-align: middle;
}

.collapseItems .collapse-toggle.collapsed:after {
  content: "\e800";
}

.collapseItems .collapse-toggle:hover {
  text-decoration: none;
}

.table-bordered,
.table-bordered td, .table-bordered th {
  border-color: #000;
}

table th {
  /*font-family: Arial, sans-serif;*/
  font-size: 1.25rem;
  color: #000;
  background: #EFEFEF;
}

table th, table td {
  /*vertical-align: top;*/
  padding: 1.5rem .8rem;
}

th p, td p {
  margin-bottom: 0;
}

.tbl1, .tbl2, .tbl3, .tbl4 {
  width: 100%;
}

.tbl1 th, .tbl1 td, .tbl2 th, .tbl4 th, .tbl4 td {
  border: 2px solid rgba(205,205,205,1);
}

.thc th {
  text-align: center;
}

.tdc td {
  text-align: center;
}

.tdc1 td:nth-child(1) {
  text-align: center;
}

.bn1 td:nth-child(1) {
  border-right: hidden;
}
.bn2 td:nth-child(2)  {
  border-right: hidden;
}
.bn2 td:nth-child(2) {
  border-left: hidden;
}
.vt td {
  vertical-align: top;
}

.bs1 td:nth-child(1) {
  border-right: 2px solid rgba(205,205,205,1);
}
.bs2 td:nth-child(2)  {
  border-right: 2px solid rgba(205,205,205,1);
}
.bs2 td:nth-child(2) {
  border-left: 2px solid rgba(205,205,205,1);
}

.zero {
  background: #EFEFEF;
}

.tblnob th, .tblnob td {
  border: none;
}

.td1l td:nth-child(1) {
  text-align: left;
}

.blink {
  /*background-image: url(../../file_manager/images/bgblink.gif);*/
  background: yellow;
}

.blink1 {
  background-image: url(../../file_manager/images/bgblink.gif);

}

.pl40 {
  padding-left: 40px;
}

.pl60 {
  padding-left: 60px;
}

.tbl2 td {
  border-left: 2px solid rgba(205,205,205,1);
  border-right: 2px solid rgba(205,205,205,1);
}

.tbl2 tr:last-child td, .tbl2 .dash .foot, .tbl2 tr:not(.dash) td {
  border-bottom: 2px solid rgba(205,205,205,1);
}

.tbl2 th, .tbl4 th {
  /*font-size: 1rem;*/
}

.tbl1 th, .tbl1 td {
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .tbl1 th, .tbl1 td, .tbl2 th, .tbl2 td, .tbl4 th, .tbl4 td {
    padding: 0.5rem .4rem;
    font-size: 60%;
  }
}

.tbl2 th:nth-last-child(2),  .tbl2 th:last-child {
  width: 12%;
}

.tbl2 th:last-child, .tbl2 th:nth-last-child(2), .tbl2 td:last-child, .tbl2 td:nth-last-child(2), .tbl4 th:not(:first-child)  {
  text-align: center;
}
.tbl1 th:last-child, .tbl1 th:nth-last-child(2)  {
  text-align: center;
  
}
.tbl1 td:last-child, .tbl1 td:nth-last-child(2)  {
  /* text-align: center; */
  text-align: left;
}
.tbl1 td.textleft{
  text-align: left;
}
.tbl2 tr td.head, .tbl2 .last, .tbl2 tr:first-child {
  border-bottom: 4px solid;
}

.tbl2 tr.dash td {
  border-bottom: 2px solid rgba(205,205,205,1);
}

.tbl4 th:first-child, .tbl4 td:first-child {
  padding-left: 10%;
  vertical-align: middle;
}

.tbl1.thc.bn1.bn2.vt td:nth-child(1), .tbl1.thc.bn1.bn2.vt td:nth-child(2) {
  width: 6%;
}
.tbl1.thc.bn1.bn2.vt td:nth-child(3) {
  width: 68%;
}
.tbl1.thc.bn1.bn2.vt td:nth-child(4) {
  width: 20%;
}

.videowall .row {
  padding-bottom: 3rem;
}

.pld td:first-child {
  padding-left: 0%;
}

.bgYellow {
  background: #FFDE53;
}

.bgOrange {
  background: #FFA041;  
}

.divc div {
  text-align: center;
}

.snap img {
  width: 60%;
  height: auto;
}

.imgwall {
  width: 60%;
}

.ico_pdf {
  /*max-width: 30%;*/
  height: 30px;
}

.video-js.vjs-fill {
  max-width: 480px;
}

/*.row.boxrow {
    margin-left: 1rem;
    margin-right: 1rem;
}
.row.boxrow [class*="col-"] {
    padding-left: 1rem;
    padding-right: 1rem;
}*/

.boxboss {
  padding-left: 0.8rem;
}
@media (min-width: 1918px) {
  .boxboss {
    padding-left: 3.8rem;
  }
}

@media (max-width: 991px) {
  .boxboss, .row.boxrow+.row.boxrow {
    margin-top: 1rem;
  }
}

.row.boxrow {
  margin-right: -5px;
}

table.table-bordered thead td, table.table-bordered thead th {
  border-width: 2px;
}

/* Table Style 1 */
table.style_1, table.style_1 th, table.style_1 td {
    border: 1px solid #b8b8b8;
}

figcaption {
  display: none;
}

.img_rev {
  height: 1.5rem;
  width: auto;
}

.listing-landing {
  font-size: 1.2rem;
  /*font-family: Arial, sans-serif;*/
  font-weight: bold;
  list-style: none;
}

.listing-landing li {
  margin: 0 0 2rem;
}

.listing-landing ul ul {
  list-style-type: disc;
  font-size: 1rem;
  /*font-family: Arial, sans-serif;*/
  margin-top: .5rem;
}

.listing-landing ul ul li {
  margin: .5rem 0;
}

.gallery-list .item {
  padding: 2rem 0;
}

.gallery-list .item + .item {
  border-top: 1px solid #BEBEBE;
}

.gallery-list .title {
  font-size: 1.25rem;
  font-weight: 800;
  /*font-family: Arial, sans-serif;*/
}

.gallery-list .photos {
  margin-top: 2rem;
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .gallery-list .photos {
    width: 80%;
  }
}

.gallery-list .photos figure {
  display: inline-block;
  width: 50%;
  padding: 0 10px;
}

@media (min-width: 992px) {
  .gallery-list .photos figure {
    width: 33.333333%;
  }
}

.gallery-list .photos figure img {
    width: 100%;
    /* border-radius: 9px; */
    /* border: 1px solid white;
    box-shadow: 0 0 4px #646464; */
}

.fancybox-image, .fancybox-spaceball {
    /* border-radius: 11px; */
    /* box-shadow: 0 3px 11px #8b8b8b; */
}

/* re-style fancybox */
.fancybox-inner {
  background: #fff;
  left: 5%;
  right: 5%;
  top: 10%;
  bottom: 10%;
}

@media (min-width: 768px) {
  .fancybox-inner {
    left: 10%;
    right: 10%;
  }
}

@media (min-width: 992px) {
  .fancybox-inner {
    left: 15%;
    right: 15%;
  }
}

.fancybox-caption {
  background: transparent;
  color: #3E3E3E;
  padding: 1.5rem 1rem 0;
  font-size: .875rem;
}
.fancybox-caption__body {
  /* max-height: 45vh; */
  /* line-height: 1.3; */
  padding-top: .5rem;
  text-align: left;
}
.fancybox-caption__body p {
  margin-top: 1.2rem;
  margin-bottom: .5rem;
}

.fancybox-button {
  background: transparent;
  color: #3E3E3E;
}

.fancybox-button.fancybox-button--close {
  width: 60px;
  height: 60px;
}

.fancybox-button.fancybox-button--close svg {
  background: rgba(255, 255, 255, .5);
}
.fancybox-button.fancybox-button--close svg path {
  fill: #3E3E3E;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
  background: #FFD939;
  padding: 0;
  width: 40px;
  height: 60px;
}

@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button.fancybox-button--arrow_left, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
    width: 80px;
    height: 80px;
  }
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left:disabled, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right:disabled {
  display: none;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left div, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right div {
  padding: 0;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left svg, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right svg {
  display: none;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
  left: -20px;
}

@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
    left: -60px;
  }
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
  right: -20px;
}

@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
    right: -60px;
  }
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left > div:after, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right > div:after {
  font-family: "fontello";
  font-size: 1rem;
  color: #3E3E3E;
  line-height: 60px;
}

@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button.fancybox-button--arrow_left > div:after, .fancybox-navigation .fancybox-button.fancybox-button--arrow_right > div:after {
    font-size: 2rem;
    line-height: 80px;
  }
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left > div:after {
  content: "\e805";
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_right > div:after {
  content: "\e806";
}

.filter-yr {
  margin-bottom: 1.5rem;
}

.filter-yr li {
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: .8rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .filter-yr li {
    margin-right: 3rem;
    margin-bottom: 1.5rem;
  }
}

.filter-yr li a:not(.active) {
  color: #3E3E3E;
}

.activity-content .yr {
  margin: 1rem 0;
  font-size: 1.75rem;
  /*font-family: Arial, sans-serif;*/
  font-weight: 800;
  color: #1364b5;
}

.activity-content .sub-title {
  margin: 1rem 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.activity-content > div:not(.active) {
  display: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.divlink {
    padding: 10px;
    width: 290px;
    display: block;
    border: 2px solid green;
    background-color: #E8FEE9;
    margin: 0 auto;
    text-align: left;
    position: relative;
    border-radius: 15px;
}

.bluetbl td {
    padding: 5px;
    border: 1px solid #8AC6EB;
}
.blacktbl td {
    padding: 5px;
    border: 1px solid #000000;
}

.figs {
  float: left;
  margin-right: 30px;
}

.figdesc {
  text-align: center;
  font-weight: bold;
}

.clear {
  clear: both;
}

.cush2 {
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
}

ul.type1, ol.type1 {
  list-style-type: disc;
}
ul.type2, ol.type2 {
  list-style-type: disc;
}

.img30 {
  width: 30%;
  height: 30%;
}

.fancybox-caption_body p {
    background-color: #ffffffd4 !important;
}

.chi-only {
    color: white;
    background-color: #989898;
    padding: 5px 9px;
    border-radius: 25px;
    font-size: 10px;
    margin-left: 7px;
    font-weight: normal;
}

.title {
    font-weight: bold;
}

.txtCen {
  text-align: center;
}

.nonTopBor td {
  border-top: hidden;
}


.rounded { border-radius: .40rem !important; }
.border-gray { border: 1px solid #c7c7c7; }
.shadow-1 { box-shadow: 0px 0px 15px #0000006b; }
.shadow-2 { box-shadow: 1px 2px 4px #00000087; }


/* thumnails */
.thumbnails {
    margin: calc(11px - 15px);
    text-align: center;
}
.thumbnails figure {
    display: inline-block !important;
    max-height: 20rem;
    margin: 15px;
}
.thumbnails img {
    max-height: 20rem;
    margin: 15px;
}

@media only screen and (max-width: 600px) {
    .thumbnails img {
        max-height: none;
        margin: 15px 0;
    }
}


.non_top_bom td {
  padding-top: 0px;
  padding-bottom: 0px;
}

.pdl30 {
  padding-left: 30px;
}

.pdl60 {
  padding-left: 60px;
}

.data-table-1 {
    margin: -3px -10px;
}

.data-table-1 td {
    padding: 3px 10px;
}

.mobile-view .desktop-only {
  display: none !important;
}

.uu {
  line-height: 1.5em;
  border-bottom: 3px double;
  text-decoration: none;
}

.non_top_bom ul li:first-child {
    margin-top: 0px;
}

.icon_wcag {
  height: 50px;
}

.smallf {
  font-size: small;
}

.redmt {
  color: #DC3545;
}

map area {
  outline: 0;
}

.scrolltbl {
  overflow-x: scroll;
}

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
[style*="--aspect-ratio"] > img {  
  height: auto;
} 
@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }  
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }  
}

/* style for printing */
@media print {
  .d-flex {
    display: block !important;
  }
  .sidebar, .page-content {
    /* float: left; */
    /* display: inline-block; */
  }
}

.doc_file{
text-align: center;

}
.video_table{
width: 100%;
text-align: center;
}
.video_table_data{
width: 50%;

}
.video_table_text{
text-align: left;

}
.best_building_banner{
width: 100%;

}
.new{
color: red;
font-weight: bold;
}
.video_image{
width: 55% !important;

}
.notice{
  border-style: groove;
  border-color: red;
  background-color: #f0f0a0;
}

@media (min-width: 992px) {
.homepage_next{
margin-top: 19px !important;
font-family: Arial, Helvetica, sans-serif !important;
background: rgba(255,255,255,0.8) !important;
/*background: rgba(255,255,255,0.2) !important; */
border-radius: 1px !important;
width: 28px !important;
height: 76px !important;
color: #885420;
/*color: #FFF !important;*/
right: 2% !important;
top: 40% !important;

}
}
@media (min-width: 992px) {
  .homepage_prev{
  margin-top: 19px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  background: rgba(255,255,255,0.8) !important;
  border-radius: 1px !important;
  width: 30px !important;
  height: 76px !important;
  color: #885420 !important;
  right: 2% !important;
  top: 40% !important;
  
  }
  }

@media (max-width: 991px) {
.homepage_next{
  margin-top: 19px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  background: rgba(255,255,255,0.8) !important;
  border-radius: 1px !important;
  width: 27px !important;
  height: 52px !important;
  color: #885420 !important;
  right: 2% !important;
  top: 25% !important;
 padding-left: 6px !important;
 padding-bottom: 3px !important;
}
}

@media (max-width: 991px) {
  .homepage_prev{
    margin-top: 19px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    background: rgba(255,255,255,0.8) !important;
    border-radius: 1px !important;
    width: 27px !important;
    height: 52px !important;
    color: #885420 !important;
    right: 2% !important;
    top: 25% !important;
    padding: 6px 4px 6px 11px !important;
    padding-left: 0px !important;
  }
  }


.homepage_button_next{
  margin-left: -7px !important;

}

@media (max-width: 991px) {
  .homepage_button_next{
  margin-left: 3px !important;

  }
}
.homepage_button_prev{

  margin-left: 11px !important; 
}

@media (min-width: 991px) {

.homepage_button_prev{

  margin-left: -6px !important; 
}
}

.hr_1{
  color: red !important;
}
.hr_2{
  color: blue !important;
}


/* used as popup msg */

.black_overlay {
	/* display: none; */
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 2000px;
	background-color: #3a3a3a;
	z-index: 1001;
	-moz-opacity: 0.8;
	opacity: .80;
	filter: alpha(opacity=80);
   }
   
   .white_content {
	position: absolute;
	top: 54px;
	left: -2px;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	max-width: 690px;
	/* width: 28%; */
	/* height: 38%; */
	padding: 16px;
	/* border: 16px solid #072465; */
	background-color: white;
	z-index: 1002;
	overflow: auto;
	align: centre;
	background-color: #E8F8D8;
   }
   
   @media (max-width: 767px) {
	 .white_content {
	top: 29px;
	left: 24px;
	width: 92%;
	height: 92%;
	 }
   }
   
   .notactive {
	pointer-events: none;
	cursor: default;
   }
   
   .DisabledLink {
	pointer-events: none;
	cursor: default;
   }
   
   .display_detail {
	text-align: justify;
	text-justify: inter-ideograph;
	font-family: "Arial";
	font-size: 1.3em;
  color: black;
  line-break: anywhere;
   }
   
   .display_cover {
	align: middle;
	background-color: #fdd835;
	width: 200px;
	height: 200px;
	border: 1px
   }
   
   .display_cover_text {
	mages-valign: center;
	images-align: center;
	text-valign: center;
	text-align: center;
	background-color: #fdd835;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	font-family: "Arial";
	font-size: 0.9em;
	color: white;
	width: 210px;
   }
   
   .divelement {
	vertical-align: text-top;
   }
   
   td img {
	vertical-align: center;
   }
   
   .details_header {
	images-valign: center;
	images-align: center;
	text-valign: center;
	text-align: center;
	font-family: "Arial";
	font-size: 1.31em;
	color: #fdd835;
	align: center;
	font-weight: bold;
   }
   
   .clsbtn {
	 border: 0;
	 width: 2rem;
	 height: auto;
	 position: absolute;
	 right: 1rem;
   }
   


}

   .popup_title{
     /* text-align: center !important; */
     font-size: 1.3rem;
     font-weight: bold;
     color: #000;
   }
   .popup_text{
	   line-height: 25px;
	   margin-bottom: 27px;
	   color: #000;
	   /* font-family: Arial, Helvetica, sans-serif !important; */
     font-size: 1rem;
     font-weight: bold;
     line-break: initial;
   }


   /* used as popup msg */

   .star{
     width: 30px;;
   }
   .remark{
     padding: 0;
   }
   .star_remark{
   vertical-align: top;
   padding: 3px;
   width: 35px;

   }
   .remark1{
     color: #00bfff;
   }
   .remark2{
     background-color: yellow;
   }
