/* ------------------------------------------------
  Project:   Doctean - Medical And Healthcare WordPress Theme
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. Section Title
  2. Button
  3. Marquee Text
  4. Accordion
  5. Social Icons
  6. Team
  7. Counter
  8. Blog - Post
  9. Featured Box
  10. Testimonials
  11. Service Box
  12. Price Table   
  13. Progress Bar
  14. Portfolio
  15. Awards
  16. Image Reavel Animation
  17. Split Slider
  18. Ht Tab
  19. Ht Button Shape
  20. Arrow Button
  21. Timetable
  22. Info Item
  23. Swiper Arrow
  24. Swiper Dot Pagination


/* ------------------------
    Section Title
------------------------*/

.theme-title h6 {
  position: relative;
  font-family: var(--themeht-typography-body-font-family);
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--themeht-text-color);
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  background: white;
  padding: 8px 20px;
  border-radius: 100px;
}

.theme-title p {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 30px;
}

.theme-title h2 {
  margin-bottom: 0;
  overflow: hidden;
}

.theme-title.text-white h2 {
  color: var(--themeht-white-color);
}

.theme-title.text-white p {
  color: var(--themeht-light-color);
}


/* ------------------------
    Button
------------------------*/
.themeht-btn {
  padding: 12px 30px;
  position: relative;
  border: 0;
  z-index: 9;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
}

.themeht-btn.btn-width {
  width: 100%;
  text-align: center;
}

.white-btn,
a.white-btn {
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
}

.white-btn:hover,
a.white-btn:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.primary-btn,
a.primary-btn {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.primary-btn:hover,
a.primary-btn:hover {
  background: var(--themeht-secondary-color);
  color: var(--themeht-white-color);
}

.dark-btn,
a.dark-btn {
  background: var(--themeht-secondary-color);
  color: var(--themeht-white-color);
}

.dark-btn:hover,
a.dark-btn:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-secondary-color);
}

.primary-bg .dark-btn:hover,
.primary-bg a.dark-btn:hover,
.primary-bg .white-btn:hover,
.primary-bg a.white-btn:hover {
  background: var(--themeht-secondary-color);
  color: var(--themeht-white-color);
}

.themeht-btn.outline-btn {
  border: 1px solid var(--themeht-text-color);
  color: var(--themeht-text-color);
}

.themeht-btn.outline-btn:hover {
  border-color: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.themeht-btn.white-outline-btn {
  border: 1px solid var(--themeht-white-color);
  color: var(--themeht-white-color);
}

.themeht-btn.white-outline-btn:hover {
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
}

.themeht-btn:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-secondary-color);
}

.themeht-btn svg {
  margin-left: 10px;
}

.themeht-btn svg line {
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-dasharray: 25px;
  stroke-dashoffset: 50px;
  transition: stroke-dashoffset 1s cubic-bezier(.61, 1, .88, 1);
  stroke: var(--themeht-text-color);
}

.themeht-btn.dark-btn svg line,
.themeht-btn.white-outline-btn svg line,
.themeht-btn.primary-btn svg line {
  stroke: var(--themeht-white-color);
}

.themeht-btn:hover svg line {
  stroke-dashoffset: 0;
}

.themeht-btn:hover svg line {
  stroke: var(--themeht-white-color);
}

.themeht-btn.outline-btn:hover svg line {
  stroke: var(--themeht-white-color);
}

.themeht-btn.white-outline-btn:hover svg line {
  stroke: var(--themeht-text-color);
}

.themeht-btn span {
  -webkit-transition: all 0s ease-in-out 0s;
  -moz-transition: all 0s ease-in-out 0s;
  -ms-transition: all 0s ease-in-out 0s;
  -o-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
}

.read-button {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  overflow: hidden;
  padding-bottom: 2px;
}

.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);
}

.read-button::after {
  position: absolute;
  width: 100%;
  left: 0;
  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);
}

.read-button:hover::after {
  transform: translate3d(0, 0, 0);
}

.read-button::before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  background-color: var(--themeht-primary-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:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.read-button svg {
  margin-left: 10px;
}

.read-button svg line {
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--themeht-text-color);
}

.read-button:hover svg line {
  stroke-dasharray: 20px;
  stroke-dashoffset: 40px;
  transition: stroke-dashoffset .6s cubic-bezier(.61, 1, .88, 1) .3s;
  stroke: var(--themeht-primary-color);
}

.round-btn {
  position: relative;
  display: inline-block;
}

.round-btn-bg svg {
  fill: var(--themeht-white-color);
  stroke: var(--themeht-primary-color);
  transition: .5s;
}

.round-btn:hover .round-btn-bg svg {
  animation: rotate 10s linear infinite;
  fill: var(--themeht-primary-color);
}

.round-btn-text svg {
  fill: var(--themeht-secondary-color);
  margin-bottom: 15px;
  transition: .5s;
  width: 20px;
  height: 20px;
}

.round-btn-text {
  color: var(--themeht-text-color);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.round-btn-text span {
  display: block;
}

.round-btn:hover .round-btn-text svg {
  fill: var(--themeht-white-color);
}

.round-btn:hover .round-btn-text {
  color: var(--themeht-white-color);
}


/* ------------------------
 Marquee Text
------------------------*/
.marquee-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.marquee-inner {
  display: flex;
  will-change: transform;
  animation: marquee 90s linear infinite;
}

.marquee-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-text span {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--themeht-text-color);
}

.marquee-text i {
  margin: 0 40px;
  font-size: 20px;
  line-height: 1;
}

.marquee-text.style1 span {
  text-transform: uppercase;
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--themeht-typography-secondary-font-family);
  color: var(--themeht-text-color);
  position: relative;
}

.marquee-text.style1 i {
  font-size: 20px;
  line-height: 1;
  color: var(--themeht-primary-color);
}

.marquee-text.style3 span {
  font-size: 100px;
  line-height: 120px;
  color: var(--themeht-text-color);
}

.marquee-text.style3:nth-child(2n+2) span {
  color: var(--themeht-primary-color)
}

.marquee-text.style3 i {
  font-size: 40px;
  -webkit-text-stroke: inherit;
  color: var(--themeht-primary-color);
}

.marquee-text.text-white.style1 span {
  color: var(--themeht-white-color);
}

.marquee-text.text-theme.style1 {
  color: var(--themeht-primary-color);
}


/* ------------------------
 Accourdion
------------------------*/
.elementor-accordion .elementor-accordion-item {
  margin-bottom: 20px;
  border: none !important;
  padding: 30px;
  background: var(--themeht-white-color);
  border-radius: 30px;
}

.elementor-accordion .elementor-accordion-item:last-child {
  margin-bottom: 0;
}

body .elementor-widget-accordion .elementor-accordion .elementor-tab-title {
  padding: 0;
}

body .elementor-widget-accordion .elementor-accordion .elementor-tab-title .elementor-accordion-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500 !important;
  text-transform: capitalize;
  transition: all 0s ease-in-out 0s;
  color: var(--themeht-text-color);
  font-family: var(--themeht-typography-body-font-family);
}

body .elementor-widget-accordion .elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-title {
  color: var(--themeht-primary-color)
}

body .elementor-widget-accordion .elementor-accordion-icon {
  color: var(--themeht-text-color);
  font-size: 25px;
}

body .elementor-widget-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon {
  color: var(--themeht-primary-color)
}

body .elementor-widget-accordion .elementor-accordion .elementor-tab-content {
  color: var(--themeht-body-color);
  font-family: var(--themeht-typography-body-font-family);
  padding: 0;
  padding-top: 15px;
  border-top: 1px solid var(--themeht-border-color);
  margin-top: 15px;
}

body .elementor-widget-accordion .elementor-accordion .elementor-tab-content p {
  margin-bottom: 0;
}


/* ------------------------
    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;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  margin: 0;
  border: 0;
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.social-icons li a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}


/* ------------------------
    Team
------------------------*/
.team-member {
  position: relative;
}

.team-images {
  position: relative;
  overflow: hidden;
  border-radius: 30px 0 30px 30px;
}

.team-member .team-desc h4 {
  margin-bottom: 0;
}

.team-member .team-desc h4 a {
  color: var(--themeht-text-color);
}

.team-member .team-desc a:hover {
  color: var(--themeht-primary-color);
}

.team-member .team-desc span {
  background: var(--themeht-light-color);
  padding: 7px 15px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  line-height: 1;
  color: var(--themeht-secondary-color);
  margin-top: 8px;
  display: inline-block;
}

.team-member img {
  width: 100%;
}

.team-social-icon li {
  display: inline-block;
  margin: 0 5px;
}

.team-social-icon li a {
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.team-social-icon li a:hover {
  background: var(--themeht-secondary-color);
  color: var(--themeht-white-color);
}

.team-share-icon {
  z-index: 9;
  background: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 0;
}

.team-social-icon {
  z-index: 9;
  text-align: center;
  position: absolute;
  top: 20px;
  right: 8px;
  transform: translateX(-60px);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.team-member:hover .team-social-icon {
  transform: translateX(-80px);
  opacity: 1;
}

.team-member.style-1 {
  background: var(--themeht-white-color);
  border-radius: 30px;
  overflow: hidden;
}

.team-member.style-1 .team-images:before {
  position: absolute;
  content: '';
  width: 120%;
  height: 0%;
  z-index: 2;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--themeht-primary-color) 5.83%, #46544D00 60.55%);
  -webkit-transition: .5s;
  -khtml-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  bottom: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
}

.team-member.style-1 .team-images:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--themeht-white-color) 20%, #FFFFFF00 40.55%);
  -webkit-transition: .5s;
  -khtml-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  bottom: 0;
  left: 0;
}

.team-member.style-1:hover .team-images:before {
  height: 100%;
}

.team-member.style-1 .team-desc {
  padding: 0 20px;
  position: absolute;
  bottom: 30px;
  z-index: 99;
  left: 0;
  text-align: center;
  width: 100%;
}

.team-member.style-1:hover .team-desc h4 a {
  color: var(--themeht-white-color);
}

.team-member.style-2 {
  background: var(--themeht-white-color);
  border-radius: 30px;
  text-align: center;
  padding: 70px 30px 40px;
}

.team-member.style-2 .team-desc {
  padding-top: 30px;
}

.team-member.style-2 .team-desc ul {
  border-top: 1px solid var(--themeht-border-color);
  margin-top: 20px;
  padding-top: 20px;
  display: inline-block;
}

.team-member.style-2 .team-desc ul li {
  margin-bottom: 10px;
}

.team-member.style-2 .team-desc ul li:last-child {
  margin-bottom: 0;
}

.team-member.style-2 .team-desc ul li a {
  font-weight: 500;
}

.team-member.style-2 .team-desc ul li i {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  color: var(--themeht-primary-color);
}

.team-member.style-2 .team-images {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin: 0 auto;
}

.team-member.style-2 .team-social-icon li a {
  background: var(--themeht-light-color);
}

.team-member.style-2 .team-social-icon li a:hover {
  background: var(--themeht-primary-color);
}

/* ---- team style-4 ----*/
.team-member.style-4 .team-desc h4 {
  font-size: 60px;
  line-height: 70px;
}

.team-member.style-4:last-child .team-images {
  top: inherit;
  bottom: 0;
}

.team-member.style-4 .team-desc {
  position: relative;
  display: flex;
  align-items: center;
}

.team-member.style-4 .team-desc .team-cat {
  min-width: 130px;
}


/* ---- team style-4 ----*/
.team-member.style-4,
.team-member.style-5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.team-member.style-4:last-child,
.team-member.style-5:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.team-member.style-4 .team-desc h4 a,
.team-member.style-5 .team-desc h4 a {
  display: flex;
  text-shadow: 1px 1px 0 rgb(255 255 255 / 80%), -1px -1px 0 rgb(255 255 255 / 80%), 1px -1px 0 rgb(255 255 255 / 80%), -1px 1px 0 rgb(255 255 255 / 80%), 1px 1px 0 rgb(255 255 255 / 80%);
  -webkit-text-fill-color: var(--themeht-primary-color);
  -webkit-text-stroke-width: 0;
  color: transparent;
  letter-spacing: .8px;
  width: auto;
  position: relative;
  -webkit-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.team-member.style-4 .team-desc h4 a:before,
.team-member.style-5 .team-desc h4 a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  content: attr(data-text);
  -webkit-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
  -webkit-text-fill-color: var(--themeht-white-color);
  -webkit-text-stroke: transparent;
  max-width: 0;
}

.team-member.style-4.active .team-desc h4 a:before,
.team-member.style-4:hover .team-desc h4 a:before,
.team-member.style-5.active .team-desc h4 a:before,
.team-member.style-5:hover .team-desc h4 a:before {
  max-width: 100%;
}

.team-member.style-4 .team-images,
.team-member.style-5 .team-images {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  transform-origin: top center;
  border-radius: 100%;
  overflow: hidden;
  display: block;
  width: 350px;
  height: 350px;
  opacity: 1;
  transition: .35s cubic-bezier(.25, .46, .45, .94);
  transition-duration: 0.35s;
  -webkit-clip-path: circle(0 at 50% 50%);
  clip-path: circle(0 at 50% 50%);
}

.team-member.style-4:hover .team-images,
.team-member.style-4.active .team-images,
.team-member.style-5:hover .team-images,
.team-member.style-5.active .team-images {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0) skewY(0) scaleZ(1);
  visibility: visible;
  transition-duration: .7s;
  z-index: 5;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
}

.text-bg .team-member.style-4 .team-desc h4 a,
.text-bg .team-member.style-5 .team-desc h4 a {
  -webkit-text-fill-color: var(--themeht-text-color);
}

.secondary-bg .team-member.style-4 .team-desc h4 a,
.secondary-bg .team-member.style-5 .team-desc h4 a {
  -webkit-text-fill-color: var(--themeht-secondary-color);
}


.elementor-widget-team-sticky-two .team-list {
  padding-left: 50%;
}

.team-member.style-5 .team-desc h4 {
  font-size: 50px;
  line-height: 60px;
}

.team-member.style-5 .team-images img {
  transform: inherit;
}

.team-member.style-5 {
  position: inherit;
}

.team-member.style-5 .team-images {
  width: 600px;
  height: 600px;
  top: 50%;
  margin-top: -300px;
  left: 0;
  right: inherit;
}

.team-member.style-5 .team-desc span {
  margin-top: 0;
  margin-bottom: 8px;
}

.team-single-box {
  background: var(--themeht-white-color);
  border-radius: 30px;
  position: relative;
}

.team-contact {
  padding: 30px 20px;
}

.team-meta li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.team-meta li:last-child {
  margin-bottom: 0;
}

.team-meta li i {
  font-size: 26px;
  color: var(--themeht-primary-color);
  vertical-align: middle;
  margin-right: 15px;
}

.team-meta li span {
  margin-right: 10px;
  font-weight: 500;
  color: var(--themeht-text-color);
}


/* ------------------------
    Counter
------------------------*/
.counter {
  position: relative;
  z-index: 9;
}

.counter .counter-desc span {
  font-size: 50px;
  line-height: 1;
  color: var(--themeht-text-color);
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}

.counter .counter-desc .count-number+span {
  position: relative;
}

.counter h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.counter-icon i {
  font-size: 50px;
  line-height: 1;
  display: inline-block;
  color: var(--themeht-primary-color);
  margin-bottom: 20px;
}

.counter .counter-desc .count-number+span {
  font-size: 30px;
  vertical-align: middle;
  line-height: 1;
}

.counter.style-2 {
  display: flex;
}

.counter.style-2 .counter-icon {
  width: 100px;
  height: 100px;
  border: 2px solid var(--themeht-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
}

.counter.style-2 .counter-icon i {
  margin-bottom: 0;
  font-size: 40px;
}

.counter.style-2 .counter-icon:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  background-color: var(--themeht-white-color);
  transition: all ease 0.4s;
  z-index: -1;
  border-radius: inherit;
  transform: scale(1.3);
  border-radius: 100%;
}

.counter.style-3 {
  display: flex;
  align-items: flex-start;
}

.counter.style-3 .counter-desc span {
  font-weight: 600;
}

.counter.style-3 .counter-icon {
  margin-right: 10px;
  flex-shrink: 0;
}


/* ------------------------
    Blog - Post
------------------------*/
.post-card {
  position: relative;
  display: inline-block;
  width: 100%;
}

.post-single-page .post-card {
  border: none;
}

.post-card .post-image {
  position: relative;
}

.post-card .post-image img {
  width: 100%;
}

.post-card .post-title h4 {
  text-transform: capitalize;
  word-break: break-word;
}

.post-card .post-title h4 a {
  color: var(--themeht-text-color);
}

.post-card .post-title h4 a:hover {
  color: var(--themeht-primary-color);
}

.post-card .post-bottom li {
  color: var(--themeht-text-color);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  margin-right: 15px;
}

.post-card .post-bottom li:last-child {
  margin-right: 0;
}

.post-bottom li i {
  font-size: 16px;
  color: var(--themeht-primary-color);
  margin-right: 5px;
  vertical-align: middle;
  font-weight: normal;
}

.post-card .post-bottom li span {
  display: inline;
}

.post-single-page .post-desc h1,
.portfolio-single h1 {
  line-height: 70px;
  font-size: 60px;
  margin-bottom: 20px;
  word-break: break-all;
}

.has-post-thumbnail .post-card .post-desc {
  padding-top: 30px;
}

.has-post-thumbnail .post-thumbnail img {
  border-radius: 20px;
}

.tags-links a {
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
  padding: 5px 20px;
  margin: 4px 8px 4px 0;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  text-transform: capitalize;
}

.tags-links a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.themeht-blogs .post {
  margin-bottom: 70px;
}

.blog .post-title h4 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 15px;
}

.edit-link {
  margin-left: 10px;
  display: none !important;
}

.edit-link .post-edit-link {
  border: 1px solid var(--themeht-border-color);
  padding: 2px 10px;
}

.post-single-page .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.theme-tags {
  clear: both;
  margin-top: 40px;
}

.post-card.ht-sticky-post {
  margin-left: 1px;
  display: flex;
  align-items: center;
  background: var(--themeht-white-color);
  border-radius: 30px;
  padding: 60px 100px !important;
}

.pin-spacer:nth-child(2n+2) .post-card.ht-sticky-post {
  flex-direction: row-reverse;
}

.pin-spacer:nth-child(2n+2) .post-card.ht-sticky-post .arrow-button.top {
  left: 0;
  right: inherit;
}

.pin-spacer:nth-child(2n+2) .post-card.ht-sticky-post .ht-shape-btn {
  left: 0;
  right: inherit;
  transform: rotate(-90deg);
}

.post-card.ht-sticky-post .post-image {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
  width: 400px;
  height: 400px;
}

.post-card.ht-sticky-post .post-image img {
  object-fit: cover;
  height: 100%;
}

.post-card.ht-sticky-post .post-top {
  display: flex;
  align-items: center;
  border: 1px solid var(--themeht-border-color);
  padding: 6px;
}

.post-card.ht-sticky-post .post-date {
  line-height: 1;
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  margin-right: 15px;
}

.post-card.ht-sticky-post .post-date i {
  margin-right: 8px;
  font-size: 18px;
}

.post-card.ht-sticky-post .post-date a {
  color: var(--themeht-white-color);
}

.post-card.ht-sticky-post .post-desc {
  padding: 50px 100px;
}

.post-card.ht-sticky-post .post-desc p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
}

.post-card.ht-sticky-post .post-desc p,
.post-card.post-classic .post-desc p {
  margin-bottom: 0;
}

.post-card.style-1 .post-image,
.post-card.style-2 .post-image {
  border-radius: 30px;
  overflow: hidden;
}

.post-card.style-1 .post-desc {
  padding-top: 30px;
}

.post-card.style-1 .post-desc h4 {
  margin-bottom: 0;
}

.post-card.style-2 {
  background: var(--themeht-white-color);
  border-radius: 30px;
  overflow: hidden;
}

.post-card.style-2 .post-desc {
  padding: 30px;
  padding-right: 50px;
}

.post-card.style-2 .post-admin {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 9;
  background: var(--themeht-white-color);
  font-size: 24px;
}

.post-card.post-classic {
  border-radius: 30px;
  overflow: hidden;
  border-bottom-right-radius: 0;
  background: var(--themeht-white-color);
}

.post-classic .post-desc {
  position: relative;
  padding: 40px 100px 40px 40px;
}

.post-classic .post-image {
  border-radius: 20px;
}

.post-single-page .post-card img {
  border-radius: 20px;
}

/* ---- Sidebar Widget ----*/
.themeht-sidebar .widget {
  padding: 30px;
  background: var(--themeht-white-color);
  border-radius: 30px;
}

.widget .widget-title,
.widget .wp-block-heading,
.wp-block-archives__label,
.wp-block-search__label {
  position: relative;
  color: var(--themeht-text-color);
  font-family: var(--themeht-typography-secondary-font-family);
  text-transform: capitalize;
  font-size: 24px;
  line-height: 34px;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  padding-left: 30px;
}

.widget .widget-title::before,
.widget .wp-block-heading::before,
.wp-block-archives__label::before,
.wp-block-search__label::before {
  content: '\f11e';
  font-family: flaticon_medical_collection !important;
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  color: var(--themeht-primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.themeht-sidebar .widget {
  margin-bottom: 50px;
}

.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 !important;
  padding-bottom: 0;
}

.themeht-sidebar .widget .tagcloud a,
.wp-block-tag-cloud a {
  background: var(--themeht-light-color);
  border-radius: 100px;
  padding: 5px 15px;
  display: inline-block;
  text-align: center;
  font-size: 13px !important;
  font-weight: 500;
  line-height: 23px;
  text-transform: uppercase;
  margin: 5px 5px 15px 0;
}

.themeht-sidebar .widget .tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.widget_categories li,
.wp-block-categories li {
  color: var(--themeht-body-color);
  position: relative;
  padding-left: 20px;
  border-bottom: 1px solid var(--themeht-border-color);
  padding-bottom: 12px;
  margin-bottom: 12px !important;
}

.widget.widget_categories ul li:before,
.wp-block-categories li:before {
  content: "";
  background-color: var(--themeht-primary-color);
  position: absolute;
  left: 0px;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.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: center;
  border-bottom: 1px solid var(--themeht-border-color);
  padding-bottom: 15px;
}

.widget_themeht_recentpost li:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.themeht-post-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  margin-right: 20px;
}

.themeht-post-image img {
  border-radius: 20px;
}

.themeht-post-date {
  display: block;
  font-size: 13px;
  color: var(--themeht-primary-color);
  margin-top: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}

.search-form button[type="submit"] {
  background: var(--themeht-text-color);
  color: var(--themeht-white-color);
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 6px;
  padding: 0;
  border: none;
  top: 50%;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 40px;
  transform: translateY(-50%);
}

.search-form button[type="submit"]:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.wp-block-search__inside-wrapper {
  position: relative;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  position: absolute;
  padding: 0;
  border: none;
  background: transparent !important;
  font-size: 0;
  right: 6px;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:before {
  font-weight: normal;
  position: absolute;
  content: "\f52a";
  font-family: 'bootstrap-icons';
  color: var(--themeht-white-color);
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  right: 0;
  padding: 0;
  border: none;
  top: 50%;
  z-index: 1;
  background: var(--themeht-text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover:before {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.themeht-sidebar .widget li a,
.themeht-sidebar .widget a {
  text-transform: capitalize;
}

.themeht-sidebar .widget li a {
  font-size: 13px;
  line-height: 23px;
  font-weight: 500;
  color: var(--themeht-text-color);
  display: inline-block;
  text-transform: uppercase;
}

.themeht-sidebar .widget li a:hover {
  color: var(--themeht-primary-color);
}

.widget_categories li:last-child,
.wp-block-categories li:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.widget_themeht_recentpost ul li .themeht-post-content a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
}

.themeht-sidebar .gallery,
.themeht-sidebar .gallery figure {
  margin-bottom: 0;
}

.gallery-item img {
  border-radius: 20px;
}

/* ---- Post Comments ----*/
.post-comment {
  margin-top: 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 {
  padding: 50px;
  margin-top: 50px;
}

.comment-author img {
  margin-right: 15px;
  width: 100px;
  height: 100px;
  display: inline-block;
  /* padding: 8px; */
  border-radius: 50%;
}

.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 {
  border: 1px solid #c4c6cb;
  list-style-type: none;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 30px;
}

.post-comment li.trackback .comment-body,
.post-comment li.pingback .comment-body {
  background: var(--themeht-white-color);
  list-style-type: none;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 30px;
}

.post-comment li.comment .comment-body p,
.post-comment li.trackback .comment-body p,
.post-comment li.pingback .comment-body p {
  margin-bottom: 0;
}

.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: 500;
}

.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: 0;
}

.comment-respond {
  padding: 30px;
  background: var(--themeht-white-color);
  margin-top: 30px;
  border-radius: 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 {
  border-radius: 100px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
  text-transform: uppercase;
  padding: 5px 20px 5px 40px;
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  display: inline-block;
}

.comment-reply-link:hover {
  background: var(--themeht-secondary-color);
  color: var(--themeht-white-color);
}

.comment-reply-link:before {
  content: '\f520';
  font-family: 'bootstrap-icons';
  font-size: 20px;
  position: absolute;
  left: 14px;
  top: 5px;
  font-weight: normal;
}

#comments small #cancel-comment-reply-link {
  margin-left: 15px;
  font-size: 22px;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin-top: 40px;
  margin-bottom: 0;
  clear: both;
}

.site-main .comment-navigation .nav-links a,
.site-main .posts-navigation .nav-links a,
.site-main .post-navigation .nav-links a {
  display: inline-block;
  transition: all 0s ease-in-out 0s;
  position: relative;
}

.site-main .comment-navigation .nav-links a:hover,
.site-main .posts-navigation .nav-links a:hover,
.site-main .post-navigation .nav-links a:hover {
  color: var(--themeht-secondary-color);
}

.nav-title {
  display: block;
  word-break: break-word;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--themeht-typography-secondary-font-family);
  margin-top: 10px;
}

.site-main .comment-navigation .nav-links .nav-subtitle,
.site-main .posts-navigation .nav-links .nav-subtitle,
.site-main .post-navigation .nav-links .nav-subtitle {
  position: relative;
  padding-left: 50px;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 7px;
}

.site-main .comment-navigation .nav-links .nav-next .nav-subtitle,
.site-main .posts-navigation .nav-links .nav-next .nav-subtitle,
.site-main .post-navigation .nav-links .nav-next .nav-subtitle {
  padding-left: 0;
  padding-right: 50px;
}

.site-main .comment-navigation .nav-links .nav-previous .nav-subtitle-arrow,
.site-main .posts-navigation .nav-links .nav-previous .nav-subtitle-arrow,
.site-main .post-navigation .nav-links .nav-previous .nav-subtitle-arrow,
.site-main .comment-navigation .nav-links .nav-next .nav-subtitle-arrow,
.site-main .posts-navigation .nav-links .nav-next .nav-subtitle-arrow,
.site-main .post-navigation .nav-links .nav-next .nav-subtitle-arrow {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 43px;
  display: flex;
  overflow: hidden;
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  border-radius: 100%;
}

.site-main .comment-navigation .nav-links .nav-previous .nav-subtitle-arrow,
.site-main .posts-navigation .nav-links .nav-previous .nav-subtitle-arrow,
.site-main .post-navigation .nav-links .nav-previous .nav-subtitle-arrow {
  left: 0px;
}

.site-main .comment-navigation .nav-links .nav-next .nav-subtitle-arrow,
.site-main .posts-navigation .nav-links .nav-next .nav-subtitle-arrow,
.site-main .post-navigation .nav-links .nav-next .nav-subtitle-arrow {
  right: 0px;
}

.site-main .comment-navigation .nav-links .nav-previous .nav-subtitle-arrow i,
.site-main .posts-navigation .nav-links .nav-previous .nav-subtitle-arrow i,
.site-main .post-navigation .nav-links .nav-previous .nav-subtitle-arrow i {
  font-size: 26px;
  right: 4px;
  position: relative;
  margin-right: 15px;
  margin-left: 13px;
}


.site-main .comment-navigation .nav-links .nav-previous a:hover .nav-subtitle-arrow i,
.site-main .posts-navigation .nav-links .nav-previous a:hover .nav-subtitle-arrow i,
.site-main .post-navigation .nav-links .nav-previous a:hover .nav-subtitle-arrow i {
  right: 59px;
}

.site-main .comment-navigation .nav-links .nav-next .nav-subtitle-arrow i,
.site-main .posts-navigation .nav-links .nav-next .nav-subtitle-arrow i,
.site-main .post-navigation .nav-links .nav-next .nav-subtitle-arrow i {
  font-size: 26px;
  left: -35px;
  position: relative;
  margin-right: 15px;
}

.site-main .comment-navigation .nav-links .nav-next a:hover .nav-subtitle-arrow i,
.site-main .posts-navigation .nav-links .nav-next a:hover .nav-subtitle-arrow i,
.site-main .post-navigation .nav-links .nav-next a:hover .nav-subtitle-arrow i {
  left: 6px;
}


.site-main .comment-navigation .nav-links .nav-previous,
.site-main .posts-navigation .nav-links .nav-previous,
.site-main .post-navigation .nav-links .nav-previous {
  max-width: 300px;
}

.site-main .comment-navigation .nav-links .nav-next,
.site-main .posts-navigation .nav-links .nav-next,
.site-main .post-navigation .nav-links .nav-next {
  max-width: 300px;
  margin-left: auto;
}

.nav-next a:hover .nav-title,
.nav-previous a:hover .nav-title {
  color: var(--themeht-primary-color);
}

.post.sticky .post-card {
  background: var(--themeht-primary-color);
}

.post.sticky .post-card .post-title h4 a,
.post.sticky .post-card .post-desc p,
.post.sticky .post-card .post-bottom li,
.post.sticky .post-card .post-bottom li a,
.post.sticky .post-bottom li i {
  color: var(--themeht-white-color);
}


/* ------------------------
    Featured Box
------------------------*/
.featured-item.style-1 {
  position: relative;
  background: var(--themeht-white-color);
  padding: 50px;
  border-radius: 30px;
  z-index: 9;
}

.featured-number {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}

.featured-number span {
  background: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.featured-item.style-1 .featured-icon {
  display: inline-block;
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.featured-item.style-1 .featured-icon i {
  font-size: 70px;
  line-height: 70px;
  color: var(--themeht-text-color);
  display: inline-block;
}

.featured-item:hover .featured-icon i {
  animation: headShake 2s linear infinite;
}

.featured-item.style-1 .featured-title {
  border-bottom: 1px solid var(--themeht-border-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.featured-item.style-1 .featured-title h4 {
  margin-bottom: 0;
}

.featured-item p {
  margin-bottom: 0;
}

.featured-item.style-1 .featured-desc {
  padding-right: 100px;
}

.featured-item.text-white p {
  color: var(--themeht-light-color);
}

.featured-item.text-white h4,
.featured-item.text-white .featured-icon i {
  color: var(--themeht-white-color);
}

.featured-item.style-2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 9;
}

.featured-item.style-2 .featured-icon {
  margin-right: 20px;
}

.featured-item.style-2 .featured-icon i {
  font-size: 34px;
  line-height: 1;
  display: inline-block;
  background: var(--themeht-text-color);
  color: var(--themeht-white-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-item.style-2 .featured-title h4 {
  margin-bottom: 10px;
}

.featured-item.style-3 {
  position: relative;
  background: var(--themeht-white-color);
  padding: 30px;
  border-radius: 30px;
  z-index: 9;
}

.featured-item.style-3 .featured-icon {
  margin-bottom: 20px;
}

.featured-item.style-3 .featured-icon i {
  font-size: 50px;
  line-height: 1;
  color: var(--themeht-primary-color);
  display: inline-block;
}

.featured-item.style-3 h4 {
  margin-bottom: 15px;
}

.featured-item.style-4 {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 9;
}

.featured-item.style-4 .featured-icon {
  margin-right: 20px;
}

.featured-item.style-4 .featured-icon i {
  font-size: 34px;
  line-height: 1;
  display: inline-block;
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-item.style-4 .featured-title h4 {
  margin-bottom: 10px;
}


/* ------------------------
    Testimonials
------------------------*/
.testimonial.style-1 {
  position: relative;
}

.testimonial.style-1 .testimonial-content {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial.style-1 .testimonial-img {
  margin-right: 15px;
  width: 110px;
  height: 110px;
  border: 2px dashed var(--themeht-light-color);
  border-radius: 50%;
  padding: 10px;
}

.testimonial .testimonial-img img {
  border-radius: 50%;
}

.testimonial.style-1 p {
  font-size: 22px;
  line-height: 36px;
}

.testimonial-caption {
  position: relative;
  display: inline-block;
}

.testimonial .testimonial-caption span {
  color: var(--themeht-primary-color);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
}

.testimonial .testimonial-caption h4 {
  display: inline-block;
  margin-bottom: 0;
  color: var(--themeht-text-color)
}

.testimonial-quote-home {
  z-index: 9;
  font-size: 30px;
  line-height: 1;
  color: var(--themeht-white-color);
  top: 0;
  position: absolute;
  right: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeht-primary-color);
  border-radius: 50%;
}

.testimonial.text-white .testimonial-caption h4 {
  color: var(--themeht-white-color)
}

.testimonial.text-white .testimonial-caption span {
  color: var(--themeht-light-color)
}

.testimonial.style-2 {
  position: relative;
  background: var(--themeht-white-color);
  padding: 50px;
  border-radius: 30px;
}

.testimonial.style-2 .testimonial-content {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial.style-2 .testimonial-img {
  margin-right: 15px;
  width: 110px;
  height: 110px;
  border: 2px dashed var(--themeht-light-color);
  border-radius: 50%;
  padding: 10px;
}

.testimonial.style-2 .testimonial-quote {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  font-size: 30px;
  line-height: 1;
  color: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeht-primary-color);
  border-radius: 50%;
}

.testimonial.style-2 p {
  padding-right: 30px;
}

.testimonial.style-3 {
  position: relative;
  background: var(--themeht-text-color);
  border-radius: 30px;
}

.testimonial.style-3 .testimonial-content {
  position: relative;
  padding: 50px;
}

.testimonial.style-3 p {
  font-size: 22px;
  line-height: 36px;
  color: var(--themeht-light-color);
}

.testimonial.style-3 .testimonial-caption h4,
.testimonial.style-3 .testimonial-caption span {
  color: var(--themeht-white-color);
}

.testimonial.style-3 .testimonial-img img {
  border-radius: 20px;
}

.testimonial.style-3 .testimonial-quote {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  font-size: 30px;
  line-height: 1;
  color: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeht-primary-color);
  border-radius: 50%;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffb300;
  margin-right: 2px;
}

/* ------------------------
    Service Box
------------------------*/
.service-item .service-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.service-cat a {
  display: inline-block;
  background: var(--themeht-light-color);
  padding: 7px 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  line-height: 1;
  color: var(--themeht-secondary-color);
  margin-bottom: 5px;
}

.service-title h4 {
  text-transform: capitalize;
  margin-bottom: 0;
}

.service-item .service-title h4 a {
  color: var(--themeht-text-color);
}

.service-item .service-title h4 a:hover {
  color: var(--themeht-primary-color);
}

.service-item.style-1 {
  position: relative;
  background: var(--themeht-white-color);
  border-radius: 30px;
  overflow: hidden;
}

.service-item.style-1 .service-desc {
  position: relative;
  z-index: 9;
  padding: 30px;
  border-bottom-left-radius: 30px;
}

.service-item.style-1 .service-desc p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.service-item.style-1 .service-icon {
  font-size: 40px;
  line-height: 1;
  color: var(--themeht-text-color);
  z-index: 9;
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-item.style-1:hover .service-icon {
  color: var(--themeht-white-color);
  background: var(--themeht-primary-color);
}

.service-item.style-1 .service-title h4 a:hover {
  color: var(--themeht-primary-color);
}

.service-item.style-2 {
  position: relative;
  background-color: var(--themeht-white-color);
  border-radius: 30px;
  border-bottom-right-radius: 0;
  padding: 50px 30px;
  padding-right: 100px;
}

.service-item.style-2 .service-icon {
  color: var(--themeht-text-color);
  font-size: 60px;
  line-height: 1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.service-item.style-2:hover .service-icon {
  color: var(--themeht-primary-color);
}

.service-item.style-2 .service-desc p {
  margin-top: 15px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.primary-bg .service-item.style-2 {
  background-color: rgba(255, 255, 255, 0.05);
}

.primary-bg .service-item.style-2 .service-icon,
.primary-bg .service-item.style-2 .service-desc p {
  color: var(--themeht-light-color);
}

.primary-bg .service-item.style-2 .service-title h4 a {
  color: var(--themeht-white-color);
}

.primary-bg .service-item .arrow-button {
  background: rgba(255, 255, 255, 0.05);
}

.primary-bg .service-item .arrow-button svg line {
  stroke: var(--themeht-white-color);
}

.primary-bg .service-item .ht-shape-btn svg path {
  fill: var(--themeht-primary-color) !important;
}

.service-item.style-3 {
  position: relative;
  background: var(--themeht-white-color);
  border-radius: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item.style-3 .service-image {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  margin: 30px 0;
}

.service-item.style-3 .service-desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-item.style-3 p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  padding-right: 50px;
}

.service-item.style-3 .service-icon {
  font-size: 70px;
  line-height: 1;
  color: var(--themeht-text-color);
  flex-shrink: 0;
  margin-right: 20px;
}

.service-item.style-3:hover .service-icon {
  color: var(--themeht-primary-color);
}

.service-item.style-3 .service-title h4 a:hover {
  color: var(--themeht-primary-color);
}

.text-bg .service-item.style-3 .ht-shape-btn svg path {
  fill: var(--themeht-text-color) !important;
}


.service-item.style-4 {
  position: relative;
  background: var(--themeht-white-color);
  border-radius: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-item.style-4 .service-image {
  margin-top: 30px;
}

.service-item.style-4 .service-desc {
  padding-right: 50px;
}

.service-item.style-4 p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  margin-top: 20px;
}

.service-item.style-4 .service-icon {
  font-size: 40px;
  line-height: 1;
  color: var(--themeht-text-color);
  z-index: 9;
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-item.style-4:hover .service-icon {
  color: var(--themeht-primary-color);
}

.service-item.style-4 .service-title h4 a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.service-item .post-thumbnail {
  margin-bottom: 50px;
}

/*Service Sidebar*/
.service-widget.widget {
  margin-bottom: 20px;
  background-color: var(--themeht-white-color);
  border-radius: 30px;
  padding: 30px;
}

.service-widget ul {
  padding-left: 0;
}

.service-widget li {
  list-style-type: none;
  margin-bottom: 15px;
}

.service-widget li:last-child {
  margin-bottom: 0;
}

.service-widget.widget.widget_nav_menu li a {
  border-radius: 20px;
  color: var(--themeht-text-color);
  display: block;
  font-size: 18px;
  padding: 15px 20px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--themeht-border-color);
}

.service-widget.widget.widget_nav_menu li.current-menu-item a,
.service-widget.widget.widget_nav_menu li:hover a {
  background-color: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.service-widget.widget_text {
  background-color: var(--themeht-white-color);
  padding: 30px;
  margin-top: 50px;
}

.service-widget.widget.widget_nav_menu li a:before {
  display: none;
}

.service-widget.widget.widget_nav_menu li a:after {
  position: absolute;
  top: 0;
  left: inherit;
  right: 20px;
  font-family: 'bootstrap-icons';
  content: "\F135";
  font-size: 30px;
  display: flex;
  z-index: 99;
  height: 100%;
  color: var(--themeht-text-color);
  justify-content: center;
  align-items: center;
}

.service-widget.widget.widget_nav_menu li a:hover:after,
.service-widget.widget.widget_nav_menu li.current-menu-item a:after {
  color: var(--themeht-white-color);
}

.contact-widget {
  padding: 50px;
  position: relative;
  z-index: 9;
  background: var(--themeht-primary-color);
  text-align: center;
}

.contact-widget i {
  font-size: 100px;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-widget h3 {
  font-size: 50px;
  line-height: 60px;
}

.contact-widget h3,
.contact-widget p {
  color: var(--themeht-white-color);
}

.service-widget.widget_text.widget_custom_html {
  background-color: inherit;
  padding: 0;
  box-shadow: none;
}

.contact-widget .white-btn:hover,
.contact-widget a.white-btn:hover {
  background: var(--themeht-secondary-color);
  color: var(--themeht-white-color);
}


/* ------------------------
    Price Table
------------------------*/
.price-table {
  padding: 50px;
  position: relative;
  z-index: 9;
  border-radius: 30px;
}

.price-value {
  border-top: 1px solid var(--themeht-secondary-color);
  padding-top: 30px;
  margin-bottom: 30px;
}

.price-value h2 {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  color: var(--themeht-text-color);
  font-family: var(--themeht-typography-body-font-family);
  font-weight: 600;
}

.price-value h2 sup {
  font-size: 24px;
  line-height: 24px;
  vertical-align: super;
  top: 0;
  color: var(--themeht-secondary-color);
  font-weight: 400;
}

.price-value span {
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: var(--themeht-body-color);
}

.price-list ul li {
  position: relative;
  padding: 10px 0;
}

.price-list li i {
  color: var(--themeht-primary-color);
  font-size: 16px;
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-right: 5px;
}

.text-white .price-value h2,
.text-white h4,
.text-white .price-value h2 sup,
.text-white .price-value h2 span,
.price-table.primary-bg .price-list li i,
.price-table.secondary-bg .price-list li i {
  color: var(--themeht-white-color);
}

.primary-bg .price-value {
  border-top-color: var(--themeht-light-color);
}

.secondary-bg .price-value {
  border-top-color: var(--themeht-border-white-color);
}

.price-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 9;
  font-size: 40px;
  line-height: 1;
  color: var(--themeht-text-color);
}


/* ------------------------
    Progress Bar
------------------------*/
body .elementor-widget-progress .elementor-progress-wrapper {
  background-color: var(--themeht-white-color) !important;
  border-radius: 30px;
}

body .elementor-widget-progress .elementor-title {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: var(--themeht-typography-body-font-family);
  color: var(--themeht-text-color) !important;
  display: inline-block;
}

body .elementor-widget-progress .elementor-progress-bar {
  height: 5px;
  position: relative;
  background-color: var(--themeht-primary-color) !important;
  border-radius: 30px;
}

body .elementor-widget-progress .elementor-progress-percentage {
  padding-right: 0;
  position: absolute;
  right: 0;
  left: auto;
  top: -37px;
  color: var(--themeht-text-color) !important;
  font-size: 16px;
  font-weight: 600
}

.ht-circle-progressbar {
  display: flex;
  align-items: center;
}

.ht-circle-progressbar .pie {
  width: 150px !important;
  height: 150px !important;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
  z-index: 9;
}

.ht-circle-progressbar .pie svg {
  width: 100%;
  height: 100%;
  display: none;
}

.ht-circle-progressbar .pie svg:first-child {
  display: block;
}

.ht-circle-progressbar circle {
  stroke: var(--themeht-primary-color);
  stroke-width: 2px;
}

.ht-circle-progressbar circle:first-child {
  stroke: var(--themeht-white-color);
  stroke-width: 1px;
}

.ht-circle-progressbar text {
  fill: var(--themeht-text-color);
  font-size: 20px;
}

.ht-circle-progressbar p {
  margin-bottom: 0;
}

.ht-circle-progressbar h4 {
  margin-bottom: 10px;
}

.ht-circle-progressbar .pie:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  background-color: var(--themeht-white-color);
  transition: all ease 0.4s;
  z-index: -1;
  border-radius: inherit;
  transform: scale(0.8);
  border-radius: 100%;
}

.ht-circle-progressbar.text-white circle {
  stroke: var(--themeht-white-color);
}

.ht-circle-progressbar.text-white circle:first-child {
  stroke: var(--themeht-text-color);
}

/* ------------------------
    Portfolio
------------------------*/
.portfolio-filter {
  display: inline-block;
  margin: 0 auto 30px;
  text-align: center;
}

.portfolio-filter button {
  position: relative;
  cursor: pointer;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--themeht-text-color);
  float: left;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 100px;
  line-height: 1;
  background: var(--themeht-white-color);
}

.portfolio-filter button:focus {
  outline: none;
  outline-style: none;
  outline-offset: 0;
}

.portfolio-filter button.is-checked,
.portfolio-filter button:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.portfolio-filter button+button {
  margin-left: 20px;
}

.isotope .grid-item img {
  width: 100%;
}

.primary-bg .portfolio-filter button.is-checked,
.primary-bg .portfolio-filter button:hover {
  background: var(--themeht-white-color);
  color: var(--themeht-primary-color);
}

.grid .grid-item {
  padding: 10px;
}

.grid.columns-2 .grid-item,
.masonry.columns-2 .masonry-brick {
  width: 50%;
}

.grid.columns-3 .grid-item,
.masonry.columns-3 .masonry-brick {
  width: 33.333333%;
}

.grid.columns-4 .grid-item,
.masonry.columns-4 .masonry-brick {
  width: 25%;
}

.masonry .masonry-brick {
  float: left;
  margin-bottom: 30px;
  padding: 0 15px;
  position: relative;
}

.grid.g-0 .grid-item {
  padding: 0;
}

.masonry.g-0 .masonry-brick {
  padding: 0;
  margin: 0;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

.portfolio-desc h4 {
  margin-bottom: 0;
}

.portfolio-desc h4 a {
  color: var(--themeht-white-color)
}

.portfolio-desc .portfolio-cat a {
  display: inline-block;
  background: var(--themeht-light-color);
  padding: 7px 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  line-height: 1;
  color: var(--themeht-secondary-color);
  margin-bottom: 5px;
}

.portfolio-item .portfolio-image:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  z-index: 2;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--themeht-primary-color) 15.83%, #46544D00 60.55%);
  -webkit-transition: .5s;
  -khtml-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  bottom: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
}

.portfolio-item:hover .portfolio-image:before {
  height: 100%;
}

.portfolio-item:hover .portfolio-desc h4 a {
  color: var(--themeht-white-color);
}

.portfolio-desc {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  z-index: 2;
}

.portfolio-item:hover .portfolio-desc {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.popup-img {
  display: block;
  font-size: 30px;
  color: var(--themeht-text-color);
  background: var(--themeht-white-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 500;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-img:hover {
  color: var(--themeht-white-color);
  background: var(--themeht-secondary-color);
}

.portfolio-item:hover .popup-img {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*Portfolio Meta*/
.portfolio-meta-info {
  background: var(--themeht-white-color);
  padding: 30px;
  border-radius: 30px;
}

.portfolio-meta-info li {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--themeht-border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.portfolio-meta-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.portfolio-meta-info i {
  font-size: 30px;
  color: var(--themeht-primary-color);
  flex-shrink: 0;
  margin-right: 15px;
  line-height: 1;
}

.portfolio-meta-info .sub-title {
  display: block;
  text-transform: uppercase;
  font-family: var(--themeht-typography-secondary-font-family);
  font-weight: 700;
  font-size: 12px;
}

.portfolio-meta-info .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--themeht-text-color);
}


/* ------------------------
    Awards
------------------------*/
.award-items {
  position: relative;
  background: var(--themeht-white-color);
  padding: 30px;
  border-radius: 30px;
}

.award-title {
  border-bottom: 1px solid var(--themeht-border-color);
  margin-bottom: 20px;
  padding-right: 50px;
}

.award-title span {
  background: var(--themeht-primary-color);
  padding: 7px 15px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  line-height: 1;
  color: var(--themeht-white-color);
  margin-bottom: 8px;
  display: inline-block;
}

.award-desc p {
  margin-bottom: 0;
}

.award-icon {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  border-radius: 100%;
  font-size: 26px;
}


/* ------------------------
  Image Reavel Animation
------------------------*/
.ht-img-animation {
  overflow: hidden;
  border-radius: 30px;
}

.ht-img-animation .elementor-widget-container {
  transition: 1s ease-out !important;
  transition-delay: 0.1s !important;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  visibility: hidden;
  border-radius: 30px;
}

.ht-img-animation .elementor-widget-container img {
  transform: scale(1.3);
  transition: 2s ease-out;
}

.ht-img-active .elementor-widget-container {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  visibility: visible;
  transform: skewY(0);
}

.ht-img-active .elementor-widget-container img {
  transform: scale(1);
  transition: 3s ease-out;
}

/* ------------------------
  Split Slider
------------------------*/
.ht-img-split-scroller {
  display: flex;
}

.split_images {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
}

.split_images .split-img-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}

.split_images .split-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split_images .split-img-block:first-child {
  opacity: 1;
}

.split_texts {
  position: relative;
  width: 50%;
  margin-left: auto;
}

.split_texts .split-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 4rem;
  box-sizing: border-box;
}

.split-mobile-img {
  display: none;
}

.split-icon {
  background: var(--themeht-primary-color);
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-radius: 50%;
  color: var(--themeht-white-color);
  margin-bottom: 30px;
}

.sticky-panel-content {
  width: 100%;
  height: 70vh !important;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
}

.sticky-panel {
  height: 70vh;
  flex: 1 0 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--themeht-white-color);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.sticky-panel-img {
  width: 50%;
  height: 100%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.sticky-panel-text {
  width: 50%;
  padding: 5rem;
}

.split-content .themeht-btn {
  margin-top: 30px;
}

.step-icon {
  font-size: 60px;
  width: 150px;
  height: 150px;
  border: 2px solid var(--themeht-light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  color: var(--themeht-white-color);
  margin-bottom: 30px;
  z-index: 9;
}

.step-icon:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  background-color: var(--themeht-primary-color);
  transition: all ease 0.4s;
  z-index: -1;
  border-radius: inherit;
  transform: scale(1);
}

.split-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 200px;
  line-height: 1;
  opacity: 0.1;
  font-weight: 700;
}


/* ------------------------
    Ht Tab
------------------------*/
.ht-tab .tab-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
  gap: 20px;
  width: 80%;
  /* justify-content: center; */
  margin: 0 auto;
  background: var(--themeht-white-color);
  padding: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.ht-tab .tab-menu li {
  list-style-type: none;
}

.ht-tab .tab-menu li a {
  font-family: var(--themeht-typography-secondary-font-family);
  text-align: center;
  background: var(--themeht-light-color);
  border-radius: 100px;
  padding: 10px 40px;
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.ht-tab .tab-menu li a.active-a {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.ht-tab .ht-tab-content {
  background: var(--themeht-white-color);
  border-radius: 30px;
  padding: 30px;
}

.ht-tab-content img {
  border-radius: 20px !important;
}

.ht-tab-pane {
  display: none;
}

.ht-tab-pane.tab-active {
  display: block;
  animation: tab-fade ease 1s;
  -webkit-animation: tab-fade ease 1s;
  -moz-animation: tab-fade ease 1s;
  -o-animation: tab-fade ease 1s;
  -ms-animation: tab-fade ease 1s;
}

.tab-list ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.tab-list li {
  position: relative;
  list-style-type: none;
  padding-left: 25px;
  margin-bottom: 15px;
  font-weight: 500;
}

.tab-list li:last-child {
  margin-bottom: 0;
}

.tab-list li:before {
  position: absolute;
  left: 0;
  top: 3px;
  font-family: flaticon_medical_collection !important;
  content: "\f16a";
  color: var(--themeht-primary-color);
  font-size: 20px;
  line-height: 1;
}


/* ------------------------
  Ht Button Shape
------------------------*/
.ht-shape-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0 30px 0 0;
}

.ht-shape-btn.bottom {
  transform: rotate(90deg);
  top: auto;
  bottom: 0;
}

.ht-shape-btn.left-side {
  left: 0;
  right: auto;
  transform: rotate(-90deg);
}

.ht-shape-btn svg path {
  fill: var(--themeht-light-color) !important;
}

.primary-bg .form-one .ht-shape-btn svg path {
  fill: var(--themeht-primary-color) !important;
}

/* ------------------------
  Arrow Button
------------------------*/
.arrow-button {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--themeht-white-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  border-radius: 100%;
}

.arrow-button.top {
  top: 0;
  bottom: inherit;
}

.arrow-button svg {
  width: 15px;
  height: 15px;
}

.arrow-button svg line {
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-dasharray: 25px;
  stroke-dashoffset: 50px;
  transition: stroke-dashoffset 1s cubic-bezier(.61, 1, .88, 1);
  stroke: var(--themeht-text-color);
}

.arrow-button:hover svg line {
  stroke-dashoffset: 0;
  stroke: var(--themeht-primary-color);
}


/* ------------------------
  Timetable
------------------------*/
.working-hours-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0 9px;
  position: relative;
}

.theme-bg .working-hours-item,
.dark-bg .working-hours-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--themeht-white-color);
}

.working-hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timetable-item table th {
  padding: 20px;
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
}

.timetable-item table td {
  padding: 20px;
}

.timetable-item table td span {
  display: block;
  font-weight: 700;
}

.timetable-item .timetable-time {
  color: var(--themeht-primary-color);
  font-weight: 700;
}

.theme-icon-box {
  position: relative;
}

.theme-icon-box .elementor-icon i {
  font-size: 60px;
  line-height: 1;
  display: inline-block;
  color: var(--themeht-white-color)
}

.theme-icon-box .icon-right-lg {
  width: auto !important;
  position: absolute;
  right: 0;
  display: inline-block;
  opacity: 0.1;
  top: 0;
}

.theme-icon-box .icon-right-lg .elementor-icon i {
  color: var(--themeht-white-color);
  font-size: 120px;
  line-height: 1;
}

.theme-icon-box.secondary-bg .elementor-icon i,
.theme-icon-box.secondary-bg p {
  color: var(--themeht-text-color)
}


/* ------------------------
  Info Item
------------------------*/
.ht-info-item {
  padding: 50px;
  border-radius: 30px;
  border-top-right-radius: 0;
  position: relative;
  height: 100%;
}

.ht-info-item .ht-info-icon {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--themeht-primary-color);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  border-radius: 100%;
  font-size: 34px;
  line-height: 1;
  color: var(--themeht-white-color);
}

.ht-call-us a {
  font-size: 30px;
  line-height: 1;
  margin-top: 20px;
  display: inline-block;
}

.elementor-widget-ht-info-box,
.elementor-widget-ht-info-box .elementor-widget-container {
  height: 100%;
}

.ht-info-item.secondary-bg .ht-shape-btn svg path {
  fill: var(--themeht-light-color) !important;
}

.ht-info-item.white-bg .ht-info-icon {
  background: var(--themeht-text-color);
}

.ht-info-item.primary-bg .ht-info-icon {
  background: var(--themeht-white-color);
  color: var(--themeht-text-color);
}

.ht-info-item h4 {
  padding-right: 50px;
}


/* ------------------------
  Swiper Arrow 
------------------------*/
.swiper .swiper-button-prev {
  left: 0;
}

.swiper .swiper-button-next {
  right: 0;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  background: var(--themeht-white-color);
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: var(--themeht-primary-color);
  border-color: var(--themeht-primary-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: 24px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  line-height: 50px !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-color);
  background: var(--themeht-secondary-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: -60px;
}

.swiper-nav-bottom-white .swiper-button-next,
.swiper-nav-bottom .swiper-button-next {
  right: 50% !important;
  margin-right: -60px;
}

.swiper-nav-bottom,
.swiper-nav-bottom-white {
  margin-top: 120px;
}


/* ------------------------
  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: 60px;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: var(--themeht-secondary-color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: var(--themeht-primary-color);
}

.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;
}


.mptt-shortcode-wrapper .mptt-navigation-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.mptt-navigation-tabs li a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--themeht-text-color);
  padding: 10px 20px;
  border-radius: 100px;
  line-height: 1;
  background: var(--themeht-white-color);
}

.mptt-navigation-tabs li.active a,
.mptt-navigation-tabs li a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th {
  background-color: var(--themeht-text-color);
  border: 1px solid var(--themeht-border-color);
  color: var(--themeht-white-color);
  padding: 10px;
}