/* ------------------------------------------------
  Project:   Cove - Architecture & Interior WordPress Theme
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Pre Loader
  4. Scroll to Top
  5. Header
  6. Footer
  7. Page Title

  new style

 
/* ------------------------
    General
------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --themeht-primary-color: #D8F366;
  --themeht-text-color: #212529;
  --themeht-body-color: #212529;
  --themeht-white-color: #FFFFFF;
  --themeht-rgba-color: rgba(255, 255, 255, 0.7);
  --themeht-bg-dark-color: #0F1915;
  --themeht-bg-light-color: #F7F7F7;
  --themeht-border-light-color: #E2E2E2;
  --themeht-border-dark-color: #1C1C1C;
  --themeht-typography-body-font-family: 'Poppins', 'Noto Sans TC', 'Noto Sans JP', sans-serif;
  --themeht-typography-secondary-font-family: 'Michroma', 'Noto Sans TC', 'Noto Sans JP', sans-serif;
  --logo-desktop-height: 70px;
  --logo-tablet-height: 60px;
  --logo-mobile-height: 50px;
  --loader-font-size: 5em;

  --dy-green: #007C85;
  --dy-green-rgb: 0, 124, 133;
  --dy-gray1: #343A40;
  --dy-gray2: #859AAA;
}

body {
  scroll-behavior: smooth;
  font-family: var(--themeht-typography-body-font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 27px;
  color: var(--themeht-body-color);
  overflow-x: hidden;
  word-break: break-word;
}

@media (min-width: 1600px) {
  .container-footer {
    max-width: 1500px;
  }
}

.page-wrapper {
  overflow-x: hidden;
}

a,
a:focus {
  text-decoration: none !important;
}

a,
a:visited {
  text-decoration: none;
  color: var(--themeht-text-color);
}

a:focus,
a:hover {
  color: var(--themeht-text-color);
  text-decoration: none !important;
}

a,
button,
input {
  outline: medium none !important;
}

img {
  width: 100%;
  height: auto;
}

*::-moz-selection {
  background: var(--dy-green);
  color: #FFFFFF;
  text-shadow: none;
}

::-moz-selection {
  background: var(--dy-green);
  color: #FFFFFF;
  text-shadow: none;
}

::selection {
  background: var(--dy-green);
  color: #FFFFFF;
  text-shadow: none;
}


/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 20px;
  color: var(--themeht-text-color);
  font-family: var(--themeht-typography-secondary-font-family);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 80px;
  font-style: normal;
  line-height: 95px;
  font-weight: 400;
}

h2 {
  font-size: 48px;
  font-style: normal;
  line-height: normal;
  font-weight: 400;
  position: relative;
}

h3 {
  font-size: 26px;
  font-style: normal;
  line-height: 41px;
  font-weight: 400;
}

h4 {
  font-size: 24px;
  font-style: normal;
  line-height: 39px;
  font-weight: 400;
}

h5 {
  font-size: 22px;
  font-style: normal;
  line-height: 37px;
  font-weight: 400;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 35px;
  font-weight: 400;
}

ul {
  margin-left: 0;
  padding-left: 24px;
}

.custom-sec-padding {
  padding-top: 140px;
  padding-bottom: 140px;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}



/* ------------------------
    Text color
------------------------*/
.text-black {
  color: var(--themeht-text-color) !important;
}

.text-theme {
  color: var(--themeht-primary-color) !important;
}

.text-grey {
  color: var(--themeht-body-color);
}

.text-rgba {
  color: var(--themeht-rgba-color);
}


/* ------------------------
    Background color
------------------------*/
.white-bg {
  background-color: var(--themeht-white-color);
}

.primary-bg {
  background-color: var(--themeht-primary-color);
}

.light-bg {
  background-color: var(--themeht-bg-light-color);
}

.dark-bg {
  background-color: var(--themeht-bg-dark-color);
}


.border-light {
  border-color: var(--themeht-border-light-color) !important;
}

.border-dark {
  border-color: var(--themeht-border-dark-color) !important;
}


/* ------------------------
    Cursor
------------------------*/
#magic-cursor {
  position: absolute;
  display: none;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
}

body.tt-magic-cursor #magic-cursor {
  display: block
}

#ball {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--themeht-text-color);
  pointer-events: none;
  border-style: solid;
  border-radius: 50%;
  border-color: var(--themeht-white-color);
  background: var(--themeht-bg-dark-color);
}

#ball.ball-view {
  background-color: var(--themeht-bg-dark-color);
  font-size: 18px;
  font-weight: 400;
  color: var(--themeht-primary-color);
  line-height: 24px;
  text-align: center;
  width: 150px !important;
  height: 150px !important;
  padding-top: 40px;
}

#ball.ball-view::before {
  content: "\f11a";
  position: absolute;
  top: 25px;
  font-size: 50px;
  line-height: 1;
  font-family: flaticon_mycollection !important;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px var(--themeht-primary-color);
  color: transparent;
}

#ball .ball-view-inner {
  padding: 0 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

#ball.ball-drag-slider {
  background-color: var(--themeht-bg-dark-color);
  font-size: 18px;
  color: var(--themeht-white-color);
  line-height: 1;
  width: 70px !important;
  height: 70px !important;
}

#ball.ball-drag-slider::before {
  content: "\F284";
  position: absolute;
  top: 50%;
  left: 15px;
  font-family: bootstrap-icons !important;
  display: inline-block;
  transform: translateY(-50%);
}

#ball.ball-drag-slider::after {
  content: "\F285";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: bootstrap-icons !important;
  display: inline-block;
  transform: translateY(-50%);
}

#ball.ball-icon {
  background-color: var(--themeht-bg-dark-color);
  font-size: 18px;
  font-weight: 400;
  color: var(--themeht-primary-color);
  line-height: 24px;
  text-align: center;
  width: 100px !important;
  height: 100px !important;
  padding-top: 40px;
}

#ball.ball-icon::before {
  content: "\f402";
  position: absolute;
  top: 25px;
  font-size: 40px;
  line-height: 50px;
  font-family: bootstrap-icons !important;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px var(--themeht-primary-color);
  color: transparent;
}

#ball.ball-close-enabled {
  opacity: 1 !important
}

#ball .ball-close {
  position: absolute;
  padding: 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--themeht-text-color);
  line-height: 1;
  text-align: center
}

#ball.magnetic-active {
  opacity: 0;
}

.magnetic-wrap {
  display: inline-block;
}


/* ------------------------
    Banner Slider
------------------------*/
[data-bg-img] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-slider {
  background-color: var(--themeht-bg-dark-color);
  aspect-ratio: 1920 / 1080;
}

.mobile-swiper.banner-slider {
  aspect-ratio: 767 / 800;
}

.banner-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-slider .slider-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 70%;
  height: 100%;
  right: 0;
}

.banner-content {
  width: 100%;
  /* padding: 200px 0; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.slider-img::before {
  position: absolute;
  content: '';
  background-color: var(--themeht-bg-dark-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.banner-text {
  position: relative;
}

.banner-content .slider-num {
  font-size: 220px;
  line-height: 220px;
  color: var(--themeht-white-color);
  opacity: 0.02;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.banner-content h3 {
  font-size: 84px;
  line-height: 1.2;
  color: var(--themeht-white-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.banner-content p {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #F8F9FA;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
  top: inherit;
  bottom: 45px;
  width: 80px;
  height: 40px;
  background-image: none !important;
  border-radius: 0;
  line-height: inherit;
  background: var(--themeht-white-color);
  border: none;
}

.banner-slider .swiper-button-prev {
  left: inherit;
  right: 200px;
}

.banner-slider .swiper-button-next {
  right: 50px;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
  background: var(--themeht-bg-dark-color);
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
  font-size: 30px;
  color: var(--themeht-text-color);
  line-height: 40px !important;
}

.banner-slider .swiper-button-next:hover:after,
.banner-slider .swiper-button-prev:hover:after {
  color: var(--themeht-white-color);
}

#banner-pagination {
  position: absolute !important;
  right: 150px;
  left: inherit;
  margin: 0;
  text-align: right;
  width: auto;
  bottom: 50px;
  font-size: 18px;
  color: var(--themeht-white-color);
}

.banner-slider .slider-num {
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.banner-slider h3 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider p {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider .btn-box {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider .swiper-slide-active .slider-num {
  opacity: 0.02;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 1000ms;
}

.banner-slider .swiper-slide-active h3 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1500ms;
}

.banner-slider .swiper-slide-active p {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 2000ms;
}

.banner-slider .rounded-button {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-slider .swiper-slide-active .rounded-button,
.banner-slider .swiper-slide-active .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 2500ms;
}

/* .banner-slider p {
  max-width: 60%;
  margin-bottom: 0;
} */

/* .banner-content video,
.banner-content img{
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
} */

.banner-lg-text {
  opacity: 0.1;
  position: absolute !important;
  top: calc(100% / 2);
  left: calc(100% / -2);
  width: 100%;
  transform: rotate(90deg);
  margin-left: 100px;
  text-align: center;
}

.banner-lg-text span {
  font-size: 220px;
  line-height: 1;
  text-transform: uppercase;
  color: transparent;
  font-weight: 700;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--themeht-white-color);
}

.banner-slider .banner-lg-text {
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-slider .swiper-slide-active .banner-lg-text {
  opacity: 0.3;
  transition-delay: 2000ms;
}

.banner-slider-two .banner-content {
  padding: 150px 0;
}

.banner-slider-two .slider-img {
  width: 100%;
}

.banner-slider-two p {
  max-width: 70%;
}

.banner-slider .themeht-btn+.themeht-btn {
  margin-left: 30px;
}

.banner-one {
  padding: 120px 0 450px;
}

.banner-img-sec {
  margin-top: -350px
}

.banner-img1 {
  margin: 80px -100px 0px 0px;
  position: relative;
  z-index: 9
}

.banner-img3 {
  margin: 0px 0px 0px -100px;
  position: relative;
  z-index: 9
}


/* ------------------------
    List Icon
------------------------*/
.list-icon li {
  position: relative;
  color: var(--themeht-text-color);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.list-icon li i {
  color: var(--themeht-text-color);
  font-size: 19px;
  animation: rotate 5s ease-in-out infinite;
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-right: 5px;
}


.p-mb-0 p {
  margin-bottom: 0;
}

.contact-page .elementor-widget .elementor-icon-list-item {
  margin-bottom: 30px !important;
}

.contact-page .elementor-widget .elementor-icon-list-icon i {
  font-size: 24px !important;
  color: var(--themeht-text-color) !important;
}

.contact-page .elementor-widget-icon-list .elementor-icon-list-text {
  font-family: var(--themeht-typography-body-font-family) !important;
  font-weight: 400 !important;
  margin-left: 10px;
  color: var(--themeht-text-color) !important;
  font-size: 20px;
}

.contact-page .elementor-widget-icon-list a:hover .elementor-icon-list-text {
  color: var(--themeht-text-color) !important;
}

.map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 500px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
  border: none;
}

.page-link {
  color: var(--themeht-text-color);
  background-color: transparent;
  border: 1px solid var(--themeht-border-light-color);
  border-radius: 0 !important;
}

.page-link:hover,
.page-link:focus {
  border-color: var(--dy-gray2);
  background-color: var(--dy-green);
  color: #FFF;
  box-shadow: none
}


/* ------------------------
    Countdown
------------------------*/
.countdown {
  width: 100%;
}

.countdown>li {
  list-style-type: none;
  text-align: center;
}

.countdown>li span {
  font-size: 100px;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  color: var(--themeht-primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--themeht-primary-color);
}

.countdown>li p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
  display: block;
  margin-bottom: 0;
  color: var(--themeht-white-color);
}


/* ------------------------
 Form Section
------------------------*/
input[type="submit"].subscribe-btn,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-search__button {
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
  border: 1px solid var(--themeht-primary-color);
  padding: 15px 30px;
  height: 100%;
  border-radius: 0;
  line-height: inherit;
  z-index: 99;
  position: relative;
  font-size: 18px;
}


input[type="submit"].subscribe-btn:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wp-block-search__button:hover {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-primary-color);
  border-color: var(--themeht-primary-color)
}

.comment-form .form-submit input[type=submit],
.post-comment .form-submit input[type="submit"],
.wp-block-search__button,
.post-password-form input[type="submit"] {
  font-size: 18px;
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
  border: 1px solid var(--themeht-primary-color);
  padding: 15px 30px;
  height: 100%;
  border-radius: 0;
  line-height: inherit;
}

.comment-form .form-submit input[type=submit]:hover,
.post-comment .form-submit input[type="submit"]:hover,
.wp-block-search__button:hover,
.post-password-form input[type="submit"]:hover {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-primary-color);
  border-color: var(--themeht-primary-color);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  border: none;
  border-bottom: 1px solid var(--themeht-border-light-color);
  padding: .375rem 15px .375rem 0;
  width: 100%;
  height: 55px;
  color: var(--themeht-body-color);
  border-radius: 0;
  background: transparent;
}

textarea {
  height: 100px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: var(--themeht-body-color);
  border-bottom: 1px solid var(--themeht-border-dark-color) !important;
}

.wpcf7-form-control,
select {
  border: none;
  border-bottom: 1px solid var(--themeht-border-light-color);
}

.wpcf7-form-control.wpcf7-select,
select {
  width: 100%;
  padding: .550rem 15px .550rem 0;
  background-color: var(--themeht-border-light-color);
  height: 55px;
  color: var(--themeht-body-color);
}

::-webkit-input-placeholder {
  color: #6C757D !important;
  opacity: 1;
}

:-moz-placeholder {
  color: #6C757D !important;
  opacity: 1;
}

::-moz-placeholder {
  color: #6C757D !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #6C757D !important;
  opacity: 1;
}

:focus-visible {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
}


select option {
  word-break: break-word;
}

p {
  margin: 0 0 25px;
}

blockquote,
.wp-block-quote.is-style-large {
  background: var(--themeht-white-color);
  padding: 40px 80px 40px 40px !important;
  margin: 30px 0px 30px 0;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  color: var(--themeht-text-color);
  border: 1px solid var(--themeht-border-light-color);
  border-left: 5px solid var(--themeht-border-dark-color);
}

blockquote span {
  color: var(--themeht-text-color);
  margin-top: 20px;
  display: block;
  font-family: var(--themeht-typography-secondary-font-family);
  font-size: 20px;
  font-weight: 500;
}

.themeht-blogs .post-card .post-desc blockquote p {
  margin-bottom: 15px;
  margin-top: 0;
}

body blockquote.wp-block-quote.is-style-large cite,
body blockquote.wp-block-quote.is-style-large p,
body blockquote p {
  margin: 0px;
}

blockquote:after {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: 'bootstrap-icons';
  content: "\F6B0";
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px var(--themeht-text-color);
  line-height: 1;
}

blockquote.has-text-align-right {
  padding: 40px 40px 40px 80px !important;
}

blockquote.has-text-align-right:after {
  right: inherit;
  left: 0;
}

table th {
  color: var(--themeht-text-color);
}

table th,
table td {
  border-color: var(--themeht-border-light-color) !important;
  border: 1px solid;
  padding: 5px 10px;
}

.comment-respond {
  padding: 50px;
  background: var(--themeht-white-color);
}


/* ------------------------
    Transition
------------------------*/
a,
.btn,
button,
/*img,*/
span,
input,
.dropdown-item,
.nav-item.dropdown .dropdown-menu a:before,
.social-icons li:hover a,
.rounded-button i,
.featured-item,
.service-item,
.service-desc,
.step-item,
.step-number,
.portfolio-item,
.portfolio-desc,
.swiper-button-next,
.swiper-button-prev,
.service-widget li a:before,
.service-widget li a:after {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

/* ------------------------
    Pre Loader
------------------------*/
#ht-preloader {
  background: var(--dy-gray2);
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden !important;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
}

.loader span,
.loader img {
  -webkit-animation-name: wobble;
  animation-name: wobble;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  color: var(--themeht-white-color);
  font-size: var(--loader-font-size);
  position: relative;
  line-height: 1;
  display: inline-block;
  font-family: var(--themeht-typography-secondary-font-family);
  font-weight: 400;
  max-width: 480px;
}

/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  /* height: 60px; */
  /* width: 60px; */
  cursor: pointer;
  display: block;
  /* border-radius: 50px; */
  /* box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2); */
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(15px); */
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  /* background: var(--themeht-white-color); */
}

.scroll-top img {
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.15))
}

.scroll-top.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* .scroll-top::after {
  position: absolute;
  font-family: 'bootstrap-icons';
  content: '\F145';
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  color: var(--themeht-text-color);
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-top:hover::after {
  opacity: 0;
}

.scroll-top::before {
  position: absolute;
  font-family: 'bootstrap-icons';
  content: '\F145';
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  opacity: 0;
  background-image: linear-gradient(298deg, var(--themeht-text-color), var(--themeht-text-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-top:hover::before {
  opacity: 1;
}

.scroll-top svg path {
  fill: none;
}

.scroll-top svg.scroll-circle path {
  stroke: var(--themeht-text-color);
  stroke-width: 2;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
} */

/* ------------------------
  Header
------------------------*/
#header-wrap {
  position: relative;
  z-index: 999;
  background: var(--themeht-white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#header-wrap.fixed-header {
  border-bottom: 1px solid var(--dy-green);
  background-color: var(--themeht-white-color);
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  animation: smoothScroll 1s forwards;
}

/*--navigation--*/
.navbar-brand.logo {
  padding: 26px 10px;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  position: relative;
  margin-right: 0;

  user-select: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-user-select: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);

  /* 針對 Safari 的渲染優化 */
  shape-rendering: geometricPrecision;
  /* 確保圖像在縮放時不模糊 */
  image-rendering: -webkit-optimize-contrast;
}

a.navbar-brand.logo:visited {
  color: transparent;
}

.logo img {
  max-height: var(--logo-desktop-height);
}

.navbar {
  padding: 0;
}

.navbar-nav .nav-item {
  margin: 0 18px;
}

.dropdown .sub-menu-trigger {
  display: block;
  position: absolute;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  top: 9px;
  right: 0;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: var(--themeht-text-color);
  transition: transform 0.3s ease;
}

/* .dropdown .dropdown .sub-menu-trigger {
  top: 0;
  width: 27px;
  height: 27px;
  line-height: 27px;
} */

.icon-rotate-180 {
  transform: rotate(180deg);
}

/* .navbar-nav .nav-item.dropdown .dropdown-menu li {
  margin: 10px 0;
} */

.dropdown.lang>.dropdown-menu.lang {
  left: unset;
  right: 0;
}

.dropdown.lang .dropdown-menu.lang li {
  margin: 10px 0;
}

.dropdown.lang .dropdown-menu.lang li a {
  font-size: 16px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu,
.dropdown.lang .dropdown-menu {
  background: var(--themeht-white-color);
  border: 1px solid var(--themeht-border-light-color);
  border-radius: 0;
  padding: 20px;
}

.navbar-nav .nav-link {
  font-family: var(--themeht-typography-body-font-family);
  font-weight: 400;
  padding: 10px !important;
  color: var(--themeht-text-color);
  font-size: 24px;
  line-height: 1.2;
  border-radius: 0;
  position: relative;
  box-shadow: inset 0 0 0 0 var(--themeht-text-color);
  transition: color .5s ease-in-out, box-shadow .5s ease-in-out, transform .5s ease-in-out;
}

.navbar-nav .nav-link::before,
.navbar-nav .dropdown-item::before,
.navbar-nav .dropdown-toggle::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: var(--dy-green);
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-toggle:hover,
.navbar-nav .dropdown-toggle.show {
  transform: translateX(16px);
  color: var(--dy-green) !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .dropdown-item:hover::before,
.navbar-nav .dropdown-toggle:hover::before,
.navbar-nav .dropdown-toggle.show::before {
  opacity: 1;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  color: var(--dy-green);
}

.navbar-nav .dropdown-menu .dropdown-item,
.dropdown.lang .dropdown-menu.lang .dropdown-item {
  font-size: 20px;
  background-color: inherit;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
  display: inline;
  padding: 10px 0;
  color: var(--themeht-text-color);
  position: static;
}

.navbar-nav .dropdown-menu .dropdown-item.dropdown-toggle {
  padding: 10px 0;
}

.nav-link.dropdown-toggle::after {
  transition: color .5s ease-in-out;
  border: solid var(--themeht-text-color);
  border-width: 0 2px 2px 0;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  vertical-align: 0.15em;
  margin-left: 12px;
  display: none;
}

.dropdown-submenu {
  position: relative !important;
  box-shadow: none !important;
  display: block;
}

.navbar-nav .dropdown-submenu>.dropdown-menu {
  top: 3% !important;
}

.dropdown-submenu a.dropdown-toggle::after {
  border: solid var(--themeht-bg-dark-color);
  border-width: 0 2px 2px 0;
  width: 0.425rem;
  height: 0.425rem;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 0;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
  margin-top: 0 !important;
}

.dropdown-submenu>.dropdown-item {
  padding-right: 2.5rem;
  position: relative;
}


/*--Header Search--*/
.search-icon a {
  font-size: 20px;
  color: var(--themeht-text-color);
  line-height: 1;
}

.search-input {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  text-align: center;
  background: var(--themeht-bg-dark-color);
  border-bottom: 1px solid var(--themeht-primary-color);
  z-index: 9999;
  top: 0;
  display: none;
  padding: 80px 0;
}

.search-inner {
  padding: 15px 0;
  position: relative;
}

.search-input label {
  width: 100%;
}

.search-input .search-field {
  width: 100%;
  background: transparent;
  border: none;
  height: 100%;
  padding-right: 60px;
}

.search-input .search-form button[type="submit"] {
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  font-size: 20px;
  right: 50px;
  color: var(--themeht-body-color);
  position: absolute;
  top: 5px;
}

.search-input .search-submit:hover {
  color: var(--themeht-text-color);
}

.right-nav {
  position: relative;
  margin-left: 18px;
}

.search-input .search-form {
  margin: 0 auto;
  background: var(--themeht-white-color);
  padding: 15px 10px;
}

.close-search {
  position: absolute;
  bottom: -40px;
  right: 0;
  cursor: pointer;
  font-size: 30px;
  color: var(--themeht-white-color);
}

.close-search:hover {
  color: var(--themeht-white-color);
}


/* ------------------------
    Footer
------------------------*/
.footer {
  background-color: var(--dy-gray1);
}

.footer-btn {
  display: inline-flex;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 16px 28px;
  color: #FFF !important;
  background-color: var(--dy-gray2);
}

.footer-btn,
.footer-btn>span,
.footer-btn>i {
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: var(--dy-green);
}

.footer-btn:hover>span {
  transform: translateX(-1px);
}

.footer-btn:hover>i {
  transform: translateX(4px);
}

.footer-nav-block {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .footer-nav-block {
    display: flex;
  }
}

.footer-nav-block>li {
  flex-basis: 33.33%;
}

.footer-nav-block>li>a {
  color: #fff;
  border: 1px solid var(--dy-gray1);
  background-color: var(--dy-gray2);
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  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;
}

.footer-nav-block>li>a,
.footer-nav-block>li>a>span,
.footer-nav-block>li>a>i {
  transition: all 0.3s ease;
}

.footer-nav-block>li>a:hover {
  background-color: var(--dy-green);
}

.footer-nav-block>li>a:hover>span {
  transform: translateX(-1px);
}

.footer-nav-block>li>a:hover>i {
  transform: translateX(4px);
}

@media (min-width: 992px) {
  .footer-nav-block>li>a {
    padding: 39px 20px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .footer-nav-block>li>a {
    padding: 40px 20px;
    font-size: 22px;
    font-weight: 600;
  }
}

.footer .widget-title {
  font-size: 24px;
  margin-bottom: 36px;
}

.primary-footer {
  position: relative;
  z-index: 99;
  padding: 100px 0 80px;
}

.secondary-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  color: var(--dy-gray2);
}

.secondary-footer a {
  color: #B5CAA1;
  text-decoration: underline !important;
}

.secondary-footer a:hover {
  color: var(--dy-green);
}

.footer h5 {
  position: relative;
  color: var(--dy-gray2);
}

.media-icon.list-inline li {
  display: inline-block;
}

.media-icon li {
  /* margin-bottom: 25px !important; */
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
}

.media-icon li:last-child {
  margin-bottom: 0 !important;
}

.media-icon li i {
  font-size: 24px;
  color: var(--dy-gray2);
  vertical-align: middle;
  line-height: 20px;
  margin-right: 20px;
}

.media-icon li a,
.media-icon li p {
  color: #F8F9FA;
  font-size: 20px;
  line-height: 1.2;
}

.footer-cntct .media-icon li a {
  color: #B5CAA1;
}

.media-icon li a:hover {
  color: var(--dy-green);
  text-decoration: underline !important;
}

.footer-menu {
  gap: 16px;
}

.footer-menu>div:first-child {
  padding-right: 0;
}

.footer-menu>div:last-child {
  padding-left: 0;
}

.footer-menu li {
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-menu li a {
  color: #F8F9FA;
  position: relative;
  padding-left: 0 !important;
  font-size: 20px;
  line-height: 1.7;
}

.footer-menu li a:hover {
  color: var(--dy-green);
  text-decoration: underline !important;
}

.footer-menu li a:before {
  display: none;
}

.footer .social-icons.footer-social li {
  margin-bottom: 0;
}

.social-icons.footer-social li a {
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 22px;
  color: var(--themeht-white-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons.footer-social li a img {
  width: 24px;
  height: 24px;
  transform: translateY(-2px);
}

.subscribe-form {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.subscribe-form input {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--themeht-border-light-color) !important;
  color: var(--themeht-rgba-color) !important;
  padding: 0.375rem 40px 0.375rem 0 !important;
}

.subscribe-form button {
  background: none;
  border: inherit;
  color: var(--themeht-primary-color);
  line-height: inherit;
  position: absolute;
  right: 0;
  top: auto;
  padding: 0;
  font-size: 20px;
}

.subscribe-form input[type="email"]:focus {
  color: var(--themeht-white-color);
  border: none !important;
  border-bottom: 1px solid var(--themeht-primary-color) !important;
}

.subscribe-form ::-webkit-input-placeholder {
  color: var(--themeht-rgba-color) !important;
  opacity: 1;
}

.subscribe-form :-moz-placeholder {
  color: var(--themeht-rgba-color) !important;
  opacity: 1;
}

.subscribe-form ::-moz-placeholder {
  color: var(--themeht-rgba-color) !important;
  opacity: 1;
}

.subscribe-form :-ms-input-placeholder {
  color: var(--themeht-rgba-color) !important;
  opacity: 1;
}


/* ------------------------
    Page Title
------------------------*/
.page-title h1 {
  font-size: 60px;
  line-height: 75px;
  word-break: break-word;
  margin-bottom: 0;
}

.post-single-bg-img {
  height: 300px;
  padding: 0;
  position: relative;
}

.post-single-bg-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.6);
}

.has-post-thumbnail .post-single-thumb {
  height: 30rem;
  padding: 0;
}

.page-title {
  background: #FFF;
  padding: 8px 0 12px;
}

.breadcrumb {
  background: none;
  display: inline-block;
  margin: 0;
  text-transform: capitalize;
  font-size: 14px;
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #212529;
}

.breadcrumb-item.active,
.breadcrumb-item a:hover {
  color: var(--dy-green);
}

.breadcrumb-item+.breadcrumb-item:before {
  color: var(--dy-green);
}

.page-title h1 {
  color: var(--themeht-primary-color);
  margin-top: 30px
}



/* ------------------------
    Section Title
------------------------*/
.theme-title {
  margin-bottom: 28px;
}

.theme-title p {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 30px;
}

.dark-bg h2 {
  color: var(--themeht-white-color)
}

.theme-title h2 {
  margin-bottom: 0;
}

.sub-title h2 {
  font-size: 40px;
}

/* ------------------------
    Button
------------------------*/
.themeht-btn {
  padding: 15px 30px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 18px;
}

.white-btn,
a.white-btn {
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
  border: 1px solid var(--themeht-white-color);
}

.white-btn:hover,
a.white-btn:hover {
  background: transparent;
  color: var(--themeht-white-color);
}

.primary-btn,
a.primary-btn {
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
  border: 1px solid var(--themeht-primary-color);
}

.primary-btn:hover,
a.primary-btn:hover {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-primary-color);
  border-color: var(--themeht-primary-color)
}


.dark-btn,
a.dark-btn {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-white-color);
  border: 1px solid var(--themeht-bg-dark-color);
}

.dark-btn:hover,
a.dark-btn:hover {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-primary-color);
  border-color: var(--themeht-primary-color)
}

.dy-btn,
a.dy-btn {
  background: var(--dy-gray2);
  color: var(--themeht-white-color);
  border: 1px solid var(--dy-gray2);
}

.dy-btn:hover,
a.dy-btn:hover {
  background: var(--dy-green);
  color: var(--themeht-white-color);
  border-color: var(--dy-green)
}


.rounded-button {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: var(--themeht-white-color);
  text-align: center;
  padding: 16px;
}

.rounded-button i {
  font-size: 80px;
  -webkit-text-stroke: 1px var(--themeht-text-color);
  color: transparent;
  line-height: 0;
  position: relative;
  display: block;
  margin-top: -20px;
}

.rounded-button span {
  line-height: 26px;
  font-size: 20px;
  color: var(--themeht-text-color);
  margin: 0 auto;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
  display: inline;
  position: relative;
  word-break: break-word;
}

.rounded-button:hover i {
  -webkit-text-stroke: 1px var(--themeht-text-color);
  color: var(--themeht-text-color);
}

.dark-round-button.rounded-button {
  background: var(--themeht-bg-dark-color);
}

.dark-round-button.rounded-button i {
  -webkit-text-stroke: 1px var(--themeht-white-color);
}

.dark-round-button.rounded-button span {
  color: var(--themeht-white-color);
}

.dark-round-button.rounded-button:hover i {
  -webkit-text-stroke: 1px var(--themeht-white-color);
  color: var(--themeht-white-color);
}

.rounded-button:hover span {
  background-size: 100% 100%;
}

.read-button {
  color: var(--themeht-text-color);
  border-bottom: 1px solid var(--themeht-border-light-color);
  padding-bottom: 2px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  font-size: 18px;
  margin-top: 24px;
  text-align: left;
}

.read-button i {
  margin-left: 10px;
  font-size: 20px;
  vertical-align: middle;
}

.read-button::before,
.read-button::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
}

.read-button::before {
  background-color: var(--themeht-border-dark-color);
  height: 1px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform .8s cubic-bezier(0.76, 0, 0.24, 1);
}

.read-button::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(0, -200%, 0);
  transition: transform .8s cubic-bezier(0.76, 0, 0.24, 1);
  color: var(--themeht-text-color);
}

.read-button:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.read-button:hover::after {
  transform: translate3d(0, 0, 0);
}

.read-button span {
  display: inline-block;
  transition: transform .8s cubic-bezier(0.76, 0, 0.24, 1);
}

.read-button:hover span {
  transform: translate3d(0, 200%, 0);
}


/* ------------------------
 Marquee Text
------------------------*/
.marquee-area {
  position: relative;
  z-index: 9
}

.marquee-area::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.13) 0%, var(--themeht-bg-dark-color) 100%);
  z-index: -1;
  mix-blend-mode: multiply;
}

.marquee-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(24, 24, 24, 0.22) 0%, var(--themeht-bg-dark-color) 100%);
  z-index: -1;
  mix-blend-mode: multiply;
}

.marquee-wrap {
  width: 100%;
  position: relative;
  white-space: nowrap;
}

.marquee-wrap,
.marquee-title {
  display: block;
}

.marquee-text {
  animation: marquee 50s linear infinite;
  position: relative;
  display: inline-block;
  margin: 0 10px;
  font-size: 100px;
  white-space: nowrap;
  line-height: 1;
  font-weight: 700;
  /*color: transparent;*/
  color: #DEE2E6;
  -webkit-text-stroke: 1px #60828B;
  font-family: 'Poppins', sans-serif, 'Microsoft YaHei', 'Noto Sans TC';
}

.marquee-right .marquee-text {
  animation: marquee2 50s linear infinite;
}

.dark-bg .marquee-text {
  -webkit-text-stroke: 1px var(--themeht-white-color);
}

.marquee-img-swiper>.swiper-wrapper {
  transition-timing-function: linear;
}

.popup-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background: var(--themeht-white-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--themeht-text-color);
  opacity: 0;
}

.marquee-img-box:hover .popup-img {
  opacity: 1;
}

.marquee-area .rounded-button {
  margin-top: -100px
}


/* ------------------------
 Accourdion
------------------------*/
.accordion-button {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400 !important;
  text-transform: capitalize;
  transition: all 0s ease-in-out 0s;
  color: var(--themeht-text-color);
}

.accordion-button:not(.collapsed) {
  color: var(--themeht-text-color)
}

.accordion-collapse {
  margin-top: 15px;
  padding: 24px 12px;
  background-color: rgba(var(--dy-green-rgb), 0.1);
}

.accordion-body {
  color: var(--themeht-body-color);
  /* margin-top: 15px */
}

/* ------------------------
    Social Icons
------------------------*/
.social-icons ul {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.social-icons li {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 8px 0 0;
}

.social-icons li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--themeht-text-color);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.social-icons li:hover a {
  transform: rotateY(360deg);
}


/* ------------------------
    Team
------------------------*/
.team-member .team-desc {
  padding-top: 30px;
  overflow: hidden;
  position: relative;
}

.team-member .team-desc h4 {
  margin-bottom: 5px;
}

.team-member .team-desc h4 a {
  color: var(--themeht-text-color);
  display: inline;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
}

.team-member .team-desc a:hover {
  background-size: 100% 100%;
}

.team-member .team-desc span {
  display: block;
  color: var(--themeht-body-color);
  font-weight: 500;
  font-family: var(--themeht-typography-secondary-font-family);
}

.team-member .team-social-icon {
  background: var(--themeht-primary-color);
  position: absolute;
  margin: 0;
  padding: 20px;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}

.team-member:hover .team-social-icon {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.team-social-icon li {
  margin: 0 10px;
  display: inline-block;
}

.team-social-icon li a {
  font-size: 18px;
  line-height: 1;
  color: var(--themeht-text-color);
  display: inline-block;
  text-align: center;
}

.team-social-icon li a:hover {
  color: var(--themeht-text-color);
}

.team-member img {
  width: 100%;
}

.team-contact {
  padding-top: 30px;
}

.team-meta li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.team-meta li i {
  font-size: 20px;
  color: var(--themeht-text-color);
  vertical-align: middle;
  margin-right: 15px;
}

.team-meta li span {
  margin-right: 10px;
  font-weight: 500;
  color: var(--themeht-text-color);
}

.team-member .team-contact .team-social-icon {
  position: inherit;
  bottom: inherit;
  right: inherit;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
}


/* ------------------------
    Tab
------------------------*/
.nav-tabs {
  margin-bottom: 36px;
}

.nav-tabs .nav-link {
  font-size: 24px;
  font-family: var(--themeht-typography-secondary-font-family);
  line-height: 1.2;
  border: none !important;
  border-radius: 0;
  width: 33.3333%;
  text-align: center !important;
  font-weight: 400 !important;
  color: var(--themeht-text-color) !important;
  background-color: #F8F9FA;
  position: relative;
  border-bottom: 2px solid #CED4DA !important;
  padding: 10px !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--dy-green);
  border-color: var(--themeht-border-light-color) !important;
  border-bottom-color: var(--dy-gray2) !important;
  color: var(--themeht-white-color) !important;
}



/* ------------------------
    Counter
------------------------*/
.counter {
  position: relative;
  z-index: 9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 2px 2px 16px 0px rgba(136, 136, 136, 0.20);
}

.counter.style-1 .counter-desc {
  display: flex;
  align-items: flex-end;
}

.counter.style-1 span {
  font-size: 96px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dy-green);
  display: inline-block;
}

.counter.style-1 .count-number+span {
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  color: var(--themeht-text-color);
  position: relative;
  bottom: 12px;
}

.counter.style-1 h6 {
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--themeht-typography-body-font-family);
  display: inline-block;
  color: var(--dy-green);
  margin-bottom: 0;
  background: #E9ECEF;
  left: 0;
}

.counter.style-1.center .counter-desc {
  justify-content: center;
}

.counter.style-1.right .counter-desc {
  justify-content: end;
}

.counter.style-1.right h6 {
  left: inherit;
  right: 0;
}

.counter.style-3 {
  background: var(--themeht-primary-color);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}

.counter.style-3.center {
  margin: 0 auto;
}

.counter.style-3.right {
  margin-left: auto;
}

.counter.style-3 span {
  font-family: var(--themeht-typography-secondary-font-family);
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  color: var(--themeht-text-color);
  display: inline-block;
}

.counter.style-3 .count-number+span {
  font-weight: 400;
  font-size: 30px;
  color: var(--themeht-text-color);
  -webkit-text-stroke: inherit;
  line-height: 1;
  top: 10px;
  position: relative;
}

.counter.style-3 h6 {
  margin-bottom: 0;
}

.counter-dark .counter.style-3 {
  background: var(--themeht-bg-dark-color);
}

.counter-dark .counter.style-3 span {
  color: var(--themeht-primary-color);
}

.counter-dark .counter.style-3 .count-number+span {
  color: var(--themeht-primary-color);
}

.counter-dark .counter.style-3 h6 {
  color: var(--themeht-white-color);
}


/* ------------------------
    Blog - Post
------------------------*/
.post-card {
  position: relative;
  display: inline-block;
  width: 100%;
  /*padding-right: 36px;*/
}

.post-card .post-wrap {
  background-color: #F8F9FA;
}

.post-card:hover .post-wrap {
  background-color: #E9ECEF;
}

.post-card .post-image {
  position: relative;
  aspect-ratio: 1 / 1;
}

.post-card .img-wrap {
  width: 100%;
  position: absolute;
  top: -20px;
  left: 35px;
  transition: all 0.75s ease-in-out 0s;
}

.post-card:hover .img-wrap {
  transform: scaleX(-1);
}

.post-card .tag {
  color: var(--dy-gray2);
  line-height: 1.2;
}

.post-card .post-title h4 {
  text-transform: capitalize;
  word-break: break-word;
}

.post-card .post-title h4 a {
  color: var(--themeht-text-color);
  display: inline;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
}

.post-card .post-title h4 a:hover {
  background-size: 100% 100%;
}

.post-card .post-bottom li {
  text-transform: capitalize;
  position: relative;
  font-size: 15px;
}

.post-card .post-bottom li+li:before {
  display: inline-block;
  padding-right: 0.3rem;
  color: var(--themeht-body-color);
  font-family: 'bootstrap-icons';
  content: "\F309";
  padding-left: 0.2rem;
  font-size: 24px;
  vertical-align: middle;
}

.post-card .post-bottom .list-inline-item:not(:last-child) {
  margin-right: 0;
}

.list-inline-item.date span,
.list-inline-item.date i {
  color: #6C757D;
}

.list-inline-item .cat-links {
  font-weight: 600;
}

.list-inline-item .cat-links a:hover {
  color: var(--dy-green);
}

.post-single-page .post-desc h1,
.portfolio-single h1 {
  line-height: 75px;
  font-size: 60px;
  margin-bottom: 20px;
  word-break: break-all;
}

.post-title {
  margin-bottom: 30px;
}

.post-desc {
  padding-top: 30px;
}


.news-cont .post-desc {
  background: #FFF;
  /*padding-top: 30px;*/
  padding: 20px;
  border: 1px solid var(--themeht-border-light-color);
}

.tags-links a {
  border: 1px solid var(--themeht-border-light-color);
  color: var(--themeht-text-color);
  padding: 5px 10px;
  margin: 4px 8px 4px 0;
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
}

.tags-links a:hover {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-white-color);
  border-color: var(--themeht-bg-dark-color);
}

.themeht-blogs .post {
  margin-bottom: 80px;
}

.themeht-blogs .post-title h4 {
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 0;
}

.edit-link {
  margin-left: 10px;
  display: none !important;
}

.edit-link .post-edit-link {
  border: 1px solid var(--themeht-border-light-color);
  padding: 2px 10px;
}

.post-single-page .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.theme-tags {
  clear: both;
  margin-top: 20px;
}

.post-bottom li i {
  font-size: 16px;
  color: var(--themeht-text-color);
  margin-right: 5px;
  vertical-align: middle;
}

.post-card .post-bottom li span {
  display: inline;
}

/* ---- Sidebar Widget ----*/
.widget h2,
.wp-block-archives__label,
.wp-block-search__label {
  position: relative;
  color: var(--themeht-text-color);
  font-size: 22px;
  line-height: 37px;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-weight: 600;
}

.themeht-sidebar .widget {
  background: #FFF;
  margin-bottom: 40px;
  padding: 30px 20px;
  border: 2px solid var(--themeht-border-light-color);
}

/*.themeht-sidebar .widget:last-child {
  margin-bottom: 0
}*/

.themeht-sidebar .widget ul,
.themeht-sidebar .widget ol,
.wp-block-archives ul {
  margin: 0;
  padding-left: 0;
}

.themeht-sidebar .widget ul.children,
.themeht-sidebar .widget ol.children {
  margin-left: 15px;
  margin-top: 15px;
}

.themeht-sidebar .widget ul li,
.themeht-sidebar .widget ol li,
.wp-block-archives li,
.wp-block-latest-posts li,
.widget_recent_entries li,
.wp-block-categories li,
.wp-block-page-list li {
  list-style-type: none;
  margin-bottom: 15px;
}

.themeht-sidebar .widget ul li:last-child,
.themeht-sidebar .widget ol li:last-child,
.wp-block-latest-posts li:last-child,
.widget_recent_entries li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.themeht-sidebar .widget .tagcloud a,
.wp-block-tag-cloud a {
  position: relative;
  border-bottom: 1px solid var(--themeht-border-light-color);
  color: var(--themeht-text-color);
  margin: 8px 8px 8px 0;
  display: inline-block;
  font-size: 17px !important;
  text-transform: capitalize;
}

.themeht-sidebar .widget .tagcloud a:before,
.wp-block-tag-cloud a:before {
  font-size: 18px;
  display: inline-block;
  padding-right: 0.4rem;
  color: var(--themeht-text-color);
  content: "\F5B0";
  font-family: 'bootstrap-icons';
  vertical-align: middle;
}

.widget_categories li,
.wp-block-categories li {
  color: var(--themeht-body-color);
  position: relative;
  padding-left: 30px;
}

.widget.widget_categories ul li:before,
.wp-block-categories li:before {
  content: "\F38B";
  font-family: 'bootstrap-icons';
  color: var(--themeht-text-color);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.themeht-sidebar .widget_recent_entries li,
.wp-block-latest-posts li {
  margin-bottom: 15px;
}

.search-form {
  position: relative
}

.search-form label {
  width: 100%;
}

.widget_themeht_recentpost li {
  display: flex;
  align-items: flex-start;
}

.themeht-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 16px;
  position: relative;
  overflow: hidden;
}

.themeht-post-image a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  /* left: -50px; */
  top: 0;
}

.themeht-post-image img {
  max-width: none;
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.themeht-post-date {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #6C757D;
}

.themeht-post-date:before {
  display: inline-block;
  padding-right: 0.4rem;
  color: #6C757D;
  content: "\f214";
  font-family: 'bootstrap-icons';
  vertical-align: middle;
  font-size: 16px;
}

.search-form button[type="submit"] {
  background: inherit;
  color: var(--themeht-body-color);
  font-size: 20px;
  line-height: 55px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 15px;
  padding: 0;
  border: none;
  top: 0;
  z-index: 1;
}

.search-form button[type="submit"]:hover {
  color: var(--themeht-text-color);
}


.themeht-sidebar .widget li a,
.themeht-sidebar .widget a {
  text-transform: capitalize;
}

.themeht-sidebar .widget li a {
  font-size: 17px;
  color: var(--themeht-text-color);
}

.themeht-sidebar .widget li a:hover {
  color: var(--themeht-text-color);
}


/* ---- Post Comments ----*/
.post-comment {
  margin-top: 50px;
  background: var(--themeht-bg-light-color);
  padding: 50px
}

.post-comment .comments-title,
.post-comment .comment-reply-title {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 30px;
}

.post-comment .comment-reply-title {
  margin-bottom: 15px;
}

.comments-box {
  box-shadow: 0px 22px 57px 0px rgb(34 41 72 / 5%);
  padding: 50px;
  margin-top: 50px;
}

.comment-author img {
  margin-right: 15px;
  width: 80px;
  height: 80px;
  display: inline-block;
  padding: 8px;
}

.post-comment li.comment,
.post-comment li.trackback,
.post-comment li.pingback {
  margin-bottom: 30px;
  list-style-type: none;
}

.post-comment li.comment .comment-body,
.post-comment li.trackback .comment-body,
.post-comment li.pingback .comment-body {
  background: var(--themeht-white-color);
  margin-bottom: 30px;
  padding: 20px;
  list-style-type: none;
}

.post-comment .comment-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.post-comment .comment-metadata {
  font-size: 15px;
  margin-left: auto;
}

.says {
  display: none;
}

.comment-author.vcard b,
.comment-author.vcard a {
  text-transform: capitalize;
  font-size: 22px;
  color: var(--themeht-text-color);
  font-weight: 400;
  font-family: var(--themeht-typography-secondary-font-family);
}

.comment-author.vcard a:hover {
  color: var(--themeht-text-color);
}

.comment-form-author {
  float: left;
  width: 50%;
  padding-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.comment-form-email {
  float: left;
  width: 50%;
  padding-left: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.comment-form-url {
  clear: both;
  margin-bottom: 15px;
}

.post-comment .form-submit {
  margin-top: 30px;
  margin-bottom: 30px;
}

.comment-respond {
  margin-top: 30px;
}

.comment-form-comment {
  margin-top: 30px;
  margin-bottom: 0;
}

.reply {
  text-align: right;
}

.comment-reply-link,
.comment-reply-link:focus,
.comment-reply-link:visited,
.comment-reply-link:active {
  font-size: 18px;
  border: 1px solid transparent;
  position: relative;
  text-transform: capitalize;
  padding: 5px 20px 5px 40px;
  background: var(--themeht-text-color);
  color: var(--themeht-white-color);
  display: inline-block;
}

.comment-reply-link:hover {
  border-color: var(--themeht-border-dark-color);
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
}

.comment-reply-link:before {
  content: '\f520';
  font-family: 'bootstrap-icons';
  font-size: 20px;
  position: absolute;
  left: 14px;
  top: 5px;
}


/* ------------------------
    Featured Box
------------------------*/
.featured-item.style-1 {
  border: 1px solid var(--themeht-border-light-color);
  padding: 20px;
  position: relative;
}

.featured-item.style-1 .featured-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.featured-item.style-1 .feature-number {
  font-weight: 500;
  background: var(--themeht-primary-color);
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: var(--themeht-text-color);
  display: inline-block;
}

.featured-title h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.featured-item p {
  margin-bottom: 0;
}

.featured-item.style-1 h4 {
  margin-bottom: 0;
}

.featured-item.style-1::before,
.featured-item.style-1::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  transition: 0.5s ease-in-out;
  z-index: -9;
}

.featured-item.style-1::before {
  top: 0;
  left: 0;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

.featured-item.style-1::after {
  right: 0;
  bottom: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}

.featured-item.style-1:hover::before,
.featured-item.style-1:hover::after {
  width: 100%;
  height: 100%;
  border-color: var(--themeht-border-dark-color);
}

.featured-item.style-2 {
  border: 1px solid var(--themeht-border-light-color);
  padding: 20px;
  position: relative;
  background: #FFF;
  height: 100%;
}

.featured-item.style-2 p,
.featured-item.style-2 ul,
.featured-item.style-2 ol {
  color: #6C757D;
}

.featured-item.style-2 .featured-icon {
  margin-bottom: 15px;
  font-size: 50px;
  line-height: 1;
  color: var(--themeht-text-color);
  display: inline-block;
}

.dark-bg .featured-item.style-2 {
  background: rgba(255, 255, 255, 0.02);
  border-color: transparent;
}

.dark-bg .featured-item.style-2 .featured-icon {
  color: var(--themeht-primary-color);
}

.dark-bg .featured-item.style-2 h4 {
  color: var(--themeht-white-color);
}

.dark-bg .featured-item.style-2 p {
  color: var(--themeht-rgba-color)
}

.featured-item.style-3 {
  padding: 50px 30px;
  position: relative;
  text-align: center;
}

.featured-item.style-3 .featured-icon {
  margin-bottom: 20px;
  font-size: 80px;
  line-height: 1;
  color: var(--themeht-text-color);
  display: inline-block;
}

.featured-item.style-3:hover {
  box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
}

/* ------------------------
    Step Box
------------------------*/
.step-item {
  padding: 50px;
  position: relative;
  display: inline-block;
  border: 1px solid var(--themeht-border-light-color);
  text-align: center;
}

.step-item:hover {
  border-color: var(--themeht-border-dark-color);
}

.step-icon {
  display: inline-block;
  font-size: 80px;
  color: var(--themeht-text-color);
  line-height: 1;
  margin-bottom: 20px;
}

.step-item .step-number {
  background: var(--themeht-white-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 80px;
  color: var(--themeht-text-color);
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-top: -40px;
  right: -50px;
  z-index: 9;
  border: 1px solid var(--themeht-border-light-color);
}

.step-item:hover .step-number {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-primary-color);
  border-color: var(--themeht-border-dark-color);
}

.step-item p {
  margin-bottom: 0;
}

.step-item .step-icon img {
  max-width: 80px;
}

.step-item p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.step-sec {
  padding-left: 80px;
  padding-right: 80px;
}

.step-item.style-2 {
  padding: 0;
  border: none;
}

.step-item.style-2::before {
  content: "";
  position: absolute;
  top: 50px;
  right: -80px;
  background: var(--themeht-bg-dark-color);
  width: 80px;
  height: 1px;
}

.row [class*='col-']:last-child .step-item.style-2::before {
  display: none;
}

.step-item.style-2 .step-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--themeht-bg-dark-color);
  font-size: 40px;
  color: var(--themeht-primary-color);
  line-height: 100px;
  margin-bottom: 20px;
  position: relative;
}

.step-item.style-2:hover .step-icon {
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
}

.step-item.style-2 .step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeht-white-color);
  font-family: var(--themeht-typography-secondary-font-family);
  font-size: 14px;
  color: var(--themeht-text-color);
  right: 0;
  top: 50%;
  margin-top: -25px;
  right: -25px;
  border: none;
}

.step-item.style-2:hover .step-number {
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-primary-color);
  -webkit-text-stroke: inherit;
}

.step-item.style-2 p {
  margin-bottom: 0;
}

.step-item.style-2 .step-icon img {
  max-width: 80px;
}

.step-item.style-2 p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}


/* ------------------------
    Testimonials
------------------------*/
.testimonial {
  position: relative;
  display: flex;
  align-items: end;
}

.testimonial .testimonial-content {
  background: var(--themeht-bg-dark-color);
  padding: 50px;
  width: 60%;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  color: var(--themeht-text-color);
  font-style: italic;
}

.testimonial-caption {
  position: relative;
  margin-top: 20px;
  display: inline-block;
}

.testimonial .testimonial-caption span {
  color: var(--themeht-text-color);
  display: block;
  font-style: italic;
}

.testimonial .testimonial-caption h4 {
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0;
  color: var(--themeht-text-color)
}


/* ------------------------
    Service Box
------------------------*/
.service-image {
  position: relative;
  overflow: hidden;
}

.service-item.style-1 .service-desc {
  padding: 40px 30px 30px;
  position: relative;
  background-color: var(--themeht-white-color);
}

.dark-bg .service-item.style-1 .service-desc {
  background-color: var(--themeht-bg-dark-color);
}

.service-item.style-1 .service-desc .service-num,
.service-item.style-2 .service-desc .service-num {
  font-size: 100px;
  line-height: 100px;
  color: var(--themeht-white-color);
  opacity: 0.02;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.service-title h4 {
  text-transform: capitalize;
}

.service-item .service-title a {
  color: var(--themeht-text-color);
  display: inline;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
}

.service-item .service-title a:hover {
  background-size: 100% 100%;
}

.dark-bg .service-item.style-1 .service-title h4 a,
.dark-bg .service-item.style-1 .service-desc {
  color: var(--themeht-white-color)
}

.dark-bg .service-item.style-1 .read-button {
  color: var(--themeht-white-color);
  border-bottom-color: var(--themeht-white-color);
}

.dark-bg .service-item.style-1 .read-button::after {
  color: var(--themeht-white-color);
}

.service-item.style-1 .service-desc p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.swiper-slide.swiper-slide-active .service-item.style-1 .service-desc {
  background-color: var(--themeht-white-color);
}

.swiper-slide.swiper-slide-active .service-item.style-1 .service-title h4 a,
.swiper-slide.swiper-slide-active .service-item.style-1 .read-button {
  color: var(--themeht-text-color);
}

.swiper-slide.swiper-slide-active .service-item.style-1 .service-desc {
  color: var(--themeht-body-color);
}

.swiper-slide.swiper-slide-active .service-item.style-1 .read-button {
  border-bottom-color: var(--themeht-text-color);
}

.swiper-slide.swiper-slide-active .service-item.style-1 .read-button::after {
  color: var(--themeht-text-color);
}

.swiper-slide.swiper-slide-active .service-item.style-1 .service-desc .service-num {
  color: var(--themeht-text-color);
  opacity: 0.04;
}

.service-item.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-item.style-2 .service-image {
  width: 50%;
}

.service-item.style-2 .service-desc {
  width: 50%;
  padding: 0 50px;
  position: relative;
  padding-top: 50px;
}

.service-list .service-item.style-2:nth-child(2n+2) {
  flex-direction: row-reverse;
}

.service-item.style-2 .service-desc .service-num {
  color: var(--themeht-text-color);
  opacity: 0.04;
}

.dark-bg .service-item.style-2 .service-title h4 a {
  color: var(--themeht-white-color)
}

.dark-bg .service-item.style-2 .service-desc p {
  color: var(--themeht-rgba-color)
}

.dark-bg .service-item.style-2 .read-button {
  color: var(--themeht-white-color);
  border-bottom-color: var(--themeht-white-color);
}

.dark-bg .service-item.style-2 .read-button::after {
  color: var(--themeht-white-color);
}

.dark-bg .service-item.style-2 .service-desc .service-num {
  color: var(--themeht-white-color);
  opacity: 0.02;
}

.service-item.style-3 {
  background-color: var(--themeht-white-color);
  box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
}

.light-bg .service-item.style-3 {
  box-shadow: none;
}

.service-item.style-3 .service-desc {
  padding: 40px 30px;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--themeht-border-light-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.service-icon {
  font-size: 70px;
  line-height: 1;
  color: var(--themeht-text-color);
  flex-shrink: 0;
  margin-left: 20px;
}

.service-item.style-3:hover {
  background-color: var(--themeht-bg-dark-color);
}

.service-item.style-3:hover .service-title a {
  color: var(--themeht-white-color);
}

.service-item.style-3:hover p {
  color: var(--themeht-rgba-color);
}

.service-item.style-3:hover .service-icon {
  color: var(--themeht-primary-color);
}

.service-item.style-3:hover .service-top {
  border-bottom-color: var(--themeht-body-color);
}

.service-item.style-3 .service-title h4,
.service-item.style-3 p {
  margin-bottom: 0;
}

.service-cat a {
  background: var(--themeht-primary-color);
  padding: 0 5px;
  margin-bottom: 5px;
  display: inline-block;
}

/*Service Sidebar*/
.service-widget {
  margin-bottom: 20px;
  background-color: var(--themeht-white-color);
  padding: 30px;
  border: 1px solid var(--themeht-border-light-color);
}

.service-widget ul {
  padding-left: 0;
}

.service-widget li {
  list-style-type: none;
}

.service-widget li:last-child {
  margin-bottom: 0;
}

.service-widget li a {
  color: var(--themeht-body-color);
  display: block;
  font-size: 18px;
  padding: 15px 20px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--themeht-border-light-color);
  padding-left: 0;
}

.service-widget li.current-menu-item a,
.service-widget li:hover a {
  color: var(--themeht-text-color);
  padding-left: 30px;
}

.service-widget.widget_text {
  background-color: var(--themeht-white-color);
  padding: 30px;
  margin-top: 50px;
}

.service-widget li a:before,
.service-widget li a:after {
  position: absolute;
  top: 0;
  left: -50px;
  font-family: 'bootstrap-icons';
  content: "\F135";
  font-size: 18px;
  display: flex;
  z-index: 99;
  height: 100%;
  color: var(--themeht-text-color);
  justify-content: center;
  align-items: center;
}

.service-widget li a:after {
  left: auto;
  right: 0;
}

.service-widget li a:hover:before,
.service-widget li.current-menu-item a:before {
  opacity: 1;
  left: 0;
}

.service-widget li a:hover:after,
.service-widget li.current-menu-item a:after {
  opacity: 1;
  right: -50px;
}

/* ------------------------
    Career Box
------------------------*/
.career-item {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.career-item::before {
  content: "";
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  height: calc(100% - 130px - 48px);
  background-color: #F8F9FA;
  z-index: 1;
  transition: all 0.3s ease;
}

.career-item:hover::before {
  height: 100%;
}

.career-item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: calc(100% - 48px);
  height: 50px;
  background-color: #F8F9FA;
  border-bottom-left-radius: 10px;
  z-index: 2;
}

.career-image {
  height: 130px;
  position: absolute;
  overflow: hidden;
}

.career-item .career-image img {
  aspect-ratio: 2;
  transition: all 0.3s ease;
}

.career-item .career-desc {
  position: relative;
  margin-top: 130px;
  padding: 16px;
  transition: all 0.3s ease;
  z-index: 1;
}

.career-item:hover .career-desc {
  margin-top: 0;
}

.career-item .career-content {
  height: 68px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.career-item:hover .career-content {
  height: auto;
}

.career-item .career-text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.career-item:hover .career-text p {
  opacity: 1;
}

.career-item .item-title {
  font-size: 24px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.career-item .career-title a {
  color: var(--themeht-text-color);
  display: inline;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
}

.career-item .career-button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-bottom-right-radius: 10px;
  color: #FFF;
  background-color: var(--dy-green);
  z-index: 1;
  transition: all 0.3s ease;
}

.career-item .career-button:hover {
  background-color: var(--dy-gray1);
}

@media (max-width: 425px) {
  .career-item::before {
    height: calc(100% - 115px - 48px);
  }

  .career-image {
    height: 115px;
  }

  .career-item .career-desc {
    margin-top: 115px;
  }
}

/* ------------------------
    Price Table
------------------------*/
.price-table {
  padding: 50px 30px;
  overflow: hidden;
  position: relative;
  background: var(--themeht-white-color);
  z-index: 9;
  border: 1px solid var(--themeht-border-light-color);
}

.price-value h2 {
  font-size: 80px;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px var(--themeht-text-color);
}

.price-value h2 span {
  font-size: 18px;
  line-height: 18px;
  color: var(--themeht-white-color);
  font-weight: normal;
}

.price-list {
  margin: 30px 0;
}

.price-list ul li {
  position: relative;
  margin-bottom: 10px;
}

.price-list ul li:last-child {
  margin-bottom: 0;
}

.price-list li i {
  color: var(--themeht-text-color);
  line-height: 20px;
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}


/* ------------------------
    Progress Bar
------------------------*/
.ht-progress-bar {
  position: relative;
}

.ht-progress-bar h6 {
  color: var(--themeht-text-color);
  font-size: 17px;
  line-height: 1;
}

.ht-progress-bar .progress {
  height: 2px;
  background: var(--themeht-bg-light-color);
  overflow: visible;
  align-items: center;
  width: 100%;
  border-radius: 0;
}

.ht-progress-bar .progress-parcent {
  position: absolute;
  right: 0;
  top: 4px;
  color: var(--themeht-text-color);
  font-size: 16px;
  font-weight: 500;
}

.ht-progress-bar .progress .progress-bar {
  height: 2px;
  background-color: var(--themeht-border-dark-color);
  overflow: visible;
}


/* ------------------------
    Portfolio Item
------------------------*/
.portfolio-item {
  position: relative;
}

.portfolio-item .portfolio-cat a {
  color: var(--themeht-body-color);
  margin-bottom: 10px;
}

.portfolio-item .portfolio-cat a:hover {
  color: var(--themeht-text-color);
}

.portfolio-desc {
  padding-top: 30px;
}

.elementor-widget-portfolio-grid .row [class*='col-']:nth-child(odd) {
  margin-top: 80px;
}

.portfolio-item .portfolio-title a {
  color: var(--themeht-text-color);
  display: inline;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
}

.portfolio-item .portfolio-title a:hover {
  background-size: 100% 100%;
}

.elementor-widget-portfolio-two .portfolio-item .portfolio-desc {
  transition: opacity 1s ease-out;
  opacity: 0;
}

.elementor-widget-portfolio-two .swiper-slide-active .portfolio-item .portfolio-desc {
  opacity: 1;
}

.portfolio-marquee>.swiper-wrapper {
  transition-timing-function: linear;
}

.portfolio-item.style-3 .portfolio-desc {
  padding: 30px;
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 0;
}

.portfolio-item.style-3:hover .portfolio-desc {
  opacity: 1;
  bottom: 0;
}

.portfolio-item.style-3:hover .portfolio-image img {
  filter: blur(1px);
}

.portfolio-item.style-3 .portfolio-cat a {
  background-color: var(--themeht-primary-color);
  color: var(--themeht-text-color);
  padding: 0 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.portfolio-item.style-3 .portfolio-title a {
  background-color: var(--themeht-bg-dark-color);
  color: var(--themeht-white-color);
  padding: 0 5px 5px;
}

.portfolio-item.style-3 .portfolio-title a:hover {
  color: var(--themeht-primary-color);
}

/*portfolio Meta*/
.portfolio-meta-list {
  display: flex;
  align-items: flex-start;
}

.portfolio-meta-icon {
  font-size: 24px;
  color: var(--themeht-text-color);
  flex-shrink: 0;
  margin-right: 15px;
  line-height: 1;
}

.portfolio-meta-title {
  display: block;
  font-family: var(--themeht-typography-secondary-font-family);
  color: var(--themeht-text-color);
}

.portfolio-meta-sub-title {
  color: var(--themeht-body-color);
}


/* ------------------------
  Swiper Arrow 
------------------------*/
.swiper .swiper-button-prev {
  left: 0;
}

.swiper .swiper-button-next {
  right: 0;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border: 1px solid var(--themeht-border-dark-color);
  display: inline-block;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 50%;
  background: var(--themeht-white-color);
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: var(--themeht-bg-dark-color);
  border-color: var(--themeht-bg-dark-color);
}

.swiper .swiper-button-prev:after {
  content: '\F12F';
  font-family: bootstrap-icons !important;
}

.swiper .swiper-button-next:after {
  content: '\F138';
  font-family: bootstrap-icons !important;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  color: var(--themeht-text-color);
  font-size: 40px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  line-height: 70px !important;
}

.swiper .swiper-button-prev:hover:after,
.swiper .swiper-button-next:hover:after {
  color: var(--themeht-white-color);
}

.swiper-nav-white .swiper-button-prev,
.swiper-nav-white .swiper-button-next,
.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom-white .swiper-button-next {
  border: 1px solid var(--themeht-border-light-color);
  background: var(--themeht-bg-dark-color);
}

.swiper-nav-white .swiper-button-prev:hover,
.swiper-nav-white .swiper-button-next:hover,
.swiper-nav-bottom-white .swiper-button-prev:hover,
.swiper-nav-bottom-white .swiper-button-next:hover {
  background: var(--themeht-white-color);
  border-color: var(--themeht-white-color);
}

.swiper-nav-white .swiper-button-next:after,
.swiper-nav-white .swiper-button-prev:after,
.swiper-nav-bottom-white .swiper-button-next:after,
.swiper-nav-bottom-white .swiper-button-prev:after {
  color: var(--themeht-white-color);
}

.swiper-nav-white .swiper-button-prev:hover:after,
.swiper-nav-white .swiper-button-next:hover:after,
.swiper-nav-bottom-white .swiper-button-prev:hover:after,
.swiper-nav-bottom-white .swiper-button-next:hover:after {
  color: var(--themeht-text-color);
}

.swiper-nav-bottom-white .swiper-button-next,
.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom .swiper-button-next,
.swiper-nav-bottom .swiper-button-prev {
  top: inherit;
  bottom: 0;
}

.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom .swiper-button-prev {
  left: 50% !important;
  margin-left: -80px;
}

.swiper-nav-bottom-white .swiper-button-next,
.swiper-nav-bottom .swiper-button-next {
  right: 50% !important;
  margin-right: -80px;
}

.swiper-nav-bottom,
.swiper-nav-bottom-white {
  margin-top: 120px;
}

/* ------------------------
    Index Product Slider
------------------------*/
.swiper #post-button-next,
.swiper #post-button-prev {
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px !important;
}

.swiper:hover #post-button-next,
.swiper:hover #post-button-prev {
  opacity: 1;
}

.swiper #post-button-next.swiper-button-disabled,
.swiper #post-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper #post-button-next.swiper-button-next::after,
.swiper #post-button-prev.swiper-button-prev::after {
  font-size: 30px;
  line-height: 50px !important;
}


/* ------------------------
  Swiper Dot Pagination
------------------------*/
.swiper-pagination {
  position: inherit !important;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin-top: 40px;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: var(--themeht-bg-dark-color);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  opacity: 1;
  width: 16px;
  height: 16px;
}

.swiper-dots-white .swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: var(--themeht-white-color);
}

.swiper-nav-none .swiper-button-prev,
.swiper-nav-none .swiper-button-next,
.swiper-nav-none .swiper-pagination {
  display: none;
}

.swiper-nav-dots .swiper-button-prev,
.swiper-nav-dots .swiper-button-next,
.swiper-dots-white .swiper-button-prev,
.swiper-dots-white .swiper-button-next {
  display: none;
}

.swiper-nav-arrow .swiper-pagination,
.swiper-nav-bottom .swiper-pagination,
.swiper-nav-white .swiper-pagination,
.swiper-nav-bottom-white .swiper-pagination {
  display: none;
}


/* ------------------------
  Splitting Text
------------------------*/
.splitting {
  --word-center: calc((var(--word-total) - 1) / 2);
  --char-center: calc((var(--char-total) - 1) / 2);
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  --word-percent: calc(var(--word-index) / var(--word-total));
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  --char-percent: calc(var(--char-index) / var(--char-total));
  --char-offset: calc(var(--char-index) - var(--char-center));
  --distance: calc((var(--char-offset) * var(--char-offset)) / var(--char-center));
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting.ht-text-animated .char {
  animation-fill-mode: both;
  animation-duration: 1000ms;
  animation-delay: calc(200ms + calc(15ms * var(--char-index)));
}

.splitting.ht-text-animated .char {
  animation-name: uicoreFadeInUp, uicoreFadeIn !important;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1), cubic-bezier(0, 0, .2, 1);
}


/* ------------------------
  Image Reavel Animation
------------------------*/
.page-content .ht-img-effect .ht-img-effect-image {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

.page-content .ht-img-effect .ht-img-effect-image img {
  transform-origin: left;
}


/* ------------------------
 Award Section
------------------------*/
.award-items {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #CED4DA;
  background: #FFF;
  padding: 24px;
  position: relative;
  justify-content: flex-start;
  margin-bottom: 36px;
}

.award-years {
  width: 180px;
}

/*.award-items:first-child {
  border-top: none;
  padding-top: 0;
}

.award-project {
  width: 15%;
}*/

.award-title {
  width: calc(100% - 210px);
}


.award-items .award-years h4 {
  color: var(--dy-green);
  font-size: 36px;
  line-height: 1;
}

.award-items h4,
.award-title p {
  margin-bottom: 0;
}

.award-title p,
.award-title ul {
  color: #6C757D;
  font-size: 20px;
}


.award-title p.title {
  color: var(--dy-green);
  font-size: 24px;
  line-height: 1.3;
  font-family: var(--themeht-typography-secondary-font-family);
  margin-bottom: 24px;
}


/* ------------------------
  Keyframes Animation
------------------------*/

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-100%);
  }
}

@keyframes marquee2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translatex(0);
  }
}

@keyframes uicoreFadeInUp {
  0% {
    transform: translate3d(0, 40px, 0);
  }

  100% {
    transform: translateZ(0);
  }
}

@keyframes uicoreFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(720deg);
    -moz-transform: rotate(720deg);
  }
}

@keyframes rotationBreak {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes smoothScroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes smoothScroll {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}


/* ------------------------
Shop Page
------------------------*/
.product-link a.add-cart {
  width: auto;
  height: auto;
  padding: 0px 20px;
  line-height: 40px;
  font-size: 14px;
}

.product-link a i {
  display: inline-block;
  color: var(--themeht-text-color);
  font-size: 18px;
  vertical-align: middle;
}

.product-link a {
  background: var(--themeht-white-color);
  font-weight: 500;
  display: inline-block;
  width: 50px;
  height: 40px;
  line-height: 36px;
  overflow: hidden;
  color: var(--themeht-text-color);
  position: relative;
  -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .15);
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .15);
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  text-align: center;
}

.product-link a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
}

.product-link a:hover i {
  color: var(--themeht-text-color);
}

.form-check-input:checked {
  background-color: var(--dy-green);
  border-color: var(--dy-green);
}

.widget-color [type="radio"]:checked,
.widget-color [type="radio"]:not(:checked) {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.widget-color .form-check-label {
  width: 26px;
  height: 26px !important;
  border-radius: 0.25rem;
  padding: 0 !important;
  margin-bottom: 0;
}

.widget-color .form-check-input[type="radio"]:checked+label,
.widget-color .form-check-input[type="radio"]:not(:checked)+label,
label.btn input[type="radio"]:checked+label,
label.btn input[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 1.5625rem;
  line-height: 1.5625rem;
  transition: .28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.widget-color .form-check-input[type="radio"]+label::after,
.widget-color .form-check-input[type="radio"]+label::before,
label.btn input[type="radio"]+label::after,
label.btn input[type="radio"]+label::before {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  width: 30px;
  height: 30px;
  z-index: 0;
  transition: .28s ease;
  z-index: -1;
  border-radius: 0.25rem;
}

.widget-color .form-check-input[type="radio"]:checked+label::after,
label.btn input[type="radio"]:checked+label::after {
  transform: scale(1.02);
}

.widget-color .form-check-input[type="radio"]:checked+label::after {
  background-color: var(--themeht-primary-color);
}

.widget-size input[type="radio"] {
  visibility: hidden;
  position: absolute;
}

.widget-size label {
  background: var(--bg-light);
  margin-bottom: 0;
  display: inline-block;
  height: 40px;
  min-width: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--themeht-text-color);
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.25rem;
  line-height: 40px;
}

.widget-size input[type="radio"]:checked+label {
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
}

.widget-color li {
  list-style-type: none;
  display: inline-block;
  margin-right: 1%;
  margin-bottom: 20px;
  width: 22%;
  text-align: center;
}

.widget-color li:nth-child(4n+4) {
  margin-right: 0;
}

.widget-size li {
  list-style-type: none;
  display: inline-block;
  width: 20%;
  text-align: center;
  float: left;
}

.widget-size li:nth-child(4n+4) {
  margin-right: 0;
}

input.form-product {
  -moz-appearance: textfield;
  height: 40px !important;
  border: none;
  background: var(--themeht-white-color);
  text-align: center;
  width: 150px;
  border-top: 1px solid var(--themeht-border-light-color) !important;
  border-bottom: 1px solid var(--themeht-border-light-color) !important;
  color: var(--themeht-text-color);
  vertical-align: middle;
}

.btn-product {
  background: none;
  color: var(--themeht-text-color);
  border: 1px solid var(--themeht-border-light-color);
  height: 40px;
  width: auto;
  padding: 0 10px;
  font-size: 13px;
  cursor: pointer;
}

.cart-table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  color: var(--themeht-text-color);
}

/* ------------------------
    news style

    0. section
    0. section title
    0. index about
    0. index intro
    0. index product
    0. index news
    0. index contact
    0. go top
    0. banner
    0. float sns
    0. cookies
    0. bg lines

------------------------*/

/* ==================
section
================== */
.section-special {
  padding: 80px 0;
}

/* ==================
section title
================== */
.theme-title h1 {
  font-size: 40px;
  line-height: normal !important;
}

/* ==================
index about
================== */
.about-content {
  border: 2px solid #DEE2E6;
  padding: 48px;
  position: relative;
}

.verticle-img-box {
  padding: 36px;
}

.tab-pane-content {
  font-size: 20px;
  line-height: normal;
}

/* ==================
index intro
================== */
/* 項目標題 */
.intro-section .item-title {
  font-size: 32px;
  line-height: normal;
  margin-bottom: 12px;
}

/* 圖片 - 圓形按鈕 */
.intro-section .rounded-btn {
  position: absolute;
  right: -40px;
  top: 47%;
}

.intro-section .rounded-button {
  width: 160px;
  height: 160px;
}

.intro-section .rounded-button span {
  line-height: 1.2;
}

.about-content .rounded-btn {
  position: absolute;
  right: -40px;
  top: auto;
  bottom: 5%;
}

/* 影片遮罩 */
.page-content .intro-video-wrap {
  margin-top: 64px;
}

.page-content .intro-video-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-content .intro-video-wrap.playing::before {
  opacity: 0;
}

/* 影片 - 圓形按鈕 */
.play-button {
  transition: all 0.3s ease;
}

.intro-video-wrap .rounded-button { 
  visibility: hidden;
}

.page-content .intro-video-wrap .rounded-button {
  background-color: var(--themeht-white-color);
  box-shadow: 8px 4px 8px 0px rgba(0, 0, 0, 0.50);  
  visibility: visible;
}

.page-content .intro-video-wrap .rounded-button i {
  -webkit-text-stroke: 1px var(--dy-green);
}

.page-content .intro-video-wrap .rounded-button:hover i {
  color: var(--dy-green);
}

.page-content .intro-video-wrap .rounded-button span {
  color: var(--dy-green);
  line-height: 1.2;
  font-family: var(--themeht-typography-secondary-font-family);
}

/* ==================
index product
================== */
.product-section {
  padding: 36px 0;
}

.product-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -72px;
  width: calc(100% + 72px + 72px);
  height: 100%;
  background-color: var(--themeht-white-color);
  z-index: -1;
}

.product-section .theme-title {
  margin-bottom: 40px;
}

.product-section .item-title,
.product-cont .item-title {
  font-family: var(--themeht-typography-body-font-family);
  font-size: 20px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 1;
}

/* ==================
index counter
================== */
.counter-section {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ==================
index news
================== */
.service-item .service-desc {
  padding: 29px;
}

.service-item .date {
  font-size: 15px;
  line-height: 27px;
}

.service-item .date i {
  margin-right: 5px;
}

.service-item .item-title {
  font-size: 24px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-item .service-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 45px;
}

.service-item .service-content p {
  color: #6C757D;
  line-height: 1.4;
  margin-bottom: 0;
  opacity: 0;
  transition: 0.5s;
}

.service-item:hover .service-content p {
  opacity: 1;
}

.service-item .service-image img {
  transition: all 0.3s ease;
}

.service-item .service-image:hover img {
  transform: scale(1.15);
  filter: grayscale(100%);
}

/* ==================
index contact
================== */
.contact-content {
  color: var(--dy-gray2);
  font-size: 18px;
}

.contact-btn-wrap {
  padding: 0 80px;
  margin: 26px;
}

.contact-btn-wrap .rounded-button {
  background-color: #E9ECEF;
  width: 180px;
  height: 180px;
}

.contact-btn-wrap .rounded-button i {
  -webkit-text-stroke: 1px var(--dy-green);
}

.contact-btn-wrap .rounded-button:hover i {
  color: var(--dy-green);
}

.contact-btn-wrap .rounded-button span {
  color: var(--dy-green);
}

.contact-btn-wrap .rounded-button:hover span.img-wrap {
  background-size: 0;
}

.contact-btn-wrap .rounded-button .img-wrap img {
  width: auto;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-btn-wrap .rounded-button:hover .img-wrap img {
  animation-play-state: paused;
}

/* ==================
go top
================== */
/* .scroll-top .main-top {
  bottom: 8px;
}

.scroll-top .main-top img {
  transform: rotate(-35deg);
  animation: totop 3s infinite;
}

@keyframes totop {
  25% {
    transform: rotate(-45deg);
  }

  65% {
    transform: rotate(25deg);
  }
}

.scroll-top:hover .main-top img {
  animation: totop 0s;
  transform: rotate(0);
} */

.scroll-top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: auto;
  bottom: 295px;
  transition: all .3s ease-out;
}

.scroll-top.btm {
  bottom: 65px;
}

.scroll-top .gotopText {
  position: absolute;
  color: var(--dy-green);
  width: 120px;
  top: 0;
  opacity: 0;
  transform: rotate(90deg);
  transition: all .3s ease-out;
}

/* .scroll-top .gotopText span {
  padding: 0 4px;
  background-color: var(--dy-green);
} */

.scroll-top:hover .gotopText {
  top: -72px;
  opacity: 1;
}

.scroll-top img {
  width: 60px;
  transform: rotate(-35deg);
  animation: totop 3s infinite;
}

@keyframes totop {
  25% {
    transform: rotate(-45deg);
  }

  65% {
    transform: rotate(25deg);
  }
}

.scroll-top:hover img {
  animation: totop 0s;
  transform: rotate(0);
}

/* ==================
banner
================== */
.banner-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1920 / 1080;
}

.mobile-swiper .banner-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 767 / 800;
}

/* ==================
float sns
================== */
.float-sns {
  right: 50px;
  bottom: 65px;
  z-index: 99;
  gap: 16px;
  transition: all 0.3s ease;
}

.float-sns.hide {
  opacity: 0;
  pointer-events: none;
}

.float-sns a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--themeht-white-color);
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.float-sns a:hover {
  background-color: var(--dy-green);
}

.float-sns a i {
  font-size: 20px;
}

.float-sns a img {
  width: 24px;
  height: auto;
  position: relative;
  transition: 0s;
}

.float-sns a:hover i {
  color: var(--themeht-white-color);
}

.float-sns a:hover img {
  left: 60px;
  filter: drop-shadow(#fff -60px 0);
  transition: 0s;
}

/* ==================
float lang
================== */
.float-lang {
  right: 20px;
  bottom: 0px;
  z-index: 99;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1400px) {
  .float-lang {
    right: 40px;
  }
}

.float-lang .lang-btn {
  background-color: #fff;
  border: 1px solid var(--dy-gray2);
  border-bottom: 0;
  border-radius: 0;
  padding: 4px 16px;
  min-width: 160px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.float-lang .lang-btn:hover,
.float-lang .lang-btn.show {
  color: #FFF;
  background-color: var(--dy-green);
}

.float-lang img {
  width: 30px;
  height: auto;
  margin-right: 8px;
}

.float-lang .lang-btn::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
  transition: all 0.3s ease;
}

.float-lang .lang-btn.show::after {
  border-top: .3em solid;
  border-bottom: 0;
}

.float-lang .lang-menu {
  padding: 0;
  border: 1px solid var(--dy-gray2);
  border-radius: 0;
}

.float-lang .lang-menu .dropdown-item {
  transition: all 0.3s ease;
}

.float-lang .lang-menu .dropdown-item:hover {
  color: #fff;
  background-color: var(--dy-green);
}

/* ==================
cookies
================== */
.cookies-wrap {
  background: rgba(33, 37, 41, 0.80);
  z-index: 99999;
}

.cookies-bg-color {
  background: rgba(33, 37, 41, 0.80);
}

.cookies-wrap .cookies-bg-color {
  background: transparent;
}

.cookies-txt {
  padding: 60px 40px;
  line-height: 1.2;
}

.cookies-txt img {
  width: 48px;
  height: 48px;
}

.cookies-btn {
  padding: 40px;
}

.cookies-btn a {
  font-size: 24px;
  background-color: var(--dy-gray2);
  font-family: var(--themeht-typography-secondary-font-family);
}

.cookies-btn a:hover {
  background-color: var(--dy-green);
}

/* ==================
bg lines
================== */
.bg-lines {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  z-index: 0;
}

.bg-line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: #f2f2f2;
  overflow: hidden;
}

.bg-line::after {
  content: "";
  display: block;
  position: absolute;
  height: 25vh;
  width: 100%;
  top: -25%;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 124, 133, 0) 0%, #007c85 75%, rgba(0, 124, 133, 0) 100%);
  -webkit-animation: drop 3s 0s infinite;
  animation: drop 3s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.bg-line:nth-child(1) {
  margin-left: -25%;
}

.bg-line:nth-child(1)::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.bg-line:nth-child(3) {
  margin-left: 25%;
}

.bg-line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

@-webkit-keyframes drop {
  0% {
    top: -25%;
  }

  100% {
    top: 100%;
  }
}

@keyframes drop {
  0% {
    top: -25%;
  }

  100% {
    top: 100%;
  }
}

@media (max-width:767px) {
  .bg-line {
    left: 73%;
  }

  .bg-line:nth-child(1) {
    display: none;
  }

  .bg-line:nth-child(2) {
    margin-left: -45%;
  }

  .bg-line:nth-child(3) {
    margin-left: 0;
  }
}

a.footer-logo:visited {
  color: transparent;
}

.footer-logo img {
  max-width: 205px;
  margin-bottom: 20px;

  user-select: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-user-select: none;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.news-section .nav-tabs {
  border-bottom: none;
  justify-content: flex-end;
  margin-bottom: 42px;
}

.news-section .nav-tabs .nav-link {
  width: auto;
  padding: 10px 20px !important;
}


.exhibit .threesixty {
  max-width: 65%;
}

.demo-bg {
  background: #F8F9FA;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.exhibit-prod {
  padding: 0 12px;
}

.exhibit-prod .spin a.custom_previous {
  width: 24px;
  height: 24px;
  background-image: url(../images/360-arrow-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.exhibit-prod .spin a.custom_next {
  width: 24px;
  height: 24px;
  background-image: url(../images/360-arrow-right.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.exhibit-prod .spin img {
  width: 24px;
  height: 24px;
  display: none;
  -webkit-touch-callout: none;
  /* Safari 長按選單 */
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.exhibit-prod .spin .demo-turn {
  color: var(--dy-green);
  margin: 0 24px;
  font-weight: bold;
  margin-top: 8px;
  font-size: 18px;
}

.exhibit-prod .spin .read-button {
  margin-top: 0;
}

.exhibit-prod .spin p {
  color: #ADB5BD;
  margin: 12px auto 20px;
  line-height: 1.3;
  font-size: 14px;
}


.exhibit .about-content p,
.exhibit .about-content .features {
  color: #6C757D;
  font-size: 18px;
  margin-bottom: 0;
}

.exhibit .about-content .features {
  font-size: 14px;
  margin-top: 24px;
}

.exhibit .about-content .features i,
.service-cont .service-item .features i,
.features.esg-box i {
  color: var(--dy-green);
  font-size: 16px;
  margin-right: 8px;
  animation: rotate 5s ease-in-out infinite;
  display: inline-block;
}

.automotive {
  border: none;
}

.automotive p {
  color: #60828B;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0;
}

.precision p {
  background: #FFF;
  color: #60828B;
  font-size: 20px;
  line-height: 1.5;
}

.precision ul li {
  background: #FFF;
  color: #60828B;
  font-size: 20px;
  line-height: 1.5;
}

.featured h4 {
  color: var(--dy-green);
}

.post-single-bg-img h1 {
  color: #FFF;
  font-size: 48px;
  line-height: 1.5;

}


.featured-item.style-2 .sub-title p {
  color: #60828B;
}

.featured-item.style-2 a img {
  transition: 0.5s;
}

.featured-item.style-2 a:hover img {
  transform: scale(1.05);
}

.prod-widget {
  border: 2px solid #DEE2E6;
  background: #FFF;
  padding: 20px;
}

.prod-widget .list-unstyled {

  margin-bottom: 0;
}

.prod-widget .level-title span {
  display: inline-block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
}

.prod-widget .level-title a {
  font-size: 18px;
  font-weight: 600;
}

.prod-widget .level-title i {
  padding-top: 1px;
}

.prod-widget .level-item {
  list-style-type: none;
  padding-left: 16px;
}

.prod-widget .level-item li {
  padding: 4px 0;
}

.prod-widget .level-item a:hover,
.prod-widget .level-title a:hover {
  color: var(--dy-green);
}

.accordion-item {
  border: none;
}

.accordion-button {
  transition: all .3s ease-out;
}

.accordion-button::after {
  content: "\F282";
  font-family: bootstrap-icons !important;
  line-height: 1;
  transform: rotate(0deg);
  transition: all .3s ease-out;
  color: var(--dy-gray1);
  background: none !important;
}

.accordion-button:hover,
.accordion-button:hover::after {
  color: var(--dy-green);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}



.pagination .page-item {
  background: #FFF;
}

.product-cont .nav-tabs .nav-link {
  width: 50%;
}

.prod-card>p {
  color: #495057;
}

.prod-format {
  margin-bottom: 40px;
}

.prod-format a {
  color: var(--dy-green);
}

.prod-format h2 {
  font-size: 24px;
  font-weight: bold;
}

.prod-format p {
  color: #6C757D;
}

.news-cont .service-item {
  border: 1px solid #DEE2E6;
}

.widget_themeht_recentpost {
  margin-top: 40px;
  background: #FFF;
  padding: 20px;
  border: 2px solid var(--themeht-border-light-color);
}

.widget_themeht_recentpost ul {
  padding-left: 0;
  margin-bottom: 0;
}

.news-cont input[type="search"] {
  padding: .375rem 48px .375rem 0;
}

.widget_themeht_recentpost a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;

  display: -webkit-box;  
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.widget_themeht_recentpost a:hover {
  color: var(--dy-green);
}

.blog-share .share {
  color: var(--xyc-gray);
  font-size: 15px;
  border-top: 1px solid var(--themeht-border-light-color);
  padding: 20px 0 0;
  margin-top: 20px;
}

.blog-share .share img {
  width: auto !important;
  height: 15px;
  -webkit-filter: grayscale(1);
  transform: translateY(-2px);
  transition: 0.5s;
}

.blog-share .share {
  letter-spacing: 1px;
}

.blog-share .share svg,
.blog-share .share i {
  width: 16px;
  font-size: 16px;
  padding-right: 3px;
}

.blog-share .share a {
  color: var(--themeht-body-color);
  font-family: sans-serif;
  margin-right: 4px;
  margin: 3px 5px 3px 0;
  display: inline-block;
  white-space: nowrap;
  transition: 0.5s;
}

.blog-share .share a.fb-btn:hover {
  color: #3b5998;
}

.blog-share .share a.line-btn:hover {
  color: #00c300;
}

.blog-share .share a.copy-btn:hover {
  color: var(--dy-green);
}

.contact-page .themeht-btn {
  background: var(--dy-gray2);
  color: #FFF;
  border: none;
}

.contact-page .themeht-btn:hover {
  background: var(--dy-green);
}

.contact-form {
  padding: 40px 48px;
  border: 1px solid var(--themeht-border-light-color);
}

.lds-facebook {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 44px;
}

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #999;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
  left: 17px;
  animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
  left: 28px;
  animation-delay: 0;
}

@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 26px;
  }

  50%,
  100% {
    top: 19px;
    height: 13px;
  }
}

.contact-code .code-input {
  width: 180px !important;
  height: 63px !important;
  display: inline !important;
  margin-bottom: 12px;
  padding: 0 8px;
}

.contact-code img {
  width: auto;
  margin-left: 10px;
  margin-bottom: 5px;
  margin-top: 1px;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-send {
  display: flex;
  flex-direction: column;
}

.contact-send button {
  margin-top: 4px;
  transition: 0.5s;
}

.send-data {
  display: flex;
  justify-content: center;
}

.send-data span {
  line-height: 52px;
  font-size: 16px;
  color: #999;
  letter-spacing: 1px;
}

.agree-terms {
  margin: 12px 0 20px;
}

.privacy-btn {
  color: var(--dy-green) !important;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
  background-size: 0 100%;
}

.privacy-btn:hover {
  background-size: 100% 100%;
}

.factory-item {
  margin-bottom: 20px;
}

.factory-item h2 {
  font-size: 24px;
  color: var(--dy-green);
}

.factory-item .elementor-icon-list-item a {
  font-size: 16px;
  display: inline-block;
}

.factory-item .elementor-icon-list-item {
  margin-bottom: 8px;
}

.factory-item .elementor-icon-list-items {
  background: #FFF;
}

.pnf-title {
  font-size: 100px;
  line-height: 1;
  font-weight: bolder;
  font-family: var(--themeht-typography-secondary-font-family);
  color: var(--dy-green);
}

.maintenance-img {
  width: 400px;
}

.maintenance-title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: bolder;
  font-family: var(--themeht-typography-secondary-font-family);
  color: var(--dy-gray1);
}

.maintenance .social-icons.footer-social li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 22px;
  color: var(--themeht-black-color);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

/* ===== Contact Page - File Upload ===== */
.file-upload-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-upload-row input[type="file"] {
  flex: 1;
  border-radius: 0;
  position: relative;
}

.btn-add-file,
.btn-remove-file {
  width: 36px;
  height: 36px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.btn-add-file {
  background-color: var(--dy-gray2);
  color: white;
}

.btn-add-file:hover {
  background-color: var(--dy-green);
}

.btn-remove-file {
  background-color: var(--dy-gray1);
  color: white;
}

.btn-remove-file:hover {
  background-color: var(--dy-green);
}

#file-upload-container label {
  color: #6C757D;
}

.service-cont {
  background-image: url(images/service/servicebg_2000x1333.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  background-attachment: fixed;
}

.service-cont .service-wrap {
  padding: 70px;
  border: 7px double var(--dy-green);
}

.service-wrap p,
.service-wrap span,
.service-wrap .accordion-body {
  color: #6C757D;
}

.service-wrap .precision>p {
  background: transparent;
  color: #60828B;
  font-size: 20px;
  line-height: 1.5;
}

.service-wrap .precision.black>p {
  color: var(--themeht-body-color);
}

.service-wrap .service-desc {
  background-color: #F8F9FA;
}

.service-wrap .featured-item.style-1 .feature-number {
  background: var(--dy-green);
  color: var(--themeht-white-color);
}

.service-wrap .featured-title h5 {
  font-weight: 400;
}

.job-portal-wrap {
  padding: 50px 0 30px;
}

.job-portal-title {
  font-family: var(--themeht-typography-body-font-family);
  font-size: 24px;
  font-weight: 600;
  color: var(--themeht-text-color);
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 0;
  margin-right: 20px;
  border-bottom: 2px solid var(--dy-green);
}

.job-portal-wrap .themeht-btn {
  display: inline-flex;
  align-items: center;
}

.job-portal-wrap .themeht-btn img {
  width: auto;
  height: 20px;
}

/* ===== Contact Page - location ===== */
.contact-pills .nav-item .nav-link {
  border-radius: 0;
  color: #FFF !important;
  background-color: var(--dy-gray2);
}

.contact-pills .nav-item .nav-link.active {
  background-color: var(--dy-gray1);
}

.contact-pills .nav-item .nav-link:hover {
  background-color: var(--dy-green);
}

.location-item:not(:last-child) {
  margin-bottom: 48px;
}

.location-item .location-name {
  color: var(--dy-green);
}

.location-item .location-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.location-item .location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-info .location-menu {
  list-style-type: none;
  padding: 16px 0;
}

.location-info .location-menu li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--dy-green);
}

.location-info .location-menu li>span {
  display: inline-block;
  width: 120px;
  font-weight: 600;
  color: var(--dy-green);
}

.location-info .location-menu li>p,
.location-info .location-menu li>a {
  margin-bottom: 0;
  width: calc(100% - 120px);
}

.location-info .location-menu li>a:hover {
  color: var(--dy-green);
}

@media screen and (max-width: 768px) {
  .location-info .location-menu li {
    display: grid;
  }

  .location-info .location-menu li>p,
  .location-info .location-menu li>a {
    width: 100%;
  }
}


/* Service Table */
table.service-table {
  width: 100%;
  border-collapse: collapse;
}

table.service-table th,
table.service-table td {
  padding: 16px;
  border: 0;
  border-bottom: 1px solid #dee2e6;
}

table.service-table th {
  font-weight: normal;
}

table.service-table tbody tr:last-child td {
  border-bottom: none;
}

table.service-table td p {
  margin-bottom: 0;
}

.faq-cont .theme-title h2 {
  color: var(--dy-green);
}

.primary-footer .logo-imgs .logo-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.primary-footer .logo-imgs .logo-img:hover img {
  filter: grayscale(0);
}

.competition-cont .service-item.style-3:hover {
  background-color: var(--themeht-white-color);
  box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
}

.competition-cont .service-item.style-3:hover .service-title span {
  color: var(--themeht-text-color);
  background-size: 0 100%;
  display: inline;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  transition: .9s cubic-bezier(.32, .32, .15, 1.17);
}

.competition-cont .service-item.style-3:hover p {
  color: var(--themeht-body-color);
}

.competition-cont .service-item.style-3:hover .service-icon {
  color: var(--themeht-text-color);
}

.competition-cont .service-item.style-3:hover .service-top {
  border-bottom: 1px solid var(--themeht-border-light-color);
}

.competition-cont .service-cat span {
  background-color: var(--dy-green);
  color: var(--themeht-white-color);
  padding: 0 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.competition-cont .service-item .img-icon {
  max-width: 70px;
}