﻿@charset "utf-8";

/*--------------------------------------------------------------
>>> Unique Business HTML Template TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Mobile Nav
# Search Popup
# Main Slider
# Page Header
# Google Map
# Client Carousel
# Event
# Gallery
# Blog Details
# Blog Sidebar
# Footer
# FAQ
# Fact counter
# Cause Details
# About
# Testimonials
# Call to Action
# Donate Options
# Services
# Price
--------------------------------------------------------------*/

:root {
  --main-font-family: '微軟正黑體', sans-serif;
  --heading-font-family: '微軟正黑體', sans-serif;
  --main-color: #1657CB;
  --optional-color: #00B9FF;
  --white-color: #ffffff;
  --black-color: #141414;
  --paragraph-color: #646464;
  --gradient-color: linear-gradient(to top, #00b9ff, #00c7ff, #00d4fc, #00e0f5, #0cebeb);
  --transition: .6s;
}

a:focus, input:focus, select:focus, input[name*="Collapse"]:focus,
.owl-prev:focus, .owl-next:focus, input[type*="submit"]:focus, input[type*="reset"]:focus, input.enter_bn[type*="button"]:focus, input[type*="button"]:focus, button:focus {
  outline: 2px #d41d1d dotted !important;
}
.focusItem:focus {
  border: 2px #d41d1d dotted !important;
  outline:none !important;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 50px;
}

.mt-120 {
  margin-top: 120px;
}

.mt_30 {
  margin-top: -30px;
}

.mt_40 {
  margin-top: -40px;
}

.mt_50 {
  margin-top: -50px;
}

.mt_60 {
  margin-top: -60px;
}

.mt_90 {
  margin-top: -90px;
}

.mt_100 {
  margin-top: -100px;
}

.mt_120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

  .gallery-card > img {
    width: 100%;
  }

  .gallery-card:hover .gallery-content {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }

.gallery-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--unique-primary-rgb), 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

  .gallery-content > a {
    font-size: 2em;
    color: #fff;
    -webkit-transition: 500ms;
    transition: 500ms;
  }

    .gallery-content > a:hover {
      color: var(--unique-base);
    }

.video-card {
  background-color: var(--unique-black);
  position: relative;
}

.video-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.video-card .container {
  position: relative;
}

  .video-card .container p {
    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;
    color: var(--unique-base);
    font-size: 1.125em;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    margin-bottom: 15px;
  }

    .video-card .container p img {
      margin-right: 10px;
    }

  .video-card .container h3 {
    margin: 0;
    color: #fff;
    letter-spacing: -0.64px;
    font-size: 3.75em;
    font-weight: bold;
    margin-bottom: 45px;
  }

@media (max-width: 575px) {
  .video-card .container h3 {
    font-size: 2.5em;
  }

    .video-card .container h3 br {
      display: none;
    }
}

@media (max-width: 375px) {
  .video-card .container h3 {
    font-size: 1.875em;
  }
}

.video-card__btn-block {
  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;
}

.video-card__btn {
  width: 63px;
  height: 63px;
  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;
  text-align: center;
  font-size: 0.75em;
  margin-left: 30px;
  background-color: var(--unique-primary);
  color: #fff;
}

  .video-card__btn:hover {
    color: var(--unique-primary);
    background-color: #fff;
  }

.video-card-two {
  padding-top: 0px;
  position: relative;
  z-index: 11;
}

  .video-card-two .inner-container {
    background-position: top right;
    background-repeat: no-repeat;
    background-color: #505658;
    padding-left: 20px;
    /* padding-top: 20px; 20211227 */
    padding-right: 65px;
    /* padding-bottom: 20px; 20211227 */
    position: relative;
    z-index: 11;
    border-bottom-left-radius: 145.5px;
    border-top-left-radius: 145.5px;
  }

@media (max-width: 991px) {
  .video-card-two .inner-container {
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: center;
    padding-right: 20px;
    border-radius: 15px !important;
  }
}

/*.video-card-two h3 {
  margin: 0;
  font-size: 2.25em;
  line-height: 50px;
  letter-spacing: -0.8px;
  font-weight: bold;
  color: #fff;
  padding-left: 22px;
  position: relative;
  left: 30px;
}

@media (max-width: 1199px) {
  .video-card-two h3 {
    left: 0;
    font-size: 1.875em;
    line-height: 1.5;
  }
}*/

/*@media (max-width: 991px) {
  .video-card-two h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0;
  }
}*/

.video-card-two p {
  margin: 0;
  padding-left: 70px;
  font-size: 1.125em;
  line-height: 34px;
  font-weight: 500;
  color: #9e9e9e;
}

@media (max-width: 1199px) {
  .video-card-two p {
    padding-left: 0;
  }
}

.video-card-two__box {
  display: inline-block;
  position: relative;
}

@media (max-width: 991px) {
  .video-card-two__box {
    width: 251px;
    height: 251px;
    margin-left: auto;
    display: block;
    margin-right: auto;
  }
}

.video-card-two__box > img {
  border-radius: 50%;
  max-width: 251px;
}

@media (max-width: 1199px) {
  .video-card-two__box > img {
    max-width: 100%;
  }
}

.video-card-two__box-btn {
  width: 56px;
  height: 56px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.2em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
}

  .video-card-two__box-btn:hover {
    color: #fff;
  }

@media (max-width: 575px) {
  .video-card-two__box-btn {
    top: 50%;
    right: auto;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}

.contact-card {
  border-top-left-radius: 220.5px;
  border-top-right-radius: 220.5px;
  background-repeat: no-repeat;
  width: 100%;
  background-position: top right;
  min-height: 442px;
}

  .contact-card i {
    width: 164px;
    height: 164px;
    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;
    text-align: center;
    color: var(--unique-black);
    font-size: 4em;
    background-color: #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card h3 {
    color: #fff;
    font-size: 1.125em;
    margin: 0;
    font-weight: bold;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 25px;
  }

@media (min-width: 481px) {
  .contact-card h3 {
    font-size: 1.18em;
  }
}

.contact-card p {
  font-size: 1.125em;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

  .contact-card p a {
    color: inherit;
    -webkit-transition: 500ms;
    transition: 500ms;
  }

    .contact-card p a:hover {
      color: var(--unique-black);
    }

.event-card {
  -webkit-box-shadow: 0px 10px 60px 0px RGBA(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px RGBA(0, 0, 0, 0.05);
  border-radius: 15px;
  border: 1px solid transparent;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: #fff;
}

  .event-card:hover {
    border-color: #e4e4e4;
    -webkit-box-shadow: 0px 10px 60px 0px RGBA(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px RGBA(0, 0, 0, 0.1);
  }

    .event-card:hover .event-card-inner::before {
      opacity: 1;
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
    }

.event-card-inner {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1200px) {
  .event-card-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.event-card-inner::before {
  content: "";
  width: 295px;
  height: 291px;
  background-image: url(../images/shapes/event-line-1-1.png);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(55%, -40%);
  transform: translate(55%, -40%);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
  -webkit-transition: 500ms;
  transition: 500ms;
}

@media (min-width: 575px) {
  .event-card-inner {
    padding: 40px;
  }
}

.event-card-image-inner {
  position: relative;
  margin-bottom: 30px;
  border-radius: 50%;
  background-color: var(--unique-black);
}

@media (min-width: 1200px) {
  .event-card-image-inner {
    margin-bottom: 0;
    margin-right: 55px;
  }
}

.event-card-image-inner span {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: var(--unique-base);
  border-radius: 50%;
  font-size: 0.75em;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
}

.event-card-image-inner > img {
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-card:hover .event-card-image-inner > img {
  opacity: 0.5;
}

.event-card-list {
  margin: 0;
  padding: 0;
  margin-top: 5px;
  list-style-type: none;
}

  .event-card-list li {
    position: relative;
    padding-left: 30px;
    font-size: 1em;
  }

    .event-card-list li strong {
      font-weight: 500;
      color: var(--unique-black);
    }

    .event-card-list li > i {
      font-size: 1em;
      color: var(--unique-secondary);
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }

.event-card-content {
  position: relative;
}

  .event-card-content h3 {
    font-size: 1.25em;
    color: var(--unique-black);
    font-weight: bold;
    margin: 0;
    letter-spacing: -0.64px;
  }

@media (min-width: 481px) {
  .event-card-content h3 {
    font-size: 1.5em;
  }
}

.event-card-content h3 a {
  color: inherit;
  -webkit-transition: 500ms;
  transition: 500ms;
}

  .event-card-content h3 a:hover {
    color: var(--unique-primary);
  }

.team-3-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (min-width: 576px) {
  .team-3-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .team-3-col {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.team-4-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (min-width: 576px) {
  .team-4-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .team-4-col {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.team-card {
  position: relative;
}

  .team-card:hover .team-card__social {
    opacity: 1;
    visibility: visible;
  }

.team-card__image {
  border-top-left-radius: 185px;
  border-top-right-radius: 185px;
  overflow: hidden;
}

  .team-card__image > img {
    width: 100%;
  }

.team-card__social {
  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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

  .team-card__social a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--unique-secondary);
    color: #fff;
    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;
    text-align: center;
    font-size: 0.875em;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
  }

    .team-card__social a + a {
      margin-left: 10px;
    }

    .team-card__social a:hover {
      background-color: #fff;
      color: var(--unique-secondary);
    }

    .team-card__social a:nth-child(2) {
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      background-color: var(--unique-special);
      color: #fff;
    }

      .team-card__social a:nth-child(2):hover {
        color: var(--unique-special);
        background-color: #fff;
      }

    .team-card__social a:nth-child(3) {
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      background-color: var(--unique-base);
      color: #fff;
    }

      .team-card__social a:nth-child(3):hover {
        color: var(--unique-base);
        background-color: #fff;
      }

    .team-card__social a:nth-child(4) {
      background-color: var(--unique-primary);
      color: #fff;
    }

      .team-card__social a:nth-child(4):hover {
        color: var(--unique-primary);
        background-color: #fff;
      }

.team-card__content {
  background-color: var(--unique-secondary);
  margin-left: 23px;
  margin-right: 23px;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-top: -20px;
  position: relative;
  z-index: 10;
  border-radius: 1px;
}

  .team-card__content h3 {
    margin: 0;
    color: #fff;
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
  }

  .team-card__content p {
    margin: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
  }

.content-bg-1 .team-card__content {
  background-color: var(--unique-secondary);
}

.content-bg-2 .team-card__content {
  background-color: var(--unique-base);
}

.content-bg-3 .team-card__content {
  background-color: var(--unique-primary);
}

.content-bg-4 .team-card__content {
  background-color: var(--unique-special);
}

.content-bg-5 .team-card__content {
  background-color: #4bb2ed;
}

.content-bg-6 .team-card__content {
  background-color: #c94bed;
}

.team-4-col .team-card__content {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -20px;
}

.team-about {
  background-repeat: no-repeat;
  background-position: center center;
}

.team-about__top {
  margin-bottom: 50px;
}

  .team-about__top .block-title {
    margin-bottom: 0;
  }

.team-about__top-text {
  margin: 0;
  font-size: 1.125em;
  line-height: 34px;
  font-weight: 500;
  margin-top: 25px;
}

@media (min-width: 992px) {
  .team-about__top-text {
    padding-right: 40px;
    margin-top: 0;
  }
}

.causes-col__3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (min-width: 768px) {
  .causes-col__3 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .causes-col__3 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cause-card {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 15px;
}

  .cause-card:hover {
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  }

.cause-card__image {
  overflow: hidden;
  background-color: var(--unique-black);
}

  .cause-card__image > img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
  }

.cause-card:hover .cause-card__image > img {
  opacity: 0.5;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.cause-card__content {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 25px;
  padding-top: 30px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

@media (min-width: 768px) {
  .cause-card__content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 80px;
  }
}

.cause-card__content h3 {
  margin: 0;
  color: var(--unique-black);
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.416;
}

@media (min-width: 768px) {
  .cause-card__content h3 {
    font-size: 1.25em;
  }
}

.cause-card__content h3 a {
  color: inherit;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

  .cause-card__content h3 a:hover {
    color: var(--unique-secondary);
  }

.cause-card__content p {
  margin: 0;
  margin-top: 10px;
  color: #7e7e7e;
  margin-bottom: 20px;
}

.cause-card__content .thm-btn {
  padding: 12.5px 24px;
  margin-left: 30px;
}

  .cause-card__content .thm-btn:hover {
    background-color: var(--unique-black);
    color: #fff;
  }

.cause-card:hover .cause-card__content {
  border-color: transparent;
}

.cause-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 25px;
}

.cause-card__share {
  width: 53px;
  height: 53px;
  background-color: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition: 500ms;
  transition: 500ms;
  border-radius: 50%;
  margin-left: 20px;
}

  .cause-card__share > i {
    color: #7e7e7e;
    font-size: 1.25em;
    -webkit-transition: 500ms;
    transition: 500ms;
  }

  .cause-card__share:hover {
    background-color: var(--unique-black);
  }

    .cause-card__share:hover > i {
      color: #fff;
    }

.cause-card__goals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 30px;
  margin-bottom: 23px;
}

  .cause-card__goals > p {
    margin: 0;
    line-height: 1;
    font-size: 0.875em;
    color: #7e7e7e;
  }

    .cause-card__goals > p strong {
      font-weight: 400;
      color: var(--unique-black);
    }

.cause-card__progress {
  width: 100%;
  height: 9px;
  position: relative;
  background-color: #f1f1f1;
  border-radius: 5px;
  margin-bottom: 15px;
}

  .cause-card__progress > span {
    border-radius: 5px;
    background-color: var(--unique-primary);
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

    .cause-card__progress > span > b {
      border-radius: 5px;
      background-color: inherit;
      bottom: 100%;
      left: 100%;
      position: absolute;
      font-size: 0.75em;
      font-weight: 500;
      color: #fff;
      padding-left: 11px;
      padding-right: 11px;
      line-height: 25px;
      margin-bottom: 10px;
      border-bottom-left-radius: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }

      .cause-card__progress > span > b i {
        font-style: normal;
      }

      .cause-card__progress > span > b::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: -3px;
        border: 5px solid transparent;
        border-top: 5px solid var(--unique-primary);
        border-left: 5px solid var(--unique-primary);
      }

.cardProgress {
  -webkit-animation-name: cardProgress;
  animation-name: cardProgress;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes cardProgress {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes cardProgress {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.swiper-slide:nth-child(1) .cause-card .cause-card__progress > span,
.cause-card:nth-child(1) .cause-card__progress > span {
  background-color: var(--unique-secondary);
}

  .swiper-slide:nth-child(1) .cause-card .cause-card__progress > span > b::after,
  .cause-card:nth-child(1) .cause-card__progress > span > b::after {
    border-top-color: var(--unique-secondary);
    border-left-color: var(--unique-secondary);
  }

.swiper-slide:nth-child(2) .cause-card .cause-card__progress > span,
.cause-card:nth-child(2) .cause-card__progress > span {
  background-color: var(--unique-primary);
}

  .swiper-slide:nth-child(2) .cause-card .cause-card__progress > span > b::after,
  .cause-card:nth-child(2) .cause-card__progress > span > b::after {
    border-top-color: var(--unique-primary);
    border-left-color: var(--unique-primary);
  }

.swiper-slide:nth-child(3) .cause-card .cause-card__progress > span,
.cause-card:nth-child(3) .cause-card__progress > span {
  background-color: var(--unique-special);
}

  .swiper-slide:nth-child(3) .cause-card .cause-card__progress > span > b::after,
  .cause-card:nth-child(3) .cause-card__progress > span > b::after {
    border-top-color: var(--unique-special);
    border-left-color: var(--unique-special);
  }

.swiper-slide:nth-child(4) .cause-card .cause-card__progress > span,
.cause-card:nth-child(4) .cause-card__progress > span {
  background-color: #4bb2ed;
}

  .swiper-slide:nth-child(4) .cause-card .cause-card__progress > span > b::after,
  .cause-card:nth-child(4) .cause-card__progress > span > b::after {
    border-top-color: #4bb2ed;
    border-left-color: #4bb2ed;
  }

.swiper-slide:nth-child(5) .cause-card .cause-card__progress > span,
.cause-card:nth-child(5) .cause-card__progress > span {
  background-color: #c94bed;
}

  .swiper-slide:nth-child(5) .cause-card .cause-card__progress > span > b::after,
  .cause-card:nth-child(5) .cause-card__progress > span > b::after {
    border-top-color: #c94bed;
    border-left-color: #c94bed;
  }

.swiper-slide:nth-child(6) .cause-card .cause-card__progress > span,
.cause-card:nth-child(6) .cause-card__progress > span {
  background-color: #ff7916;
}

  .swiper-slide:nth-child(6) .cause-card .cause-card__progress > span > b::after,
  .cause-card:nth-child(6) .cause-card__progress > span > b::after {
    border-top-color: #ff7916;
    border-left-color: #ff7916;
  }

.causes-home .block-title {
  margin-bottom: 0;
}

.causes-page .swiper-container {
  overflow: visible;
}

@media (max-width: 1199px) {
  .causes-page .swiper-container {
    overflow: hidden;
  }
}

.featured-cause .inner-container {
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url(../images/shapes/featured-cause-bg-1-1.png);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-right: 60px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .featured-cause .inner-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .featured-cause .inner-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .featured-cause .inner-container img {
    display: none;
  }
}

@media (max-width: 575px) {
  .featured-cause .inner-container img {
    display: block;
    width: 100%;
  }
}

.featured-cause .my-auto {
  width: 100%;
  padding-left: 20px;
}

@media (max-width: 991px) {
  .featured-cause .my-auto {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .featured-cause .my-auto {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.featured-cause h3 {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 1.875em;
  letter-spacing: -0.64px;
}

.featured-cause p {
  margin: 0;
  font-size: 1.125em;
  font-weight: 400;
  color: #fcdede;
  margin-top: 5px;
}

.featured-cause .cause-card__top {
  margin-top: 45px;
}

@media (max-width: 1199px) {
  .featured-cause .cause-card__top {
    margin-top: 24px;
  }
}

.featured-cause .cause-card__progress {
  height: 15px;
  border-radius: 7.5px;
  background-color: #fff;
}

  .featured-cause .cause-card__progress > span {
    background-color: var(--unique-base);
  }

    .featured-cause .cause-card__progress > span > b::after {
      border-top-color: var(--unique-base);
      border-left-color: var(--unique-base);
    }

.featured-cause .cause-card__goals {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

  .featured-cause .cause-card__goals p {
    font-size: 1.125em;
    font-weight: 600;
    color: #fff;
  }

    .featured-cause .cause-card__goals p strong {
      color: #fff;
      font-weight: 400;
    }

.news-3-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (min-width: 768px) {
  .news-3-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .news-3-col {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}



.news__top {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-bottom: 336px;
  margin-bottom: -276px;
}

  .news__top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f1f1f1;
    opacity: 0.95;
  }

  .news__top .container {
    position: relative;
  }

.news-home .block-title {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --unique-font: "微軟正黑體",Arial,Helvetica,sans-serif;
  --heading-font: "微軟正黑體",Arial,Helvetica,sans-serif;
  --unique-color: #000;
  --unique-color-rgb: 126, 126, 126;
  --unique-base: #fcad30;
  --unique-base-rgb: 252, 173, 48;
  --unique-primary: #4ecd99;
  --unique-primary-rgb: 78, 205, 153;
  --unique-secondary: #227b9e;
  --unique-secondary-rgb: 237, 75, 75;
  --unique-special: #5366c2;
  --unique-special-rgb: 83, 102, 194;
  --unique-black: #242323;
  --page-header: #242323;
  --unique-black-rgb: 36, 35, 35;
  --unique-black2: #1d1c1c;
  --unique-black2-rgb: 29, 28, 28;
  --unique-text-dark: #9e9e9e;
  --unique-text-dark-rgb: 158, 158, 158;
}

body {
  font-family: var(--unique-font);
  color: var(--unique-color);
  font-size: 1.125em;
  line-height: 1.89;
  top: auto !important;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--unique-black);
}

@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
/* 20220620 new line need  
  p br {
    display: none;
  }
*/  
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--unique-base);
}

.background-primary {
  background-color: var(--unique-primary);
}

.background-secondary {
  background-color: var(--unique-secondary);
}

.background-special {
  background-color: var(--unique-special);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  /** overflow: hidden; 20211227 */
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1575px;
  }

  .container-sm {
    max-width: 1199px;
    /*max-width: 1199px;*/
  }
}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  padding: 0.6em 1em;
  background-color: #996c37;/*#fcad30;*/
  color: #fff;
  border-radius: 10px; 
  line-height: 100%; 
  margin-top: auto;  
  margin-bottom: auto;  
}

   .thm-btn:hover {
    color: #FFF;
    background-color: #4ecd99;
  }


.block-text {
  font-size: 1.125em;
  line-height: 1.88;
  color: #7e7e7e;
  font-weight: 500;
}

@media (max-width: 991px) {
  .block-text {
    margin-top: 30px;
  }
}

.block-title {
  margin-bottom: 40px;
}

  .block-title p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.125em;
    font-weight: 500;
    color: var(--unique-special);
    margin: 0;
    line-height: 1;
  }

    .block-title p img {
      margin-right: 10px;
    }

  .block-title h3 {
    margin: 0;
    color: var(--unique-black);
    font-size: 1.875em;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: -0.64px;
  }

@media (min-width: 1200px) {
  .block-title h3 {
    font-size: 2.875em;
  }
}

@media (min-width: 481px) {
  .block-title h3 {
    font-size: 2.25em;
  }
}

@media (max-width: 575px) {
  .block-title h3 br {
    display: none;
  }
}

.ul-list-one {
  margin-bottom: 0;
}

  .ul-list-one li {
    position: relative;
    padding-left: 45px;
    font-size: 1.125em;
    font-weight: 500;
    color: var(--unique-black);
  }

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 1.25em;
  }
}

.ul-list-one li::before {
  content: "\e907";
  color: var(--unique-secondary);
  font-size: 1.625em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "azino-icon";
}

/* preloader style One */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* preloader style One */

/* preloader style Two */



/* post paginations */
.post-pagination {
  margin-bottom: 0;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .post-pagination {
    margin-top: 60px;
  }
}

.post-pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #f1f1f1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7e7e7e;
  font-size: 1em;
  font-weight: 600;
  border-radius: 50%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

@media (min-width: 992px) {
  .post-pagination a {
    width: 60px;
    height: 60px;
    font-size: 1.125em;
  }
}

.post-pagination a:hover {
  background-color: var(--unique-secondary);
  color: #fff;
}

.post-pagination li:first-child a {
  background-color: var(--unique-base);
  color: #fff;
}

.post-pagination li:last-child a {
  background-color: var(--unique-black);
  color: #fff;
}

.post-pagination li + li {
  margin-left: 10px;
}

/* custom animations */
@-webkit-keyframes shapeMover {
  0%, 100% {
    -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes shapeMover {
  0%, 100% {
    -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    -webkit-transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

/* hide translate bar */
.skiptranslate {
  display: none !important;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one .form-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin: 0;
}

 
 

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
/*
.main-menu .container {
  background-color: var(--unique-black);
  position: relative;
  display: none;
}

.main-menu .container-en {
  background-color: var(--unique-black);
  position: relative;
  display: none;
}

.main-menu .container-dep {
  background-color: var(--unique-black);
  position: relative;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
  }

  .main-menu .container-dep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
  }

  .main-menu .container-en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1260px) {
  .main-menu .container {
    max-width: 1480px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-menu .container-dep {
    max-width: 1550px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-menu .container-en {
    max-width: 1515px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
*/
.main-menu,
.stricky-header {
  /* after third level no menu */
}
/*
.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 24.5px;
  padding-bottom: 24.5px;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 35px;
}

@media (min-width: 1281px) {
  .main-menu .main-menu__list > li + li,
  .stricky-header .main-menu__list > li + li {
    margin-left: 30px;
  }
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-family: var(--unique-font);
  font-size: 1.18em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9e9e9e;
  -webkit-transition: 500ms;
  transition: 500ms;
  text-transform: capitalize;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: #fff;
}

.main-menu .main-menu__list > li > a::after,
.stricky-header .main-menu__list > li > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-left: 8px;
}

.main-menu .main-menu__list > li > a:only-child::after,
.stricky-header .main-menu__list > li > a:only-child::after {
  display: none;
}

.main-menu .main-menu__list li.search-btn,
.stricky-header .main-menu__list li.search-btn {
  margin-left: auto;
}

.main-menu .main-menu__list li.search-btn i,
.stricky-header .main-menu__list li.search-btn i {
  font-size: 1.18em;
}

.main-menu .main-menu__list li.cart-btn a,
.stricky-header .main-menu__list li.cart-btn a {
  position: relative;
}

.main-menu .main-menu__list li.cart-btn span,
.stricky-header .main-menu__list li.cart-btn span {
  width: 20px;
  height: 20px;
  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;
  text-align: center;
  color: #fff;
  font-size: 0.625em;
  font-family: var(--unique-font);
  background-color: var(--unique-secondary);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  -webkit-transition: background-color 500ms, color 500ms;
  transition: background-color 500ms, color 500ms;
}

.main-menu .main-menu__list li.cart-btn:hover span,
.stricky-header .main-menu__list li.cart-btn:hover span {
  background-color: #fff;
  color: var(--unique-black);
}

.main-menu .main-menu__list li.cart-btn i,
.stricky-header .main-menu__list li.cart-btn i {
  font-size: 1.4375em;
}

.main-menu .thm-btn,
.stricky-header .thm-btn {
  position: absolute;
  top: 0;
  right: 0;
}

.main-menu .thm-btn:hover,
.stricky-header .thm-btn:hover {
  background-color: #fff;
  color: var(--unique-black);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  padding-bottom: 12px;
  min-width: 220px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  z-index: 99;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  -webkit-box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li + li,
.stricky-header .main-menu__list li ul li + li {
  border-top: 1px solid RGBA(var(--unique-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 1.18em;
    font-weight: 900;
    line-height: 30px;
    color: var(--unique-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .main-menu__list li ul li:last-child > a,
.stricky-header .main-menu__list li ul li:last-child > a {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.main-menu .main-menu__list li ul li:hover > a,
.stricky-header .main-menu__list li ul li:hover > a {
  background-color: var(--unique-secondary);
  color: #fff;
}

.main-menu .main-menu__list li ul li > ul,
.stricky-header .main-menu__list li ul li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul,
.stricky-header .main-menu__list li ul li > ul ul {
  display: none;
}
*/
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 91;
}

@media (max-width: 1199px) {
  .main-header {
    background-color: #fff;
    position: relative;
  }
}

.main-header .inner-container {
  background-color: transparent;
  border-bottom-right-radius: 10px;
  position: relative;
  z-index: 10;
}

  .main-header .inner-container::before {
    content: "";
    position: absolute;
    width: 100000px;
    background-color: rgb(255 255 255 / 62%);
    border-bottom-right-radius: 10px;
    top: 0;
    right: 0px;
    height: 120%;
  }

.main-header .logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 0px;
  padding-right: 0px;
}

@media (min-width: 1200px) {
  .main-header .logo-box {
    padding-right: 0;
    padding-top: 50px;
  }
}

.main-header .mobile-nav__toggler {
  font-size: 1.25em;
  color: var(--unique-black);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

@media (min-width: 1200px) {
  .main-header .mobile-nav__toggler {
    display: none;
  }
}

.main-header .mobile-nav__toggler:hover {
  color: var(--unique-secondary);
}

 
 


.main-header__info {
  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-left: 50px;
  padding-right: 40px;
  padding-top: 16.5px;
  padding-bottom: 16.5px;
}

.main-header__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

  .main-header__info-list li {
    color: var(--unique-black);
    font-size: 0.9375em;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
  }

    .main-header__info-list li:hover {
      color: var(--unique-base);
    }

      .main-header__info-list li:hover > i {
        background-color: var(--unique-black);
      }

    .main-header__info-list li + li {
      margin-left: 30px;
    }

    .main-header__info-list li a {
      color: inherit;
    }

    .main-header__info-list li > i {
      width: 34px;
      height: 34px;
      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;
      color: #fff;
      background-color: var(--unique-base);
      font-size: 1em;
      margin-right: 10px;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

.main-header__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-header__language-image {
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  margin-right: 7px;
}

.main-header__language .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 70px;
}

.main-header__language .bootstrap-select > .dropdown-toggle {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: #7e7e7e;
  font-size: 0.875em;
}

.main-header__language .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #7e7e7e;
}

.main-menu {
  background-color: var(--unique-black);
  padding-left: 50px;
  padding-right: 50px;
  margin-right: -1px;
  border-bottom-left-radius: 39.5px;
  border-top-left-radius: 39.5px;
}

.stricky-header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--unique-black);
  display: none;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

  .stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

@media (min-width: 1200px) {
  .stricky-header {
    display: block;
  }
}

.stricky-header .container {
  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;
}

.stricky-header .main-menu__list li.search-btn,
.stricky-header .stricky-header .main-menu__list li.search-btn {
  margin-left: 70px;
}

/*-- Sticky Logo設定 --*/
.stricky-header .logo-box {
  padding-top: 0px;
  z-index: 1;
  padding: 8px 0 13px 0;
}

/*.stricky-header .logo-box img {
    height: auto;
  }

  .stricky-header .logo-box .logo-name {
    margin-left: 95px;
    margin-top: -61px;
  }

  .stricky-header .logo-box .logo-name-en {
    margin-left: 95px;
    margin-top: -40px;
  }

  .stricky-header .logo-box .logo-name h3 {
    font-size: 2em;
    color: #FFF;
    font-weight: 900;
    line-height: 15px;
  }

  .stricky-header .logo-box .logo-name-en .en-name {
    font-size: 1.5em;
    color: #FFF;
    font-weight: 900;
    line-height: 15px;
  }

  .stricky-header .logo-box .logo-name span {
    font-size: 1.13em;
    color: #FFF;
    font-weight: 900;
    margin-left: 6px;
  }*/


/*-- 分處LOGO設定 --*/
.stricky-header .logo-box {
  padding-top: 0px;
  z-index: 1;
  padding: 8px 0 13px 0;
  margin-bottom: 0px;
}

/*.stricky-header .logo-box img {
    height: 60px;
    width: auto;
    margin-top: -10px;
  }*/

.main-sticky-logo {
  margin-top: 0px !important;
  height: 75px !important;
}

/*.stricky-header .logo-box .logo-department {
  margin-left: 75px;
  margin-top: -38px;
}

  .stricky-header .logo-box .logo-department h3 {
    font-size: 1.35em;
    color: #FFF;
    font-weight: 900;
    line-height: 15px;
  }

    .stricky-header .logo-box .logo-department h3 .dep-color01 {
      font-size: 0.95em;
      color: #ff7022;
      font-weight: 900;
      line-height: 15px;
    }

    .stricky-header .logo-box .logo-department h3 .dep-color02 {
      font-size: 0.95em;
      color: #BCDBFE;
      font-weight: 900;
      line-height: 15px;
    }

    .stricky-header .logo-box .logo-department h3 .dep-color03 {
      font-size: 0.95em;
      color: #B4F09F;
      font-weight: 900;
      line-height: 15px;
    }

    .stricky-header .logo-box .logo-department h3 .dep-color04 {
      font-size: 0.95em;
      color: #F3CF72;
      font-weight: 900;
      line-height: 15px;
    }

  .stricky-header .logo-box .logo-department span {
    font-size: 0.8em;
    color: #FFF;
    font-weight: 900;
    margin-left: 6px;
  }*/
/*-- 分處LOGO設定 --*/

/*-- Logo RWD設定 --*/

@media screen and (min-width: 375px)and (max-width: 1365px) {

  /*.stricky-header .logo-box img {
    height: auto;
    width: 60px;
  }

  .stricky-header .logo-box .logo-name span {
    display: none;
  }

  .stricky-header .logo-box .logo-name h3 {
    font-size: 1.0em;
    color: #FFF;
    font-weight: 900;
    line-height: 40px;
  }

  .stricky-header .logo-box .logo-name {
    margin-left: 65px !important;
    margin-top: -48px !important;
  }

  .stricky-header .logo-box .logo-department .name-en {
    display: none;
  }

  .stricky-header .logo-box .logo-department {
    margin-left: 65px !important;
    margin-top: -48px !important;
  }

    .stricky-header .logo-box .logo-department h3 {
      font-size: 1.0em;
      color: #FFF;
      font-weight: 900;
      line-height: 40px;
    }*/
}

/*-- Logo RWD設定 --*/

/*-- Sticky Logo設定 --*/

  




/* 20211225 */
.header-info {
  max-width: 100em;
  font-size: 0.9em;
}

 

 

/* 20211225 */
.header-info__box {
  /* max-width: 15em; 20211227 */
  max-width: 20em; /* 20211227 */
}

/*20220617 */
.MaxWidth35 {
  max-width: 35em;
}
   
.stricky-header-two .thm-btn {
  display: none;
}

/*--------------------------------------------------------------
# Main-Header Style-Two
--------------------------------------------------------------*/
 
 
 
  
 

 
 

 

    

.stricky-header-two .thm-btn {
  display: none;
}

  
  
.stricky-header-two .thm-btn {
  display: none;
}
 

.main-slider.style-5 {
  overflow: hidden;
  position: relative;
  margin-top: -105px;
}


/*--------------------------------------------------------------
# Main-Header Style-Six
--------------------------------------------------------------*/
  


/*-- Header Logo設定 --*/
/*.main-header-six .header-upper .logo-box img {
  height: auto;
}*/

/*.main-header-six .header-upper .logo-box .logo-name {
  margin-left: 95px;
  margin-top: -61px;
}

.main-header-six .header-upper .logo-box.en .logo-name {
  margin-left: 80px;
  margin-top: -61px;
}

.main-header-six .header-upper .logo-box .logo-name h3 {
   font-size: 1.5em; 
  color: #FFF;
  font-weight: 900;
  line-height: 15px;
  margin-bottom: 8px;
}*/

/*.main-header-six .header-upper .logo-box .logo-name .c_en {
   font-size: 0.9em; 
  color: #FFF;
   font-weight: 100; 
  line-height: 15px;
  margin-left: 4px;
}

.main-header-six .header-upper .logo-box .logo-name .en-name {
  font-size: 1.35em;
  color: #FFF;
  font-weight: 900;
  margin-left: 6px;
  margin-top: 23px;
  word-break: keep-all; 
}*/


/*-- 分處LOGO設定 --*/
/*.main-header-six .header-upper .logo-box {
  padding-top: 0px;
  z-index: 1;
  padding: 8px 0 13px 0;
  width: 475px;
  height: 102px;
}*/

/*.main-header-six .header-upper .logo-box.en {
    padding-top: 0px;
    z-index: 1;
    padding: 8px 0 13px 0;
    width: 580px;
    height: 102px;
  }

    .main-header-six .header-upper .logo-box.en img {
      width: auto;
      height: 85px;
    }*/

/*.main-header-six .header-upper .logo-box img {
    height: auto;
    height: 85px; 
  }*/

/*.main-header-six .header-upper .logo-box .logo-department {
    margin-left: 100px;
    margin-top: -50px;
  }

    .main-header-six .header-upper .logo-box .logo-department h3 {
      font-size: 1.5em;
      color: #FFF;
      font-weight: 900;
      line-height: 15px;
    }

      .main-header-six .header-upper .logo-box .logo-department h3 .dep-color01 {
        font-size: 0.95em;
        color: #ff7022;
        font-weight: 900;
        line-height: 15px;
      }

      .main-header-six .header-upper .logo-box .logo-department h3 .dep-color02 {
        font-size: 0.95em;
        color: #BCDBFE;
        font-weight: 900;
        line-height: 15px;
      }*/

/*.main-header-six .header-upper .logo-box .logo-department h3 .dep-color03 {
        font-size: 1em;
        color: #33c101;
        font-weight: 900;
        line-height: 15px;
      }

      .main-header-six .header-upper .logo-box .logo-department h3 .dep-color04 {
        font-size: 0.95em;
        color: #F3CF72;
        font-weight: 900;
        line-height: 15px;
      }

    .main-header-six .header-upper .logo-box .logo-department span {
      font-size: 0.8em;
      color: #FFF;
      font-weight: 900;
      margin-left: 6px;
    }*/
/*-- 分處LOGO設定 --*/



/*-- Logo RWD設定 --*/

/*@media screen and (min-width: 375px)and (max-width: 736px) {

  .main-header-six .header-upper .logo-box .logo-name .en-name {
    font-size: 1.10em;
    color: #FFF;
    font-weight: 900;
    line-height: 20px;
    margin-top: 12px;
    margin-left: 0px;
  }

  .main-header-six .header-upper .logo-box.en .logo-name {
    margin-left: 67px;
    margin-right: 45px;
  }
}*/

/* @media screen and (min-width: 375px)and (max-width: 736px) { 20211225 */
/*@media screen and (max-width: 736px) { 

  .main-header-six .header-upper .logo-box .logo-name span {
    font-size: 0.7em;
    font-weight: normal;
    line-height: 15px;
    margin-left: 0px;
  }
}*/

/* @media screen and (min-width: 375px)and (max-width: 735px) { 20211225 */
@media screen and (max-width: 735px) { /* 20211225 */

  /*.main-header-six .header-upper .logo-box img {
    margin-top: 0px;
  }*/

  .main-header-six .header-upper {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 375px)and (max-width: 1364px) {
  /*
	.main-header-six .header-upper .logo-box {
		height: 80px;
	}
	*/
}

/*@media screen and (min-width: 736px)and (max-width: 1024px) {
  .main-header-six .header-upper .logo-box img {
    margin-top: -20px;
  }
}*/

/* @media screen and (min-width: 375px)and (max-width: 1536px) { 20211225 */
@media screen and (max-width: 1536px) { /* 20211225 */
  /*.main-header-six .header-upper .logo-box.en img {
    height: auto;
    width: 60px;
    margin-top: 0px;
  }

  .main-header-six .header-upper .logo-box {
    height: auto;
  }*/
}

/* @media screen and (min-width: 375px)and (max-width: 1280px) { 20211225 */
@media screen and (max-width: 1280px) { /* 20211225 */
  /*.main-header-six .header-upper .logo-box img {
    height: auto;
    width: 60px;
    margin-bottom: 6px;
  }*/

  /*.main-header-six .header-upper .logo-box .logo-name {
     margin-left: 70px;
  }*/
}

@media screen and (min-width: 1281px)and (max-width: 1536px) {
  /*.main-header-six .header-upper .logo-box img {
    height: auto;
    width: 80px;
  }*/

  /*.main-header-six .header-upper .logo-box .logo-name {
   }
  .main-header-six .header-upper .logo-box .logo-department {
    margin-top: -40px;
  }*/
}

/*@media screen and (min-width: 1097px)and (max-width: 1280px) {
  .main-header-six .header-upper .logo-box .logo-name .en-name {
    margin-top: 10px;
    margin-bottom: 22px;
  }

  .main-header-six .header-upper .logo-box.en .logo-name {
    margin-left: 70px;
    margin-top: -48px;
    padding-top: 5px;
  }

    .main-header-six .header-upper .logo-box.en .logo-name .en-name {
      font-size: 1.2em;
    }

  .main-header-six .header-upper .logo-box.en {
    width: 520px;
  }
}*/

/* @media screen and (min-width: 375px)and (max-width: 1098px) 20211225 */
/*@media screen and (max-width: 1098px) {  
  .main-header-six .header-upper .logo-box.en {
    width: 100%;
  }*/
}

/*@media screen and (min-width: 1281px)and (max-width: 1536px) {
  .main-header-six .header-upper .logo-box .logo-name .en-name {
    margin-top: 5px;
    margin-bottom: 14px;
  }

  .main-header-six .header-upper .logo-box.en .logo-name {
    margin-left: 70px;
    margin-top: -48px;
    padding-top: 10px;
  }

  .main-header-six .header-upper .logo-box .logo-name .en-name {
    font-size: 1.2em;
  }
}*/

/* @media screen and (min-width: 375px)and (max-width: 1365px) { 20211225 */
/*@media screen and (max-width: 1365px) {  

  .main-header-six .header-upper .logo-box .logo-name h3 {
    font-size: 1.30em;
    color: #FFF;
    font-weight: 900;
  }

  .main-header-six .header-upper .logo-box .logo-name .c_en{ 
    font-size: 0.8em;
  }

  .main-header-six .header-upper .logo-box .logo-department .name-en {
    display: none;
  }

  .header-upper .logo-box .logo-department {
    margin-left: 65px !important;
    margin-top: -48px !important;
  }

  .main-header-six .header-upper .logo-box .logo-department h3 {
    font-size: 1.0em;
    color: #FFF;
    font-weight: 900;
    line-height: 40px;
  }
}*/

/*-- Logo RWD設定 --*/

/*-- Header Logo設定 --*/

@media (max-width: 1024px) {
  .main-header-six .header-upper {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.main-header-six .header-upper .container {
  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;
}

.main-header-six .header-upper .mobile-nav__toggler {
  font-size: 1.5625em;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
  position: absolute;
  right: 20px;
}

@media (min-width: 1574px) {
  .main-header-six .header-upper .mobile-nav__toggler {
    display: none;
  }
}

.main-header-six .header-upper .mobile-nav__toggler:hover {
  color: var(--unique-secondary);
}

@media (max-width: 1199px) {
  /*.main-header-six .header-upper .logo-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0 8px 0;
  }*/
}

.main-header-six .header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  padding-right: 20px;
  margin-top: 0px;
}

@media (max-width: 1200px) {
  .main-header-six .header-info {
    display: none;
  }
}

.main-header-six .header-info__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
}

  .main-header-six .header-info__box > i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.75em;
    color: var(--unique-secondary);
    margin-right: 10px;
  }

  .main-header-six .header-info__box > i>img {
    width:1.2em
  }

  .main-header-six .header-info__box p a {
    color: inherit;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

    .main-header-six .header-info__box p a:hover {
      color: var(--unique-base);
    }

.main-header-six .header-info .header-info__box + .header-info__box {
  border-left: 1px solid #e4e4e4;
  margin-left: 15px;
  padding-left: 15px;
}

.main-header-six .main-menu {
  padding-left: 0;
  padding-right: 0;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0px;
}

  .main-header-six .main-menu .container {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 0px;
    position: relative;
    z-index: 11;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-header-six .main-menu .container-dep {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 0px;
    position: relative;
    z-index: 11;
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-header-six .main-menu .container-en {
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 0px;
    position: relative;
    z-index: 11;
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-header-six .main-menu .thm-btn {
    -ms-flex-negative: 0;
    display: -ms-flexbox;
    -ms-flex-align: center;
    position: relative;
    margin-left: 54px;
    font-size: 1.125em;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    padding: 10.5px 27.5px;
    border-bottom-left-radius: 31.5px;
    border-top-left-radius: 31.5px;
    background-color: #fcad30;
    top: 0;
    right: 0;
  }

.main-header-six .main-menu__list {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  position: absolute;
  right: 0;
  top: -10px;
  background-color: #f1f1f1;
  width: calc(100% - 60px);
  padding-left: 20px;
  padding-right: 0px;
  border-left: 12px solid #4e7a9a;
  box-shadow: 0px 6px 8px 6px rgb(0 0 0 / 15%);
}

.main-header-six .main-menu .main-menu__list > li, .main-header-six .stricky-header .main-menu__list > li {
  padding-top: 16px;
  padding-bottom: 16px;
}

  .main-header-six .main-menu .main-menu__list > li.current > a,
  .main-header-six .main-menu .main-menu__list > li:hover > a {
    color: #b00000;
  }

  .main-header-six .main-menu .main-menu__list > li > a {
    font-family: var(--unique-font);
    font-size: 1.18em;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    -webkit-transition: 500ms;
    transition: 500ms;
    text-transform: capitalize;
  }

.stricky-header-two .thm-btn {
  display: none;
}

.main-header-six .header-upper.style-six {
  margin-bottom: -45px;
  background: transparent;
  padding-top: 10px;
}

.main-header-six .header-upper {
  position: relative;
  z-index: 2;
  background: #414141;
}


  .main-header-six .header-upper:before {
    content: "";
    position: absolute;
    width: 30em;
    max-width: 100%;
    background-color: #0b1436;/*#192e46;*/
    border-bottom-right-radius: 0px;
    top: 0;
    left: 0;
    height: 100%;
  }

@media (min-width: 1575px) {
  /* .container max width*/
  .main-header-six .header-upper:before {
    width: calc(30em + 100vw - 1575px);
  }
}


.main-header-six .header-upper.style-six:before {
  position: absolute;
  content: '';
  background: transparent;
  right: 0;
  top: 0;
  height: 50%;
  width: 500%;
  border-bottom: 3px solid #a50202;
}

.main-header-six .header-upper.style-six .wrapper-box {
  position: relative;
}

.main-header-six .header-upper .wrapper-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.main-header-six .header-upper.style-six .wrapper-box:before {
  position: absolute;
  content: '';
  background: #fff;
  right: -15px;
  top: -10px;
  height: 100%;
  width: 200%;
}



/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 911;
}

  .mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-nav__wrapper.expanded {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--unique-black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--unique-black2);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

  .mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
  }

  .mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /*-- Mobile Logo設定 --*/
  .mobile-nav__content .logo-box {
    padding-top: 0px;
    z-index: 1;
    padding: 8px 0 13px 0;
  }

    .mobile-nav__content .logo-box img {
      width: auto;
      height: 45px;
    }

    .mobile-nav__content .logo-box .logo-name {
      margin-left: 55px;
      margin-top: -30px;
    }

      .mobile-nav__content .logo-box .logo-name h3 {
        font-size: 1.05em;
        color: #FFF;
        font-weight: 900;
        line-height: 15px;
      }

      .mobile-nav__content .logo-box .logo-name span {
        font-size: 1.15em;
        color: #FFF;
        font-weight: 900;
        line-height: 15px;
        margin-left: 4px;
      }

      .mobile-nav__content .logo-box .logo-name .en-name {
        font-size: 1.0em !important;
        color: #FFF;
        font-weight: 900;
        margin-left: 6px;
        margin-top: 0px;
      }

    .mobile-nav__content .logo-box .logo-department {
      margin-left: 62px;
      margin-top: -35px;
    }

      .mobile-nav__content .logo-box .logo-department h3 {
        font-size: 1.05em;
        color: #FFF;
        font-weight: 900;
        line-height: 20px;
      }

        .mobile-nav__content .logo-box .logo-department h3 .dep-color01 {
          font-size: 0.95em;
          color: #ff7022;
          font-weight: 900;
          line-height: 15px;
        }

        .mobile-nav__content .logo-box .logo-department h3 .dep-color02 {
          font-size: 0.95em;
          color: #BCDBFE;
          font-weight: 900;
          line-height: 15px;
        }

        .mobile-nav__content .logo-box .logo-department h3 .dep-color03 {
          font-size: 0.95em;
          color: #B4F09F;
          font-weight: 900;
          line-height: 15px;
        }

        .mobile-nav__content .logo-box .logo-department h3 .dep-color04 {
          font-size: 0.95em;
          color: #F3CF72;
          font-weight: 900;
          line-height: 15px;
        }

      .mobile-nav__content .logo-box .logo-department span {
        font-size: 0.8em;
        color: #FFF;
        font-weight: 900;
        margin-left: 6px;
      }

/*-- Mobile Logo設定 --*/

.mobile-nav__close {
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 1.125em;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

  .mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

    .mobile-nav__content .main-menu__list ul li a {
      padding-left: 16px;
    }

  .mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav__content .main-menu__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #fff;
    font-size: 1.25em;
    font-family: var(--unique-font);
    font-weight: 900;
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
  }

    .mobile-nav__content .main-menu__list li a.expanded {
      color: var(--unique-base);
    }

    .mobile-nav__content .main-menu__list li a button {
      width: 30px;
      height: 30px;
      background-color: var(--unique-base);
      border: none;
      outline: none;
      color: #fff;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
      -webkit-transition: -webkit-transform 500ms ease;
      transition: -webkit-transform 500ms ease;
      transition: transform 500ms ease;
      transition: transform 500ms ease, -webkit-transform 500ms ease;
    }

      .mobile-nav__content .main-menu__list li a button.expanded {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        background-color: #fff;
        color: var(--unique-black);
      }

  .mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 1em;
  }

.mobile-nav__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;
  margin-bottom: 30px;
}

.mobile-nav__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

  .mobile-nav__language img {
    border-radius: 50%;
    margin-right: 10px;
  }

  .mobile-nav__language .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 70px;
  }

  .mobile-nav__language .bootstrap-select > .dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none;
    color: #fff;
  }

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

  .mobile-nav__social a {
    font-size: 1em;
    color: #fff;
    -webkit-transition: 500ms;
    transition: 500ms;
  }

    .mobile-nav__social a + a {
      margin-left: 10px;
    }

    .mobile-nav__social a:hover {
      color: var(--unique-primary);
    }

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

  .mobile-nav__contact li {
    color: #fff;
    font-size: 0.9375em;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

    .mobile-nav__contact li + li {
      margin-top: 15px;
    }

    .mobile-nav__contact li a {
      color: inherit;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

      .mobile-nav__contact li a:hover {
        color: var(--unique-primary);
      }

    .mobile-nav__contact li > i {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: var(--unique-base);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      font-size: 0.875em;
      margin-right: 10px;
      color: #fff;
    }

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

  .search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--unique-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

  .search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
  }

    .search-popup__content form input[type="search"],
    .search-popup__content form input[type="text"] {
      width: 100%;
      background-color: #fff;
      font-size: 1em;
      border: none;
      outline: none;
      height: 66px;
      padding-left: 30px;
    }

  .search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
  }

    .search-popup__content .thm-btn:hover {
      background-color: var(--unique-black);
      color: #fff;
    }

    .search-popup__content .thm-btn i {
      margin: 0;
    }

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  overflow: hidden;
  position: relative;
  margin-top: 0px;
}

  .main-slider.style-two {
    overflow: hidden;
    position: relative;
    margin-top: 0px;
  }

  .main-slider .swiper-slide {
    position: relative;
    background-color: #151414;
  }

  .main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 7000ms ease;
    transition: -webkit-transform 7000ms ease;
    transition: transform 7000ms ease;
    transition: transform 7000ms ease, -webkit-transform 7000ms ease;
  }

  .main-slider .container {
    padding-top: 370px;
    padding-bottom: 180px;
  }

@media (max-width: 1199px) {
  .main-slider .container {
    padding-top: 180px;
  }
}

@media (max-width: 575px) {
  .main-slider .container {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}

.main-slider p {
  margin: 0;
  font-size: 1.25em;
  font-weight: 600;
  color: var(--unique-base);
  -webkit-transition-delay: 0;
  transition-delay: 0;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider h2 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 6.25em;
  line-height: 1.1;
  font-weight: bold;
  letter-spacing: -0.64px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(90px);
  transform: translateY(90px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

@media (max-width: 1199px) {
  .main-slider h2 {
    font-size: 5em;
  }
}

@media (max-width: 991px) {
  .main-slider h2 {
    font-size: 3.75em;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .main-slider h2 {
    font-size: 3.125em;
  }
}

@media (max-width: 375px) {
  .main-slider h2 {
    font-size: 2.3125em;
  }
}

.main-slider .thm-btn {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition-delay: 2500ms;
  transition-delay: 2500ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease, background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease, background 500ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

#main-slider-pagination {
  z-index: 10;
  bottom: auto;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1170px;
  -webkit-transform: translate(-50%, calc(-50% + 95px));
  transform: translate(-50%, calc(-50% + 95px));
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1199px) {
  #main-slider-pagination {
    max-width: 960px;
    -webkit-transform: translate(-50%, calc(-50% + 40px));
    transform: translate(-50%, calc(-50% + 40px));
  }
}

@media (max-width: 575px) {
  #main-slider-pagination {
    display: none;
  }
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  border-radius: 0;
  border-top-right-radius: 8.5px;
  border-bottom-right-radius: 8.5px;
  opacity: 0.4;
  background-color: #fff;
}

  #main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 10px;
  }

  #main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
  }

.main-slider__two .container {
  padding-top: 250px;
  padding-bottom: 170px;
}

@media (max-width: 1199px) {
  .main-slider__two .container {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

@media (max-width: 575px) {
  .main-slider__two .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.main-slider__two h2 {
  font-size: 4.375em;
  line-height: 80px;
  letter-spacing: -0.64px;
  color: #fff;
  margin: 0;
}

  .main-slider__two h2 span {
    position: relative;
  }

    .main-slider__two h2 span::before {
      content: "";
      width: 58px;
      height: 50px;
      background-image: url(../images/main-slider/heart-1-1.png);
      position: absolute;
      bottom: 70%;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background-size: 100%;
      background-repeat: no-repeat;
    }

@media (max-width: 375px) {
  .main-slider__two h2 span::before {
    width: 40px;
    height: 35px;
  }
}

@media (max-width: 1199px) {
  .main-slider__two h2 {
    font-size: 3.75em;
  }
}

@media (max-width: 991px) {
  .main-slider__two h2 {
    font-size: 3.125em;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .main-slider__two h2 {
    font-size: 2.8125em;
  }
}

@media (max-width: 375px) {
  .main-slider__two h2 {
    font-size: 1.875em;
  }
}

.main-slider__two p {
  margin: 0;
  color: #fff;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  margin-top: 25px;
  margin-bottom: 40px;
}

.main-slider__two #main-slider-pagination {
  left: auto;
  right: 50%;
  text-align: right;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transform: translate(50%, calc(-50% + 0px));
  transform: translate(50%, calc(-50% + 0px));
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--page-header);
  position: relative;
  margin-top: 0px;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: grayscale(30%);
  filter: grayscale(30%);
  opacity: 0.6;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-header .container {
  position: relative;
  z-index: 1;
  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-top: 0px; 20211225 */
  /*  padding-bottom: 120px; 20211225 */
  padding-top: 25px; /* 20211225 */
  padding-bottom: 20px; /* 20211225 */
}

@media (min-width: 1200px) {
  .page-header .container {
    /*  padding-top: 00px; 20211225 */
    /* padding-bottom: 20px; 20211225 */
  }
}

@media (max-width: 575px) {
  .page-header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.page-header .container h2 {
  margin: 0;
  line-height: 1;
  color: #fff;
  /*font-size: 3.125em; 20211227 */
  font-size: 2em; /* 20211227 */
  font-weight: 700;
  letter-spacing: -0.64px;
  margin-left: 45px;
  /*margin-top: 100px; 20211225 */
  margin-top: 0px; /* 20211225 */
  margin-bottom: 0px; /* 20211225 */
}

@media (max-width: 575px) {
  .page-header .container h2 {
    margin-bottom: 30px;
    font-size: 2.5em;
  }
}

.page-header .thm-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  background-color: #996c37; /*var(--unique-base);*/
  padding: 20px 30px 20px 20px;
  border-bottom-left-radius: 27px;
  border-top-left-radius: 27px;
  margin-top: 0px;
}

  .page-header .thm-breadcrumb li {
    font-weight: bold;
    font-size: 0.875em;
    color: #fff;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

.thm-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  background-color: var(--unique-base);
  padding: 20px 30px 20px 40px;
  border-bottom-left-radius: 27px;
  border-top-left-radius: 27px;
}

  .thm-breadcrumb li {
    font-weight: bold;
    font-size: 0.875em;
    color: #fff;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

    .thm-breadcrumb li:not(:last-of-type) {
      margin-right: 6px;
    }

    .thm-breadcrumb li a {
      color: inherit;
    }

    .thm-breadcrumb li span {
      border-bottom: 0px solid #fff;
      display: block;
      line-height: 1;
    }

@media (min-width: 375px)and (max-width: 1573px) {
  .page-header .container h2 {
    margin-top: 0px;
  }
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map__home {
  width: 100%;
}

  .google-map__home iframe {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 637px;
  }

.google-map__contact {
  width: 100%;
}

  .google-map__contact iframe {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 497px;
  }

.google-map__event {
  width: 100%;
}

  .google-map__event iframe {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 440px;
    border-radius: 15px;
  }

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

.client-carousel__has-border-top {
  border-top: 0px solid #e4e4e4;
  padding-top: 60px;
}

.client-carousel__has-top-shadow {
  -webkit-box-shadow: 0px -1px 0px 0px RGBA(227, 227, 227, 0.004);
  box-shadow: 0px -1px 0px 0px RGBA(227, 227, 227, 0.004);
}

.client-carousel .swiper-slide {
  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;
}

.client-carousel img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 1;
  max-width: 140%;
  min-height: 70px;
  border: 1px solid #CCC;
}

  .client-carousel img:hover {
    opacity: .8;
  }




/*--------------------------------------------------------------
# Event
--------------------------------------------------------------*/
.event-grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .event-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.event-home-two {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 991px) {
  .event-home-two .block-title {
    margin-bottom: 0;
  }
}

.event-infos__single {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 15px;
}

@media (min-width: 768px) {
  .event-infos__single {
    padding: 60px;
  }
}

.event-infos__single h3 {
  margin: 0;
  color: #fff;
  font-size: 1.18em;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .event-infos__single h3 {
    font-size: 1.5em;
    margin-bottom: 26px;
  }
}

.event-infos__single p {
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  line-height: 30px;
  margin: 0;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .event-infos__single p {
    margin-bottom: 30px;
  }
}

.event-infos__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

  .event-infos__social a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: var(--unique-secondary);
    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;
    text-align: center;
    font-size: 0.875em;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
  }

    .event-infos__social a + a {
      margin-left: 10px;
    }

    .event-infos__social a:hover {
      background-color: var(--unique-secondary);
      color: #fff;
    }

    .event-infos__social a:nth-child(2) {
      background-color: var(--unique-special);
      color: #fff;
    }

      .event-infos__social a:nth-child(2):hover {
        color: var(--unique-special);
        background-color: #fff;
      }

    .event-infos__social a:nth-child(3) {
      background-color: var(--unique-base);
      color: #fff;
    }

      .event-infos__social a:nth-child(3):hover {
        color: var(--unique-base);
        background-color: #fff;
      }

    .event-infos__social a:nth-child(4) {
      background-color: var(--unique-primary);
      color: #fff;
    }

      .event-infos__social a:nth-child(4):hover {
        color: var(--unique-primary);
        background-color: #fff;
      }

.event-infos__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media (min-width: 768px) {
  .event-infos__list-has-icons {
    padding-top: 10px;
  }
}

.event-infos__list-has-icons li {
  padding-left: 32px;
}

  .event-infos__list-has-icons li + li {
    margin-top: 10px;
  }

.event-infos__list li {
  position: relative;
  color: #fff;
  font-size: 1em;
  line-height: 30px;
  font-weight: 500;
}

  .event-infos__list li a {
    color: inherit;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
  }

    .event-infos__list li a:hover {
      color: var(--unique-base);
    }

  .event-infos__list li > i {
    color: var(--unique-base);
    font-size: 1.0625em;
    position: absolute;
    top: 7px;
    left: 0;
  }

.event-details [class*=col-] {
  margin-bottom: 40px;
}

.event-details h3 {
  margin: 0;
  font-size: 1.875em;
  color: var(--unique-black);
  font-weight: bold;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .event-details h3 {
    font-size: 2.5em;
    margin-bottom: 50px;
  }
}

.event-details .img-fluid {
  border-radius: 15px;
}

.event-details p {
  margin: 0;
  font-size: 1em;
  line-height: 1.625;
  color: #7e7e7e;
  font-weight: 500;
}

  .event-details p + p {
    margin-top: 10px;
  }

@media (min-width: 768px) {
  .event-details p + p {
    margin-top: 40px;
  }
}

@media (min-width: 768px) {
  .event-details p {
    font-size: 1.125em;
    line-height: 34px;
    padding-right: 17px;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-3-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media (max-width: 991px) {
  .gallery-3-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-3-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.gallery-home-two .container {
  position: relative;
}

.gallery-home-two__dots {
  position: absolute;
  top: -70px;
  left: calc(100% - 80px);
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.gallery-home-one .container-fluid {
  position: relative;
  z-index: 10;
  margin-bottom: -181px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1920px;
  width: 100%;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/

  
  

.divider {
  position: relative;
  margin: 90px 0 60px 0;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-stopper:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: calc(50% - 7px);
  width: 14px;
  height: 12px;
  background-color: white;
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-dot:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -9px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background-color: goldenrod;
  border: 1px solid rgb(48,49,51);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}

  
.blog-navigations {
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-navigations {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.blog-navigations > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  font-family: var(--heading-font);
  font-size: 1.25em;
  line-height: 1.67;
  font-weight: bold;
  color: var(--unique-black);
  letter-spacing: -0.64px;
  background-color: #f1f1f1;
  border-radius: 15px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

@media (min-width: 768px) {
  .blog-navigations > a {
    font-size: 1.5em;
  }
}

.blog-navigations > a:hover {
  background-color: var(--unique-secondary);
  color: #fff;
}

@media (min-width: 768px) {
  .blog-navigations > a {
    padding: 50px;
  }
}
 
  

.divider {
  position: relative;
  margin: 90px 0 60px 0;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-stopper:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: calc(50% - 7px);
  width: 14px;
  height: 12px;
  background-color: white;
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-dot:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -9px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background-color: goldenrod;
  border: 1px solid rgb(48,49,51);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}


   

.blog-navigations {
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-navigations {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.blog-navigations > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  font-family: var(--heading-font);
  font-size: 1.25em;
  line-height: 1.67;
  font-weight: bold;
  color: var(--unique-black);
  letter-spacing: -0.64px;
  background-color: #f1f1f1;
  border-radius: 15px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

@media (min-width: 768px) {
  .blog-navigations > a {
    font-size: 1.5em;
  }
}

.blog-navigations > a:hover {
  background-color: var(--unique-secondary);
  color: #fff;
}

@media (min-width: 768px) {
  .blog-navigations > a {
    padding: 50px;
  }
}

/*--------------------------------------------------------------
# News-details Style2
--------------------------------------------------------------*/

.news-details {
}
  /*
.news-details:before {
    content: "";
    position: absolute;
    width: 3000px;
    background-color: transparent;
    border-bottom-right-radius: 10px;
    top: 160px;
    left: 0;
    height: 10%;
    background-repeat: no-repeat;
    background-image: url(../images/shapes/divider-inner-ind-news.png);
}
*/
  .news-details .sec-title h2,.news-details .sec-title h3 {
    position: relative;
    display: block;
    /* font-size: 1.875em; 20211227 */
    font-size: 1.5em; /* 20211227 */
    line-height: 40px;
    color: #2f2f2f !important;
    font-weight: 900;
    padding: 0px 0;
    text-align: left;
  }

  .news-details .sec-title .seperater {
    position: relative;
    margin-bottom: 60px !important;
    margin-top: 20px !important;
    width: 136px;
  }

  .news-details .sec-title.light .seperater:before {
    background-color: #be2323;
  }

  .news-details .sec-title .seperater:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 2px;
    background-color: #222222;
  }

  .news-details .sec-title.brown .seperater:after {
    background-color: #cea158;
  }

  .news-details .sec-title .seperater:after {
    position: absolute;
    content: '';
    left: 50%;
    top: -6px;
    width: 15px;
    height: 15px;
    margin-left: -6px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background-color: #fda700;
  }

 
_delete_.ind-zone-shape::before {
  content: "";
  width: 7em; /*185px;*/
  height: 7em; /*185px;*/
  opacity: 1;
  background-size: 100% 100%; /* 20211227 */
  background-image: url(../images/shapes/element27.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -90px; /*-180px;*/
  right: 0.5em; /* 50px;*/
}

.service-six .container::before {
  content: "";
  width: 7em; /*185px;*/
  height: 7em; /*185px;*/
  opacity: 1;
  background-size: 100% 100%; /* 20211227 */
  background-image: url(../images/shapes/element27.png);
  background-repeat: no-repeat;
  position: absolute;
  margin-top: -130px; /*-180px;*/
  right: 0.5em; /* 50px;*/
}

@media only screen and (min-width: 961px) and (max-width:1199px) {
  .service-six .container::before {
    margin-top: calc(-40px - (100vw - 961px)*0.37); /*-40~-130(961~1199)*/
  }
}

@media only screen and (min-width: 1199px) and (max-width:1441px) {
  .service-six .container::before {
    margin-top: calc(-130px + (100vw - 1199px)*0.33); /*-130~-50(1200~1441)*/
  }
}

@media only screen and (min-width: 1441px) and (max-width:1920px) {
  .service-six .container::before {
    margin-top: calc(-50px - (100vw - 1441px)*0.16); /*-50~-130(1442~1920)*/
  }
}

.news-details h3 {
  margin: 0;
  color: var(--unique-black);
  font-weight: bold;
  font-size: 1.875em;
  letter-spacing: -0.64px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.news-details h4 {
  margin: 0;
  color: var(--unique-black);
  font-weight: bold;
  font-size: 1em;
  letter-spacing: -0.64px;
  margin-bottom: 15px;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  .news-details h3 {
    /*font-size: 2.25em;
    margin-bottom: 10px;*/
  }

  .news-details h4 {
    font-size: 1em;
    margin-bottom: 15px;
  }
}

.sec-title {
  margin-bottom: 30px;
}

  .sec-title .text-decoration {
    position: relative;
    height: 10px;
    width: 50px;
    display: block;
    margin-left: 7px;
  }

    .sec-title .text-decoration::before {
      position: absolute;
      content: "";
      left: 20px;
      top: 0px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #fd4a36;
    }

    .sec-title .text-decoration .right, .sec-title .text-decoration .left {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 10px;
      width: 100%;
    }

      .sec-title .text-decoration .right::before {
        position: absolute;
        content: "";
        right: 0px;
        top: 3px;
        width: 5px;
        height: 5px;
        background-color: #fd4a36;
        border-radius: 50%;
      }

      .sec-title .text-decoration .left::before {
        position: absolute;
        content: "";
        left: 0px;
        top: 3px;
        width: 5px;
        height: 5px;
        background-color: #fd4a36;
        border-radius: 50%;
      }

      .sec-title .text-decoration .right::after {
        position: absolute;
        content: "";
        right: 10px;
        top: 3px;
        width: 5px;
        height: 5px;
        background-color: #fd4a36;
        border-radius: 50%;
      }

      .sec-title .text-decoration .left::after {
        position: absolute;
        content: "";
        left: 10px;
        top: 3px;
        width: 5px;
        height: 5px;
        background-color: #fd4a36;
        border-radius: 50%;
      }

.news-details p.para_point {
  font-size: 1.4375em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #CC0000 !important;
}

.news-details p span {
  font-size: 1.25em;
  font-weight: bold;
  padding: 6px 10px;
  color: #000 !important;
  background: transparent;
  margin-right: 10px;
  border-radius: 25px;
}

.divider {
  position: relative;
  margin: 90px 0 60px 0;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-stopper:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: calc(50% - 7px);
  width: 14px;
  height: 12px;
  background-color: white;
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-dot:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -9px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background-color: goldenrod;
  border: 1px solid rgb(48,49,51);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}



.news-details p {
  font-size: 1em;
  line-height: 30px;
  margin: 0;
  margin-top: 18px;
  margin-bottom: 18px;
}

  .news-details p + p {
    margin-top: 15px;
  }

@media (min-width: 768px) {
  .news-details p + p {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .news-details p {
    font-size: 1.15em;
    line-height: 35px;
    text-align: justify;
  }
}

.pagination-box p {
  font-size: 1em;
  line-height: 30px;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 0px;
}

.pagination-box .totel-item span {
  font-size: 1.2em;
  line-height: 30px;
  font-weight: 900;
  color: #CC0000 !important;
  background: transparent;
  margin: 0;
  margin-top: 7px;
  margin-bottom: 0px;
  border-radius: 0px !important;
}



.news-details .other-links {
  position: relative;
  float: right;
  display: flex;
}

  .news-details .other-links .social-links-one {
    position: relative;
    float: right;
    margin-left: 25px;
    margin-top: 30px;
    padding-left: 26px;
  }

  .news-details .other-links .useful-links-one {
    position: relative;
    float: right;
    margin-left: 25px;
    margin-top: 30px;
    padding-left: 26px;
  }

  .news-details .other-links .social-links-one:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    height: 30px;
    border-left: 0px solid rgba(0, 0, 0, 0.10);
  }

  .news-details .other-links .useful-links-one:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    height: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
  }

.social-links-one li:first-child {
  margin-left: 0;
}

.social-links-one li {
  position: relative;
  float: left;
  margin-left: 10px;
}

  .social-links-one li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0.8125em;
    line-height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    text-align: center;
    background: #ffffff;
    color: #aaaaaa;
    border-radius: 50%;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
  }



.useful-links-one li:first-child {
  margin-left: 0;
}

.useful-links-one li {
  position: relative;
  float: left;
  margin-left: 10px;
}

  .useful-links-one li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 1.25em;
    line-height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    text-align: center;
    background: #ffffff;
    color: #aaaaaa;
    border-radius: 30%;
    padding: 10px 10px 6px 10px;
    top: -5px;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
  }

.color-print {
  color: #f35600;
}

.color-share {
  color: #1d8eda;
}

.color-download {
  color: #03ad06;
}

.news-details .services-row {
  position: relative;
  margin-bottom: 30px;
}

  .news-details .services-row .outer-container {
    position: relative;
    padding: 30px 20px 20px 30px;
    color: #ffffff;
  }

  .news-details .services-row .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

    .news-details .services-row .image-layer:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #dfdfdf;
      opacity: 0.93;
    }

  .news-details .services-row .sec-title {
    margin-bottom: 50px;
  }

.sec-title.with-separator h2 {
  padding-bottom: 27px;
}

.sec-title.light h2 {
  color: #ffffff;
}

/*.sec-title h2 {
  position: relative;
  display: block;
  font-size: 2.25em;
  line-height: 20px;
  color: #222222;
  font-weight: 700;
  margin-bottom: 0px;
}*/

.sec-title .separator {
  position: relative;
  width: 36px;
  height: 0;
  margin: 0 auto;
  top: -15px;
}

.sec-title.light .separator:before, .sec-title.light .separator:after {
  border-color: #00aa55;
}

.sec-title .separator:before {
  content: '';
  position: absolute;
  top: -7px;
  left: 100%;
  margin-left: 10px;
  width: 90px;
  border-bottom: 2px solid #00aa55;
}

.sec-title.light .separator .cir {
  border-color: #167667;
}

.sec-title .separator .c-1 {
  left: 0;
}

.sec-title .separator .cir {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #00aa55;
  border-radius: 50%;
}

.sec-title.light .separator .c-2 {
  background: #167667;
}

.sec-title .separator .c-2 {
  left: 7px;
  background: #00aa55;
}

.sec-title .separator .c-3 {
  left: auto;
  right: 0;
}

.news-details .services-row ul li {
  position: relative;
  padding-left: 8px;
  padding-top: 8px;
  font-size: 0.95em;
  ;
  line-height: 24px;
  font-weight: normal;
  font-family: '微軟正黑體', sans-serif;
  margin-bottom: 10px;
  margin-right: 8px;
  text-align: left;
}

  .news-details .services-row ul li i {
    margin-right: 12px;
  }

  .news-details .services-row ul li a {
    position: relative;
    display: inline-block;
    color: #000;
  }

.news-details .category ul .category-item-02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #dddddd;
  height: 100%;
  padding: 14px;
}

.category .category-icon .img-fluid {
  max-width: 100%;
  height: 55px;
  width: 30px;
}

.category .category-icon i {
  max-width: 100%;
  width: 30px;
  padding-top: 0;
}

.news-details .download-links {
  position: relative;
}

.download-links h3 {
  position: relative;
  display: block;
  padding-bottom: 7px;
  font-weight: 700;
  color: #222222;
  font-size: 1.125em;
  margin-bottom: 30px;
  margin-top: 20px;
  text-align: left;
}

  .download-links h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    border-bottom: 2px solid #00aa55;
  }

.news-details .download-links ul {
  position: relative;
  display: block;
  background: #e5e5e5;
  padding: 20px 35px 5px;
  margin-bottom: 30px;
}

  .news-details .download-links ul li {
    position: relative;
    line-height: 24px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    padding-bottom: 5px;
    margin-bottom: 5px;
  }

    .news-details .download-links ul li a {
      position: relative;
      display: block;
      line-height: 24px;
      padding: 10px 0px;
      padding-left: 30px;
      color: #000;
    }

    .news-details .download-links ul li .icon {
      position: absolute;
      left: 0;
      top: 9px;
      line-height: 24px;
      font-size: 1.25em;
    }

    .news-details .download-links ul li .ttl {
      position: relative;
      float: left;
    }

    .news-details .download-links ul li .info {
      position: relative;
      float: right;
    }

    .news-details .download-links ul li i {
      margin-left: 20px;
    }

    .news-details .download-links ul li:last-child {
      border-bottom: 0;
    }

    .news-details .download-links ul li:hover a{
      color:#1c704e;
    }

/***
====================================================================
		Post Controls
====================================================================
 ***/

.post-controls {
  position: relative;
  padding-bottom: 50px;
  border-bottom: 0px solid rgba(0,0,0,0.10);
  margin-bottom: 50px;
}

  .post-controls .inner {
    position: relative;
    display: block;
  }

  .post-controls:before {
    content: '';
    position: absolute;
    left: 49.5%;
    height: 30px;
    top: 2px;
    border-left: 1px solid rgba(0,0,0,0.10);
  }

  .post-controls .prev-post {
    position: relative;
    float: left;
    text-align: left;
  }

    .post-controls .prev-post a {
      position: relative;
      display: block;
      padding-left: 0px;
      padding-top: 0px;
    }

    .post-controls .prev-post .upper-title {
      position: relative;
      left: 0;
      top: 0;
      display: block;
      font-size: 1.25em;
      line-height: 20px;
      color: #585f5f;
      font-weight: 900;
      text-transform: capitalize;
    }

      .post-controls .prev-post .upper-title .icon {
        position: relative;
        vertical-align: top;
        background: rgb(78 205 153 / 60%);
        padding: 10px 16px 10px 12px;
        margin-top: -12px;
        border-radius: 25px;
      }

    .post-controls .prev-post .txt {
      position: relative;
      display: block;
      font-size: 1em;
      line-height: 28px;
      color: #132728;
      font-weight: 700;
      font-family: '微軟正黑體', serif;
    }

    .post-controls .prev-post .thumb {
      position: absolute;
      left: 0;
      top: 30px;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      overflow: hidden;
      transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -webkit-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
    }

      .post-controls .prev-post .thumb img {
        position: relative;
        display: block;
        width: 70px;
        height: 70px;
        border-radius: 50%;
      }

  .post-controls .next-post {
    position: relative;
    float: right;
    text-align: right;
  }

    .post-controls .next-post a {
      position: relative;
      display: block;
      padding-right: 0px;
      padding-top: 0px;
    }

    .post-controls .next-post .upper-title {
      position: relative;
      right: 0px;
      top: 0;
      display: block;
      font-size: 1.25em;
      line-height: 20px;
      color: #585f5f;
      font-weight: 900;
      text-transform: capitalize;
    }

      .post-controls .next-post .upper-title .icon {
        position: relative;
        vertical-align: top;
        background: rgb(122 180 217 / 60%);
        padding: 10px 12px 10px 16px;
        margin-top: -12px;
        border-radius: 25px;
      }

    .post-controls .next-post .txt {
      position: relative;
      display: block;
      font-size: 1em;
      line-height: 28px;
      color: #132728;
      font-weight: 700;
      font-family: '微軟正黑體', serif;
    }

    .post-controls .next-post .thumb {
      position: absolute;
      right: 0;
      top: 30px;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      overflow: hidden;
      transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -webkit-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
    }

      .post-controls .next-post .thumb img {
        position: relative;
        display: block;
        width: 70px;
        height: 70px;
        border-radius: 50%;
      }

    .post-controls .prev-post:hover .thumb,
    .post-controls .next-post:hover .thumb {
      opacity: 0.50;
    }
     
    
     

/* comment one */
.comment-one__single {
  position: relative;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .comment-one__single {
    padding-left: 130px;
    padding-bottom: 50px;
    margin-bottom: 60px;
  }
}

.comment-one__single > img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .comment-one__single > img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.comment-one__single h3 {
  margin: 0;
  color: var(--unique-black);
  font-weight: bold;
  line-height: 1;
  font-size: 1.25em;
  margin-bottom: 10px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .comment-one__single h3 {
    margin-bottom: 0;
  }
}

.comment-one__single p {
  margin: 0;
}

  .comment-one__single p + p {
    margin-top: 10px !important;
  }

@media (min-width: 768px) {
  .comment-one__single p + p {
    padding-right: 63px;
    margin-top: 30px !important;
  }
}

.comment-one__date {
  margin: 0;
  font-size: 1em;
  line-height: 1;
  color: var(--unique-special);
}

.comment-one .thm-btn {
  font-size: 0.875em;
  line-height: 1;
  padding: 19.5px 30px;
  margin-top: 20px;
}

  .comment-one .thm-btn:hover {
    background-color: var(--unique-black);
    color: #fff;
  }

@media (min-width: 768px) {
  .comment-one .thm-btn {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog-sidebar {
  margin-bottom: 80px;
}

.blog-sidebar__single {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 35px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .blog-sidebar__single {
    padding: 28px 30px 40px 30px;
  }
}

.blog-sidebar__single h3 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 900;
  color: var(--unique-black);
  line-height: 1;
  margin-bottom: 30px;
}

.blog-sidebar__single .list-unstyled {
  margin-bottom: 0;
}

.blog-sidebar__search form {
  width: 100%;
  position: relative;
}

  .blog-sidebar__search form input {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    border: none;
    outline: none;
    color: #323232;
    font-size: 1.125em;
    font-weight: 900;
    padding-left: 25px;
    background-color: #f1f1f1;
  }

  .blog-sidebar__search form button[type="submit"] {
    border: none;
    outline: none;
    width: 50px;
    height: 60px;
    padding: 2px 0 0 0;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 1em;
    background-color: rgb(159 157 157);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .blog-sidebar__search form ::-webkit-input-placeholder {
    opacity: 1;
    color: #fff;
  }

  .blog-sidebar__search form :-ms-input-placeholder {
    opacity: 1;
    color: #fff;
  }

  .blog-sidebar__search form ::-ms-input-placeholder {
    opacity: 1;
    color: #fff;
  }

  .blog-sidebar__search form ::placeholder {
    opacity: 1;
    color: #626262;
  }

.blog-sidebar__post {
  margin-top: -20px;
  margin-bottom: 0;
}

  .blog-sidebar__post li {
    position: relative;
    padding-left: 50px;
    min-height: 60px;
    padding-top: 20px;
  }

    .blog-sidebar__post li::before {
      content: "";
      border-radius: 15px;
      background-color: #fff;
      width: calc(100% + 70px);
      height: 100%;
      position: absolute;
      top: 0;
      left: -35px;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

    .blog-sidebar__post li:hover::before {
      opacity: 1;
      visibility: visible;
    }

    .blog-sidebar__post li h3 {
      margin-bottom: 0;
      font-size: 1.25em;
      position: relative;
      font-weight: bold;
      font-family: var(--heading-font);
      color: #7e7e7e;
      line-height: 26px;
      z-index: 10;
    }

    .blog-sidebar__post li a {
      color: inherit;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

      .blog-sidebar__post li a:hover {
        color: var(--unique-secondary);
      }

    .blog-sidebar__post li > img {
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
      z-index: 10;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      background: #082359;
    }

.blog-sidebar__category {
  margin-bottom: 0px;
  position: relative;
  bottom: -15px;
  margin-top: -30px;
}

  .blog-sidebar__category li {
    position: relative;
  }

    .blog-sidebar__category li::before {
      content: '';
      position: absolute;
      border-radius: 0px;
      left: -35px;
      top: 0;
      height: 100%;
      width: calc(100% + 70px);
      background-color: #fff;
      opacity: 0;
      -webkit-transition: 500ms ease;
      transition: 500ms ease;
    }

    .blog-sidebar__category li:hover::before {
      opacity: 1;
    }

    .blog-sidebar__category li:hover a {
      color: var(--unique-secondary);
    }

    .blog-sidebar__category li a {
      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;
      color: #7e7e7e;
      font-size: 1.125em;
      font-weight: bold;
      position: relative;
      line-height: 42px;
      -webkit-transition: 500ms ease;
      transition: 500ms ease;
    }

      .blog-sidebar__category li a::after {
        content: "\f105";
        font-weight: 400;
        font-family: "Font Awesome 5 Pro";
      }

.blog-sidebar__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -15px;
}

  .blog-sidebar__tags li {
    color: #7e7e7e;
    font-size: 1.125em;
    line-height: 1;
    margin-top: 15px;
  }

    .blog-sidebar__tags li a {
      color: inherit;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

      .blog-sidebar__tags li a:hover {
        color: var(--unique-base);
      }

    .blog-sidebar__tags li:not(:last-of-type)::after {
      content: ",";
      margin-right: 5px;
    }

.blog-sidebar__comments {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: -5px;
}

  .blog-sidebar__comments li {
    position: relative;
    padding-left: 60px;
    color: #7e7e7e;
    font-size: 1.125em;
    line-height: 26px;
    font-weight: 900;
    text-align: left;
  }

    .blog-sidebar__comments li + li {
      margin-top: 20px;
    }

    .blog-sidebar__comments li a {
      color: inherit;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

      .blog-sidebar__comments li a:hover {
        color: var(--unique-black);
      }

    .blog-sidebar__comments li::before {
      content: "\f30b";
      font-family: "Font Awesome 5 Pro";
      font-weight: 900;
      background-color: var(--unique-special);
      width: 30px;
      height: 30px;
      color: #fff;
      font-size: 1em;
      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: 50%;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }

.bg-lightblue {
  background: #e5f2f8 !important;
}

.ind-sidebar__single {
  padding: 27px 30px 50px 30px;
}

.ind-sidebar__single {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 25px 25px;
  margin-top: 30px;
}

.ind-one__box {
  text-align: center;
  position: relative;
  margin-bottom: 0px;
}

  .ind-one__box h3 {
    color: var(--unique-black);
    font-size: 1.1875em;
    font-weight: 900;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 0;
    letter-spacing: -0.64px;
  }

    .ind-one__box h3 a {
      color: inherit;
    }

  .ind-one__box p {
    margin: 0;
    font-size: 1.125em;
    line-height: 34px;
    color: #7e7e7e;
    width: 100%;
    max-width: 192px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }

  .ind-one__box:hover .ind-one__icon::before,
  .ind-one__box:hover .ind-one__icon::after {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    opacity: 1;
  }

  .ind-one__box:hover .ind-one__icon-inner::before {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

.ind-one__icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: relative;
}

  .ind-one__icon::before, .ind-one__icon::after {
    content: "";
    width: 9px;
    height: 140px;
    background-color: inherit;
    border-radius: 4.5px;
    position: absolute;
    top: -15px;
    left: 30px;
    z-index: 1;
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    opacity: 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  }

  .ind-one__icon::after {
    left: 40px;
    top: -30px;
  }

.ind-one__icon-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

  .ind-one__icon-inner::before {
    content: "";
    top: -4px;
    left: -4px;
    width: 107px;
    height: 107px;
    background-color: #fff;
    position: absolute;
    opacity: 0.2;
    -webkit-transform: translate(-30%, -30%);
    transform: translate(-30%, -30%);
    border-radius: 50%;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
  }

  .ind-one__icon-inner::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #fff;
    opacity: 0.2;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .ind-one__icon-inner i {
    color: #fff;
    font-size: 2.6875em;
  }


/*--------------------------------------------------------------
# News Sidebar Style 02
--------------------------------------------------------------*/
/* Sidebar */

.sidebar .sidebar-widget {
  position: relative;
  display: block;
  margin-bottom: 20px;
  margin-top: 30px;
}

.sidebar-widget .widget-inner {
  position: relative;
  display: block;
}

.sidebar-widget::before {
  content: "";
  width: 254px;
  height: 247px;
  background-image: url(../images/shapes/video-dot-1-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 60px;
  left: -145px;
  z-index: -1;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.sidebar-title {
  position: relative;
  margin-bottom: 20px;
}

  .sidebar-title h4 {
    position: relative;
    display: block;
    font-size: 1.25em;
    line-height: 20.8px;
    color: #222222;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px;
  }

.sidebar .search-box .form-group {
  position: relative;
  margin: 0px;
}

  .sidebar .search-box .form-group input[type="text"],
  .sidebar .search-box .form-group input[type="search"] {
    position: relative;
    line-height: 30px;
    padding: 12px 50px 12px 20px;
    border: 0px solid #d0d0d0;
    background: #f1f1f1f1;
    color: #061138;
    display: block;
    font-size: 0.875em;
    width: 100%;
    height: 56px;
    border-radius: 2px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-weight: 900;
  }

  .sidebar .search-box .form-group input:focus {
    border-color: #00aa55;
  }

  .sidebar .search-box .form-group button {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 56px;
    width: 60px;
    line-height: 56px;
    display: block;
    font-size: 1.125em;
    color: #aaaaaa;
    background: none;
    font-weight: normal;
  }

    .sidebar .search-box .form-group input:focus + button,
    .sidebar .search-box .form-group button:hover {
      color: #00aa55;
    }

.sidebar .services-widget {
  position: relative;
}

  .sidebar .services-widget .links {
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 10%);
    padding: 18px 18px;
    border-radius: 30px;
  }

    .sidebar .services-widget .links li {
      position: relative;
      display: block;
      font-size: 1.1875em;
      color: #222222;
      text-align: left;
      font-family: '微軟正黑體', sans-serif;
      border-bottom: 0px solid rgba(0, 0, 0, 0.07);
      padding: 1px 0px;
    }

      .sidebar .services-widget .links li:last-child {
        border-bottom: 0;
      }

      .sidebar .services-widget .links li a {
        position: relative;
        display: block;
        padding: 15px 0px 15px;
        line-height: 30px;
        padding-left: 90px;
        min-height: 30px;
        color: #222222;
        font-weight: 900;
        border-radius: 0px;
        box-shadow: 0px 25px 30px 0px rgb(0 0 0 / 7%);
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        border-bottom: 1px solid rgb(227 227 227);
        /*word-break:keep-all; 20211225 */
        word-break: break-word; /* 20211227 */
      }

      .sidebar .services-widget .links li.current a {
        background: #00a352;
        color: #ffffff;
      }

      .sidebar .services-widget .links li a:hover {
        background: #F3CF72;
        color: #000;
      }

      .sidebar .services-widget .links li .icon {
        position: absolute;
        left: 35px;
        top: 0px;
        line-height: 60px;
        /* font-size: 1.5625em; 20211227 */
        font-size: 1.2em; /* 20211227 */
        color: #00aa55;
        font-weight: 400;
      }

      .sidebar .services-widget .links li a:hover .icon,
      .sidebar .services-widget .links li.current a .icon {
        color: #ffffff;
      }

.sidebar .cat-widget {
  position: relative;
}

.sidebar .cat-links {
  position: relative;
  background: #ffffff;
  padding: 20px 20px 12px;
  border-radius: 15px;
}

  .sidebar .cat-links li {
    position: relative;
    display: block;
    font-size: 1em;
    color: #222222;
    text-transform: capitalize;
    font-family: '微軟正黑體', sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

    .sidebar .cat-links li:last-child {
      border-bottom: 0;
    }

    .sidebar .cat-links li a {
      position: relative;
      display: block;
      padding: 11px 0px 10px 0;
      padding-left: 30px;
      line-height: 30px;
      min-height: 50px;
      color: #737373;
      font-weight: 900;
      font-size: 1.1875em;
      text-align: left;
      transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -webkit-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
    }

      .sidebar .cat-links li a:after {
        content: "\f105";
        font-family: 'Font Awesome 5 Free';
        position: absolute;
        right: 0;
        top: 11px;
        font-size: 1.25em;
        color: #a61500;
        font-weight: 900;
        opacity: 0;
      }

      .sidebar .cat-links li a:before {
        content: "\f105";
        font-family: 'Font Awesome 5 Free';
        position: absolute;
        right: 0;
        top: 11px;
        font-size: 1.25em;
        color: #CCC;
      }

*, ::after, ::before {
  box-sizing: border-box;
}

.sidebar .cat-links li a:hover,
.sidebar .cat-links li.current a {
  color: #a61500;
}

  .sidebar .cat-links li a:hover:after,
  .sidebar .cat-links li.current a:after {
    opacity: 1;
  }

/*--------------------------------------------------------------
# Sidebar Content Style 02
--------------------------------------------------------------*/
.news-details .content-side {
  position: relative;
  margin-bottom: 30px;
  margin-top: 0px;
  min-height: 1330px;
}

.news-details .content-inner {
  position: relative;
  display: block;
  margin-right: -30px;
  padding-right: 35px;
}

.events-list {
  position: relative;
}

  .events-list .event-block {
    margin-bottom: 0;
  }

/*.carousel-box .event-block {
  position: relative;
  margin-bottom: 0px;
}*/

  .carousel-box .event-block .content-box .cat-info {
    position: relative;
    margin-bottom: 10px;
  }

.news-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.col-inner {
  margin-right: 25px;
}

.event-block {
  position: relative;
  margin-bottom: 30px;
}

  .event-block .inner-box {
    position: relative;
    display: block;
    padding: 20px 0px;
  }

    .event-block .inner-box:before {
      content: '';
      position: absolute;
      right: -30px;
      top: -2px;
      left: -30px;
      bottom: -1px;
      display: block;
      background: #ffffff;
      opacity: 0;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

  .event-block .content-box {
    position: relative;
    display: block;
    padding-left: 140px;
    min-height: 120px;
    padding-top: 30px;
  }

    .event-block .content-box .date-box {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100px;
      height: 140px;
      color: #222222;
      text-align: center;
      font-family: '微軟正黑體', sans-serif;
    }

      .event-block .content-box .date-box:before {
        content: '';
        position: absolute;
        left: 50px;
        top: 12px;
        height: 100%;
        border-left: 2px solid rgba(0, 0, 0, 0.10);
      }

      .event-block .content-box .date-box .date {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -43px;
        width: 100px;
        height: 110px;
        padding-top: 5px;
        font-size: 1.875em;
        background: #ffffff;
        border: 2px solid rgba(0, 0, 0, 0.10);
        z-index: 3;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

        .event-block .content-box .date-box .date .day {
          position: relative;
          display: block;
          line-height: 35px;
          font-size: 1.05em;
          font-weight: bold;
        }

        .event-block .content-box .date-box .date .month {
          position: relative;
          display: block;
          font-size: 0.75em;
          font-weight: bold;
          text-transform: uppercase;
          color: #757575;
          line-height: 35px;
        }

        .event-block .content-box .date-box .date .year {
          position: relative;
          display: block;
          font-size: 0.5em;
          font-weight: bold;
          text-transform: uppercase;
          color: #757575;
          line-height: 25px;
        }

    .event-block .content-box .content {
      position: relative;
      display: block;
      padding-right: 160px;
      text-align: left;
    }

    /*list.aspx*/
    .event-block .content-box .cat-info {
      position: relative;
      margin-bottom: 20px;
    }

    /*list.aspx*/
      .event-block .content-box .cat-info a {
        position: relative;
        display: inline-block;
        font-size: 1.0625em;
        font-weight: 900;
        line-height: 20px;
        color: #ffffff;
        background: #00aa55;
        padding: 3px 10px;
        border-radius: 13px;
      }

       /*list.aspx*/
       .event-block .content-box .linkA{
         width:100%;
       }

              /*list.aspx*/
       .event-block .content-box .linkA{
         width:100%;
       }

 /*list.aspx*/
    .event-block .content-box h3 {
      color: #3a3a3a;
      font-weight: 700;
      line-height: 32px;
      margin: 0 0 5px;
      font-size: 1.45em;
    }

      .event-block .content-box h3 a {
        color: #3a3a3a;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

  .event-block .event-content {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.5em;
  }
 
  
 /*list.aspx*/
   .event-block .linkA .read-more {
    position: absolute;
    right: -150px;
    top: -35px;
    height: 85px;
    padding-top: 35px;
    width: 150px;
    display: block;
    text-align: right;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
  }

  .event-block .read-more {
    position: absolute;
    right: 0;
    top: 7px;
    height: 85px;
    padding-top: 35px;
    width: 150px;
    display: block;
    text-align: right;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
  }

    .event-block .read-more a,.event-block .read-more span {
      position: relative;
      display: inline-block;
      vertical-align: top;
      line-height: 30px;
      color: #222222;
      font-size: 1.125em;
      font-weight: 900;
      font-family: '微軟正黑體', sans-serif;
      transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -webkit-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
    }

      .event-block .read-more a:before,.event-block .read-more span:before {
        content: "\f061";
        font-family: 'Font Awesome 5 Free';
        position: absolute;
        left: -8px;
        top: 4px;
        width: 20px;
        line-height: 24px;
        color: #00aa55;
        font-size: 1.18em;
        font-weight: 700;
        opacity: 0;
        transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
      }


  .event-block .inner-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 140px;
    right: 0;
    bottom: 0px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

.pagination-box {
  position: relative;
}

.text-right {
  text-align: right !important;
}

.styled-pagination {
  position: relative;
  font-family: '微軟正黑體', sans-serif;
}

  .styled-pagination li.prev {
    margin-right: 17px;
  }

  .styled-pagination li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    margin-bottom: 10px;
  }

    .styled-pagination li.prev a {
      font-size: 1em;
      text-transform: capitalize;
      color: #222222 !important;
      border: none !important;
      padding: 10px 0px 0px !important;
      background: none !important;
    }

    .styled-pagination li a {
      position: relative;
      display: block;
      line-height: 24px;
      font-size: 1.125em;
      height: 40px;
      min-width: 40px;
      padding: 8px 5px;
      text-align: center;
      color: #757575;
      font-weight: 700;
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.10);
      text-transform: uppercase;
      -webkit-transition: all 500ms ease;
      -moz-transition: all 500ms ease;
      -ms-transition: all 500ms ease;
      -o-transition: all 500ms ease;
      transition: all 500ms ease;
    }

    .styled-pagination li.prev a span {
      font-size: 0.875em;
    }

    .styled-pagination li.prev a span {
      font-size: 0.875em;
      padding-right: 3px;
    }

  .styled-pagination li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    margin-bottom: 10px;
  }

    .styled-pagination li a:hover, .styled-pagination li a.active {
      color: #ffffff;
      background: #00aa55;
      border-color: #00aa55;
    }

    .styled-pagination li a {
      position: relative;
      display: block;
      line-height: 24px;
      font-size: 1.125em;
      height: 40px;
      min-width: 40px;
      padding: 8px 5px;
      text-align: center;
      color: #757575;
      font-weight: 700;
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.10);
      text-transform: uppercase;
      -webkit-transition: all 500ms ease;
      -moz-transition: all 500ms ease;
      -ms-transition: all 500ms ease;
      -o-transition: all 500ms ease;
      transition: all 500ms ease;
    }

    .styled-pagination li a {
      position: relative;
      display: block;
      line-height: 24px;
      font-size: 1.125em;
      height: 40px;
      min-width: 40px;
      padding: 8px 5px;
      text-align: center;
      color: #757575;
      font-weight: 700;
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.10);
      text-transform: uppercase;
      -webkit-transition: all 500ms ease;
      -moz-transition: all 500ms ease;
      -ms-transition: all 500ms ease;
      -o-transition: all 500ms ease;
      transition: all 500ms ease;
    }

    .styled-pagination li.next {
      margin-left: 10px;
    }

    .styled-pagination li:last-child {
      margin-right: 0;
    }

    .styled-pagination li.next a {
      font-size: 1em;
      text-transform: capitalize;
      color: #222222 !important;
      border: none !important;
      padding: 10px 0px 0px !important;
      background: none !important;
    }

      .styled-pagination li.next a span {
        font-size: 0.875em;
        padding-left: 3px;
      }

.event-filters-box .outer .theme-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
}

  .event-filters-box .outer .theme-btn .btn-title {
    padding: 15px 0px 13px;
    line-height: 32px;
    height: 60px;
  }

.btn-style-one .btn-title {
  position: relative;
  display: block;
  font-size: 1em;
  line-height: 30px;
  color: #ffffff;
  font-weight: 700;
  padding: 18px 30px 12px;
  background: #00aa55;
  border-radius: 0px;
  z-index: 1;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.event-filters-box .outer .theme-btn .icon {
  position: relative;
  top: 1px;
  vertical-align: top;
  padding-left: 10px;
}


/*--------------------------------------------------------------
# Content Search
--------------------------------------------------------------*/

.event-filters-box {
  position: relative;
  margin-bottom: 30px;
}

  .event-filters-box .outer {
    position: relative;
    display: block;
    background: #ffffff;
    padding-right: 160px;
    min-height: 60px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.10);
  }

    .event-filters-box .outer .form-group {
      position: relative;
      float: left;
      width: 40%;
      margin: 0;
    }

input, select, button {
  font-family: 'Montserrat Alternates', sans-serif;
}

select {
  word-wrap: normal;
}

button, select {
  text-transform: none;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.event-filters-box .outer .form-group .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 0.875em;
  font-style: normal;
  height: 60px;
  padding: 15px 30px;
  line-height: 30px;
  font-family: 'Montserrat Alternates', sans-serif;
  color: #757575;
  border-radius: 0px;
  background-color: #ffffff;
  border: none;
}

.event-filters-box .outer .form-group .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 0.875em;
  font-style: normal;
  height: 60px;
  padding: 15px 30px;
  line-height: 30px;
  font-family: 'Montserrat Alternates', sans-serif;
  color: #757575;
  border-radius: 0px;
  background-color: #ffffff;
  border: none;
}

.default-form .form-group input[type="text"]:focus, .default-form .form-group input[type="email"]:focus, .default-form .form-group input[type="password"]:focus, .default-form .form-group input[type="tel"]:focus, .default-form .form-group input[type="url"]:focus, .default-form .form-group input[type="file"]:focus, .default-form .form-group input[type="number"]:focus, .default-form .form-group textarea:focus, .default-form .form-group select:focus, .form-group .ui-selectmenu-button.ui-button:focus, .form-group .ui-selectmenu-button.ui-button:active {
  border-color: #00aa55;
}
/*
.form-group .ui-selectmenu-button.ui-button {
    width: 100%;
    font-size: 0.9375em;
    font-style: normal;
    height: 52px;
    padding: 10px 20px;
    line-height: 28px;
    font-family: '微軟正黑體', sans-serif;
    color: #222222;
    border-radius: 0px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.10);
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #1b1c1e;
    font-weight: normal;
    color: #ffffff;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid #cccccc;
    background: #ededed;
    font-weight: normal;
    color: #2b2b2b;
}
.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 224px;
}
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
    text-decoration: none;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 3px;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    border-bottom-left-radius: 3px;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
    border-top-right-radius: 3px;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
    border-top-left-radius: 3px;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
    color: #454545;
    text-decoration: none;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
}
.ui-widget {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em;
}
.ui-button {
    padding: 6.4px 16px;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: 1.6px;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
}

.form-group .ui-button .ui-icon {
    background: none;
    position: relative;
    top: 3px;
    right: -5px;
    text-indent: 0px;
    color: #333333;
}

.ui-button .ui-icon {
    background-image: url(images/ui-icons_777777_256x240.png);
}
.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0;
}
.ui-icon-triangle-1-s {
    background-position: -65px -16px;
}

.ui-icon, .ui-widget-content .ui-icon {
    background-image: url(images/ui-icons_444444_256x240.png);
}
.ui-icon {
    width: 16px;
    height: 16px;
}
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}
*/

.form-group .ui-button .ui-icon:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f107";
  position: absolute;
  right: 0px;
  top: 2px !important;
  top: 13px;
  width: 10px;
  height: 20px;
  display: block;
  font-style: normal;
  color: #aaaaaa;
  line-height: 20px;
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  z-index: 5;
}

.ui-selectmenu-text {
  font-weight: 500;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-filters-box .outer .category:after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}




.form-group .ui-button .ui-icon {
  background: none;
  position: relative;
  top: 3px;
  right: -5px;
  text-indent: 0px;
  color: #333333;
}

  .form-group .ui-button .ui-icon:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f107";
    position: absolute;
    right: 0px;
    top: 2px !important;
    top: 13px;
    width: 10px;
    height: 20px;
    display: block;
    font-style: normal;
    color: #aaaaaa;
    line-height: 20px;
    font-size: 1em;
    font-weight: 700;
    text-align: center;
    z-index: 5;
  }

.ui-selectmenu-text {
  font-weight: 500;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-filters-box .outer .location {
  width: 60%;
}

.event-filters-box .outer .category:after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.event-filters-box .outer .theme-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
}

  .event-filters-box .outer .theme-btn .btn-title {
    padding: 15px 0px 13px;
    line-height: 32px;
    height: 60px;
  }

  .event-filters-box .outer .theme-btn .icon {
    position: relative;
    top: 1px;
    vertical-align: top;
    padding-left: 10px;
  }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
  padding-top: 3em;
  font-size: 1.05em;
}

.main-footer {
  background-color: #192e46;
  position: relative;
  padding-top: 3em;
}

  .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
  }

  .main-footer .container {
    position: relative;
  }



/*.site-footer .footer-widget .logo-box img {
    height: auto;
  }*/

.site-footer .footer-widget .main-footer-logo {
  height: 60px !important;
  width: auto;
}

.site-footer .footer-widget .logo-box .logo-name {
  margin-left: 80px;
  margin-top: -48px;
}

.site-footer .footer-widget .logo-box .logo-name-en {
  margin-left: 70px;
  margin-top: -33px;
}

.site-footer .footer-widget .logo-box .logo-name h3 {
  /* font-size: 1.35em; 20211227 */
  font-size: 1.3em; /* 20211227 */
  color: #FFF;
  font-weight: 900;
  line-height: 15px;
}

.site-footer .footer-widget .logo-box .logo-name-en h3 {
  font-size: 0.85em;
  color: #FFF;
  font-weight: 900;
  line-height: 15px;
}

.site-footer .footer-widget .logo-box .logo-name span {
  font-size: 0.78em;
  color: #FFF;
  font-weight: 900;
  margin-left: 2px;
}

/*-- Footer Logo設定 --*/
/*.site-footer .footer-widget .logo-box {
  padding-top: 0px;
  z-index: 1;
  padding: 8px 0 13px 0;
}*/
/*-- 分處LOGO設定 --*/
.site-footer .footer-widget .logo-box {
  padding-top: 0px;
  z-index: 1;
  padding: 8px 0 13px 0;
  /*margin-bottom: 30px;*/
}

  /*.site-footer .footer-widget .logo-box img {
    height: 50px;
    width: auto;
  }*/

  .site-footer .footer-widget .logo-box .logo-department {
    margin-left: 70px;
    margin-top: -33px;
  }

    .site-footer .footer-widget .logo-box .logo-department h3 {
      font-size: 1.05em;
      color: #FFF;
      font-weight: 900;
      line-height: 15px;
    }

      .site-footer .footer-widget .logo-box .logo-department h3 .dep-color01 {
        font-size: 0.95em;
        color: #ff7022;
        font-weight: 900;
        line-height: 15px;
      }

      .site-footer .footer-widget .logo-box .logo-department h3 .dep-color02 {
        font-size: 0.95em;
        color: #BCDBFE;
        font-weight: 900;
        line-height: 15px;
      }

      .site-footer .footer-widget .logo-box .logo-department h3 .dep-color03 {
        /* font-size: 0.95em; 20211227 */
        font-size: 1em; /* 20211227 */
        /* fcolor: #B4F09F; 20211227 */
        color: #33C101; /* 20211227 */
        font-weight: 900;
        line-height: 15px;
      }

      .site-footer .footer-widget .logo-box .logo-department h3 .dep-color04 {
        font-size: 0.95em;
        color: #F3CF72;
        font-weight: 900;
        line-height: 15px;
      }

    .site-footer .footer-widget .logo-box .logo-department span {
      font-size: 0.8em;
      color: #FFF;
      font-weight: 900;
      margin-left: 6px;
    }
/*-- 分處LOGO設定 --*/

/*-- Logo RWD設定 --*/

/*@media screen and (min-width: 375px)and (max-width: 1365px) {

  .site-footer .footer-widget .logo-box img {
    height: auto;
    width: 60px;
  }

  .site-footer .footer-widget .logo-box .logo-name span {
    display: none;
  }

  .site-footer .footer-widget .logo-box .logo-name h3 {
    font-size: 1.0em;
    color: #FFF;
    font-weight: 900;
    line-height: 40px;
  }

  .site-footer .footer-widget .logo-box .logo-name {
    margin-left: 65px !important;
    margin-top: -48px !important;
  }

  .site-footer .footer-widget .logo-box .logo-department .name-en {
    display: none;
  }

  .site-footer .footer-widget .logo-box .logo-department {
    margin-left: 65px !important;
    margin-top: -48px !important;
  }

    .site-footer .footer-widget .logo-box .logo-department h3 {
      font-size: 1.0em;
      color: #FFF;
      font-weight: 900;
      line-height: 40px;
    }
}*/

/*-- Logo RWD設定 --*/

/*-- Footer Logo設定 --*/



.footer-bottom {
  background-color: #0b1436;
}

  .footer-bottom::before {
    border-bottom: 41px solid #1b1b1b;
    border-left: 25vw solid transparent;
    border-right: 73vw solid transparent;
    width: 0;
    height: 0;
    content: "";
    overflow: hidden;
    position: absolute;
    bottom: 100%;
  }

  .footer-bottom .container {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 38px;
    padding-bottom: 38px;
    position: relative;
  }

@media (max-width: 575px) {
  .footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.footer-bottom .container p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  color: var(--unique-text-dark);
  width: 18em;
}

.footer-bottom .container .scroll-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 68px;
  height: 54px;
  background-color: #fcad30;
  color: #fff;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

  .footer-bottom .container .scroll-to-top:hover {
    color: var(--unique-black2);
    background-color: #ff6a1e;
  }

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 575px) {
  .footer-social {
    margin-top: 10px;
  }
}

.footer-social a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--unique-secondary);
  color: #fff;
  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;
  text-align: center;
  font-size: 0.875em;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

  .footer-social a + a {
    margin-left: 10px;
  }

  .footer-social a:hover {
    background-color: #fff;
    color: var(--unique-secondary);
  }

  .footer-social a:nth-child(2) {
    background-color: var(--unique-special);
    color: #fff;
  }

    .footer-social a:nth-child(2):hover {
      color: var(--unique-special);
      background-color: #fff;
    }

  .footer-social a:nth-child(3) {
    background-color: var(--unique-base);
    color: #fff;
  }

    .footer-social a:nth-child(3):hover {
      color: var(--unique-base);
      background-color: #fff;
    }

  .footer-social a:nth-child(4) {
    background-color: var(--unique-primary);
    color: #fff;
  }

    .footer-social a:nth-child(4):hover {
      color: var(--unique-primary);
      background-color: #fff;
    }

.footer-social.black-hover a:hover {
  background-color: var(--unique-black) !important;
  color: #fff !important;
}

.footer-widget p {
  margin: 0;
  color: var(--unique-text-dark);
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.footer-nav-menu li {
  display: inline-block;
  padding-right: 18px;
  /* font-size: 1em; 20211227 */
  font-size: 0.9em; /* 20211227 */
  margin-top: 4px;
  color: #FFF;
}

  .footer-nav-menu li a {
    color: #FFF;
  }

  .footer-nav-menu li i {
    margin-right: 12px;
    font-size: 0.875em;
    color: #FFF;
  }

/*-- Add --*/
.main-footer .footer-widget div {
  padding: 0px 1em;
}

.main-footer .footer-widget .row {
  justify-content: center;
}

.main-footer .links-widget {
  position: relative;
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 40px;
  text-align: left;
  font-size: 1em;
}

.footer-two .widget-title {
  padding-left: 35px;
}

.main-footer .widget-title {
  position: relative;
  margin-bottom: 25px;
}

  .main-footer .widget-title h4 {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFF;
  }

.footer-two .widget-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(../images/sitemaps.png) right top no-repeat;
}

.main-footer .links-widget .widget-content {
  position: relative;
}

.footer-two .footer-title {
  margin: 0;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
  color: #fff;
  line-height: 1.2;
  /* font-size: 1.18em; 20211227 */
  font-size: 1em; /* 20211227 */
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}


  .footer-two .footer-title:after {
    content: "";
    position: absolute;
    background-color: #CC0000;
    left: 0;
    height: 1px;
    width: 45px;
    bottom: 0;
  }

.main-footer .links-widget .links li {
  position: relative;
  margin-bottom: 15px;
  font-size: 1em;
  color: #a7aeae;
}

  .main-footer .links-widget .links li a {
    position: relative;
    display: block;
    color: #FFF;
    line-height: 24px;
    padding-left: 0.85em;
    /* font-size: 1.0625em; 20211227 */
    font-size: 0.85em; /* 20211227 */
    text-transform: capitalize;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    word-break: break-word; /* 20211227 */
  }

    .main-footer .links-widget .links li a:before {
      font-family: 'Font Awesome 5 Free';
      content: "\f0da";
      position: absolute;
      left: 0px;
      top: 0px;
      display: block;
      line-height: 24px;
      font-size: 0.875em;
      font-weight: 700;
    }

/*-- Add --*/

.footer-widget__about p {
  margin-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 0.9em; /* 20211227 */
}

.footer-widget__contact li {
  position: relative;
  color: #FFF;
}

  .footer-widget__contact li i {
    position: relative;
    font-size: 1.0625em;
    color: var(--unique-secondary);
    margin-right: 7px;
  }

  .footer-widget__contact li a {
    color: #fff;
    font-size: 0.85em;
    font-weight: 600;
    -webkit-transition: 500ms;
    transition: 500ms;
    position: relative;
    padding-left: 25px;
  }

    .footer-widget__contact li a:hover {
      color: var(--unique-primary);
    }

    .footer-widget__contact li a > i {
      font-size: 1.0625em;
      color: var(--unique-secondary);
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }

.footer-widget__logo {
  display: block;
  margin-top: -22px;
}

.footer-widget__title {
  margin: 0;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 37px;
}

.footer-widget__link-list {
  margin-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

  .footer-widget__link-list li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }

    .footer-widget__link-list li a {
      color: var(--unique-text-dark);
      font-size: 1em;
      -webkit-transition: 500ms;
      transition: 500ms;
      position: relative;
      line-height: 40px;
      font-weight: 900;
    }

      .footer-widget__link-list li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        display: block;
        -webkit-transition: -webkit-transform 500ms;
        transition: -webkit-transform 500ms;
        transition: transform 500ms;
        transition: transform 500ms, -webkit-transform 500ms;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        background-color: var(--unique-base);
        -webkit-transform-origin: left;
        transform-origin: left;
      }

      .footer-widget__link-list li a:hover {
        color: var(--unique-base);
      }

        .footer-widget__link-list li a:hover::before {
          -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
          -webkit-transform-origin: right;
          transform-origin: right;
        }

.footer-widget__blog li {
  position: relative;
  padding-left: 0px;
  min-height: 0px;
}

  .footer-widget__blog li + li {
    margin-top: 0px;
  }

  .footer-widget__blog li p {
    margin: 0;
    color: var(--unique-base);
    font-size: 0.875em;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 7px;
  }

  .footer-widget__blog li h3 {
    font-size: 1.125em;
    line-height: 1.44;
    margin: 0;
    color: #fff;
    font-family: var(--unique-font);
    font-weight: 600;
  }

    .footer-widget__blog li h3 a {
      color: inherit;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

      .footer-widget__blog li h3 a:hover {
        color: var(--unique-primary);
      }

  .footer-widget__blog li > img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
  }

.footer-widget__newsletter p {
  margin-top: -10px;
}

.footer-widget__newsletter input {
  width: 100%;
  height: 63px;
  background-color: var(--unique-black2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--unique-text-dark);
  font-size: 0.875em;
  font-weight: 500;
  padding-left: 39px;
  margin-top: 16px;
  margin-bottom: 10px;
  border-bottom-left-radius: 31.5px;
  border-top-left-radius: 31.5px;
}

.footer-widget__newsletter .mc-form__response a {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

  .footer-widget__newsletter .mc-form__response a:hover {
    color: var(--unique-base);
  }

.gmap {
  width: 24px;
  height: auto;
  margin-top: -6px;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Reason One
--------------------------------------------------------------*/

.reasons-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.reasons-one__left {
  position: relative;
  display: block;
  margin-right: -30px;
}

  .reasons-one__left .section-title {
    margin-bottom: 43px;
  }

.section-title {
  margin-top: -11px;
  margin-bottom: 35px;
}

.section-title__tagline {
  display: inline-flex;
  color: #717178;
  font-size: 1em;
  align-items: center;
  line-height: 30px;
  margin-bottom: 6px;
  font-weight: 700;
}

  .section-title__tagline::before {
    position: relative;
    top: -2px;
    content: '';
    background-color: #fc653c;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
  }

.section-title__title {
  margin: 0;
  font-weight: 700;
  color: #1e1e22;
  font-size: 3.125em;
  line-height: 60px;
}



.reasons-one-img-box-bg {
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: 265px;
  right: -1000000000px;
  background-color: #f1f1f5;
  border-radius: 10px;
}

.reasons-one__img-box {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-right: -40px;
}

.reasons-one__img-one img {
  width: 100%;
  border-radius: 10px;
}

.reasons-one__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 43px;
}


.list-unstyled {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

  .list-unstyled li {
    /*width:45%;*/
  }

.reasons-one__icon-box li:first-child {
  padding-left: 0;
}

.reasons-one__icon-box li {
  position: relative;
  display: block;
  border-right: 1px solid #e4e4ea;
  padding-right: 52px;
  padding-left: 45px;
  text-align: center;
}

  .reasons-one__icon-box li span {
    font-size: 3.75em;
    color: #fc653c;
  }

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reasons-one__text {
  font-size: 1.25em;
  color: #1e1e22;
  font-weight: 700;
  margin: 0;
  line-height: 25px;
  padding-top: 8px;
}

.reasons-one__icon-box li:last-child {
  border-right: 0;
  padding-right: 0;
}



.reasons-one__shape-1 {
  position: absolute;
  bottom: -151px;
  left: -88px;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  opacity: 0.502;
  width: 415px;
  height: 415px;
}

.reasons-one__img-two {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

  .reasons-one__img-two img {
    width: 100%;
    border-radius: 10px;
  }

.reasons-one__img-three {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Quality Section
--------------------------------------------------------------*/
.quality-section {
  position: relative;
  padding: 220px 0px 90px;
}

  .quality-section.margin-top {
    margin-top: 0px;
  }

  .quality-section .auto-container {
    max-width: 1500px;
  }

  .quality-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 60%;
    height: 100%;
    background-color: #1a232f;
  }

  .quality-section .pattern-layer {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .quality-section .sec-title .seperater:after {
    border-color: #1a232f;
  }

  .quality-section .title-column {
    position: relative;
  }

.sec-title.brown .title {
  color: #d0a764;
}

.quality-section .title-column .sec-title {
  margin-bottom: 55px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.image-column .sec-title.light h2 {
  text-shadow: 0 5px 30px rgb(17 17 17 / 50%);
}

/*.sec-title h2 {
  position: relative;
  color: #222222;
  font-size: 3em;
  font-weight: 400;
  line-height: 20.8px;
  margin-top: 15px;
  text-transform: capitalize;
}*/

.sec-title .seperater {
  position: relative;
  margin-top: 20px !important;
  width: 100px;
}

.sec-title.light .seperater:before {
  background-color: #ffffff;
}

.sec-title .seperater:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 2px;
  background-color: #222222;
}

.quality-section .sec-title .seperater:after {
  border-color: #1a232f;
}

.sec-title.brown .seperater:after {
  background-color: #cea158;
}

.sec-title .seperater:after {
  position: absolute;
  content: '';
  left: 50%;
  top: -6px;
  width: 15px;
  height: 15px;
  margin-left: -6px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background-color: #fda700;
}

.quality-section .title-column .inner-column .text {
  position: relative;
  color: #ffffff;
  font-size: 1em;
  line-height: 28.8px;
  margin-bottom: 50px;
}

.btn-style-ten {
  position: relative;
  display: inline-block;
  font-size: 1em;
  line-height: 30px;
  color: #1a232f;
  font-weight: 400;
  letter-spacing: 1px;
  border: 1px solid #1a232f;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

  .btn-style-ten .txt {
    position: relative;
    display: inline-block;
    font-size: 1em;
    line-height: 30px;
    color: #1a232f;
    z-index: 1;
    background-color: #cea158;
    padding: 9px 30px 9px 30px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }

  .btn-style-ten:hover .txt {
    background-color: #cea158;
    color: #ffffff;
  }

  .btn-style-ten:before {
    position: absolute;
    content: '';
    left: -6px;
    top: -6px;
    z-index: 1;
    bottom: -6px;
    right: 6px;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }

  .btn-style-ten:hover::before {
    border: 1px solid #cea158;
    background: none;
  }

  .btn-style-ten:hover {
    color: #ffffff;
    border-color: #cea158;
  }

.quality-section .title-column .inner-column {
  position: relative;
}

  .quality-section .title-column .inner-column .text {
    position: relative;
    color: #ffffff;
    font-size: 1em;
    line-height: 28.8px;
    margin-bottom: 50px;
  }

.quality-section .blocks-column {
  position: relative;
}

  .quality-section .blocks-column .inner-column {
    position: relative;
  }

.quality-block {
  position: relative;
  margin-bottom: 30px;
}

  .quality-block .inner-box {
    position: relative;
    padding: 45px 25px 45px 40px;
    background-color: #cea158;
  }

    .quality-block .inner-box .number {
      position: relative;
      font-size: 3em;
      font-weight: 400;
      color: #ffffff;
      line-height: 16px;
      font-family: 'Oswald', sans-serif;
    }

    .quality-block .inner-box .category {
      position: relative;
      font-size: 2.25em;
      font-weight: 400;
      color: #1a232f;
      line-height: 16px;
      padding-bottom: 26px;
      margin-top: 20px;
      font-family: 'Oswald', sans-serif;
    }

      .quality-block .inner-box .category:before {
        position: absolute;
        content: '';
        left: 0px;
        bottom: 0px;
        width: 40px;
        height: 3px;
        background-color: #ffffff;
      }

    .quality-block .inner-box .text {
      position: relative;
      font-size: 1em;
      font-weight: 400;
      color: #ffffff;
      line-height: 27.2px;
      margin-top: 20px;
    }

/*--------------------------------------------------------------
# industry-section
--------------------------------------------------------------*/
.industry-section {
  position: relative;
  padding: 0px 0px 30px;
}

  .industry-section.margin-top {
    margin-top: 0px;
  }

  .industry-section .auto-container {
    max-width: 1500px;
  }

  .industry-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 60%;
    height: 100%;
    background-color: #FFF;
  }

  .industry-section .pattern-layer {
    position: absolute;
    right: 0px;
    top: 195px;
    width: 63%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    opacity: 0.6;
  }

  .industry-section .sec-title .dk-seperater:after {
    border-color: #1a232f;
  }

  .industry-section .title-column {
    position: relative;
  }

.sec-title.dkblue .title {
  color: #19434b;
}

.industry-section .title-column .sec-title {
  margin-bottom: 55px;
}

.sec-title.dark h2 {
  color: #2c2c2c;
}

/*.sec-title h2 {
  position: relative;
  color: #222222;
  font-size: 3em;
  font-weight: 400;
  line-height: 20.8px;
  margin-top: 15px;
  text-transform: capitalize;
}*/

.sec-title .dk-seperater {
  position: relative;
  margin-top: 20px !important;
  width: 100px;
}

.sec-title.light .dk-seperater:before {
  background-color: #ffffff;
}

.sec-title .dk-seperater:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 2px;
  background-color: #222222;
}

.industry-section .sec-title .dk-seperater:after {
  border-color: #FFF;
}

.sec-title.brown .dk-seperater:after {
  background-color: #cea158;
}

.sec-title .dk-seperater:after {
  position: absolute;
  content: '';
  left: 50%;
  top: -6px;
  width: 15px;
  height: 15px;
  margin-left: -6px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background-color: #fda700;
}

.industry-section .title-column .inner-column .text {
  position: relative;
  color: #ffffff;
  font-size: 1em;
  line-height: 28.8px;
  margin-bottom: 50px;
}

.btn-style-kh {
  position: relative;
  display: inline-block;
  font-size: 1em;
  line-height: 30px;
  color: #1a232f;
  font-weight: 900;
  letter-spacing: 1px;
  border: 1px solid #b81f03;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  float: right;
  margin-right: 30px;
}

  .btn-style-kh .txt {
    position: relative;
    display: inline-block;
    font-size: 1.125em;
    line-height: 30px;
    color: #1a232f;
    z-index: 1;
    background-color: #cea158;
    padding: 9px 30px 9px 30px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }

  .btn-style-kh:hover .txt {
    background-color: #cea158;
    color: #ffffff;
  }

  .btn-style-kh:before {
    position: absolute;
    content: '';
    left: -6px;
    top: -6px;
    z-index: 1;
    bottom: -6px;
    right: 6px;
    background-color: #153451;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }

  .btn-style-kh:hover::before {
    border: 1px solid #cea158;
    background: none;
  }

  .btn-style-kh:hover {
    color: #ffffff;
    border-color: #cea158;
  }

.industry-section .title-column .inner-column {
  position: relative;
}

  .industry-section .title-column .inner-column .text {
    position: relative;
    color: #292929;
    font-size: 1em;
    line-height: 28.8px;
    margin-bottom: 50px;
  }

.industry-section .blocks-column {
  position: relative;
}

.shape-style01::before {
  content: "";
  width: 522px;
  height: 522px;
  background-image: url(../images/shapes/element46.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 180px;
  left: -80px;
}

.tabs-content::before {
  content: "";
  width: 295px;
  height: 291px;
  opacity: 1;
  background-image: url(../images/shapes/service-line-1-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 460px;
  left: -160px;
}

.industry-section .blocks-column .inner-column {
  position: relative;
  margin-left: 60px;
  margin-top: 80px;
}

.industry-block {
  position: relative;
  margin-bottom: 0px;
}

  .industry-block .inner-box {
    position: relative;
    padding: 45px 25px 45px 40px;
    background-color: #cea158;
  }

    .industry-block .inner-box .number {
      position: relative;
      font-size: 3em;
      font-weight: 400;
      color: #ffffff;
      line-height: 16px;
      font-family: 'Oswald', sans-serif;
    }

    .industry-block .inner-box .category {
      position: relative;
      font-size: 2.25em;
      font-weight: 400;
      color: #1a232f;
      line-height: 16px;
      padding-bottom: 26px;
      margin-top: 20px;
      font-family: 'Oswald', sans-serif;
    }

      .industry-block .inner-box .category:before {
        position: absolute;
        content: '';
        left: 0px;
        bottom: 0px;
        width: 40px;
        height: 3px;
        background-color: #ffffff;
      }

    .industry-block .inner-box .text {
      position: relative;
      font-size: 1em;
      font-weight: 400;
      color: #ffffff;
      line-height: 27.2px;
      margin-top: 20px;
    }
/*
.industry-section:before {
    content: "";
    position: absolute;
    width: 3000px;
    background-color: transparent;
    border-bottom-right-radius: 10px;
    top: -320px;
    left: 0;
    height: 120%;
    background-repeat: no-repeat;
    background-image: url(../images/shapes/devider-inner.png);
}
*/
.industry-section .sec-title h2 {
  position: relative;
  display: block;
  font-size: 1.875em;
  line-height: 40px;
  color: #2f2f2f !important;
  font-weight: 900;
  padding: 0px 0;
  text-align: left;
}

.industry-section .sec-title .seperater {
  position: relative;
  margin-top: 20px !important;
  width: 100px;
}

.industry-section .sec-title.light .seperater:before {
  background-color: #be2323;
}

.industry-section .sec-title .seperater:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 2px;
  background-color: #222222;
}

.industry-section .other-links .useful-links-one {
  position: relative;
  float: right;
  margin-left: 25px;
  margin-top: 30px;
  padding-left: 26px;
}

.industry-section .other-links .social-links-one {
  position: relative;
  float: right;
  margin-left: 25px;
  margin-top: 30px;
  padding-left: 26px;
}

/*--------------------------------------------------------------
# Industry Block ImageMapper
--------------------------------------------------------------*/

.industry-section {
  background-color: #ffffff;
  position: relative;
}

.industry-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.industry-section .container {
  position: relative;
  padding-left: 0px;
}

@media (max-width: 767px) {
  .industry-section .container {
    padding-left: 15px;
  }
}

.industry-section__icon {
  position: absolute;
  top: 0;
  left: 15px;
  width: 120px;
  height: 140px;
  background-color: var(--unique-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 3.75em;
  color: #fff;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}

@media (max-width: 767px) {
  .industry-section__icon {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 30px;
  }
}

.industry-section .block-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .industry-section .block-title {
    margin-bottom: 30px;
  }
}

.industry-section .block-title p {
  color: var(--unique-base);
}

.industry-section .block-title h3 {
  color: #fff;
  font-size: 3.75em;
  letter-spacing: -0.64px;
}

@media (max-width: 1199px) {
  .industry-section .block-title h3 {
    font-size: 2.875em;
  }

    .industry-section .block-title h3 br {
      display: none;
    }
}

.industry-section .shedule-tabs .tab-buttons li {
  position: relative;
  float: left;
  min-width: 215px;
  background-color: #f14b59;
  font-size: 1.25em;
  line-height: 24px;
  color: #fffefe;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px 8px 12px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 0px;
}

/*--------------------------------------------------------------
# Industry Info Block Download
--------------------------------------------------------------*/

 

 
        

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
  

 
 

/*** 

====================================================================
		Work Section
====================================================================

***/

.work-section {
  position: relative;
  padding: 100px 0 50px;
}

.work-tabs {
  position: relative;
  text-align: center;
}

  .work-tabs .tab-btns {
    position: relative;
    display: inline-block;
    border-radius: 30px;
    z-index: 1;
  }

ul, li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.work-tabs .tab-btns .tab-btn {
  position: relative;
  float: left;
  font-size: 1em;
  line-height: 30px;
  color: #ffffff;
  background: #333333;
  text-transform: capitalize;
  font-weight: 400;
  cursor: pointer;
  padding: 15px 25px;
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

  .work-tabs .tab-btns .tab-btn:first-child {
    border-radius: 30px 0 0 30px;
  }

  .work-tabs .tab-btns .tab-btn:last-child {
    border-radius: 0 30px 30px 0;
  }

  .work-tabs .tab-btns .tab-btn:after {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }

  .work-tabs .tab-btns .tab-btn.active-btn:after {
    border-top: 10px solid #7abf18;
  }

  .work-tabs .tab-btns .tab-btn.active-btn {
    color: #ffffff;
    background: #7abf18;
  }

.work-tabs .tabs-content {
  position: relative;
  text-align: left;
  padding: 70px 0 0;
}

.tabs-box .tab {
  display: none;
}

  .tabs-box .tab.active-tab {
    display: block;
  }

.work-tabs .content-column {
  position: relative;
  margin-bottom: 50px;
}

  .work-tabs .content-column .inner-column {
    position: relative;
    max-width: 370px;
    margin: 0 auto;
  }

  .work-tabs .content-column h3 {
    position: relative;
    display: block;
    font-size: 1.5em;
    line-height: 19.2px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 35px;
  }

  .work-tabs .content-column .text {
    position: relative;
    display: block;
    font-size: 0.875em;
    color: #777777;
    line-height: 27px;
    margin-bottom: 23px;
  }

  .work-tabs .content-column .list-style-one {
    margin-bottom: 35px;
  }

  .work-tabs .content-column .btn-box {
    position: relative;
  }

.work-tabs .image-column {
  position: relative;
  margin-bottom: 50px;
}

  .work-tabs .image-column .inner-column {
    position: relative;
    padding: 0 30px;
  }

  .work-tabs .image-column .image {
    position: relative;
    margin-bottom: 0;
  }

    .work-tabs .image-column .image:before {
      position: absolute;
      left: -60px;
      top: 40px;
      height: 100%;
      width: 100%;
      border: 15px solid #ebebeb;
      content: "";
      z-index: -1;
    }

    .work-tabs .image-column .image img {
      display: block;
      width: 100%;
      height: auto;
    }

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

.news-section {
  position: relative;
  padding: 100px 0 70px;
}

  .news-section:before {
    position: absolute;
    right: 0;
    top: 140px;
    height: 347px;
    width: 157px;
    background-image: url(../images/icons/icon-dots.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
  }

  .news-section:after {
    position: absolute;
    left: 0;
    top: 55px;
    height: 576px;
    width: 238px;
    background-image: url(../images/icons/pentagon.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
  }

  .news-section .sec-title {
    position: relative;
    margin-bottom: 45px;
    z-index: 1;
  }

.news-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

  .news-block .inner-box {
    position: relative;
  }

  .news-block .image-box {
    position: relative;
    margin-right: 40px;
  }

    .news-block .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .news-block .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

    .news-block .image-box .overlay-box {
      position: absolute;
      left: 0;
      top: 0;
      height: 0%;
      width: 100%;
      background: #ff8a00 padding-box content-box;
      content: "";
      padding: 15px;
      opacity: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
    }

  .news-block .inner-box:hover .overlay-box {
    height: 100%;
    opacity: 0.70;
  }

  .news-block .overlay-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    font-size: 1.875em;
    line-height: 40px;
    color: #000000;
    font-weight: 400;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  .news-block .inner-box:hover .overlay-box a {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .news-block .overlay-box a i {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .news-block .overlay-box a:hover i {
    color: #ffffff;
  }

  .news-block .caption-box {
    position: relative;
    margin-top: -50px;
    margin-left: 40px;
    padding: 28px 35px 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    -moz-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    -ms-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    -o-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    box-shadow: 0 0 21px rgba(0,0,0,0.21);
  }

    .news-block .caption-box h3 {
      position: relative;
      display: block;
      font-size: 1.25em;
      line-height: 30px;
      color: #2f2f2f;
      font-weight: 500;
      margin-bottom: 10px;
    }

      .news-block .caption-box h3 a {
        color: #2f2f2f;
        display: inline-block;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

  .news-block .inner-box:hover .caption-box h3 a {
    color: #ff8a00;
  }

  .news-block .caption-box .info {
    position: relative;
    display: block;
  }

    .news-block .caption-box .info li {
      position: relative;
      display: inline-block;
      font-size: 0.875em;
      line-height: 24px;
      color: #777777;
      font-weight: 400;
      margin-right: 10px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

  .news-block .inner-box:hover .caption-box .info li {
    color: #222222;
  }

  .news-block .caption-box .info li a {
    color: #777777;
  }

.news-section.alternate {
  padding: 100px 0 40px;
}

.sec-title .float-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 3.0em;
  line-height: 70px;
  color: #2f2f2f;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .10;
  font-family: "微軟正黑體", sans-serif;
}

.sec-title h2 {
  position: relative;
  display: block;
  /* font-size: 2.25em; 20211227 */
  font-size: 1.5em; /* 20211227 */
  line-height: 40px;
  color: #2f2f2f;
  font-weight: 900;
  padding: 16px 0;
  margin-top: 15px;
  text-transform: capitalize;
}

.news-block-two {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

  .news-block-two .inner-box {
    position: relative;
  }

  .news-block-two .image-box {
    position: relative;
  }

    .news-block-two .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .news-block-two .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

    .news-block-two .image-box .overlay-box {
      position: absolute;
      left: 0;
      top: 0;
      height: 0%;
      width: 100%;
      background: #ff8a00 padding-box content-box;
      content: "";
      padding: 15px;
      opacity: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
    }

  .news-block-two .inner-box:hover .overlay-box {
    height: 100%;
    opacity: 0.70;
  }

  .news-block-two .overlay-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    font-size: 1.875em;
    line-height: 40px;
    color: #000000;
    font-weight: 400;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  .news-block-two .inner-box:hover .overlay-box a {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .news-block-two .overlay-box a i {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .news-block-two .overlay-box a:hover i {
    color: #ffffff;
  }

  .news-block-two .caption-box {
    position: relative;
    margin-top: -25px;
    padding: 0 20px;
  }

    .news-block-two .caption-box .inner {
      position: relative;
      padding: 25px 30px 30px;
      background-color: #ffffff;
      -webkit-box-shadow: 0 0 21px rgba(0,0,0,0.21);
      -moz-box-shadow: 0 0 21px rgba(0,0,0,0.21);
      -ms-box-shadow: 0 0 21px rgba(0,0,0,0.21);
      -o-box-shadow: 0 0 21px rgba(0,0,0,0.21);
      box-shadow: 0 0 21px rgba(0,0,0,0.21);
    }

    .news-block-two .caption-box h3 {
      position: relative;
      display: block;
      font-size: 1.25em;
      line-height: 30px;
      color: #2f2f2f;
      font-weight: 500;
      margin-bottom: 10px;
    }

      .news-block-two .caption-box h3 a {
        color: #2f2f2f;
        display: inline-block;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

  .news-block-two .inner-box:hover .caption-box h3 a {
    color: #ff8a00;
  }

  .news-block-two .caption-box .info {
    position: relative;
    display: block;
  }

    .news-block-two .caption-box .info li {
      position: relative;
      display: inline-block;
      font-size: 0.875em;
      line-height: 24px;
      color: #777777;
      font-weight: 400;
      margin-right: 10px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

  .news-block-two .inner-box:hover .caption-box .info li {
    color: #222222;
  }

  .news-block-two .caption-box .info li a {
    color: #777777;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .news-block-two .caption-box .info li a:hover {
      color: #ff8a00;
    }

  .news-block-two .caption-box .text {
    position: relative;
    display: block;
    font-size: 0.875em;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
    margin-top: 10px;
  }

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

.news-section-two {
  position: relative;
  padding: 0px 0 50px 0;
}

  .news-section-two .sec-title {
    margin-bottom: 30px;
  }

  .news-section-two .sec-title {
    position: relative;
    margin-bottom: 75px;
  }

  .news-section-two .column {
    position: relative;
  }

    .news-section-two .column .inner-column {
      padding-right: 35px;
    }

  .news-section-two .sec-title.light h2 {
    color: #000;
  }

  .news-section-two .sec-title h2 {
    position: relative;
    display: block;
    font-size: 1.875em;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 900;
    padding: 0px 0;
  }

  .news-section-two .sec-title i {
    font-size: 1.25em;
    color: #2f2f2f;
    font-weight: 900;
  }

  .news-section-two .sec-title .seperater {
    position: relative;
    margin-bottom: 50px !important;
    width: 100px;
  }

  .news-section-two .sec-title.light .seperater:before {
    background-color: #be2323;
  }

  .news-section-two .sec-title .seperater:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 2px;
    background-color: #222222;
  }

/*News Block Three*/

.news-block-three {
  position: relative;
  margin-bottom: 50px;
}

  .news-block-three .inner-box {
    position: relative;
  }

  .news-block-three .image-box {
    position: relative;
  }

    .news-block-three .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .news-block-three .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

    .news-block-three .image-box .overlay-box {
      position: absolute;
      left: 0;
      top: 0;
      height: 0%;
      width: 100%;
      background: #ff8a00;
      content: "";
      opacity: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
    }

  .news-block-three .inner-box:hover .overlay-box {
    height: 100%;
    opacity: 0.70;
  }

  .news-block-three .overlay-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    font-size: 1.875em;
    line-height: 40px;
    color: #000000;
    font-weight: 400;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  .news-block-three .inner-box:hover .overlay-box a {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .news-block-three .overlay-box a i {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .news-block-three .overlay-box a:hover i {
    color: #ffffff;
  }

  .news-block-three .content-box {
    position: relative;
    padding: 35px 0 0;
  }

    .news-block-three .content-box h3 {
      position: relative;
      display: block;
      font-size: 1.5em;
      line-height: 34px;
      color: #000000;
      font-weight: 500;
      margin-bottom: 12px;
    }

      .news-block-three .content-box h3 a {
        color: #2f2f2f;
        display: inline-block;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

  .news-block-three .inner-box:hover .content-box h3 a {
    color: #ff8a00;
  }

  .news-block-three .content-box .info {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }

    .news-block-three .content-box .info li {
      position: relative;
      display: inline-block;
      font-size: 0.875em;
      line-height: 24px;
      color: #777777;
      font-weight: 400;
      margin-right: 10px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

  .news-block-three .inner-box:hover .content-box .info li {
    color: #222222;
  }

  .news-block-three .content-box .info li a {
    color: #777777;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .news-block-three .content-box .info li a:hover {
      color: #ff8a00;
    }

  .news-block-three .content-box .text {
    position: relative;
    display: block;
    font-size: 0.875em;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
  }
/*News Block Four*/

.news-block-four {
  position: relative;
  margin-bottom: 50px;
}

  .news-block-four .inner-box {
    position: relative;
    padding-left: 300px;
    min-height: 200px;
  }

  .news-block-four .image-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 270px;
    height: auto;
  }

    .news-block-four .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .news-block-four .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

    .news-block-four .image-box .overlay-box {
      position: absolute;
      left: 0;
      top: 0;
      height: 0%;
      width: 100%;
      background: #ff8a00;
      content: "";
      opacity: 0;
      -webkit-transition: all 300ms linear;
      -moz-transition: all 300ms linear;
      -ms-transition: all 300ms linear;
      -o-transition: all 300ms linear;
      transition: all 300ms linear;
    }

  .news-block-four .inner-box:hover .overlay-box {
    height: 100%;
    opacity: 0.70;
  }

  .news-block-four .overlay-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    font-size: 1.875em;
    line-height: 40px;
    color: #000000;
    font-weight: 400;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  .news-block-four .inner-box:hover .overlay-box a {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .news-block-four .overlay-box a i {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .news-block-four .overlay-box a:hover i {
    color: #ffffff;
  }

  .news-block-four .content-box {
    position: relative;
    padding: 20px 0 0;
  }

    .news-block-four .content-box h3 {
      position: relative;
      display: block;
      font-size: 1.25em;
      line-height: 30px;
      color: #2f2f2f;
      font-weight: 500;
      margin-bottom: 12px;
    }

      .news-block-four .content-box h3 a {
        color: #2f2f2f;
        display: inline-block;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

  .news-block-four .inner-box:hover .content-box h3 a {
    color: #ff8a00;
  }

  .news-block-four .content-box .info {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }

    .news-block-four .content-box .info li {
      position: relative;
      display: inline-block;
      font-size: 0.875em;
      line-height: 24px;
      color: #777777;
      font-weight: 400;
      margin-right: 10px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

  .news-block-four .inner-box:hover .content-box .info li {
    color: #222222;
  }

  .news-block-four .content-box .info li a {
    color: #777777;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .news-block-four .content-box .info li a:hover {
      color: #ff8a00;
    }

  .news-block-four .content-box .text {
    position: relative;
    display: block;
    font-size: 0.875em;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
  }


/*--------------------------------------------------------------
# Projects Section One
--------------------------------------------------------------*/

.projects-section {
  position: relative;
  padding: 100px 0 0;
}

  .projects-section .inner-container {
    position: relative;
  }

.project-block {
  position: relative;
}

  .project-block .image-box {
    position: relative;
  }

    .project-block .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .project-block .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

  .project-block .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }

    .project-block .overlay-box h4 {
      position: absolute;
      right: 30px;
      top: 30px;
      text-align: right;
      opacity: 0;
      font-size: 1.125em;
      line-height: 24px;
      color: #ffffff;
      font-weight: 400;
      text-transform: uppercase;
      -webkit-transform: scale(0,0);
      -moz-transform: scale(0,0);
      -ms-transform: scale(0,0);
      -o-transform: scale(0,0);
      transform: scale(0,0);
      -webkit-transition: all 400ms ease;
      -moz-transition: all 400ms ease;
      -ms-transition: all 400ms ease;
      -o-transition: all 400ms ease;
      transition: all 400ms ease;
    }

      .project-block .overlay-box h4 a {
        color: #ffffff;
      }

  .project-block .image-box:hover .overlay-box h4 {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
  }

  .project-block .overlay-box:before {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0%;
    width: 0%;
    opacity: 0;
    overflow: hidden;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

  .project-block .image-box:hover .overlay-box:before {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
    border-radius: 0%;
  }

  .project-block .overlay-box .btn-box {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    opacity: 0;
    margin-top: -15px;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

    .project-block .overlay-box .btn-box a {
      position: relative;
      display: inline-block;
      font-size: 1.5em;
      line-height: 30px;
      color: #ffffff;
      font-weight: 400;
      margin: 0 6px;
      -webkit-transition: all 400ms ease;
      -moz-transition: all 400ms ease;
      -ms-transition: all 400ms ease;
      -o-transition: all 400ms ease;
      transition: all 400ms ease;
    }

      .project-block .overlay-box .btn-box a:hover {
        color: #ff8a00;
      }

  .project-block .image-box:hover .overlay-box .btn-box {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  .project-block .overlay-box .tag {
    position: absolute;
    left: 30px;
    bottom: 30px;
    text-align: right;
    opacity: 0;
    font-size: 0.875em;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

  .project-block .image-box:hover .overlay-box .tag {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
  }

.projects-carousel {
  position: relative;
}

  .projects-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: -130px;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .projects-carousel .owl-next,
  .projects-carousel .owl-prev {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    font-size: 0.875em;
    color: #707070;/*#bbbbbb*/
    font-weight: 400;
    text-transform: uppercase;
    line-height: 30px;
    padding-top: 6px;
    background-color: #ffffff;
    z-index: 9;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

    .projects-carousel .owl-next:hover,
    .projects-carousel .owl-prev:hover {
      color: #ff8a00;
    }

    .projects-carousel .owl-next:before,
    .projects-carousel .owl-prev:before {
      position: absolute;
      left: 0;
      top: 0;
      height: 40px;
      width: 60px;
      border: 2px solid #bbbbbb;
      border-right: 0;
      content: "";
      z-index: -1;
      -webkit-transition: all 200ms ease;
      -moz-transition: all 200ms ease;
      -ms-transition: all 200ms ease;
      -o-transition: all 200ms ease;
      transition: all 200ms ease;
    }

    .projects-carousel .owl-next:hover:before,
    .projects-carousel .owl-prev:hover:before {
      border-color: #ff8a00;
    }

    .projects-carousel .owl-next:before {
      left: auto;
      right: -25px;
      border: 2px solid #bbbbbb;
      border-left: 0;
    }

    .projects-carousel .owl-next span {
      margin-left: 5px;
    }

    .projects-carousel .owl-prev span {
      margin-right: 5px;
    }

/*=== Projects Section Alternate ===*/

.projects-section.alternate {
  position: relative;
  padding: 100px 0;
}

.mixitup-gallery .filters {
  margin-bottom: 50px;
  text-align: center;
}

  .mixitup-gallery .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #777777;
  }

  .mixitup-gallery .filters li {
    position: relative;
    float: left;
    font-size: 1em;
    line-height: 30px;
    color: #777777;
    font-weight: 500;
    cursor: pointer;
    text-transform: capitalize;
    padding: 0 5px 10px;
    margin-right: 30px;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    font-family: "Rubik", sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .mixitup-gallery .filters li:last-child {
      margin-right: 0;
    }

    .mixitup-gallery .filters li.active,
    .mixitup-gallery .filters li:hover {
      border-bottom: 2px solid #ff8a00;
    }

.project-block.mix {
  display: none;
  margin-bottom: 30px;
}

.projects-section.alternate .styled-pagination {
  margin-top: 50px;
}

/*--------------------------------------------------------------
# Projects Section Two
--------------------------------------------------------------*/
.projects-section-two {
  position: relative;
  padding: 0px 0;
}

  .projects-section-two .upper-box {
    position: relative;
  }

    .projects-section-two .upper-box .sec-title {
      float: left;
      margin-bottom: 50px;
    }

    .projects-section-two .upper-box .link-box {
      position: relative;
      float: right;
      margin-top: 25px;
    }

      .projects-section-two .upper-box .link-box a {
        position: relative;
        display: block;
        font-size: 1.125em;
        line-height: 30px;
        color: #ff8a00;
        font-weight: 700;
        font-family: "微軟正黑體", sans-serif;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

        .projects-section-two .upper-box .link-box a:hover {
          color: #222222;
        }

.projects-carousel-two {
  position: relative;
}

.project-block-two {
  position: relative;
  padding-left: 200px;
  transition: all 300ms ease;
}
 
  .project-block-two .image-box {
    position: relative;
  }

    .project-block-two .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .project-block-two .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

  .project-block-two .info-box {
    position: absolute;
    left: 200px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }

.projects-carousel-two .active .project-block-two .info-box {
  left: 18px;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.project-block-two .info-box .inner-box {
  position: relative;
  background: #ffffff;
  max-width: 300px;
  width: 100%;
  padding: 25px 30px 50px 30px;
  -webkit-box-shadow: 0 0 18px rgba(0,0,0,0.18);
  -moz-box-shadow: 0 0 18px rgba(0,0,0,0.18);
  -ms-box-shadow: 0 0 18px rgba(0,0,0,0.18);
  -o-box-shadow: 0 0 18px rgba(0,0,0,0.18);
  box-shadow: 0 0 18px rgba(0,0,0,0.18);
}

.project-block-two .info-box .title {
  position: relative;
  display: block;
  font-size: 0.9375em;
  line-height: 19.2px;
  color: #777777;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.project-block-two .info-box h3 {
  position: relative;
  display: block;
  font-size: 1.875em;
  line-height: 1.3em;
  color: #222222;
  font-weight: 900;
  margin-bottom: 15px;
}

.project-block-two .info-box .text {
  position: relative;
  display: block;
  font-size: 1.125em;
  line-height: 30px;
  color: #777777;
  font-weight: 400;
  margin-bottom: 65px;
}

.project-block-two .info-box h3:hover {
	text-decoration: none;
	color: #0C512D
}

.project-block-two .info-box .link-box {
  position: relative;
}

  .project-block-two .info-box .link-box span {
    position: relative;
    display: block;
    font-size: 1.125em;
    line-height: 30px;
    color: #ff8a00;
    font-weight: 700;
    font-family: "微軟正黑體", sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .project-block-two .info-box .link-box span i {
      font-size: 1.125em;
      line-height: 30px;
      color: #ff8a00;
      font-weight: 700;
      margin-right: 12px;
    }

    .project-block-two .info-box .link-box span:hover {
      color: #222222;
    }

.projects-carousel-two .owl-nav {
  position: absolute;
  left: 15px;
  bottom: 0;
  width: 60px;
  height: 30px;
}

.projects-carousel-two .owl-next,
.projects-carousel-two .owl-prev {
  position: absolute;
  left: 15px;
  bottom: 0;
  font-size: 0.75em;
  line-height: 30px;
  color: #CCC;
  font-weight: 400;
  transition: all 300ms ease;
  z-index: 9;
}

.projects-carousel-two .owl-next {
  left: auto;
  right: -15px;
}

  .projects-carousel-two .owl-next:hover,
  .projects-carousel-two .owl-prev:hover {
    color: #ff8a00;
  }

.projects-carousel-two .owl-dots {
  position: absolute;
  left: 15px;
  bottom: 0;
  height: 30px;
  width: 60px;
  z-index: 0;
  counter-reset: slides-num;
}

.projects-carousel-two .owl-dot {
  display: inline-block;
  counter-increment: slides-num;
}

  .projects-carousel-two .owl-dot span {
    display: none;
  }

  .projects-carousel-two .owl-dot.active:before {
    position: absolute;
    content: counter(slides-num) " /";
    line-height: 30px;
    font-size: 1em;
    font-weight: 700;
    color: #CCC;
    left: 30px;
    top: 0;
  }

.projects-carousel-two .owl-dots:after {
  position: absolute;
  left: 52px;
  content: counter(slides-num);
  display: inline-block;
  line-height: 30px;
  font-size: 1em;
  font-weight: 700;
  color: #CCC;
}

/*** 
====================================================================
			Specialize Section
====================================================================
***/

.specialize-section {
  position: relative;
  padding: 100px 0;
}

  .specialize-section .sec-title {
    margin-bottom: 60px;
  }

.services-carousel-two {
  position: relative;
  padding-bottom: 80px;
}


.services-carousel-two .owl-nav {
  display: none;
}

.services-carousel-two .owl-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.services-carousel-two .owl-dot {
  position: relative;
  display: inline-block;
  height: 3rem;
  padding:5px;
}

.services-carousel-two .owl-dot span {
   position: relative;
  display: block;
  margin:auto;
  top:0.5em;
  height: 1em;/*16px;*/
  width: 4px;
  /*margin: 0 5px;*/
  background-color: #b6b6b6;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  /*margin-bottom: 7px;*/
}

  .services-carousel-two .owl-dot:hover span,
  .services-carousel-two .owl-dot.active span {
    top:0em;
    height: 2em;/*30px;
    margin-bottom: 0;*/
    background-color: #ff8a00;
  }

.services-carousel-two .owl-nav {
  position: absolute;
  left: 65px;
  bottom: 0;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  background-color: transparent;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.services-carousel-two .owl-next, .services-carousel-two .owl-prev {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 0.875em;
  color: #bbbbbb;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 30px;
  padding-top: 6px;
  z-index: 9;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

  .services-carousel-two .owl-next:before, .services-carousel-two .owl-prev:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 60px;
    border: 2px solid #bbbbbb;
    border-right: 0;
    content: "";
    z-index: -1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  .services-carousel-two .owl-prev span {
    margin-right: 5px;
  }

  .services-carousel-two .owl-next:before {
    left: auto;
    right: -25px;
    border: 2px solid #bbbbbb;
    border-left: 0;
  }

  .services-carousel-two .owl-next span {
    margin-left: 5px;
  }



/*--------------------------------------------------------------
# Projects Section Three
--------------------------------------------------------------*/

.projects-section-three {
  position: relative;
  padding: 80px 0 120px 0;
}

  .projects-section-three .inner-container {
    position: relative;
  }

  .projects-section-three .sec-title {
    position: relative;
    margin-bottom: 75px;
  }

.project-block {
  position: relative;
}

  .project-block .image-box {
    position: relative;
  }

    .project-block .image-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .project-block .image-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

  .project-block .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }

    .project-block .overlay-box h4 {
      position: absolute;
      right: 30px;
      top: 30px;
      text-align: right;
      opacity: 0;
      font-size: 1.125em;
      line-height: 24px;
      color: #ffffff;
      font-weight: 400;
      text-transform: uppercase;
      -webkit-transform: scale(0,0);
      -moz-transform: scale(0,0);
      -ms-transform: scale(0,0);
      -o-transform: scale(0,0);
      transform: scale(0,0);
      -webkit-transition: all 400ms ease;
      -moz-transition: all 400ms ease;
      -ms-transition: all 400ms ease;
      -o-transition: all 400ms ease;
      transition: all 400ms ease;
    }

      .project-block .overlay-box h4 a {
        color: #ffffff;
      }

  .project-block .image-box:hover .overlay-box h4 {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 700ms;
    -moz-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
  }

  .project-block .overlay-box:before {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0%;
    width: 0%;
    opacity: 0;
    overflow: hidden;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

  .project-block .image-box:hover .overlay-box:before {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
    border-radius: 0%;
  }

  .project-block .overlay-box .btn-box {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    opacity: 0;
    margin-top: -15px;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

    .project-block .overlay-box .btn-box a {
      position: relative;
      display: inline-block;
      font-size: 1.5em;
      line-height: 30px;
      color: #ffffff;
      font-weight: 400;
      margin: 0 6px;
      -webkit-transition: all 400ms ease;
      -moz-transition: all 400ms ease;
      -ms-transition: all 400ms ease;
      -o-transition: all 400ms ease;
      transition: all 400ms ease;
    }

      .project-block .overlay-box .btn-box a:hover {
        color: #ff8a00;
      }

  .project-block .image-box:hover .overlay-box .btn-box {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  .project-block .overlay-box .tag {
    position: absolute;
    left: 30px;
    bottom: 30px;
    text-align: right;
    opacity: 0;
    font-size: 0.875em;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -o-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
  }

  .project-block .image-box:hover .overlay-box .tag {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
  }

.projects-carousel {
  position: relative;
}

  .projects-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: -130px;
    max-width: 1480px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .projects-carousel .owl-next,
  .projects-carousel .owl-prev {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    font-size: 0.875em;
    color: #bbbbbb;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 30px;
    padding-top: 6px;
    background-color: #ffffff;
    z-index: 9;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

    .projects-carousel .owl-next:hover,
    .projects-carousel .owl-prev:hover {
      color: #ff8a00;
    }

    .projects-carousel .owl-next:before,
    .projects-carousel .owl-prev:before {
      position: absolute;
      left: 0;
      top: 0;
      height: 40px;
      width: 60px;
      border: 2px solid #bbbbbb;
      border-right: 0;
      content: "";
      z-index: -1;
      -webkit-transition: all 200ms ease;
      -moz-transition: all 200ms ease;
      -ms-transition: all 200ms ease;
      -o-transition: all 200ms ease;
      transition: all 200ms ease;
    }

    .projects-carousel .owl-next:hover:before,
    .projects-carousel .owl-prev:hover:before {
      border-color: #ff8a00;
    }

    .projects-carousel .owl-next:before {
      left: auto;
      right: -25px;
      border: 2px solid #bbbbbb;
      border-left: 0;
    }

    .projects-carousel .owl-next span {
      margin-left: 5px;
    }

    .projects-carousel .owl-prev span {
      margin-right: 5px;
    }

/*=== Projects Section Alternate ===*/

.projects-section.alternate {
  position: relative;
  padding: 100px 0;
}

.mixitup-gallery .filters {
  margin-bottom: 50px;
  text-align: center;
}

  .mixitup-gallery .filters .filter-tabs {
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #777777;
  }

  .mixitup-gallery .filters li {
    position: relative;
    float: left;
    font-size: 1em;
    line-height: 30px;
    color: #777777;
    font-weight: 500;
    cursor: pointer;
    text-transform: capitalize;
    padding: 0 5px 10px;
    margin-right: 30px;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    font-family: "Rubik", sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .mixitup-gallery .filters li:last-child {
      margin-right: 0;
    }

    .mixitup-gallery .filters li.active,
    .mixitup-gallery .filters li:hover {
      border-bottom: 2px solid #ff8a00;
    }

.project-block.mix {
  display: none;
  margin-bottom: 30px;
}

.projects-section.alternate .styled-pagination {
  margin-top: 50px;
}

/*--------------------------------------------------------------
# Projects Section Three
--------------------------------------------------------------*/

.page-en .process-section {
  padding: 0px 0 0px 0;
  top: 0px;
}

.process-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 0px 0;
  top: -140px;
}

  .process-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 46%;
    background: #95a0a3;
    opacity: 0.95;
    content: "";
  }

@media (max-width: 1573px) { /* 20211227 */
  .process-section:before {
    width: 41.6%;
  }
}

.process-section .sec-title {
  position: relative;
  margin-bottom: 75px;
}

.process-section .sec-title {
  margin-bottom: 40px;
}

.process-section .inner-column {
  margin-left: 90px;
}

.sec-title.light .float-text {
  color: #f2f2f2;
  opacity: 0.10;
  font-size: 3.6em;
  font-weight: 900;
}

@media screen and (max-width: 1573px) {
  .sec-title.light .float-text {
    display: none;
  }

  .sec-title .float-text {
    display: none;
  }

  .process-section .inner-column {
    margin-left: 0px;
  }

  .sec-title h2 {
    position: relative;
    display: block;
    font-size: 1.5em;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 900;
    text-align: left;
  }
}

.process-block {
  position: relative;
  margin-bottom: 0px;
}

  .process-block .inner-box {
    position: relative;
    padding: 35px 30px 30px;
    background-color: #222222;
    border: 1px dashed #bbbbbb;
    border-radius: 0 0 0 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .process-block .inner-box:hover {
      border-color: #ff8a00;
    }

    .process-block .inner-box .count {
      position: absolute;
      right: 40px;
      top: -40px;
      height: 65px;
      width: 80px;
      background-color: #777777;
      border-radius: 0 10px 0 0;
      font-size: 1.875em;
      line-height: 65px;
      color: #ffffff;
      font-weight: 700;
      text-align: center;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

    .process-block .inner-box:hover .count {
      background-color: #ff8a00;
    }

  .process-block h4 {
    position: relative;
    display: block;
    font-size: 1.5625em;
    line-height: 25px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
  }

    .process-block h4 a {
      color: #ffffff;
      display: inline-block;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .process-block h4 a:hover {
        color: #ff8a00;
      }

  .process-block .text {
    display: block;
    font-size: 0.875em;
    line-height: 24px;
    color: #bbbbbb;
    font-weight: 400;
    margin-bottom: 15px;
  }

  .process-block .link-box {
    position: relative;
  }

    .process-block .link-box a {
      position: relative;
      display: inline-block;
      font-size: 0.875em;
      line-height: 20px;
      color: #ff8a00;
      font-weight: 700;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .process-block .link-box a:hover {
        color: #ffffff;
      }

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  overflow: hidden;
  background-color: #f1f1f1;
  position: relative;
  z-index: 10;
}

  .faq-one::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    opacity: 0.04;
    background-image: url(../images/shapes/about-count-pattern-1-1.png);
  }

.faq-one__content {
  padding-right: 70px;
}

@media (max-width: 1199px) {
  .faq-one__content {
    padding-right: 0;
  }
}

.faq-one .about-counter__image-content {
  background-color: var(--unique-special);
  top: auto;
  bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 15px;
}

.faq-one .block-title {
  margin-bottom: 0;
}

.faq-one #accordion {
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

  .faq-one #accordion li {
    padding: 25px 0;
  }

    .faq-one #accordion li + li {
      border-top: 1px solid #e4e4e4;
    }

  .faq-one #accordion .para-title {
    position: relative;
    color: var(--unique-black);
    font-size: 1em;
    font-weight: bold;
    line-height: 1.3;
    cursor: pointer;
    padding: 0px 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

    .faq-one #accordion .para-title span {
      display: block;
    }

    .faq-one #accordion .para-title.active {
      color: var(--unique-secondary);
    }

      .faq-one #accordion .para-title.active i {
        color: var(--unique-secondary);
      }

    .faq-one #accordion .para-title i {
      font-size: 1em;
      color: #7e7e7e;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
      position: absolute;
      top: 50%;
      right: 25px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }

  .faq-one #accordion p {
    margin: 0;
    padding: 0 40px;
  }

/*--------------------------------------------------------------
# FAQ Two
--------------------------------------------------------------*/

.faq-section {
  position: relative;
  padding: 100px 0 35px;
}

  .faq-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 38%;
    background-image: url(../images/icons/icon-dot.png);
    background-repeat: repeat;
    background-position: center;
    content: "";
  }

  .faq-section:after {
    position: absolute;
    right: 15px;
    bottom: 125px;
    height: 488px;
    width: 320px;
    background-image: url(../images/icons/icon-flower.png);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
  }

  .faq-section .sec-title {
    position: relative;
    margin-bottom: 75px;
  }

  .faq-section .image-column {
    position: relative;
    margin-bottom: 50px;
  }

    .faq-section .image-column .inner-column {
      position: relative;
    }

    .faq-section .image-column .image-box {
      position: relative;
    }

    .faq-section .image-column .image {
      position: relative;
      margin-bottom: 0;
      text-align: center;
    }

  .faq-section .title-column .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
  }

  .faq-section .accordion-column {
    position: relative;
  }

    .faq-section .accordion-column .inner-column {
      position: relative;
      padding-top: 45px;
      padding-left: 30px;
    }

    .faq-section .accordion-column .sec-title {
      margin-bottom: 35px;
    }

  .faq-section .accordion-box {
    position: relative;
  }

.accordion-box .block {
  position: relative;
}

  .accordion-box .block .acc-btn {
    position: relative;
    font-size: 1.25em;
    color: #252525;
    font-weight: 900;
    line-height: 32px;
    cursor: pointer;
    padding: 15px 25px 15px;
    padding-right: 50px;
    border: 1px solid #dddddd;
    font-family: "Rubik", sans-serif;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }

    .accordion-box .block .acc-btn.active {
      background-color:#996c37;/*#ff8a00;*/
      border-color:#996c37;/*#ff8a00;*/
      color: #ffffff;
      margin-bottom: 0px;
    }

  .accordion-box .block .icon {
    position: absolute;
    right: 15px;
    top: 20px;
    height: 30px;
    width: 30px;
    font-size: 1.125em;
    line-height: 30px;
    color: #252525;
    text-align: center;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
  }

  .accordion-box .block .acc-btn.active .icon:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    opacity: 1;
    z-index: 1;
    color: #ffffff;
    font-size: 1.125em;
    content: "\f146";
    font-family: "FontAwesome";
    text-align: center;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
  }

  .accordion-box .block .acc-content {
    position: relative;
    display: none;
    background-color: #ffffff;
  }

  .accordion-box .block .content {
    position: relative;
    padding: 15px 0px;
    margin-bottom: 0;
  }

  .accordion-box .block .acc-content.current {
    display: block;
  }

  .accordion-box .block .content .text {
    display: block;
    font-size: 1.125em;
    line-height: 32px;
    color: #777777;
    font-weight: bold;
  }

  .accordion-box .block .acc-btn.active span {
    display: block;
    font-size: 0.625em;
    margin-top: 10px;
    float: right;
    line-height: 32px;
    color: #ffffff;
    font-weight: bold;
  }

  .accordion-box .block .acc-btn span {
    display: block;
    font-size: 0.625em;
    margin-top: 10px;
    float: right;
    line-height: 32px;
    color: #252525;
    font-weight: bold;
  }

/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/

.video-section {
  position: relative;
  padding: 80px 0 0 0;
}

  .video-section .outer-box {
    position: relative;
    max-width: 1480px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
  }

  .video-section .sec-title {
    position: relative;
    margin-bottom: 75px;
  }

  .video-section .outer-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #222222;
    opacity: 0.90;
    content: "";
  }

  .video-section .content-column {
    position: relative;
    order: 12;
  }

    .video-section .content-column .inner-column {
      position: relative;
      padding: 35px 35px 0px 40px;
    }

    .video-section .content-column .sec-title {
      margin-bottom: 22px;
    }

    .video-section .content-column .title {
      position: relative;
      display: block;
      font-size: 1.125em;
      line-height: 25px;
      color: #ff8a00;
      font-weight: 400;
      margin-bottom: 30px;
    }

    .video-section .content-column .text {
      position: relative;
      display: block;
      font-size: 0.875em;
      line-height: 28px;
      color: #ffffff;
      font-weight: 400;
    }

  .video-section .video-column .inner-column {
    position: relative;
    padding-left: 50px;
  }

  .video-section .video-column .video-box {
    position: relative;
  }

    .video-section .video-column .video-box .image {
      position: relative;
      margin-bottom: 0;
    }

      .video-section .video-column .video-box .image img {
        display: block;
        width: 100%;
        height: auto;
      }

    .video-section .video-column .video-box .link {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      text-align: center;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .video-section .video-column .video-box .link:hover {
        background-color: rgba(0,0,0,0.50);
      }

      .video-section .video-column .video-box .link .icon {
        position: absolute;
        left: 50%;
        top: 50%;
        height: 60px;
        width: 60px;
        background-color: #333333;
        padding-left: 4px;
        font-size: 1.125em;
        color: #ff8a00;
        border-radius: 50%;
        text-align: center;
        line-height: 60px;
        margin-top: -30px;
        margin-left: -30px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

      .video-section .video-column .video-box .link:hover .icon {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
      }

/*--------------------------------------------------------------
# Specialize Section
--------------------------------------------------------------*/

.specialize-section-two {
  position: relative;
  padding: 0px 0 0px 0;
}

  .specialize-section-two .sec-title {
    position: relative;
    margin-bottom: 75px;
  }

  .specialize-section-two .title-column {
    position: relative;
  }

    .specialize-section-two .title-column .sec-title {
      margin-bottom: 50px;
    }

    .specialize-section-two .title-column .text-box {
      position: relative;
    }

      .specialize-section-two .title-column .text-box h4 {
        position: relative;
        display: block;
        font-size: 1.5em;
        line-height: 19.2px;
        color: #ffac00;
        font-weight: 500;
        margin-bottom: 30px;
      }

      .specialize-section-two .title-column .text-box p {
        position: relative;
        display: block;
        font-size: 0.875em;
        line-height: 30px;
        color: #777777;
        font-weight: 400;
        margin-bottom: 30px;
      }

    .specialize-section-two .title-column .link-box {
      position: relative;
    }

      .specialize-section-two .title-column .link-box a {
        position: relative;
        display: inline-block;
        font-size: 1.125em;
        line-height: 30px;
        color: #222222;
        font-weight: 500;
        font-family: "Rubik", sans-serif;
      }

  .specialize-section-two .carousel-column {
    position: relative;
  }

    .specialize-section-two .carousel-column .inner-column {
      position: relative;
      padding-left: 40px;
    }

    .specialize-section-two .carousel-column .carousel-outer {
      position: relative;
      padding-left: 160px;
    }

  .specialize-section-two .thumbs-carousel {
    position: absolute;
    left: 75px;
    top: -64px;
    transform: rotate(90deg);
    transform-origin: left;
    max-width: 590px;
    margin: 0 auto;
  }

    .specialize-section-two .thumbs-carousel .thumb-box {
      position: relative;
      cursor: pointer;
    }

      .specialize-section-two .thumbs-carousel .thumb-box figure {
        position: relative;
        margin-bottom: 0;
      }

      .specialize-section-two .thumbs-carousel .thumb-box .overlay {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
      }

        .specialize-section-two .thumbs-carousel .thumb-box .overlay:before {
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          background: #ff9f14;
          opacity: .70;
          content: "";
          -webkit-transform: scale(0);
          -moz-transform: scale(0);
          -ms-transform: scale(0);
          -o-transform: scale(0);
          transform: scale(0);
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          -ms-transition: all 300ms ease;
          -o-transition: all 300ms ease;
          transition: all 300ms ease;
        }

      .specialize-section-two .thumbs-carousel .thumb-box:hover .overlay:before {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
      }

      .specialize-section-two .thumbs-carousel .thumb-box .overlay .icon {
        position: absolute;
        height: 40px;
        width: 40px;
        left: 50%;
        top: 50%;
        margin-left: -20px;
        margin-top: -20px;
        text-align: center;
        line-height: 40px;
        font-size: 1.875em;
        color: #222222;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

      .specialize-section-two .thumbs-carousel .thumb-box:hover .overlay .icon {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        transition-delay: 300ms;
      }

  .specialize-section-two .carousel-outer .thumbs-carousel img {
    transform: rotate(-90deg);
    width: 130px;
    height: auto;
  }

.carousel-outer .thumbs-carousel .owl-nav {
  position: absolute;
  left: -12%;
  top: -310%;
  transform: rotate(-90deg);
  transform-origin: left;
  min-width: 300px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  right: 5%;
  top: -90px;
  transform: rotate(0deg);
  transform-origin: left;
}

.testimonial-carousel .owl-next,
.testimonial-carousel .owl-prev {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 1.0625em;
  color:#707070; /*#bbbbbb;*/
  font-weight: 900;
  /*text-transform: uppercase;*/
  line-height: 30px;
  padding-top: 6px;
  background-color: #ffffff;
  z-index: 9;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

  .testimonial-carousel .owl-next:hover,
  .testimonial-carousel .owl-prev:hover {
    color: #ff8a00;
  }

  .testimonial-carousel .owl-next:before,
  .testimonial-carousel .owl-prev:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 60px;
    border: 2px solid #bbbbbb;
    border-right: 0;
    content: "";
    z-index: -1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  .testimonial-carousel .owl-next:hover:before,
  .testimonial-carousel .owl-prev:hover:before {
    border-color: #ff8a00;
  }

  .testimonial-carousel .owl-next:before {
    left: auto;
    right: -25px;
    border: 2px solid #bbbbbb;
    border-left: 0;
  }

  .testimonial-carousel .owl-next span {
    margin-left: 5px;
  }

  .testimonial-carousel .owl-prev span {
    margin-right: 5px;
  }



.carousel-outer .thumbs-carousel .owl-next,
.carousel-outer .thumbs-carousel .owl-prev {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 1.0625em;
  color: #bbbbbb;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 30px;
  padding-top: 6px;
  background-color: #ffffff;
  z-index: 9;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

  .carousel-outer .thumbs-carousel .owl-next:hover,
  .carousel-outer .thumbs-carousel .owl-prev:hover {
    color: #ff8a00;
  }

  .carousel-outer .thumbs-carousel .owl-next:before,
  .carousel-outer .thumbs-carousel .owl-prev:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 60px;
    border: 2px solid #bbbbbb;
    border-right: 0;
    content: "";
    z-index: -1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  .carousel-outer .thumbs-carousel .owl-next:hover:before,
  .carousel-outer .thumbs-carousel .owl-prev:hover:before {
    border-color: #ff8a00;
  }

  .carousel-outer .thumbs-carousel .owl-next:before {
    left: auto;
    right: -25px;
    border: 2px solid #bbbbbb;
    border-left: 0;
  }

  .carousel-outer .thumbs-carousel .owl-next span {
    margin-left: 5px;
  }

  .carousel-outer .thumbs-carousel .owl-prev span {
    margin-right: 5px;
  }

.specialize-section-two.alternate .title-column {
  order: 12;
}

.specialize-section-two.alternate .carousel-outer .thumbs-carousel .owl-nav {
  position: absolute;
  left: 96%;
  bottom: auto;
  top: -442%;
  transform: rotate(-90deg);
}

.specialize-section-two.alternate .carousel-column .inner-column {
  padding-left: 0;
  padding-right: 40px;
}


/*--------------------------------------------------------------
# Fact counter
--------------------------------------------------------------*/
.fact-counter {
  position: relative;
  margin-bottom: -145px;
}

  .fact-counter::before {
    content: "";
    width: 485px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/shapes/cta-bg-shape-1-1.png);
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 12;
  }

  .fact-counter .container {
    padding-top: 46px;
    padding-bottom: 46px;
    position: relative;
    z-index: 11;
    padding-left: 75px;
  }

@media (max-width: 991px) {
  .fact-counter .container {
    padding-left: 15px;
  }
}

.fact-counter .container::before {
  content: "";
  position: absolute;
  border-top-left-radius: 145px;
  border-bottom-left-radius: 145px;
  left: 15px;
  top: 0;
  width: 1000000px;
  height: 100%;
  background-color: var(--unique-secondary);
}

@media (max-width: 991px) {
  .fact-counter .container::before {
    border-radius: 15px;
  }
}

.fact-counter h3 {
  font-family: var(--heading-font) !important;
  color: #fff;
  font-size: 3.75em;
  line-height: 1;
  margin: 0;
  margin-top: 40px;
}

.fact-counter p {
  margin: 0;
  margin-top: 10px;
  font-size: 1.125em;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

.fact-counter a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: var(--unique-base);
  margin-left: auto;
  margin-right: auto;
  width: 55px;
  height: 36px;
  border-bottom-left-radius: 27.5px;
  border-bottom-right-radius: 27.5px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.fact-counter [class*="col-"] {
  position: relative;
}

@media (max-width: 991px) {
  .fact-counter [class*="col-"]:nth-child(3n)::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .fact-counter [class*="col-"]::before {
    display: none;
  }
}

.fact-counter [class*="col-"]:not(:first-of-type) {
  position: relative;
}

  .fact-counter [class*="col-"]:not(:first-of-type)::before {
    content: "";
    width: 1px;
    height: 140px;
    background-color: #fff;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

.fact-counter [class*="col-"]:hover a {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Cause Details
--------------------------------------------------------------*/
.cause-details .cause-card__content {
  padding-bottom: 0;
  margin-bottom: 40px;
}

.cause-details .cause-card__goals {
  padding-bottom: 0;
  margin-bottom: 30px;
  border-bottom: 0;
}

  .cause-details .cause-card__goals p + p {
    margin-top: 0;
  }

  .cause-details .cause-card__goals > p {
    margin: 0;
    line-height: 1;
    font-size: 0.875em;
    color: #7e7e7e;
  }

    .cause-details .cause-card__goals > p strong {
      font-weight: 400;
      color: var(--unique-black);
    }

.cause-details .cause-card:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cause-details .thm-btn:hover {
  background-color: var(--unique-black);
  color: #fff;
}

@media (min-width: 768px) {
  .cause-details__content h3 {
    font-size: 2.125em;
  }
}

.cause-details__content .cause-card__bottom {
  margin-top: 30px;
  margin-bottom: 60px;
}

.cause-details__sidebar {
  margin-bottom: 80px;
}

.cause-details__presentations {
  padding: 30px;
  background-color: #f1f1f1;
  border-radius: 15px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .cause-details__presentations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px;
    margin-bottom: 60px;
  }
}

.cause-details__presentations > i {
  background-color: #fff;
  width: 40px;
  height: 40px;
  font-size: 1.125em;
  border-radius: 50%;
  color: var(--unique-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .cause-details__presentations > i {
    font-size: 1.5em;
    width: 70px;
    height: 70px;
  }
}

.cause-details__presentations h3 {
  font-size: 1.25em;
  color: var(--unique-black);
  font-weight: bold;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .cause-details__presentations h3 {
    font-size: 1.5em;
    margin-left: 20px;
  }
}

.cause-details__presentations .thm-btn {
  font-size: 0.875em;
  line-height: 1;
  padding: 19.5px 30px;
}

  .cause-details__presentations .thm-btn:hover {
    background-color: var(--unique-black);
    color: #fff;
  }

@media (min-width: 768px) {
  .cause-details__presentations .thm-btn {
    margin-left: auto;
  }
}

.cause-details__organizer {
  margin-bottom: 30px;
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 30px;
  padding-left: 108px;
  position: relative;
}

@media (min-width: 768px) {
  .cause-details__organizer {
    padding: 50px;
    padding-left: 128px;
  }
}

.cause-details__organizer > img {
  position: absolute;
  top: 30px;
  left: 30px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .cause-details__organizer > img {
    left: 50px;
    top: 50px;
  }
}

.cause-details__organizer p {
  margin: 0;
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1;
  color: var(--unique-secondary);
}

.cause-details__organizer h3 {
  margin: 0;
  color: #7e7e7e;
  font-size: 1.125em;
  line-height: 1;
  font-weight: 500;
  font-family: var(--unique-font);
  margin-top: 14px;
  margin-bottom: 24px;
}

  .cause-details__organizer h3 strong {
    font-weight: 500;
    color: var(--unique-black);
  }

.cause-details__organizer-list {
  margin-bottom: 0;
}

  .cause-details__organizer-list li {
    position: relative;
    padding-left: 24px;
    font-size: 1em;
    font-weight: 500;
    color: #7e7e7e;
    line-height: 1;
  }

    .cause-details__organizer-list li a {
      color: inherit;
      -webkit-transition: 500ms;
      transition: 500ms;
    }

      .cause-details__organizer-list li a:hover {
        color: var(--unique-base);
      }

    .cause-details__organizer-list li + li {
      margin-top: 18px;
    }

    .cause-details__organizer-list li > i {
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      color: var(--unique-secondary);
      font-size: 0.9375em;
    }

.cause-details__donations {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 30px;
  padding-bottom: 10px;
  position: relative;
}

@media (min-width: 768px) {
  .cause-details__donations {
    padding: 50px;
    padding-bottom: 30px;
  }
}

.cause-details__donations-title {
  margin: 0;
  font-size: 1.25em;
  font-weight: bold;
  color: var(--unique-black);
  line-height: 1;
  margin-bottom: 8px;
}

.cause-details__donations-list {
  margin-bottom: 0;
}

  .cause-details__donations-list li {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    padding-left: 80px;
  }

    .cause-details__donations-list li::before {
      content: "";
      width: calc(100% + 40px);
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      height: 100%;
      border-radius: 15px;
      background-color: #fff;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
    }

@media (min-width: 768px) {
  .cause-details__donations-list li::before {
    width: calc(100% + 70px);
  }
}

.cause-details__donations-list li:hover:before {
  opacity: 1;
  visibility: visible;
}

.cause-details__donations-list li > img {
  border-radius: 50%;
  left: 0;
  top: 20px;
  position: absolute;
  z-index: 10;
}

  .cause-details__donations-list li > img.anonymus {
    -webkit-filter: brightness(0%);
    filter: brightness(0%);
  }

.cause-details__donations-list li p {
  margin: 0;
  color: var(--unique-secondary);
  font-family: var(--heading-font);
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 10;
}

.cause-details__donations-list li h3 {
  margin: 0;
  line-height: 1;
  color: var(--unique-black);
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
  margin-top: 13px;
  margin-bottom: 2px;
  position: relative;
  z-index: 10;
}

  .cause-details__donations-list li h3 span {
    font-family: var(--unique-font);
    font-size: 0.875em;
    font-weight: 500;
    color: var(--unique-special);
  }

.cause-details__donations-list li span {
  position: relative;
  z-index: 10;
  line-height: 1;
  font-size: 1em;
  font-weight: 500;
  color: #7e7e7e;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-one {
  position: relative;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

  .about-one:before {
    content: "";
    position: absolute;
    width: 3000px;
    background-color: transparent;
    border-bottom-right-radius: 10px;
    top: -300px;
    left: 0;
    height: 120%;
    background-repeat: no-repeat;
    background-image: url(../images/shapes/devider-002.png);
  }

  .about-one .container {
    position: relative;
  }

  .about-one [class*="col-"] .img-fluid {
    border-radius: 15px;
    -webkit-box-shadow: 0px 10px 0px 0px var(--unique-base);
    box-shadow: 0px 10px 0px 0px var(--unique-base);
  }

  .about-one .slide-options-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -60px;
    margin-bottom: 30px;
  }

  .about-one .slide-options__icon {
    width: 90px;
    height: 140px;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    background-color: #fff;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
  }

  .about-one .active {
    background-color: #CCC;
  }

  .about-one .slide-options__icon i {
    color: #FFF;
    font-size: 3.5em;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

.slide-options__icon + .slide-options__icon {
  margin-left: 20px;
}

.slide-options__icon h3 {
  font-size: 1.25em;
  color: #FFF;
  font-weight: 600;
  font-family: var(--thm-font);
  line-height: 1;
  margin-top: 13px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.slide-options__icon:nth-child(1) {
  background-color: #ed4b4b;
}

  .slide-options__icon:nth-child(1):hover {
    background-color: #CCC;
  }

.slide-options__icon:nth-child(2) {
  background-color: #4ecd99;
}

  .slide-options__icon:nth-child(2):hover {
    background-color: #CCC;
  }

.slide-options__icon:nth-child(3) {
  background-color: #5366c2;
}

  .slide-options__icon:nth-child(3):hover {
    background-color: #CCC;
  }

.slide-options__icon:nth-child(4) {
  background-color: #fcad30;
}

  .slide-options__icon:nth-child(4):hover {
    background-color: #CCC;
  }


@media (max-width: 991px) {
  .about-one [class*="col-"] .img-fluid {
    width: 100%;
    margin-bottom: 40px;
  }
}

.about-one [class*="col-"]:nth-child(3) .img-fluid {
  -webkit-box-shadow: 0px 10px 0px 0px var(--unique-primary);
  box-shadow: 0px 10px 0px 0px var(--unique-primary);
}

.about-one .team-about__top-text {
  padding-right: 0;
}

.about-one__award {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: var(--unique-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  border-radius: 50%;
}

.about-counter {
  overflow: hidden;
  background-color: #f1f1f1;
  position: relative;
  z-index: 10;
}

  .about-counter::after {
    content: "";
    width: 100%;
    height: 120px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .about-counter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-repeat: no-repeat;
    background-image: url(../images/shapes/about-count-pattern-1-1.png);
  }

  .about-counter .container {
    position: relative;
    z-index: 11;
  }

.about-counter__text {
  margin: 0;
  font-size: 1.125em;
  line-height: 34px;
  font-weight: 500;
  color: #7e7e7e;
}

@media (max-width: 480px) {
  .about-counter__text br {
    display: none;
  }
}

.about-counter__image {
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .about-counter__image {
    margin-top: 60px;
  }
}

.about-counter__image > img {
  border-radius: 0px;
}

@media (max-width: 991px) {
  .about-counter__image > img {
    max-width: 100%;
  }
}

.about-counter__image-content {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  max-width: 399px;
  background-color: var(--unique-primary);
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 43px 50px;
}

@media (max-width: 991px) {
  .about-counter__image-content {
    left: 0;
  }
}

@media (max-width: 991px) {
  .about-counter__image-content {
    position: relative;
    top: auto;
    left: auto;
    border-radius: 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 375px) {
  .about-counter__image-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.about-counter__image-content img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about-counter__image-content p {
  margin: 0;
  margin-left: 30px;
  color: #fff;
  font-size: 1.25em;
  line-height: 28px;
  font-weight: 600;
}

@media (max-width: 375px) {
  .about-counter__image-content p {
    margin-left: 0;
    margin-top: 20px;
  }
}

.about-counter .ul-list-one {
  margin-top: 45px;
  margin-bottom: 95px;
}

  .about-counter .ul-list-one li + li {
    margin-top: 7px;
  }

.about-counter__count {
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 470px;
  padding-top: 39px;
  padding-bottom: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px -10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -10px 60px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .about-counter__count {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.about-counter__count h3 {
  margin: 0;
  font-size: 3.75em;
  font-family: var(--heading-font) !important;
  color: var(--unique-secondary);
}

.about-counter__count p {
  font-size: 1.125em;
  line-height: 26px;
  color: #7e7e7e;
  font-weight: 500;
  margin: 0;
  margin-left: 20px;
}

@media (max-width: 480px) {
  .about-counter__count p {
    margin-left: 0;
    margin-top: 10px;
  }

    .about-counter__count p br {
      display: none;
    }
}

/*--------------------------------------------------------------
# About Two Section
--------------------------------------------------------------*/
.about-two {
  position: relative;
  background-color: #fff;
  padding-bottom: 120px;
  padding-top: 90px;
}

  .about-two:before {
    content: "";
    position: absolute;
    width: 3000px;
    background-color: transparent;
    border-bottom-right-radius: 10px;
    top: -320px;
    left: 0;
    height: 120%;
    background-repeat: no-repeat;
    background-image: url(../images/shapes/devider-inner.png);
  }

.about-two__image {
  position: relative;
  left: 0px;
}

  .about-two__image img {
    border-radius: 25px;
  }

@media (max-width: 1199px) {
  .about-two__image {
    left: auto;
    margin-bottom: 60px;
  }

    .about-two__image img {
      max-width: 100%;
    }
}

.about-two__image::before {
  content: "";
  width: 254px;
  height: 247px;
  background-image: url(../images/shapes/video-dot-1-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 60px;
  left: -145px;
  z-index: -1;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.about-two__award {
  position: absolute;
  bottom: 85px;
  left: 0%;
  -webkit-transform: translateX(-23%);
  transform: translateX(-23%);
  width: 184px;
  height: 184px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  background-color: var(--unique-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .about-two__award {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.about-two__content > p {
  font-size: 1.125em;
  line-height: 34px;
  font-weight: 500;
  color: #7e7e7e;
}

.about-two__box {
  padding-top: 10px;
}

  .about-two__box h3 {
    margin: 0;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.125em;
    color: var(--unique-black);
    font-weight: bold;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }

    .about-two__box h3 i {
      color: var(--unique-secondary);
      font-size: 1.625em;
      margin-right: 10px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
      -webkit-transition: -webkit-transform 500ms ease;
      transition: -webkit-transform 500ms ease;
      transition: transform 500ms ease;
      transition: transform 500ms ease, -webkit-transform 500ms ease;
    }

    .about-two__box h3:hover i {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }

  .about-two__box p {
    margin: 0;
    font-size: 1.125em;
    line-height: 30px;
    color: #7e7e7e;
  }

  .about-two__box + .about-two__box {
    margin-top: 30px;
  }

.about-two__box-two {
  background-color: #f0f0f0;
  padding: 60px;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .about-two__box-two {
    max-width: 370px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.about-two__box-two > i {
  font-size: 3.625em;
  color: var(--unique-secondary);
}

.about-two__box-two h3 {
  margin: 0;
  color: var(--unique-black);
  font-weight: bold;
  margin-top: 5px;
  font-size: 1.125em;
  line-height: 30px;
  letter-spacing: -0.64px;
}

.about-two .thm-btn {
  margin-top: 15px;
}

  .about-two .thm-btn:hover {
    background-color: var(--unique-black);
    color: #fff;
  }

.margin_right30 {
  margin-right: 30px;
}

.about-bgcolor-grey > .about-bg-layer > .about-col-wrapper-bg-layer-inner {
  background-color: #f8f8f8;
}

.spacing-1 {
  padding: 88px 35px 20px;
  margin: 0 35px;
  margin-top: -50px;
}

.about-bg {
  position: relative;
}

.about-col-wrapper-bg-layer-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.layer-content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.section-title {
  position: relative;
  margin-bottom: 12px;
  margin-top: -7px;
}

  .section-title .title-header {
    padding-bottom: 11px;
  }

  .section-title h2.title {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 10px;
  }

b, strong {
  font-weight: bolder;
}

.section-title .title-desc p {
  padding-bottom: 15px;
  margin: 0;
}

.about_single_image-wrapper.about_single_image_hover {
  overflow: hidden;
}

.mr_70 {
  margin-right: -70px;
}

.ml_70 {
  margin-left: -70px;
}

.about_single_image-wrapper {
  position: relative;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.about_single_image-wrapper .about-play-icon-btn {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about-play-icon-btn .about-play-icon-animation {
  position: relative;
  display: inline-block;
}

.about-bgcolor-skincolor, .about-bgcolor-skincolor > .about-bg-layer {
  background-color: #c3002f;
}

.about-play-icon-btn .about-play-icon-animation:before {
  width: calc(100% * 1.6 );
  height: calc(100% * 1.6 );
  opacity: .5;
  background-color: #fff;
}

.about-play-icon-btn .about-play-icon-animation:after, .about-play-icon-btn .about-play-icon-animation:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}

.about-play-icon-btn .about-play-icon-animation .about-icon {
  margin-bottom: 0;
}

.about-play-icon-btn .about-icon.about-icon_element-size-sm {
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0;
  z-index: 2;
}

.about-icon {
  margin-bottom: 25px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
  transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  box-sizing: content-box;
  position: relative;
}

  .about-icon.about-icon_element-style-rounded {
    border-radius: 50%;
  }

  .about-icon.about-icon_element-size-sm {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }

.about-play-icon-btn .about-play-icon-animation .about-icon {
  margin-bottom: 0;
}

.about-play-icon-btn .about-icon.about-icon_element-size-sm {
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0;
  z-index: 2;
}

  .about-play-icon-btn .about-icon.about-icon_element-size-sm i.fa-play {
    padding-left: 5px;
    font-size: 1.25em;
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
  }

.about-icon.about-icon_element-size-sm i {
  font-size: 1.875em;
}

.about-icon i {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

i.fa-play {
  padding-left: 5px;
}

.about-play-icon-btn .about-play-icon-animation:after {
  z-index: 1;
  width: calc(100% * 1.3 );
  height: calc(100% * 1.3 );
  opacity: .3;
  background-color: #fff;
}

.about-play-icon-btn .about-play-icon-animation:after, .about-play-icon-btn .about-play-icon-animation:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}

.about_single_image-wrapper.about_single_image_hover:after {
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
  background: -webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),to(rgba(255,255,255,.3)));
  background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.padding_top30 {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  background-repeat: no-repeat;
  background-position: center center;
}

  .testimonials-one .block-title p {
    color: var(--unique-base);
  }

.testimonials-one__single {
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  padding-bottom: 58px;
  margin-bottom: 30px;
}

  .testimonials-one__single:hover {
    border-color: #e3e3e3;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  }

  .testimonials-one__single p {
    width: 100%;
    margin: 0;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    color: #7e7e7e;
    font-size: 1.125em;
    line-height: 34px;
    font-weight: 500;
  }

  .testimonials-one__single h3 {
    margin: 0;
    color: var(--unique-black);
    font-size: 1.125em;
    font-family: var(--unique-font);
    font-weight: 600;
    line-height: 1;
    margin-top: 40px;
  }

  .testimonials-one__single span {
    margin: 0;
    display: block;
    line-height: 1;
    font-size: 1.125em;
    color: var(--unique-secondary);
    margin-top: 5px;
  }

.testimonials-one__image {
  display: inline-block;
  vertical-align: middle;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  position: relative;
  margin-bottom: 35px;
}

  .testimonials-one__image img {
    border-bottom-left-radius: 38px;
    border-bottom-right-radius: 38px;
  }

  .testimonials-one__image::before {
    content: "";
    width: 38px;
    background-color: var(--unique-base);
    height: 38px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    background-image: url(../images/shapes/testimonials-qoute-1-1.png);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }

.testimonials-two {
  padding-top: 120px;
  padding-bottom: 120px;
}

  .testimonials-two .block-title p {
    color: var(--unique-base);
  }

  .testimonials-two .block-title h3 {
    color: #fff;
  }

  .testimonials-two .team-about__top-text {
    margin: 0;
    color: #9e9e9e;
  }

@media (max-width: 991px) {
  .testimonials-two .team-about__top-text {
    margin-top: 30px;
  }
}

.testimonials-two__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

  .testimonials-two__meta h3,
  .testimonials-two__meta span {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.125em;
    font-weight: 600;
    font-family: var(--unique-font);
    line-height: 1;
  }

    .testimonials-two__meta h3::after,
    .testimonials-two__meta span::after {
      content: "-";
      margin-left: 10px;
      margin-right: 10px;
      color: #fff;
    }

  .testimonials-two__meta span {
    color: var(--unique-base);
  }

    .testimonials-two__meta span::after {
      display: none;
    }

#testimonials-two__carousel {
  margin-top: 50px;
}

  #testimonials-two__carousel p {
    text-align: center;
    margin: 0;
    margin-bottom: 45px;
    color: #fff;
    font-size: 1.875em;
    line-height: 50px;
  }

@media (max-width: 991px) {
  #testimonials-two__carousel p br {
    display: none;
  }
}

@media (max-width: 575px) {
  #testimonials-two__carousel p {
    font-size: 1.18em;
    line-height: 1.5;
  }
}

#testimonials-two__thumb {
  width: 90%;
  max-width: 90%;
  min-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

  #testimonials-two__thumb .swiper-slide {
    padding-top: 19px;
    position: relative;
  }

    #testimonials-two__thumb .swiper-slide::before {
      content: "";
      width: 38px;
      background-color: var(--unique-base);
      height: 38px;
      display: block;
      background-repeat: no-repeat;
      background-position: center center;
      border-radius: 50%;
      background-image: url(../images/shapes/testimonials-qoute-1-1.png);
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%);
      z-index: 10;
      opacity: 0;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
    }

  #testimonials-two__thumb img {
    width: 100%;
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    cursor: pointer;
  }

  #testimonials-two__thumb .swiper-slide-thumb-active::before {
    opacity: 1;
  }

  #testimonials-two__thumb .swiper-slide-thumb-active img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }

.gallery-testimonials-parallax {
  background-color: #1d1c1c;
  background-image: url(../images/backgrounds/testimonials-bg-1-1.png);
  background-position: bottom center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-blend-mode: color-dodge;
  margin-top: 175px;
}

  .gallery-testimonials-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1d1c1c;
    opacity: 0.97;
  }

  .gallery-testimonials-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/backgrounds/testimonials-bg-1-2.png);
    background-repeat: no-repeat;
    background-position: center -20%;
  }

  .gallery-testimonials-parallax .container {
    position: relative;
    z-index: 11;
  }

  .gallery-testimonials-parallax .gallery-home-one {
    top: -175px;
    position: relative;
  }

/*--------------------------------------------------------------
# Testimonial Section Two
--------------------------------------------------------------*/

.testimonial-section-two {
  position: relative;
  padding: 60px 0 100px 0;
  background-color: #f5f5f5;
}

  .testimonial-section-two .sec-title {
    position: relative;
    margin-bottom: 75px;
  }

.testimonial-carousel-two {
  position: relative;
  padding-left: 100px;
}

.testimonial-block-two {
  position: relative;
}

  .testimonial-block-two .inner-box {
    position: relative;
    padding: 40px 60px;
    border: 1px dashed #bbbbbb;
    background-color: #ffffff;
  }

    .testimonial-block-two .inner-box .text {
      position: relative;
      display: block;
      font-size: 1em;
      line-height: 30px;
      color: #777777;
      font-weight: 400;
      margin-bottom: 20px;
    }

  .testimonial-block-two .info-box {
    position: relative;
    padding-right: 125px;
    min-height: 90px;
    padding-top: 40px;
    text-align: right;
  }

    .testimonial-block-two .info-box:before {
      position: absolute;
      left: 0;
      top: 40px;
      font-size: 3em;
      line-height: 50px;
      color: #f3f3f3;
      font-weight: 400;
      content: "\f10d";
      font-family: "FontAwesome";
    }

    .testimonial-block-two .info-box .thumb {
      position: absolute;
      right: 0;
      top: 0;
      width: 90px;
      height: 90px;
      -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.10);
      -moz-box-shadow: 0 0 10px rgba(0,0,0,0.10);
      -ms-box-shadow: 0 0 10px rgba(0,0,0,0.10);
      -o-box-shadow: 0 0 10px rgba(0,0,0,0.10);
      box-shadow: 0 0 10px rgba(0,0,0,0.10);
    }

      .testimonial-block-two .info-box .thumb img {
        display: block;
        width: 100%;
        height: auto;
      }

    .testimonial-block-two .info-box .name {
      position: relative;
      display: block;
      font-size: 1.125em;
      line-height: 25px;
      color: #ff8a00;
      font-weight: 400;
    }

    .testimonial-block-two .info-box .date {
      position: relative;
      display: block;
      font-size: 0.75em;
      line-height: 25px;
      color: #222222;
      font-weight: 400;
    }

.testimonial-carousel-two .owl-nav {
  position: absolute;
  left: 65px;
  bottom: 0;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  background-color: transparent;
}

.testimonial-carousel-two .owl-next,
.testimonial-carousel-two .owl-prev {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 0.875em;
  color: #bbbbbb;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 30px;
  padding-top: 6px;
  z-index: 9;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

  .testimonial-carousel-two .owl-next:hover,
  .testimonial-carousel-two .owl-prev:hover {
    color: #ff8a00;
  }

  .testimonial-carousel-two .owl-next:before,
  .testimonial-carousel-two .owl-prev:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 60px;
    border: 2px solid #bbbbbb;
    border-right: 0;
    content: "";
    z-index: -1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
  }

  .testimonial-carousel-two .owl-next:hover:before,
  .testimonial-carousel-two .owl-prev:hover:before {
    border-color: #ff8a00;
  }

  .testimonial-carousel-two .owl-next:before {
    left: auto;
    right: -25px;
    border: 2px solid #bbbbbb;
    border-left: 0;
  }

  .testimonial-carousel-two .owl-next span {
    margin-left: 5px;
  }

  .testimonial-carousel-two .owl-prev span {
    margin-right: 5px;
  }


/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  margin-bottom: -145px;
}

  .call-to-action::before {
    content: "";
    width: 485px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/shapes/cta-bg-shape-1-1.png);
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 12;
  }

  .call-to-action .container {
    position: relative;
    padding-top: 63px;
    padding-bottom: 63px;
    z-index: 11;
  }

    .call-to-action .container::before {
      content: "";
      position: absolute;
      border-top-left-radius: 145px;
      border-bottom-left-radius: 145px;
      left: 15px;
      top: 0;
      width: 1000000px;
      height: 100%;
      background-color: var(--unique-secondary);
    }

@media (max-width: 991px) {
  .call-to-action .container::before {
    border-radius: 15px;
  }
}

.call-to-action__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .call-to-action__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.call-to-action__content h3 {
  margin: 0;
  font-size: 2.5em;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.64px;
}

@media (max-width: 767px) {
  .call-to-action__content h3 {
    margin-left: 30px;
  }

    .call-to-action__content h3 br {
      display: none;
    }
}

.call-to-action__icon {
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  background-color: #fff;
  width: 164px;
  height: 164px;
  margin-left: 66px;
  margin-right: 50px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .call-to-action__icon {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .call-to-action__icon {
    margin-left: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.call-to-action__icon i {
  font-size: 3.75em;
  color: var(--unique-black);
}

@media (max-width: 991px) {
  .call-to-action .thm-btn {
    margin-top: 20px;
    margin-left: 50px;
  }
}

@media (max-width: 767px) {
  .call-to-action .thm-btn {
    margin-left: 30px;
  }
}

.call-to-action-two {
  background-color: var(--unique-black);
  position: relative;
}

.call-to-action-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.call-to-action-two .container {
  position: relative;
  padding-left: 0px;
}

@media (max-width: 767px) {
  .call-to-action-two .container {
    padding-left: 15px;
  }
}

.call-to-action-two__icon {
  position: absolute;
  top: 0;
  left: 15px;
  width: 120px;
  height: 140px;
  background-color: var(--unique-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 3.75em;
  color: #fff;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}

@media (max-width: 767px) {
  .call-to-action-two__icon {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 30px;
  }
}

.call-to-action-two .block-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .call-to-action-two .block-title {
    margin-bottom: 30px;
  }
}

.call-to-action-two .block-title p {
  color: var(--unique-base);
}

.call-to-action-two .block-title h3 {
  color: #fff;
  font-size: 3.75em;
  letter-spacing: -0.64px;
}

@media (max-width: 1199px) {
  .call-to-action-two .block-title h3 {
    font-size: 2.875em;
  }

    .call-to-action-two .block-title h3 br {
      display: none;
    }
}

.call-to-action-two .shedule-tabs .tab-buttons li {
  position: relative;
  float: left;
  min-width: 215px;
  background-color: #f14b59;
  font-size: 1.25em;
  line-height: 24px;
  color: #fffefe;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px 8px 12px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 0px;
}

/*--------------------------------------------------------------
# Donate Options
--------------------------------------------------------------*/
.donate-options {
  background-color: #f1f1f1;
  background-image: url(../images/backgrounds/donate-option-bg-1-2.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

  .donate-options::after {
    content: "";
    width: 100%;
    height: 140px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0px -60px 60px 0px rgba(0, 0, 0, 0.025);
    box-shadow: 0px -60px 60px 0px rgba(0, 0, 0, 0.025);
  }

  .donate-options::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f1f1f1;
    opacity: 0.95;
    display: none;
  }

  .donate-options .container {
    position: relative;
    z-index: 10;
  }

  .donate-options p {
    margin: 0;
  }

.donate-options__content > p {
  margin: 0;
  font-size: 1.125em;
  line-height: 36px;
  font-weight: 500;
  color: #7e7e7e;
}

.donate-options__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 110px;
}

@media (max-width: 991px) {
  .donate-options__icon-wrap {
    margin-top: 60px;
    margin-bottom: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.donate-options__icon {
  width: 140px;
  height: 140px;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575px) {
  .donate-options__icon {
    width: 110px;
  }
}

@media (max-width: 375px) {
  .donate-options__icon {
    width: 95px;
  }
}

.donate-options__icon + .donate-options__icon {
  margin-left: 20px;
}

@media (max-width: 375px) {
  .donate-options__icon + .donate-options__icon {
    margin-left: 2px;
  }
}

.donate-options__icon:hover {
  background-color: var(--unique-secondary);
}

  .donate-options__icon:hover i {
    color: #fff;
  }

.donate-options__icon i {
  color: var(--unique-secondary);
  font-size: 3.5em;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donate-options__icon:nth-child(2) i {
  color: var(--unique-primary);
}

.donate-options__icon:nth-child(2):hover {
  background-color: var(--unique-primary);
}

  .donate-options__icon:nth-child(2):hover i {
    color: #fff;
  }

.donate-options__icon:nth-child(3) i {
  color: var(--unique-special);
}

.donate-options__icon:nth-child(3):hover {
  background-color: var(--unique-special);
}

  .donate-options__icon:nth-child(3):hover i {
    color: #fff;
  }

.donate-options__icon h3 {
  font-size: 1.25em;
  color: #fff;
  font-weight: 600;
  font-family: var(--unique-font);
  line-height: 1;
  margin-top: 13px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 991px) {
  .donate-options__icon h3 {
    color: var(--unique-black);
  }
}

.donate-options__icon h3 a {
  color: inherit;
}

.donate-options__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

  .donate-options__call i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--unique-base);
    color: #fff;
    font-size: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    margin-right: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

  .donate-options__call:hover i {
    background-color: var(--unique-black);
  }

  .donate-options__call p {
    margin: 0;
    color: var(--unique-special);
    font-weight: 500;
    font-size: 1.125em;
    line-height: 32px;
  }

    .donate-options__call p span {
      color: #7e7e7e;
    }

    .donate-options__call p a {
      color: var(--unique-black);
      text-decoration: underline;
    }

.donate-options__form {
  background-color: var(--unique-secondary);
  text-align: center;
  background-image: url(../images/shapes/cta-bg-shape-1-1.png);
  background-position: top right;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

  .donate-options__form h3 {
    margin: 0;
    background-color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 1.625em;
    font-weight: bold;
    color: var(--unique-black);
    letter-spacing: -0.64px;
    padding: 31px 0;
    margin-left: -15px;
    margin-right: -15px;
  }

  .donate-options__form p {
    margin: 0;
    font-size: 1.125em;
    line-height: 34px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    padding-top: 70px;
  }

  .donate-options__form input[type="text"],
  .donate-options__form input[type="email"] {
    border: none;
    outline: none;
    text-align: left;
    width: 100%;
    height: 63px;
    border-radius: 31.5px;
    background-color: #fff;
    padding-left: 30px;
    color: #7e7e7e;
    font-size: 1em;
    margin-bottom: 10px;
    max-width: 410px;
    margin-left: auto;
    margin-right: auto;
  }

#donate-amount__predefined {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

  #donate-amount__predefined li {
    border: 2px solid #fff;
    min-height: 63px;
    border-radius: 31.5px;
    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;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

    #donate-amount__predefined li.active, #donate-amount__predefined li:hover {
      background-color: #fff;
    }

      #donate-amount__predefined li.active a, #donate-amount__predefined li:hover a {
        color: var(--unique-black);
      }

    #donate-amount__predefined li a {
      color: #fff;
      font-size: 1em;
      font-weight: 500;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-repeat: repeat-x;
  background-position: center bottom;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

  .service-one .container {
    position: relative;
  }

.service-one__shape-1 {
  position: absolute;
  bottom: 65%;
  left: 95%;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.service-one .block-title {
  margin-bottom: 60px;
  text-align: center;
}

  .service-one .block-title p {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

.service-one [class*="col-"]:not(:first-of-type) {
  position: relative;
}

  .service-one [class*="col-"]:not(:first-of-type)::before {
    content: "";
    width: 1px;
    height: 230px;
    background-color: #e4e4e4;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

@media (max-width: 768px) {
  .service-one [class*="col-"]:not(:first-of-type)::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .service-one [class*="col-"]:nth-child(3n)::before {
    display: none;
  }
}

.service-one .container {
  position: relative;
}

.service-one__box {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

  .service-one__box h3 {
    color: var(--unique-black);
    font-size: 1.25em;
    font-weight: bold;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 0;
    letter-spacing: -0.64px;
  }

    .service-one__box h3 a {
      color: inherit;
    }

  .service-one__box p {
    margin: 0;
    font-size: 1.125em;
    line-height: 34px;
    color: #7e7e7e;
    width: 100%;
    max-width: 192px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }

  .service-one__box:hover .service-one__icon::before,
  .service-one__box:hover .service-one__icon::after {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    opacity: 1;
  }

  .service-one__box:hover .service-one__icon-inner::before {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

.service-one__icon {
  position: relative;
  width: 120px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: relative;
}

  .service-one__icon::before, .service-one__icon::after {
    content: "";
    width: 9px;
    height: 141px;
    background-color: inherit;
    border-radius: 4.5px;
    position: absolute;
    top: -15px;
    left: 30px;
    z-index: 1;
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    opacity: 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  }

  .service-one__icon::after {
    left: 40px;
    top: -30px;
  }

.service-one__icon-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

  .service-one__icon-inner::before {
    content: "";
    top: 0;
    left: 0;
    width: 107px;
    height: 107px;
    background-color: #fff;
    position: absolute;
    opacity: 0.2;
    -webkit-transform: translate(-30%, -30%);
    transform: translate(-30%, -30%);
    border-radius: 50%;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
  }

  .service-one__icon-inner::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #fff;
    opacity: 0.2;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .service-one__icon-inner i {
    color: #fff;
    font-size: 4em;
  }

.service-two {
  padding-bottom: 120px;
  background-color: #f1f1f1;
  background-repeat: repeat-x;
  background-position: bottom center;
  -webkit-box-shadow: inset 0px -10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0px -10px 60px 0px rgba(0, 0, 0, 0.05);
}

  .service-two:before {
    content: "";
    position: absolute;
    width: 3000px;
    background-color: transparent;
    border-bottom-right-radius: 10px;
    top: 585px;
    left: 0;
    height: 120%;
    background-repeat: no-repeat;
    background-image: url(../images/shapes/devider-006.png);
  }

  .service-two .container {
    position: relative;
    margin-top: -20px;
  }

.service-two__box {
  margin-bottom: 34px;
  min-height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: hard-light;
  border-bottom-left-radius: 230px;
  border-bottom-right-radius: 230px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
  background-position: center center;
}

  .service-two__box::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: inherit;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
  }

.service-two__box-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.service-two__box p {
  margin: 0;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-two__box h3 {
  margin: 0;
  color: #fff;
  font-size: 2.25em;
  font-weight: bold;
  letter-spacing: -0.64px;
}

  .service-two__box h3 a {
    color: inherit;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

    .service-two__box h3 a:hover {
      color: var(--unique-black);
    }

.service-two__box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 1.5em;
  color: var(--unique-black);
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 11;
  -webkit-transform: translateX(-50%) translateY(50%);
  transform: translateX(-50%) translateY(50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

  .service-two__box-link:hover {
    background-color: var(--unique-black);
    color: #fff;
  }


/* Service 06 */

.service-six {
  /* padding-bottom: 40px; 20211230*/
  padding-bottom: 0px;
  background-color: #FFF;
  background-repeat: repeat-x;
  background-position: bottom center;
  margin-top: -140px;
}

  .service-six .sec-title.light h2 {
    color: #000;
  }

  .service-six .sec-title h2 {
    position: relative;
    display: block;
    /* font-size: 2.25em; 20211227 */
    font-size: 1.5em; /* 20211227 */
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 900;
    padding: 0px 0;
    text-align: left;
  }

  .service-six .sec-title i {
    font-size: 1.25em;
    color: #2f2f2f;
    font-weight: 900;
  }

  .service-six .sec-title .seperater {
    position: relative;
    margin-bottom: 50px !important;
    width: 100px;
  }

  .service-six .sec-title.light .seperater:before {
    background-color: #be2323;
  }

  .service-six .sec-title .seperater:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 2px;
    background-color: #222222;
  }



  .service-six .container {
    position: relative;
    margin-top: 60px;
  }

  .service-six .blog-card__date {
    width: 200px;
    height: 40px;
    background-color: var(--unique-primary);
    position: absolute;
    bottom: 0;
    right: 20px;
    color: #fff;
    font-size: 1.18em;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    font-weight: 600;
    /*padding-left: 20px; 20211225 */
    /*padding-right: 20px; 20211225 */
    padding-left: 0px; /* 20211225 */
    padding-right: 0px; /* 20211225 */
  }

.pull-right {
  float: right;
}

.service-six .about-two__box-two h3 {
  margin: 0;
  color: var(--unique-black);
  font-weight: bold;
  margin-top: 5px;
  font-size: 1.18em;
  line-height: 30px;
  letter-spacing: -0.64px;
}

.service-six .about-two__box-two p {
  font-size: 1.0625em;
  line-height: 24px;
  margin-top: 15px;
  text-align: justify;
}

.service-six .about-two__box-two h3 i {
  margin: 0;
  color: var(--unique-black);
  font-weight: bold;
  margin-top: 5px;
  font-size: 1.18em;
  line-height: 30px;
  margin-right: 12px;
}

.service-six .about-two__content > p {
  font-size: 1em;
  line-height: 28px;
  font-weight: 500;
  color: #7e7e7e;
  text-align: justify;
}

.service-six .about-two__box-two {
  background-color: #f0f0f0;
  padding: 15px 20px;
  border-radius: 15px;
}

.service-six .blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  margin-top: 10px;
  margin-bottom: 7px;
  margin-left: 15px;
  margin-right: 15px;
}

  .service-six .blog-card__meta a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.18em;
    color: #7e7e7e;
    font-weight: 900;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

.service-six .blog-card__more {
  background-color: #f1f1f1;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 1.25em;
  color: #7e7e7e;
  border-top: 1px solid #f1f1f1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: bold;
  line-height: 64px;
}

.service-two__box {
  margin-bottom: 34px;
  min-height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: hard-light;
  border-bottom-left-radius: 230px;
  border-bottom-right-radius: 230px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
  background-position: center center;
}

  .service-two__box::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: inherit;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
  }

.service-two__box-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.service-two__box p {
  margin: 0;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-two__box h3 {
  margin: 0;
  color: #fff;
  font-size: 2.25em;
  font-weight: bold;
  letter-spacing: -0.64px;
}

  .service-two__box h3 a {
    color: inherit;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

    .service-two__box h3 a:hover {
      color: var(--unique-black);
    }

.service-two__box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 1.5em;
  color: var(--unique-black);
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 11;
  -webkit-transform: translateX(-50%) translateY(50%);
  transform: translateX(-50%) translateY(50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

  .service-two__box-link:hover {
    background-color: var(--unique-black);
    color: #fff;
  }

/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/
.price-one {
  background-color: #242323;
  padding-bottom: 120px;
  padding-top: 120px;
  background-image: url(../images/backgrounds/price-bg-1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

  .price-one .block-title p {
    color: var(--unique-base);
  }

  .price-one .block-title h3 {
    color: #fff;
  }

.price-one__main > p {
  margin: 0;
  color: #9e9e9e;
  font-size: 1.125em;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .price-one__main {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .price-one__main {
    margin-bottom: 30px;
  }
}

.price-one__image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 425px) {
  .price-one__image-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.price-one__image-box img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 30px;
  border-radius: 15px;
}

@media (max-width: 425px) {
  .price-one__image-box img {
    margin-right: 0;
    margin-bottom: 30px;
    -ms-flex-negative: none;
    flex-shrink: none;
  }
}

.price-one__image-box h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 1.125em;
  line-height: 26px;
  letter-spacing: -0.64px;
  font-weight: bold;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

  .price-one__image-box h3 i {
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--unique-secondary);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 1em;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: background 500ms ease, -webkit-transform 500ms ease;
    transition: background 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, background 500ms ease;
    transition: transform 500ms ease, background 500ms ease, -webkit-transform 500ms ease;
  }

  .price-one__image-box h3:hover i {
    background-color: var(--unique-base);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

.price-one__image-box p {
  font-size: 1em;
  line-height: 30px;
  font-weight: 500;
  color: #9e9e9e;
  margin: 0;
}

.price-one__single {
  background-image: url(../images/shapes/price-line-1-1.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border-radius: 15px;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-bottom: 60px;
}

  .price-one__single * {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

@media (max-width: 767px) {
  .price-one__single {
    margin-top: 30px;
  }
}

.price-one__single > i {
  width: 80px;
  height: 83px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 1.875em;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--unique-primary);
  color: #fff;
}

  .price-one__single > i.fa-plane::before {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

.price-one__single p {
  margin: 0;
  color: var(--unique-secondary);
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 5px;
}

.price-one__single h3 {
  margin: 0;
  font-size: 2.25em;
  font-weight: bold;
  color: var(--unique-black);
}

.price-one__single a.thm-btn {
  font-size: 0.875em;
  padding: 13.5px 30px;
}

.price-one__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  max-width: 200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-color: #e4e4e4;
}

  .price-one__list li {
    font-size: 1em;
    line-height: 1;
    font-weight: 500;
    color: #9e9e9e;
    color: #7e7e7e;
  }

    .price-one__list li + li {
      margin-top: 25px;
    }

.price-one__single:hover {
  background-color: #1d1c1c;
}

  .price-one__single:hover > i {
    background-color: #242323;
    color: var(--unique-primary);
  }

  .price-one__single:hover h3 {
    color: #fff;
  }

  .price-one__single:hover .price-one__list {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .price-one__single:hover a.thm-btn:hover {
    background-color: #fff;
    color: var(--unique-black);
  }
/*# sourceMappingURL=main.css.map */

/*-- Responsive --*/
@media screen and (min-width: 769px) and (max-width: 1920px) {
  .show-pc {
    display: block;
  }

  .mobile {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .show-pc {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  #x_011_txt_thumbnail > .carousel-inner {
    width: 100%;
    margin: auto;
    height: auto;
  }
}

@media screen and (min-width: 320px) and (max-width: 414px) {
}

/*-- Responsive --*/

/*==========
  Categories Box
============*/
.container_categories_box {
  width: calc(100% + 20px);
  left: -20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.utf_category_small_box_part {
  float: left;
  background-color: #f2f2f2;
  border-radius: 4px;
  margin: 20px 0 20px 20px;
  padding: 10px 10px 10px 10px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  transform: scale(1);
  vertical-align: top;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

  .utf_category_small_box_part:hover {
    background-color: #CC0000;
    color: #fff;
  }

  .utf_category_small_box_part:focus{
    color:white;
  }

  .utf_category_small_box_part:nth-child(1) {
    background: #1966b6;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 35%);
  }

    .utf_category_small_box_part:nth-child(1):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .utf_category_small_box_part:nth-child(2) {
    background: #cc4300;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 35%);
  }

    .utf_category_small_box_part:nth-child(2):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .utf_category_small_box_part:nth-child(3) {
    background: #04724d;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 35%);
  }

  .utf_category_small_box_part:nth-child(4) {
    background: #d80a48;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 35%);
  }

  .utf_category_small_box_part:nth-child(5) {
    background: #762acb;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 35%);
  }

  .utf_category_small_box_part:nth-child(6) {
    background: #097784;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 35%);
  }

  .utf_category_small_box_part:nth-child(7) {
    background: #2531d5;
    border: 0px solid rgba(255, 255, 255, 0.5);
  }

  .utf_category_small_box_part:nth-child(8) {
    background: #931674;
    border: 0px solid rgba(255, 255, 255, 0.5);
  }

  .utf_category_small_box_part:nth-child(9) {
    background: #d52f31;
    border: 0px solid rgba(255, 255, 255, 0.5);
  }

  .utf_category_small_box_part:nth-child(10) {
    background: #134b7e;
    border: 0px solid rgba(255, 255, 255, 0.5);
  }

  .utf_category_small_box_part:hover h3 {
    font-size: 1.18em;
  }

  .utf_category_small_box_part h3 {
    font-size: 1.18em;
    color: #fff;
    transition: 0.4s;
    line-height: 22px;
    margin-top: 1px;
    font-weight: bold;
  }

  .utf_category_small_box_part span {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    line-height: 18px;
    font-weight: 500;
  }

  .utf_category_small_box_part i {
    font-size: 3.5em;
    line-height: 70px;
    display: block;
    /* background: rgba(255, 255, 255, 0.12); */
    /* border: 3px solid rgba(255, 255, 255, 0.05); */
    width: 120px;
    /* height: 120px; */
    /* border-radius: 50%; */
    margin: 0px auto 0 auto;
    text-align: center;
  }

  .utf_category_small_box_part:hover i {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
  }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.utf_category_small_box_part:hover h4 {
  color: #fff;
}

@media (max-width: 768px) {
  .utf_category_small_box_part {
    width: calc(100% * (1/2) - 20px);
  }
}

@media (min-width: 768px) {
  .utf_category_small_box_part {
    width: calc(100% * (1/3) - 20px);
  }
}

@media (max-width: 991px) {
  .utf_dashboard_content .col-lg-2 {
    width: calc(50% * (1/1) - 0px);
    float: left;
  }
}

@media only screen and (min-width: 480px) and (max-width: 991px) {
  .utf_dashboard_content .col-lg-3 {
    width: calc(50% * (1/1) - 0px);
    float: left;
  }
}

@media (min-width: 992px) {
  .utf_category_small_box_part {
    width: calc(100% * (1/3) - 20px);
  }
}

@media (min-width: 1240px) {
  .utf_category_small_box_part {
    width: calc(100% * (1/6) - 20px);
  }
}

/*==========
  Categories Box
============*/

.centered_content {
  position: relative;
  vertical-align: middle;
  text-align: center;
}

  .centered_content a.button.border {
    font-weight: 600;
    margin-right: 0;
  }

  .centered_content a.button.border {
    background-color: #ff2222;
    color: #fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
  }

a.button.border {
  font-weight: 500;
}

a.button.border {
  background-color: transparent;
  color: #ff2222;
  border: 1px solid #ff2222;
  padding: 8px 15px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

button.button, input[type="button"], input[type="submit"], a.button.border, a.button {
  background-color: #ff2222;
  top: 0;
  padding: 10px 20px;
  color: #fff;
  position: relative;
  font-size: 1em;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  margin-right: 6px;
  overflow: hidden;
  border: none;
  border-radius: 4px;
}

.centered_content .button {
  min-width: 130px;
}

.margin-top-20 {
  margin-top: 20px !important;
}

/***

====================================================================
	About Two Section
====================================================================

***/

.about-two {
  position: relative;
  padding: 50px 0px 35px 0px;
  background: #ffffff;
}

  .about-two .text-column {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
  }

    .about-two .text-column .sec-title {
      margin-bottom: 25px;
    }

    .about-two .text-column .inner {
      position: relative;
      display: block;
      padding-right: 10px;
    }

    .about-two .text-column .text {
      position: relative;
      font-size: 1em;
      color: #585f5f;
      line-height: 25.6px;
      margin-bottom: 10px;
    }

    .about-two .text-column .bigger-text {
      font-size: 1.25em;
      color: #24a77e;
      line-height: 24px;
      font-weight: 500;
      margin-bottom: 25px;
    }

    .about-two .text-column .insured {
      position: relative;
      padding-left: 100px;
      min-height: 80px;
    }

      .about-two .text-column .insured .icon {
        position: absolute;
        left: 0;
        top: 0px;
        padding-left: 10px;
        line-height: 80px;
        font-size: 3.5em;
        color: #24a77e;
      }

        .about-two .text-column .insured .icon:before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 40px;
          height: 80px;
          background: #f2f2f2;
        }

        .about-two .text-column .insured .icon span {
          position: relative;
        }

      .about-two .text-column .insured h5 {
        position: relative;
        display: block;
        font-size: 1.25em;
        font-weight: 700;
        color: #132728;
        margin-bottom: 10px;
      }

      .about-two .text-column .insured .text {
        position: relative;
        color: #585f5f;
        margin-bottom: 0;
      }

    .about-two .text-column .lower-box {
      position: relative;
      padding-top: 10px;
    }

      .about-two .text-column .lower-box .link-box {
        position: relative;
        float: left;
      }

      .about-two .text-column .lower-box .iso {
        position: relative;
        float: left;
        line-height: 25px;
        padding-left: 70px;
        padding-top: 8px;
        margin-left: 30px;
      }

        .about-two .text-column .lower-box .iso .iso-icon {
          position: absolute;
          left: 0;
          top: 0px;
          line-height: 56px;
          font-size: 2.25em;
          color: #24a77e;
        }

        .about-two .text-column .lower-box .iso .number {
          position: relative;
          display: block;
          font-size: 1em;
          font-weight: 500;
          padding-top: 5px;
          color: #24a77e;
          line-height: 24px;
        }

        .about-two .text-column .lower-box .iso .txt {
          position: relative;
          display: block;
          color: #132728;
          font-size: 1.125em;
          font-weight: 600;
          line-height: 24px;
        }

  .about-two .image-column {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
  }

    .about-two .image-column .inner {
      position: relative;
      display: block;
      padding-left: 30px;
    }

    .about-two .image-column .image-box {
      position: relative;
      z-index: 1;
    }

      .about-two .image-column .image-box:before {
        content: '';
        position: absolute;
        left: -55px;
        bottom: 35px;
        width: 135px;
        height: 135px;
        background: url(../images/icons/square-pattern-1.png) left top no-repeat;
      }

    .about-two .image-column .image {
      position: relative;
      display: block;
      z-index: 1;
    }

      .about-two .image-column .image img {
        display: block;
        width: auto;
        min-width: 100%;
        max-width: none;
      }

    .about-two .image-column .vid-link {
      position: absolute;
      left: 50px;
      top: 35px;
      width: 100px;
      height: 100px;
      border: 5px solid #ffffff;
      border-radius: 50%;
      background: #000000;
      z-index: 2;
    }

      .about-two .image-column .vid-link img {
        position: relative;
        display: block;
        width: 90px;
        height: 90px;
        opacity: 1;
        border-radius: 50%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
      }

      .about-two .image-column .vid-link:hover img {
        opacity: 0.70;
      }

      .about-two .image-column .vid-link .icon {
        position: absolute;
        left: 9px;
        top: 9px;
        right: 9px;
        bottom: 9px;
        line-height: 70px;
        background: rgba(0,0,0,0.50);
        border: 1px solid #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #ffffff;
        font-size: 1.5em;
        z-index: 2;
      }

/*-- Tabs Section */
.shedule-tabs, .tabs-box {
  position: relative;
}

  .shedule-tabs .btns-box {
    position: relative;
    display: block;
    text-align: right;
  }

  .shedule-tabs .tab-buttons {
    position: relative;
    display: inline-block;
  }

    .shedule-tabs .tab-buttons li.active-btn {
      box-shadow: 0 12px 40px rgb(8 18 109 / 12%);
    }

  .tabs-box .tab-buttons .tab-btn {
    position: relative;
  }

  .shedule-tabs .tab-buttons li {
    position: relative;
    float: left;
    min-width: 215px;
    background-color: #f14b59;
    font-size: 1.25em;
    line-height: 30px;
    color: #fffefe;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 22px 32px 22px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 15px;
  }

    .shedule-tabs .tab-buttons li.active-btn:before {
      opacity: 1;
    }

    .shedule-tabs .tab-buttons li:before {
      position: absolute;
      left: 50%;
      margin-left: -8px;
      bottom: -8px;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      opacity: 0;
      border-top: 8px solid #f14b59;
      content: "";
    }

    .shedule-tabs .tab-buttons li:nth-child(2) {
      background-color: #454ab4;
    }

  .tabs-box .tab-buttons .tab-btn {
    position: relative;
  }

  .shedule-tabs .tab-buttons li {
    position: relative;
    float: left;
    min-width: 215px;
    background-color: #f14b59;
    font-size: 1.25em;
    line-height: 30px;
    color: #fffefe;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 22px 32px 22px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 15px;
  }

    .shedule-tabs .tab-buttons li:nth-child(2):before {
      border-top: 8px solid #454ab4;
    }

    .shedule-tabs .tab-buttons li:before {
      position: absolute;
      left: 50%;
      margin-left: -8px;
      bottom: -8px;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      opacity: 0;
      border-top: 8px solid #f14b59;
      content: "";
    }

    .shedule-tabs .tab-buttons li:nth-child(3) {
      background-color: #ffa200;
    }

  .tabs-box .tab-buttons .tab-btn {
    position: relative;
  }

  .shedule-tabs .tab-buttons li {
    position: relative;
    float: left;
    min-width: 215px;
    background-color: #f14b59;
    font-size: 1.25em;
    line-height: 30px;
    color: #fffefe;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 22px 32px 22px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 15px;
  }

    .shedule-tabs .tab-buttons li:nth-child(3):before {
      border-top: 8px solid #ffa200;
    }

.shedule-block {
  position: relative;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #394761;
  top: -60px;
  box-shadow: 0 0 21px rgb(0 0 0 / 18%);
}

  .shedule-block:before {
    position: absolute;
    left: 0;
    top: 0%;
    height: 0;
    width: 100%;
    content: "";
    background: rgb(241,75,89);
    background: -moz-linear-gradient(left, rgba(241,75,89,1) 0%, rgba(69,74,180,1) 50%, rgba(255,162,0,1) 100%);
    background: -webkit-linear-gradient(left, rgba(241,75,89,1) 0%,rgba(69,74,180,1) 50%,rgba(255,162,0,1) 100%);
    background: linear-gradient(to right, rgba(241,75,89,1) 0%,rgba(69,74,180,1) 50%,rgba(255,162,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f14b59', endColorstr='#ffa200',GradientType=1 );
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }

  .shedule-block .inner-box {
    position: relative;
    padding: 25px 10px 25px;
    background-color: #ffffff;
  }

  .shedule-block .thumbs-box {
    position: absolute;
    left: 35px;
    top: 25px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
  }

figure {
  margin-bottom: 0;
}

.shedule-block .thumbs-box img {
  display: block;
  width: 100%;
  height: auto;
}

.shedule-block .content-box {
  position: relative;
  float: left;
  width: 100%;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.shedule-block:hover:before {
  height: 100%;
  top: 0;
}

.shedule-block:before {
  position: absolute;
  left: 0;
  top: 0%;
  height: 0;
  width: 100%;
  content: "";
  background: rgb(241,75,89);
  background: -moz-linear-gradient(left, rgba(241,75,89,1) 0%, rgba(69,74,180,1) 50%, rgba(255,162,0,1) 100%);
  background: -webkit-linear-gradient(left, rgba(241,75,89,1) 0%,rgba(69,74,180,1) 50%,rgba(255,162,0,1) 100%);
  background: linear-gradient(to right, rgba(241,75,89,1) 0%,rgba(69,74,180,1) 50%,rgba(255,162,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f14b59', endColorstr='#ffa200',GradientType=1 );
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tabs-content h3 {
  font-size: 1.18em;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 15px;
}

.tabs-content p {
  text-align: justify;
  font-size: 1.125em;
  line-height: 26px;
}

/*-- Tabs Section --*/

.news-page {
  margin-top: 0px;
}

/*** 

====================================================================
	Departmetns Section
====================================================================

***/

.departments-section {
  position: relative;
  background: #ffffff;
}

  .departments-section .services-row {
    position: relative;
  }

    .departments-section .services-row .auto-container {
      max-width: 1400px;
    }

    .departments-section .services-row .auto-container {
      max-width: 1400px;
    }

    .departments-section .services-row .outer-container {
      position: relative;
      padding: 50px 100px 30px;
      color: #ffffff;
    }

    .departments-section .services-row .image-layer {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 1;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
    }

      .departments-section .services-row .image-layer:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #00aa55;
        opacity: 0.93;
      }

    .departments-section .services-row .sec-title {
      margin-bottom: 50px;
    }

    .departments-section .services-row ul li {
      position: relative;
      padding-left: 20px;
      font-size: 1.125em;
      line-height: 28px;
      font-weight: 700;
      font-family: 'Manjari', sans-serif;
      margin-bottom: 15px;
    }

      .departments-section .services-row ul li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        border: 2px solid rgba(255, 255, 255, 0.70);
        transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
      }

      .departments-section .services-row ul li:hover:before {
        background: #ffffff;
        border-color: #ffffff;
      }

      .departments-section .services-row ul li a {
        position: relative;
        display: inline-block;
        color: #ffffff;
      }

        .departments-section .services-row ul li a:after {
          content: "\f061";
          font-family: 'Font Awesome 5 Free';
          position: relative;
          display: inline-block;
          vertical-align: middle;
          padding-left: 7px;
          font-size: 1em;
          font-weight: 400;
        }

.services-row .sec-title .separator {
  position: absolute;
  width: 36px;
  height: 0;
  margin: 0 auto;
  top: 90px;
}

/***

====================================================================
	Welcome Section
====================================================================
***/

.welcome-section {
  position: relative;
  padding: 110px 0px 80px;
  background: #f1f1f1;
}

  .welcome-section .sec-title {
    margin-bottom: 40px;
  }

.featured-block {
  position: relative;
  margin-bottom: 30px;
}

  .featured-block .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
  }

  .featured-block .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

    .featured-block .image-layer:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.70);
    }

  .featured-block .content-box {
    position: relative;
    display: block;
    padding: 50px 25px 50px 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .featured-block .content-box .content {
      position: relative;
      padding-left: 100px;
      min-height: 80px;
    }

    .featured-block .content-box .subtitle {
      font-size: 0.8125em;
      color: #8e8e8e;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 24px;
      margin-bottom: 5px;
      font-family: 'Manjari', sans-serif;
    }

    .featured-block .content-box h4 {
      color: #222222;
      font-weight: 700;
      line-height: 20px;
      margin: 0;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .featured-block .content-box h4 a {
        color: #222222;
      }

        .featured-block .content-box h4 a:hover {
          color: #00aa55;
        }

    .featured-block .content-box .icon-box {
      position: absolute;
      left: 30px;
      top: 50px;
      width: 80px;
      height: 80px;
      color: #00aa55;
      font-size: 3.75em;
      line-height: 80px;
    }

      .featured-block .content-box .icon-box:before {
        content: '';
        position: absolute;
        right: 0;
        top: 5px;
        bottom: 5px;
        border-left: 1px solid rgba(0, 0, 0, 0.10);
      }

  .featured-block .hover-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 1;
  }

  .featured-block .inner-box:hover .hover-box {
    opacity: 1;
    visibility: visible;
  }

  .featured-block .hover-box .inner {
    position: relative;
    display: block;
    padding: 35px 30px 15px;
  }

  .featured-block .hover-box h4 {
    color: #ffffff;
    font-weight: 700;
    line-height: 20.8px;
    max-width: 220px;
    margin: 0 0 10px;
  }

    .featured-block .hover-box h4 a {
      color: #ffffff;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .featured-block .hover-box h4 a:hover {
        color: #00aa55;
      }

  .featured-block .hover-box .text {
    color: #b2b2b2;
    line-height: 25.6px;
  }

  .featured-block .more-link {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 42px;
    line-height: 30px;
    text-align: center;
    color: #00aa55;
    font-size: 1.125em;
    z-index: 2;
  }

    .featured-block .more-link a {
      position: relative;
      display: block;
      line-height: 42px;
      color: #00aa55;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .featured-block .more-link a:before {
        content: '';
        position: absolute;
        right: -85px;
        bottom: -85px;
        width: 140px;
        height: 140px;
        background: #222222;
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
      }

      .featured-block .more-link a span,
      .featured-block .more-link a i {
        position: relative;
        z-index: 1;
      }

  .featured-block .inner-box:hover .more-link a:before {
    background: #00aa55;
  }

  .featured-block .inner-box:hover .more-link a {
    color: #ffffff;
  }

/*** 
====================================================================
	ttm-row
====================================================================
***/
.ttm-row {
  padding: 90px 0;
}

  .ttm-row.broken-section {
    padding: 0 0;
  }

  .ttm-row.zero_padding-section {
    padding: 0 0;
  }

  .ttm-row.bottom_zero_padding-section {
    padding: 90px 0 0;
  }

  .ttm-row.top_zero_padding-section {
    padding: 0 0 90px;
  }

  .ttm-row.only_title2-section {
    padding: 60px 0;
  }

  .ttm-row.client-section {
    padding: 30px 0;
  }

  .ttm-row.grid-section {
    padding: 75px 0;
  }

/*** 
====================================================================
	Row-Equal-Height
====================================================================
***/

.row-equal-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

  .row-equal-height > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }


/*** 
====================================================================
	About Section One
====================================================================
***/

.padding_left30 {
  padding-left: 30px;
}

.margin_bottom30 {
  margin-bottom: 30px;
}

.padding_right20 {
  padding-right: 20px;
}

.section-title {
  position: relative;
  margin-bottom: 25px;
}

  .section-title h3 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 6.25em;
    line-height: 110px;
    margin-top: -20px;
    color: rgba(236,236,236,.7);
    margin-bottom: -35px;
  }

  .section-title h2.title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 2.3125em;
    line-height: 46px;
    margin-bottom: 15px;
  }

.ttm-textcolor-skincolor, .heading-seperator span:before {
  color: #12b48b;
}

.heading-seperator span {
  position: relative;
  display: block;
  padding-bottom: 23px;
}

  .heading-seperator span:before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    width: 65px;
    height: 2px;
  }

.ttm-vertical_sep > [class*='col-']:not(:last-child):before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  right: 2px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.09);
}

.row.no-gutters.ttm-vertical_sep > [class*='col']:not(:last-child):before {
  right: 0;
}

.ttm-bgcolor-darkgrey .ttm-vertical_sep > [class*='col']:not(:last-child):before,
.ttm-bgcolor-skincolor .ttm-vertical_sep > [class*='col']:not(:last-child):before {
  background-color: rgba(255,255,255,.21);
}

.featured-icon-box.icon-align-before-content .featured-icon,
.featured-icon-box.icon-align-before-content .featured-content,
.featured-icon-box.icon-align-before-title .featured-title,
.featured-icon-box.icon-align-before-title .featured-icon {
  display: table-cell;
  vertical-align: middle;
}

.featured-icon-box .ttm-icon {
  margin-bottom: 0;
}

.ttm-icon.ttm-icon_element-onlytxt {
  height: auto;
  width: auto;
  line-height: 1;
}

.ttm-icon.ttm-icon_element-size-sm i {
  font-size: 1.875em;
}

.ttm-icon i {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

[class^="ti-"], [class*=" ti-"] {
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.featured-icon-box.icon-align-before-content .featured-content, .featured-icon-box.icon-align-before-title .featured-title {
  padding-left: 15px;
}

.featured-icon-box.icon-align-before-content .featured-icon, .featured-icon-box.icon-align-before-content .featured-content, .featured-icon-box.icon-align-before-title .featured-title, .featured-icon-box.icon-align-before-title .featured-icon {
  display: table-cell;
  vertical-align: middle;
}

  .featured-icon-box.icon-align-before-title .featured-title h3 {
    margin-bottom: 0;
  }

/* ===============================================
    11.featured-icon-box ( only contents )
------------------------*/
.featured-icon-box {
  position: relative;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
  /*.featured-icon-box {
  position: relative;
  margin: 20px 0;
}*/

  .featured-icon-box .ttm-icon {
    margin-bottom: 0;
  }

.about-two__content .featured-title h3 {
  font-size: 1.1em;
  line-height: 30px;
  margin-bottom: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.featured-icon-box.icon-align-before-content .featured-icon,
.featured-icon-box.icon-align-before-content .featured-content,
.featured-icon-box.icon-align-before-title .featured-title,
.featured-icon-box.icon-align-before-title .featured-icon {
  display: table-cell;
  vertical-align: middle;
}

  .featured-icon-box.icon-align-before-content .featured-icon i {
    display: inline-block;
    vertical-align: middle;
  }

.featured-icon-box.icon-align-before-content.icon-ver_align-top .featured-icon {
  vertical-align: top;
  padding-top: 4px;
}

.featured-icon-box.icon-align-before-content .featured-content,
.featured-icon-box.icon-align-before-title .featured-title {
  /* padding-left: 15px; 20211227 */
  padding-left: 5px; /* 20211227 */
}

.featured-icon-box.icon-align-before-content .featured-title h3 {
  margin-bottom: 13px;
}

.featured-icon-box.icon-align-before-title .featured-title h3 {
  margin-bottom: 0;
}

.featured-icon-box.icon-align-before-content .featured-content .featured-desc p {
  margin-bottom: 0;
}

.featured-icon-box.icon-align-before-title .featured-content {
  margin-top: 15px;
}

.featured-icon-box.icon-align-top-content .featured-content {
  padding-top: 15px;
}

.container-fluid, .container {
  counter-reset: featuredbox-number;
}

.featuredbox-number .ttm-num:before {
  counter-increment: featuredbox-number;
  content: counter(featuredbox-number, decimal-leading-zero) " ";
}



/* style1 */
.featured-icon-box.style1 {
  padding: 25px 5px;
  margin: 0;
}

  .featured-icon-box.style1 .ttm-icon i {
    font-size: 2.8125em;
    padding-left: 15px;
  }

  .featured-icon-box.style1 .ttm-icon:before {
    position: absolute;
    content: '';
    height: 45px;
    width: 45px;
    opacity: 1;
    top: -5px;
    left: 0;
    border-radius: 50px;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
  }

  .featured-icon-box.style1 .ttm-icon,
  .featured-icon-box.style1 .featured-content,
  .featured-icon-box.style1 .featured-content .ttm-btn {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    opacity: 1;
    transition: all .6s ease;
  }

  .featured-icon-box.style1:hover .ttm-icon {
    transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    opacity: 0;
  }

  .featured-icon-box.style1 .featured-content .ttm-btn {
    opacity: 0;
    position: absolute;
    left: 0;
  }

  .featured-icon-box.style1:hover .featured-content .ttm-btn {
    transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    opacity: 1;
  }

  .featured-icon-box.style1:hover .featured-content {
    transform: translateY(-35px);
    -ms-transform: translateY(-35px);
    -webkit-transform: translateY(-35px);
    -moz-transform: translateY(-35px);
  }

/*.featured-title h3 {
  font-size: 1.2em; 
  line-height: 27px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
}*/

.featured-title.tc-current h3 {
  color: #FFF;
}

.featured-title.kh-current h3 {
  color: #FFF;
}

.featured-title.pt-current h3 {
  color: #FFF;
}

.featured-title.th-current h3 {
  color: #FFF;
}

.featured-icon-box.icon-align-before-title .featured-content {
  margin-top: 15px;
}

.featured-content .featured-desc p {
  font-size: 1.125em;
}

.ttm-horizontal_sep {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  display: block;
  position: relative;
}

.p-10 {
  padding: 10px;
}

.border, .border-top, .border-left, .border-bottom, .border-right {
  border-color: #ebf0f4 !important;
}

.d-inline-block {
  display: inline-block !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.heading-seperator span {
  position: relative;
  display: block;
  padding-bottom: 23px;
}

  .heading-seperator span:before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    width: 65px;
    height: 2px;
    background: #CC0000;
  }

/*** 
=============================================
    Instagram area style
=============================================
***/
.instagram-area {
  position: relative;
  display: block;
  background: #e9212e;
}

.instagram-title {
  position: relative;
  display: block;
  margin-right: -30px;
  padding: 43px 0;
  z-index: 3;
}

  .instagram-title .pattern-bg {
    position: absolute;
    top: 0;
    left: -500px;
    bottom: 0;
    right: 0;
    background: url(../images/shapes/instagram-title-bg.png);
    z-index: -1;
    background-repeat: no-repeat;
  }

  .instagram-title h3 {
    color: #ffffff;
    font-size: 1.25em;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 17px;
  }

  .instagram-title a {
    color: #ffffff;
  }

    .instagram-title a:hover {
      color: #27282c;
    }

.instagram-items {
  position: relative;
  display: block;
  margin-right: -375px;
  z-index: 3;
}

  .instagram-items li {
    position: relative;
    display: inline-block;
    float: left;
  }

    .instagram-items li .img-holder {
      position: relative;
      display: block;
      overflow: hidden;
    }

    .instagram-items li:hover .overlay-style-two {
      opacity: 1;
    }

    .instagram-items li .img-holder .overlay-style-two:before {
      background-color: rgba(40, 41, 46, 0.95);
    }

    .instagram-items li:hover .img-holder .overlay-style-two:before {
      opacity: 1;
      transform: perspective(400px) rotateX(0deg);
      transition: all 700ms ease 100ms;
    }

    .instagram-items li .img-holder .overlay-style-two:after {
      background-color: rgba(40, 41, 46, 0.95);
    }

    .instagram-items li:hover .img-holder .overlay-style-two:after {
      opacity: 1;
      transform: perspective(400px) rotateX(0deg);
      transition: all 700ms ease 300ms;
    }

    .instagram-items li .img-holder img {
      width: 100%;
      transform: scale(1.01);
      transition: all 700ms ease;
    }

    .instagram-items li:hover .img-holder img {
      transform: scale(1.2) rotate(2deg);
    }

    .instagram-items li .img-holder .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10;
      transform: translate3d(0px, -100%, 0px);
      transition: all 700ms ease 300ms;
    }

    .instagram-items li:hover .img-holder .overlay {
      transition: all 700ms ease 500ms;
      transform: translate3d(0px, 0px, 0px);
    }

    .instagram-items li .img-holder .overlay .box {
      display: table;
      width: 100%;
      height: 100%;
    }

      .instagram-items li .img-holder .overlay .box .link-icon {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
      }

        .instagram-items li .img-holder .overlay .box .link-icon a span:before {
          display: inline-block;
          color: #ffffff;
          font-size: 1.875em;
          line-height: 30px;
          transition: all 500ms ease;
        }

        .instagram-items li .img-holder .overlay .box .link-icon a:hover span:before {
          color: #e9212e;
        }

/*** 
====================================================================
	About Section Two
====================================================================
***/
.ttm-bgcolor-grey, .ttm-bgcolor-grey > .ttm-bg-layer,
.ttm-bgcolor-grey > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner,
.ttm-btn-style-fill.ttm-btn-color-grey, .ttm-icon_element-fill.ttm-icon_element-color-grey,
.ttm-toggle-title-bgcolor-grey .toggle-title, .header_search #search_query_top {
  background-color: #f8f8f8;
}

.spacing-1 {
  padding: 88px 35px 20px;
  margin: 0 35px;
  margin-top: -90px;
}

.ttm-bg {
  position: relative;
}

.ttm_single_image-wrapper.ttm_single_image_hover {
  overflow: hidden;
}

.ttm_single_image-wrapper {
  position: relative;
}

  .ttm_single_image-wrapper .ttm-play-icon-btn {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
/* play-btn / play-icon */
.ttm-play-icon {
  color: #fff;
  display: block;
  position: relative;
}

  .ttm-play-icon .ttm-icon.ttm-icon_element-size-md {
    height: 95px;
    width: 95px;
    line-height: 95px;
    margin: 0;
  }

  .ttm-play-icon .ttm-play-icon-animation {
    display: inline-block;
    position: relative;
  }

    .ttm-play-icon .ttm-play-icon-animation:after, .ttm-play-icon .ttm-play-icon-animation:before {
      content: '';
      border: 1px solid;
      border-color: inherit;
      width: 150%;
      height: 150%;
      -webkit-border-radius: 100%;
      border-radius: 100%;
      position: absolute;
      left: -25%;
      top: -25%;
      opacity: 1;
      -webkit-animation: 1s videoplay-anim linear infinite;
      animation: 1s videoplay-anim linear infinite;
    }

    .ttm-play-icon .ttm-play-icon-animation:after, .ttm-play-icon .ttm-play-icon-animation:before {
      -webkit-animation: videoplay-anim 1.05s infinite;
      -moz-animation: videoplay-anim 1.05s infinite;
      -ms-animation: videoplay-anim 1.05s infinite;
      -o-animation: videoplay-anim 1.05s infinite;
      animation: videoplay-anim 1.05s infinite;
    }

    .ttm-play-icon .ttm-play-icon-animation:after {
      border-color: #bfbfbf;
    }

    .ttm-play-icon .ttm-play-icon-animation:before {
      border-color: #e4e4e4;
      -webkit-animation-delay: .5s;
      animation-delay: .5s;
    }

.ttm-play-icon-btn .ttm-icon.ttm-icon_element-size-sm {
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0;
  z-index: 2;
}

  .ttm-play-icon-btn .ttm-icon.ttm-icon_element-size-sm i.fa-play {
    padding-left: 5px;
    font-size: 1.25em;
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
  }

.ttm-play-icon-btn .ttm-icon.ttm-icon_element-size-md {
  display: block;
  height: 67px;
  width: 67px;
  line-height: 67px;
  margin: 0;
  z-index: 2;
}

  .ttm-play-icon-btn .ttm-icon.ttm-icon_element-size-md i.fa-play {
    font-size: 1.75em;
  }

i.fa-play {
  padding-left: 5px;
}

.ttm-play-icon-btn .ttm-play-icon-animation {
  position: relative;
  display: inline-block;
}

  .ttm-play-icon-btn .ttm-play-icon-animation .ttm-icon {
    margin-bottom: 0;
  }

  .ttm-play-icon-btn .ttm-play-icon-animation:after, .ttm-play-icon-btn .ttm-play-icon-animation:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
  }

  .ttm-play-icon-btn .ttm-play-icon-animation:after {
    z-index: 1;
    width: calc(100% * 1.3 );
    height: calc(100% * 1.3 );
    opacity: .3;
    background-color: #fff;
  }

  .ttm-play-icon-btn .ttm-play-icon-animation:before {
    width: calc(100% * 1.6 );
    height: calc(100% * 1.6 );
    opacity: .5;
    background-color: #fff;
  }

.ttm-bgcolor-skincolor .ttm-play-icon-btn .ttm-play-icon-animation:after {
  opacity: .1;
}

.ttm-bgcolor-skincolor .ttm-play-icon-btn .ttm-play-icon-animation:before {
  opacity: .3;
}

.ttm-play-icon-btn:hover .ttm-play-icon-animation:after, .ttm-play-icon-btn:hover .ttm-play-icon-animation:before {
  -webkit-animation: sep-anim 1.05s infinite;
  -moz-animation: sep-anim 1.05s infinite;
  -ms-animation: sep-anim 1.05s infinite;
  -o-animation: sep-anim 1.05s infinite;
  animation: sep-anim 1.05s infinite;
}

@-webkit-keyframes sep-anim {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes sep-anim {
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.ttm-play-icon-btn .ttm-play-icon-animation.ttm-play-icon-animation-skincolor:before,
.ttm-play-icon-btn .ttm-play-icon-animation.ttm-play-icon-animation-skincolor:after {
  background-color: #c3002f;
}

.ttm-play-icon-btn .ttm-play-icon-animation {
  position: relative;
  display: inline-block;
}

  .ttm-play-icon-btn .ttm-play-icon-animation:before {
    width: calc(100% * 1.6 );
    height: calc(100% * 1.6 );
    opacity: .5;
    background-color: #c3002f;
  }

  .ttm-play-icon-btn .ttm-play-icon-animation:after, .ttm-play-icon-btn .ttm-play-icon-animation:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
  }

  .ttm-play-icon-btn .ttm-play-icon-animation .ttm-icon {
    margin-bottom: 0;
  }

.ttm-play-icon-btn .ttm-icon.ttm-icon_element-size-sm {
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 0;
  z-index: 2;
}

.featured-icon-box.style1 {
  padding: 25px 5px;
  margin: 0;
}


.featured-icon-box.tc-current {
  padding: 10px 8px;
  background: #FF7022;
  border-radius: 24px;
  margin-top: 10px;
}

.featured-icon-box.kh-current {
  padding: 10px 8px;
  background: #7bcb5f;
  border-radius: 24px;
  margin-top: 10px;
}

.featured-icon-box.pt-current {
  padding: 10px 8px;
  background: #f5b920;
  border-radius: 24px;
  margin-top: 10px;
}

.featured-icon-box.th-current {
  padding: 10px 8px;
  background: #5d92cf;
  border-radius: 24px;
  margin-top: 10px;
}


.featured-icon-box.style1 .ttm-icon,
.featured-icon-box.style1 .featured-content,
.featured-icon-box.style1 .featured-content .ttm-btn {
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
  transition: all .6s ease;
}

  .featured-icon-box.style1 .ttm-icon:before {
    position: absolute;
    content: '';
    height: 45px;
    width: 45px;
    opacity: 1;
    top: -5px;
    left: 0;
    border-radius: 50px;
    -webkit-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    background-color: #f8f8f8;
  }

.ttm-vertical_sep .ttm-icon {
  margin-bottom: 0px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
  transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  box-sizing: content-box;
  position: relative;
  background: #CC0000;
  color: #FFF;
  height: 25px;
  width: 25px;
  line-height: 25px;
  border-radius: 50%;
}

  .ttm-vertical_sep .ttm-icon.tc-current {
    background: #6c89a0;
    color: #fff;
  }

  .ttm-vertical_sep .ttm-icon.kh-current {
    background: #0f7114;
    color: #fff;
  }

  .ttm-vertical_sep .ttm-icon.pt-current {
    background: #7b531d;
    color: #fff;
  }

  .ttm-vertical_sep .ttm-icon.th-current {
    background: #49678f;
    color: #fff;
  }

.ttm-icon {
  margin-bottom: 25px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
  transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  box-sizing: content-box;
  position: relative;
  background: #CC0000;
  color: #FFF;
  height: 25px;
  width: 25px;
  line-height: 25px;
  border-radius: 50%;
}

.featured-icon-box.style1 .ttm-icon i {
  font-size: 2.8125em;
  padding-left: 15px;
}

.ttm-icon.ttm-icon_element-onlytxt i {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
  transform: unset;
  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
  transform: translate(0,0);
}

.ttm-icon i {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
  font-family: flaticon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.featured-icon-box.icon-align-top-content .featured-content {
  padding-top: 15px;
}

.featured-icon-box.style1 .featured-content .ttm-btn {
  opacity: 0;
  position: absolute;
  left: 0;
}

.ttm-btn.btn-inline {
  text-transform: uppercase;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.ttm-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
  line-height: normal;
  padding: 11px 32px 11px 31px;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeff5;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

  .ttm-btn.ttm-btn-size-md {
    font-size: 0.875em;
    padding: 14px 30px 14px 30px;
  }

.bg-layer-equal-height .ttm-col-bgimage-yes, .bg-layer-equal-height .ttm-col-bgcolor-yes {
  height: 100%;
}

.spacing-8 {
  padding: 70px 10px 70px 70px;
  margin-top: 0px;
  margin-left: 0px;
}

.z-index-2 {
  z-index: 2;
}

.ttm-row.padding_zero-section {
  padding: 0 0;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.bg-layer-equal-height .ttm-col-bgimage-yes, .bg-layer-equal-height .ttm-col-bgcolor-yes {
  height: 100%;
}

.mt_10 {
  margin-top: -10px;
}

.padding_top10 {
  padding-top: 10px;
}

.z-index-2 {
  z-index: 2;
}

.ttm-bg {
  position: relative;
}

.h-auto {
  height: auto !important;
}

.ttm-left-span > .ttm-col-wrapper-bg-layer {
  width: auto;
  margin-left: -500px;
  right: 0;
}

.ttm-bg-layer, .ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer, .ttm-col-wrapper-bg-layer-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.layer-content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.col-bg-img-five.ttm-col-bgimage-yes > .ttm-col-wrapper-bg-layer {
  background-image: url(../images/backgrounds/col-bgimage-5.jpg);
  background-position: center;
  background-size: cover;
}

.ttm-left-span > .ttm-col-wrapper-bg-layer {
  width: auto;
  margin-left: -500px;
  right: 0;
}

.ttm-bg-layer, .ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer, .ttm-col-wrapper-bg-layer-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.section-title h3 {
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9375em;
  line-height: 25px;
  margin-bottom: 8px;
  letter-spacing: 0.7px;
  position: relative;
}

/* ===============================================
    19.Tab
------------------------*/
.ttm-tabs ul.tabs {
  padding: 0;
  margin: 0;
}

  .ttm-tabs ul.tabs li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }

    .ttm-tabs ul.tabs li:last-child {
      margin-bottom: 0;
    }

.ttm-tabs .content-tab .content-inner {
  display: none;
}

  .ttm-tabs .content-tab .content-inner.active {
    display: block;
  }

/* ttm-tab-style-vertical */
.ttm-tabs.ttm-tab-style-vertical {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

  .ttm-tabs.ttm-tab-style-vertical .content-tab {
    padding: 0;
    margin: 0;
    padding-left: 30px;
  }

  .ttm-tabs.ttm-tab-style-vertical ul.tabs li {
    margin-top: 1px;
    width: 100%;
    display: block;
  }

    .ttm-tabs.ttm-tab-style-vertical ul.tabs li a {
      color: #fff;
      display: block;
      padding: 14px 20px;
      font-size: 1.0625em;
      line-height: 25px;
      margin: 0;
      border-radius: 0;
    }

/* ttm-tab-style-01 */
.ttm-tabs.ttm-tab-style-01 ul.tabs {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

  .ttm-tabs.ttm-tab-style-01 ul.tabs li {
    margin: 15px;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
    z-index: 999;
  }

    .ttm-tabs.ttm-tab-style-01 ul.tabs li a {
      padding: 10px 18px 10px 18px;
      font-weight: 900;
      border-color: transparent;
      /* font-size: 1.5625em; 20211227 */
      /* font-size: 1em; 20211227 */
      font-family: "微軟正黑體",Arial,Helvetica,sans-serif;
      display: block;
      line-height: 1.5em;
      font-size: 1.3rem;
    }

      .ttm-tabs.ttm-tab-style-01 ul.tabs li a i {
        margin-right: 10px;
        color: #fff;
      }

.ttm-tabs.ttm-tab-style-01 .content-tab {
  padding-top: 0px;
  margin: 0 15px;
}

.ttm-tabs.ttm-tab-style-01 .single-img-wraper.pl-60:before {
  content: '';
  position: absolute;
  border-left: 41px solid #f7f7ff;
  left: 33px;
  height: 78%;
  top: 45px;
}

.ttm-tabs.ttm-tab-style-01 .single-img-wraper.pr-60:before {
  content: '';
  position: absolute;
  border-left: 41px solid #f7f7ff;
  left: -26px;
  height: 78%;
  top: 45px;
}

.ttm-tabs.ttm-tab-style-01 h4 {
  font-size: 1.75em;
  line-height: 38px;
}



.ttm-tabs.ttm-tab-style-01 ul.tabs li.active a {
  background-color: #a57188;
  /*padding: 12px 90px 12px 90px;*/
  padding: 12px 0;
  margin-top: -6px;
  /* font-size: 1.8em; 20211227 */
  /*font-size: 1.1em;  20211227 */
  font-size: 1.7rem;
}

.ttm-tabs.ttm-tab-style-01 ul.tabs li.active:hover a {
  color: #fff;
  background-color: #a57188d1;
}



@media only screen and (min-width: 375px) and (max-width: 768px) {
  /*.ttm-tabs.ttm-tab-style-02 ul.tabs li a, .ttm-tabs.ttm-tab-style-01 ul.tabs li.active a {
	  padding: 12px 50px 12px 50px;
	} 20211225 */
  .ttm-tabs.ttm-tab-style-01 ul.tabs li a,
  .ttm-tabs.ttm-tab-style-01 ul.tabs li.active a { /* 20211225 */
    padding: 0px;
    font-size: 1rem;
  }

  .ttm-tabs.ttm-tab-style-01 ul.tabs li.active a { /* 20211225 */
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .ttm-tabs.ttm-tab-style-01 ul.tabs li { /* 20211225 */
    margin: 1px;
    margin-top: 0px;
  }

    .ttm-tabs.ttm-tab-style-01 ul.tabs li.active { /* 20211225 */
      width: 35%;
    }

  .project-block-two .info-box .link-box a,
  .project-block-two .info-box h3 { /* 20211225 */
    font-size: 1em;
    line-height: 1em;
  }

  .project-block-two .info-box { /* 20211225 */
    left: 0px;
    top: 50%;
  }

  .project-block-two { /* 20211225 */
    padding: 0 15px 0px 15px;
  }
}

@media (max-width: 374px) { /* 20211225 */
  .ttm-tabs.ttm-tab-style-01 { /* 20211225 */
    margin-top: 10px;
  }

    .ttm-tabs.ttm-tab-style-01 ul.tabs { /* 20211225 */
      display: unset;
    }

      .ttm-tabs.ttm-tab-style-01 ul.tabs li a { /* 20211225 */
        padding: 0px;
        font-size: 1rem;
      }

      .ttm-tabs.ttm-tab-style-01 ul.tabs li.active a { /* 20211225 */
        padding: 1px;
        font-size: 1rem;
      }

      .ttm-tabs.ttm-tab-style-01 ul.tabs-3 li.active,
      .ttm-tabs.ttm-tab-style-01 ul.tabs-4 li.active,
      .ttm-tabs.ttm-tab-style-01 ul.tabs li { /* 20211225 */
        width: 90%;
        margin: 0px 15px 2px 15px;
      }

  .project-block-two .info-box .link-box a,
  .project-block-two .info-box h3 { /* 20211225 */
    font-size: 1em;
    line-height: 1em;
  }

  .project-block-two .info-box { /* 20211225 */
    left: 0px;
    top: 50%;
    display: none;
  }

  .project-block-two { /* 20211225 */
    padding: 0 15px 0px 15px;
  }
}

/*** 
====================================================================
	Services Section Three
====================================================================
***/

.pattern-container {
  position: relative;
  display: block;
  background: #ffffff url(../images/background/pattern-3.jpg) left top repeat;
}

.services-section-three {
  position: relative;
  padding: 100px 0px 140px;
  background: #ffffff;
}

  .services-section-three .sec-title.centered {
    max-width: 600px;
    margin: 0 auto 60px;
  }

.featured-block-six {
  position: relative;
  margin-bottom: 30px;
  z-index: 3;
}

  .featured-block-six:hover {
    z-index: 5;
  }

  .featured-block-six .inner-box {
    position: relative;
    display: block;
  }

  .featured-block-six .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .featured-block-six .image-layer:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
    }

  .featured-block-six .inner-box:hover .image-layer {
    opacity: 1;
  }

  .featured-block-six .content-box {
    position: relative;
    display: block;
    padding: 35px 30px;
    background: #f1f1f1;
    z-index: 2;
  }

    .featured-block-six .content-box .content {
      position: relative;
      padding-top: 15px;
      padding-left: 95px;
      min-height: 70px;
      z-index: 1;
    }

    .featured-block-six .content-box .subtitle {
      font-size: 0.875em;
      color: #8e8e8e;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 24px;
      margin-bottom: 5px;
      font-family: 'Manjari', sans-serif;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

.ui-selectmenu-text {
  font-weight: 500;
}

.featured-block-six .content-box h4 {
  color: #222222;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

  .featured-block-six .content-box h4 a {
    color: #222222;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

    .featured-block-six .content-box h4 a:hover {
      color: #00aa55;
    }

.featured-block-six .inner-box:hover .content-box h4 a,
.featured-block-six .inner-box:hover .content-box .subtitle {
  color: #ffffff;
}

.featured-block-six .content-box .text {
  position: relative;
  margin-top: 15px;
  line-height: 26.4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.featured-block-six .inner-box:hover .content-box .text {
  color: #b2b2b2;
}

.featured-block-six .content-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 75px;
  height: 70px;
  color: #00aa55;
  font-size: 3.375em;
  line-height: 70px;
}

  .featured-block-six .content-box .icon-box:before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
  }

.featured-block-six .inner-box:hover .content-box .icon-box:before {
  border-color: rgba(255, 255, 255, 0.30);
}

.featured-block-six .hvr-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 10px 30px;
  background: #ffffff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}

.featured-block-six .inner-box:hover .hvr-dropdown {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.featured-block-six .hvr-dropdown ul {
  position: relative;
  display: block;
}

  .featured-block-six .hvr-dropdown ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding: 10px 0px;
    line-height: 24px;
  }

    .featured-block-six .hvr-dropdown ul li:last-child {
      border-bottom: none;
    }

    .featured-block-six .hvr-dropdown ul li a {
      position: relative;
      display: block;
      color: #757575;
      font-size: 0.875em;
      text-transform: capitalize;
    }

      .featured-block-six .hvr-dropdown ul li a:hover {
        color: #00aa55;
      }

/*** 
====================================================================
	Application Section Two
====================================================================
***/

.application-section-two {
  position: relative;
  padding: 50px 0px 40px;
  background: #f1f1f1;
  /* margin-top: 60px; */
}

  .application-section-two .image-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
  }

    .application-section-two .image-left .image-layer {
      position: absolute;
      left: 0;
      top: 0;
      right: 390px;
      bottom: 0px;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
    }

      .application-section-two .image-left .image-layer:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #5b5b5b;
        opacity: 0.65;
      }

.featured-service-block {
  position: relative;
  margin-bottom: 30px;
  padding-top: 12px;
}

  .featured-service-block .inner-box {
    position: relative;
    display: block;
    text-align: center;
    margin-right: 10px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 27%);
  }

  .featured-service-block .image-box {
    position: relative;
    display: block;
  }

    .featured-service-block .image-box img {
      position: relative;
      display: block;
      width: 100%;
    }

  .featured-service-block .lower-box {
    position: relative;
    display: block;
    padding: 16px 20px 16px 20px;
    color: #ffffff;
    background: #4d85b0;
  }

    .featured-service-block .lower-box a {
      color: #ffffff;
    }

  .featured-service-block h2 {
    font-weight: 900;
    margin-bottom: 0px;
    line-height: 21.6px;
    /* font-size: 2em; 20211227 */
    font-size: 1.5em; /* 20211227 */
  }

  .featured-service-block .more-link {
    position: relative;
    display: block;
  }

    .featured-service-block .more-link a {
      position: relative;
      display: inline-block;
      vertical-align: top;
      font-family: 'Manjari', sans-serif;
      font-size: 1em;
      text-transform: capitalize;
      font-weight: 700;
      color: #ffffff;
      line-height: 20px;
      border-bottom: 2px solid #ffffff;
    }

      .featured-service-block .more-link a:hover {
        color: #222222;
        border-color: #222222;
      }

.application-section-two .column .col-inner {
  position: relative;
  margin-right: 0px;
}

.featured-block-two {
  position: relative;
  margin-bottom: 30px;
}

  .featured-block-two .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    /* padding: 20px 25px 20px; 20211227 */
    padding: 10px 10px 10px 10px; /* 20211227 */
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 7%);
  }

  .featured-block-two .content-box {
    position: relative;
    display: block;
    padding-left: 60px;
    min-height: 30px;
  }

    .featured-block-two .content-box .icon-box {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 20px;
      height: 30px;
      color: #00aa55;
      text-align: center;
    }

      .featured-block-two .content-box .icon-box:before {
        content: '';
        position: absolute;
        left: 0px;
        top: 7px;
        bottom: 4px;
        width: 20px;
        background: #cccbcb;
        border: 1px solid rgb(191 191 191 / 10%);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        z-index: 1;
      }

  .featured-block-two .inner-box:hover .content-box .icon-box {
    color: #ffffff;
  }

    .featured-block-two .inner-box:hover .content-box .icon-box:before {
      top: 0;
      bottom: 0;
      background: #00aa55;
    }

  .featured-block-two .content-box .icon-box:after {
    content: '';
    position: absolute;
    left: 9px;
    top: 0px;
    height: 110%;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
  }

  .featured-block-two .content-box .icon-box .icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -27px;
    width: 70px;
    height: 40px;
    line-height: 40px;
    font-size: 2.625em;
    z-index: 3;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .featured-block-two .content-box .content {
    position: relative;
    display: block;
  }

  .featured-block-two .content-box h3 {
    color: #222222;
    font-weight: 900;
    line-height: 30px;
    margin: 0px 0 0px 0;
    /* font-size: 1.6em; 20211227 */
    font-size: 1em; /* 20211227 */
  }

    .featured-block-two .content-box h3 a {
      color: #222222;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

      .featured-block-two .content-box h4 a:hover {
        color: #00aa55;
      }

  .featured-block-two .content-box .text {
    margin-bottom: 25px;
  }

  .featured-block-two .read-more {
    position: relative;
    display: block;
  }

    .featured-block-two .read-more a {
      position: relative;
      display: block;
      color: #222222;
      font-size: 1em;
      font-weight: 700;
      font-family: 'Manjari', sans-serif;
      text-transform: capitalize;
      transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -webkit-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
    }

      .featured-block-two .read-more a:before {
        content: "\f061";
        font-family: 'Font Awesome 5 Free';
        position: absolute;
        left: 0;
        top: -3px;
        width: 15px;
        line-height: 24px;
        color: #00aa55;
        font-size: 1em;
        font-weight: 700;
        opacity: 0;
        transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
      }

      .featured-block-two .read-more a:hover,
      .featured-block-two .inner-box:hover .read-more a {
        color: #00aa55;
        padding-left: 20px;
      }

        .featured-block-two .read-more a:hover:before,
        .featured-block-two .inner-box:hover .read-more a:before {
          opacity: 1;
          transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -webkit-transition: all 0.5s ease;
          -ms-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
        }



/*** 
====================================================================
	Application Section
====================================================================
***/

.application-section {
  position: relative;
  padding: 20px 0px 80px 0;
  background: #f1f1f1;
  margin-top: 65px;
}

  .application-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }

  .application-section .sec-title h2 {
    position: relative;
    display: block;
    font-size: 1.875em;
    line-height: 40px;
    color: #FFF;
    font-weight: 900;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 40px;
  }

  .application-section .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.85;
  }

  .application-section .outer {
    position: relative;
    margin: 0px -15px;
    margin-top: 60px;
  }

  .application-section .nav-column {
    position: relative;
    float: left;
    width: 31.5%;
    padding: 0px 15px;
    margin-bottom: 30px;
  }

    .application-section .nav-column .inner {
      padding: 15px 0px 12px;
      background: #00aa55;
      color: #ffffff;
    }

    .application-section .nav-column ul li {
      position: relative;
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    }

      .application-section .nav-column ul li:last-child {
        border-bottom: none;
      }

      .application-section .nav-column ul li a {
        position: relative;
        display: block;
        font-size: 1.125em;
        font-weight: 700;
        font-family: 'Manjari', sans-serif;
        color: #ffffff;
        padding: 13px 28px;
        line-height: 30px;
        transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
      }

        .application-section .nav-column ul li a:after {
          content: "\f061";
          font-family: 'Font Awesome 5 Free';
          position: relative;
          display: inline-block;
          vertical-align: middle;
          left: 0;
          top: 0;
          padding-left: 5px;
          font-size: 1.125em;
          font-weight: 400;
        }

      .application-section .nav-column ul li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        background: #03934b;
        transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
      }

      .application-section .nav-column ul li:hover:before {
        opacity: 1;
        left: -10px;
        right: -10px;
        top: -1px;
        bottom: -1px;
      }

  .application-section .image-column {
    position: relative;
    float: left;
    width: 37%;
    padding: 0px 15px;
    margin-bottom: 30px;
  }

    .application-section .image-column .inner {
      position: relative;
      display: block;
    }

  .application-section .image-box {
    position: relative;
    display: block;
    text-align: center;
    color: #ffffff;
    background: #00aa55;
  }

    .application-section .image-box img {
      display: block;
      width: 100%;
      transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
    }

    .application-section .image-box .over-box {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      padding: 100px 20px 20px;
    }

    .application-section .image-box .icon-box {
      position: relative;
      display: block;
      width: 80px;
      height: 80px;
      line-height: 76px;
      border: 2px solid #ffffff;
      margin: 0 auto 20px;
      border-radius: 50%;
    }

    .application-section .image-box .over-link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .application-section .image-box:hover .image img {
      opacity: 0.50;
    }

/*-- News --*/
@media screen and (max-width:767px) {
  .event-block .inner-box {
    text-align: center;
  }

  .event-block .content-box {
    padding: 0px 0px;
    min-height: 0;
  }

    .event-block .content-box .date-box {
      position: relative;
      display: block;
      width: 100%;
      margin-bottom: 20px;
    }

    .event-block .content-box .date-box {
      width: 100px;
      margin: 0 auto 10px;
    }

    .event-block .content-box .content {
      padding-right: 0;
    }

    /* .event-block .linkA  .read-more list.aspx */ 
  .event-block .read-more,.event-block .linkA  .read-more{
    position: relative;
    display: block;
    left: 0;
    top: 0;
    padding: 30px 0 0;
    border: none;
    width: 100%;
    text-align: left;
    height: auto;
  }

  .event-block .read-more {
    display: inline-block;
    width: auto;
  }

  .col-inner {
    margin-right: 0px;
  }
}

/*-- Sidebar --*/

.sidenav {
  right: 0px;
  list-style: none;
  position: fixed;
  bottom: 5%;
  z-index: 999;
}

#sidenav-2 {
  left: auto;
  right: 20px;
}

.sidenav li {
  margin-bottom: 2px;
}

.sidenav a {
  background: #ededed;
  color: #666;
  display: block;
  font-size: 1.1875em;
  font-weight: 900;
  padding: 5px 10px;
  text-decoration: none;
  text-transform: uppercase;
}

  .sidenav a:hover {
    background: #dedede;
  }

.sidenav .current a {
  background: #666;
  color: #ededed;
}

.sidenav .current {
  background: #c50000;
}

#container {
  margin: 0 auto;
  width: 800px;
}

.section {
  border-bottom: 5px solid #ccc;
  padding: 20px;
}

  .section p:last-child {
    margin-bottom: 0;
  }

.map-content {
  margin-top: 0px;
}

/*
@media (max-width: 1919px) {
  .ind-zone-shape::before {
    display: none;
  }
} 20211227 */

@media (max-width: 1366px) {
  .main-header-six .main-menu .main-menu__list > li > a {
    font-size: 1.125em;
    font-weight: 900;
  }
}

.service-six:before {
  content: "";
  position: absolute;
  /* width: 3000px; 20211227 */
  width: 100%; /* 20211227 */
  background-color: transparent;
  border-bottom-right-radius: 10px;
  /* top: 650px; 20211227 */
  margin-top: -215px; /* 20211227 */
  left: 0;
  height: 450px; /*100%;*/
  background-repeat: no-repeat;
  background-image: url(../images/shapes/devider-006-02_trans.png);
}

_delete_.service-six .container::before {
  content: "";
  width: calc(35px + 100%);
  height: 450px;
  opacity: 1;
  /*background-size: 100% 100%;*/ /* 20211227 */
  background-image: url(../images/shapes/devider-006-02.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -170px;
  margin-left: -35px;
  background-color: transparent;
}

@media only screen and (max-width: 960px) {
  .service-six {
    padding-top: 0px;
    margin-top: -80px;
  }
}



/* @media only screen and (min-width: 375px) and (max-width: 959px) { 20211227 */
@media only screen and (max-width: 960px) { /* 20211227 */
  .service-six:before,
  .service-six .container::before {
    display: none;
  }

  _delete_.ind-zone-shape::before { /* 20211227 */
    display: none;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1920px) { /* 20211227 */
  /*.service-six:before {
    top: calc((100vw - 960px)*0.5 + 300px );
  }*/


  .ind-zone-shape1::before {
    width: calc(120px + (100vw - 960px)*0.068); /* 185/120 1920-960*/
    height: calc(120px + (100vw - 960px)*0.068);
    top: calc(-140px - (100vw - 1200px)*0.052); /* -180/-140 1920-1200*/
  }

  .ind-zone-shape2::before {
    width: calc(120px + (100vw - 960px)*0.068); /* 185/120 1920-960*/
    height: calc(120px + (100vw - 960px)*0.068);
    top: calc(-90px - (100vw - 1200px)*0.052); /* -180/-140 1920-1200*/
    right: calc(0px + (100vw - 960px)*0.052); /* 50/0 1920-960*/
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .news-details .content-side {
    position: relative;
    margin-bottom: 30px;
    margin-top: 10px;
  }
}

/*@media only screen and (min-width: 1365px) and (max-width: 1920px) {
  .m-menu {
    display: none !important;
  }
}*/

/* @media only screen and (min-width: 375px) and (max-width: 768px) {	20211225 */
@media (max-width: 768px) { /* 20211225 */
  /*.service-six {
    padding-top: 0px;
    margin-top: 0px;
  }*/

  .sidebar {
    /*height: 55vh !important; 20211225 */
  }

  .main-header-six .header-upper {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .news-details .content-side {
    margin-top: 0px;
  }

  .sidebar-side {
    margin-bottom: 170px;
  }
}

@media only screen and (min-width: 375px) and (max-width: 1574px) {
  .main-slider {
    margin-top: 0px;
  }

  .main-header-six .main-menu {
    display: none;
  }

  /*.main-header-six .header-upper:before {
    height: 100%;
    width: 515px;
  }*/
}



/*@media only screen and (min-width: 415px) and (max-width: 1199px) {
  .main-header-six .header-upper .logo-box img {
    margin-top: 0px;
  }

  .main-header-six .header-upper .logo-box .en-logo {
    margin-top: -15px;
  }
}*/

@media only screen and (min-width: 1200px) and (max-width: 1366px) {
  .main-header-six .header-upper .mobile-nav__toggler {
    margin-top: -40px;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1573px) {
  .main-header-six .header-upper .mobile-nav__toggler {
    margin-top: -50px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .map-content {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 375px) and (max-width: 768px) {
  .map-content {
    margin-top: 300px;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1573px) {
  .news-details:before {
    top: 125px;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1630px) {
  .page-header .thm-breadcrumb {
    margin-top: 60px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 375px)and (max-width: 1365px) {
  .page-header {
    margin-top: 0px;
  }

    .page-header .container {
      /* padding-bottom: 30px; 20211225 */
      /* padding-top: 30px; */
    }

    .page-header .thm-breadcrumb {
      margin-top: 0px;
    }

    .page-header .container h2 {
      margin-left: 0px;
      margin-bottom: 30px;
    }
}

@media (max-width: 1366px) {
  .news-details:before, .industry-section:before {
    display: none;
  }
}

@media only screen and (min-width: 375px) and (max-width: 1919px) {
  .side-acc {
    display: none;
  }

  .industry-section .blocks-column .inner-column {
    position: relative;
    margin-left: 0px;
    margin-top: 80px;
  }
}

@media (max-width: 735px) {
  .ttm-horizontal_sep {
    border-top: 0px solid rgba(0, 0, 0, 0.09);
  }
}

@media (max-width: 1024px) {
  /*.main-header-six .header-upper:before {
    height: 100%;
  }*/
}

@media (max-width: 991px) {
  /*.main-header-six .header-upper:before {
    height: 100%;
  }*/
}

@media (min-width: 1575px) {
}

@media only screen and (min-width: 1575px) and (max-width: 1630px) {
  /*.main-header-six .header-upper:before {
    width: 550px;
  }*/
}

@media only screen and (min-width: 1631px) and (max-width: 1830px) {
  /*.main-header-six .header-upper:before {
    width: 715px;
  }*/
}


/*================================================
Candidates Details Area CSS
=================================================*/
.candidates-details-desc .candidates-details-image {
  margin-bottom: 35px;
}

  .candidates-details-desc .candidates-details-image img {
    border-radius: 5px;
  }

.candidates-details-desc .candidates-desc-content {
  margin-bottom: 50px;
}

  .candidates-details-desc .candidates-desc-content.mb-30 {
    margin-bottom: 30px;
  }

  .candidates-details-desc .candidates-desc-content.mb-0 {
    margin-bottom: 0;
  }

  .candidates-details-desc .candidates-desc-content h3 {
    font-size: 1.75em;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
  }

  .candidates-details-desc .candidates-desc-content h4 {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .candidates-details-desc .candidates-desc-content ol {
    list-style-type: none;
    /*text-indent: -32px;*/
    margin-left: 15px;
    margin-bottom: 30px;
  }

  .candidates-details-desc .candidates-desc-content h3 i {
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    background: linear-gradient(to top, #00b9ff, #00c7ff, #00d4fc, #00e0f5, #0cebeb);
    color: var(--white-color);
    font-size: var(--font-size);
    text-align: center;
    border-radius: 50%;
    float: right;
  }

  .candidates-details-desc .candidates-desc-content p {
    margin-bottom: 0px;
    margin-left: 15px;
  }

  .candidates-details-desc .candidates-desc-content .candidates-desc-list {
    position: relative;
    margin-left: 10px;
  }

    .candidates-details-desc .candidates-desc-content .candidates-desc-list::before {
      position: absolute;
      content: "";
      left: 0;
      top: 0;
      height: 100%;
      width: 1px;
      border-left: 1px solid var(--optional-color);
    }

    .candidates-details-desc .candidates-desc-content .candidates-desc-list .list-box {
      padding-left: 30px;
      margin-bottom: 30px;
      position: relative;
    }

      .candidates-details-desc .candidates-desc-content .candidates-desc-list .list-box h4 {
        color: #2F4858;
        font-size: 1.125em;
        font-weight: bold;
        margin-bottom: 10px;
      }

      .candidates-details-desc .candidates-desc-content .candidates-desc-list .list-box span {
        font-size: 0.875em;
        color: #858585;
        font-weight: 400;
        display: inline-block;
        margin-bottom: 5px;
      }

      .candidates-details-desc .candidates-desc-content .candidates-desc-list .list-box p {
        margin-bottom: 0;
        position: relative;
        top: 8px;
      }

      .candidates-details-desc .candidates-desc-content .candidates-desc-list .list-box::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 0;
        display: inline-block;
        height: 20px;
        width: 20px;
        line-height: 20px;
        border-radius: 5px;
        background: linear-gradient(to top, #00b9ff, #00c7ff, #00d4fc, #00e0f5, #0cebeb);
        z-index: 2;
      }

  .candidates-details-desc .candidates-desc-content .candidates-comments-list {
    position: relative;
    padding-left: 105px;
    margin-top: 35px;
  }

    .candidates-details-desc .candidates-desc-content .candidates-comments-list img {
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 50%;
      max-width: 90px;
    }

    .candidates-details-desc .candidates-desc-content .candidates-comments-list h5 {
      font-size: 1.25em;
      margin-bottom: 15px;
      font-weight: 600;
    }

      .candidates-details-desc .candidates-desc-content .candidates-comments-list h5 span {
        display: inline-block;
        font-size: 0.875em;
        color: #A4A4A4;
        margin-left: 5px;
        font-weight: 400;
      }

    .candidates-details-desc .candidates-desc-content .candidates-comments-list p {
      margin-bottom: 0;
      font-size: 0.9375em;
    }

    .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating {
      position: absolute;
      right: 0;
      top: 0;
    }

      .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating label {
        float: right;
        position: relative;
        width: 20px;
        height: 20px;
        cursor: pointer;
        margin: 0 2px;
      }

        .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating label:before {
          content: "\2605";
          -webkit-transition: var(--transition);
          transition: var(--transition);
          font-size: 1.6875em;
          color: #CCCCCC;
          line-height: 1;
        }

      .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating input {
        display: none;
      }

        .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating input:checked ~ label:before, .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating:not(:checked) > label:hover:before, .candidates-details-desc .candidates-desc-content .candidates-comments-list .rating:not(:checked) > label:hover ~ label:before {
          color: #f6b500;
        }

    .candidates-details-desc .candidates-desc-content .candidates-comments-list.children {
      margin-left: 50px;
    }

  .candidates-details-desc .candidates-desc-content .candidates-leave-comment {
    margin-top: 20px;
    position: relative;
  }

    .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating {
      position: absolute;
      right: 0;
      top: -65px;
    }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating label {
        float: right;
        position: relative;
        width: 20px;
        height: 20px;
        cursor: pointer;
        margin: 0 2px;
      }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating label:not(:first-of-type) {
          padding-right: 5px;
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating label:before {
          content: "\2605";
          -webkit-transition: var(--transition);
          transition: var(--transition);
          font-size: 1.6875em;
          color: #CCCCCC;
          line-height: 1;
        }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating input {
        display: none;
      }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating input:checked ~ label:before, .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating:not(:checked) > label:hover:before, .candidates-details-desc .candidates-desc-content .candidates-leave-comment .rating:not(:checked) > label:hover ~ label:before {
          color: #f6b500;
        }

    .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group {
      margin-bottom: 25px;
    }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control {
        height: 65px;
        padding: 15px 25px;
        line-height: initial;
        color: var(--paragraph-color);
        background-color: var(--white-color);
        border: 1px solid #BCBCBC;
        border-radius: 5px;
        -webkit-box-shadow: unset;
        box-shadow: unset;
        -webkit-transition: var(--transition);
        transition: var(--transition);
        font-size: 0.9375em;
        font-weight: 400;
      }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control::-webkit-input-placeholder {
          color: #A4A4A4;
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control:-ms-input-placeholder {
          color: #A4A4A4;
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control::-ms-input-placeholder {
          color: #A4A4A4;
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control::placeholder {
          color: #A4A4A4;
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control:focus::-webkit-input-placeholder {
          color: transparent;
          -webkit-transition: var(--transition);
          transition: var(--transition);
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control:focus:-ms-input-placeholder {
          color: transparent;
          -webkit-transition: var(--transition);
          transition: var(--transition);
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control:focus::-ms-input-placeholder {
          color: transparent;
          -webkit-transition: var(--transition);
          transition: var(--transition);
        }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group .form-control:focus::placeholder {
          color: transparent;
          -webkit-transition: var(--transition);
          transition: var(--transition);
        }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-group textarea.form-control {
        height: 150px;
        padding: 15px;
        line-height: 24px;
      }

    .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent {
      margin-bottom: 0;
    }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent a {
        color: var(--main-color);
      }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:checked, .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:not(:checked) {
        display: none;
      }

        .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:checked + label, .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:not(:checked) + label {
          position: relative;
          padding-left: 35px;
          cursor: pointer;
          display: inline-block;
          margin-bottom: 0;
          color: #888888;
          font-weight: 500;
          font-size: 0.9375em;
          font-family: var(--heading-font-family);
        }

          .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:checked + label:before, .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 1px;
            width: 25px;
            height: 25px;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
            border: 1px solid #707070;
            border-radius: 5px;
            background: #eeeeee;
          }

          .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:checked + label:after, .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:not(:checked) + label:after {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--main-color);
            position: absolute;
            top: 8.5px;
            left: 8px;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
            border-radius: 30px;
          }

          .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
          }

          .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
          }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:hover + label:before {
        border-color: var(--main-color);
      }

      .candidates-details-desc .candidates-desc-content .candidates-leave-comment .form-cookies-consent [type="checkbox"]:checked + label:before {
        border-color: var(--main-color);
      }

    .candidates-details-desc .candidates-desc-content .candidates-leave-comment button {
      margin-top: 22px;
      border: none;
    }

.candidates-details-information {
  background-color: #F2FBFF;
  padding: 35px;
  border-radius: 10px;
  margin-right: 20px;
}

  .candidates-details-information .information-box {
    position: relative;
    padding-left: 115px;
  }

    .candidates-details-information .information-box img {
      position: absolute;
      left: 0;
      top: 0;
      max-width: 95px;
      border-radius: 5px;
    }

    .candidates-details-information .information-box h3 {
      font-size: 1.25em;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--main-color);
    }

    .candidates-details-information .information-box span {
      font-size: 0.875em;
      color: var(--paragraph-color);
      font-weight: 500;
      font-family: var(--heading-font-family);
    }

    .candidates-details-information .information-box .social-links {
      padding: 0;
      margin-bottom: 0;
      margin-top: 15px;
    }

      .candidates-details-information .information-box .social-links li {
        list-style-type: none;
        display: inline-block;
        margin-right: 20px;
      }

        .candidates-details-information .information-box .social-links li:last-child {
          margin-right: 0;
        }

        .candidates-details-information .information-box .social-links li a i {
          font-size: var(--font-size);
          color: var(--optional-color);
          -webkit-transition: var(--transition);
          transition: var(--transition);
        }

          .candidates-details-information .information-box .social-links li a i:hover {
            color: var(--main-color);
          }

  .candidates-details-information .information-list-box {
    padding: 0;
    margin-top: 30px;
    margin-bottom: 0;
    list-style-type: none;
  }

    .candidates-details-information .information-list-box li {
      border-bottom: 1px solid #D8F4FF;
      color: #888888;
      font-size: var(--font-size);
      font-family: var(--heading-font-family);
      font-weight: 500;
      padding-top: 15px;
      padding-bottom: 15px;
    }

      .candidates-details-information .information-list-box li:first-child {
        border-top: 1px solid #D8F4FF;
      }

      .candidates-details-information .information-list-box li span {
        font-weight: 500;
        color: #2F4858;
        font-size: var(--font-size);
        font-family: var(--heading-font-family);
      }

        .candidates-details-information .information-list-box li span i {
          font-size: 1.25em;
          position: relative;
          top: 4px;
          margin-right: 5px;
          color: var(--main-color);
        }

      .candidates-details-information .information-list-box li a {
        color: #888888;
      }

  .candidates-details-information .candidates-details-btn-box {
    text-align: center;
    margin-top: 25px;
  }

    .candidates-details-information .candidates-details-btn-box .default-btn {
      width: 100%;
    }



.candidates-details-desc .candidates-desc-content .list {
  padding: 0;
  margin-bottom: 40px;
}

  .candidates-details-desc .candidates-desc-content .list li {
    list-style-type: none;
    color: #535353;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
    margin-left: 15px;
  }

    .candidates-details-desc .candidates-desc-content .list li::before {
      position: absolute;
      content: "";
      height: 2px;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 20px;
      border: 1px solid var(--main-color);
    }

.candidates-desc-content ul li ul li {
  margin-left: 60px;
}

.candidates-details-desc .candidates-desc-content .article-footer {
  margin-top: 30px;
  border-top: 0px solid #2CB836;
  border-bottom: 0px solid #2CB836;
  padding-top: 15px;
  padding-bottom: 15px;
}

  .candidates-details-desc .candidates-desc-content .article-footer h3 {
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
  }

/*-- Table --*/
h2 {
  text-align: center;
  padding: 20px 0;
}

table caption {
  padding: 8px 0;
}

.lite-blue {
  background: #c5cdda;
}

.lite-green {
  background: #afc6b5;
}


/*-- Table --*/

.intro-stats {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
  width: 100%;
  background: #CCC;
  border-radius: 20px;
}

  .intro-stats .inner-box {
    text-align: center;
    padding: 6px 0px;
  }

.dep-cat {
  margin-bottom: 30px;
}

.intro-stats .inner-box .counter_item span {
  font-size: 1.25em;
  font-weight: 900;
}

.intro-stats .inner-box sub {
  bottom: 0px;
}

.intro-stats .inner-box a {
  color: #000;
}

  .intro-stats .inner-box a:hover {
    color: #007bff;
  }


.services-carousel-three .owl-dots .owl-dot {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

  .services-carousel-three .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--optional-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 50px;
  }

.services-carousel-three.owl-theme .owl-dots .owl-dot:hover span, .services-carousel-three.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--optional-color);
  width: 30px;
}

.services-carousel-three.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

/*==========
  Categories Box Style02
============*/
.inner_categories_box {
  width: calc(100% + 20px);
  left: -20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.inner_category_small_box_part {
  float: left;
  background-color: #f2f2f2;
  border-radius: 4px;
  margin: 20px 0 20px 20px;
  padding: 10px 10px 10px 10px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  transform: scale(1);
  vertical-align: top;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

  .inner_category_small_box_part:hover {
    background-color: #CC0000;
    color: #fff;
  }

  .inner_category_small_box_part:nth-child(1) {
    background: #1966b6;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(1):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(2) {
    background: #cc4300;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(2):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(3) {
    background: #04724d;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(3):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(4) {
    background: #d80a48;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(4):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(5) {
    background: #762acb;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(5):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(6) {
    background: #097784;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(6):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(7) {
    background: #2531d5;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(7):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(8) {
    background: #931674;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part:nth-child(8):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part:nth-child(9) {
    background: #d52f31;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

  .inner_category_small_box_part:nth-child(10) {
    background: #134b7e;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

  .inner_category_small_box_part:hover h4 {
    font-size: 1.18em;
  }

  .inner_category_small_box_part h4 {
    font-size: 1.18em;
    color: #fff;
    transition: 0.4s;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
  }

  .inner_category_small_box_part span {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    line-height: 18px;
    font-weight: 500;
  }

  .inner_category_small_box_part i {
    font-size: 3.5em;
    line-height: 70px;
    display: block;
    width: 120px;
    margin: 0px auto 0 auto;
    text-align: center;
  }

  .inner_category_small_box_part:hover h4 {
    color: #FFF;
  }

@media (max-width: 768px) {
  .inner_category_small_box_part {
    width: calc(100% * (1/2) - 20px);
  }
}

@media (min-width: 768px) {
  .inner_category_small_box_part {
    width: calc(100% * (1/3) - 20px);
  }
}

@media (max-width: 991px) {
  .inner_dashboard_content .col-lg-2 {
    width: calc(50% * (1/1) - 0px);
    float: left;
  }
}

@media only screen and (min-width: 480px) and (max-width: 991px) {
  .inner_dashboard_content .col-lg-3 {
    width: calc(50% * (1/1) - 0px);
    float: left;
  }
}

@media (min-width: 992px) {
  .inner_category_small_box_part {
    width: calc(100% * (1/3) - 20px);
  }
}

@media (min-width: 1240px) {
  .inner_category_small_box_part {
    width: calc(100% * (1/3) - 20px);
  }
}

/*==========
  Categories Box Style02
============*/

/*==========
  Categories Box Style03
============*/
.inner_categories_box_03 {
  width: calc(100% + 20px);
  left: -20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.inner_category_small_box_part_03 {
  float: left;
  background-color: #f2f2f2;
  border-radius: 4px;
  margin: 20px 0 20px 20px;
  padding: 10px 10px 10px 10px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  transform: scale(1);
  vertical-align: top;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

  .inner_category_small_box_part_03:hover {
    background-color: #CC0000;
    color: #fff;
  }

  .inner_category_small_box_part_03:nth-child(1) {
    background: #dacab1;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(1):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(2) {
    background: #cbb8ab;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(2):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(3) {
    background: #c4cdd9;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(3):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(4) {
    background: #666563;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(4):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(5) {
    background: #afafb3;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(5):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(6) {
    background: #b9c4b6;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(6):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(7) {
    background: #b9afa6;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(7):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(8) {
    background: #a29988;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(8):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(9) {
    background: #8c93a7;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(9):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(10) {
    background: #a1a9b7;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(10):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(11) {
    background: #9ca591;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(11):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }

  .inner_category_small_box_part_03:nth-child(12) {
    background: #134b7e;
    border: 0px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  }

    .inner_category_small_box_part_03:nth-child(12):hover {
      background: #CC0000;
      border: 0px solid rgba(255, 255, 255, 0.5);
    }


  .inner_category_small_box_part_03:hover h4 {
    font-size: 1.18em;
  }

  .inner_category_small_box_part_03 h4 {
    font-size: 1.18em;
    color: #fff;
    transition: 0.4s;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
  }

  .inner_category_small_box_part_03 span {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    line-height: 18px;
    font-weight: 500;
  }

  .inner_category_small_box_part_03 i {
    font-size: 3.5em;
    line-height: 70px;
    display: block;
    width: 120px;
    margin: 0px auto 0 auto;
    text-align: center;
  }

  .inner_category_small_box_part_03:hover h4 {
    color: #FFF;
  }

@media (max-width: 768px) {
  .inner_category_small_box_part_03 {
    width: calc(100% * (1/4) - 20px);
  }
}

@media (min-width: 768px) {
  .inner_category_small_box_part_03 {
    width: calc(100% * (1/4) - 20px);
  }
}

@media (max-width: 991px) {
  .inner_dashboard_content .col-lg-2 {
    width: calc(50% * (1/1) - 0px);
    float: left;
  }
}

@media only screen and (min-width: 480px) and (max-width: 991px) {
  .inner_dashboard_content .col-lg-3 {
    width: calc(50% * (1/1) - 0px);
    float: left;
  }
}

@media (min-width: 992px) {
  .inner_category_small_box_part_03 {
    width: calc(100% * (1/4) - 20px);
  }
}

@media (min-width: 1240px) {
  .inner_category_small_box_part_03 {
    width: calc(100% * (1/4) - 20px);
  }
}

/*==========
  Categories Box Style03
============*/


/*==========
  Content Search Style
============*/

.utf-section-headline-item.centered {
  text-align: center;
  padding: 0;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-top-0 {
  margin-top: 15px !important;
}

.utf-section-headline-item {
  display: block;
  position: relative;
  padding-right: 20%;
}

.margin-top-40 {
  margin-top: 40px !important;
}

.utf-section-headline-item span {
  background: #ff8a00;
  box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
  line-height: 26px;
  color: #fff;
  padding: 1.5px 12px;
  display: inline-block;
  max-width: max-content;
  margin: 0 auto 5px auto;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  text-transform: capitalize;
}

.utf-section-headline-item h1, .utf-section-headline-item h2, .utf-section-headline-item h3, .utf-section-headline-item h4 {
  font-size: 1.625em;
  line-height: 36px;
  font-weight: 600;
  color: #333;
  position: relative;
  z-index: 9;
}

.utf-section-headline-item.centered h3::before {
  background: #ff8a00;
  border: 0 none;
  content: "";
  height: 3px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  border-radius: 30px;
  position: absolute;
  bottom: -7px;
  width: 40px;
}

.utf-intro-banner-search-form-block {
  display: flex;
  width: 100%;
  background-color: #fbfdff;
  border-radius: 50px;
  border: 5px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgb(0 0 0 / 9%);
  margin-bottom: 30px;
}

.utf-intro-search-field-item {
  padding: 10px 12px;
  border-right: 1px solid #e4e4e4;
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.utf-intro-banner-search-form-block i {
  left: 20px;
  position: absolute;
  font-size: 1.25em;
  color: #ca5656;
  margin-top: 3px;
}

.utf-intro-search-field-item .fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: normal;
  font-size: 1.1875em;
  padding-top: 0px !important;
}

.utf-intro-banner-search-form-block input {
  padding: 10px 15px;
}

.utf-intro-banner-search-form-block input {
  box-shadow: none;
  font-size: 1.125em;
  margin: auto;
  padding-left: 35px;
}

.utf-intro-search-button {
  margin: 8px;
  margin-left: 0;
  flex: auto;
  flex-grow: 0;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

  .utf-intro-search-button .button {
    height: 52px;
    line-height: 52px;
    padding: 0 30px;
    font-size: 1.125em;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    background-color: #996c37;/*#ff8a00;*/
    border-color: transparent !important;
  }

  .utf-intro-search-button button i {
    left: 0px;
    color: #ffffff;
    font-size: 1.125em;
    height: 0;
    width: 18px;
    line-height: 0;
    top: 0px;
    position: relative;
    display: inline-block;
    margin-left: 3px;
  }

.bootstrap-select.open .dropdown-toggle .caret {
  transform: rotate( 180deg);
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -2px;
  vertical-align: middle;
  transition: 0.35s;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 5px dashed;
  border-top: 5px solid #aaa;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 998;
  display: none;
  float: left;
  padding: 0px;
  margin: 0;
  font-size: 0.9375em;
  text-align: left;
  list-style: none;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  box-shadow: 0 1px 4px 0px rgb(0 0 0 / 12%);
}

@media (max-width: 992px) {
  .utf-intro-banner-search-form-block {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px;
    padding: 0px;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    margin-top: 0px;
  }

    .utf-intro-banner-search-form-block i {
      display: none;
    }

  label {
    margin-left: 0px;
  }
}


/*==========
  Content Search Style
============*/

/*==== Gallery ===*/
.content-inner .imgcontent img {
  width: 100%;
  display: block;
}

/*==== Gallery ====*/

/*--------------------------------------------------------------
# Sidebar-Navigations
--------------------------------------------------------------*/
.navigation {
  padding: 0;
  margin: 0;
  border: 0;
  line-height: 1;
}

  .navigation ul,
  .navigation ul li,
  .navigation ul ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

    .navigation ul li {
      float: left;
      min-height: 0.8px;
      line-height: 16px;
      vertical-align: middle;
      position: relative;
    }

      .navigation ul li.hover,
      .navigation ul li:hover {
        position: relative;
        z-index: 510;
        cursor: default;
      }

    .navigation ul ul {
      visibility: hidden;
      position: absolute;
      top: 100%;
      left: 0px;
      z-index: 520;
      width: 100%;
    }

      .navigation ul ul li {
        float: none;
      }

      .navigation ul ul ul {
        top: 0;
        right: 0;
      }

    .navigation ul li:hover > ul {
      visibility: visible;
    }

    .navigation ul ul {
      top: 0;
      left: 99%;
    }

    .navigation ul li {
      float: none;
    }

    .navigation ul ul {
      margin-top: 0.8px;
    }

.navigation {
  zoom: 1;
}

  .navigation:before {
    content: '';
    display: block;
  }

  .navigation:after {
    content: '';
    display: table;
    clear: both;
  }

  .navigation a {
    display: block;
    padding: 16px 20.8px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
  }

  .navigation > ul > li > a:hover {
    color: #ffffff;
  }

  .navigation > ul > li a:hover,
  .navigation > ul > li:hover a {
    background: #34A65F;
  }

  .navigation li {
    position: relative;
  }

  .navigation ul li.has-sub > a:after {
    content: '\f105';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 16px;
  }

  .navigation ul ul li.first {
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
  }

  .navigation ul ul li.last {
    -webkit-border-radius: 0 0 3px 0;
    -moz-border-radius: 0 0 3px 0;
    border-radius: 0 0 3px 0;
    border-bottom: 0;
  }

  .navigation ul ul {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
  }

  .navigation ul ul {
    border: 1px solid #34A65F;
  }

    .navigation ul ul a {
      color: #ffffff;
    }

      .navigation ul ul a:hover {
        color: #ffffff;
      }

    .navigation ul ul li {
      border-bottom: 1px solid #0F8A5F;
    }

      .navigation ul ul li:hover > a {
        background: #4eb1ff;
        color: #ffffff;
      }

  .navigation.align-right > ul > li > a {
    border-left: 4.8px solid #34A65F;
    border-right: none;
  }

  .navigation.align-right {
    float: right;
  }

    .navigation.align-right li {
      text-align: right;
    }

    .navigation.align-right ul li.has-sub > a:before {
      content: '+';
      position: absolute;
      top: 50%;
      left: 15px;
      margin-top: -6px;
    }

    .navigation.align-right ul li.has-sub > a:after {
      content: none;
    }

    .navigation.align-right ul ul {
      visibility: hidden;
      position: absolute;
      top: 0;
      left: -100%;
      z-index: 598;
      width: 100%;
    }

      .navigation.align-right ul ul li.first {
        -webkit-border-radius: 3px 0 0 0;
        -moz-border-radius: 3px 0 0 0;
        border-radius: 3px 0 0 0;
      }

      .navigation.align-right ul ul li.last {
        -webkit-border-radius: 0 0 0 3px;
        -moz-border-radius: 0 0 0 3px;
        border-radius: 0 0 0 3px;
      }

    .navigation.align-right ul ul {
      -webkit-border-radius: 3px 0 0 3px;
      -moz-border-radius: 3px 0 0 3px;
      border-radius: 3px 0 0 3px;
    }


/*--------------------------------------------------------------
# Sidebar-Navigations
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Categories 003
--------------------------------------------------------------*/
.category-item {
  padding: 22px 30px;
  display: block;
  border-radius: 3px;
}

.category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

  .category ul .category-item-02 {
    margin-top: -1px;
    margin-right: -1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

    .category ul .category-item-02 a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      border: 1px solid #dddddd;
      height: 100%;
      padding: 14px;
    }

      .category ul .category-item-02 a .category-icon {
        margin-right: 18px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
        flex: 0 0 32px;
      }

      .category ul .category-item-02 a .category-img {
        width: 100%;
        max-height: 50px;
      }

      .category ul .category-item-02 a h6 {
        font-weight: 900;
        font-size: 1.25em;
      }

      .category ul .category-item-02 a i {
        font-size: 2.25em;
        line-height: 60px;
        color: #999999;
      }

      .category ul .category-item-02 a span {
        margin-left: auto;
        color: #999999;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 56px;
        flex: 0 0 56px;
        padding-left: 10px;
      }

      .category ul .category-item-02 a:hover {
        background: #1c58c7;
        border-color: #1c58c7;
      }

        .category ul .category-item-02 a:hover i {
          color: #ffffff;
        }

        .category ul .category-item-02 a:hover span {
          color: #ffffff;
        }

        .category ul .category-item-02 a:hover h6 {
          color: #ffffff;
        }

@media (max-width: 991px) {
  .category ul .category-item-02 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .category ul .category-item-02 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*-- Categories-Item-03 --*/
.category ul .category-item-05 {
  margin-top: -1px;
  margin-right: -1px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  max-width: 24%;
}

  .category ul .category-item-05 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #dddddd;
    height: 100%;
    padding: 14px;
  }

    .category ul .category-item-05 a .category-icon {
      margin-right: 18px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
      flex: 0 0 32px;
    }

    .category ul .category-item-05 a .category-img {
      width: 100%;
      max-height: 50px;
    }

    .category ul .category-item-05 a .h6 {
      font-weight: 900;
      font-size: 1.25em;
    }

    .category ul .category-item-05 a i {
      font-size: 2.25em;
      line-height: 60px;
      color: #3bc2dd;
    }

    /*.category ul .category-item-05 a span {
      margin-left: auto;
      color: #999999;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
      flex: 0 0 56px;
      padding-left: 10px;
    }*/

    .category ul .category-item-05 a:hover {
      background: #1c58c7;
      border-color: #1c58c7;
    }

      .category ul .category-item-05 a:hover i {
        color: #ffffff;
      }

      .category ul .category-item-05 a:hover span {
        color: #ffffff;
      }

      .category ul .category-item-05 a:hover .h6 {
        color: #ffffff;
      }

.news-details .category ul .category-item-05 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #dddddd;
  height: 100%;
  padding: 14px;
}

@media (min-width: 991px) {
  .page-en .category ul .category-item-05 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 100%;
  }
}

@media (max-width: 1300px) {
  .category ul .category-item-05 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 30%;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .category ul .category-item-05 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .category ul .category-item-05 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*-- Category-Item-04 --*/
.category ul .category-item-04 {
  margin-top: -1px;
  margin-right: -1px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

  .category ul .category-item-04 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #dddddd;
    height: 100%;
    padding: 14px;
  }

    .category ul .category-item-04 a .category-icon {
      margin-right: 18px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
      flex: 0 0 32px;
    }

    .category ul .category-item-04 a .category-img {
      width: 100%;
      max-height: 50px;
    }

    .category ul .category-item-04 a h6 {
      font-weight: 900;
      font-size: 1.25em;
    }

    .category ul .category-item-04 a i {
      font-size: 2.25em;
      line-height: 60px;
      color: #999999;
    }

.category ul .category-item-43 a span {
  margin-left: auto;
  color: #999999;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  padding-left: 10px;
}

.category ul .category-item-04 a:hover {
  background: #E7E7E7;
  border-color: #E7E7E7;
}

  .category ul .category-item-04 a:hover i {
    color: #ffffff;
  }

  .category ul .category-item-04 a:hover span {
    color: #ffffff;
  }

  .category ul .category-item-04 a:hover h6 {
    color: #ffffff;
  }

@media (max-width: 991px) {
  .category ul .category-item-04 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .category ul .category-item-04 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*-- Category-Item-03 --*/
.category ul .category-item-03 {
  margin-top: -1px;
  margin-right: -1px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

  .category ul .category-item-03 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #dddddd;
    height: 100%;
    padding: 14px;
  }

    .category ul .category-item-03 a .category-icon {
      margin-right: 18px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
      flex: 0 0 32px;
    }

    .category ul .category-item-03 a .category-img {
      width: 100%;
      max-height: 50px;
    }

    .category ul .category-item-03 a h6 {
      font-weight: 900;
      font-size: 1.25em;
    }

    .category ul .category-item-03 a i {
      font-size: 2.25em;
      line-height: 60px;
      color: #999999;
    }

    .category ul .category-item-03 a span {
      margin-left: auto;
      color: #999999;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
      flex: 0 0 56px;
      padding-left: 10px;
    }

    .category ul .category-item-03 a:hover {
      background: #E7E7E7;
      border-color: #E7E7E7;
    }

      .category ul .category-item-03 a:hover i {
        color: #ffffff;
      }

      .category ul .category-item-03 a:hover span {
        color: #ffffff;
      }

      .category ul .category-item-03 a:hover h6 {
        color: #ffffff;
      }

@media (max-width: 991px) {
  .category ul .category-item-03 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .category ul .category-item-03 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/*-- Category-Item-003 --*/
.category-item-03 {
  background: #ffffff;
  padding: 20px 20px;
  display: block;
  border-radius: 3px;
  text-align: center;
}

  .category-item-03 i {
    font-size: 3.75em;
    line-height: 60px;
    color: #333333;
    display: block;
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .category-item-03 .category-title {
    color: #333333;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .category-item-03:hover i {
    color: #1c58c7;
  }

  .category-item-03:hover .category-title {
    color: #1c58c7;
  }

  .category-item-03.active i {
    color: #1c58c7;
  }

  .category-item-03.active .category-title {
    color: #1c58c7;
  }

@media (max-width: 991px) {
  .category ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

    .category ul .category-item-02 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }

  .section-title .sub-title span {
    margin-right: 0;
    padding: 0;
  }

  .section-title .sub-title.text-end {
    text-align: left !important;
  }

  .section-title {
    margin-bottom: 30px;
  }

    .section-title .sub-title:before {
      display: none;
    }
}

@media (max-width: 575px) {
  .category ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

    .category ul .category-item-02 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
}

.section-title .sub-title {
  display: block;
  position: relative;
}

  .section-title .sub-title:before {
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    top: 18px;
    content: "";
    background: #dddddd;
  }

  .section-title .sub-title span {
    background: #ffffff;
    display: inline-block;
    position: relative;
    margin-right: 50px;
    padding: 0 30px;
    font-size: 1.25em;
    font-weight: 900;
    color: #CC0000;
  }

.text-end {
  text-align: right !important;
}


/*-- Show More --*/
.more {
  background: #CC0000;
  padding: 5px 10px;
  margin-top: 30px;
  border-radius: 25px;
  color: #FFF;
  text-align: right;
  display: inline-block;
  font-size: 1.125em;
  font-weight: 900;
  position: relative;
  right: 0;
  list-style-position: inside;
}

.less {
  background: #CCC;
  padding: 5px 10px;
  margin-top: 30px;
  border-radius: 25px;
  color: #FFF;
  text-align: right;
  display: inline-block;
  font-size: 1.125em;
  font-weight: 900;
}
/*-- Show More --*/

.table-m30 {
  margin-top: 30px;
}

.online-reg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 0px;
}

.group-xl {
  margin-top: 20px;
}

.group-xl {
  text-align: center;
}

@media (min-width: 992px) {
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 11px 35px;
  font-size: 1.1875em;
  line-height: 1;
  border: 2px solid;
  font-weight: 900;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  transition: 250ms all ease-in-out;
}

.button-primary, .button-primary:focus {
  color: #ffffff;
  background-color: #452A25;
  border-color: #452A25;
}

  .button-primary a {
    color: #ffffff;
    background-color: transparent;
    border-color: #452A25;
  }

.group-xl > * {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 30px;
}

.form-reset {
  color: #FFF !important;
  font-family: "微軟正黑體" !important;
  font-size: 1.1875em !important;
  font-weight: 900 !important;
  background: transparent !important;
  line-height: 26px;
  height: 26px;
}

.form-sent {
  color: #FFF !important;
  font-family: "微軟正黑體" !important;
  font-size: 1.1875em !important;
  font-weight: 900 !important;
  background: transparent !important;
  line-height: 26px;
  padding: 0 !important;
  height: 26px;
  box-shadow: 0 1px 4px 0px rgb(0 0 0 / 0%);
}

.form-reset01 {
  color: #FFF !important;
  font-family: "微軟正黑體" !important;
  font-size: 1.1875em !important;
  font-weight: 900 !important;
  background: transparent !important;
  line-height: 26px;
  height: 26px;
  margin: 0 !important;
}

.form-sent01 {
  color: #FFF !important;
  font-family: "微軟正黑體" !important;
  font-size: 1.1875em !important;
  font-weight: 900 !important;
  background: transparent !important;
  padding: 0 !important;
  line-height: 26px;
  height: 26px;
  margin: 0 !important;
  box-shadow: 0 1px 4px 0px rgb(0 0 0 / 0%);
}

/*-- Column --*/

.column {
  display: block;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  padding: 12px;
}

.columns.is-mobile > .column.is-narrow {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: unset;
}

  

@media screen and (max-width: 768px) {
  .column.is-narrow-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: unset;
  }

  .column.is-full-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-one-third-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-mobile {
    margin-left: 50%;
  }

  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }

  .column.is-0-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-mobile {
    margin-left: 0%;
  }

  .column.is-1-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333337%;
  }

  .column.is-offset-1-mobile {
    margin-left: 8.33333337%;
  }

  .column.is-2-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66666674%;
  }

  .column.is-offset-2-mobile {
    margin-left: 16.66666674%;
  }

  /*.column.is-3,
	.column.is-3-tablet {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		width: 100%
	}*/

  .column.is-3-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-mobile {
    margin-left: 25%;
  }

  .column.is-4-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333337%;
  }

  .column.is-offset-4-mobile {
    margin-left: 33.33333337%;
  }

  .column.is-5-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66666674%;
  }

  .column.is-offset-5-mobile {
    margin-left: 41.66666674%;
  }

  .column.is-6-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-mobile {
    margin-left: 50%;
  }

  .column.is-7-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333337%;
  }

  .column.is-offset-7-mobile {
    margin-left: 58.33333337%;
  }

  .column.is-8-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66666674%;
  }

  .column.is-offset-8-mobile {
    margin-left: 66.66666674%;
  }

  .column.is-9-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-mobile {
    margin-left: 75%;
  }

  .column.is-10-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333337%;
  }

  .column.is-offset-10-mobile {
    margin-left: 83.33333337%;
  }

  .column.is-11-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66666674%;
  }

  .column.is-offset-11-mobile {
    margin-left: 91.66666674%;
  }

  .column.is-12-mobile {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}

@media screen and (min-width: 769px), print {
  .column.is-narrow,
  .column.is-narrow-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: unset;
  }

  .column.is-full,
  .column.is-full-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters,
  .column.is-three-quarters-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds,
  .column.is-two-thirds-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%;
  }

  .column.is-half,
  .column.is-half-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-one-third,
  .column.is-one-third-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter,
  .column.is-one-quarter-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth,
  .column.is-one-fifth-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths,
  .column.is-two-fifths-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths,
  .column.is-three-fifths-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths,
  .column.is-four-fifths-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters,
  .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds,
  .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }

  .column.is-offset-half,
  .column.is-offset-half-tablet {
    margin-left: 50%;
  }

  .column.is-offset-one-third,
  .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter,
  .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth,
  .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths,
  .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths,
  .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths,
  .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }

  .column.is-0,
  .column.is-0-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0%;
  }

  .column.is-offset-0,
  .column.is-offset-0-tablet {
    margin-left: 0%;
  }

  .column.is-1,
  .column.is-1-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333337%;
  }

  .column.is-offset-1,
  .column.is-offset-1-tablet {
    margin-left: 8.33333337%;
  }

  .column.is-2,
  .column.is-2-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66666674%;
  }

  .column.is-offset-2,
  .column.is-offset-2-tablet {
    margin-left: 16.66666674%;
  }

  .column.is-3,
  .column.is-3-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
  }

  .column.is-photo {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    /*width: 18rem;
    padding:0.5rem;*/
  }

    .column.is-photo .card-img-top {
      width: 100%;
      height: calc(17rem*0.75);
    }

    .column.is-photo .card-body {
      min-height: 6rem;
      height: 6rem;
    }

    .column.is-photo .card {
      /*height: calc(17rem*0.75 + 6rem);*/
      width: 18rem;
    }

    /*EDM*/
    .column.is-EDM {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

    .column.is-EDM .card-img-top {
      width: 100%;
      height: calc(17rem*1.5);
    }

    .column.is-EDM .card-body {
      min-height: 6rem;
      height: 6rem;
    }

    .column.is-EDM .card {
      /*height: calc(17rem*0.75 + 6rem);*/
      width: 18rem;
    }

 
  .column.is-4,
  .column.is-4-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333337%;
  }

 
  .column.is-5,
  .column.is-5-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66666674%;
  }

  .column.is-offset-5,
  .column.is-offset-5-tablet {
    margin-left: 41.66666674%;
  }

  .column.is-6,
  .column.is-6-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-offset-6,
  .column.is-offset-6-tablet {
    margin-left: 50%;
  }

  .column.is-7,
  .column.is-7-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333337%;
  }

  .column.is-offset-7,
  .column.is-offset-7-tablet {
    margin-left: 58.33333337%;
  }

  .column.is-8,
  .column.is-8-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66666674%;
  }

  .column.is-offset-8,
  .column.is-offset-8-tablet {
    margin-left: 66.66666674%;
  }

  .column.is-9,
  .column.is-9-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-offset-9,
  .column.is-offset-9-tablet {
    margin-left: 75%;
  }

  .column.is-10,
  .column.is-10-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333337%;
  }

  .column.is-offset-10,
  .column.is-offset-10-tablet {
    margin-left: 83.33333337%;
  }

  .column.is-11,
  .column.is-11-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66666674%;
  }

  .column.is-offset-11,
  .column.is-offset-11-tablet {
    margin-left: 91.66666674%;
  }

  .column.is-12,
  .column.is-12-tablet {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-offset-12,
  .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .column.is-narrow-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: unset;
  }

  .column.is-full-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-one-third-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-touch {
    margin-left: 50%;
  }

  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }

  .column.is-0-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-touch {
    margin-left: 0%;
  }

  .column.is-1-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333337%;
  }

  .column.is-offset-1-touch {
    margin-left: 8.33333337%;
  }

  .column.is-2-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66666674%;
  }

  .column.is-offset-2-touch {
    margin-left: 16.66666674%;
  }

  .column.is-3-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-touch {
    margin-left: 25%;
  }

  .column.is-4-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333337%;
  }

  .column.is-offset-4-touch {
    margin-left: 33.33333337%;
  }

  .column.is-5-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66666674%;
  }

  .column.is-offset-5-touch {
    margin-left: 41.66666674%;
  }

  .column.is-6-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-touch {
    margin-left: 50%;
  }

  .column.is-7-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333337%;
  }

  .column.is-offset-7-touch {
    margin-left: 58.33333337%;
  }

  .column.is-8-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66666674%;
  }

  .column.is-offset-8-touch {
    margin-left: 66.66666674%;
  }

  .column.is-9-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-touch {
    margin-left: 75%;
  }

  .column.is-10-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333337%;
  }

  .column.is-offset-10-touch {
    margin-left: 83.33333337%;
  }

  .column.is-11-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66666674%;
  }

  .column.is-offset-11-touch {
    margin-left: 91.66666674%;
  }

  .column.is-12-touch {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: unset;
  }

  .column.is-full-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-one-third-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-desktop {
    margin-left: 50%;
  }

  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }

  .column.is-0-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-desktop {
    margin-left: 0%;
  }

  .column.is-1-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333337%;
  }

  .column.is-offset-1-desktop {
    margin-left: 8.33333337%;
  }

  .column.is-2-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66666674%;
  }

  .column.is-offset-2-desktop {
    margin-left: 16.66666674%;
  }

  .column.is-3-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-desktop {
    margin-left: 25%;
  }

  .column.is-4-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333337%;
  }

  .column.is-offset-4-desktop {
    margin-left: 33.33333337%;
  }

  .column.is-5-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66666674%;
  }

  .column.is-offset-5-desktop {
    margin-left: 41.66666674%;
  }

  .column.is-6-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-desktop {
    margin-left: 50%;
  }

  .column.is-7-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333337%;
  }

  .column.is-offset-7-desktop {
    margin-left: 58.33333337%;
  }

  .column.is-8-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66666674%;
  }

  .column.is-offset-8-desktop {
    margin-left: 66.66666674%;
  }

  .column.is-9-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-desktop {
    margin-left: 75%;
  }

  .column.is-10-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333337%;
  }

  .column.is-offset-10-desktop {
    margin-left: 83.33333337%;
  }

  .column.is-11-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66666674%;
  }

  .column.is-offset-11-desktop {
    margin-left: 91.66666674%;
  }

  .column.is-12-desktop {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1216px) {
  .column.is-narrow-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: unset;
  }

  .column.is-full-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-one-third-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }

  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }

  .column.is-0-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }

  .column.is-1-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333337%;
  }

  .column.is-offset-1-widescreen {
    margin-left: 8.33333337%;
  }

  .column.is-2-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66666674%;
  }

  .column.is-offset-2-widescreen {
    margin-left: 16.66666674%;
  }

  .column.is-3-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-widescreen {
    margin-left: 25%;
  }

  .column.is-4-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333337%;
  }

  .column.is-offset-4-widescreen {
    margin-left: 33.33333337%;
  }

  .column.is-5-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66666674%;
  }

  .column.is-offset-5-widescreen {
    margin-left: 41.66666674%;
  }

  .column.is-6-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-widescreen {
    margin-left: 50%;
  }

  .column.is-7-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333337%;
  }

  .column.is-offset-7-widescreen {
    margin-left: 58.33333337%;
  }

  .column.is-8-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66666674%;
  }

  .column.is-offset-8-widescreen {
    margin-left: 66.66666674%;
  }

  .column.is-9-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-widescreen {
    margin-left: 75%;
  }

  .column.is-10-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333337%;
  }

  .column.is-offset-10-widescreen {
    margin-left: 83.33333337%;
  }

  .column.is-11-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66666674%;
  }

  .column.is-offset-11-widescreen {
    margin-left: 91.66666674%;
  }

  .column.is-12-widescreen {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}

.columns {
  margin-left: -12px;
  margin-right: -12px;
  margin-top: -12px;
}

  .columns:last-child {
    margin-bottom: -12px;
  }

  .columns:not(:last-child) {
    margin-bottom: calc(24px - 12px);
  }

  .columns.is-centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .columns.is-gapless {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }

    .columns.is-gapless > .column {
      margin: 0;
      padding: 0 !important;
    }

    .columns.is-gapless:not(:last-child) {
      margin-bottom: 24px;
    }

    .columns.is-gapless:last-child {
      margin-bottom: 0;
    }

  .columns.is-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .columns.is-multiline {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 5px;
  }

  .columns.is-vcentered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

@media screen and (min-width: 769px), print {
  .columns:not(.is-desktop) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.columns.is-variable {
  --columnGap: 12px;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}

  .columns.is-variable > .column {
    padding-left: var(--columnGap);
    padding-right: var(--columnGap);
  }

  .columns.is-variable.is-0 {
    --columnGap: 0px;
  }

@media screen and (max-width: 768px) {
  .columns.is-variable.is-0-mobile {
    --columnGap: 0px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-0-tablet {
    --columnGap: 0px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-0-tablet-only {
    --columnGap: 0px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-0-touch {
    --columnGap: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-0-desktop {
    --columnGap: 0px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-0-desktop-only {
    --columnGap: 0px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-0-widescreen {
    --columnGap: 0px;
  }
}

.columns.is-variable.is-1 {
  --columnGap: 4px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-1-mobile {
    --columnGap: 4px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-1-tablet {
    --columnGap: 4px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-1-tablet-only {
    --columnGap: 4px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-1-touch {
    --columnGap: 4px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-1-desktop {
    --columnGap: 4px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-1-desktop-only {
    --columnGap: 4px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-1-widescreen {
    --columnGap: 4px;
  }
}

.columns.is-variable.is-2 {
  --columnGap: 8px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-2-mobile {
    --columnGap: 8px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-2-tablet {
    --columnGap: 8px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-2-tablet-only {
    --columnGap: 8px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-2-touch {
    --columnGap: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-2-desktop {
    --columnGap: 8px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-2-desktop-only {
    --columnGap: 8px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-2-widescreen {
    --columnGap: 8px;
  }
}

.columns.is-variable.is-3 {
  --columnGap: 12px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-3-mobile {
    --columnGap: 12px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-3-tablet {
    --columnGap: 12px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-3-tablet-only {
    --columnGap: 12px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-3-touch {
    --columnGap: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-3-desktop {
    --columnGap: 12px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-3-desktop-only {
    --columnGap: 12px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-3-widescreen {
    --columnGap: 12px;
  }
}

.columns.is-variable.is-4 {
  --columnGap: 16px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-4-mobile {
    --columnGap: 16px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-4-tablet {
    --columnGap: 16px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-4-tablet-only {
    --columnGap: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-4-touch {
    --columnGap: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-4-desktop {
    --columnGap: 16px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-4-desktop-only {
    --columnGap: 16px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-4-widescreen {
    --columnGap: 16px;
  }
}

.columns.is-variable.is-5 {
  --columnGap: 20px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-5-mobile {
    --columnGap: 20px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-5-tablet {
    --columnGap: 20px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-5-tablet-only {
    --columnGap: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-5-touch {
    --columnGap: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-5-desktop {
    --columnGap: 20px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-5-desktop-only {
    --columnGap: 20px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-5-widescreen {
    --columnGap: 20px;
  }
}

.columns.is-variable.is-6 {
  --columnGap: 24px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-6-mobile {
    --columnGap: 24px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-6-tablet {
    --columnGap: 24px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-6-tablet-only {
    --columnGap: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-6-touch {
    --columnGap: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-6-desktop {
    --columnGap: 24px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-6-desktop-only {
    --columnGap: 24px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-6-widescreen {
    --columnGap: 24px;
  }
}

.columns.is-variable.is-7 {
  --columnGap: 28px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-7-mobile {
    --columnGap: 28px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-7-tablet {
    --columnGap: 28px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-7-tablet-only {
    --columnGap: 28px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-7-touch {
    --columnGap: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-7-desktop {
    --columnGap: 28px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-7-desktop-only {
    --columnGap: 28px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-7-widescreen {
    --columnGap: 28px;
  }
}

.columns.is-variable.is-8 {
  --columnGap: 32px;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-8-mobile {
    --columnGap: 32px;
  }
}

@media screen and (min-width: 769px), print {
  .columns.is-variable.is-8-tablet {
    --columnGap: 32px;
  }
}

@media screen and (min-width: 769px)and (max-width: 1023px) {
  .columns.is-variable.is-8-tablet-only {
    --columnGap: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .columns.is-variable.is-8-touch {
    --columnGap: 32px;
  }
}

@media screen and (min-width: 1024px) {
  .columns.is-variable.is-8-desktop {
    --columnGap: 32px;
  }
}

@media screen and (min-width: 1024px)and (max-width: 1215px) {
  .columns.is-variable.is-8-desktop-only {
    --columnGap: 32px;
  }
}

@media screen and (min-width: 1216px) {
  .columns.is-variable.is-8-widescreen {
    --columnGap: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .slide-columns {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

    .slide-columns .column {
      min-width: 250px;
    }

  .featured-events .header,
  .featured-categories .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

    .featured-events .header .links,
    .featured-categories .header .links {
      margin-top: 16px;
    }

  .featured-events.is-x4 .categories .category,
  .featured-events.is-x3 .categories .category,
  .featured-categories.is-x4 .categories .category,
  .featured-categories.is-x3 .categories .category {
    width: calc(100% - 16px);
  }

  .featured-events .categories,
  .featured-events .event-grid,
  .featured-categories .categories,
  .featured-categories .event-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

    .featured-events .categories .left-side,
    .featured-events .categories .right-side,
    .featured-events .event-grid .left-side,
    .featured-events .event-grid .right-side,
    .featured-categories .categories .left-side,
    .featured-categories .categories .right-side,
    .featured-categories .event-grid .left-side,
    .featured-categories .event-grid .right-side {
      width: 100%;
    }

      .featured-events .categories .left-side .event,
      .featured-events .categories .right-side .event,
      .featured-events .event-grid .left-side .event,
      .featured-events .event-grid .right-side .event,
      .featured-categories .categories .left-side .event,
      .featured-categories .categories .right-side .event,
      .featured-categories .event-grid .left-side .event,
      .featured-categories .event-grid .right-side .event {
        width: calc(100% - 12px);
        margin-bottom: 24px;
      }

        .featured-events .categories .left-side .event .event-foot,
        .featured-events .categories .right-side .event .event-foot,
        .featured-events .event-grid .left-side .event .event-foot,
        .featured-events .event-grid .right-side .event .event-foot,
        .featured-categories .categories .left-side .event .event-foot,
        .featured-categories .categories .right-side .event .event-foot,
        .featured-categories .event-grid .left-side .event .event-foot,
        .featured-categories .event-grid .right-side .event .event-foot {
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
        }

          .featured-events .categories .left-side .event .event-foot img,
          .featured-events .categories .right-side .event .event-foot img,
          .featured-events .event-grid .left-side .event .event-foot img,
          .featured-events .event-grid .right-side .event .event-foot img,
          .featured-categories .categories .left-side .event .event-foot img,
          .featured-categories .categories .right-side .event .event-foot img,
          .featured-categories .event-grid .left-side .event .event-foot img,
          .featured-categories .event-grid .right-side .event .event-foot img {
            height: 40px;
            width: 40px;
            min-width: 40px;
          }

          .featured-events .categories .left-side .event .event-foot .meta span:first-child,
          .featured-events .categories .right-side .event .event-foot .meta span:first-child,
          .featured-events .event-grid .left-side .event .event-foot .meta span:first-child,
          .featured-events .event-grid .right-side .event .event-foot .meta span:first-child,
          .featured-categories .categories .left-side .event .event-foot .meta span:first-child,
          .featured-categories .categories .right-side .event .event-foot .meta span:first-child,
          .featured-categories .event-grid .left-side .event .event-foot .meta span:first-child,
          .featured-categories .event-grid .right-side .event .event-foot .meta span:first-child {
            font-size: 0.9em;
          }

          .featured-events .categories .left-side .event .event-foot .meta span:nth-child(2),
          .featured-events .categories .right-side .event .event-foot .meta span:nth-child(2),
          .featured-events .event-grid .left-side .event .event-foot .meta span:nth-child(2),
          .featured-events .event-grid .right-side .event .event-foot .meta span:nth-child(2),
          .featured-categories .categories .left-side .event .event-foot .meta span:nth-child(2),
          .featured-categories .categories .right-side .event .event-foot .meta span:nth-child(2),
          .featured-categories .event-grid .left-side .event .event-foot .meta span:nth-child(2),
          .featured-categories .event-grid .right-side .event .event-foot .meta span:nth-child(2) {
            font-size: 1em;
          }

  .featured-hosts .slider-arrows {
    display: none;
  }

  .featured-hosts .featured-hosts-inner .featured-host {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px)and (max-width: 1024px)and (orientation: portrait) {
  .slide-columns {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

    .slide-columns .column {
      min-width: 250px;
    }

  .featured-hosts .slider-arrows {
    left: 12px;
  }
}

@media only screen and (min-width: 768px)and (max-width: 1024px)and (orientation: landscape) {
  .featured-hosts .slider-arrows {
    left: 12px;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
}

.text-end {
  text-align: right !important;
}

.card-img, .card-img-top, .card-img-bottom {
  width: 100%;
}

.card-img, .card-img-top {
  border-top-left-radius: calc(4px - 1px);
  border-top-right-radius: calc(4px - 1px);
}

.card-body {
  flex: 1 1 auto;
  padding: 16px 16px;
  min-height: 150px;
}

.card-title {
  margin-bottom: 8px;
}

.card-body p {
  line-height: 1.8;
}

/*-- Column --*/

/*-- Media --*/


.o-video {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%; /* 9 / 16 * 100 */
}

  .o-video > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
  }

/*-- Media --*/

.table_sec {
  margin-top: 15px;
}

/*-- QA 常見問與答 --*/
.accordion-box {
  margin-top: 30px;
}
/*
.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    transition: all 500ms ease;
}
*/

.content_block_14 .content-box .accordion-box .block {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  padding: 20px 60px 20px 30px;
  cursor: pointer;
  transition: all 500ms ease;
}

.content_block_14 .content-box .accordion-box .block .acc-btn {
  position: relative;
  padding: 0px 0px 0px 76px;
}

  .content_block_14 .content-box .accordion-box .block .acc-btn .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    font-size: 1.5em;
    background: #ffffff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
    transition: all 500ms ease;
  }

  .content_block_14 .content-box .accordion-box .block .acc-btn .icon-box {
    color: #f5720a;
  }

  .content_block_14 .content-box .accordion-box .block .acc-btn.active .icon-box {
    color: #ffffff;
  }

  .content_block_14 .content-box .accordion-box .block .acc-btn.active .icon-box {
    background: #f5720a;
  }

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  display: inline-block;
  top: 25px;
  right: 26px;
  font-size: 1.5em;
  cursor: pointer;
  color: #111;
  transform: rotate(-90deg);
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
  transform: rotate(0deg);
  color: #ffffff;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 23px 20px 22px 30px;
}

  .accordion-box .block .acc-content.current {
    display: block;
  }

.accordion-box .block .acc-btn.active .icon:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  opacity: 1;
  z-index: 1;
  color: #ffffff;
  font-size: 1.125em;
  content: "\f146";
  font-family: "FontAwesome";
  text-align: center;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

/*-- QA 常見問與答 --*/

.news-details em {
  font-size: 1.125em;
  color: #CC0000 !important;
  font-style: normal;
}

/*-- Progress Bar --*/

progress {
  opacity: 0;
}

.progress-element {
  width: 100%;
  margin: 0 0 10px;
}

.progress-container {
  position: relative;
  background: #eee;
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
}

  .progress-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: turquoise;
  }

.progress-element--html .progress-container::before {
  animation: progress-html 1s ease-in forwards;
}

.progress-element--css .progress-container::before {
  animation: progress-css 1s ease-in forwards;
}

.progress-element--javascript .progress-container::before {
  animation: progress-javascript 1s ease-in forwards;
}

.progress-label {
  position: relative;
  font-size: 0.75em !important;
  line-height: 30px;
  text-align: justify;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.progress-label::after {
  counter-reset: num var(--num);
  content: counter(num) "%";
  position: absolute;
  top: 0;
  right: 0;
}

.progress-element--html .progress-label::after {
  animation: progress-text-html 1s ease-in forwards;
}

.progress-element--css .progress-label::after {
  animation: progress-text-css 1s ease-in forwards;
}

.progress-element--javascript .progress-label::after {
  animation: progress-text-javascript 1s ease-in forwards;
}

@keyframes progress-html {
  to {
    width: 95%;
  }
}

@keyframes progress-css {
  to {
    width: 80%;
  }
}

@keyframes progress-javascript {
  to {
    width: 65%;
  }
}

@keyframes progress-text-html {
  to {
    --num: 95;
  }
}

@keyframes progress-text-css {
  to {
    --num: 80;
  }
}

@keyframes progress-text-javascript {
  to {
    --num: 65;
  }
}

/*-- Progress Bar --*/


/*-- sitemap --*/

.services-row .sitemap-row .colm {
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  float: left;
}

.services-row .sitemap-row .colm1 {
  width: 8.33%;
}

.services-row .sitemap-row .colm2 {
  width: 16.66%;
}

.services-row .sitemap-row .colm3 {
  width: 25%;
}

.services-row .sitemap-row .colm4 {
  width: 33.33%;
}

.services-row .sitemap-row .colm5 {
  width: 41.66%;
}

.services-row .sitemap-row .colm6 {
  width: 50%;
}

.services-row .sitemap-row .colm7 {
  width: 58.33%;
}

.services-row .sitemap-row .colm8 {
  width: 66.66%;
}

.services-row .sitemap-row .colm9 {
  width: 75%;
}

.services-row .sitemap-row .colm10 {
  width: 83.33%;
}

.services-row .sitemap-row .colm11 {
  width: 91.66%;
}

.services-row .sitemap-row .colm12 {
  width: 100%;
}

.services-row .sitemap-row .colm1-5 {
  width: 20%;
}

.services-row .sitemap-row .colm1-8 {
  width: 12.5%;
}

@media (max-width: 800px) {
  .services-row .sitemap-row .colm {
    width: 100%;
    float: none;
    padding: 0;
  }
}

.sitemap-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 15px;
  margin-bottom: 15px;
}

  .sitemap-row:before, .sitemap-row:after {
    display: table;
    content: "";
    line-height: 0;
  }

.news-details .services-row .sitemap-row ul li {
  position: relative;
  padding-left: 0px;
  font-size: 1em;
  line-height: 24px;
  font-weight: 700;
  font-family: '微軟正黑體', sans-serif;
  margin-bottom: 8px;
  margin-right: 8px;
  text-align: left;
}

  .news-details .services-row .sitemap-row ul li ul li {
    position: relative;
    padding-left: 0px;
    font-size: 1em;
    line-height: 24px;
    font-weight: 700;
    font-family: '微軟正黑體', sans-serif;
    margin-bottom: 8px;
    margin-right: 0px;
    text-align: left;
  }

  .news-details .services-row .sitemap-row ul li a {
    position: relative;
    display: block;
    color: #6c6c6c;
    font-size: 1em;
  }

  .news-details .services-row .sitemap-row ul li i {
    margin-left: 12px;
    font-size: 1em;
  }

.dropdown {
  margin: 0px;
}

.parent {
  display: block;
}

  .parent > a {
    display: block;
    background-color: #CCC;
    box-sizing: border-box;
    padding: 7px 30px;
  }

  .parent > ul > li > a {
    display: block;
    background-color: #f1f1f1;
    box-sizing: border-box;
    padding: 7px 20px;
  }

/*for icon rotation*/
.dropdown .parent a span {
  display: inline-block;
  transition: 0.4s;
}

.dropdown .parent:hover > a span {
  transform: rotate(-90deg);
}


.childs {
  background-color: transparent;
}

  .childs li {
    display: block;
    border-bottom: 1px solid #f1f1f1;
  }

    .childs li a {
      display: block;
      box-sizing: border-box;
      padding: 7px 20px;
    }

/*main effect*/
.dropdown-1 .childs {
  display: none;
}

.dropdown-1 .parent:hover > .childs {
  display: block;
}

.dropdown-2 .childs {
  height: 0px;
  transition: 0.4s;
  overflow: hidden;
}

.dropdown-2 .parent:hover .childs {
  height: 100px;
  transition: 0.4s;
}


.dropdown-3 .childs {
  width: 0px;
  height: 0px;
  transition: 0.4s;
  overflow: hidden;
}

.dropdown-3 .parent:hover .childs {
  width: 100%;
  height: auto;
}


.dropdown-4 .parent {
  position: relative;
  overflow: hidden;
}

.dropdown-4 .childs {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: -400%;
  left: 0;
  transition: 0.1s;
}

.dropdown-4 .parent:hover {
  overflow: visible;
}

  .dropdown-4 .parent:hover .childs {
    top: 100%;
  }


.dropdown-5 .parent {
  position: relative;
  overflow: hidden;
}

.dropdown-5 .childs {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 400%; /*just changed*/
  left: 0;
  transition: 0.1s;
}

.dropdown-5 .parent:hover {
  overflow: visible;
}

  .dropdown-5 .parent:hover .childs {
    top: 100%;
  }


.dropdown-6 .parent {
  position: relative;
  overflow: hidden;
}

.dropdown-6 .childs {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 100%;
  right: 200px; /*just changed*/
  transition: 0.4s;
}

.dropdown-6 .parent:hover {
  overflow: visible;
}

  .dropdown-6 .parent:hover .childs {
    right: 0px; /*just changed*/
    transform: rotate(360deg); /*just changed*/
  }



.dropdown-7 .parent {
  position: relative;
  overflow: hidden;
}

.dropdown-7 .childs {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 100%;
  left: -100px; /*just changed*/
  transition: 0.4s;
  transform: scale(0); /*just changed*/
}

.dropdown-7 .parent:hover {
  overflow: visible;
}

  .dropdown-7 .parent:hover .childs {
    left: 0px; /*just changed*/
    transform: scale(1); /*just changed*/
  }


.dropdown-8 .parent {
  position: relative;
}

.dropdown-8 .childs {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 100%;
  left: 0; /*just changed*/
  transition: 0.4s;
  transform: scale(0); /*just changed*/
}

.dropdown-8 .parent:hover .childs {
  transform: scale(1); /*just changed*/
}


.dropdown-9 .parent {
  position: relative;
}

.dropdown-9 .childs {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 100%;
  right: -100px; /*just changed*/
  transition: 0.4s;
  transform: scale(0);
}

.dropdown-9 .parent:hover .childs {
  right: 0px; /*just changed*/
  transform: scale(1);
}

/*-- sitemap --*/


/*-- 主選單 --*/

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

  .sf-menu li {
    position: relative;
  }

  .sf-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
  }
  /*
.sf-menu > li {
	float: left;
}
*/

  .sf-menu li:hover > ul,
  .sf-menu li.sfHover > ul {
    display: block;
  }

  .sf-menu a {
    display: block;
    position: relative;
  }

  .sf-menu ul ul {
    top: 0;
    left: 100%;
  }


/*** DEMO SKIN ***/
.sf-menu {
  margin-bottom: 0em;
  border-left: 12px solid #4e7a9a;
  box-shadow: 0px 6px 8px 6px rgb(0 0 0 / 15%);
  background: #FFF;
  padding: 10px 0 10px 20px;
  display: flex;
}

.mobile-nav__content .sf-menu li a button {
  width: 30px;
  height: 30px;
  background-color: var(--unique-base);
  border: none;
  outline: none;
  color: #fff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.mobile-nav__content .sf-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #FFF;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.sf-menu ul {
  box-shadow: 2px 2px 6px rgb(0 0 0 / 20%);
  min-width: 290px;
  width: auto;
}

.sf-menu a {
  padding: 10px 10px;
  text-decoration: none;
  zoom: 1; /* IE7 */
  font-size: 1.18em;
  font-weight: bold;
}

.sf-menu a {
  color: #000;
}

.sf-menu li {
  background: #FFF;
  white-space: nowrap; /* no need for Supersubs plugin */
  *white-space: normal; /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background .2s;
  transition: background .2s;
}

.sf-menu ul li {
  background: #FFF;
}

.sf-menu ul ul li {
  background: #9AAEDB;
}

.sf-menu li:hover {
  background: #FFF;
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}

.sf-menu li ul li:hover,
.sf-menu li ul li a:hover {
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
  background-color: var(--unique-secondary);
  color: #fff;
}



.main-menu .sf-menu li ul li, .stricky-header .sf-menu li ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 375px)and (max-width: 1573px) {
  .sf-menu {
    display: unset;
    border-left: 0px solid #4e7a9a;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 15%);
    background: transparent;
  }

    .sf-menu ul {
      box-shadow: 2px 2px 6px rgb(0 0 0 / 20%);
      min-width: 240px;
      width: 270px;
    }
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
  padding-right: 1.2em;
}
  /* styling for both css and generated arrows */
  .sf-arrows .sf-with-ul:after {
    position: absolute;
    top: 25%;
    margin-top: -3px;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-left: 8px;
  }

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: white; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
  border-left-color: rgba(255,255,255,.5);
}

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: white;
}

/*-- Add --*/
.menu-list {
  border-left: 12px solid #4e7a9a;
  box-shadow: 0px 6px 8px 6px rgb(0 0 0 / 15%);
  background: #FFF;
  padding: 10px 0 10px 20px;
}

.mobile-nav__content .sf-menu, .mobile-nav__content .sf-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

  .mobile-nav__content .sf-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #CCC;
  }

/*-- 主選單 --*/

/*-- 方塊磚 --*/

.ace {
  color: transparent;
  font-size: 0.5em;
  margin-right: 5px;
}

/*-- Main Menu --*/

@media (min-width: 375px)and (max-width: 735px) {
  .table .t-left {
    width: 35% !important;
    text-align: justify;
  }
}



/*-- Main Menu --*/

/*-- 最新消息內頁欄位自動填滿 --*/


.container, .container.dir-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}

  .container, .container.dir-row, .container.dir-row-reverse {
    -webkit-box-orient: horizontal;
  }

.col-1.grow-1,
.col-10.grow-1,
.col-11.grow-1,
.col-12.grow-1,
.col-2.grow-1,
.col-3.grow-1,
.col-4.grow-1,
.col-5.grow-1,
.col-6.grow-1,
.col-7.grow-1,
.col-8.grow-1,
.col-9.grow-1,
.col-auto.grow-1,
.col-lg-1.grow-1,
.col-lg-10.grow-1,
.col-lg-11.grow-1,
.col-lg-12.grow-1,
.col-lg-2.grow-1,
.col-lg-3.grow-1,
.col-lg-4.grow-1,
.col-lg-5.grow-1,
.col-lg-6.grow-1,
.col-lg-7.grow-1,
.col-lg-8.grow-1,
.col-lg-9.grow-1,
.col-md-1.grow-1,
.col-md-10.grow-1,
.col-md-11.grow-1,
.col-md-12.grow-1,
.col-md-2.grow-1,
.col-md-3.grow-1,
.col-md-4.grow-1,
.col-md-5.grow-1,
.col-md-6.grow-1,
.col-md-7.grow-1,
.col-md-8.grow-1,
.col-md-9.grow-1,
.col-sm-1.grow-1,
.col-sm-10.grow-1,
.col-sm-11.grow-1,
.col-sm-12.grow-1,
.col-sm-2.grow-1,
.col-sm-3.grow-1,
.col-sm-4.grow-1,
.col-sm-5.grow-1,
.col-sm-6.grow-1,
.col-sm-7.grow-1,
.col-sm-8.grow-1,
.col-sm-9.grow-1,
.col-xs-1.grow-1,
.col-xs-10.grow-1,
.col-xs-11.grow-1,
.col-xs-12.grow-1,
.col-xs-2.grow-1,
.col-xs-3.grow-1,
.col-xs-4.grow-1,
.col-xs-5.grow-1,
.col-xs-6.grow-1,
.col-xs-7.grow-1,
.col-xs-8.grow-1,
.col-xs-9.grow-1,
.col.grow-1 {
  max-width: none;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.col-auto {
  padding-right: 0px;
  padding-left: 0px;
}


.container.gutters > .col, .container.gutters > .col-1, .container.gutters > .col-10,
.container.gutters > .col-11, .container.gutters > .col-12, .container.gutters > .col-2,
.container.gutters > .col-3, .container.gutters > .col-4, .container.gutters > .col-5,
.container.gutters > .col-6, .container.gutters > .col-7, .container.gutters > .col-8,
.container.gutters > .col-9, .container.gutters > .col-auto, .container.gutters > .col-lg-1,
.container.gutters > .col-lg-10, .container.gutters > .col-lg-11, .container.gutters > .col-lg-12,
.container.gutters > .col-lg-2, .container.gutters > .col-lg-3, .container.gutters > .col-lg-4,
.container.gutters > .col-lg-5, .container.gutters > .col-lg-6, .container.gutters > .col-lg-7,
.container.gutters > .col-lg-8, .container.gutters > .col-lg-9, .container.gutters > .col-md-1,
.container.gutters > .col-md-10, .container.gutters > .col-md-11, .container.gutters > .col-md-12,
.container.gutters > .col-md-2, .container.gutters > .col-md-3, .container.gutters > .col-md-4,
.container.gutters > .col-md-5, .container.gutters > .col-md-6, .container.gutters > .col-md-7,
.container.gutters > .col-md-8, .container.gutters > .col-md-9, .container.gutters > .col-sm-1,
.container.gutters > .col-sm-10, .container.gutters > .col-sm-11, .container.gutters > .col-sm-12,
.container.gutters > .col-sm-2, .container.gutters > .col-sm-3, .container.gutters > .col-sm-4,
.container.gutters > .col-sm-5, .container.gutters > .col-sm-6, .container.gutters > .col-sm-7,
.container.gutters > .col-sm-8, .container.gutters > .col-sm-9, .container.gutters > .col-xs-1,
.container.gutters > .col-xs-10, .container.gutters > .col-xs-11, .container.gutters > .col-xs-12,
.container.gutters > .col-xs-2, .container.gutters > .col-xs-3, .container.gutters > .col-xs-4,
.container.gutters > .col-xs-5, .container.gutters > .col-xs-6, .container.gutters > .col-xs-7,
.container.gutters > .col-xs-8, .container.gutters > .col-xs-9 {
  margin: 0 0px;
}

.container > .col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 50%;
}

.news-container {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: auto;
}

.container.justify-space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding-right: 0px;
  padding-left: 0px;
}

@media screen and (min-width: 375px)and (max-width: 1024px) {
  .news-details .services-row .outer-container {
    position: relative;
    padding: 0px 0px 0px 0px;
    color: #ffffff;
  }
}

.big-col {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.col-auto img {
  max-width: 470px;
  width: auto;
  min-width: 240px;
  margin-right: 10px;
}

.grow-1 {
  background: #f8f8f8;
  padding: 10px 27px;
}

.link-col {
  margin-left: 0px;
  padding-top: 0px;
  padding-left: 0px;
}

@media (min-width: 960px) {
  .news-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0px;
    padding-top: 0px;
    padding-left: 0px;
  }
}

@media screen and (min-width: 375px)and (max-width: 1024px) {
  .link-col {
    padding-top: 0px;
  }

  .col-auto img {
    max-width: 334px;
    width: auto;
    min-width: 240px;
    margin-bottom: 15px;
  }
}

.items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-top: -10px;
}

  .items .item {
    flex: 1 0 calc(45% - 10px);
    box-sizing: border-box;
    background: #e0ddd5;
    color: #171e42;
    padding: 10px;
    margin-left: 10px;
    margin-top: 10px;
  }

    .items .item img {
      width: auto;
      max-width: 100%;
    }

@media screen and (min-width: 375px)and (max-width: 1573px) {
  .items .item {
    flex: 1 0 calc(100% - 10px);
  }
}

@media screen and (min-width: 375px)and (max-width: 991px) {
  .news-details .other-links .social-links-one {
    margin-top: 0px;
  }

  .news-details .other-links .useful-links-one {
    margin-top: 0px;
  }
}

@media screen and (min-width: 812px)and (max-width: 1919px) {
  .news-details .content-side {
    margin-top: 0px;
  }
}

@media screen and (max-width: 991px) {
  .news-details .content-side {
    min-height: unset;
    margin-bottom: 0px;
  }

  .sidebar-side .mt-100 {
    margin-top: 0px;
  }

  .sidebar-side {
    margin-bottom: 0px;
  }
}


/*-- 最新消息內頁欄位自動填滿 --*/



@media screen and (min-width: 375px)and (max-width: 767px) {
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* 20211225 */
.header-info__box a {
  word-break: keep-all;
}

 

/* 20211229 */
.logo-box h1 {
  font-size:1rem;
}

.logo_tw, .logo_dep, .logo_en {
  font-size: 1.1em;
  display: flex;
  margin: 5px 0px;
}

  .logo_tw img, .logo_dep img, .logo_en img {
    height: 3.5em;
    width: auto;
  }

  .logo_tw div, .logo_dep div, .logo_en div {
    margin-bottom: auto;
    margin-top: auto;
  }

  .logo_tw .title {
    font-size: 1.2em;
    font-weight: 900;
    color: white;
  }

  .logo_tw span {
    font-size: 0.6em;
    font-weight: 400;
    display: block;
    color: white;
    word-break: break-word;
  }

  .logo_dep .title {
    font-size: 1.2em;
    font-weight: 900;
    color: white;
  }

  .logo_dep span {
    font-size: 1em;
    color: #33c101;
    margin-left: 0.5em;
  }

  .logo_en .title {
    font-size: 1em;
    font-weight: 900;
    color: white;
    word-break: break-word;
  }

.logo-box-sticky .logo_tw .title,
.logo-box-sticky .logo_tw span,
.logo-box-sticky .logo_dep .title,
.logo-box-sticky .logo_en .title {
  color: black;
}

.logo-box-sticky {
  margin-top: auto;
  margin-bottom: auto;
}

  .logo-box-sticky .logo_tw,
  .logo-box-sticky .logo_dep,
  .logo-box-sticky .logo_en {
    font-size: 0.9em;
  }

.footer-widget .logo_tw,
.footer-widget .logo_dep,
.footer-widget .logo_en {
  font-size: 1em;
}

.Search .logo_tw {
  font-size: 0.6em;
}

.Search .logo_dep {
  font-size: 0.8em;
}

.Search .logo_en {
  font-size: 0.8em;
}

@media screen and (max-width:1099px) {
  .navbar-header {
    float: left;
    display: block;
    text-align: center;
  }

  .main-header-six .header-upper .logo-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0 8px 0;
  }

  .m-menu {
    display: block;
  }
}

@media screen and (min-width:1100px) {
  .m-menu {
    display: none !important;
  }
}

.ttm-tab-style-01.ttm-tabs {
  margin-top: 2em;
}

.ttm-tabs ul.tabs-3 li.active {
  width: 30%;
}

.ttm-tabs ul.tabs-4 li.active {
  width: 25%;
}

.about-two__content {
  font-size: 1em;
}

.ttm-tabs ttm-tab-style-01 {
  font-size: 1em;
}

#service {
  font-size: 1em;
}

.footer-widget {
  font-size: 1em;
}

.main-header-six .header-info__box span {
  margin: 0;
  font-family: var(--unique-font);
  color: #fcad30;
  font-weight: 900;
  /* font-size: 1.18em; 20211227 */
  font-size: 1em; /* 20211227 */
  line-height: 1;
}

.main-header-six .header-info__box p {
  margin: 0;
  color: #f1f1f1;
  font-size: 0.75em;
  font-weight: 600;
  /*line-height: 1; 20211225 */
  line-height: 1.3em; /* 20211225 */
  margin-top: 7px;
}

/*-- 2021-12-30 --*/

.date-position {
  width: 5em;
  height: 5em;
  margin: 0px 10px 0 3px;
  float: left;
}

.topic-content {
  padding: 0px 10px 10px 10px;
  text-align: left;
}

  .topic-content h3 {
    margin-top: 0.3em !important;
  }

    .topic-content h3 a {
      /*font-size: 1.5em;*/
      margin-bottom: 15px;
      margin-top: 0px;
      text-align: justify;
      float: none;
      font-weight: 700;
      /*padding: 0px 10px 10px 10px;*/
      display: inline;
    }

      .topic-content h3 a:hover {
        color: #000;
      }


/*-- 2021-12-30 --*/
