/*===============================================
Template Name: Luhabiz - Digital Creative Agency 
Author:  LuHaBiz Dev Team
Author URL : https://www.codibox.com.mx
Description: Description
Version: 1.0.0
Text Domain: LuHaBiz
================================================*/

/*TABLE OF CONTENTS*/
/*=====================
01. luhabiz Header Area Css
03. luhabiz Hero Area Css
04. luhabiz About Area Css
05. luhabiz marquee Area Css
06. luhabiz Counter Area Css
07. luhabiz Service Area Css
08. luhabiz Team Area Css
09. luhabiz Portfolio Area Css
10. luhabiz Testimonial Area Css
11. luhabiz Feature Area Css
12. luhabiz Blog Area Css
13. luhabiz Footer Area Css
15. luhabiz Contact Area Css
16. luhabiz Breadcrumb Area Css
17. luhabiz Chooose Sections Css
18. luhabiz Pricing Area Css
19. luhabiz Team Detialas Page  Css
20. luhabiz Login Page  Css 
21. luhabiz Project details Area Css 
22. luhabiz Sinup Page  Css 
23. luhabiz Blog Details  Css 
24. luhabiz Service Details  Css 
25. luhabiz Sidebar Area  Css 
25. luhabiz Contact Area  Css 
26. luhabiz Loader  Css

=======================*/


/*---=================================
   <!--luhabiz Header Area Css-->
==================================---*/
.header-area {
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    margin-bottom: -100px;
    z-index: 2;
}
.luhabiz-menu {
    text-align: right;
}
.header-menu {
    text-align: center;
    display: inline-block;
}
.header-menu ul li {
    display: inline-block;
    margin-right: 32px;
    position: relative;
}
.header-menu ul li a {
    display: inline-block;
    font-size: 15px;
    color: var(--solid-white);
    font-weight: 400;
    padding: 37px 0;
    transition: 0.5s;
    font-family: var(--fonts-title);
    position: relative;
    z-index: 1;
}
.header-menu ul li a:hover {
    color: var(--primary-color);
}
.header-menu ul li a i {
    margin-left: 6px;
    font-size: 15px;
}

@media (min-width: 992px) {
    .header-menu ul.nav-inline {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: nowrap;
    }

    .header-menu ul.nav-inline li {
        margin-right: 0;
    }
}

/* Sub Menu */

ul.sub-menu {
    position: absolute;
    width: 250px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-color);
    border-radius: 3px 3px 0 0;
}
.header-menu ul li:hover .sub-menu{
    opacity: 1;
    top: 110%;
    visibility: visible;
}
.header-menu ul li .sub-menu li {
    position: relative;
    margin-right: 0;
    display: block;
}
.header-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 19px !important;
    color: #1e1e1e;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}
.header-menu ul li .sub-menu li a:hover {
    color: var(--body-color);
}
.header-menu ul li .sub-menu li a::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: -1;
    transition: 0.5s;
}

.header-menu ul li .sub-menu li a:hover:after{
    height:100%;
    top: 0;
}

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: var(--bg-color) !important;
    transition: 0.5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

/* header right right */

.header-right-side {
    display: inline-block;
}
.header-btn {
    display: inline-block;
    margin-left: 105px;
}
.header-btn a {
    display: inline-block;
    border-radius: 25px;
    background-color: var(--primary-color);
    padding: 12px 22px;
    font-size: 15px;
    text-transform: uppercase;
    color: #141414;
    font-weight: 400;
    font-family: "Unbounded";
    position: relative;
    z-index: 1;
}
.header-btn a:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    background: var(--solid-white);
    width: 0;
    height: 100%;
    z-index: -1;
    transition: 0.5s;
    border-radius: 25px;
}
.header-btn a:hover:before {
    width: 100%;
    left: 0;
}
.header-btn a:hover {
    color: var(--primary-color);
}

.header-btn a i {
    font-weight: 700;
    font-size: 15px;
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 4px;
    transition: 0.5s;
}
.header-btn a:hover i {
    color: var(--primary-color);
}
.header-sidbar {
    display: inline-block;
}
.header-sidbar a {
    display: inline-block;
    background: rgba(252,252,252,0.1)!important;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 25px;
    margin-left: 10px;
}

/* Header Section Style Two */

.header-area.style_two {
    padding: 45px 85px 0 70px;
    border: 0;
    margin-bottom: -115px;
    z-index: 2;
}
.header-area.style_two .luhabiz-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 20px;
}
.header-area.style_two .header-menu {
    border-radius: 35px;
    background-color: rgba(255,255,255,0.10196078431372549);
    border: 2px solid rgba(255,255,255,0.17);
    padding: 0 32px;
}
.header-area.style_two .header-menu ul li:last-child {
    margin: 0;
}
.header-area.style_two .header-menu ul li a {
    padding: 20px 0;
}
.sticky.header-area.style_two  {
    padding: 20px 85px 20px 70px;
}

/*---=================================
   <!--luhabiz Hero Area Css-->
==================================---*/

.hero-area {
    height: 920px;
    background: url(../images/home/Home1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 170px;
}
.hero-title h1 {
    font-size: 120px;
    font-weight: 500;
    -webkit-text-stroke: 1px var(--solid-white);
    color: transparent;
    text-align: center;
    line-height: 130px;
    position: relative;

}
.hero-title h1:nth-child(1):before {
    position: absolute;
    content: '';
    left: 16%;
    top: 18px;
    background: var(--primary-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: -1;
    animation-name: float-bob2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
h1.hero-style-title {
    color: var(--solid-white);
    text-align: left;
    -webkit-text-stroke: 0;
}
h1.hero-style-title span {
    color: var(--primary-color);
    text-align: left;
}
p.hero-description {
    margin: 0;
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 26%;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--fonts-body);
}

.hero-video-box {
    background: url(../images/main-home/button-shape.png);
    background-repeat: no-repeat;
    width: 18%;
    padding: 7px 8px;
    align-items: center;
    position: absolute;
    left: 0;
    display: inline-block;
    bottom: 4%;
}
.video-icon a {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: inline-block;
    text-align: center;
    line-height: 65px;
    color: var(--secondary-color);
    font-size: 30px;
}


.flip-rotate {
    position: absolute;
    top: -15%;
    right: 0;
}
/*animation circle*/
.text-inner {
    animation: circle 15s linear infinite;
    animation: circle 15s linear infinite;
    position: relative;
    z-index: 22;
    fill: transparent;
}
.text-inner svg {
    width: 111px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 26px;
    transform: rotate(0) scaleX(1) scaleY(1);
    position: relative;
}
.text-inner text {
    fill: #ffffff;
    direction: ltr;
    transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
    font-size: 35px;
    font-weight: 400;
    position: relative;
    z-index: 2;
    font-family: "Unbounded";
}
a.banner-play-btn {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background-color: rgba(252,252,252,0.1)!important;
    overflow: hidden;
    line-height: 165px;
    text-align: center;
    position: relative;
    display: inline-block;
}
.like {
position: absolute;
top: 52%;
transform: translate(-50%, -50%);
left: 50%;
}
@keyframes circle {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  .circle {
      animation: circle 15s linear infinite;
  }
  .right {
    animation: right 15s linear infinite;
  }
  .spin2 {
    animation: spin2 15s linear infinite;
  }
  @keyframes right {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-positive {
    0% {
      width: 0;
    }
  }
  
  /* get in toouch button */

  .get-in-touch-btn {
    position: absolute;
    bottom: 98px;
    left: 0;
    
}
.get-in-touch-btn a {
    display: block;
    font-size: 14px;
    line-height: 80px;
    color: #f4f4f4;
    font-weight: 400;
    font-family: "Unbounded";
    transform: rotate(-90deg);
    position: relative;
    z-index: 1;
}
.get-in-touch-btn a:before {
    position: absolute;
    content: '';
    left: -19px;
    bottom: 12px;
    height: 55px;
    width: 55px;
    background: rgba(252,252,252,0.1);
    border-radius: 50%;
}

/* Hero Area Style Two */

.hero-area.style_two.d-flex.align-items-center {
    background: url(../images/home-2/banner-bg.jpg);
}
.hero-content.style_two {
    text-align: center;
}
.hero-content.style_two .hero-title h1,
.hero-content.style_two .hero-title h2,
.hero-content.style_two .hero-title h3 {
    font-size: 80px;
    font-weight: 500;
    -webkit-text-stroke: 0;
    color: #fff;
    line-height: 100px;
    margin: 0;
}
.hero-content.style_two .hero-title h3 {
    font-size: 50px;
    line-height: 42px;
}
.hero-content.style_two .hero-title h1:nth-child(1):before,
.hero-content.style_two .hero-title h2:nth-child(1):before,
.hero-content.style_two .hero-title h3:nth-child(1):before {
    display: none;
}
.hero-content.style_two .hero-title h1 span,
.hero-content.style_two .hero-title h2 span,
.hero-content.style_two .hero-title h3 span {
    color: var(--primary-color);
    font-size: 92px;
    font-weight: 600;
    display: inline-block;
    margin-left: 290px;
}
.hero-content.style_two .hero-title h3 span {
    font-size: 36px;
    margin-left: 0;
}
.hero-content.style_two p {
    font-size: 26px;
    line-height: 36px;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--fonts-title);
    width: 65%;
    text-align: center;
    margin: 32px auto 0;
}
.hero-content.style_two .hero-video-box {
    padding: 7px 8px;
    text-align: left;
    left: 19%;
    bottom: 55%;
    background: url(../images/home-2/video-shpae.png);
    background-repeat: no-repeat;
}
.flip-rotate.style_two {
    top: inherit;
    bottom: -13%;
    right: -4%;
}
/* Hero Button */

.hero-main-btn {
    margin-top: 42px;
}
.hero_btn a {
    border-radius: 33px;
    background-color: rgba(51,51,51,0);
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    padding: 17px 34px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
}
.hero_btn a::before, .hero_btn a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.hero_btn a::after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.hero_btn a:hover::before, .hero_btn a:hover::after {
    bottom: 0;
    opacity: 0;
}
.hero_btn a i {
    font-size: 19px;
    font-weight: 600;
    margin-left: 8px;
}
.hero_btn a:last-child {
    background: var(--primary-color);
    border: 2px solid var(--primay-color);
    color: var(--body-color);
    margin-left: 15px;
}

/*===============================================
    Start Marquee Area
================================================*/
.marquee_area {
    padding: 37px 0 37px;
    background: var(--primary-color);
    position: relative;
    z-index: 1;
}
.marquee.style1 {
    max-width: 1920px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.marquee.style1 .marquee__item {
    display: inline-block;
    will-change: transform;
    animation: marquee 15s linear infinite;
}
.marquee.style1 .marquee__item .banner-marque-bottom {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.marquee.style1 .marquee__item .banner-marque-bottom p {
    display: block;
    margin: 0 33px 0 0;
    text-align: center;
    font-size: 28px;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Unbounded";
}
.marquee.style1 .marquee__item .banner-marque-bottom p .seperator{
    margin-left: 35px;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/*Section Title Css*/

.section-main-title {
    margin-bottom: 30px;
}
.section-main-title h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 15px;
}
.section-main-title h4 i {
    display: inline-block;
    height: 17px;
    width: 17px;
    background: var(--primary-color);
    line-height: 17px;
    border-radius: 50%;
    text-align: center;
    color: var(--body-color);
    font-size: 17px;
    margin-right: 8px;
}
.section-main-title h1 {
    color: #f3f6f3;
    font-size: 42px;
    line-height: 55px;
    margin: 0;
}
.section-main-title span {
    display: inline-block;
    color: var(--primary-color);
}
p.description {
    font-size: 16px;
    color: #ffffffd1;
    width: 59%;
    margin: 15px 0 0;
}
.section-main-title.text-center {
    margin-bottom: 53px;
}

/* Pagination btn */

.pagination_btn {
    text-align: center;
    margin-top: 15px;
}
.pagination_btn a {
    font-size: 16px;
    text-decoration: underline;
    color: var(--primary-color);
    font-weight: 400;
    font-family: "Unbounded";
    text-align: center;
    display: inline-block;
}
.pagination_btn a:hover {
    color: var(--solid-white);
}

/*---=================================
   <!--luhabiz About Area Css-->
==================================---*/

.about-area {
    background: #141414;
    padding: 120px 0 120px  188px;
}
.about-thumb {
    position: relative;
    z-index: 1;
}
.about_coun-box {
    background: #1e1e1e;
    padding: 24px 40px 8px 30px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    width: 36%;
}
.about-left-content h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    margin: 16px 0 12px;
}
.about-left-content p {
    font-size: 15px;
    line-height: 23px;
    color: #ffffffb5;
    font-weight: 400;
    font-family: "Open Sans";
}

ul.about-list li {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    margin-bottom: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.luhabiz-btn {
    margin-top: 48px;
}

.luhabiz-btn a {
    display: inline-block;
    border-top: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    padding: 10px 24px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}
.luhabiz-btn a:hover {
    border-top: 1px solid var(--solid-white);
    border-left: 1px solid var(--solid-white);
    border-right: 1px solid var(--solid-white);
    border-bottom: 5px solid var(--solid-white);
    color: var(--secondary-color);
    background: var(--primary-color);

}
.luhabiz-btn a i {
    position: absolute;
    right: -50px;
    height: 51px;
    width: 49px;
    line-height: 46px;
    border-top: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    top: -1px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: 0.5s;
}
.luhabiz-btn a:hover i {
    border-top: 1px solid var(--solid-white);
    border-left: 1px solid var(--solid-white);
    border-right: 1px solid var(--solid-white);
    border-bottom: 5px solid var(--solid-white);
    background: var(--primary-color);
    color: var(--secondary-color);
}
.luhabiz-btn.style_three a {
    padding: 10px 34px;
}
.luhabiz-btn.style_four a {
    display: inline-block;
    text-transform: uppercase;
}
.luhabiz-btn.style_four.text-right {
    text-align: right;
    margin-right: 48px;
}

/* pixelevo social icon */
.pixelevo_social_icon a {
    display: inline-block;
    font-size: 13px;
    color: var(--p-color);
    margin: 5px 6px 0 0;
    width: 36px;
    border: 1px solid rgb(243 246 243 / 32%);
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 36px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pixelevo_social_icon a:hover {
    color: var(--title-color);
    border: 1px solid var(--primary-color);
    animation: zoom-in 0.5s ease-in-out forwards;
}

.pixelevo_social_icon a:before {
    position: absolute;
    z-index: -1;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transform: scale(0);
    transition: 0.5s;
    border-radius: 50%;
}

.pixelevo_social_icon a:hover:before {
    transform: scale(1);
}

.pixelevo_social_icon.text-right {
    margin-top: 16px;
    text-align: right;
}

@media (max-width: 992px) {
    .pixelevo_social_icon a {
        margin: 5px 3px 0 0;
    }
}

@media (max-width: 768px) {
    .pixelevo_social_icon a {
        font-size: 11px;
        margin: 5px 0 0 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

/* pixelevo-btn styles */
.pixelevo-btn {
    margin-top: 48px;
}

.pixelevo-btn a {
    display: inline-block;
    border-top: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    padding: 10px 24px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}
.pixelevo-btn a:hover {
    border-top: 1px solid var(--solid-white);
    border-left: 1px solid var(--solid-white);
    border-right: 1px solid var(--solid-white);
    border-bottom: 5px solid var(--solid-white);
    color: var(--secondary-color);
    background: var(--primary-color);

}
.pixelevo-btn a i {
    position: absolute;
    right: -50px;
    height: 51px;
    width: 49px;
    line-height: 46px;
    border-top: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    top: -1px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: 0.5s;
}
.pixelevo-btn a:hover i {
    border-top: 1px solid var(--solid-white);
    border-left: 1px solid var(--solid-white);
    border-right: 1px solid var(--solid-white);
    border-bottom: 5px solid var(--solid-white);
    background: var(--primary-color);
    color: var(--secondary-color);
}
.pixelevo-btn.style_three a {
    padding: 10px 34px;
}
.pixelevo-btn.style_four a {
    display: inline-block;
    text-transform: uppercase;
}
.pixelevo-btn.style_four.text-right {
    text-align: right;
    margin-right: 48px;
}

/* About Section Style two */

.about-area.style_two {
    padding: 60px 0 60px;
}
.about_coun-box.style_two {
    top: inherit;
    bottom: 0;
    width: 48%;
    padding: 17px 40px 8px 30px;
}
/* Boxed */

.boxed {
    position: relative;
    width: calc(100% - 120px);
    margin: 0 0 0 60px;
    height: 100%;
    left: 0;
    z-index: 5;
    border-radius: 25px;
}


/*====================================================
    Start luhabiz Counter Area Css
======================================================*/

.counter_area {
    background: #141414;
    padding: 0 0 90px;
}
.counter_single_item {
    text-align: center;
    border: 1px solid #ffffff6e;
    border-radius: 20px;
    padding: 18px 0 38px;
    margin-bottom: 30px;
}
.counter_content h1 {
    display: inline-block;
    font-size: 60px;
    color: transparent;
    font-weight: 500;
    -webkit-text-stroke: 1px #ffffff;
}
.counter_content p {
    font-size: 17px;
    color: #ffffffd9;
    font-weight: 500;
    font-family: "Open Sans";
    margin: 4px 0 0;
}


/*===============================================
    Start luhabiz Service  Area Css
================================================*/

.service_area {
    background: #1E1E1E;
    padding: 120px 0 90px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service_single_item {
    background: #141414;
    padding: 45px 40px 21px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.service_single_item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
    border-radius: 20px;
    background: url(../images/main-home/service-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.service_single_item:hover:before{
    transform:rotateX(90deg);
}
.service_single_item::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
    border-radius: 20px;
    background: url(../images/main-home/service-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.service_single_item:hover:after{
    transform:rotateY(90deg);
}
.service-icon-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #ffffff0d;
    line-height: 80px;
    text-align: center;
}
.service-btn a i {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    transition: 0.5s;
}
.service_single_item:hover .service-btn a i {
    transform: rotate(-45deg);
    color: var(--primary-color);
}
.service_content h3 {
    margin: 104px 0 19px;
    transition: 0.5s;
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
}

.service_single_item:hover .service_content h3  {
    color: var(--primary-color);
}
.service_content p {
    transition: 0.5s;
    font-size: 16px;
    color: #ffffffb3;
    font-weight: 400;
}

.luhabiz-right {
    margin-bottom: 24px;
}
.luhabiz-btn.style_two {
    margin-top: 33px;
}

/* service sections style Two */

.service_area.style_two {
    padding: 120px 0 115px;
}
.service_single_items {
    margin-bottom: 30px;
}
.service-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}
.service-thumb img {
    width: 100%;
}
.service-thumb::before, .service-thumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.service-thumb::after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.service-thumb:hover::before, .service-thumb:hover::after {
    bottom: 0;
    opacity: 0;
}
.service_contents {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.35);
    z-index: 1;
    backdrop-filter: blur(4.4px);
    width: 90%;
    margin: auto;
    border-radius: 10px;
    padding: 4px 20px 20px;
    opacity: 0;
    transition: 0.5s;
}
.service_contents h3 a {
    display: inline-block;
    font-size: 21px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    position: relative;
    z-index: 1;
    padding-left: 54px;
}
.service_contents h3 a:hover {
    color: var(--primary-color);
}
.service_contents h3 a:before {
    width: 45px;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    content: '';
    left: 0;
    top: 11px;
}
.service_contents p {
    font-size: 21px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    margin: 2px 0 18px;
}
.service_btn a {
    display: inline-block;
    font-size: 15px;
    line-height: 32px;
    color: #141414;
    font-weight: 500;
    font-family: "Unbounded";
    background: #fff;
    border-radius: 21px;
    padding: 5px 22px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service_btn a::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: top 0.5s ease-in-out;
    z-index: -1;
    border-radius: 21px;
}
.service_btn a:hover::before {
    top: 0;
}

.service_btn a:not(:hover)::before {
    top: 100%;
}
.active_service .service_contents {
    bottom: 18px;
    opacity: 1;
}
.service_single_items:hover .service_contents {
    opacity: 1;
    bottom: 18px;
}

.service_area.style_two .section-main-title .servicios_resumen {
    width: 100%;
    margin: 20px auto 0;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffffd1;
}
.service_area.style_two .section-main-title .servicios_resumen.highlight {
    font-family: "Unbounded";
    font-size: 22px;
    font-weight: 500;
    color: var(--solid-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.service_area.style_two .section-main-title .servicios_resumen.highlight span {
    display: inline-block;
}

/* Servicios listado custom */
.servicios_intro {
    color: var(--solid-white);
    margin-bottom: 60px;
}
.servicios_intro p {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 18px;
}
.servicios_intro .intro_highlight {
    font-family: "Unbounded";
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0;
}
section.team_area {
    padding: 120px 0 107px;
    background: var(--bg-color);
}
.swiper.wwiper_hiden {
    overflow: hidden;
}
.team_single_box {
    margin-bottom: 30px;
}
.team_thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
}
.team_thumb::before, .team_thumb:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.team_thumb:after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.team_single_box:hover .team_thumb::before, .team_single_box:hover .team_thumb::after {
    bottom: 0;
    opacity: 0;
}
.team_thumb img {
    width: 100%;
}
.team_social {
    right: 0;
    position: absolute;
    top: 30px;
    opacity: 0;
    transition: 0.5s;
}
.team_single_box:hover .team_social {
    opacity: 1;
    right: 20px;
}
.team_social a {
    display: block;
    font-size: 15px;
    color: #fff;
    margin: 06px;
}
.team_social a {
    display: block;
    font-size: 15px;
    color: #fff;
    margin: 06px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 19%);
    text-align: center;
    line-height: 45px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.team_social a:hover {
    color: var(--title-color);
}
.team_social a:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color); 
    transform: scale(0);
    transition: 0.5s;
    border-radius: 50%;
}
.team_social a:hover:before {
    transform: translate(1);
    transform: scale(1);
}
.team_conent h3 {
    font-size: 21px;
    color: #ffffff;
    font-weight: 500;
    margin: 31px 0 10px;
    transition: 0.5s;
}
.team_conent h3:hover {
    color: var(--primary-color);
}
.team_conent p {
    font-size: 16px;
    color: #ffffffa1;
    font-weight: 400;
}

/* dote button  */

.luhabiz-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    margin-top: 30px;
    position: relative;
}
.luhabiz-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    opacity: 1;
    background: #343E1C;
    margin: 0 5px !important;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}
.luhabiz-dots .swiper-pagination-bullet-active:before {
    position: absolute;
    content: '';
    left: -4px;
    top: -4px;
    height: 18px;
    width: 18px;
    border: 1px solid var(--primary-color);
    z-index: -1;
    border-radius: 50%;
}
.luhabiz-dots .swiper-pagination-bullet-active {
    position: relative;
    z-index: 1;
    background: var(--primary-color);
}

/* pixelevo-dots button */

.pixelevo-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    margin-top: 30px;
    position: relative;
}
.pixelevo-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    opacity: 1;
    background: #343E1C;
    margin: 0 5px !important;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}
.pixelevo-dots .swiper-pagination-bullet-active:before {
    position: absolute;
    content: '';
    left: -4px;
    top: -4px;
    height: 18px;
    width: 18px;
    border: 1px solid var(--primary-color);
    z-index: -1;
    border-radius: 50%;
}
.pixelevo-dots .swiper-pagination-bullet-active {
    position: relative;
    z-index: 1;
    background: var(--primary-color);
}

/* Team Section Style Two */
section.team_area.style_two {
    padding: 30px 0 30px;
}
.team_single_box.style_two .team_thumb {
    border-radius: 25px;
}
.team_single_box.style_two .team_conent {
    text-align: center;
}
.team_single_box.style_two:hover .team_social {
    opacity: 1;
    right: 40px;
}
.team_list_2 .luhabiz-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    margin-top: 18px;
}
section.team_area.inner_page{
    padding: 100px 0 107px;
}
section.team_area.style_inner {
    padding: 120px 0 108px;
}

/*===============================================
    Start luhabiz Portfolio Area Css
================================================*/

.portfolio_area {
    padding: 0 0 115px;
}
.portfolio-container {
    position: relative;
}    
.swiper-upper {
    margin: 0 60px 0;
    position: relative;
    overflow: hidden;
}   
.portfolio_single_item {
    margin-bottom: 10px;
}
.portfolio_thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}
.portfolio_single_item .portfolio_thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    content: "";
    -webkit-transition: all .6s;
    transition: all .6s;
    z-index: 2;
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,-150%,0);
    border-radius: 20px;
}

.portfolio_single_item:hover .portfolio_thumb:before {
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,-45deg) translate3d(0,150%,0);
    border-radius: 20px;
}
.portfolio_thumb img {
    width: 100%;
    transition: 0.5s;
    overflow: hidden;
} 
.portfolio_content {
    display: flex!important;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 0;
}

.portfolio-text h3 a {
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
}
.portfolio-text h3 a:hover {
    color: var(--primary-color);
}
.portfolio-text p {
    font-size: 18px;
    margin: 20px 0 0;
}
.port-btn a {
    width: 76px;
    height: 76px;
    border-radius: 38px;
    display: inline-block;
    color: #fff;
    background: rgb(255 255 255 / 19%);
    text-align: center;
    line-height: 76px;
    position: relative;
    z-index: 1;
    top: 13px;
}
.port-btn a:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color); 
    transform: scale(0);
    transition: 0.5s;
    border-radius: 50%;
}
.port-btn a:hover:before {
    transform: translate(1);
    transform: scale(1);
}
.port-btn a i {
    font-weight: 700;
    font-size: 25px;
    transform: rotate(-45deg);
    display: inline-block;
    transition: 0.5s;
}
.port-btn a:hover i {
    color: var(--title-color);
}

/* Swiper slides nav butn */

.swiper-slides {
    position: absolute;
    top: -19%;
    z-index: 1;
    right: 14%;
}
.swiper-slides button {
    background: transparent;
    border: 0;
    outline: 0;
}

/* Portfolio Area Style Two */

.portfolio_area.style_two {
    padding: 120px 0 30px;
}
.portfolio-list_2 .swiper-slide.swiper-slide-active .portfolio_thumb img {
    height: 500px;

} 
.flip-rotate.style_three {
    position: absolute;
    top: 0%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    opacity: 0;
    transition: 0.5s;
}
.portfolio_single_item.style_two:hover .flip-rotate.style_three {
    opacity: 1;
    top: 50%;
}
.portfolio_single_item.style_two .portfolio-text p {
    margin: 16px 0 0;
}
.flip-rotate.style_three .like img {
    width: inherit !important;
    height: inherit !important;
}
.flip-rotate.style_three a.banner-play-btn {
    background-color: #cfb8b800 !important;
    backdrop-filter: blur(4.4px) !important;
    border: 3px solid #ffffff91;
}
.flip-rotate.style_three .text-inner svg {
    word-spacing: 40px;
}
.portfolio-list_2 .swiper-slide.swiper-slide-active .flip-rotate.style_three {
    top: 50%;
    opacity: 1;
} 


/*====================================================
    Start luhabiz Testimonial Area Css
======================================================*/

.testimonial_area {
    padding: 120px 0 108px;
    background: var(--secondary-color);
}
.testimonial_item {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 45px 40px 40px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    background: var(--bg-color);
}
.testimonial_item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
    border-radius: 20px;
    background: var(--secondary-color);
}
.testimonial_item:hover:before{
    transform:rotateX(90deg);
}
.testimonial_item::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
    border-radius: 20px;
    background: var(--secondary-color);
}
.testimonial_item:hover:after{
    transform:rotateY(90deg);
}

.testimonial-content h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}
.testimonial-content p {
    font-size: 18px;
    line-height: 30px;
    font-style: italic;
    margin: 20px 0 0;
}
.tesit-auothor {
    display: flex;
    align-items: center;
    margin-top: 28px;
}
.testi-author-thumb {
    margin-right: 20px;
}
.tesit-auothor h4.name {
    margin: 0;
    font-size: 17px;
    color: #ffffff;
    font-weight: 500;
}
.tesit-auothor p.designation {
    margin: 6px 0 0;
    font-weight: 500;
}
.testi_icon {
    float: right;
    margin-top: -58px;
}
.testi_icon img {
    filter: brightness(0.1) invert(0.2);
    transition: 0.5s;
}
.testimonial_item:hover .testi_icon img {
    filter: brightness(1) invert(0);
}
.testimonial_item:hover {
    border: 1px solid var(--primary-color);
}
.testi_list .luhabiz-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    margin-top: 65px;
}

/* Testimonial Section Style Two */

.testimonial_area.style_two {
    position: relative;
    z-index: 1;
}
.testi-thumb-img {
    position: absolute;
    right: 0;
    top: 51%;
    transform: translate(-50%, -50%);
}
.testimonial_area.style_two .section-main-title {
    margin-bottom: 57px;
}
.testimonial_item.style_two {
    border: 3px solid rgba(255,255,255,0.1);
    padding: 45px 55px 50px;
}
.testimonial_item.style_two .tesit-auothor {
    border-top: 1px solid  rgba(255,255,255,0.11);
    padding-top: 40px;
    margin-top: 42px;
}
.testimonial_item.style_two .testi_icon {
    float: inherit;
    margin-top: 0;
    position: absolute;
    top: 12%;
    left: 55px;
}
.testimonial_item.style_two .testi_icon img {
    filter: brightness(1) invert(0);
}
.testimonial_item.style_two .testimonial-content {
    padding-left: 105px;
    padding-right: 25px;
}
.testimonial_item.style_two .testimonial-content h3 {
    margin: 0;
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
}
.testimonial_item.style_two .testimonial-content p {
    font-style: italic;
    margin: 30px 0 0;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff94;
    font-weight: 400;
}
.testimonial_item.style_two ul.testi-rating {
    border: 2px solid rgba(255,255,255,0.1);
    display: inline-block;
    border-radius: 25px;
    padding: 11px 22px;
    position: absolute;
    right: 60px;
    bottom: 12%;
}
.testimonial_item.style_two ul.testi-rating li {
    color: #fcba52;
    font-size: 17px;
    display: inline-block;
    margin-right: 3px;
}

.swiper.testi_list_2 {
    margin-right: 422px;
}
.swiper.testi_list_2 .luhabiz-dots.swiper-pagination-clickable.swiper-pagination-bullets {
    margin-top: 65px;
}

/*====================================================
    Start luhabiz Feature Area Css
======================================================*/

.feature_area {
    padding: 20px 0 70px;
}
.feature_single_item {
    background: var(--body-color);
    padding: 45px 45px 42px;
    border-radius: 25px;
    margin-bottom: 50px;
}
.feature_single_item.warpper_left {
    margin-right: 25px;
}
.feature_single_item.warpper_right {
    margin-left: 25px;
}
.feature-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}
.feature-thumb::before, .feature-thumb:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.feature-thumb:after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.feature_single_item:hover .feature-thumb::before, .feature_single_item:hover .feature-thumb::after {
    bottom: 0;
    opacity: 0;
}
.feature_single_item:hover .feature-thumb img {
    animation: pulseEffect 1s ease-out infinite;
}
.feature_content {
    padding: 18px 117px  0 19px;
}
.feature_content h3 a {
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Unbounded";
}
.feature_content h3 a:hover {
    color: var(--primary-color);
}
.feature_content p {
    font-size: 18px;
    line-height: 30px;
    margin: 19px 0 0;
}

/*====================================================
    Start luhabiz Blog Area Css
======================================================*/

.blog_area {
    padding: 120px 0 82px;
    background: var(--body-color);
}
.single_blog_warpper_item {
    margin-bottom: 30px;
}
.blog_thumb {
    position: relative;
    height: 315px;
    overflow: hidden;
    border-radius: 15px;
}
.blog_thumb .image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.blog_thumb .hover-image {
    opacity: 0;
}

.single_blog_warpper_item:hover .hover-image {
    opacity: 1;
} 
.childs {
    position: relative;
    width: 100%;
    height: 100%;
}
.single_blog_warpper_item:hover .childs {
    animation: pulseEffect 1s ease-out infinite;
}

@keyframes pulseEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.blog_content {
    margin-top: 22px;
}
.blog_content h3 {
    margin: 8px 0 30px;
}
.blog_content h3 a {
    display: inline-block;
    line-height: 34px;
    font-size: 22px;
    color: var(--solid-white);
    font-weight: 500;
    font-family: "Unbounded";
}
.blog_content h3 a:hover {
    color: var(--primary-color);
}
.meta_blog p {
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Unbounded";
    margin: 0;
}

.blog-btn a {
    display: inline-block;
    border-radius: 22px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 7px 22px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 12px;
    color: #ffffff;
    font-family: "Unbounded";
}
.blog-btn a:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    background: var(--primary-color);
    width: 0;
    height: 100%;
    z-index: -1;
    transition: 0.5s;
    border-radius: 25px;
}
.blog-btn a:hover:before {
    width: 100%;
    left: 0;
}
.blog-btn a:hover {
    color: var(--secondary-color);
}
.blog-btn a i {
    font-weight: 700;
    font-size: 10px;
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 8px;
    transition: 0.5s;
}

/* Start Blog Section Style Two */

.single_blog_warpper_item.style_two {
    border-radius: 20px;
    background-color: #252525;
    padding: 40px 40px 25px;
    position: relative;
    z-index: 1;
}
.single_blog_warpper_item.style_two .blog_thumb {
    height: inherit;
    border-radius: 15px;
}
.single_blog_warpper_item.style_two .blog_thumb:before, .single_blog_warpper_item.style_two .blog_thumb:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.single_blog_warpper_item.style_two .blog_thumb:after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.single_blog_warpper_item.style_two:hover .blog_thumb::before, .single_blog_warpper_item.style_two:hover .blog_thumb::after {
    bottom: 0;
    opacity: 0;
}
.single_blog_warpper_item.style_two .blog_thumb img {
    width: 100%;
}
.single_blog_warpper_item.style_two .blog_content h3 {
    margin: 27px 0 30px;
}
.single_blog_warpper_item.style_two .blog_content {
    margin-top: 22px;
    padding: 0 145px 0 20px;
}
.single_blog_warpper_item.style_two .blog-btn {
    position: absolute;
    bottom: 50px;
    right: 40px;
}
.single_blog_warpper_item.style_two .blog-btn a {
    border: 1px solid #141414;
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #141414;
    line-height: 80px;
    padding: 0;
    text-align: center;
}
.single_blog_warpper_item.style_two .blog-btn a:before {
    height: 100%;
    border-radius: 40px;
    transform: scale(0);
}
.single_blog_warpper_item.style_two .blog-btn a:hover:before {
    transform: scale(1);
    overflow: hidden;
}
.single_blog_warpper_item.style_two .blog-btn a img {
    left: -35px;
    position: relative;
    transition: 0.5s;
}
.single_blog_warpper_item.style_two .blog-btn a:hover img {
    left: -14px;
    filter: brightness(0);
}

/* BlogRecursos list styles */
.single_blog_warpper_item.style_two .blog_content ul {
    list-style: disc !important;
    list-style-position: outside;
    padding-left: 20px;
}
.single_blog_warpper_item.style_two .blog_content ul li {
    display: list-item !important;
    list-style: disc !important;
    margin-bottom: 8px;
}

.footer-logo-img {
  width: 180px;  
  height: auto;  
}

/* blog area style three */

.blog_area.style_three {
    background: #141414;
    padding: 120px 0 120px;
}
/*pagination*/
.pagination {
    margin-top: 20px;
}
.pagination.left {
    margin-top: 38px;
}

.pagination a {
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    font-family: "Unbounded";
    float: left;
    text-decoration: none;
    margin: 0 4px;
    line-height: 55px;
    text-align: center;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background-color: #1e1e1e;
}

.pagination a:hover {
    background: var(--primary-color);
    color: #141414;

}

/*====================================================
    Start luhabiz Footer Area Css
======================================================*/

.footer_area {
    padding: 107px 0 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.footer_area:before {
    position: absolute;
    content: '';
    left: 0;
    top: 28%;
    background: rgb(243 246 243 / 14%);
    width: 68%;
    right: 0;
    margin: auto;
    height: 1px;
}
.footer_area:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 85px;
    background: rgb(243 246 243 / 14%);
    width: 100%;
    height: 1px;
}

/* footer heading title  */

.heading-title {
    text-align: right;
}
.heading-title h1 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-align: right;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.heading-title h1:before {
    position: absolute;
    content: '';
    left: -71px;
    top: 17px;
    z-index: -1;
    width: 60px;
    height: 2px;
    background-color: #f43e23;
}

/* Footer menu title */

h3.footer_widget_title {
    font-size: 24px;
    font-weight: 500;
    color: var(--solid-white);
    margin-bottom: 28px;
}
p.footer-description {
    color: #ffffffe0;
    margin: 0 0 25px;
    width: 87%;
}
p.footer_address {
    font-size: 15px;
    color: var(--solid-white);
    font-family: var(--fonts-title);
    margin-bottom: 15px;
}
.footer_widget_info p {
    margin: 0 0 8px;
    font-size: 15px;
    font-family: var(--fonts-title);
    color: var(--solid-white);
}

/* footer menu */

ul.footer_widget_menu li a {
    font-size: 14px;
    color: #f3f6f3d1;
    font-weight: 400;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    margin-bottom: 12px;
    font-family: var(--fonts-title);
}
ul.footer_widget_menu li a:hover {
    padding-left: 20px;
    color: var(--primary-color);
}
ul.footer_widget_menu li a:before {
    position: absolute;
    left: 0;
    width: 0;
    height: 8px;
    border-radius: 4px;
    background-color: var(--primary-color);
    content: '';
    top: 9px;
    opacity: 0;
    transition: 0.5s;
}
ul.footer_widget_menu li a:hover:before {
    opacity: 1;
    width: 8px;
}
li.footer_active a {
    padding-left: 20px;
    color: var(--primary-color) !important;
}
ul.footer_widget_menu li.footer_active a:before {
    width: 8px;
    opacity: 1;
}

p.bel-text {
    font-size: 16px;
    line-height: 26px;
    color: #ffffffe0;
    font-weight: 400;
    font-family: "Open Sans";
    display: flex;
    align-items: center;
    gap: 15px;
}
p.bel-text i {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: rgba(182,236,71,0.10196078431372549);
    text-align: center;
    line-height: 36px;
    flex-shrink: 0;
    color: var(--primary-color);
   transition: 0.5s;
}
p:hover.bel-text i{
    animation: shake 0.3s ease-in-out infinite;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    50% { transform: translateX(1px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
  }
  
.subscribe_form {
    position: relative;
    margin-top: 28px;
}
.subscribe_form input {
    width: 100%;
    height: 65px;
    background-color: transparent;
    border: 1px solid rgb(243 246 243 / 32%);
    outline: 0;
    color: var(--solid-white) !important;
    padding: 0 25px;
    border-radius: 10px;
}
.subscribe_form input::placeholder {
    color: rgb(243 246 243 / 90%);
}
.subscribe_form .form-control:focus {
    background: transparent;
    box-shadow: none;
    border: 1px solid var(--primary-color);
}
button.btn i {
    width: 37px;
    height: 37px;
    border-radius: 18px;
    background-color: var(--primary-color);
    text-align: center;
    line-height: 37px;
    display: inline-block;
    font-size: 24px;
    color: var(--title-color);
    position: absolute;
    right: 10px;
    top: 16%;
    transform: rotate(-45deg);
    transition: 0.5s;
}
button.btn i:hover {
    background: var(--solid-white);
    color: var(--title-color);
}
.luhabiz_social_icon a {
    display: inline-block;
    font-size: 13px;
    color: var(--p-color);
    margin: 5px 8px 0 0;
    width: 36px;
    border: 1px solid rgb(243 246 243 / 32%);
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 36px;
    position: relative;
    z-index: 1;
    overflow: hidden;

}
 
.luhabiz_social_icon a:hover {
    color: var(--title-color);
    border: 1px solid var(--primary-color);
    animation: zoom-in 0.5s ease-in-out forwards;
}

.luhabiz_social_icon a:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color); 
    transform: scale(0);
    transition: 0.5s;
    border-radius: 50%;
}
.luhabiz_social_icon a:hover:before {
    transform: translate(1);
    transform: scale(1);
}



.footer_shpe1 {
    position: absolute;
    bottom: 85px;
    right: 0;
    margin: auto;
    left: 0;
    z-index: -1;
}
@keyframes auto-run-both {
    0% { transform: translateX(-5%); }
    50% { transform: translateX(90vw); } 
    100% { transform: translateX(-5%); } 
  }
  
  .auto-run-both {
    animation: auto-run-both 30s linear infinite; 
    white-space: nowrap; 
  }

/*  Start Copy Right Botttom Css */

.footer_copy_right {
    display: flex;
    align-items: center;
}
p.copy_right {
    margin: 0;
    color: #ffffff;
    font-weight: 400;
}
p.copy_right span {
    color: var(--primary-color);
}
.footer_social_link {
    text-align: right;
}
.footer_social_link ul li {
    display: inline-block;
}
.footer_social_link ul li a {
    display: inline-block;
    font-size: 14px;
    color: var(--p-color);
    font-weight: 400;
    font-family: "Unbounded";
    margin-left: 26px;
}
.footer_social_link ul li a:hover {
    color: var(--primary-color);
}
.footer_area.style_three {
    background: #1e1e1e;
}


/* =================================
   Start luhabiz Conatct Area Css
==================================== */

section.contact_area {
    padding: 0 0 120px;
}
section.contact_area .section-main-title {
    margin-bottom: 35px;
}
.contact_img {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 35px;
}
.contact_img img {
    width: 100%;
}
.contact_img::before, .contact_img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.contact_img:after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.contact_img:hover::before, .contact_img:hover::after {
    bottom: 0;
    opacity: 0;
}
.contact_warpper {
    padding: 60px 60px 60px;
    background-color: #1e1e1e;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 40px;
}
.contact-form-box {
    margin-left: 20px;
}
.form-box input {
    border-radius: 0;
    transition: 0.5s;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 10px;
    outline: 0;
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 20px;
    padding: 0 30px;
}
.form-box select {
    border-radius: 0;
    transition: 0.5s;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 10px;
    outline: 0;
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 20px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans";
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}
.form-box select option {
    background: #1a1a1a;
    color: #fff;
}
.form-box input::placeholder {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
}
.form-box.message textarea {
    transition: .5s;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.08);
    outline: 0;
    width: 100%;
    height: 200px;
    position: relative;
    padding: 20px 30px;
    color: #fff;
    border-radius: 10px;
    margin-top: 10px;
}
.form-box.message textarea::placeholder {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
}
.contact-form button {
    display: block;
    text-align: center;
    width: 100%;
    border: transparent;
    padding: 16px 0;
    margin-top: 30px;
    transition: 0.5s;
    background: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    color: #141414;
    font-weight: 400;
    font-family: "Unbounded";
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact-form button:before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 0;
    background: var(--solid-white);
    z-index: -1;
    transition: 0.5s;
    bottom: 0;
}
.contact-form button:hover:before  {
    height: 100%;
    top: 0;
}

.cotact_info_item:hover {
    filter: drop-shadow(0px 10px 27px rgba(177, 177, 177, 0.3));
    border-color: #fff;
}
.icontact_warpper_icon i {
    display: inline-block;
    font-size: 45px;
    color: var(--primary-color);
}
.contact_warpper_content h3 {
    font-size: 22px;
    margin: 24px 0 10px;
}
.contact_warpper {
    background: var(--bg-color);
    padding: 60px 60px 60px;
}


/* contact form box style two */

.contact-form-box.style_two {
    border-radius: 20px;
    background-color: #1e1e1e;
    padding: 44px 230px 50px 70px;
    margin: 45px 0 0;
}
.contact-form-box.style_two .section-main-title {
    margin-bottom: 38px;
}
.contact-form-box.style_two .section-main-title h1 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 600;
}
.contact-form-box.style_two .form-box input {
    height: 50px;
}
.contact-form-box.style_two .form-box.message textarea {
    height: 155px;
}
.contact-form-box.style_two .contact-form button {
    display: inline-block;
    width: initial;
    padding: 14px 28px;
}
.contact-form button i {
    font-size: 16px;
    margin-left: 5px;
}
section.contact_area.inner_contact {
    padding: 120px 0 120px;
}

/* ===========================================
    Start luhabiz Inner Page  Css
============================================= */

/* Start luhabiz Breadcrumb Area Css  */

.breadcrumb_area {
    background: url(../images/inner-page/Breadcrum_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 700px;
}
.breadcrumb_nosotros {
    background: url(../images/nosotros/Hero-Nosotros.png);
    position: relative;
}
.breadcrumb_nosotros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.breadcrumb_nosotros .breadcrumb_content {
    position: relative;
    z-index: 1;
}
.breadcrumb_content {
    margin-top: 111px;
}
h2.breadcrumb_title {
    color: var(--solid-white);
    margin-bottom: 40px;
    font-size: 60px;
    font-weight: 600;
}
ul.breadcrumb_list_menu li {
    display: inline-block;
    font-size: 22px;
    font-weight: 400;
    font-family: var(--fonts-title);
    color: var(--primary-color);
}
ul.breadcrumb_list_menu li a {
    display: inline-block;
    color: var(--solid-white);
    position: relative;
    z-index: 1;
}
ul.breadcrumb_list_menu li img {
    margin: 0 10px;
}

/* ===========================================
    Start luhabiz Chooose Sections  Css
============================================= */

.choose_section {
    padding: 120px 0 0;
}
h1.choose_title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
h1.choose_title.style_two {
    padding-left: 80px;
}
h1.choose_title.style_two:before {
    position: absolute;
    content: '';
    left: 0;
    top: 25px;
    background: #fff;
    width: 71px;
    height: 2px;
    background-color: #ffffff;
}

/* choose clints */

.choose_intro p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffffcc;
    font-weight: 400;
    max-width: 420px;
    margin-top: 24px;
}
/* tabss container */

.tabss_container {
    display: table;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}
.tab_container_inner {
    margin-bottom: 20px;
}
.tab-buttons {
    display: flex;
    flex-direction: column;
}
  
.tab-button {
    padding: 37px 50px 37px;
    background: #1e1e1e;
    border: none;
    cursor: pointer;
    margin-bottom: 0;
    outline: 0;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    text-align: left;
    border-radius: 12px;
}
.tab-button.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
button.tab-button span {
    color: var(--primary-color);
}
.tab-button input:focus, button:focus {
    border-color: none !important;
    outline-color: none !important;
    border: none !important;
}
  
.tab-panel {
    padding: 5px 30px 22px;
    background: #1e1e1e;
    border-radius: 0 0 15px 15px;
        margin-top: -2px;
}
  .tab-panel {
    display: none;
  }
  
  .tab-panel.active {
    display: block;
  }

    .tab-panel .tab-copy {
        text-align: left;
        margin-top: 24px;
    }

    .tab-panel .tab-copy p {
        margin: 0;
        color: #d2d2dc;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }

  .tab-img img {
    width: 100%;
}



/* ===========================================
    Start luhabiz  Pricing Area Css
============================================= */

.pricinga_rea {
    padding: 120px  0 90px;
}
.pricing_warpper_single_item {
    padding: 42px  40px 40px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    background-color: #1e1e1e;
    border-radius: 15px;
    transition: 0.5s;
}
.pricing_warpper_single_item:before {
    position: absolute;
    left: 0;
    top: 0;
    left: 50%;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: .5s;
    content: '';
    z-index: -1;
    border-radius: 15px;
}
.pricing_warpper_single_item:hover:before {
    width: 100%;
    left: 0;
}

span.pricing_stem {
    border-radius: 16px;
    transition: .5s;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    transition: 0.5s;
}
h4.pricing_plan {
    font-size: 25px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    margin: 10px 0 0;
    transition: 0.5s;
}
h3.pricing_title {
    margin: 22px 0 48px;
    border-bottom: 1px solid #ffffff1f;
    font-size: 45px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Open Sans";
    padding-bottom: 44px;
    transition: 0.5s;
}
h3.pricing_title span {
    font-size: 17px;
    font-weight: 400;
    transition: 0.5s;
}

ul.pricing_list li {
    position: relative;
    margin-bottom: 11px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    transition: 0.5s;
}
ul.pricing_list li i {
    display: inline-block;
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    top: 4px;
    margin-right: 10px;
    transition: 0.5s;
}

.pricing_btn {
    margin-top: 44px;
}
.pricing_btn a {
    border-radius: 30px;
    transform: inherit;
    display: block;
    padding: 11px 39px;
    height: inherit;
    width: inherit;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #ffffff42;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
    text-align: center;
}
.pricing_warpper_single_item:hover .pricing_btn a {
    color: var(--primary-color);
    border: 1px solid var(--body-color);
}
.pricing_btn a:before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 0;
    background: var(--body-color);
    z-index: -1;
    transition: 0.5s;
    bottom: 0;
}
.pricing_warpper_single_item:hover .pricing_btn a::before  {
    height: 100%;
    top: 0;
}
.pricing_warpper_single_item:hover ul.pricing_list li,
.pricing_warpper_single_item:hover ul.pricing_list li i, 
.pricing_warpper_single_item:hover h4.pricing_plan, 
.pricing_warpper_single_item:hover span.pricing_stem,
.pricing_warpper_single_item:hover h3.pricing_title,
.pricing_warpper_single_item:hover h3.pricing_title span {
    color: #141414;
}
.pricing_warpper_single_item:hover h3.pricing_title {
    border-bottom: 1px solid #0000001f;
}


/*====================================================
    Start luhabiz Team Detialas Page  Css
======================================================*/

section.team_details_page {
    padding: 40px 0 40px;
}

.team-img img {
    width: 100%;
    margin-bottom: 30px;
}

.information_icon_bx {
    border-radius: 15px;
    background-color: #1e1e1e;
    padding: 50px 30px 30px;
}
.information_icon_bx .icon_bx {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.information_icon_bx .icon i {
    width: 55px;
    height: 55px;
    border-radius: 27px;
    background-color: #b8ed47;
    display: inline-block;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #141414;
}

.information_icon_bx .information_content h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    margin: 0 0 3px;
}
.information_icon_bx .information_content p {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    margin: 0;
}

/* team details about */

.team-sidebar {
    margin-left: 45px;
}
.about_name h3 {
    font-size: 35px;
    color: #ffffff;
    margin: 0 0 8px;
}
.about_name p {
    font-size: 20px;
    color: #b8ed47;
    font-weight: 500;
    font-family: "Open Sans";
    margin: 0;
}
p.team-des {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    line-height: 27px;
    margin: 26px 163px 0 0;
}

/* service list */
h2.service_title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Unbounded";
    margin: 40px 0 43px;
}
.service_information {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.service_list-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #f43e23;
    text-align: center;
    line-height: 35px;
}
.service_list p {
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

/*====================================================
    Start luhabiz Login Page  Css
======================================================*/

section.login_page {
    padding: 120px 0 120px;
}
.login_container {
    background: #1c1c1c;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 40px 40px 90px;
}

/* modern btn */

.modern_btn {
    text-align: left;
    margin-bottom: 45px;
}
.modern_btn a {
    display: inline-block;
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans";
    padding: 8px 22px;
    border: 1px solid #ffffff30;
    border-radius: 22px;
}
.form-container {
    padding: 0 63px 0 39px;
    text-align: center;
}
.form-container h2 {
    margin-bottom: 6px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
}
.form-container p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #ffffffc4;
    font-weight: 400;
    font-family: "Open Sans";
}
.input-group {
    margin-bottom: 15px;
}
.input-group label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
    margin-bottom: 8px;
}
.input-group input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    height: 55px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 10px;
}
.input-group input::placeholder {
    font-size: 16px;
    color: #ffffffbd;
    font-weight: 500;
}
.social-login {
    margin: 33px 0 74px;
}
.social-login button {
    cursor: pointer;
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Open Sans";
    border-radius: 10px;
    padding: 13px 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    margin: 0 4px;
}
.social-login button i {
    margin-right: 2px;
}
.social-login input:focus, button:focus {
    border-color: rgba(255,255,255,0.08) !important;
    outline-color: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}
.checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.checkbox a {
    display: inline-block;
    color: #fff;
    margin-left: 10px;
}
.checkbox input {
    margin-right: 5px;
}
.submit-btn {
    padding: 16px 36px;
    background: #a6ff00;
    border: none;
    cursor: pointer;
    margin-top: 47px;
    font-size: 16px;
    text-transform: uppercase;
    color: #141414;
    font-weight: 400;
    font-family: "Unbounded";
    border-radius: 30px;
    transition: 0.5s;
}
.submit-btn:hover {
    background-color: #b8ed47;
}
.image-container img {
    width: 100%;
    height: 765px;
    margin-top: 50px;
}

/*====================================================
    Start luhabiz Case Study Area Css
======================================================*/

.case-study-area {
    padding: 120px 0 50px;
}

.case-study-single-box {
    margin-bottom: 62px;
}
.case-study-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}
.case-study-thumb img {
    width: 100%;
}
.case-study-thumb::before, .case-study-thumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    left: 0;
    bottom: -100%;
    transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}
.case-study-thumb::after {
    background: rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
}
.case-study-single-box:hover .case-study-thumb::before, .case-study-single-box:hover .case-study-thumb::after {
    bottom: 0;
    opacity: 0;
}
.case-study-contents {
    position: relative;
    transition: .5s;
    z-index: 1;
}
.case-study-title h3 {
    margin: 28px  0 0;
}
.case-study-title h3 a {
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Unbounded";
}
.case-title span a {
    font-size: 18px;
    color: #ffffff99;
    font-weight: 400;
    font-family: "Open Sans";
    display: inline-block;
    margin: 22px 0 0;
}

.porject_btn {
    position: absolute;
    bottom: 0;
    right: 0;
}
.porject_btn a {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #1e1e1e;
    line-height: 80px;
    padding: 0;
    text-align: center;
    display: inline-block;
}
.porject_btn a:before {
    height: 100%;
    border-radius: 40px;
    transform: scale(0);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: -1;
    content: '';
    transition: 0.5s;
}
.porject_btn a:hover:before {
    transform: scale(1);
}
.porject_btn a:hover img {
    filter: brightness(0);
    transform: rotate(0deg);
}
.porject_btn a img {
    position: relative;
    transition: 0.5s;
    width: 35px;
    transform: rotate(-45deg);
}

/*====================================================
    Start luhabiz Project details Area Css
======================================================*/

.information_icon_bx.style_two  {
    border-radius: 20px;
    padding: 50px 40px 42px;
}
.information_icon_bx.style_two .icon_bx {
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ffffff1a;
    padding-bottom: 30px;
}
.information_icon_bx.style_two .icon_bx:last-child {
    margin-bottom: 0;
}
.information_icon_bx.style_two .icon i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #ffffff0f;
    line-height: 65px;
    font-size: 20px;
    color: #fff;
}
.information_icon_bx.style_two .information_content h3 {
    margin: 0 0 6px;
}

.details-share_link {
    display: flex;
    align-items: center;
    gap: 20px;
}
.share-title h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    margin: 0;
}

/*====================================================
    Start luhabiz FAQ Area Css
======================================================*/

/* Faq */

h2.faq-title {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Unbounded";
    margin: 45px 0 44px;
    text-align: center;
}
.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    background-color: #1e1e1e;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
    padding: 15px 25px 15px;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.faq-question:before {
    position: absolute;
    right: 25px;
    top: 15px;
    content: "\f285";
    font-family: bootstrap-icons !important;
    font-size: 15px;
    transform: rotate(88deg);
    transition: 0.5s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 23px 25px 22px;
    border-radius: 10px;
    background-color: #1e1e1e;
}
.faq-item.active .faq-question {
    background-color: var(--primary-color);
    margin-bottom: 15px;
    color: #141414;
}
.faq-item.active .faq-question:before {
    color: #141414;
    transform: rotate(-88deg);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    h2.faq-title {
        font-size: 16px;
        line-height: 7px;
    }
}

/* support info */
.support-info {
    background: var(--primary-color);
    padding: 31px 0 32px;
    text-align: center;
    border-radius: 20px;
    margin-top: 30px;
}
.support-title h3 {
    font-size: 26px;
    line-height: 38px;
    color: #141414;
    font-weight: 500;
    font-family: "Unbounded";
    text-align: center;
    margin: 0;
}
.support-btn a {
    display: inline-block;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    border-radius: 25px;
    background-color: #141414;
    padding: 12px 28px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 15px;
}
.support-btn a:hover {
    color: #141414;
}
.support-btn a:before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 0;
    background: var(--solid-white);
    z-index: -1;
    transition: 0.5s;
    bottom: 0;
}
.support-btn a:hover:before  {
    height: 100%;
    top: 0;
}

/* project details saidber */

.project-sidebar {
    margin-left: 45px;
}
.project-details-img {
    position: relative;
    z-index: 1;
}
.project-details-img img {
    width: 100%;
}
.category {
    position: absolute;
    top: 30px;
    left: 30px;
}
.category a {
    display: inline-block;
    font-size: 16px;
    color: #141414;
    font-weight: 600;
    font-family: "Open Sans";
    padding: 7px 22px;
    background: var(--primary-color);
    border-radius: 25px;
}
/* details item  */
.details-content {
    background-color: #1e1e1e;
    padding: 45px 35px 26px;
}
.details-content h2 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    margin: 0 0 18px;
}
p.qute {
    margin-top: 21px;
}
h2.title_two {
    margin: 43px 0 26px;
}
h2.title_three {
    margin: 36px 0 25px;
}


/*=====================================
<-- luhabiz Search Box Css -->
=======================================*/

.main_sidebar_left {
    margin-right: 17px;
}

/*nav button*/
.search-box-btn.search-box-outer {
    display: inline-block;
}
.nav-btn.navSidebar-button {
    display: inline-block;
    position: relative;
    top: 2px;
    margin: 0 12px;
    cursor: pointer;
}

.nav-btn.navSidebar-button a i {
    font-size: 15px;
    width: 32px;
    line-height: 35px;
    height: 32px;
    border-radius: 50px;
    text-align: center;
    background: #efefef;
    display: inline-block;
    color: #232323;
    position: relative;
    z-index: 1;
    margin-left: 15px;
    transition: .5s;
    cursor: pointer;
}

.nav-btn.navSidebar-button a i:after {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #6fc06f;
    border-radius: 50%;
    transition: .5s;
    transform: scale(0);
}

.nav-btn.navSidebar-button a i:hover:after {
    transform: scale(1);
}

.nav-btn.navSidebar-button a i:hover {
    color: #fff;
}

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 101;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 23px;
    right: 0;
    padding: 25px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #272727;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 32px;
}

.close-side-widget i {
    color: #6fc06f;
    font-size: 28px;
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}

.xs-bg-black {
    background-color: #6fc06f;
}

/*html css*/
.nav-logo {
    margin: 0 0 50px;
}
.content-thumb-box {
    margin-bottom: 20px;
}
.content-thumb-box img {
    width: 100%;
    border-radius: 10px;
}

.content-box h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.content-box p {
    display: inline-block;
    color: #fff;
    padding: 15px 0 0;
}

a.theme-btn.btn-style-two span {
    color: #fff;
    font-size: 20px;
}

a.theme-btn.btn-style-two i {
    color: #6fc06f;
}

.contact-info h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

ul.list-style-one li {
    display: block;
    list-style: none;
    color: #fff;
    padding: 16px 0 0;
    overflow: hidden;
}

ul.list-style-one li i {
    margin-right: 10px;
}

ul.list-style-one li span {
    font-size: 20px;
    font-weight: 600;
    color: #6fc06f;
    margin: 0 10px 0 0px;
}

ul.social-box {
    margin: 30px 0 0;
}

ul.social-box li {
    display: inline-block;
    list-style: none;
    margin: 0 6px 0 0;
}

ul.social-box li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color: #6fc06f;
    transition: .5s;
    font-size: 18px;
    border-radius: 3px;
}

ul.social-box li a:hover {
    background: #6fc06f;
    color: #fff;
}

/* ===========================================
    Start luhabiz Sidebar  Css
============================================= */

.widget_search {
    padding: 30px 30px 30px;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 70px rgb(0 0 0 / 5%);
    background: var(--bg-color);
    border: 1px solid #E2E5E7;
}
.widget_search form {
    position: relative;
}
.widget_search input {
    border-radius: 4px;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    position: relative;
    color: #fff;
    border: 0;
    outline: 0;
    background: var(--body-color);
}
.widget_search input::placeholder{
    color: #fff;
}
button.icons {
    border: 0;
    font-size: 18px;
    color: #fff;
    padding: 1px 15px;
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

/*widget categories box*/

.widget-categories-box {
    padding: 35px 20px 40px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: #252525;
}
.widget-categories-box.style_two {
    padding: 35px 40px 40px;
}
.widget-categories-box.style_three {
    padding: 35px 40px 30px;
}
.categories-title h4 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
}
.categories-title.style_two h4 {
    margin-bottom: 42px;
}
.categories-title.style_two h4:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -14px;
    height: 2px;
    background: #fff;
    width: 35px;
}

/*categories menu*/

.widget-categories-menu ul {
    display: block;
}
.widget-categories-menu ul li {
    display: block;
    margin-bottom: 10px;
}
.widget-categories-menu ul li:last-child {
    margin-bottom: 0;
}
.widget-categories-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: .5s;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    border: 1px solid #ffffff1a;
    padding: 12px 22px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: left;
}
.widget-categories-menu ul li a:hover {
    border: 1px solid var(--primary-color);
    color: #141414;
}
.widget-categories-menu ul li a:before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: -1;
    transition: 0.5s;
    bottom: 0;
    border-radius: 25px;
}
.widget-categories-menu ul li a:hover::before  {
    height: 100%;
    top: 0;
}
.widget-categories-menu ul li a span {
    transition: .5s;
    font-size: 18px;
    flex-shrink: 0;
}
.widget-categories-menu ul li:hover a span {
    color: #141414;
}

/* Sidber Recent Post */

.sidber-widget-recent-post {
    margin-bottom: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.recent-widget-thumb {
    float: left;
    margin-right: 20px;
}
.recent-widget-content span {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: #f43e23;
    font-weight: 400;
    font-family: "Unbounded";
}
.recent-widget-content a {
    display: inline-block;
    transition: .5s;
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
}
.recent-widget-content a:hover {
    color: var(--primary-color);
}
.sidber-widget-recent-post:last-child {
    margin-bottom: 0;
}

/* Widget Tag */
.widget-tags ul li {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 10px;
}
.widget-tags li a {
    display: inline-block;
    background-color: #1e1e1e;
    border: 2px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    padding: 3px 18px;
    border-radius: 20px;
}

.widget-tags li a:hover {
    color: var(--primary-color);
}

/* ===========================================
    Start luhabiz Blog Details  Css
============================================= */

.blog-detials-area {
    padding: 60px 0 50px;
}

.main_sidebar_right {
    margin-left: 25px;
}
.details-content.style_two {
    padding: 28px 35px 30px;
}

.blog-details-meta {
    margin-bottom: 20px;
}
.blog-details-meta span {
    margin-right: 25px;
    font-size: 16px;
    color: #ffffffba;
    font-weight: 400;
    position: relative;
    z-index: 1;
}
.blog-details-meta span i {
    color: var(--primary-color);
    padding-right: 5px;
}
span.style_meta {
    padding-left: 35px;
}
span.style_meta:before {
    position: absolute;
    content: '';
    left: 0;
    top: 11px;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    z-index: -1;
}
.blog_founder_item {
    background-color: #2a2a2a;
    padding: 40px 45px 45px;
    border-radius: 5px;
    margin: 48px 0 54px;
}
.blog-founder_arro {
    float: left;
    margin-top: 7px;
    margin-right: 30px;
    border-radius: 5px;
}
.founder_content {
    overflow: hidden;
}
.founder_content p {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    font-family: "Open Sans";
}
.founder_content h4 {
    font-size: 15px;
    color: #f43e23;
    font-weight: 400;
    padding-left: 60px;
    position: relative;
    margin: 25px 0 0;
    z-index: 1;
}
.founder_content h4:before {
    position: absolute;
    content: '';
    left: 0;
    top: 9px;
    width: 50px;
    height: 1px;
    background: var(--primary-color);
    z-index: -1;
}

.blog_dtls-icon i {
    font-size: 11px;
    height: 20px;
    width: 20px;
    border: 1px solid #ddd;
    text-align: center;
    line-height: 18px;
    border-radius: 100%;
    margin-right: 10px;
    background: var(--primary-color);
    float: left;
    margin-top: 5px;
    color: #1e1e1e;
}
.blog-details-content-list p {
    overflow: hidden;
    margin: 0 0 13px;
    font-weight: 500;
}

.social-tag {
    justify-content: space-between;
}
.tag a {
    display: inline-block;
    color: #fff;
    border-radius: 18px;
    background-color: #2b2b2b;
    font-size: 14px;
    padding: 5px 25px;
    margin-right: 8px;
}
.tag a:hover {
    background-color: var(--primary-color);
    color: #2b2b2b;
}

/* recent post */

.details_rcnt {
    border-radius: 15px;
    background-color: #1e1e1e;
    padding: 32px 35px 40px;
    margin-top: 30px;
}
.rcnt-pagination a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
    margin: 0 0 22px;
    display: inline-block;
}
.rcnt-pagination a i {
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: -1px;
}

.details_rcnt.style_two {
    text-align: right;
}
.details_rcnt.style_two .recent-widget-thumb {
    float: left;
    margin-right: 0;
    margin-left: 20px;
}

/* comment box */
.commet-box {
    background-color: #1e1e1e;
    padding: 60px 60px 60px;
    margin-top: 30px;
}

/* Comment CSS */

.blog-details-content h3 {
    margin-bottom: 19px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Unbounded";
}
.blog-details-comment {
    margin-bottom: 10px;
    position: relative;
}
.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}
.blog-details-comment-content {
    overflow: hidden;
}
.blog-details-comment-content h2 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Unbounded";
    margin: 0 0 12px;
}
.blog-details-comment-content span {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}
.blog-details-comment-reply {
    position: absolute;
    right: 0;
    top: -16px;
}
.blog-details-comment-reply.two {
    top: 18px;
}
.blog-details-comment-reply a {
    background: var(--primary-color);
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    border-radius: 2px;
    display: inline-block;
}
.blog-details-comment.reply {
    margin-left: 90px;
    padding-top: 35px;
}

/* Blog Details Contact */

.blog-details-contact {
    margin-top: 72px;
}
/*input-box*/
.input-box input {
    width: 100%;
    height: 55px;
    margin-bottom: 30px;
    padding: 0 20px;
    outline: 0;
    border-radius: 10px;
    background-color: #272727;
    border: 0;
}
.input-box input::placeholder {
    color: #ffffffad;
}
.input-box textarea {
    width: 100%;
    outline: 0;
    border: 0;
    padding: 22px 20px 0;
    height: 170px;
    border-radius: 15px;
    background-color: #272727;
}
.input-box textarea::placeholder {
    color: #ffffffad;
}

.checkbox.style_two {
    margin: 15px 0 0;
}
.checkbox.style_two p {
    margin: 0;
}
.checkbox.style_two input {
    margin-right: 10px;
}

/*input button*/

.input-button {
    margin-top: 33px;
}
.input-button button {
    display: inline-block;
    padding: 16px 42px;
    outline: 0;
    border: 0;
    color: #fff;
    font-weight: 500;
    background: var(--primary-color);
    transition: .5s;
    font-size: 16px;
    color: #141414;
    font-weight: 500;
    border-radius: 30px;
}
.input-button button:hover {
    background: var(--solid-white);
}

/* =================================
   Start luhabiz Service Details Area
==================================== */

.service_details {
    background: var(--bg-color);
    padding: 60px 0 50px;
}
.service_details.faq-resources-wide {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.service_details.faq-resources-wide .container {
    max-width: none;
    padding-left: 48px;
    padding-right: 48px;
}
.service_details.faq-resources-wide .row {
    margin: 0;
}
.service_details.faq-resources-wide .faq-container,
.service_details.faq-resources-wide .faq-title,
.service_details.faq-resources-wide .faq-question,
.service_details.faq-resources-wide .faq-answer {
    text-align: left;
}
.service_details.faq-resources-wide .faq-answer {
    margin: 0;
}
.service_details.faq-resources-wide .faq-question {
    justify-content: space-between;
}
.service_details.faq-resources-wide .faq-item + .faq-item {
    margin-top: 16px;
}
@media (max-width: 767px) {
    .service_details.faq-resources-wide .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 575px) {
    .service_details.faq-resources-wide .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
.project-sidebar.style_two {
    margin-left: 25px;
}
.details-content.style_three {
    background-color: transparent;
    padding: 44px 0 0;
}
.details-content.style_three p {
    font-size: 17px;
    color: #ffffffd1;
    font-weight: 400;
    margin: 0;
    width: 87%;
}
h2.service_details-title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Unbounded";
    margin: 20px 0 42px;
}

/* service prev item */

.service_prev-item {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
}
.service_prev_bx {
    display: flex;
    align-items: center;
    gap: 20px;
}
.service_prev_content h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin: 20px 0 3px;
}
.service_prev_content a {
    font-size: 15px;
    color: #f43e23;
    font-weight: 400;
    font-family: "Unbounded";
    margin: 0;
    display: inline-block;
}

/* Faq */

h2.faq-title {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Unbounded";
    margin: 45px 0 44px;
}
.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    background-color: #1e1e1e;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Open Sans";
    padding: 15px 25px 15px;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.faq-question:before {
    position: absolute;
    right: 25px;
    top: 15px;
    content: "\f285";
    font-family: bootstrap-icons !important;
    font-size: 15px;
    transform: rotate(88deg);
    transition: 0.5s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 23px 25px 22px;
    border-radius: 10px;
    background-color: #1e1e1e;
}
.faq-item.active .faq-question {
    background-color: var(--primary-color);
    margin-bottom: 15px;
    color: #141414;
}
.faq-item.active .faq-question:before {
    color: 141414;
    transform: rotate(-88deg);
}
.support-info.style_two .support-btn a {
    border-radius: 30px;
    padding: 10px 28px 10px 10px;
}
.support-info.style_two .support-btn a i {
    width: 41px;
    height: 41px;
    border-radius: 20px;
    background-color: #f43e23;
    display: inline-block;
    color: #141414;
    text-align: center;
    line-height: 41px;
    font-size: 14px;
    margin-right: 10px;
}

/* ================ All Animation CSS ===================*/

.rotate {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background-position: center center;
}
@keyframes rotateme {
from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

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

.bounce-animate {
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate2 {
    animation-name: float-bob2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob2;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob2;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob2;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate3 {
    animation-name: float-bob3;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob3;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob3;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob3;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate4 {
    animation-name: float-bob4;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob4;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob4;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob4;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate5 {
    animation-name: float-bob5;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob5;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob5;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob5;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate-slow {
    animation-name: float-bob5;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob5;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob5;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob5;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate-3 {
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob6;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob6;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob6;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob2 {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}
@keyframes float-bob3 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@keyframes float-bob4 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@keyframes float-bob5 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}
@keyframes float-bob6 {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}
@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/*--==============================================->
  <!-- Consen Animation Dance -->
 ==================================================-*/
 .dance3 {
    -webkit-animation: dance3 8s alternate infinite;
    animation: dance3 8s alternate infinite;
}

@keyframes dance3 {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

.dance {
    -webkit-animation: dance 2s alternate infinite;
    animation: dance 2s alternate infinite;
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}

.dance2 {
    -webkit-animation: dance2 4s alternate infinite;
    animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(25px, -25px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -25px, 25px);
    }
}

.watermark-animate {
    -webkit-animation: watermark-animate 8s infinite;
    animation: watermark-animate 8s infinite;
    animation-direction: alternate-reverse;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes watermark-animate {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}



/*
<!-- ============================================================== -->
<!-- ReScrollup Button Cssstu  -->
<!-- ============================================================== -->*/

/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #f43e23;
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #f43e23;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: #f43e23;
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:var(--primary-color);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}

/*** 
====================================================================
   luhabiz Search Box Css
====================================================================
***/
.search-popup{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.search-popup{
    width: 100%;
}

.search-active .search-popup{
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color:var(--primary-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    border-right: 3px solid #062462;
    border-left: 3px solid #062462;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.search-active .search-popup .close-search{
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form{
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin:-35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form{
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group{
    position:relative;
    margin:0px; 
    overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
    position:relative;
    display:block;
    font-size:18px;
    line-height: 50px;
    color:#000000;
    height:70px;
    width:100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
    font-weight:500;
    text-transform:capitalize;
}

.search-popup .form-group input[type="submit"], .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color:var(--primary-color);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
    color:#000000;
}

.search-popup .close-search.style-two{
    position: absolute;
    right: 25px;
    left: auto;
    color:#ffffff;
    width:auto;
    height:auto;
    top:25px;
    margin:0px;
    border:none;
    background:none !important;
    box-shadow:none !important;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}

.search-box-btn {
    display: inline-block;
    padding-left: 22px;
}

.search-box-btn i {
    display: inline-block;
    color: #fff;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
}

.upp.search-box-btn i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    padding-left: 17px;
    position: relative;
    z-index: 1;
}

.upp.search-box-btn.search-box-outer span i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i:after {
    position: absolute;
    content: "0";
    right: -10px;
    top: -4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background:var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
}

.flaticon-multiply:before {
    content: inherit;
}

button.close-search i {
    font-size: 25px;
    color: #fff;
    display: inline-block;
}


span.flaticon-multiply i {
    display: inline-block;
    color: #6fc06f;
}

.header-search-button.search-box-outer {
    padding: 0px 8px 0 0;
    display: inline-block;
}

.header-search-button.search-box-outer a {
    color: #062462;
    display: inline-block;
    position: relative;
    left: 16px;
}


/*===========================
<-- luhabiz Sidbar Css -->
=============================*/
.nav-btn.navSidebar-button {
    display: inline-block;
}

.nav-btn.navSidebar-button a i {
    font-size: 24px;
    display: inline-block;
    color:var(--primary-color);
    transition: .5s;
}

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 101;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 23px;
    right: 0;
    padding: 25px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #272727;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 32px;
}

.close-side-widget i {
    color:var(--primary-color);
    font-size: 28px;
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}

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

/*html css*/
.nav-logo {
    margin: 0 0 50px;
}

.content-box h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
}

.content-box p {
    display: inline-block;
    color: #fff;
    padding: 15px 0 0;
}

a.theme-btn.btn-style-two span {
    color: #fff;
    font-size: 20px;
}

a.theme-btn.btn-style-two i {
    color:var(--primary-color);
}

.contact-info h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

ul.list-style-one li {
    display: block;
    list-style: none;
    color: #fff;
    padding: 16px 0 0;
    overflow: hidden;
}

ul.list-style-one li span {
    font-size: 20px;
    font-weight: 600;
    color:var(--primary-color);
    margin: 0 10px 0 0px;
}

ul.social-box {
    margin: 30px 0 0;
}

ul.social-box li {
    display: inline-block;
    list-style: none;
    margin: 0 6px 0 0;
}

ul.social-box li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color:var(--primary-color);
    transition: .5s;
    font-size: 18px;
    border-radius: 3px;
}

ul.social-box li a:hover {
    background:var(--primary-color);
    color: #fff;
}


/*===========================
<-- luhabiz Start Loader Css -->
=============================*/
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 666;
  }
  
  .loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    transition: all 1s 1s ease;
    width: 48px;
    height: 48px;
  }
  
  .loader:before,
  .loader:after {
    content: "";
    display: block;
    border: 32px solid transparent;
    border-top-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    animation: weld-rotate 2s infinite ease-in;
  }
  .loader:before {
    border-color: transparent transparent transparent var(--secondary-color);
    animation-delay: 0.5s;
  }
  @keyframes weld-rotate {
    0%,
    25% {
      transform: rotate(0deg);
    }
    50%,
    75% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 100);
    z-index: 2;
  }
  
  .loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
  }
  
  .loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
  }
  
  /*/ When page loaded /*/
  .loaded .loder-section.left-section {
    left: -100%;
  }
  
  .loaded .loder-section.right-section {
    right: -100%;
  }
  
  .loaded .loader-wrapper {
    visibility: hidden;
  }
  
  .loaded .loader {
    top: -100%;
    opacity: 0;
  }
  

  
/* Tap Style */

.tab {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  .tabs {
    display: table;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
  }
  
  .tabs li {
    line-height: 38px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
  }
  
  .tabs_item {
    display: none;
    padding: 30px 0;
  }
  
  .tabs_item:first-child {
    display: block;
  }
  
