/* ------------------------
    Table of Contents

  1. Section Title
  2. Button
  3. Accordion
  4. Social Icons
  5. Team
  6. Counter
  7. Blog - Post
  8. Featured Box
  9. Testimonials
  10. Service Box
  11. Price Table   
  12. Progress Bar
  13. Portfolio
  14. Tab
  15. Step Box
  16. Swiper Arrow
  17. Swiper Dot Pagination


/* ------------------------
    Section Title
------------------------*/

.theme-title {
    margin-bottom: 50px
}

.theme-title h6 {
    line-height: 1;
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--themeht-primary-color);
    z-index: 9;
}

.theme-title p {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 30px;
}

.theme-title h2 {
    margin-bottom: 0;
    overflow: hidden;
}

.theme-title.text-white h6:before,
.theme-title.text-white h6:after {
    background: var(--themeht-white-color);
}

.theme-title.text-white h6,
.theme-title.text-white h2,
.theme-title.text-white p {
    color: var(--themeht-white-color);
}

.title-divider-separator {
    position: relative;
    border: none;
    width: 90px;
    height: 3px;
    display: block;
    margin: 20px 0;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 35%, transparent 65%, #ffffff 65%, #ffffff 100%);
}

.title-divider-separator:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.title-divider-separator:after {
    display: none;
}

.title-divider {
    padding-top: 30px;
}

.text-center .title-divider-separator {
    margin: 20px auto;
}

.dark-bg .title-divider-separator {
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 35%, transparent 65%, #ffffff 65%, #ffffff 100%);
}

.secondary-bg .title-divider-separator {
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 35%, transparent 65%, #ffffff 65%, #ffffff 100%);
}

.primary-bg .title-divider-separator {
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 35%, transparent 65%, #ffffff 65%, #ffffff 100%);
}

.light-bg .title-divider-separator {
    background: linear-gradient(to right, #f55631 0%, #f55631 35%, transparent 35%, transparent 65%, #f55631 65%, #f55631 100%);
}

.light-bg .title-divider-separator:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f55631" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>');
}

/* For sections without specific background class (default white) - use orange globe for visibility */
section:not(.dark-bg):not(.primary-bg):not(.secondary-bg):not(.light-bg):not(.form-section) .title-divider-separator {
    background: linear-gradient(to right, #f55631 0%, #f55631 35%, transparent 35%, transparent 65%, #f55631 65%, #f55631 100%);
}

section:not(.dark-bg):not(.primary-bg):not(.secondary-bg):not(.light-bg):not(.form-section) .title-divider-separator:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f55631" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>');
}

.theme-title h2 div {
    display: inline-block;
}


/* ------------------------
    Theme Button
------------------------*/

.themeht-btn {
    position: relative;
    overflow: hidden;
    z-index: 9;
    padding: 0;
    display: inline-block;
    border: none;
    font-family: var(--themeht-typography-secondary-font-family);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.themeht-btn span {
    padding: 14px 70px 14px 30px;
    display: inline-block;
    -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;
}

.themeht-btn.primary-btn {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.primary-alt {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.primary-alt:hover {
    color: var(--themeht-text-color);
}

.themeht-btn.secondary-btn {
    background: var(--themeht-secondary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.dark-btn {
    background: var(--themeht-bg-dark-color);
    color: var(--themeht-white-color);
}

.themeht-btn.dark-alt {
    background: var(--themeht-bg-dark-color);
    color: var(--themeht-white-color);
}

.themeht-btn.dark-alt:hover {
    color: var(--themeht-text-color);
}


.themeht-btn.white-btn {
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
}

.themeht-btn.white-btn:hover {
    color: var(--themeht-white-color);
}

.themeht-btn.outline-white-btn {
    background: transparent;
    color: var(--themeht-white-color);
    border: 1px solid var(--themeht-white-color);
}

.themeht-btn.outline-white-btn:hover {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    border-color: var(--themeht-primary-color);
}

.themeht-btn i {
    justify-content: center;
    align-items: center;
    display: flex;
    color: var(--themeht-white-color);
    font-size: 14px;
    position: absolute;
    right: -1px;
    top: -1px;
    height: 102%;
    line-height: 1;
    text-align: center;
    background: var(--themeht-secondary-color);
    --r: 15px;
    padding-inline: calc(var(--r) + 15px) 15px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 0em), var(--r) 50%, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 0em), var(--r) 50%, 0 0);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.themeht-btn:hover i {
    background: var(--themeht-primary-color);
}

.themeht-btn.primary-alt i {
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
}

.themeht-btn.primary-alt:hover i {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.dark-btn i {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.dark-btn:hover i {
    background: var(--themeht-bg-dark-color);
    color: var(--themeht-white-color);
}

.themeht-btn.dark-alt i {
    background: var(--themeht-white-color);
    color: var(--themeht-bg-dark-color);
}

.themeht-btn.dark-alt:hover i {
    background: var(--themeht-bg-dark-color);
    color: var(--themeht-white-color);
}

.themeht-btn.white-btn i {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.white-btn:hover i {
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
}

.themeht-btn.outline-white-btn i {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.themeht-btn.outline-white-btn:hover i {
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
}

.themeht-btn:before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    content: '';
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.themeht-btn.primary-btn:before {
    background: var(--themeht-secondary-color);
}

.themeht-btn.primary-alt:before {
    background: var(--themeht-white-color);
}

.themeht-btn.secondary-btn:before {
    background: var(--themeht-primary-color);
}

.themeht-btn.dark-btn:before {
    background: var(--themeht-primary-color);
}

.themeht-btn.dark-alt:before {
    background: var(--themeht-white-color);
}

.themeht-btn.white-btn:before {
    background: var(--themeht-primary-color);
}

.themeht-btn.outline-white-btn:before {
    background: var(--themeht-primary-color);
}

.themeht-btn:hover:before,
.themeht-btn:focus:before {
    width: 100%;
}
.themeht-btn.blue-alt {
    background: var(--themeht-white-color);
    color: var(--themeht-secondary-color);
}

.themeht-btn.blue-alt:hover {
    color: var(--themeht-white-color);
}


.themeht-btn.blue-alt:before {
    background: var(--themeht-secondary-color);
    color: var(--themeht-white-color);
}
.themeht-btn.blue-alt:hover i {
    background: var(--themeht-white-color);
    color: var(--themeht-secondary-color);
}

/* ------------------------
    Social Icons
------------------------*/

.social-icons ul {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.social-icons li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0 8px 0 0;
}

.social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    margin: 0;
    border: 1px solid var(--themeht-border-light-color);
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.social-icons li a:hover {
    border-color: var(--themeht-primary-color);
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}


/* ------------------------
    Featured Box
------------------------*/

.featured-item {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.featured-item.style-1 .featured-icon {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.featured-desc p {
    margin-bottom: 0;
}

.featured-title h4 {
    margin-bottom: 15px;
}

.featured-item.style-1 {
    padding: 40px;
    text-align: center;
    background: var(--themeht-white-color);
}

.featured-item.style-1 .featured-icon i {
    color: var(--themeht-primary-color);
    line-height: 1;
    font-size: 70px;
}

.featured-item.style-2 {
    display: flex;
    align-items: center;
}

.featured-item.style-2 .featured-icon {
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 54px;
    line-height: 1;
    color: var(--themeht-primary-color);
}

.featured-item.style-2 h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-item.style-3 {
    overflow: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.featured-item.style-3 .featured-icon {
    display: inline-block;
    color: var(--themeht-primary-color);
    line-height: 1;
    font-size: 54px;
}

.featured-item.style-3 h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 6px;
}

.featured-item.style-3 .featured-icon img {
    width: 42px;
    height: 42px;
}

.featured-item.style-4 .featured-icon {
    background: var(--themeht-primary-color);
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--themeht-white-color);
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
}

.featured-item.text-white h4,
.featured-item.text-white p {
    color: var(--themeht-white-color);
}

.featured-item.style-4.text-center .featured-icon {
    margin-left: auto;
    margin-right: auto;
}


/* ------------------------
    Testimonials
------------------------*/

.testimonial {
    position: relative;
}

.testimonial .testimonial-caption {
    z-index: 9;
    position: relative;
}

.testimonial .testimonial-caption label {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--themeht-text-color);
    display: block;
    text-transform: uppercase;
    font-size: 15px;
}

.testimonial .testimonial-caption h5 {
    color: var(--themeht-primary-color);
    display: inline-block;
    margin-bottom: 2px;
}

.testimonial.style-1 {
    background: var(--themeht-white-color);
    padding: 50px 40px;
    text-align: center;
    filter: drop-shadow(0px 5px 13px rgba(189, 202, 202, 0.35));
}

.testimonial.style-1 .testimonial-img {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.testimonial.style-1 .testimonial-caption {
    margin-bottom: 20px;
}

.testimonial.style-1 .testimonial-img img {
    border-radius: 100%;
}

.testimonial.style-1 .testimonial-quote {
    position: absolute;
    top: 0;
    right: -25px;
    background: var(--themeht-primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    border: 2px solid white;
    border-radius: 100%;
    line-height: 1;
}

.testimonial-rating i {
    color: #ffb300;
    margin-right: 2px;
}

.light-bg .testimonial.style-1 {
    filter: none;
}

.testimonial.style-2 {
    display: flex;
    align-items: center;
    /*box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);*/
    /*margin: 0px 50px;*/
}

.testimonial.style-2 .testimonial-img {
    width: 35%;
    flex-shrink: 0;
    margin-left: 30px;
}

.testimonial.style-2 .testimonial-content {
    padding: 50px;
    background: white;
}

.testimonial.style-2 .testimonial-quote {
    font-size: 90px;
    color: var(--themeht-text-color);
    display: inline-block;
    line-height: 1;
}

.testimonial.style-2 .testimonial-rating {
    display: inline-block;
    float: right;
    margin-top: 40px;
}

.testimonial.style-2 p {
    font-size: 24px;
    line-height: 34px;
    margin-top: 25px;
}

.testimonial-arrow .swiper-nav-bottom {
    margin-top: 0;
}

.testimonial-arrow .swiper-nav-bottom .swiper-button-prev,
.testimonial-arrow .swiper-nav-bottom .swiper-button-next {
    bottom: 40px;
}

.testimonial-arrow .swiper-nav-bottom .swiper-button-next {
    margin-right: -110px;
}

.testimonial-arrow .swiper-nav-bottom .swiper-button-prev {
    margin-left: 0px;
}

.testimonial.style-3 p {
    font-size: 22px;
    line-height: 34px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial.style-3 .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 25px;
}

.testimonial.style-3 .testimonial-quote {
    font-size: 50px;
    color: var(--themeht-primary-color);
    line-height: 1;
    display: inline-block;
    margin-bottom: 10px;
}

.testimonial-space {
    padding: 120px 150px 120px 70px;
}


/* ------------------------
    Service Box
------------------------*/

.service-item.style-1 {
    position: relative;
    z-index: 9;
}

.swiper-slide .service-item.style-1 {
    margin: 0 20px
}

.service-item .service-image {
    position: relative;
    overflow: hidden;
}

.service-image:before {
    background: hsla(0, 0%, 100%, .3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
    transition: all .5s linear;
}

.service-image::after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 600ms linear;
    transition: all 600ms linear;
}

.service-item:hover .service-image:before {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}

.service-item:hover .service-image:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 600ms linear;
    transition: all 600ms linear;
}

.service-item.style-1:hover .service-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    filter: brightness(0.8);
}

.service-item.style-1 .service-title h4 {
    font-size: 22px;
}

.service-item.style-1 .service-icon {
    position: absolute;
    right: 30px;
    top: -50px;
    height: 80px;
    width: 80px;
    background: var(--themeht-white-color);
    color: var(--themeht-text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 40px;
    line-height: 1;
}

.service-item.style-1 .service-icon::before {
    position: absolute;
    content: "";
    right: -20px;
    bottom: 0;
    width: 20px;
    height: 30px;
    background-color: #d4d4d4;
    aspect-ratio: 1;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0);
    clip-path: polygon(0 100%, 0 0, 100% 0);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-item.style-1:hover .service-icon {
    color: var(--themeht-white-color);
}

.service-item.style-1:hover .service-icon,
.service-item.style-1:hover .service-icon::before {
    background: var(--themeht-primary-color);
}

.service-item.style-1 .service-desc {
    position: relative;
    z-index: 1;
    background: var(--themeht-white-color);
    padding: 35px 30px 30px 30px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-item .service-btn {
    position: relative;
    z-index: 1;
    display: block;
    padding: 10px 20px 10px;
    height: 48px;
    background: var(--themeht-bg-light-color);
    overflow: hidden;
}

.service-item .service-btn::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--themeht-primary-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
}

.service-item .service-btn span {
    font-size: 14px;
    font-weight: 700;
    color: var(--themeht-text-color);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.service-item:hover .service-btn span {
    color: var(--themeht-white-color);
}

.service-item .service-btn i {
    float: right;
    margin: -10px -21px 0 0;
    height: 49px;
    line-height: 49px;
    color: var(--themeht-white-color);
    text-align: center;
    background: var(--themeht-primary-color);
    --r: 20px;
    padding-inline: calc(var(--r) + 22px) 22px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 0em), var(--r) 50%, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 0em), var(--r) 50%, 0 0);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 14px;
}

.service-item:hover .service-btn::before {
    opacity: 1;
    width: 100%;
}

.service-item:hover .service-btn i {
    background: var(--themeht-secondary-color);
}

.service-item:hover .service-btn.modern-btn i {
    background: transparent;
}

/* Modern Button Styling */
.service-btn.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f55631 0%, #ff7043 100%);
    border-radius: 8px;
    height: auto;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 86, 49, 0.2);
}

.service-btn.modern-btn::before {
    display: none;
}

.service-btn.modern-btn span {
    color: var(--themeht-white-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-btn.modern-btn i {
    float: none;
    margin: 0;
    height: auto;
    line-height: 1;
    color: var(--themeht-white-color);
    background: transparent;
    padding: 0;
    clip-path: none;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-btn.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 86, 49, 0.35);
}

.service-btn.modern-btn:hover i {
    transform: translateX(4px);
    background: transparent;
}

.service-item:hover .service-btn.modern-btn span {
    color: var(--themeht-white-color);
}

.service-item .service-desc p {
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    margin-bottom: 25px;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.service-item .post-thumbnail {
    margin-bottom: 50px;
}

.service-item.style-2 {
    border: 1px solid var(--themeht-border-light-color);
    padding: 20px 30px 30px;
    position: relative;
}

.service-item.style-2 .service-image {
    margin: 30px 0 25px;
}

.dark-bg .service-item.style-2 h4 a,
.dark-bg .service-item.style-2 p {
    color: var(--themeht-white-color);
}

.service-item.style-2 .service-icon {
    position: absolute;
    left: 30px;
    top: 0;
    height: 80px;
    width: 80px;
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 40px;
    line-height: 1;
}

.service-item.style-2 .service-icon::before {
    position: absolute;
    content: "";
    right: -20px;
    top: 0;
    width: 20px;
    height: 30px;
    background-color: var(--themeht-primary-color);
    aspect-ratio: 1;
    -webkit-clip-path: polygon(100% 100%, 0% 100%, 0% 0);
    clip-path: polygon(100% 100%, 0% 100%, 0% 0);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-item.style-2:hover .service-icon {
    color: var(--themeht-white-color);
}

.service-item.style-2:hover .service-icon,
.service-item.style-2:hover .service-icon::before {
    background: var(--themeht-secondary-color);
}

.service-item.style-2 .service-title {
    padding-left: 100px;
}


/* ------------------------
    Progress Bar
------------------------*/

.ht-progress-bar {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.ht-progress-bar h4 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1;
}

.ht-progress-bar.text-white h4 {
    color: var(--themeht-white-color);
}

.ht-progress-bar .progress {
    height: 6px;
    background: var(--themeht-bg-light-color);
    overflow: visible;
    border-radius: 0;
}

.ht-progress-bar .progress .progress-bar {
    background: var(--themeht-primary-color);
    position: relative;
    overflow: visible;
    border-radius: 0;
}

.ht-progress-bar .progress-parcent {
    position: absolute;
    right: 0;
    top: -11px;
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
    color: var(--themeht-text-color);
    z-index: 9;
    padding: 0px 14px;
}

.ht-progress-bar .progress-parcent:before {
    position: absolute;
    left: 0;
    top: 0;
    background: white;
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    content: "";
    transform: skewX(-30deg);
    z-index: -1;
    width: 100%;
    height: 100%;
}


/* ------------------------
    Portfolio
------------------------*/

.portfolio-item {
    position: relative;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.portfolio-desc {
    padding: 30px;
}

.portfolio-desc h4 {
    margin-bottom: 0
}

.portfolio-image:before {
    background: hsla(0, 0%, 100%, .3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
    transition: all .5s linear;
}

.portfolio-image::after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 600ms linear;
    transition: all 600ms linear;
}

.portfolio-item:hover .portfolio-image:before {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}

.portfolio-item:hover .portfolio-image:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 600ms linear;
    transition: all 600ms linear;
}

.portfolio-desc {
    position: relative;
    margin-top: -40px;
    margin-left: 40px;
    margin-bottom: 5px;
    padding: 26px 75px 25px 25px;
    box-shadow: 0 8px 40px rgba(0, 8, 40, .07);
    background-color: var(--themeht-white-color);
    z-index: 9;
}

.portfolio-desc span {
    font-size: 15px;
    font-weight: 600;
    color: var(--themeht-white-color);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 3px 25px;
    background-color: var(--themeht-primary-color);
    text-transform: uppercase;
    transform: translateY(-100%);
}

.portfolio-desc span:before {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 101%;
    -webkit-clip-path: polygon(25% 25%, 25% -50%, 100% 100%, 25% 100%);
    clip-path: polygon(25% 25%, 25% -50%, 100% 100%, 25% 100%);
    background-color: var(--themeht-primary-color)
}

a.portfolio-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--themeht-white-color);
    background-color: var(--themeht-bg-dark-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-right: 8px;
}

a.portfolio-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 21px;
    height: 100%;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: var(--themeht-bg-dark-color);
    transition: all .3s ease;
}

a.portfolio-btn:hover,
a.portfolio-btn:hover:before {
    background-color: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

.portfolio-swiper .swiper-slide:nth-child(2n+2) .portfolio-item {
    margin-top: 40px
}


/* ------------------------
  Step Box
------------------------*/

.step-item.style-1 {
    text-align: center;
}

.step-item.style-1 h4 {
    margin-bottom: 10px;
}

.text-white.step-item.style-1 h4 {
    color: var(--themeht-white-color);
}

.step-item.style-1 .step-desc {
    padding: 0 20px;
}

.step-item.style-1 .step-icon {
    position: relative;
    width: 150px;
    height: 150px;
    line-height: 150px;
    background-color: var(--themeht-white-color);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
    margin: 0 auto 30px auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 3;
    font-size: 54px;
    color: var(--themeht-text-color);
}

.step-item.style-1 .step-icon i {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: inline-block;
}

.step-item.style-1:hover .step-icon i {
    color: var(--themeht-white-color);
}

.step-item.style-1:hover .step-icon i {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.step-item.style-1 .step-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    inset: 15px;
    border-radius: 50%;
    background-color: var(--themeht-white-color);
    border: 1px dashed var(--themeht-primary-color);
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.step-item.style-1:hover .step-icon:before {
    background-color: var(--themeht-primary-color);
}

.step-item.style-1 .step-number {
    position: absolute;
    top: 0;
    right: -8px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.step-item.style-1:hover .step-number {
    background-color: var(--themeht-secondary-color);
    color: var(--themeht-white-color);
}

.step-process-area {
    position: relative;
}

.step-process-area::after {
    background: url(../images/step-line.svg);
    top: 60px;
    content: "";
    height: 100%;
    left: 15%;
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}


/* ------------------------
  Swiper Arrow 
------------------------*/

.swiper .swiper-button-prev {
    left: 0;
}

.swiper .swiper-button-next {
    right: 0;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    background: var(--themeht-primary-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 50%;
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
    background: var(--themeht-secondary-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-white-color);
    font-size: 22px;
    -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-light-color);
    background: var(--themeht-bg-dark-color);
}

.swiper-nav-white .swiper-button-prev:hover,
.swiper-nav-white .swiper-button-next:hover,
.swiper-nav-bottom-white .swiper-button-prev:hover,
.swiper-nav-bottom-white .swiper-button-next:hover {
    background: var(--themeht-white-color);
    border-color: var(--themeht-white-color);
}

.swiper-nav-white .swiper-button-next:after,
.swiper-nav-white .swiper-button-prev:after,
.swiper-nav-bottom-white .swiper-button-next:after,
.swiper-nav-bottom-white .swiper-button-prev:after {
    color: var(--themeht-white-color);
}

.swiper-nav-white .swiper-button-prev:hover:after,
.swiper-nav-white .swiper-button-next:hover:after,
.swiper-nav-bottom-white .swiper-button-prev:hover:after,
.swiper-nav-bottom-white .swiper-button-next:hover:after {
    color: var(--themeht-text-color);
}

.swiper-nav-bottom-white .swiper-button-next,
.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom .swiper-button-next,
.swiper-nav-bottom .swiper-button-prev {
    top: inherit;
    bottom: 0;
}

.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom .swiper-button-prev {
    left: 50% !important;
    margin-left: -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-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: var(--themeht-bg-dark-color);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
    opacity: 1;
    width: 10px;
    height: 10px;
}

.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;
}