body {
	overflow-x: hidden;
	overflow-y: hidden;
  padding: 0px;
  margin: 0px;
}

html {
	height: 210px;
	overflow-y:auto;
	scrollbar-width:none;
	-ms-overflow-style:none;
  scroll-behavior: smooth;

  font-size: 1vw;
}

@media screen and (max-width: 1000px) {
	html {
		font-size: 1.2vw;
	}
}

@media screen and (max-width: 600px) {
  html {
		font-size: 1.6vw;
	}
}

.footer-container {
  display: flex;
  flex-direction: column;
  padding-left: 13%;
  padding-right: 13%;
  width: 74%;
  background-color: rgb(43, 43, 43);
  padding-top: 3rem;
  position: relative;
}

.footer-info-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-navbar-container {
  width: 55%;
  margin-bottom: 2rem;
}

.footer-navbar-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-navbar-list-item {
  display: flex;
  flex-direction: column;
}

.footer-navbar-list-item-title {
  font-size: .9375rem;
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-bottom: .25rem;
  cursor: pointer;
}

.footer-title-underline {
  background-color: rgb(255, 255, 255);
  width: 1rem;
  height: .125rem;
  margin-bottom: 1rem;
}

.footer-navbar-list-item-text {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 2;
  cursor: pointer;
}

.footer-navbar-list-item-text:hover {
  color: rgb(0, 114, 184);
}

.footer-contact-title {
  font-size: .9375rem;
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-bottom: .25rem;
  cursor: pointer;
}

.footer-contact-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-contact-content-icon {
  height: 1.5rem;
  width: 1rem;
  margin-right: .5rem;
}

.footer-contact-content-icon > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer-contact-content-text {
  font-size: .875rem;
  color: rgb(255, 255, 255);
  margin-bottom: .125rem;
  line-height: 2;
}

.footer-qrcode-title {
  font-size: .9375rem;
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-bottom: .25rem;
}

.footer-qrcode {
  width: 5rem;
  height: 5rem;
}

.footer-qrcode > img {
  width: 100%;
  height: 100%;
}

.footer-divide {
  background-color: rgb(255, 255, 255);
  opacity: 0.122;
  height: .0625rem;
  position: absolute;
  width: 100%;
  bottom: 3rem;
  left: 0;
}

.footer-icp-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-icp-container > div:not(:last-child) {
  margin-right: .5rem;
}

.footer-icp-support > span {
  cursor: pointer;
}

.footer-icp-support > span:hover {
  color: rgb(0, 114, 184);
}

.footer-icp {
  cursor: pointer;
}

.footer-icp:hover {
  color: rgb(0, 114, 184);
}

@media screen and (max-width: 1200px) { 
	.footer-info-container {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}

	.footer-navbar-container {
		width: 100%;
	}

	.footer-navbar-list-item-title {
		font-size: 1.5rem;
	}

	.footer-navbar-list-item-text {
		font-size: 1.25rem;
	}

	.footer-contact-title {
		font-size: 1.5rem;
	}

	.footer-contact-content-text {
		font-size: 1.25rem;
	}

	.footer-contact-content-icon {
		height: 3rem;
		width: 2rem;
	}

	.footer-qrcode-title {
		font-size: 1.5rem;
	}

	.footer-qrcode {
		width: 8rem;
		height: 8rem;
	}

	.footer-title-underline {
		background-color: rgb(255, 255, 255);
		width: 16px;
		height: 2px;
		margin-bottom: 16px;
	}

	.footer-divide {
		bottom: 80px;
	}

	.footer-icp-container {
		height: 80px;
		font-size: 16px;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 767px) {  
	.footer-navbar-container {
		display: none;
	}

	.footer-contact-container {
		margin-bottom: 20px;
	}

	.footer-contact-title {
		font-size: 2.5rem;
	}

	.footer-contact-content-text {
		font-size: 2.25rem;
	}

	.footer-contact-content-icon {
		height: 30px;
		width: 20px;
	}

	.footer-qrcode-title {
		font-size: 2.5rem;
	}

	.footer-qrcode {
		width: 120px;
		height: 120px;
	}

	.footer-icp-container {
		font-size: 14px;
		flex-direction: column;
	}
}

.breadcrumb-container {
  padding-left: 13%;
  padding-right: 13%;
  width: 74%;
  background-color: rgb(238, 238, 238);
  display: flex;
  flex-direction: row;
  height: 3.25rem;
  align-items: center;
}

.breadcrumb-container > div:not(:last-child) {
  margin-right: .25rem;
}

.breadcrumb-icon {
  height: 1rem;
  width: 1.5rem;
}

.breadcrumb-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.breadcrumb-text {
  font-size: .875rem;
}

.breadcrumb-link-active {
  cursor: pointer;
  color: #0072b8 !important;
}

.breadcrumb-link {
  color: #333333;
  font-size: .875rem;
}

.breadcrumb-split {
  font-size: 1rem;
  padding-left: .375rem;
  padding-right: .375rem;
}

@media screen and (max-width: 1200px) {
  .breadcrumb-container {
    height: 60px;
  }

  .breadcrumb-container > div:not(:last-child) {
    margin-right: 2px;
  }
  
  .breadcrumb-icon {
    height: 16px;
    width: 24px;
  }

  .breadcrumb-text {
    font-size: 16px;
  }
  
  .breadcrumb-link {
    color: #333333;
    font-size: 16px;
  }
  
  .breadcrumb-split {
    font-size: 16px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media screen and (max-width: 767px) { 
  .breadcrumb-container {
    padding-left: 20px;
    width: 100%;
  }

  .breadcrumb-text {
    display: none;
  }
}

.layout-container {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
  padding-left: 13%;
  padding-right: 13%;
  width: 74%;
}

.layout-title {
  font-size: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: .0625rem solid rgba(0,0,0,0.2);
}

.layout-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 3.75rem;
}

.layout-content-nav {
  width: 15%;
  display: flex;
  flex-direction: column;
}

.layout-content-nav-list {
  border: .0625rem solid #ce4b00;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.layout-content-nav-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: .5rem;
  padding-top: .5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.layout-content-nav-item:not(:last-child) {
  margin-bottom: .5rem;
}

.layout-content-nav-item-active {
  background-color: #ce4b00;
}

.layout-content-nav-item-active > .layout-content-nav-item-text {
  color: white;
}

.layout-content-nav-item-active > .layout-content-nav-item-icon { 
  border-top: .125rem solid white;
  border-right: .125rem solid white;
}

.layout-content-nav-item:hover {
  transition: all .3s;
  background-color: #ce4b00;
}

.layout-content-nav-item:hover > .layout-content-nav-item-text {
  color: white;
}

.layout-content-nav-item:hover > .layout-content-nav-item-icon { 
  border-top: .125rem solid white;
  border-right: .125rem solid white;
}

.layout-content-nav-item-text {
  font-size: .875rem;
  color: #ce4b00;
}

.layout-content-nav-item-icon {
  border-top: .0625rem solid #ce4b00;
  border-right: .0625rem solid #ce4b00;
  height: .375rem;
  width: .375rem;
  transform: rotate(45deg);
}

.layout-content-info {
  width: 75%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1920px) { 
  .layout-container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  
  .layout-title {
    font-size: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
  
  .layout-content {
    margin-top: 70px;
  }

  .layout-content-nav-list {
    border: 1px solid #ce4b00;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  
  .layout-content-nav-item {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
    padding-top: 8px;
  }
  
  .layout-content-nav-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .layout-content-nav-item-active > .layout-content-nav-item-icon { 
    border-top: 2px solid white;
    border-right: 2px solid white;
  }

  .layout-content-nav-item:hover > .layout-content-nav-item-icon { 
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
  
  .layout-content-nav-item-text {
    font-size: 16px;
  }
  
  .layout-content-nav-item-icon {
    border-top: 2px solid #ce4b00;
    border-right: 2px solid #ce4b00;
    height: 6px;
    width: 6px;
  }
}

@media screen and (max-width: 1600px) { 
  .layout-content-nav {
    width: 18%;
  }

  .layout-content-info {
    width: 72%;
  }
}

@media screen and (max-width: 1270px) { 
  .layout-content-nav {
    width: 20%;
  }

  .layout-content-info {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) { 
  .layout-container {
    padding-left: 5%;
    padding-right: 5%;
    width: 90%;
  }
}

@media screen and (max-width: 888px) {
  .layout-content {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .layout-content-nav {
    width: 100%;
    margin-bottom: 30px;
  }

  .layout-content-info {
    width: 100%;
  }
}
.navbar-brand {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 1.125rem;
}

.navbar-brand-logo {
  width: 20rem;
  height: 4.5rem;
  cursor: pointer;
}

.navbar-brand-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-contact-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-contact-list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-contact-list-item:not(:last-child) {
  margin-right: 4rem;
}

.navbar-contact-list-item:last-child {
  margin-right: 3rem;
}

.navbar-contact-list-item > svg {
  margin-right: .625rem;
  height: 1.625rem;
  width: 1.625rem;
}

.navbar-contact-list-item > div {
  cursor: pointer;
  font-size: 1.5rem;
  font-family: 'Arial';
  color: #fd9972;
  font-weight: bold;
}

.navbar-contact-list-lang > svg {
  margin-right: .625rem;
  height: 1rem;
  width: 1rem;
}

.navbar-contact-list-lang > div {
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Arial';
  color: #0067a7;
  font-weight: normal;
  user-select: none;
}

.navbar-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 80%;
  z-index: 2000;
  background-color: white;
  user-select: none;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: 3rem;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.12);
}

.navbar-logo {
  width: 250px;
  height: 80px;
  display: none;
  cursor: pointer;
}  

.navbar-space {
  flex: 1;
  display: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.navbar-space {
  flex: 1;
}

.navbar-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.375rem;
}

.navbar-items {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  color: black;
}

.navbar-item {
  cursor: pointer;
  font-size: 0.9375rem;
  border-bottom: .0625rem transparent solid;
  font-weight: bolder;
  padding-left: .25rem;
  padding-right: .25rem;
  padding-bottom: .625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.navbar-item-icon {
  width: .4375rem;
  height: .25rem;
  margin-left: .9375rem;
  background-image: url(../images/navbar-down.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-item:hover > .navbar-item-icon {
  background-image: url(../images/navbar-up.png);
}

@media screen and (max-width: 1920px) {
  .navbar-item {
    font-size: 18px;
  }
  
  .navbar-item-search > input {
    padding-left: 8px;
    height: 35px;
    font-size: 20px;
  }
  
  .navbar-item-search > img {
    cursor: pointer;
    height: 18px;
    top: .9px;
  }
}

.navbar-item-active {
  color: rgb(0, 114, 184);
}

.navbar-item:hover::before{
  width: 100%;
}

.navbar-item:hover {
  transition: .3s all;
  color: rgb(0, 114, 184);
}

.navbar-item-search {
  position: relative;
  padding-left: .25rem;
  padding-right: .25rem;
  padding-bottom: .625rem;
}

.navbar-item-search > input {
  padding-left: .5rem;
  height: 2.1875rem;
  width: 100%;
  border: 0px;
  border-bottom: 1px solid rgb(129, 129, 129);
  outline: none;
  font-size: 1rem;
}

.navbar-item-search > img {
  height: 1rem;
  position: absolute;
  top: .5rem;
  right: 0;
}

.navbar-sub-items {
  visibility: hidden;
  position: absolute;
  background-color: white;
  margin-top: 3rem;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2000;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.12);
  cursor: auto;
  transition: all .5s;
}

.navbar-item:hover > .navbar-sub-items {
  visibility: visible;
  opacity: 1;
}

.navbar-sub-item-title {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: .0625rem solid rgb(214, 214, 214);
  margin-left: 3rem;
  padding-right: 2rem;
}

.navbar-sub-item-title-text {
  font-size: 2.25rem;
  font-weight: normal;
  border-bottom: .0625rem solid rgb(214, 214, 214);
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.navbar-sub-item-title-more {
  display: flex;
  flex-direction: row;
  width: 50%;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  margin-top: 1rem;
  cursor: pointer;
  transition: transform .5s ease-in-out;
  color: black;
}

.navbar-sub-item-title-more:hover {
  transform: translateX(.5rem);
}

.navbar-sub-item-title-more:hover {
  transition: all .3s;
  color: rgb(254, 108, 34);
}

.navbar-sub-item-title-more:hover > svg > path {
  transition: all .3s;
  stroke: rgb(254, 108, 34);
}

.navbar-sub-item-title-more > span {
  font-size: .875rem;
}

.navbar-sub-item-title-more > svg {
  width: 1.25rem;
  height: 1rem;
}

.navbar-sub-item-list {
  width: 75%;
  display: flex;
  flex-direction: row;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.navbar-sub-item {
  width: 23%;
  cursor: pointer;
}

.navbar-sub-item:not(:last-child) {
  margin-right: 2%;
}

.navbar-sub-item:hover > .navbar-sub-item-text {
  transition: all .3s;
  color: rgb(254, 108, 34);
}

.navbar-sub-item-img {
  width: 100%;
  height: 10rem;
}

.navbar-sub-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.navbar-sub-item-text {
  font-size: 1rem;
  font-weight: normal;
  line-height: 2;
  text-align: center;
  position: relative;
  padding-bottom: .5rem;
  padding-top: .5rem;
}

.navbar-sub-item-text::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: .3125rem;
  background-color: rgb(236, 115, 54);
  transition: width 0.3s ease-in-out;
}

.navbar-sub-item:hover > .navbar-sub-item-text::before{
  width: 100%;
}

.custom-square {
  width: 0.25rem;
  height: 0.25rem;
  margin-right: .625rem;
  transform: rotate(45deg);
  border-top: 1px solid rgb(0, 114, 184);
  border-right: 1px solid rgb(0, 114, 184);
}

.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: end;
}

.navbar-toggler > svg {
  height: 32px;
  width: 32px;
  padding: 8px 12px;
  cursor: pointer;
  color: rgb(0, 0, 0);
}

.navbar-toggler > svg:hover {
  border-radius: 10px;
  box-shadow:
    0px 0px 0.9px rgba(0, 0, 0, 0.038),
    0px 0px 2.5px rgba(0, 0, 0, 0.055),
    0px 0px 6px rgba(0, 0, 0, 0.072),
    0px 0px 20px rgba(0, 0, 0, 0.11)
  ;
}

.navbar-offcanvas {
  display: none;
  position: fixed;
  background-color: rgb(255, 255, 255);
  height: 0;
  width: 100%;
  top: 100px;
  right: 0;
  text-align: left;
  z-index: 2000;
}

.navbar-offcanvas-body {
  display: flex;
  flex-direction: column;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
}

.offcanvas-item {
  cursor: pointer;
  margin-bottom: 12px;
  font-size: 14px;
  border-bottom: 1px solid rgb(214, 214, 214);
  min-height: 30px;
}

.offcanvas-item:hover {
  color: rgb(94, 175, 238);
}

.offcanvas-item-icon-open {
  display: none;
}

.offcanvas-item-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.offcanvas-sub-items {
  display: none;
  color: black;
  margin-top: 30px;
}

.offcanvas-sub-item {
  padding-left: 30px;
  height: 30px;
  font-size: 14px;
}

.offcanvas-sub-item:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid rgb(214, 214, 214);
}

.offcanvas-sub-item:hover {
  color: rgb(94, 175, 238);
}

@media screen and (max-width: 1000px) {
  .navbar-brand {
    display: none;
  }

  .navbar-container {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0;
    height: 80px;
    position: fixed;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-top {
    height: 100px;
  }

  .navbar-items { 
    display: none;
  }

  .navbar-toggler { 
    display: flex;
  }

  .navbar-logo {
    display: block;
  }

  .navbar-space {
    display: block;
  }
}

