/* ----------------------------------------------------------
  Colors
------------------------------------------------------------*/
:root {
  --color-txt: rgb(255,255,255);

  --color-header-bg: rgb(0,0,0);
  --color-header-bg-tr: rgba(0,0,0,0.6);
  --color-header-txt: var(--color-txt);
  --color-header-border: rgb(75, 74, 82);

  --color-menu-bg: var(--color-header-bg);
  --color-menu-bg-tr: var(--color-header-bg-tr);
  --color-menu-txt: var(--color-header-txt);
  --color-menu-bg-active: rgb(65, 156, 156);
  --color-menu-bg-active-tr: rgba(65, 156, 156, 0.6);
  --color-menu-bg-hover: rgb(168, 190, 212);
  --color-menu-bg-hover-tr: rgba(168, 190, 212, 0.6);

  --color-banner-txt: var(--color-txt);

  --color-footer-bg: var(--color-header-bg);
  --color-footer-txt: var(--color-header-txt);

  --color-main-section-bg-odd: rgb(255,255,255);
  --color-main-section-bg-even: rgb(140, 196, 142);

  --color-multi-column-border: rgb(76, 170, 77);

  --color-carousel-prev-next-text: rgb(224, 224, 224);
  --color-carousel-prev-next-bg: rgba(64, 64, 64, 0.6);
  --color-carousel-nav: rgb(160, 160, 160);
  --color-carousel-nav-active: rgb(64, 64, 64);
  --color-carousel-nav-hover: rgb(64, 64, 64);
  --color-carousel-img-caption: rgb(255, 255, 255);

}

/* ----------------------------------------------------------
  General and body style
------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
}

.vertical {
  flex-direction: column;
}

.multi-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* ----------------------------------------------------------
  Header style
------------------------------------------------------------*/
header {
  width: 100%;
}

header.on-banner {
  position: absolute;
  z-index: 999;  
}

.header-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--color-header-bg);
  font-size: 1em;
  color: var(--color-header-txt);
  padding: 10px;
  border-bottom: 1px solid var(--color-header-border);
}

header.on-banner .header-top {
  background: var(--color-header-bg-tr);
}

header .header-top a {
  color: var(--color-header-txt);
  font-size: 15px;
  text-decoration: none;
  padding-right: 30px;
}

header .header-top a.social {
  padding-right: 0px;
}

header .header-top a i {
  color: var(--color-header-txt);
  font-size: 15px;
  padding-right: 10px;
}

@media screen and (max-width: 600px) {
  .header-top-mid { display: none; }
  .header-top-right { display: none; }
}

/* ----------------------------------------------------------
  Banner
------------------------------------------------------------*/
.layout-banner {
  display: block;
  --banner-darkness: 0.5;
  position: relative;
  top: 0px;
  z-index: 2;
  padding: 213px 0 80px;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/common/img/banner01_1500x450.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 145px;
  text-align: center;
}

.layout-banner.banner-03 {
  --banner-darkness: 0.5;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/common/img/banner03_1500x450.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.layout-banner.banner-04 {
  --banner-darkness: 0.5;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/common/img/banner04_1600x600.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.layout-banner.banner-05 {
  --banner-darkness: 0.5;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/common/img/banner05_1500x450.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.layout-banner.banner-07 {
  --banner-darkness: 0.5;
  background: linear-gradient( rgba(0, 0, 0, var(--banner-darkness)), rgba(0, 0, 0, var(--banner-darkness))), url("https://bb128web.blob.core.windows.net/common/img/banner07_1500x450.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-content {
  display: inline-block;
  color: var(--color-banner-txt);
  text-align: center;
  vertical-align: middle;
  font-size: 2em;
  font-weight: bold;
  opacity: 1;
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(0,0,0,0.6);
}

/* ----------------------------------------------------------
  Footer style
------------------------------------------------------------*/
footer {
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--color-footer-txt);
  background: var(--color-footer-bg);
  padding: 10px;
}

footer > div {
  font-size: 1em;
}

footer a {
  color: var(--color-header-txt);
  font-size: 15px;
  text-decoration: none;
  padding-right: 30px;
}

footer a.social {
  padding-right: 0px;
}

footer a i {
  color: var(--color-header-txt);
  font-size: 15px;
  padding-right: 10px;
}

@media screen and (max-width: 600px) {
  .footer-mid { display: none; }
  .footer-right { display: none; }
}

/* ----------------------------------------------------------
  Menu style
------------------------------------------------------------*/
.top-menu {
  background-color: var(--color-menu-bg);
}

header.on-banner .top-menu {
  background-color: var(--color-menu-bg-tr);
}

.top-menu.sticky.fixed {
  position: fixed;
  top: 0px;
  width: 100%;
}

.top-menu.sticky:not(.fixed) {
  position: sticky;
  top: 0px;
  width: 100%;
}

.top-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.top-menu li {
  float: left;
}

.top-menu li a {
  display: block;
  color: var(--color-menu-txt);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.2em;
}

.top-menu li a:hover:not(.active) {
  background-color: var(--color-menu-bg-hover);
  color: var(--color-menu-txt);
}

header.on-banner .top-menu li a:hover:not(.active) {
  background-color: var(--color-menu-bg-hover-tr);
  color: var(--color-menu-txt);
}

.top-menu li a.active {
  color: var(--color-menu-txt);
  background-color: var(--color-menu-bg-active);
}

header.on-banner .top-menu li a.active {
  color: var(--color-menu-txt);
  background-color: var(--color-menu-bg-active-tr);
}

.top-menu li.vertical-menu-icon {
  float: right;
  display: none;
}

@media screen and (max-width: 600px) {
  .top-menu li:not(:first-child) {display: none;}
  .top-menu li.vertical-menu-icon {
    float: right;
    display: block;
  }
  .top-menu.vertical { 
    position: relative;
  }
  .top-menu.vertical.sticky.fixed { 
    position: fixed;
    top: 0px;
  }
  .top-menu.vertical.sticky:not(.fixed) { 
    position: sticky;
    top: 0px;
  }
  .top-menu.vertical li.vertical-menu-icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .top-menu.vertical li {
    float: none;
    display: block;
  }
  .top-menu.vertical li a {
    text-align: left;
  }
}

/* ----------------------------------------------------------
  Main
------------------------------------------------------------*/
main {
  display: flex;
  max-width: 1400px;
  margin: auto;
}

main section {
  display: flex;
  padding: 10px;
  max-width: 100%;
}

main section:nth-child(odd) {
  background-color: var(--color-main-section-bg-odd);
}

main section:nth-child(even) {
  background-color: var(--color-main-section-bg-even);
}

/* ----------------------------------------------------------
  Map
------------------------------------------------------------*/
.map > iframe {
  width: 500px;
  height: 450px;
  border: 1px solid var(--color-multi-column-border);
}

@media screen and (max-width: 600px) {
  .map > iframe {
    width: 100%;
    height: 350px;
  }
}

/* ----------------------------------------------------------
  Section layouts
------------------------------------------------------------*/

/* ----------------------------------------------------------- */
.layout-simple {
  padding: 10px;
}

/* ----------------------------------------------------------- */
.layout-right-img {
  flex-direction: row-reverse;
}

.layout-right-img.float {
  display: block;
}

.layout-right-img .img {
  display: block;
  max-width: 50%;
  margin: 20px 10px;
  float: right;
}

.layout-right-img.float .img {
  margin: 20px 10px 10px 20px;
}

.layout-right-img .img img {
  display: block;
  max-width: 100%;
  max-height: 300px;  
}

.layout-right-img .text {
  text-align: justify;
  margin: 10px;
  flex-shrink: 100;
}

.layout-right-img .text h2 {
  text-align: left;
  margin-block-start: 0px;
}

@media screen and (max-width: 600px) {
  .layout-right-img {
    flex-direction: column;
  }
  .layout-right-img .img {
    max-width: 100%;
  }
  .layout-right-img:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-right-img .text p {
    margin-left: 0px;
  }
  .layout-right-img.float .img {
    float: none;
    margin: 20px 10px 20px 10px;
  }  
}

/* ----------------------------------------------------------- */
.layout-left-img {
  flex-direction: row;
}

.layout-left-img.float {
  display: block;
}

.layout-left-img .img {
  display: block;
  max-width: 50%;
  margin: 20px 10px;
}

.layout-left-img.float .img {
  margin: 20px 20px 10px 10px;
  float: left;
}

.layout-left-img .img img {
  display: block;
  max-width: 100%;
  max-height: 300px;
}

.layout-left-img.float .img img {
  margin-right: 10px;
}

.layout-left-img .text {
  text-align: justify;
  margin: 10px;
  flex-shrink: 100;
}

.layout-left-img .text h2 {
  text-align: left;
  margin-block-start: 0px;
}

@media screen and (max-width: 600px) {
  .layout-left-img {
    flex-direction: column;
  }
  .layout-left-img .img {
    max-width: 100%;
  }
  .layout-left-img:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-left-img .text p {
    margin-left: 0px;
  }
  .layout-left-img.float .img {
    float: none;
    margin: 10px;
  }
}

/* ----------------------------------------------------------- */
.layout-left-img-title {
  flex-direction: column;
}

.layout-left-img-title:not(.float) > div {
  display: flex;
  flex-direction: row;
}

.layout-left-img-title > h2 {
  text-align: left;
  margin-block-end: 0px;
}

.layout-left-img-title .img {
  display: block;
  max-width: 50%;
  margin: 20px 10px;
}

.layout-left-img-title.float .img {
  margin: 20px 20px 10px 10px;
  float: left;
}

.layout-left-img-title .img img {
  display: block;
  max-width: 100%;
  max-height: 300px;
}

.layout-left-img-title .title {
  margin-left: 10px;
  margin-right: 10px;
}

.layout-left-img-title .text {
  text-align: justify;
  margin-left: 10px;
  margin-right: 10px;
  flex-shrink: 100;
}

@media screen and (max-width: 600px) {
  .layout-left-img-title:not(.float) > div {
    flex-direction: column;
  }
  .layout-left-img-title .img {
    max-width: 100%;
  }
  .layout-left-img-title.float .img {
    float: none;
    margin: 20px 10px 10px 10px;
  }
  .layout-left-img-title:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-left-img-title .text p {
    margin-left: 0px;
  }
}

/* ----------------------------------------------------------- */
.layout-right-img-title {
  flex-direction: column;
}

.layout-right-img-title:not(.float) > div {
  display: flex;
  flex-direction: row-reverse;
}

.layout-right-img-title > h2 {
  text-align: left;
  margin-block-end: 0px;
}

.layout-right-img-title .img {
  display: block;
  max-width: 50%;
  margin: 20px 10px;
  float: right;
}

.layout-right-img-title.float .img {
  margin: 20px 10px 10px 20px;
}

.layout-right-img-title .img img {
  display: block;
  max-width: 100%;
  max-height: 300px;
}

.layout-right-img-title .title {
  margin-left: 10px;
  margin-right: 10px;
}

.layout-right-img-title .text {
  text-align: justify;
  margin-left: 10px;
  margin-right: 10px;
  flex-shrink: 100;
}

@media screen and (max-width: 600px) {
  .layout-right-img-title:not(.float) > div {
    flex-direction: column;
  }
  .layout-right-img-title .img {
    max-width: 100%;
  }
  .layout-right-img-title.float .img {
    float: none;
    margin: 20px 10px 10px 10px;
  }  
  .layout-right-img-title:not(.float) .text {
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout-right-img-title .text p {
    margin-left: 0px;
  }
}

/* ----------------------------------------------------------- */
.layout-multicolumn-img-text-common-title {
  padding-left: 10px;
  padding-right: 10px;
}

/* ----------------------------------------------------------- */
.layout-multicolumn-boxes-common-title {
  padding-left: 10px;
  padding-right: 10px;
}
/* ----------------------------------------------------------
  Gallery
------------------------------------------------------------*/
.layout-gallery-01 {
  display: block;
}

.layout-gallery-01 .img-container {
  display: flex;
  flex-wrap: wrap;
}

.layout-gallery-01 .img-item {
  max-width: calc(33% - 20px);
  /*min-width: 350px;*/
  padding: 10px;
  margin: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: white;
}

.layout-gallery-01 .img-item img {
  max-width: 100%;
  margin: auto;
}

.layout-gallery-01 .img-item .caption {
  text-align: center;
}

@media screen and (max-width: 950px) {
  .layout-gallery-01 .img-item {
      max-width: calc(48% - 20px);
      /*min-width: 350px;*/
  }    
}

@media screen and (max-width: 600px) {
  .layout-gallery-01 .img-container {
      flex-direction: column;
  }
  .layout-gallery-01 .img-item {
      max-width: 100%;
      min-width: 200px;
  }    
}
/* ----------------------------------------------------------- */
.mt-carousel {
  display: block;
  position: relative;
}

.mt-carousel-inner {
  position: relative;
}

.mt-carousel-item {
  position: relative;
  /* max-width: 75%; */
  margin: auto;
}

.mt-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-carousel-item-box {
  padding: 10px 15px 0px 15px;
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
  font-size: 2em;
  text-align: center;
  border: 1px solid var(--color-multi-column-border);
}

.mt-carousel-control-prev, .mt-carousel-control-next {
  display: block;
  cursor: pointer;
  color: var(--color-carousel-prev-next-text);
  padding: 10px;
  font-size: 20px;
  position: absolute;
  top: calc(50% - 10px - 10px); /* padding and font-size/2 will be subtracted to position to the middle */
  width: auto;
}

.mt-carousel-control-next {
  right: 0px;
}

.mt-carousel-control-prev:hover, .mt-carousel-control-next:hover {
  background-color: var(--color-carousel-prev-next-bg);
}

.mt-carousel-indicator {
  text-align: center;
}

.mt-carousel-indicator span {
  height: 5px;
  width: 50px;
  margin: 10px;
  background-color: var(--color-carousel-nav);
  display: inline-block;
  cursor: pointer;
}

.mt-carousel-indicator span.active {
  background-color: var(--color-carousel-nav-active);
}

.mt-carousel-indicator span:hover {
  background-color: var(--color-carousel-nav-hover);
}

.mt-carousel-img-caption {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  color: var(--color-carousel-img-caption);
  text-align: center;
}

/* ----------------------------------------------------------
  ...
------------------------------------------------------------*/
section .multi-column-3 {
  margin: 10px;
  max-width: 33%;
  min-width: 150px;
}

section .multi-column-3 img {
  max-width: 100%;
}

section .multi-column-3 p {
  max-width: 100%;
  text-align: justify;
}

section .multi-column.border div {
  border: 1px solid var(--color-multi-column-border);
  padding: 10px;
}

@media screen and (max-width: 800px) {
  .multi-column {
    flex-direction: column;
  }  
  section .multi-column-3 {
    max-width: 100%;
    min-width: 150px;
  }  
}

/* -------------------------------------------------------------
  Swipe carousel
---------------------------------------------------------------*/

.layout-gallery-02 {
  display: block;
}

.layout-gallery-02 .img-container {
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
}

.layout-gallery-02 .img-item {
  max-width: calc(48% - 20px);
  /*min-width: 350px;*/
  padding: 10px;
  margin: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: white;
}

.layout-gallery-02 .img-item img {
  max-width: 100%;
  margin: auto;
}

.layout-gallery-02 .img-item .caption {
  text-align: center;
}

@media screen and (max-width: 900px) {
  .layout-gallery-02 .img-container {
      flex-direction: column;
  }
  .layout-gallery-02 .img-item {
      max-width: 100%;
      min-width: 200px;
  }    
}

:root {
  --carousel-inner-width: 400;
}

.mt-carousel {
  display: block;
  width: 100%;
  margin: auto;
  position: relative;
  height: auto;
  touch-action: pan-y;
  box-sizing: border-box;
}

.mt-carousel.mt-outside-ctrl {
  padding: 10px 30px 0px 30px;
}

.mt-carousel-inner {
  overflow: hidden;
  position: relative;
  width: calc(var(--carousel-inner-width) * 1px);
}

.mt-carousel-items {
  width: 10000px;
  position: relative;
  top: 0px;
  left: calc((-1) * var(--carousel-inner-width) * 1px);
}

.mt-carousel-items.shifting {
  transition: left .2s ease-out;
}

.mt-carousel-item {
  float: left;
  width: calc(var(--carousel-inner-width) * 1px);
  display: flex;
  user-select: none;
}

.mt-carousel-item div {
  text-align: center;
  margin: auto;
  font-size: 5em;
}

.mt-carousel-indicator {
  text-align: center;
  height: 25px;
  position: relative;
}

.mt-carousel-inner .mt-carousel-indicator {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
}
.mt-carousel-indicator span {
  height: 5px;
  width: 50px;
  margin: 10px;
  background-color: rgb(192, 192, 192);
  display: inline-block;
  cursor: pointer;
}

.mt-carousel-indicator span.active {
  background-color: black;
}

.mt-carousel-indicator span:hover {
  background-color: gray;
}

.mt-carousel-control-prev, .mt-carousel-control-next {
  display: block;
  cursor: pointer;
  color: rgb(192, 192, 192);
  padding: 5px;
  font-size: 20px;
  position: absolute;
  top: calc(50% - 5px - 10px); /* padding and font-size/2 will be subtracted to position to the middle */
  width: auto;
}

.mt-carousel-control-prev {
  left: 0px;
}
.mt-carousel-control-next {
  right: 0px;
}

.mt-carousel-control-prev:hover, .mt-carousel-control-next:hover {
  background-color: gray;
}

#img-carousel-01 {
  width: 100%;
  border: 1px solid gray;
  background: black;
}

#img-carousel-01 .mt-carousel-item {
  background: black;
  flex-direction: column;
}
#img-carousel-01 .mt-carousel-item img {
  width: 100%;
  object-fit: contain;
  display: block;
}
#img-carousel-01 .mt-carousel-item div {
  padding-top: 10px;
  font-size: 14px;
  color: white;
}
#img-carousel-01 .mt-carousel-indicator span {
  background-color: gray;
}
#img-carousel-01 .mt-carousel-indicator span.active {
  background-color: white;
}
#img-carousel-01 .mt-carousel-indicator span:hover {
  background-color: none;
}

#img-carousel-02 {
  width: 100%;
  border: 1px solid gray;
  background: white;
}

#img-carousel-02 .mt-carousel-item {
  background: white;
  flex-direction: column;
}
#img-carousel-02 .mt-carousel-item img {
  width: 100%;
  object-fit: contain;
  display: block;
}
#img-carousel-02 .mt-carousel-indicator span {
  background-color: gray;
}
#img-carousel-02 .mt-carousel-indicator span.active {
  background-color: white;
}
#img-carousel-02 .mt-carousel-indicator span:hover {
  background-color: none;
}

#img-carousel-03 {
  width: 100%;
  border: 1px solid gray;
  background: white;
}

#img-carousel-03 .mt-carousel-item {
  background: white;
  flex-direction: column;
}
#img-carousel-03 .mt-carousel-item img {
  width: 100%;
  object-fit: contain;
  display: block;
}
#img-carousel-03 .mt-carousel-indicator span {
  background-color: gray;
}
#img-carousel-03 .mt-carousel-indicator span.active {
  background-color: white;
}
#img-carousel-03 .mt-carousel-indicator span:hover {
  background-color: none;
}

#img-carousel-04 {
  width: 100%;
  border: 1px solid gray;
  background: white;
}

#img-carousel-04 .mt-carousel-item {
  background: white;
  flex-direction: column;
}
#img-carousel-04 .mt-carousel-item img {
  width: 100%;
  object-fit: contain;
  display: block;
}
#img-carousel-04 .mt-carousel-item div {
  padding-top: 10px;
  font-size: 14px;
  color: black;
}
#img-carousel-04 .mt-carousel-indicator span {
  background-color: gray;
}
#img-carousel-04 .mt-carousel-indicator span.active {
  background-color: black;
}
#img-carousel-04 .mt-carousel-indicator span:hover {
  background-color: none;
}
#img-carousel-04 .mt-carousel-control-prev, #img-carousel-04 .mt-carousel-control-next {
  color: black;
}
#img-carousel-04 .mt-carousel-control-prev:hover, #img-carousel-04 .mt-carousel-control-next:hover {
  background-color: gray;
}


@media screen and (max-width: 600px) {
  .mt-carousel-indicator span {
      height: 3px;
      width: 30px;
      margin: 5px;
  }
  #img-carousel-01 {
      width: 100%;
  }
  #img-carousel-01 .mt-carousel-item div {
      font-size: 12px;
  }    
  #img-carousel-02 {
    width: 100%;
  }
  #img-carousel-03 {
    width: 100%;
  }
  #img-carousel-04 {
    width: 100%;
  }
  #img-carousel-04 .mt-carousel-item div {
      font-size: 12px;
  }    
}

.layout-recommend {
  flex-direction: column;
}

.mt-recommend {
  display: flex;
  padding-left: 10px;
  background-color: white;
}

.mt-recommend img {
  width: 33%;
  max-width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt-recommend .text{
  padding: 20px;
}

.mt-recommend .title {
  font-size: 15px;
  font-weight: bold;
}

.mt-recommend .text p {
  font-size: 15px;
  text-align: left;
  font-style: italic;
}

.mt-recommend .text p.profile {
  font-size: 15px;
  text-align: center;
  font-style: normal;
}
