/* ------------------------------------------------
Project:   Bizency - Creative Agency WordPress Theme
Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
  Table of Contents
  01. Button
  02. Title
  03. Video & Round Text
  04. Feature Box
  05. Blog Post
  06. Accordion
  07. Portfolio
  08. Services
  09. Testimonial
  10. Counter
  11. Price Table
  12. Team
------------------------*/

/* ------------------------
Button
------------------------*/
.primary-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 15px 30px;
  position: relative;
  z-index: 9;
  background-color: var(--themeht-primary-color);
  color: var(--themeht-bg-dark-color) !important;
  border: 1px solid var(--themeht-primary-color);
  border-radius: 10px;
  font-family: var(--themeht-title-font-family);
}

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

.btn-link {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--themeht-white-color);
  text-decoration: none;
}

.btn-link:hover {
  color: var(--themeht-primary-color);
  border-bottom: 1px solid transparent;
}

.btn-link::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--themeht-primary-color);
  z-index: 1;
}

.btn-link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.rounded-button {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  position: relative;
  display: flex;
  width: 150px;
  height: 150px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.center .rounded-button {
  margin: 0 auto;
}

.right .rounded-button {
  margin-left: auto;
}

.rounded-button i {
  color: var(--themeht-white-color);
  font-size: 32px;
  transform: rotate(-40deg);
  display: block;
  z-index: 9;
  position: absolute;
  top: 40px;
  left: 60px;
}

.rounded-button span {
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  z-index: 9;
  color: var(--themeht-white-color);
  margin-top: 40px;
}

.rounded-button:hover span,
.rounded-button:hover i {
  z-index: 99;
  color: var(--themeht-bg-dark-color);
}

.rounded-button .parallax-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border-radius: 100%;
  transition: all 100ms linear;
  background-color: var(--themeht-body-color);
  border: 1px solid #ffffff54;
  overflow: hidden;
}

.rounded-button .parallax-wrap:before {
  width: 0%;
  height: 0%;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  border-radius: 100%;
  background-color: var(--themeht-white-color);
  -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;
}

.rounded-button:hover .parallax-wrap:before {
  width: 100%;
  height: 100%;
}

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

.theme-title h6 {
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: 400;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--themeht-white-color);
  font-family: var(--themeht-typography-body-font-family);
}

.theme-title h2 {
  font-size: 42px;
  line-height: 50px;
}

.theme-title h6:before {
  font-family: 'Line Awesome Free';
  content: "/";
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  color: var(--themeht-primary-color);
  top: -3px;
  position: absolute;
  left: 1px;
}

.theme-title h6:after {
  font-family: 'Line Awesome Free';
  content: "/";
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  color: var(--themeht-primary-color);
  top: -3px;
  position: absolute;
  left: 6px;
}

/* ------------------------
Signtture Box
------------------------*/
.image-action-box {
  display: flex;
}

.image-action-box .info-img1 {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  border-radius: 100%;
  border: 2px solid var(--themeht-primary-color);
  object-fit: cover;
  padding: 5px;
}

.image-action-box .image-action-title span {
  color: var(--themeht-white-color);
  margin-top: 10px;
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.image-action-box .image-action-title {
  display: inline-grid;
}

/* ------------------------
Feature Box
------------------------*/

/* -------- Featur Box 1 --------*/
.feature-box1 {
  position: relative;
  z-index: 9;
  display: block;
}

.feature-box1 p {
  margin-bottom: 0;
}

.feature-box1 .feature-icon {
  display: block;
  font-size: 60px;
  line-height: 1;
  color: var(--themeht-primary-color);
  margin-bottom: 15px;
}

.feature-box1 .feature-icon img {
  width: 50px;
  height: 50px;
}

/* -------- Featur Box 2 --------*/
.feature-box2 {
  position: relative;
  z-index: 9;
  display: flex;
}

.feature-box2 p {
  margin-bottom: 0;
}

.feature-box2 .feature-icon {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--themeht-primary-color);
  margin-right: 20px;
  padding-top: 8px;
}

.feature-box2 .feature-icon img {
  width: 30px;
  height: 30px;
}

/* -------- Featur Box 3 --------*/
.feature-box3 {
  position: relative;
  z-index: 9;
  padding: 40px;
  display: block;
  border-radius: 8px;
  background: var(--themeht-bg-dark2-color);
}

.feature-box3 .feature-icon {
  display: block;
  font-size: 60px;
  line-height: 1;
  color: var(--themeht-primary-color);
  margin-bottom: 15px;
}

.feature-box3 .feature-icon img {
  width: 50px;
  height: 50px;
}

.feature-box3 .feature-desc p {
  margin-bottom: 0;
}

.feature-box3 .feature-number {
  padding: 4px 25px 8px 25px;
  position: absolute;
  right: 0;
  top: 30px;
  font-size: 50px;
  line-height: 50px;
  color: var(--themeht-white-color);
  font-weight: 700;
  font-family: var(--themeht-typography-h1-font-family);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 8px 0 0 8px;
}

/* Featur Box 4 */
.feature-box4 {
  position: relative;
  z-index: 9;
  padding: 30px;
  display: block;
  border-radius: 10px;
  background: var(--themeht-bg-dark2-color);
  overflow: hidden;
}

.feature-box4:before {
  position: absolute;
  content: "";
  bottom: -30%;
  right: -30%;
  width: 100%;
  height: 100%;
  background: hsla(19, 100%, 50%, 1);
  background: radial-gradient(circle, rgb(196 239 23 / 60%) 0%, hsla(0, 0%, 9%, 1) 60%, hsla(0, 0%, 9%, 1) 100%);
  background: -moz-radial-gradient(circle, hsla(19, 100%, 50%, 1) 0%, hsla(0, 0%, 9%, 1) 60%, hsla(0, 0%, 9%, 1) 100%);
  background: -webkit-radial-gradient(circle, rgb(196 239 23 / 60%) 0%, hsla(0, 0%, 9%, 1) 60%, hsla(0, 0%, 9%, 1) 100%);
  opacity: 0;
  -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;
}

.feature-box4:hover:before {
  opacity: 0.4;
}

.feature-box4 .feature-title h4 {
  font-size: 24px;
  line-height: 32px;
  position: relative;
  z-index: 9;
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box4 .feature-icon {
  display: block;
  font-size: 60px;
  line-height: 1;
  color: var(--themeht-primary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 9;
}

.feature-box4 .feature-number {
  font-size: 24px;
  line-height: 24px;
  color: var(--themeht-white-color);
  font-weight: 700;
  font-family: var(--themeht-title-font-family);
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 0.2;
  z-index: 9;
}

.feature-box4 .feature-desc p {
  margin-bottom: 0;
  position: relative;
  z-index: 9;
}

/* Featurebox 5 */
.feature-box5 {
  display: flex;
}

.feature-box5 .feature-icon {
  height: 60px;
  width: 60px;
  min-width: 60px;
  line-height: 60px;
  color: var(--themeht-white-color);
  border: 1px solid var(--themeht-primary-color);
  text-align: center;
  border-radius: 100%;
  font-size: 24px;
  margin-right: 15px;
}

.feature-box5 .feature-desc {
  margin-top: -6px;
}

.feature-box5 .feature-desc .feature-title h4 {
  font-size: 22px;
  line-height: 32px;
  margin: 0;
}

/*--------- Featurebox 6 ----------*/
.feature-box6 {
  padding: 50px;
  display: block;
  border-radius: 15px;
  background: var(--themeht-bg-dark2-color);
  border-top: 4px solid var(--themeht-primary-color);
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.feature-box6:hover {
  border-top: 4px solid var(--themeht-primary-color);
}

.feature-box6 h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
}

.feature-box6 .feature-icon {
  margin-top: 50px;
}

.feature-box6 .feature-desc a.primary-btn {
  display: flex;
  text-align: center;
  justify-content: center;
  width: max-content;
  margin: 40px auto 0;
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 0;
  position: relative;
  color: var(--themeht-white-color) !important;
}

.feature-box6 .feature-desc a.primary-btn:hover {
  color: var(--themeht-primary-color) !important;
}

/* ------------------------
 Text Animation
------------------------*/
.text-highlight-animation .text-heading-animation {
  font-size: 34px;
  line-height: 50px;
  font-weight: 700;
  margin: 0;
}

/* ------------------------
 Award Section
------------------------*/
.award-items {
  display: inline-block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

.award-items .award-img {
  position: absolute;
  left: 5%;
  top: 30%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.award-items:hover .award-img {
  opacity: 1;
  top: -10%;
}

.award-items .award-num {
  width: 5%;
  display: inline-block;
}

.award-items .award-title {
  display: inline-block;
  width: 30%;
  text-align: left;
}

.award-items .award-type {
  display: inline-block;
  width: 25%;
  text-align: left;
}

.award-items .award-project {
  display: inline-block;
  width: 25%;
  text-align: left;
}

.award-items .award-years {
  display: inline-block;
  width: 10%;
  text-align: left;
}

.award-items .award-btn {
  width: 5%;
  text-align: right;
  font-size: 24px;
  line-height: 34px;
}

/* ------------------------
 Blogs
------------------------*/

/*--------- Blog Post Style1  ---------*/
.themeht-blogs .post {
  margin-bottom: 60px;
}

.post-card.style-1 {
  position: relative;
  margin-bottom: 30px;
}

.post-card.style-1 .wp-block-quote,
.post-card.style-1 .wp-block-quote.is-large:not(.is-style-plain),
.post-card.style-1 .wp-block-quote.is-style-large:not(.is-style-plain) {
  border-radius: 10px;
  background-color: var(--themeht-primary-color);
  padding: 3rem;
  color: var(--themeht-white-color);
}

.blog .post-desc h4 {
  font-size: 30px;
  line-height: 40px;
  word-break: break-all;
}

.post-card.style-1 .post-desc {
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0 30px 30px;
}

.post-card.style-1 .post-desc h4 {
  margin: 8px 0 0;
  word-break: break-word;
  line-height: 28px;
}

.post-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.entry-meta span {
  margin-right: 10px;
}

.post-card.post-classic {
  margin-bottom: 30px;
}

.post-classic .primary-btn {
  padding: 0;
  background: transparent;
  border: none;
  color: var(--themeht-primary-color);
}

.themeht-blogs .primary-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 15px 30px;
  position: relative;
  z-index: 9;
  background-color: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  border: 1px solid var(--themeht-primary-color);
  border-radius: 10px;
  font-family: var(--themeht-title-font-family);
}


.post-card.post-classic .post-image img {
  margin-bottom: 15px;
  width: 100%;
}

.post-card.post-classic .post-desc .post-title {
  margin-bottom: 10px;
}

.post-card.post-classic .post-bottom {
  margin-bottom: 5px;
}

.post-bottom a,
.author a {
  font-size: 16px;
  text-transform: capitalize;
}

.post-card.style-1 .entry-content blockquote p {
  margin-bottom: 0;
}

.post-list+.post-list {
  margin-top: 50px;
}

.post-bottom li,
.entry-meta span {
  position: relative;
  padding-right: 15px;
  margin-right: 15px !important;
  display: inline;
  color: var(--themeht-white-color);
}

.post-bottom li i {
  color: var(--themeht-primary-color);
  margin-right: 10px;
}

.post-bottom li:before,
.entry-meta span:before {
  content: "";
  background: var(--themeht-primary-color);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  right: -2.5px;
  top: 50%;
  margin-top: -2.5px;
}

.post-bottom li:last-child,
.entry-meta span:last-child {
  padding-right: 0;
  margin-right: 0 !important;
}

.post-bottom li:last-child:before,
.entry-meta span:last-child:before {
  display: none;
}

.post-card.style-1 .post-image {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.post-card.style-1 .post-image:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(transparent, var(--themeht-bg-dark-color));
  z-index: 1;
  content: "";
  pointer-events: none;
  transition: all .3s ease;
}

.post-card.style-1 .post-image img {
  width: 100%;
  filter: grayscale(100%);
}

.post-card.style-1:hover .post-image img {
  filter: none;
}

.post-date {
  font-size: 16px;
  line-height: 26px;
  color: var(--themeht-body-color);
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.post-date a {
  color: var(--themeht-primary-color);
}

.themeht-widget .post-date {
  position: relative;
  top: inherit;
  display: inline-block;
  right: inherit;
  padding: 0;
}

.post-card.style-1 h3 {
  word-break: break-word;
}

.post-single .post-card {
  box-shadow: none;
  padding: 0;
}

.post-single .post-card .post-image {
  margin-bottom: 30px;
}

.theme-tags {
  clear: both;
  margin-top: 20px;
  color: var(--themeht-white-color);
}

.theme-tags>span {
  display: block;
}

.tags-links a {
  color: var(--themeht-white-color);
  text-decoration: none;
  margin: 4px;
  display: inline-block;
  text-decoration: none;
  margin-right: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: var(--themeht-bg-dark-color);
  display: inline-block;
  font-weight: 600;
  font-size: 13px !important;
  line-height: 13px;
  border-radius: 10px;
  font-family: var(--themeht-title-font-family);
}

.tags-links a:hover {
  color: var(--themeht-primary-color);
  text-decoration: underline;
}

.themeht-blogs .post-card p {
  line-height: 28px;
}

/*--------- Blog Post Style2   ---------*/
.post-card.style-2 {
  margin-bottom: 70px;
}

.post-card.style-2 .post-bottom {
  display: flex;
}

.post-card.style-2 .post-bottom li {
  position: relative;
}

.post-card.style-2 .post-bottom a {
  font-size: 16px;
  line-height: 25px;
  color: var(--themeht-primary-color);
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.post-card.style-2 .post-bottom li .entry-date {
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.post-card.style-2 .post-desc h4 {
  font-size: 28px;
  line-height: 38px;
}

/*-------- Single Blog --------*/
blockquote,
.wp-block-quote.is-large:not(.is-style-plain),
.wp-block-quote.is-style-large:not(.is-style-plain) {
  position: relative;
  font-size: 20px;
  line-height: 32px;
  color: var(--themeht-white-color);
  font-weight: 700;
  font-style: italic;
  font-family: var(--themeht-title-font-family) !important;
  margin: 0;
  padding: 40px;
  margin: 40px 0 40px 0;
  border-left: 5px solid var(--themeht-primary-color);
  background: var(--themeht-bg-dark-color);
}

.wp-block-quote.has-text-align-right {
  border-right: inherit;
}

blockquote p {
  font-size: 20px !important;
  font-weight: 600;
  letter-spacing: 0px;
  font-style: italic;
  color: var(--themeht-white-color);
  font-family: var(--themeht-title-font-family);
}

blockquote:after {
  content: "\f10e";
  font-family: 'Line Awesome Free';
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 70px;
  line-height: 50px;
  text-align: center;
  color: var(--themeht-primary-color);
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  z-index: 2;
}

blockquote.wp-block-quote.has-text-align-right:after {
  left: 20px;
  right: inherit;
}

blockquote cite,
.wp-block-pullquote blockquote,
.wp-block-pullquote cite,
.wp-block-pullquote p {
  color: var(--themeht-white-color);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  display: block;
  z-index: 9;
  margin-top: 12px;
  line-height: 1;
}

.single-format-quote blockquote cite {
  display: block !important;
}

/*blockquote em {*/

/*  font-style: normal;*/

/*  font-size: 15px;*/

/*  line-height: 24px;*/

/*  color: var(--themeht-primary-color);*/

/*  font-family: var(--themeht-typography-body-font-family);*/

/*  font-weight: 600;*/

/*}*/

.single-post .col-12.col-lg-8,
.single-post .col-12.col-lg-9,
.themeht-blogs .col-12.col-lg-9 {
  padding-right: 60px;
}

/* ---- Sidebar Widget ----*/
.themeht-sidebar .widget-area {
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
}

.widget h4,
.widget .wp-block-search__label,
.widget .widget-title {
color: #FF8400;

font-size: 23px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}

.widget h2 {
  padding-left: 20px;
  color: var(--themeht-white-color);
  font-size: 24px !important;
  line-height: 34px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  display: block;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.widget h2:before {
  font-family: 'Line Awesome Free';
  content: "/";
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  color: var(--themeht-primary-color);
  top: 7px;
  position: absolute;
  left: 1px;
}

.widget h2:after {
  font-family: 'Line Awesome Free';
  content: "/";
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  color: var(--themeht-primary-color);
  top: 7px;
  position: absolute;
  left: 6px;
}

.themeht-widget.widget,
.wp-block-search {
  margin-bottom: 50px
}

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

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

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

.themeht-widget.widget ul li,
.themeht-widget.widget ol li,
.wp-block-archives li,
.wp-block-latest-posts li {
  list-style-type: none;
  padding: 0px 0px 20px 0;
  width: 100%;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
}

.themeht-widget.widget ul li a,
.themeht-widget.widget ol li a,
.wp-block-archives li a,
.wp-block-latest-posts li a {
  margin-right: 15px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  font-size: 16px;
  line-height: 16px;
  font-family: var(--themeht-title-font-family);
  font-weight: 700;
  color: var(--themeht-white-color);
  position: relative;
  line-height: normal;
}

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

.themeht-widget.widget ul li a:hover,
.themeht-widget.widget ol li a:hover,
.wp-block-archives li a:hover,
.wp-block-latest-posts li a:hover {
  color: var(--themeht-primary-color);
}

.themeht-widget.widget .tagcloud a,
.wp-block-tag-cloud a {
  text-decoration: none;
  margin-right: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: var(--themeht-bg-dark-color);
  display: inline-block;
  font-weight: 600;
  font-size: 13px !important;
  line-height: 13px;
  border-radius: 10px;
  font-family: var(--themeht-title-font-family);
}

.themeht-widget.widget .tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  text-decoration: none;
}

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

.themeht-widget.widget_recent_entries li a,
.wp-block-latest-posts li a {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.themeht-widget.widget_search {
  margin-bottom: 30px;
}

.search-form {
  position: relative
}

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

.themeht-widget.widget.widget_pages ul,
.themeht-widget.widget.widget_nav_menu ul {
  padding-left: 20px;
}

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

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

.comment-author-link,
.wp-block-latest-comments__comment-author,
.widget_archive li a,
.wp-block-archives li a,
.widget select,
.wp-block-archives select,
.wp-block-categories select {
  font-weight: 500;
  font-size: 18px;
}

.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: 15px;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:before {
  position: absolute;
  content: "\f002";
  font-family: 'Line Awesome Free';
  font-weight: 900;
  color: var(--themeht-white-color);
  font-size: 30px;
  line-height: 55px;
  text-align: center;
  cursor: pointer;
  right: 0;
  padding: 0;
  border: none;
  top: 0;
  z-index: 1;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover:before {
  color: var(--themeht-primary-color);
}

.themeht-blogs .post-card.post-classic {
  margin-bottom: 0;
}

.themeht-blogs .post-card.post-classic .post-desc .post-title {
  margin-bottom: 0;
}

/*-------- Recentpost --------*/
.widget_themeht_recentpost li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 0 0 20px 0 !important;
}

.widget_themeht_recentpost .themeht-post-image img {
  flex-shrink: 0;
  margin-right: 20px;
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
}

.widget_themeht_recentpost .themeht-post-content a {
  font-family: var(--themeht-title-font-family);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  color: var(--themeht-white-color);
}

.widget_themeht_recentpost .themeht-post-content a:hover {
  color: var(--themeht-primary-color);
}

.widget_themeht_recentpost li .themeht-post-date {
  display: block;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.widget_themeht_recentpost li .themeht-post-date i {
  font-size: 12px;
  margin-right: 3px;
}

/* ---- Post Comments ----*/
.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: 0 10px 30px 5px rgb(115 113 255 / 6%);
  padding: 30px;
  padding-bottom: 0;
  display: inline-block;
  margin-top: 50px;
  border-radius: 10px;
  width: 100%;
}

.comment-author img {
  border-radius: 50%;
  margin-right: 15px;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 20px;
}

.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 {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--themeht-border-light-color);
  margin-bottom: 30px;
  padding: 20px;
  padding-left: 100px;
  list-style-type: none;
}

.post-comment .comment-meta {
  margin-bottom: 10px;
}

.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: 38px;
}

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

.comment-author.vcard a {
  font-size: 20px;
  font-weight: 600;
}

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

.comment-body .reply {
  position: absolute;
  top: 20px;
  right: 20px;
}

.comment-reply-link,
.comment-reply-link:focus,
.comment-reply-link:visited,
.comment-reply-link:active {
  padding: 3px 14px;
  background: var(--themeht-bg-dark-color);
  color: var(--themeht-white-color);
  display: inline-block;
  border-radius: 10px;
  font-size: 15px;
}

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

.post-comment .comment-metadata a {
  font-size: 15px;
  color: var(--themeht-primary-color);
}

.comment-content p {
  margin-bottom: 0;
}

#comments small #cancel-comment-reply-link {
  margin-left: 15px;
  font-size: 22px;
  font-weight: 600;
}

.says {
  display: none;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
  margin: 50px 0 0;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  margin: 50px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-main .comment-navigation .nav-links a,
.site-main .posts-navigation .nav-links a,
.site-main .post-navigation .nav-links a {
  padding: 25px;
  display: table;
  transition: all 0s ease-in-out 0s;
  border-radius: 0;
}

.site-main .comment-navigation .nav-links a:hover,
.site-main .posts-navigation .nav-links a:hover,
.site-main .comment-navigation .nav-links a:hover {
  color: var(--themeht-primary-color);
}

.nav-subtitle {
  font-size: 16px;
  display: table-cell;
  vertical-align: top;
  padding-right: 5px;
}

.nav-title {
  display: table-cell;
  word-break: break-word;
  font-size: 17px;
  font-weight: 600;
}

.nav-next .nav-subtitle {
  padding-right: 0;
  padding-left: 5px;
}

.site-main .comment-navigation .nav-links .nav-next a,
.site-main .posts-navigation .nav-links .nav-next a,
.site-main .post-navigation .nav-links .nav-next a {
  margin-left: auto;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  padding-right: 30px;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  padding-left: 30px;
}

.search-page .search-form,
.error-404 .search-form {
  max-width: 500px;
  margin: 0 auto;
}

.post.sticky .post-card {
  box-shadow: none;
  border: 8px solid var(--themeht-bg-dark-color);
  padding: 30px;
  border-radius: 10px;
}

/* ------------------------
 Navigation
------------------------*/
.post-navigation .nav-links {
  justify-content: space-between;
  display: flex;
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  width: 50%;
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  position: relative;
  border: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.post-navigation .nav-links .nav-previous a .nav-title,
.post-navigation .nav-links .nav-next a .nav-title {
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  position: relative;
}

.post-navigation .nav-links .nav-previous a:hover .nav-title,
.post-navigation .nav-links .nav-next a:hover .nav-title {
  color: var(--themeht-primary-color);
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  display: block;
  align-items: center;
  position: relative;
}

.post-navigation .nav-links .nav-previous a {
  padding: 0 25px 0 35px;
}

.post-navigation .nav-links .nav-next a {
  padding: 0 35px 0 25px;
}

.post-navigation .nav-links .nav-previous {
  margin-right: auto;
  text-align: left;
  float: left;
}

.post-navigation .nav-links .nav-previous a::before {
  font-family: 'Line Awesome Free';
  content: "\f060";
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  color: var(--themeht-white-color);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  left: 1px;
}

.post-navigation .nav-links .nav-next a::after {
  font-family: 'Line Awesome Free';
  content: "\f061";
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  color: var(--themeht-white-color);
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  right: 1px;
}

.post-navigation .nav-links .nav-previous:hover a::before {
  color: var(--themeht-primary-color);
}

.post-navigation .nav-links .nav-next:hover a::after {
  color: var(--themeht-primary-color);
}

.post-navigation .nav-links .nav-next {
  margin-left: auto;
  text-align: right;
  float: right;
}

.post-navigation .nav-links .nav-previous a>div:last-child {
  padding-left: 20px;
}

.post-navigation .nav-links .nav-previous a>div:first-child {
  transform: rotate(45deg);
}

.post-navigation .nav-links .nav-next a>div:first-child {
  padding-right: 20px;
}

.post-navigation .nav-links .nav-next a>div:last-child {
  transform: rotate(-45deg);
}

.post-navigation .nav-links .nav-previous img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.post-navigation .nav-links .nav-next img {
  width: 80px;
  height: 80px;
  margin-left: 20px;
}

.post-navigation .nav-links .nav-subtitle {
  margin-bottom: 15px;
  display: inline-block;
  font-family: var(--themeht-typography-body-font-family);
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--themeht-primary-color);
  font-weight: 600;
}

.post-navigation .nav-links .nav-title {
  display: block;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  font-family: var(--themeht-title-font-family);
  color: var(--themeht-white-color);
  word-wrap: break-word;
  max-width: inherit;
}

.post-navigation .nav-links {
  margin: 50px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgb(255, 255, 255, 0.2)
}

/* ------------------------
 Progress Bar
------------------------*/
.ht-progress-bar {
  padding-right: 60px;
}

.ht-progress-bar h4 {
  color: var(--themeht-white-color);
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.ht-progress-bar .progress {
  height: 6px;
  background: transparent;
  position: relative;
  overflow: visible;
}

.ht-progress-bar .progress::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  background: rgb(255, 255, 255, 0.1);
  height: 1px;
  width: 100%;
}

.ht-progress-bar .progress-bar {
  border-radius: 5px;
  background-color: var(--themeht-primary-color);
}

.ht-progress-bar .progress-parcent {
  position: absolute;
  right: -60px;
  top: -16px;
  font-family: var(--themeht-title-font-family);
  font-size: 20px;
  line-height: 30px;
  color: var(--themeht-white-color);
  font-weight: 700;
}

/* ------------------------
 Accourdion
------------------------*/

/* ----  Accourdion Style 1 ----*/
.themeht-accordion.elementor-widget-accordion .elementor-accordion .elementor-accordion-item {
  border-color: var(--themeht-border-light-color);
  border-radius: 10px;
}

.elementor-accordion .elementor-accordion-item {
  margin-bottom: 15px;
}

.elementor-accordion .elementor-accordion-item:last-child {
  margin-bottom: 0;
}

.themeht-accordion.elementor-widget-accordion .elementor-accordion .elementor-accordion-title,
.themeht-accordion.elementor-widget-accordion .elementor-accordion-icon {
  color: var(--themeht-body-color);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.themeht-accordion.elementor-widget-accordion .elementor-accordion .elementor-accordion-title:hover,
.themeht-accordion.elementor-widget-accordion .elementor-accordion .elementor-active .elementor-accordion-title,
.themeht-accordion.elementor-widget-accordion .elementor-active .elementor-accordion-icon {
  color: var(--themeht-primary-color)
}

.themeht-accordion.elementor-widget-accordion .elementor-accordion .elementor-tab-content {
  color: var(--themeht-body-color);
  border-color: var(--themeht-border-light-color);
  font-family: var(--themeht-typography-body-font-family);
  font-weight: 400;
  font-size: 16px;
}

.themeht-accordion.elementor-widget-accordion .elementor-accordion .elementor-tab-content p {
  line-height: 30px;
}

/* ----  Accourdion Style 2 ----*/
body .elementor-element .elementor-widget-accordion .elementor-accordion .elementor-tab-title {
  padding: 0px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body .elementor-element .elementor-widget-accordion .elementor-accordion .elementor-tab-title .elementor-accordion-icon {
  line-height: 40px;
  text-align: center;
  color: var(--themeht-white-color);
  position: relative;
  top: 0;
  display: inline-table;
}

body .elementor-element .elementor-widget-accordion .elementor-accordion .elementor-tab-title .elementor-accordion-icon span i {
  font-size: 14px;
}

body .elementor-element .elementor-accordion .elementor-tab-title {
  padding: 10px 0 !important;
}

body .elementor-element .elementor-accordion .elementor-accordion-title {
  display: inline-block;
  font-size: 20px;
  font-family: var(--themeht-title-font-family);
  color: var(--themeht-white-color);
  margin-left: 0px;
  line-height: 30px;
  font-weight: 700;
}

body .elementor-element .elementor-widget-accordion .elementor-accordion .elementor-tab-title.elementor-active {
  margin-bottom: 0px;
}

body .elementor-element .elementor-accordion .elementor-accordion-item {
  border: none;
  margin-bottom: 0;
}

body .elementor-element .elementor-accordion .elementor-tab-content {
  border-top: none;
  line-height: 26px;
  font-family: var(--themeht-typography-body-font-family);
  padding: 15px 0;
}

.elementor-widget-accordion .elementor-tab-content {
  color: var(--themeht-body-text-color) !important;
}

/* ------------------------
 Portfolio
------------------------*/

/* -------- Portfolio Style 1 --------*/
.portfolio-item.style-1 .portfolio-image {
  z-index: 9;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.portfolio-item.style-1 .portfolio-image:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: hsla(19, 100%, 50%, 1);
  background: radial-gradient(circle, rgb(196 239 23 / 100%) 0%, hsla(0, 0%, 9%, 0) 60%, hsla(0, 0%, 9%, 0) 100%);
  background: -moz-radial-gradient(circle, hsla(196, 239%, 23%, 100%)) 0%, hsla(0, 0%, 9%, 0) 60%, hsla(0, 0%, 9%, 0) 100%);
  background: -webkit-radial-gradient(circle, rgb(196 239 23 / 100%) 0%, hsl(0deg 0% 9% / 0%) 60%, hsl(0deg 0% 9% / 0%) 100%);
  -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;
  opacity: 0;
}

.portfolio-item.style-1:hover .portfolio-image:before {
  opacity: 1;
}

.portfolio-item.style-1:hover .portfolio-image img {
  filter: none
}

.portfolio-item.style-1 .portfolio-image img {
  width: 100%;
  border-radius: 0;
}

.portfolio-item.style-1 .portfolio-desc {
  z-index: 9;
  padding-left: 30px;
  position: absolute;
  bottom: 45px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.portfolio-item.style-1 .portfolio-btn {
  font-size: 100px;
  line-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
  z-index: 9;
  color: transparent;
  -webkit-text-stroke: 1px var(--themeht-bg-dark-color);
}

.portfolio-item.style-1 .portfolio-btn i {
  opacity: 0;
  transition: all .3s;
  transform: translateX(-30px) translateY(0px);
}

.portfolio-item.style-1:hover .portfolio-btn i {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.portfolio-item.style-1 .portfolio-btn i {
  display: flex;
}

.portfolio-single p {
  margin-bottom: 15px;
}

.portfolio-item.style-1 h3 a {
  color: var(--themeht-bg-dark-color);
  position: relative;
  padding: 10px 15px;
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
}

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

.portfolio-item.style-1 h3 a:before,
.portfolio-item.style-1 .portfolio-cat a:before {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  content: "";
  background: var(--themeht-white-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1
}

.portfolio-item.style-1 .portfolio-cat a {
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  padding: 6px 15px;
  color: var(--themeht-body-color);
  position: relative;
  margin-top: 10px;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.portfolio-item.style-1:hover h3 a:before,
.portfolio-item.style-1:hover .portfolio-cat a:before {
  width: 100%;
}

.portfolio-meta {
  border-radius: 10px;
}

.portfolio-meta ul,
.service-list ul,
.post-single .entry-content .elementor-widget-text-editor ul {
  padding-left: 0;
}

.portfolio-meta ul li,
.service-list ul li,
.post-single .entry-content .elementor-widget-text-editor ul li {
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--themeht-border-light-color);
}

.portfolio-meta ul li:last-child,
.service-list ul li:last-child,
.post-single .entry-content .elementor-widget-text-editor ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.portfolio-meta ul li:before,
.service-list ul li:before,
.post-single .entry-content .elementor-widget-text-editor ul li:before {
  content: "";
  background: var(--themeht-primary-color);
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
}

/* -------- Portfolio Style 2 --------*/
.portfolio-item.style-2 {
  margin-bottom: 40px;
  position: relative;
}

.portfolio-item.style-2 .portfolio-image {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.portfolio-item.style-2 .portfolio-image:before {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  content: "";
  position: absolute;
  left: -25%;
  top: -25%;
  width: 200%;
  height: 200%;
  backdrop-filter: blur(8px);
  opacity: 0;
}

.portfolio-item.style-2:hover .portfolio-image:before {
  opacity: 1;
}

.portfolio-item.style-2 .portfolio-desc {
  margin-top: 20px;
  position: relative;
  padding-left: inherit;
  bottom: inherit;
  text-align: center;
  opacity: 1;
}

.portfolio-item.style-2 h3 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0px;
}

.portfolio-item.style-2 h3 a {
  color: var(--themeht-white-color);
  padding: 0;
}

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

.portfolio-item.style-2 .portfolio-cat a {
  padding: 0;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  color: var(--themeht-typography-body-color);
  margin-top: 10px;
  font-family: var(--themeht-typography-body-font-family);
}

.portfolio-item.style-2:hover h3 a:before,
.portfolio-item.style-2:hover .portfolio-cat a:before {
  content: none;
}

.portfolio-item.style-2 .portfolio-btn {
  font-size: 250px;
  line-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-40deg);
  z-index: 9;
  color: transparent;
  -webkit-text-stroke: 1px var(--themeht-bg-dark-color);
  transform: translate(-50%, -50%) rotate(-40deg);
  margin-top: -40px;
}

.portfolio-item.style-2 .portfolio-btn i {
  display: flex;
  opacity: 0;
  transition: all .8s;
  transform: translateX(-30px) translateY(0px);
}

.portfolio-item.style-2:hover .portfolio-btn i {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* -------- Portfolio Style 3 --------*/
.portfolio-list {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-left: 50%;
  padding-bottom: 50px;
}

.portfolio-list .portfolio-item.style-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.portfolio-list .portfolio-item.style-3 .portfolio-image {
  position: absolute;
  top: 120px;
  left: 60px;
  width: 450px;
  height: 380px;
  opacity: 0;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  transform: rotate(-15deg);
}

.portfolio-list .portfolio-item.style-3 .portfolio-image::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: 450px;
  height: 250px;
  background: var(--themeht-primary-color);
  z-index: -1;
}

.portfolio-list .portfolio-item.style-3 .portfolio-desc {
  text-align: left;
}

.portfolio-list .portfolio-item.style-3 .portfolio-btn {
  transform: rotate(-40deg);
  font-size: 24px;
  line-height: 24px;
}

.portfolio-list .portfolio-item.style-3:hover .portfolio-btn {
  transform: rotate(0deg);
  color: var(--themeht-primary-color);
}

.portfolio-list .portfolio-item.style-3 p {
  display: none;
}

.portfolio-list .portfolio-item.style-3.active .portfolio-image {
  opacity: 1;
}

.portfolio-list .portfolio-item.style-3 .portfolio-image img {
  object-fit: cover;
  border-radius: 10px;
}

.portfolio-list .portfolio-item.style-3 .portfolio-desc div {
  display: flex;
  align-items: center;
}

.portfolio-list .portfolio-item.style-3 .portfolio-desc h3 {
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 0;
}

.portfolio-list .portfolio-item.style-3:hover .portfolio-desc h3 a,
.portfolio-list .portfolio-item.style-3.active .portfolio-desc h3 a {
  color: var(--themeht-primary-color);
}

.portfolio-list .portfolio-item.style-3 .portfolio-desc .portfolio-cat {
  color: var(--themeht-typography-body-color);
  margin-top: 5px;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
  margin: 7px 0 0 20px;
  position: relative;
}

.portfolio-list .portfolio-item.style-3 .portfolio-desc .portfolio-cat::before {
  font-family: 'Line Awesome Free';
  content: "/";
  font-size: 18px;
  line-height: 18px;
  font-weight: 900;
  color: var(--themeht-typography-body-color);
  position: absolute;
  top: 2px;
  left: -11px;
}

.portfolio-list .portfolio-item.style-3 .portfolio-desc .portfolio-cat a {
  color: var(--themeht-typography-body-color);
}

/* -------- Portfolio Style 4 --------*/

.portfolio-item.style-4 {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  overflow: hidden;
  position: relative;
  margin: 0 100px;
}

.portfolio-item.style-4 .portfolio-image {
  width: 500px;
  position: relative;
  margin-right: 40px;
  margin-bottom: 40px;
}

.portfolio-item.style-4 .portfolio-image img {
  transform: rotate(10deg);
}

.portfolio-item.style-4 .portfolio-image::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  height: 450px;
  width: 500px;
  background: var(--themeht-primary-color);
  z-index: -1;
}

.portfolio-item.style-4 .portfolio-desc h3 {
  font-size: 60px;
  line-height: 70px;
}

.portfolio-item.style-4 .portfolio-cat {
  font-size: 20px;
  line-height: 30px;
  margin-top: 10px;
}

.portfolio-item.style-4 .round-text {
  margin-top: 60px;
  margin-left: -20px;
}

.elementor-widget-project-four .swiper-pagination {
  display: none;
}

/* -------- Portfolio Style 5 --------*/
.swiper-3d.swiper-horizontal {
  padding: 50px 0 50px;
}

.portfolio-item.style-5 a img {
  border-radius: 15px;
}

.portfolio-item.style-5 .portfolio-desc h3 {
  margin-top: 20px;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 8px;
}

.portfolio-item.style-5 .portfolio-cat a {
  color: var(--themeht-primary-color);
  font-size: 18px;
  line-height: 28px;
}

.swiper-3d.swiper-horizontal .swiper-pagination,
.swiper-3d.swiper-horizontal .swiper-nav-none,
.elementor-widget-project-full-screen .swiper-pagination {
  display: none;
}

/* -------- Portfolio Style 6 --------*/
.portfolio-item.portfolio-fullscreen {
  background-size: cover;
  height: 900px;
  position: relative;
}

.portfolio-item.portfolio-fullscreen .portfolio-desc {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: left;
}

.portfolio-item.portfolio-fullscreen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
}

.portfolio-item.portfolio-fullscreen .portfolio-desc h3 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 15px;
}

/*--------- Project Details ---------*/
.single-portfolio .portfolio-box h3 {
  margin-bottom: 24px;
  font-size: 40px;
  line-height: 50px;
}

.single-portfolio ul.project-meta-info li:last-child {
  padding: 0;
}

.single-portfolio ul.project-meta-info {
  margin: 0;
  padding: 0px;
  display: inline-table;
  flex-wrap: nowrap;
  padding-left: 200px;
  margin-bottom: 0 !important;
}

.single-portfolio ul.project-meta-info li {
  list-style-type: none;
  width: 50%;
  display: inline-block;
  margin-bottom: 50px;
  padding-right: 30px;
}

.single-portfolio ul.project-meta-info li span.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.single-portfolio ul.project-meta-info li span.title {
  font-weight: 700;
  color: var(--themeht-white-color);
  font-family: var(--themeht-title-font-family);
  font-size: 18px;
}

.single-portfolio .portfolio-box img {
  width: 100%;
  border-radius: 20px;
  margin-top: 0;
}

.single-portfolio ul.project-meta-info.list-unstyled {
  padding: 0;
  margin: 0;
}

.single-portfolio .project-details-content {
  margin-bottom: 60px;
}

/* ------------------------
 Services
------------------------*/

/* ----  Service Style 1 ----*/
.service-item.style-1 {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.service-item.style-1:last-child {
  border-bottom: 1px solid var(--themeht-body-color);
}

.service-item.style-1 p {
  margin-bottom: 20px;
}

.service-item.style-1 h4 {
  margin: 0 0 10px;
}

.service-item.style-1 .service-img {
  padding-right: 50px;
  height: 400px;
}

.service-item.style-1 .service-img img {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 100%;
}

.service-item.style-1 .service-desc {
  background: var(--themeht-white-color);
  padding: 50px 40px;
  position: relative;
  z-index: 9;
  margin-top: -100px;
  width: 80%;
  margin-left: auto;
  border-radius: 10px;
}

.service-item.style-1 .service-icon i {
  font-size: 60px;
  margin-right: 30px;
  line-height: 60px;
  display: flex;
  align-items: center;
  color: var(--themeht-primary-color);
}

.service-item.style-1 .service-icon img {
  max-width: 70px !important;
  border-radius: 0 !important;
}

.service-item.style-1 h3 {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 0;
}

.service-item.style-1 .service-btn {
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: inherit;
  color: var(--themeht-white-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: -25px;
}

.themeht-move-cursor {
  top: -100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transition: all 0.1s linear, top 0ms linear, left 0ms ease-in-out;
  z-index: 9;
}

.themeht-move-cursor .themeht-inner-image {
  border-radius: 10px;
}

.themeht-cursor-show {
  width: 200px;
  height: 200px;
  top: auto;
  left: auto;
  border-radius: 0;
  transform: translate(-40%, -50%);
  background-size: cover;
  transition: all 0.2s linear, top 0ms linear, left 0ms ease-in-out;
  border: none;
  mix-blend-mode: normal;
  background-size: 100;
  border-radius: 10px;
}

/* ----  Service Style 2 ----*/
.service-item.style-2 {
  overflow: hidden;
}

.service-item.style-2 .service-img img {
  border-radius: 13px;
}

.service-item.style-2 .service-desc .service-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  line-height: 60px;
  color: var(--themeht-bg-dark-color);
  margin-top: 5px;
  margin-left: -2px;
  opacity: 0.2;
}

.service-item.style-2 .service-desc {
  z-index: 9;
  position: absolute;
  bottom: 70px;
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.service-item.style-2:hover .service-desc {
  opacity: 1;
}

.service-item.style-2 .service-btn {
  font-size: 24px;
  line-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 30px;
  transform: rotate(-40deg);
  z-index: 9;
  color: var(--themeht-bg-dark-color);
  background: var(--themeht-white-color);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item.style-2 .service-btn:hover {
  color: var(--themeht-white-color);
  background: var(--themeht-primary-color);
}

.service-item.style-2:hover .service-btn {
  top: 20px;
  right: 20px;
  opacity: 1;
}

.service-item.style-2 .service-btn i {
  display: flex;
}

.service-item.style-2 .service-title h4 {
  color: var(--themeht-bg-dark-color);
  position: relative;
  padding: 20px 30px;
  font-size: 22px;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 0;
}


.service-item.style-2 .service-title h4:before,
.service-item.style-2 .portfolio-cat a:before {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  content: "";
  background: var(--themeht-white-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  border-radius: 0 10px 10px 0;
}

.service-item.style-2:hover .service-title h4:before {
  width: 100%;
}

/* ----  Service Style 3 ----*/
.service-item.style-3 {
  padding: 15px;
  background: var(--themeht-bg-dark2-color);
  margin-bottom: 30px;
  border-radius: 60px 0 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.service-item.style-3::before {
  content: "";
  position: absolute;
  right: 0;
  background: var(--themeht-primary-color);
  width: 0;
  height: 100%;
  border-radius: 60px 0 0 60px;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.service-item.style-3:hover:before {
  width: 100%;
  opacity: 1;
}

.service-item.style-3 .service-icon {
  display: block;
  font-size: 40px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: var(--themeht-primary-color);
  margin-right: 15px;
  background: var(--themeht-bg-dark-color);
  border-radius: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 9;
}

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

.service-item.style-3 h3 {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  display: flex;
  color: var(--themeht-white-color);
  margin-left: 10px;
  z-index: 9;
}

.service-item.style-3 h3 a:hover,
.service-item.style-3:hover h3 a,
.service-item.style-3:hover .service-btn i {
  color: var(--themeht-bg-dark-color);
}

.service-item.style-3 .service-btn {
  -webkit-text-stroke: inherit;
  font-size: 24px;
  line-height: 34px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--themeht-white-color);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 9;
}

.service-item.style-3 .service-btn i {
  display: flex;
}

.service-item.style-3:hover .service-btn {
  right: 15px;
}

/* ---- Service Single ----*/
.service-page-sidebar {
  border-radius: 0;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 30px;
}

.single-services .col-12.col-lg-9 {
  padding-left: 60px;
}

.service-add {
  background-image: url(../../../../uploads/2023/02/services-img1.jpg);
  border-radius: 15px;
  padding: 120px 0;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.service-widget {
  margin-bottom: 40px;
}

.service-add a {
  font-size: 16px;
  line-height: 16px;
  padding: 20px 25px;
  background: var(--themeht-primary-color);
  border-radius: 15px;
}

.service-add a:hover {
  background: var(--themeht-white-color);
  color: var(--themeht-bg-dark-color);
}

.service-widget {
  margin-bottom: 50px;
}

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

.service-widget ul li {
  counter-increment: side-nav-counter;
  padding-left: 0;
  position: relative;
  list-style-type: none;
  margin-bottom: 1px;
  font-weight: 600;
  font-size: 18px;
}

.service-widget ul li a {
  background: transparent;
  color: var(--themeht-white-color);
  padding-bottom: 30px;
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: 18px;
  line-height: 18px;
  font-family: var(--themeht-title-font-family);
  font-weight: 700;
}

.service-widget ul li:hover a,
.service-widget ul li.current-menu-item a {
  color: var(--themeht-primary-color);
  padding-left: 0;
  text-decoration: underline;
}

.service-widget ul li:hover a:before,
.service-widget ul li.current-menu-item a:before {
  width: 30px;
}

/* ------------------------
 Tab
------------------------*/
.themeht-tab-slider {
  width: 100%;
  display: flex;
}

.tab-swiper {
  width: 50%;
}

.tab-thumb-slider {
  width: 50%;
  padding-left: 100px !important;
}

.tab-thumb-slider .swiper-wrapper {
  display: block;
  position: absolute;
  top: 10%;
}

.tab-thumb-slider .swiper-wrapper .swiper-slide {
  height: auto;
  width: 100% !important;
}

.themeht-custom-tab .themeht-tab-img {
  padding-right: 200px;
  padding-bottom: 200px;
}

.themeht-custom-tab .themeht-tab-img img {
  border-radius: 10px;
}

.themeht-custom-tab .themeht-tab-content {
  padding: 50px;
  display: block;
  background: var(--themeht-bg-dark-color);
  position: absolute;
  bottom: 0;
  left: 130px;
  -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;
  border-radius: 0 15px 15px 15px;
}

.themeht-custom-tab .themeht-tab-number {
  font-size: 64px;
  line-height: 74px;
  color: var(--themeht-white-color);
  font-family: var(--themeht-title-font-family);
  margin-bottom: 30px;
}

.themeht-custom-tab .themeht-tab-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

.swiper-slide-thumb-active .themeht-custom-tab .themeht-tab-heading h4 {
  color: var(--themeht-primary-color);
}

.themeht-custom-tab .themeht-tab-heading h4 {
  font-size: 50px;
  line-height: 50px;
  cursor: pointer;
  margin-bottom: 40px;
}

/* ------------------------
 Testimonial
------------------------*/

/* ---- Testimonial Style 1----*/
.testimonial-box.style-1 {
  text-align: center;
}

.testimonial-box.style-1 .testimonial-img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.testimonial-box.style-1 .testimonial-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-box.style-1 .testimonial-content img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--themeht-primary-color);
  object-fit: cover;
  padding: 5px;
}

.testimonial-box.style-1 p {
  font-size: 28px;
  line-height: 44px;
  font-style: italic;
  text-align: center;
  color: var(--themeht-white-color);
  margin: 0 150px 40px 150px;
}

.testimonial-box.style-1 .testimonial-caption {
  margin-left: 15px;
  text-align: left;
}

.testimonial-box.style-1 h4 {
  margin-bottom: 0;
  display: inline-block;
  font-size: 22px;
  line-height: 32px;
  color: var(--themeht-white-color);
  font-weight: 700;
  font-family: var(--themeht-title-font-family);
}

.testimonial-box.style-1 span {
  display: block;
  color: var(--themeht-white-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: var(--themeht-typography-body-font-family);
}

.testimonial-box.style-1 .testimonial-quote {
  display: inline-block;
  margin-bottom: 15px;
}

.testimonial-box.style-1 i {
  font-size: 75px;
  line-height: 75px;
  color: var(--themeht-primary-color);
}

.swiper.testimonial-swiper .testimonial-box.style-1 .swiper-button-prev,
.swiper.testimonial-swiper .testimonial-box.style-1 .swiper-button-next {
  opacity: inherit;
}

.swiper.testimonial-swiper .testimonial-box.style-1 .swiper-button-prev {
  left: 0 !important;
}

.swiper.testimonial-swiper .testimonial-box.style-1 .swiper-button-next {
  right: 0 !important;
}

/* ---- Testimonial Style 2 ----*/
.testimonial-box.style-2 {
  padding: 40px;
  display: block;
  border-radius: 8px;
  background: var(--themeht-bg-dark2-color);
  text-align: left;
}

.testimonial-box.style-2 img {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  margin-bottom: 30px;
}

.testimonial-box.style-2 .testimonial-content {
  display: inherit;
}

.testimonial-box.style-2 p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  color: var(--themeht-white-color);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-box.style-2 .testimonial-caption {
  margin: 0;
}

.testimonial-box.style-2 .testimonial-caption h4 {
  margin-bottom: 0;
  display: inline-block;
  font-size: 22px;
  line-height: 32px;
  color: var(--themeht-white-color);
  font-weight: 700;
  font-family: var(--themeht-title-font-family);
}

.testimonial-box.style-2 .testimonial-caption span {
  display: block;
  position: relative;
  color: var(--themeht-typography-body-color);
  margin-top: 5px;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

/* ------------------------
 Counter
------------------------*/

/* Counter Style 1 */
.counter-box {
  position: relative;
  padding-bottom: 20px;
}

.counter-box span.h3 {
  color: var(--themeht-white-color);
  font-size: 80px;
  line-height: 80px;
  color: transparent;
  -webkit-text-stroke: 1px var(--themeht-white-color);
  font-weight: 700;
  font-family: var(--themeht-typography-h1-font-family);
  margin: 0;
}

.counter-box h6 {
  position: absolute;
  bottom: 0;
  left: 100px;
  margin: 0;
  z-index: 9;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  padding-left: 15px;
  font-weight: 400;
  color: var(--themeht-white-color);
  font-family: var(--themeht-typography-body-font-family);
}

.counter-icon {
  font-size: 50px;
  color: var(--themeht-primary-color);
  margin-right: 15px;
  line-height: 1;
}

.elementor-widget-counter-box:last-child .counter-box {
  border-bottom: none;
  padding-bottom: 0;
}

/* Counter Style 2 */
.counter-style2 .counter-icon {
  font-size: 40px;
  line-height: 40px;
  color: var(--themeht-primary-color);
  position: absolute;
  top: 30px;
  left: 25px;
  display: flex;
}

.counter-style2 .count-number {
  font-size: 150px;
  line-height: 150px;
  color: transparent;
  -webkit-text-stroke: 0.4px var(--themeht-white-color);
  font-weight: 700;
  margin: 0;
  opacity: 0.3;
}

.counter-style2 h6 {
  margin-top: -40px;
  margin-left: 20px;
  font-size: 20px;
  line-height: 28px;
}

/* ------------------------
 Price Table
------------------------*/
.price-table-box {
  display: flex;
  position: relative;
  z-index: 9;
}

.price-table-box .price-value {
  width: 120px;
  min-width: 120px;
  height: 120px;
  background: var(--themeht-primary-color);
  border-radius: 100%;
  margin-right: 35px;
  line-height: 120px;
  text-align: center;
  display: inline-block;
}

.price-table-box .price-value span {
  color: var(--themeht-bg-dark-color);
  font-size: 18px;
  font-weight: 700;
  margin-right: -3px;
}

.price-table-box .price-value h2 {
  color: var(--themeht-bg-dark-color);
}

.price-table-box .price-value .price {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0;
  display: inline-block;
}

.price-table-box .price-title h4 {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 10px;
}

.price-table-box .price-title span {
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--themeht-white-color) !important;
}

.price-table-box .price-title ul {
  display: block !important;
  margin-top: 20px;
  margin-bottom: 0 !important;
}

.price-table-box .price-title ul li {
  font-size: 17px;
  line-height: 27px;
  color: var(--themeht-white-color);
  margin-bottom: 12px !important;
  display: flex;
}

.price-table-box .price-title ul li:last-child {
  margin-bottom: 0 !important;
}

.price-table-box .price-btn {
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 0;
  transform: inherit;
  background: var(--themeht-white-color);
  color: var(--themeht-bg-dark-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  transform: rotate(-45deg);
}

.price-table-box:hover .price-btn {
  transform: rotate(0deg);
}

/* ------------------------
 Team
------------------------*/
.team-member {
  margin-bottom: 40px;
}

.team-member .team-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

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

.team-member span p {
  color: var(--themeht-primary-color);
  margin-bottom: 0;
}

.team-member .team-social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  -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;
  opacity: 0;
}

.team-member .team-img:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: hsla(19, 100%, 50%, 1);
  background: radial-gradient(circle, rgb(196 239 23 / 100%) 0%, hsla(0, 0%, 9%, 0) 60%, hsla(0, 0%, 9%, 0) 100%);
  background: -moz-radial-gradient(circle, hsla(196, 239123, 0%, 100%)) 0%, hsla(0, 0%, 9%, 0) 60%, hsla(0, 0%, 9%, 0) 100%);
  background: -webkit-radial-gradient(circle, rgb(196 239 23 / 100%) 0%, hsl(0deg 0% 9% / 0%) 60%, hsl(0deg 0% 9% / 0%) 100%);
  -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;
  opacity: 0;
}

.team-member:hover .team-social-icon,
.team-member:hover .team-img:before {
  opacity: 1;
}

.team-member .team-social-icon li a {
  font-size: 18px;
  color: var(--themeht-bg-dark-color);
}

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

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

.team-member .team-desc h4 {
  font-size: 22px;
  line-height: 32px;
  color: var(--themeht-white-color);
  font-weight: 700;
  font-family: var(--themeht-title-font-family);
  margin-bottom: 10px;
}

.team-member .team-desc span {
  display: block;
  position: relative;
  color: var(--themeht-typography-body-color);
  margin-top: 5px;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--themeht-typography-body-font-family);
}

.team-member .team-desc h4 a {
  color: var(--themeht-white-color);
}

/*-------- Team Details -------- */
.team-single-page .team-img {
  background: var(--themeht-bg-dark-color);
  border-radius: 10px;
}

.team-single-page .post-thumbnail {
  margin: 0;
}

.team-single-page .post-thumbnail img {
  border-radius: 30px 30px 0 0;
}

.team-single-page .team-contact {
  padding: 40px;
}

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

.team-single-page .team-meta li i {
  font-size: 24px;
  color: var(--themeht-primary-color);
  vertical-align: middle;
  margin-right: 15px;
  line-height: 24px;
}

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

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

.team-single-page .team-social-icon li a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  text-align: center;
  font-size: 18px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: var(--themeht-white-color);
  display: inline-block;
  text-align: center;
}

.team-single-page .team-social-icon li a:hover {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
}

.team-single-page .entry-content {
  padding-left: 40px;
}