/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
  }
}
@media (max-width: 1366px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1300px;
    width: 90%;
  }
}
@media (max-width: 768px) {
  .container, .container-lg, .container-md, .container-sm {
    width: 100%;
  }
}
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #0074B8;
  --theme-2: #259572;
  --theme-3: #E0A207;
  --header: #242424;
  --base: #5C30FD;
  --text: #707070;
  --border: #7DBA6B;
  --border2: #373737;
  --ratting: #F8BC26;
  --bg: #F7F7F7;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

.theme-color {
  color: var(--theme);
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0;
  padding: 14px 40px;
  -webkit-transition: 500ms;
  transition: 500ms;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .theme-btn {
    font-size: 16px;
  }
}
.theme-btn i {
  margin-left: 5px;
}
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 35px solid var(--theme-2);
  border-bottom: 35px solid var(--theme-2);
  border-right: 35px solid transparent;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: -1;
}
.theme-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 35px solid var(--theme-2);
  border-bottom: 35px solid var(--theme-2);
  border-left: 35px solid transparent;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: -1;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}
.theme-btn:hover::after {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}
.theme-btn.bg-color {
  background-color: #333F4D;
}
.theme-btn.bg-color::before {
  border-top: 35px solid var(--white);
  border-bottom: 35px solid var(--white);
}
.theme-btn.bg-color::after {
  border-top: 35px solid var(--white);
  border-bottom: 35px solid var(--white);
}
.theme-btn.bg-color:hover {
  color: var(--header);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 16px 32px;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 14px 30px;
    margin: auto;
  }
}

.link-btn {
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
}
.link-btn i {
  margin-left: 8px;
}
.link-btn:hover {
  color: var(--theme);
}

.arrow-btn {
  font-size: 14px;
  position: relative;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  color: var(--theme);
  text-decoration: underline;
}
.arrow-btn i {
  font-size: 14px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.arrow-btn::before {
  position: absolute;
  content: "Read More";
  font-weight: 700;
  color: var(--theme);
  font-size: 14px;
  left: -95px;
  top: -2px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.arrow-btn:hover {
  -webkit-transform: translateX(95px);
          transform: translateX(95px);
  color: var(--theme);
}
.arrow-btn:hover i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.arrow-btn:hover::before {
  opacity: 1;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  width: 100%;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  a {
    font-size: 16px;
  }
}

ul {
  padding-top: 10px;
}
ul li {
  list-style: disc;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.5;
}
ul li::marker {
  font-size: 25px;
  line-height: 0;
  color: var(--theme);
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}
input::-webkit-input-placeholder {
  color: var(--text);
}
input::-moz-placeholder {
  color: var(--text);
}
input:-ms-input-placeholder {
  color: var(--text);
}
input::-ms-input-placeholder {
  color: var(--text);
}
input::placeholder {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui;
  margin: 0;
  padding: 0;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
  letter-spacing: 2px;
}

h1 {
  font-size: 65px;
  line-height: 125%;
  font-weight: 400;
}

h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 30px;
  line-height: 125%;
  font-weight: 400;
  color: var(--theme);
  letter-spacing: 2px;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}

h4 {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
h5 b {
  font-weight: 500;
}

h6 {
  font-size: 14px;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}
@media (max-width: 480px) {
  a {
    font-size: 16px;
  }
}

p {
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 2;
  margin-bottom: 15px;
  text-align: justify;
}
@media (max-width: 480px) {
  p {
    font-size: 16px;
    line-height: 1.7;
  }
}

.en {
  letter-spacing: 0 !important;
  font-family: "Poppins", system-ui !important;
}

span.en {
  font-weight: 400 !important;
}

.text-main {
  font-size: 25px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--header);
}
.text-main span {
  display: block;
}
@media (max-width: 768px) {
  .text-main {
    font-size: 17px;
    line-height: 2;
  }
}

hr {
  border: 1px solid #A48919;
}

.preloader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 2.2em "Poppins", system-ui, "Noto Sans TC", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 2.2em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 1.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  -webkit-animation: slideInUp 0.3s;
          animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::-webkit-input-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-moz-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-ms-input-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-webkit-input-placeholder {
    font-size: 18px;
  }
  input.main-search-input::-moz-placeholder {
    font-size: 18px;
  }
  input.main-search-input:-ms-input-placeholder {
    font-size: 18px;
  }
  input.main-search-input::-ms-input-placeholder {
    font-size: 18px;
  }
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  color: #fff;
  border-radius: 50px;
  z-index: 99;
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  background: var(--theme);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 15px;
}
@media (max-width: 480px) {
  .scroll-up {
    height: 40px;
    width: 40px;
    right: 5px;
    font-size: 12px;
  }
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme-2);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme-2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 20px !important;
    margin-top: 0;
  }
}
.section-title .border {
  display: inline-block;
  height: 5px;
  width: 40px;
  background-color: var(--theme);
  border: none;
}
.section-title .border.bl {
  margin-right: 20px;
}
.section-title .border.br {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .section-title .border {
    width: 30px;
  }
}
.section-title h2 {
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, from(#0074B8), to(#104849));
  background: linear-gradient(to bottom, #0074B8, #104849);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title h2 span {
  border: 0 solid none;
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 26px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.section-title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991px) {
  .section-title-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.container-md {
  padding: 0;
  max-width: 1050px;
}

@media (max-width: 990px) {
  .container, .container-md {
    padding: 0 10%;
  }
}
.linkin {
  height: 90px;
}
@media (max-width: 768px) {
  .linkin {
    height: 80px;
  }
}

section {
  padding: 0 0 90px 0;
}
@media (max-width: 768px) {
  section {
    padding: 0 0 0 0;
  }
}
@media (max-width: 480px) {
  section {
    padding: 0 0 30px 0;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@-webkit-keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rounded {
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@keyframes rounded {
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@-webkit-keyframes rounded-2 {
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
@keyframes rounded-2 {
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.animation__rotate {
  -webkit-animation: rotate 40s linear infinite;
  animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  50% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  50% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@-webkit-keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translatey(-8px);
            transform: translatey(-8px);
  }
  50% {
    -webkit-transform: translatey(12px);
            transform: translatey(12px);
  }
  100% {
    -webkit-transform: translatey(-8px);
            transform: translatey(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translatey(-8px);
            transform: translatey(-8px);
  }
  50% {
    -webkit-transform: translatey(12px);
            transform: translatey(12px);
  }
  100% {
    -webkit-transform: translatey(-8px);
            transform: translatey(-8px);
  }
}
@-webkit-keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-webkit-keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes icon-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
            transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes icon-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
            transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  -webkit-margin-end: 40px;
          margin-inline-end: 40px;
  margin-bottom: 0;
}
.header-main .main-menu ul li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .header-main .main-menu ul li a {
    font-size: 16px;
  }
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 810px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 20px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 14px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-top {
  background-color: var(--theme-2);
  padding: 12px 0;
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .header-top .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .header-top .container-fluid {
    padding: 0 20px;
  }
}
.header-top.style-bg {
  background-color: #1F242C;
  padding: 20px 0;
}

a.header-logo img {
  width: 300px;
}
@media (max-width: 480px) {
  a.header-logo img {
    width: 200px;
  }
}

.header-top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-top-wrapper .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.header-top-wrapper .contact-list li {
  color: var(--header);
  font-weight: 600;
}
.header-top-wrapper .contact-list li a {
  color: var(--header);
}
.header-top-wrapper .contact-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.header-top-wrapper .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header-top-wrapper .top-right .social-icon {
  gap: 15px;
}
.header-top-wrapper .top-right .social-icon span {
  color: var(--header);
  font-weight: 700;
}
.header-top-wrapper .top-right .social-icon a {
  color: var(--header);
}
.header-top-wrapper.style-2 .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.header-top-wrapper.style-2 .contact-list li {
  color: var(--white);
}
.header-top-wrapper.style-2 .contact-list li a {
  color: var(--white);
}
.header-top-wrapper.style-2 .top-right .social-icon span {
  color: var(--white);
}
.header-top-wrapper.style-2 .top-right .social-icon a {
  color: var(--white);
}

.header-1 {
  background-color: #fff !important;
  z-index: 9999;
}
@media (max-width: 1199px) {
  .header-1 {
    background-color: #fff;
  }
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 5px 20px;
  }
}
.header-1 .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .header-1 .header-right {
    gap: 20px;
  }
}
.header-1 .header-right .header-button {
  margin-left: 35px;
}
@media (max-width: 1199px) {
  .header-1 .header-right .header-button {
    display: none;
  }
}
.header-1 .header-right .sidebar__toggle {
  background-color: var(--theme);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--white);
}

.header-section-1 {
  position: relative;
}
.header-section-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  width: 16%;
  z-index: 9;
}
@media (max-width: 1899px) {
  .header-section-1::before {
    display: none;
  }
}

.header-top-section {
  background-color: var(--header);
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  z-index: -1;
  left: 81%;
}
@media (max-width: 1899px) {
  .header-top-section::before {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}

.header-top-wrapper-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 250px;
}
@media (max-width: 1899px) {
  .header-top-wrapper-2 {
    margin-left: 0;
  }
}
.header-top-wrapper-2 .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.header-top-wrapper-2 .contact-list li {
  font-size: 15px;
  color: var(--white);
}
.header-top-wrapper-2 .contact-list li a {
  color: var(--white);
}
.header-top-wrapper-2 .contact-list li i {
  color: var(--white);
  margin-right: 10px;
}
.header-top-wrapper-2 .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header-top-wrapper-2 .top-right .social-icon {
  gap: 15px;
}
.header-top-wrapper-2 .top-right .social-icon span {
  color: var(--white);
  font-weight: 500;
}
.header-top-wrapper-2 .top-right .social-icon a {
  color: var(--white);
}

.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-box-shadow: var(---box-shadow);
          box-shadow: var(---box-shadow);
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-2 {
  margin-left: 0;
}
.sticky.header-2 .main-logo {
  display: none;
}
.sticky.header-2 .header-main .logo {
  display: block !important;
}
.sticky.header-3 {
  margin-top: 0;
}
.sticky.header-3::before {
  background-color: var(--white);
  height: 100%;
}
.sticky.header-3 .header-main {
  background-color: var(--white);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-2);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info img {
  width: 90%;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__logo {
  width: 75%;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
  width: 100%;
  max-width: 300px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
  margin-left: auto;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  background-color: var(--theme);
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    padding: 14px 30px;
    width: auto;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
    text-align: center;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.page-banner-wrap {
  background-color: var(--theme);
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.page-banner-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  opacity: 0.8;
  z-index: -1;
}
.page-banner-wrap h1 {
  color: var(--white);
}
@media (max-width: 991px) {
  .page-banner-wrap h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .page-banner-wrap h1 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .page-banner-wrap h1 {
    font-size: 28px;
  }
}

.breadcrumb-wrapper {
  background-color: var(--bg);
  padding: 20px 0px;
  color: var(--theme);
}
.breadcrumb-wrapper a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  color: var(--theme);
  font-weight: 500;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a:hover {
  color: var(--theme-2);
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  color: var(--header);
}

.error-content h2 {
  font-weight: 700;
  font-size: 320px;
  color: var(--theme);
  line-height: 1;
}
.error-content h2 span {
  color: var(--theme-2);
}
@media (max-width: 1199px) {
  .error-content h2 {
    font-size: 300px;
  }
}
@media (max-width: 991px) {
  .error-content h2 {
    font-size: 200px;
  }
}
@media (max-width: 575px) {
  .error-content h2 {
    font-size: 110px;
  }
}
.error-content h3 {
  font-weight: 700;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  border-top: 0;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.hero-1 .array-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.hero-1 .array-button .array-prev, .hero-1 .array-button .array-next {
  border-radius: 50%;
}
.hero-1 .array-button .array-next {
  border-radius: 50%;
  background-color: var(--theme-2);
  color: var(--white);
  border: none;
}
.hero-1 .swiper-slide-active .hero-image {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}
.hero-1 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-1 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(33.64%, rgba(91, 155, 55, 0.88)), color-stop(41.74%, rgba(91, 155, 55, 0.88)), color-stop(59.42%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(91, 155, 55, 0.88) 33.64%, rgba(91, 155, 55, 0.88) 41.74%, rgba(255, 255, 255, 0) 59.42%);
  z-index: -1;
}
.hero-1 .hero-content {
  padding: 200px 0;
}
@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content {
    padding: 110px 0;
  }
}
.hero-1 .hero-content h6 {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.hero-1 .hero-content h1 {
  letter-spacing: -2.6px;
  color: var(--white);
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 30px;
  }
}
.hero-1 .hero-content .hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    gap: 15px;
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero-1.hero-2 {
  padding: 200px 0;
}
@media (max-width: 767px) {
  .hero-1.hero-2 {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .hero-1.hero-2 {
    padding: 110px 0;
  }
}
.hero-1.hero-2::before {
  display: none;
}
.hero-1.hero-2 .hero-content {
  padding: 0;
}
.hero-1.hero-2 .hero-content h6 {
  color: var(--theme);
  letter-spacing: 2px;
  font-size: 16px;
}
.hero-1.hero-2 .hero-content h1 span {
  color: var(--theme-2);
}
.hero-1.hero-2 .hero-content .theme-btn {
  margin-top: 40px;
}
.hero-1.hero-2 .hero-content .theme-btn::before {
  border-top: 35px solid var(--white);
  border-bottom: 35px solid var(--white);
}
.hero-1.hero-2 .hero-content .theme-btn::after {
  border-top: 35px solid var(--white);
  border-bottom: 35px solid var(--white);
}
.hero-1.hero-2 .hero-content .theme-btn:hover {
  color: var(--header);
}

.about-details-section {
  position: relative;
  background-size: cover;
  background-position: left top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  height: 50vh;
  max-height: 1000px;
  color: #fff;
}
@media (max-width: 1024px) {
  .about-details-section {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .about-details-section {
    height: 100vh;
  }
}
@media (max-width: 480px) {
  .about-details-section {
    height: 100vh;
    max-height: 830px;
  }
}
.about-details-section .sloganbox {
  width: 50%;
  margin-right: auto;
}
@media (max-width: 768px) {
  .about-details-section .sloganbox {
    width: 70%;
    position: absolute;
    bottom: 10%;
  }
}
@media (max-width: 480px) {
  .about-details-section .sloganbox {
    width: 100%;
  }
}
.about-details-section .leaves {
  width: 50%;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .about-details-section .leaves {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .about-details-section .leaves {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .about-details-section .leaves {
    width: 100%;
  }
}
.about-details-section .slogan_logo {
  width: 80%;
  position: relative;
  margin-top: 50px;
  display: block;
}
@media (max-width: 1024px) {
  .about-details-section .slogan_logo {
    margin-top: 20px;
    width: 80%;
  }
}
@media (max-width: 768px) {
  .about-details-section .slogan_logo {
    display: none;
  }
}
.about-details-section .slogan {
  width: 90%;
  position: relative;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .about-details-section .slogan {
    width: 90%;
  }
}
@media (max-width: 990px) {
  .about-details-section .slogan {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .about-details-section .slogan {
    display: none;
  }
}
.about-details-section .slogan_m {
  width: 80%;
  display: none;
  margin-left: 5%;
}
@media (max-width: 768px) {
  .about-details-section .slogan_m {
    display: block;
  }
}
@media (max-width: 991px) {
  .about-details-section .details-thumb {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .about-details-section .details-thumb img {
    width: 60%;
    margin: auto;
  }
}
.about-details-section .about-detail-box {
  width: 55%;
  line-height: 1.5;
  margin: 100px 0 0 0;
  border-left: 1px solid #fff;
  padding: 0px 0 80px 50px;
  position: relative;
}
.about-details-section .about-detail-box:before {
  top: -15px;
  left: -24px;
  width: 25px;
  height: 25px;
  content: "";
  position: absolute;
  border: solid 2px #fff;
  border-radius: 5px 15px 5px 15px;
}
@media (max-width: 1024px) {
  .about-details-section .about-detail-box {
    width: 85%;
    margin: 50px 0 0 0;
  }
}
@media (max-width: 990px) {
  .about-details-section .about-detail-box {
    margin: 50px 0 0 0;
    padding: 0px 0 50px 30px;
  }
}
.about-details-section h5 {
  color: #fff;
  letter-spacing: 0px;
  font-weight: 200;
  font-size: 23px;
  text-align: justify;
}
@media (max-width: 1024px) {
  .about-details-section h5 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about-details-section h5 {
    font-size: 16px;
  }
}
.about-details-section h5.en {
  text-align: left;
}
.about-details-section .about-detail-box2 {
  width: 94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 990px) {
  .about-details-section .about-detail-box2 {
    margin-bottom: 20px;
  }
}
.about-details-section .about-detail-box2 h2 {
  text-align: left;
  width: 30%;
  color: #fff;
  margin: -30px 0px 0 0px;
  position: relative;
  font-size: 2.5vw;
  margin-left: 1%;
  text-align: center;
}
@media (max-width: 1024px) {
  .about-details-section .about-detail-box2 h2 {
    width: 50%;
    font-size: 28px;
  }
}
@media (max-width: 990px) {
  .about-details-section .about-detail-box2 h2 {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .about-details-section .about-detail-box2 h2 {
    font-size: 26px;
  }
}
@media (max-width: 374px) {
  .about-details-section .about-detail-box2 h2 {
    width: 100%;
    font-size: 23px;
  }
}
.about-details-section .about-detail-box2 h2.en {
  width: 85%;
}
.about-details-section .about-detail-box2 .leaves_left {
  width: 10%;
  display: inline-block;
  border-top: solid 1px #fff;
  position: relative;
}
.about-details-section .about-detail-box2 .leaves_left:before {
  top: -24px;
  right: -1px;
  width: 25px;
  height: 25px;
  content: "";
  position: absolute;
  border: solid 2px #fff;
  border-radius: 5px 15px 5px 15px;
}
@media (max-width: 374px) {
  .about-details-section .about-detail-box2 .leaves_left:before {
    right: auto;
  }
}
@media (max-width: 1024px) {
  .about-details-section .about-detail-box2 .leaves_left {
    width: 25%;
  }
}
@media (max-width: 990px) {
  .about-details-section .about-detail-box2 .leaves_left {
    width: 15%;
  }
}
@media (max-width: 374px) {
  .about-details-section .about-detail-box2 .leaves_left {
    border: none;
  }
}
.about-details-section .about-detail-box2 .leaves_left.en {
  width: 5%;
}
.about-details-section .about-detail-box2 .leaves_right {
  width: 52%;
  display: inline-block;
  border-top: solid 1px #fff;
  position: relative;
  margin-left: 2%;
}
.about-details-section .about-detail-box2 .leaves_right:before, .about-details-section .about-detail-box2 .leaves_right:after {
  content: "";
  position: absolute;
}
.about-details-section .about-detail-box2 .leaves_right:before {
  top: -24px;
  left: -24px;
  width: 25px;
  height: 25px;
  border: solid 2px #fff;
  border-radius: 5px 15px 5px 15px;
}
@media (max-width: 575px) {
  .about-details-section .about-detail-box2 .leaves_right:before {
    left: auto;
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 1024px) {
  .about-details-section .about-detail-box2 .leaves_right {
    width: 17%;
  }
}
@media (max-width: 990px) {
  .about-details-section .about-detail-box2 .leaves_right {
    width: 15%;
  }
}
@media (max-width: 575px) {
  .about-details-section .about-detail-box2 .leaves_right {
    border: none;
  }
}
.about-details-section .about-detail-box2 .leaves_right.en {
  width: 5%;
  left: 0;
}
.about-details-section .about-detail-box2 .icon1 {
  top: -30px;
  right: 0;
  width: 5%;
  position: absolute;
}
@media (max-width: 990px) {
  .about-details-section .about-detail-box2 .icon1 {
    display: none;
  }
}
.about-details-section .about-detail-box3 {
  position: relative;
}
.about-details-section .about-detail-box3 .icon2 {
  top: -50px;
  left: 0%;
  width: 10%;
  position: absolute;
}
@media (max-width: 1024px) {
  .about-details-section .about-detail-box3 .icon2 {
    display: none;
  }
}
.about-details-section .about-detail-box3 .about-detail-content {
  width: 75%;
  margin: auto;
  position: relative;
}
@media (max-width: 1024px) {
  .about-details-section .about-detail-box3 .about-detail-content {
    width: 77%;
    margin-left: 8%;
  }
}

.viewpoint-section {
  background-image: url(../img/bg_kv.png);
  background-size: cover;
  background-position: top left;
  text-align: center;
  width: 100%;
  padding-top: 110px;
}
@media (max-width: 480px) {
  .viewpoint-section {
    padding-top: 70px;
    background-image: url(../img/bg_kv_mb.png);
  }
}
.viewpoint-section p {
  text-align: center;
}
@media (max-width: 480px) {
  .viewpoint-section p br {
    display: none;
  }
}
.viewpoint-section img.kv_pc {
  width: 80%;
  margin: auto;
}

.grid-section .grid-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.grid-section .grid-bg:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .grid-section .grid-bg {
    min-height: 35vh;
    text-align: center;
  }
}
.grid-section .grid-bg img {
  width: 80%;
  position: relative;
  z-index: 1;
}
.grid-section .grid-content {
  padding: 120px 80px;
}
.grid-section .grid-content.green-bg {
  background: #F7FFF0;
}
@media (max-width: 768px) {
  .grid-section .grid-content {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .grid-section .grid-content {
    padding: 60px 30px;
  }
}
.grid-section .grid-content img {
  width: 150px;
}
@media (max-width: 768px) {
  .grid-section .grid-content img {
    width: 100px;
  }
}
.grid-section .grid-content h2 {
  margin-top: 40px;
  color: var(--header);
  line-height: 1.5;
  font-size: 28px;
}
.grid-section .grid-content h2.en {
  font-size: 23px;
}
@media (max-width: 1366px) {
  .grid-section .grid-content h2 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .grid-section .grid-content h2 {
    letter-spacing: 0px;
    font-size: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .grid-section .grid-content h2 {
    font-size: 15px;
    letter-spacing: 0px;
  }
}
.grid-section .grid-content p {
  font-size: 16px;
  color: var(--header);
  line-height: 2.2;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .grid-section .grid-content p {
    letter-spacing: 0px;
    font-size: 12px;
    margin-top: 20px;
  }
}
.grid-section .grid-content span {
  display: block;
}

.agenda-section {
  background: url(../img/bg_shape1.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 50%;
}
@media (max-width: 990px) {
  .agenda-section {
    background: none;
  }
}
.agenda-section p a {
  color: var(--theme);
}
.agenda-section hr {
  margin-bottom: 0;
}
.agenda-section h2 {
  color: var(--theme);
  font-weight: bold;
}
.agenda-section h2 br {
  display: none;
}
@media (max-width: 768px) {
  .agenda-section h2 {
    font-size: 20px;
    display: block;
    text-align: center;
  }
  .agenda-section h2 br {
    display: block;
  }
}
.agenda-section h2 span {
  font-size: 24px;
  color: var(--text);
  font-weight: normal;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .agenda-section h2 span {
    font-size: 18px;
    display: block;
    text-align: center;
  }
}
.agenda-section hr {
  height: 2px;
  background-color: #A48918;
  opacity: 1;
}

.agenda-wrapper .agenda-content .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: 21px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .agenda-wrapper .agenda-content .nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 575px) {
  .agenda-wrapper .agenda-content .nav {
    gap: 0px;
  }
}
.agenda-wrapper .agenda-content .nav .nav-link {
  text-align: center;
  padding: 14px 30px;
  border-radius: 20px 0px 20px 20px;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--header);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1;
  font-weight: bolder;
}
.agenda-wrapper .agenda-content .nav .nav-link span {
  font-weight: 900 !important;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  .agenda-wrapper .agenda-content .nav .nav-link {
    padding: 14px 45px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .agenda-wrapper .agenda-content .nav .nav-link {
    padding: 12px 15px;
    font-size: 20px;
    letter-spacing: 0;
  }
  .agenda-wrapper .agenda-content .nav .nav-link span {
    font-size: 18px;
  }
}
.agenda-wrapper .agenda-content .nav .nav-link.active {
  position: relative;
  background-color: var(--theme);
  color: var(--white);
}
.agenda-wrapper .agenda-content .technical-site-item p {
  font-size: 15px;
}
.agenda-wrapper .agenda-content .technical-site-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.agend_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 0 15px 0;
  border-bottom: 1px solid #A48918;
}
.agend_b:last-child {
  border: none;
}
@media (max-width: 480px) {
  .agend_b {
    padding: 6px 0;
  }
}
@media (max-width: 575px) {
  .agend_b.g-4 {
    --bs-gutter-y: .5rem;
  }
}
.agend_b h4 {
  font-size: 20px;
  color: var(--text);
  text-align: justify;
  width: auto;
  font-family: Consolas, "Courier New", monospace;
  font-weight: bold;
  letter-spacing: 1px;
}
@media (max-width: 575px) {
  .agend_b h4 {
    line-height: 1.2;
    letter-spacing: 0px;
  }
}
.agend_b h5 {
  font-size: 24px;
  color: var(--theme-2);
  font-weight: 500;
  margin-bottom: 5px;
}
.agend_b h5.en {
  font-size: 14px;
}
@media (max-width: 768px) {
  .agend_b h5 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .agend_b h5 {
    line-height: 1.2;
    letter-spacing: 0px;
  }
}
.agend_b h6 {
  font-size: 14px;
  color: var(--text);
}
@media (max-width: 575px) {
  .agend_b h6 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .agend_b {
    padding: 20px 0;
  }
  .agend_b .col-md-10 {
    margin-top: 5px;
  }
  .agend_b b {
    margin-bottom: 10px;
  }
}
.agend_b .en {
  font-size: 100%;
  letter-spacing: 0;
}
.agend_b p {
  margin-bottom: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.agend_b p b {
  font-weight: 500;
  color: var(--theme);
  margin-right: 10px;
  white-space: nowrap;
}
.agend_b p span {
  display: block;
  color: var(--text);
}
@media (max-width: 575px) {
  .agend_b p span {
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .agend_b p {
    font-size: 16px;
  }
}
.agend_b .speaker {
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid var(--theme);
}
.agend_b .speaker:last-child {
  margin-bottom: 0;
}
.agend_b .speakerh {
  font-size: 14px;
  margin-bottom: 10px;
}
.agend_b .speakerh b {
  color: var(--theme);
  font-weight: 500;
  letter-spacing: 0px;
}
@media (max-width: 575px) {
  .agend_b .speakerh b {
    margin-bottom: 0px;
  }
}
.agend_b .speakerh span {
  display: inline-block;
  margin-left: 10px;
}
.agend_b .theme {
  background: var(--theme);
  border-radius: 3px 20px 3px 20px;
  color: #fff;
  padding: 7px 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.agend_b .theme span {
  margin-left: 10px;
}

.agend_a .title {
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid var(--theme-2);
}
.agend_a .title h4 {
  color: #78a23f;
}

@media (max-width: 575px) {
  .mBreak {
    display: block;
  }
}

.submit-button {
  width: 110px;
  position: fixed;
  right: 0px;
  bottom: 100px;
  z-index: 998;
}
@media (max-width: 768px) {
  .submit-button {
    width: 100px;
  }
}
.submit-button img {
  width: 100%;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px var(--theme);
          box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115px;
  height: 115px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
          box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
  -webkit-animation: rippleOne 3s infinite;
          animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--theme-2);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme-2);
  content: "";
}

.array-next, .array-prev {
  position: absolute;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background-color: var(--theme-2);
  border: 1.5px solid var(--theme-2);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  z-index: 99;
  top: 240px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1366px) {
  .array-next, .array-prev {
    top: 180px;
  }
}
@media (max-width: 575px) {
  .array-next, .array-prev {
    width: 35px;
    height: 35px;
    top: 170px;
  }
}
.array-next:hover, .array-prev:hover {
  background-color: var(--header);
  color: var(--white);
  border: 1.5px solid var(--header);
}

.array-prev {
  left: 10px;
}

.array-next {
  right: 10px;
}

.array-button {
  position: absolute;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.mt-10 {
  margin-top: 10px;
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.nice-select {
  background-color: transparent;
  float: initial;
  overflow: initial;
  height: initial;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 150%;
  width: 100%;
  line-height: 1;
  border: none;
  padding: 20px 20px;
  color: var(--text) !important;
  outline: none;
  width: 100%;
  border-radius: 5px;
  font-size: 18px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .nice-select {
    font-size: 16px;
  }
}
.nice-select:focus, .nice-select:hover {
  border: 1.5px solid #e3e3e3;
}
.nice-select::after {
  height: 10px;
  width: 10px;
  right: 15px;
  top: initial;
  border-color: var(--border);
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}
.nice-select .list {
  width: initial;
  background-color: var(--white);
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: initial;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  width: 100%;
  top: 96%;
  padding: 0;
  max-height: 250px;
  overflow-x: auto;
  overflow-y: scroll;
  color: var(--text) !important;
  border: #E2E2E2;
}
@media (max-width: 1199px) {
  .nice-select .list {
    max-height: 250px;
    overflow-y: scroll;
  }
}
.nice-select .list::-webkit-scrollbar {
  width: 2px;
  opacity: 1;
  display: block;
}
.nice-select .list::-webkit-scrollbar-button, .nice-select .list::-webkit-scrollbar-thumb {
  background: var(--header);
}
.nice-select .option {
  background-color: transparent;
  font-size: 18px;
  line-height: normal;
  padding: 15px;
  margin-bottom: 0;
  min-height: initial;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid #E2E2E2;
  z-index: 99;
  position: relative;
}
.nice-select .option:hover, .nice-select .option:focus, .nice-select .option.selected.focus {
  background-color: var(--theme);
  color: var(--white);
  font-weight: normal;
}
@media (max-width: 768px) {
  .nice-select .option {
    font-size: 16px;
  }
}
.nice-select .current {
  color: var(--text);
}
@media (max-width: 768px) {
  .nice-select .current {
    font-size: 16px;
  }
}

.footer-bg {
  background-color: #1F242C;
}

.bg-white {
  background-color: var(--white) !important;
}

.box-shadow {
  -webkit-box-shadow: var(---box-shadow);
          box-shadow: var(---box-shadow);
}

.mt-50 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .mt-50 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .mt-50 {
    margin-top: 20px;
  }
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.theme-bg {
  background-color: #202426;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.checkd3 {
  color: var(--theme);
  text-decoration: underline;
}

.border-none {
  border: none !important;
}

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

@media (min-width: 1366px) {
  .col-xxl-2_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
}
@media (max-width: 575px) {
  .col-sm-6 {
    width: 50% !important;
  }
}
.faq-content {
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .faq-content {
    margin-right: 0;
  }
}
.faq-content b {
  letter-spacing: 1.8px;
}
.faq-content b br {
  display: none;
}
@media (max-width: 768px) {
  .faq-content b br {
    display: block;
  }
}
@media (max-width: 1440px) {
  .faq-content b {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .faq-content b {
    text-align: center;
    margin: auto;
    display: inline-block;
    margin-left: 5%;
  }
}
.faq-content .accordion-item {
  border: 0;
  margin-top: 20px;
  border-radius: 10px;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 10px #E2E2E2;
          box-shadow: 0 0 10px #E2E2E2;
}
.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 400;
  color: var(--text);
  letter-spacing: 2px;
  border: 0;
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--white);
  padding: 20px 25px;
  font-size: 24px;
  letter-spacing: 2px;
  font-family: "Noto Sans TC", sans-serif;
  border-bottom: 1px solid #E2E2E2;
  color: var(--header);
  font-weight: 600;
}
@media (max-width: 1440px) {
  .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f077";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--theme);
  color: var(--white);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  letter-spacing: 0;
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f078";
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  border-radius: 10px;
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed:after {
  content: "\f078";
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 30px;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 25px;
  color: var(--text);
}
.faq-content.style-2 {
  margin-bottom: 0;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .faq-content.style-2 {
    margin-right: 0;
  }
}
.faq-content.style-2 .accordion-item .accordion-header .accordion-button::after {
  background-color: var(--theme-2);
  color: var(--white);
}

.map {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px #bebebe;
          box-shadow: 0 0 5px #bebebe;
  height: 320px;
}
@media (max-width: 1440px) {
  .map {
    height: 330px;
  }
}
@media (max-width: 768px) {
  .map {
    margin-top: 20px;
  }
}

.faq-section {
  position: relative;
  z-index: 9;
  background-image: url(../img/bg_shap2.png);
  background-size: 11%;
  background-position: left top;
  background-repeat: no-repeat;
}
.faq-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  top: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .faq-section::before {
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
.faq-section .faq-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
  max-width: 1150px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .faq-section .faq-image {
    position: static;
    margin-bottom: 50px;
  }
}
.faq-section .faq-image img {
  width: 100%;
  height: 100%;
}

.master-section {
  position: 0;
}
.master-section .master-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .master-section .master-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.master-section .master-box .master-info {
  width: 60%;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .master-section .master-box .master-info {
    width: 100%;
  }
}
.master-section .master-box .master-info h3 {
  color: var(--theme);
  font-size: 35px;
}
@media (max-width: 768px) {
  .master-section .master-box .master-info h3 {
    text-align: center;
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .master-section .master-box .master-info h3 {
    font-size: 19px;
    letter-spacing: 0;
  }
}
@media (max-width: 390px) {
  .master-section .master-box .master-info h3 {
    font-size: 19px;
    letter-spacing: 0;
    margin-bottom: 5px !important;
  }
}
.master-section .master-box .master-info .text-main {
  color: var(--text);
}
@media (max-width: 768x) {
  .master-section .master-box .master-info .text-main {
    font-size: 18px;
    margin-bottom: 0;
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  .master-section .master-box .master-info .text-main {
    font-size: 17px;
    letter-spacing: 1px;
    text-align: center !important;
  }
}
.master-section .master-box .master-info .text-theme {
  color: var(--theme);
}
@media (max-width: 480x) {
  .master-section .master-box .master-info .text-theme {
    font-size: 18px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
  }
}
.master-section .master-box .master-pic {
  width: 40%;
  position: relative;
}
@media (max-width: 768px) {
  .master-section .master-box .master-pic {
    width: 100%;
    margin-bottom: 30px;
  }
}
.master-section .master-box .master-img {
  height: auto;
  position: relative;
}
.master-section .master-box .master-img img {
  width: 100%;
  z-index: 2;
  position: relative;
}
.master-section .master-box .master-img .circle {
  width: 30%;
  position: absolute;
  top: 15%;
  right: 10%;
}
.master-section .master-box .master-img span {
  width: 65px;
  height: 65px;
  display: block;
  background-color: var(--theme-3);
  border-radius: 50px;
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 3;
}

.team-section {
  background-color: var(--bg);
}

.team-detail-close {
  color: var(--white);
  font-size: 30px;
  position: absolute;
  right: 25px;
  top: 20px;
  width: 40px;
}
.team-detail-close img {
  width: 100%;
}
@media (max-width: 768px) {
  .team-detail-close {
    width: 30px;
  }
}

.portfolio-section {
  background-image: url(../img/bg_team.png);
  background-size: cover;
  background-position: top left;
}
@media (max-width: 480px) {
  .portfolio-section {
    background-image: url(../img/bg_team_mb.png);
  }
}

.portfolio-card-items {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.portfolio-card-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
.portfolio-card-items .portfolio-image {
  position: relative;
}
.portfolio-card-items .portfolio-image img {
  width: 100%;
  height: 100%;
}
.portfolio-card-items .portfolio-image .team-more {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.55);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.portfolio-card-items .portfolio-image .team-more i {
  font-size: 35px;
}
.portfolio-card-items .portfolio-image .circle-img {
  position: relative;
  height: auto;
  border-radius: 500px;
  overflow: hidden;
  border: 1px solid #fff;
  padding: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.portfolio-card-items .portfolio-image .circle-img img {
  border-radius: 500px;
  overflow: hidden;
  border: 10px solid #fff;
}
.portfolio-card-items .portfolio-image .content {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 20px;
  height: 100%;
  overflow: visible;
}
.portfolio-card-items .portfolio-image .content p {
  font-size: 18px;
}
.portfolio-card-items .portfolio-image .content h3 {
  color: var(--theme);
  margin-bottom: 10px;
}
.portfolio-card-items .portfolio-image .content h3 br {
  display: none;
}
@media (max-width: 575px) {
  .portfolio-card-items .portfolio-image .content h3 br {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .portfolio-card-items .portfolio-image .content h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.portfolio-card-items .portfolio-image .content h4 {
  font-size: 20px;
  color: #242424;
  font-weight: normal;
  font-size: 20px;
}
@media (max-width: 768px) {
  .portfolio-card-items .portfolio-image .content h4 {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.portfolio-card-items:hover .team-more {
  opacity: 1;
}
.portfolio-card-items:hover .circle-img {
  padding: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E0A207), to(#00B1B4));
  background: linear-gradient(to bottom, #E0A207, #00B1B4);
}
.portfolio-card-items:hover .circle-img img {
  border: 8px solid transparent;
}

.team-detail {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../img/bg_popup.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .team-detail {
    padding: 50px 0% 0 0%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-image: url(../img/bg_popup_mb.jpg);
  }
}
.team-detail .icon2 {
  left: 2%;
  bottom: 5%;
  width: 10%;
  position: absolute;
}
.team-detail .team-detail-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-detail .team-detail-image img {
  width: 100%;
  max-width: 400px;
}
.team-detail .team-detail-content span {
  line-height: 1.5;
  letter-spacing: 2px;
  font-size: 16px;
}
@media (max-width: 480px) {
  .team-detail .team-detail-content span {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.team-detail .team-detail-content h3 {
  color: var(--theme);
  font-size: 35px;
  margin-bottom: 15px;
  color: var(--theme);
}
@media (max-width: 768px) {
  .team-detail .team-detail-content h3 {
    font-size: 25px;
  }
}
.team-detail .team-detail-content h3 span {
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .team-detail .team-detail-content h3 span {
    font-size: 18px;
  }
}
.team-detail .team-detail-content p {
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .team-detail .team-detail-content p {
    font-size: 16px;
  }
}
.team-detail .team-detail-content p.text-theme {
  font-size: 20px;
  color: var(--theme);
  font-weight: 600;
  margin-bottom: 0;
}
.team-detail .team-detail-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-detail .team-detail-border span {
  width: 90%;
  display: inline-block;
  height: 1px;
  background: #fff;
}
.team-detail .team-detail-border .icon1 {
  width: 8%;
}
.team-detail ul {
  margin-top: 0;
}
.team-detail ul li {
  font-size: 18px;
}
@media (max-width: 768px) {
  .team-detail ul li {
    font-size: 16px;
  }
}

.friend-section {
  background-image: url(../img/form-bg.webp);
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 30px;
}
.friend-section .friend-box {
  width: 100%;
  margin: auto;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  padding: 50px;
}
.friend-section .friend-box .friexd-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 480px) {
  .friend-section .friend-box .friexd-logo {
    display: block;
  }
}
.friend-section .friend-box .friexd-logo .theme {
  background: var(--theme);
  border-radius: 3px 20px 3px 20px;
  color: #fff;
  height: inherit;
  padding: 7px 15px;
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  white-space: nowrap;
}
.friend-section .friend-box .friexd-logo .logobox {
  text-align: left;
  display: inline-block;
}
@media (max-width: 480px) {
  .friend-section .friend-box .friexd-logo .logobox {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.friend-section .friend-box .friexd-logo a {
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .friend-section .friend-box .friexd-logo a {
    margin-right: 0px;
    margin-top: 10px;
  }
  .friend-section .friend-box .friexd-logo a img {
    width: 90%;
  }
}

.news-section {
  background-image: url(../img/bg_form.png);
  background-size: cover;
}

.news-slider {
  position: relative;
  padding-bottom: 50px;
  padding: 0 0 50px 0;
}
@media (max-width: 788px) {
  .news-slider {
    padding-bottom: 30px;
  }
}
.news-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .news-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  border-radius: 5px;
  margin: 0 5px;
  height: 5px;
  z-index: 99;
}
@media (max-width: 788px) {
  .news-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .news-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
  }
}
.news-slider .swiper-horizontal > .swiper-pagination-bullets, .news-slider .swiper-pagination-bullets.swiper-pagination-horizontal, .news-slider .swiper-pagination-custom, .news-slider .swiper-pagination-fraction {
  bottom: 0;
}
.news-slider .swiper-pagination {
  z-index: 99;
  position: absolute;
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-imageBg {
  -webkit-transition: 1s;
  transition: 1s;
  height: 260px;
  width: 100%;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .news-card-items .news-imageBg {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .news-card-items .news-imageBg {
    height: 190px;
  }
}
.news-card-items .news-content {
  position: relative;
  z-index: 99;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  padding: 30px 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news-card-items .news-content h3 {
  min-height: 50px;
  font-size: 18px;
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-card-items .news-content .theme-btn::before:hover, .news-card-items .news-content .theme-btn::before:focus, .news-card-items .news-content .theme-btn::after:hover, .news-card-items .news-content .theme-btn::after:focus {
  border-top: 35px solid var(--white);
  border-bottom: 35px solid var(--white);
}
.news-card-items:hover .news-content, .news-card-items:focus .news-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#E0A207), to(#00B1B4));
  background: linear-gradient(to bottom, #E0A207, #00B1B4);
}
.news-card-items:hover h3, .news-card-items:focus h3 {
  color: #fff;
}
.news-card-items:hover .theme-btn, .news-card-items:focus .theme-btn {
  background-color: var(--white);
  color: var(--theme);
  z-index: 0;
}
.news-card-items:hover .theme-btn::before, .news-card-items:hover .theme-btn::after, .news-card-items:focus .theme-btn::before, .news-card-items:focus .theme-btn::after {
  border-top: 35px solid var(--white);
  border-bottom: 35px solid var(--white);
}

.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper .contact-content .form-clt input, .contact-wrapper .contact-content .form-clt textarea {
  line-height: 1;
  border: none;
  padding: 17px 20px;
  color: var(--text);
  outline: none;
  width: 100%;
  border-radius: 5px;
  font-size: 18px;
  letter-spacing: 0px;
  background: #fff;
}
@media (max-width: 768px) {
  .contact-wrapper .contact-content .form-clt input, .contact-wrapper .contact-content .form-clt textarea {
    font-size: 16px;
  }
}
.contact-wrapper .contact-content .form-clt textarea {
  padding: 17px 20px 125px;
  background: #fff;
}
.contact-wrapper .contact-content label {
  font-size: 18px;
}
@media (max-width: 480px) {
  .contact-wrapper .contact-content label {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper.style-padding-minus {
    margin-bottom: -50px;
  }
}

.form-check-label {
  font-size: 18px;
}
@media (max-width: 768px) {
  .form-check-label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .form-check-label a {
    font-size: 16px;
  }
}

.contact-section {
  position: relative;
  z-index: 10;
  background-image: url("../img/bg_form.png");
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 575px) {
  .contact-section {
    padding-bottom: 100px;
  }
}

.modal {
  background: rgba(0, 0, 0, 0.46);
}
.modal h6 {
  font-family: "Noto Sans TC", sans-serif;
}
@media (max-width: 480px) {
  .modal h6 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .modal p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .modal a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .modal-body {
    font-size: 14px;
  }
}

.text-left {
  text-align: left !important;
}

footer {
  margin-top: 100px;
  text-align: center;
}
footer img {
  width: 100%;
  max-width: 450px;
}
@media (max-width: 480px) {
  footer img {
    max-width: 300px;
  }
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
  font-size: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
  margin-top: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
  font-size: 16px;
  color: var(--theme);
  margin-right: 10px;
  font-size: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 22px;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--theme);
  border-radius: 10px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme);
  margin-left: 5px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
    width: 100px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items:not(:last-child) {
  margin-bottom: 25px;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-img {
  width: 80px;
  height: 80px;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content span {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content span i {
  color: var(--theme);
  margin-right: 5px;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content h5 {
  font-size: 14px;
  margin-top: 5px;
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content h5 a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .popularspost-area .single-post-items .post-content h5 a:hover {
  color: var(--theme);
}

.footer-bottom {
  border-top: 1px solid #333F4D;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    text-align: center;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  color: var(--white);
  font-size: 14px;
}
.footer-bottom .footer-bottom-wrapper p a {
  color: var(--white);
}
.footer-bottom .footer-bottom-wrapper p a:hover {
  color: var(--theme);
}
.footer-bottom .footer-bottom-wrapper p span {
  color: var(--theme);
}
.footer-bottom .footer-bottom-wrapper .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper .footer-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    text-align: center;
  }
}
.footer-bottom .footer-bottom-wrapper .footer-menu li:not(:last-child) {
  border-right: 1px solid var(--white);
  padding-right: 20px;
}
.footer-bottom .footer-bottom-wrapper .footer-menu li a {
  color: var(--white);
}
.footer-bottom .footer-bottom-wrapper .footer-menu li a:hover {
  color: var(--theme);
}

.footer-contact-wrapper {
  background-color: var(--theme);
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-contact-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    padding: 50px 40px;
  }
}
.footer-contact-wrapper .contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.footer-contact-wrapper .contact-items .icon {
  font-size: 32px;
  color: var(--white);
}
.footer-contact-wrapper .contact-items .content p, .footer-contact-wrapper .contact-items .content a {
  color: var(--white);
  font-family: "Poppins", system-ui;
}

.footer-contact-section {
  position: relative;
  z-index: 9;
}
.footer-contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  top: 68%;
}
.footer-contact-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--bg);
  height: 68%;
}
.footer-contact-section.remove-bg::after {
  display: none;
}