/*********** Hero Section ***********/
.pi__slider__section{
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}
.pi__slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 7000ms linear;
    -webkit-transition: all 7000ms linear;
    -moz-transition: all 7000ms linear;
    -ms-transition: all 7000ms linear;
    -o-transition: all 7000ms linear;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.row.bg {
    padding-top: 130px;
}
.slider-content {
    margin-top: 130px;
}
.si__slider__singlethumb {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    background: rgb(249, 249, 249);
    padding: 20px;
}
.si__slider__singlethumb img {
    border-radius: 50%;
    max-width: 100%;
    padding: 30px;
    background: #fff;
}
.pi__slider__right{
    position: relative;
}
.slider__growth {
    box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
    background: #fff;
    text-align: center;
    width: auto;
    display: inline-block;
    padding: 30px;
    border-radius: 30px;
    position: absolute;
    right: -100px;
    bottom: 120px;
    padding-bottom: 15px;
    padding-top: 40px;
    z-index: 2;
}
.slider__growth img{
    height: 100px;
}
.slider__growth h5 {
    position: absolute;
    margin: 0;
    left: 50%;
    top: 25px;
    background: var(--pi-primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 2px 15px;
    border-radius: 30px;
    margin-left: -65px;
}
.slider-content h1 {
    color: var(--pi-heading-color);
    line-height: 67px;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 17px;
}
.slider-content p {
    margin-bottom: 40px;
    color: var(--pi-heading-color);
    font-size: 18px;
    opacity: 0.8;
}
.slider-btn {
    text-align: center;
    display: inline-block;
}
.pi-slider-video {
    margin-left: 24px;
}
.pi-slider-video a {
    color: #fff;
    font-size: 19px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background: var(--pi-primary-color);
    display: inline-block;
    text-align: center;
    border-radius: 50px 50px 50px 50px;
    position: relative;
    z-index: 1;
    transition: .7s;
}
.pi-slider-video a::before {
    background: var(--pi-primary-color);
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
    display: none;
}
.si__shape__one{
    position: absolute;
    right: 17%;
    bottom: 6%;
}
.si__shape__two{
    position: absolute;
    right: 39%;
    bottom: 13%;
}
.si__shape__three{
    position: absolute;
    right: 43%;
    top: 28%;
}
.pi-slider-video a:hover {
    color: var(--pi-primary-color);
    background: var(--pi-white-color);
}
.slider-bottom {
    display: flex;
    align-items: center;
}
.pi-slider-video span {
    color: var(--pi-heading-color);
    margin-left: 10px;
    font-weight: 600;
    font-size: 18px;
}

/* Slider Swiper Section */
.swiper-slide-active .pi__slider__bg__two {
    transform: scale(1.1);
}
.pi__slider__section__two {
    padding: 200px 0;
    transition: 1s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.pi__slider__bg__two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: 10s;
    overflow: hidden;
}
.pi__slider__bg__two::before {
    position: absolute;
    content: "";
    background: linear-gradient(89.91deg, #3489c8 4.07%, rgba(3, 72, 51, 0) 65.91%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.pi__slider__all__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pi__slider__content h1 {
    color: var(--pi-white-color);
    font-size: 60px;
    line-height: 70px;
}
.pi__slider__content p {
    color: var(--pi-white-color);
    font-size: 21px;
    margin-top: 28px;
}
.pi__slider__btn a {
    background: var(--pi-primary-color);
    color: var(--pi-white-color);
    padding: 13px 40px;
    border-radius: 60px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    border: none;
}
.pi__btn__one:before, .pi__btn__one:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--pi-secondary-color);
    border-radius: 50%;
    z-index: -1;
}
  .pi__btn__one:before {
    left: -25px;
    transform: translate(-50%, -50%);
}
  .pi__btn__one:after {
    right: -20px;
    transform: translate(50%, -50%);
  }
  .pi__btn__one:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }
  .pi__btn__one:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }
  @keyframes criss-cross-right {
    0% {
      right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
  }
  @keyframes criss-cross-left {
    0% {
      left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
  }
.pi__all__inner__section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}
.pi__slider__btn {
    margin-top: 11px;
}
.pi__slider__social {
    background: var(--pi-social-bg);
    display: inline-block;
    padding: 29px 46px 31px 0px;
    position: absolute;
    bottom: 0;
    left: 26px;
    z-index: 1;
}
.pi__slider__social a {
    color: var(--pi-white-color);
    margin-left: 50px;
    position: relative;
    font-size: 19px;
    transition: .6s;
}
.pi__slider__social a:hover{
    color: var(--pi-primary-color);
}
.pi__slider__social a::before {
    position: absolute;
    content: "";
    top: -8px;
    left: -27px;
    width: 1px;
    height: 41px;
    background: var(--pi-white-color);
    opacity: 0.3;
}
.pi__slider__social a:first-child::before{
    display: none;
}
.pi__slider__video2 a {
    display: inline-block;
    background: var(--pi-white-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    position: relative;
    color: var(--pi-primary-color);
}
.pi__slider__video2 a::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--pi-primary-color);
    border-radius: 50%;
    animation: pxl_scale1 1500ms ease-out infinite;
    -webkit-animation: pxl_scale1 1500ms ease-out infinite;
    z-index: 1;
}
.pi__slider__video2 a::after{
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--pi-primary-color);
    border-radius: 50%;
    animation: pxl_scale2 1e3ms ease-out infinite;
    -webkit-animation: pxl_scale2 1e3ms ease-out infinite;
    z-index: 1;
}
@keyframes pxl_scale1 {
    0% {
        transform: scale(1);
        opacity: .67;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
@keyframes pxl_scale2 {
    0% {
        transform: scale(1.2);
        opacity: .57;
    }
    100% {
        transform: scale(2.3);
        opacity: 0;
    }
}
.pi__slider__navigation {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.slider-button-prev {
    background: var(--pi-primary-color);
    border: none;
    font-size: 18px;
    color: var(--pi-white-color);
    transition: .6s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 50%;
}
.slider-button-next {
    background: var(--pi-primary-color);
    border: none;
    font-size: 18px;
    color: var(--pi-white-color);
    transition: .6s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 50%;
}
.slider-button-next:hover{
    background: var(--pi-secondary-color);
}
.slider-button-prev:hover{
    background: var(--pi-secondary-color);
}
.pi__slider__shape {
    position: absolute;
    top: 153px;
    left: 19px;
}

/* Section Title */
.section-title.style-one h5 {
    display: inline-block;
    font-size: 20px;
    color: var(--pi-primary-color);
    margin-bottom: 8px;
    font-weight: 500;
    margin-left: 75px;
    position: relative;
}
.section-title.style-one h5::before {
    position: absolute;
    content: "";
    top: 14px;
    left: -73px;
    height: 2px;
    width: 63px;
    background: var(--pi-primary-color);
}
.section-title.style-one h5::after {
    position: absolute;
    content: "";
    top: 19px;
    left: -91px;
    height: 2px;
    width: 63px;
    background: var(--pi-primary-color);
}
.section-title.style-one h1 {
    line-height: 59px;
    font-size: 48px;
    font-weight: 700;
}
.section-title.style-one h1 span {
    color: var(--pi-primary-color);
}
.section-title.style-one p {
    margin-top: 22px;
    font-size: 17px;
}
.section-title.t_center {
    text-align: center;
}
/* Section Title Style Two */
.section-title.style-two h5 {
    color: var(--pi-primary-color);
    font-size: 20px;
    font-weight: 500;
}
.section-title.style-two h1 {
    color: var(--pi-secondary-color);
    line-height: 53px;
}
.section-title.style-two p {
    margin-top: 22px;
}
/* icon box style one */
.icon-box-icon-one .icon-box {
    display: inline-block;
    padding: 33px 28px 10px;
    border-radius: 7px;
    transition: .5s;
}
.icon-box-icon-one .img-icon img {
    width: 80px;
}
.icon-box-icon-one .icon-box-content {
    margin-left: 15px;
}
.icon-box-icon-one .icon-box-content h2 {
    font-weight: 700;
    font-size: 24px;
}
.icon-box-icon-one .icon-box {
    display: flex;
    align-items: center;
}
.icon-box-icon-one .icon-box-one {
    display: flex;
    align-items: center;
}
.icon-box-icon-one .img-icon-one img {
    width: 90px;
}
.icon-box-icon-one .description-one {
    margin-top: 5px;
}
.icon-box-icon-one .icon-box-content-one {
    margin-left: 19px;
    margin-top: 9px;
}
.icon-box-icon-one .title-one h2 {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--pi-white-color);
}
.icon-box-icon-one .icon-box-icon-one {
    background: var(--pi-primary-color);
    color: var(--pi-white-color);
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    border-radius: 50%;
}
.icon-box-icon-one .description-one p {
    line-height: 25px;
    color: var(--pi-white-color);
}
.title-one h2 {
    color: var(--pi-white-color);
    font-size: 16px;
    margin-bottom: 2px;
}
.icon-one i {
    display: inline-block;
    font-size: 35px;
    color: var(--pi-heading-color-two);
}
.icon-box-one {
    display: flex;
    align-items: center;
}
.icon-box-content-one {
    margin-left: 15px;
}
.description-one p {
    color: var(--pi-white-color);
    font-size: 21px;
}
/* Icon Box Two */
.icon-box-style-two {
    display: inline-block;
    padding: 24px 24px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.icon-box-style-two .icon-box-content {
    margin-top: 38px;
}
.icon-box-style-two .pi__icon__box__all {
    padding: 18px 36px 8px 15px;
    border-radius: 10px;
    position: relative;
}
.icon-box-style-two .img-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: var(--pi-primary-color);
    border-radius: 50px;
    text-align: center;
}
.icon-box-style-two .title h2 {
    margin-bottom: 0px;
    font-size: 24px;
    color: var(--pi-secondary-color);
    font-weight: 600;
}
.icon-box-style-two .description p {
    font-size: 16px;
    color: #8c8d8b;
    margin-top: 16px;
}

/* Icon BOx Style Three */
.icon-box.style-three.text-center {
    display: flex;
    justify-content: center;
}
.style-three .title h2 {
    color: var(--pi-white-color);
    font-size: 20px;
}
.style-three .description p {
    color: var(--pi-white-color);
    font-size: 18px;
    opacity: 0.5;
}
.style-three .icon-box-content {
    text-align: left;
    margin-left: 30px;
}
/* Icon BOx Syle Four */

.icon-box.style-four {
    display: flex;
    gap: 25px;
    align-items: center;
}
.icon-box.style-four .img-icon img{
    transition: .7s;
}
.icon-box.style-four:hover .img-icon img{
    transform: rotate(360deg);
}
.icon-box.style-four .img-icon {
    background: var(--pi-primary-color);
    width: 73px;
    height: 75px;
    line-height: 69px;
    text-align: center;
    border-radius: 50px;
}
.icon-box.style-four .img-icon img {
    width: 45px;
}
/* service-box Style One*/
.pi__service__box__one {
    background: var(--pi-white-color);
    box-shadow: 0 0 61px rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 48px 44px 29px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.pi__service__box__one::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(0);
    transition: .7s;
    background: url(../images/service.html);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.pi__service__box__one:hover:before{
    transform: scale(1);
}
.service__items__title h1 a {
    font-size: 24px;
    font-weight: 600;
    transition: .5s;
}
.service__icon__thumb img{
    transition: .7s;
}
.service__items__title {
    margin-top: 10px;
}
.pi__service__box__one:hover .service__icon__thumb img{
   filter: brightness(0) invert(1); 
}
.service__btn a i {
    font-size: 13px;
    font-weight: 900;
    margin-left: 5px;
}
.pi__service__span {
    position: absolute;
    top: 19px;
    right: 32px;
}
.pi__service__box__one:hover .service__items__title h1 a{
    color: var(--pi-white-color);
}
.service__items__title p{
    transition: .5s;
}
.pi__service__box__one:hover .service__items__title p{
    color: var(--pi-white-color);
}
.service__btn a{
    transition: .6s;
}
.pi__service__box__one:hover .service__btn a{
    color: var(--pi-white-color);
}
.pi__service__span span{
    transition: .6s;
}
.pi__service__box__one:hover .pi__service__span span{
    color: var(--pi-white-color);
}

/* SERVICE SWIPER AREA */
.pi__service__all__inner {
    background: var(--pi-white-color);
    padding: 20px 20px;
    position: relative;
}
.pi__service__swiper__content__all {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    margin-top: -30px;
    border-radius: 10px;
    padding: 15px 15px 15px 20px;
    background-color: var(--pi-secondary-color);
    z-index: 3;
}
.pi__service__swiper__inner span {
    color: var(--pi-white-color);
    font-weight: 700;
}
.pi__service__all__inner:hover .pi__service__swiper__icon__img{
    background: var(--pi-primary-color);
}
.pi__service__all__inner:hover .pi__service__swiper__icon__img img{
    filter: brightness(0)invert(1);
}
.pi__service__swiper__icon__img{
    width: 64px;
    background: var(--pi-white-color);
    padding: 12px;
    border-radius: 50%;
}
.Pi__service__swiper__thumb {
    position: relative;
    display: block;
    margin-bottom: 0;
    overflow: hidden;
}
.pi__service__all__inner .Pi__service__swiper__thumb img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}
.pi__service__all__inner:hover .Pi__service__swiper__thumb img:first-child{
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}
.pi__service__all__inner:hover .Pi__service__swiper__thumb img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}
.pi__service__all__inner .Pi__service__swiper__thumb img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease;
}
.pi__service__swiper__inner a h2{
    transition: .6s;
}
.pi__service__swiper__inner a h2:hover{
    color: var(--pi-primary-color);
}
.pi__service__content {
    position: relative;
    padding: 15px 30px 12px;
}
.pi__service__swiper__btn a {
    color: var(--pi-primary-color);
    font-weight: 700;
    transition: .6s;
}
.pi__service__swiper__btn a:hover{
    border-bottom: 1px solid;
}
.pi__service__swiper__btn a i {
    font-size: 20px;
    font-weight: 500;
    margin-left: 3px;
}
.pi__service__content p {
    border-bottom: 1.2px solid rgba(22, 23, 26, 0.1);
    padding-bottom: 17px;
}
.pi__service__swiper__inner h2 {
    color: var(--pi-white-color);
}
.pi__service__content h2 {
    font-size: 20px;
    transition: .6s;
}
.pi__service__content h2:hover{
    color: var(--pi-primary-color);
}
.pi__service__navigation {
    gap: 10px;
    display: flex;
    justify-content: center;
    margin-top: 17px;
}
.service-button-prev {
    background: var(--pi-primary-color);
    border: navajowhite;
    color: var(--pi-white-color);
    font-size: 22px;
    border-radius: 50%;
    transition: .6s;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.service-button-prev:hover{
    background: var(--pi-secondary-color);
}
.service-button-next {
    background: var(--pi-primary-color);
    border: navajowhite;
    color: var(--pi-white-color);
    font-size: 22px;
    border-radius: 50%;
    transition: .6s;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.service-button-next:hover{
    background: var(--pi-secondary-color);
}
/* Subscribe Area */
.mailchimp-form {
    position: relative;
    text-align: center;
}
.mailchimp-form input {
    text-align: left;
    border-radius: 7px;
    border: none;
    display: inline-block;
    padding: 23px 30px 31px;
    background: var(--pi-subscribe-bg);
    width: 100%;
}
.mailchimp-form input:focus {
    outline: 0;
    box-shadow: none;
    border: none;
}
.mailchimp-form input::placeholder{
    font-size: 16px;
    color: var(--pi-white-color);
}
.mailchimp-form button {
    color: #fff;
    font-size: 15px;
    margin-top: 20px;
    border: none;
    transition: .6s;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--pi-primary-color);
    padding: 7px 15px;
    border-radius: 4px;
}
.elementor-icon-box-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}
/* About Area */
.pureit-button-box.style3 {
    margin-top: 20px;
}
.pureit-button-box.style3 a {
    border: 2px solid var(--pi-white-color);
    color: #fff;
    padding: 11px 29px;
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    display: inline-block;
    transition: .6s;
}
.pureit-button-box.style3 a:hover{
    background: var(--pi-primary-color);
    border: 2px solid var(--pi-primary-color);
}
.pureit-button-box.style3 a i {
    display: inline-block;
    margin-left: 5px;
}
/* Tab */
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--bs-nav-pills-link-active-bg);
    background: transparent !important;
    color: #fff;
}
.nav-pills .nav-link {
    font-size: 45px;
    color: #a2a2a2;
    text-align: left;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
}
.nav-pills .nav-link:hover{
    color: #a2a2a2;
}
.pi__tab__thumb img {
    height: 588px;
    object-fit: cover;
    max-width: 55%;
}

.pi-tab-content {
    background: #242222;
    padding: 60px 0px 59px 60px;
    width: 39%;
    position: absolute;
    bottom: 50px;
    left: 193px;
    border-radius: 10px;
}
.pi__tab__thumb {
    position: relative;
}
.pi-tab-content p {
    font-size: 18px;
    line-height: 30px;
}
.pi-tab-content a {
    display: inline-block;
    color: #cccccc;
}
/* Pureit About box */
.pi__about__img__part__one {
    display: flex;
    gap: 30px;
}
.about-single-counter.style1 {
    box-shadow: 0px 6px 30px rgba(3, 72, 51, 0.2);
    display: inline-block;
    background: var(--pi-white-color);
}
.style2 .count {
    font-size: 40px;
    color: var(--pi-primary-color);
    font-weight: 800;
}
.style2 .about__suffix {
    color: var(--pi-primary-color);
    font-size: 50px;
    font-weight: 700;
}
.about-counter.style2 {
    box-shadow: 0px 6px 30px rgba(3, 72, 51, 0.2);
    background: var(--pi-white-color);
    text-align: center;
    padding: 16px 40px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 25px;
}
.counter___img.style2 {
    position: absolute;
    top: 138px;
    right: 36px;
    border: 1px solid var(--pi-primary-color);
    padding: 10px 13px;
    z-index: 1;
    border-radius: 11px;
}
.pi__about__thumb__two {
    margin-top: 40px;
}
.pi__about__thumb__one {
    border: 1px solid var(--pi-primary-color);
    padding: 9px 10px;
    border-radius: 10px;
}
.style2 #counter h6 {
    color: var(--pi-heading-color);
    font-size: 16px;
    margin-top: 5px;
}





/* Button CSS */
.pi__btn__one {
    color: var(--pi-heading-color);
    padding: 17px 44px;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .6s;
    border: 1px solid var(--pi-primary-color);
    display: inline-block;
}
.pi__btn__one:hover span{
    color: #fff;
}
.pi__btn__one span{
    z-index: 2;
}
/* Video Box */
.video-icon {
    display: flex;
    justify-content: center;
}
.video-icon a {
    display: inline-block;
    background: var(--pi-white-color);
    width: 131px;
    height: 131px;
    line-height: 131px;
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    position: relative;
    color: var(--pi-primary-color);
}
.em-video-image img {
    object-fit: cover;
    width: 100%;
}
.video-icon a::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--pi-primary-color);
    border-radius: 50%;
    animation: pxl_scale1 1500ms ease-out infinite;
    -webkit-animation: pxl_scale1 1500ms ease-out infinite;
    z-index: 1;
}
.video-icon a::after{
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--pi-primary-color);
    border-radius: 50%;
    animation: pxl_scale2 1e3ms ease-out infinite;
    -webkit-animation: pxl_scale2 1e3ms ease-out infinite;
    z-index: 1;
}
@keyframes pxl_scale1 {
    0% {
        transform: scale(1);
        opacity: .67;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
@keyframes pxl_scale2 {
    0% {
        transform: scale(1.2);
        opacity: .57;
    }
    100% {
        transform: scale(2.3);
        opacity: 0;
    }
}
/* @keyframes pulse-border{
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.9);
        opacity: 0;
    }
} */
.single-video.style-one {
    position: relative;
}
/* CounterUP CSS */
.count, .suffix {
    font-size: 48px;
    font-weight: 700;
    color: var(--pi-dark-color);
    flex-basis: 120px;
}
.counter__content h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--pi-dark-color);
    line-height: 1.5;
    margin-top: 10px;
}
.single_counter.style-two {
    text-align: center;
}
/* Counter area */
.single-counter.style1 {
    display: flex;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.09);
    width: 162px;
    height: 111px;
    align-items: center;
    border-radius: 52px 171px 56px 71px;
    position: relative;
    background: var(--pi-primary-color);
}
.single-counter.style1:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--pi-primary-color-two);
    bottom: 0px;
    right: -25px;
    transition: .5s;
    z-index: -1;
    border-radius: 52px 171px 56px 71px;
}
div#counter {
    margin-left: 14px;
}
.counter-icon_img img {
    width: 56px;
}
span.count {
    font-size: 40px;
    color: var(--pi-white-color);
    font-weight: 800;
}
span.suffix {
    font-size: 40px;
    color: var(--pi-white-color);
    margin-left: 0px;
    font-weight: 800;
}
div#counter h6 {
    color: var(--pi-white-color);
    font-size: 16px;
    margin-top: 5px;
}
/* Counter Two */
.style-two .single_counter_inner {
    display: inline-block;
}
.style-two .counter_icon_img {
    text-align: center;
}
.style-two .counter_content {
    position: relative;
    margin-left: 20px;
    margin-top: 11px;
}
.style-two .countr_text h1 {
    font-size: 35px;
    color: var(--pi-white-color);
    display: inline-block;
}
.style-two .countr_text {
    text-align: center;
    margin-top: 25px;
    position: relative;
}
.style-two .countr_text h3{
    font-size: 35px;
    color: var(--pi-white-color);
    display: inline-block;
}
.style-two .counter_title h4 {
    color: var(--pi-white-color);
    font-size: 20px;
    font-weight: 500;
    margin-top: -2px;
    position: relative;
    display: inline-block;
}
.style-two .counter_title h4::before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 1px;
    background: var(--pi-counter-color);
}
/* Counter Style Three */
.single_counter.style-three {
    padding: 73px 47px 32px 18px;
    display: inline-block;
    border-radius: 7px;
    width: 100%;
    background: var(--pi-white-color);
    position: relative;
    transition: .7s;
}
.single_counter.style-three:hover .countr_text h1{
    color: var(--pi-white-color);
}
.single_counter.style-three:hover .countr_text h3{
    color: var(--pi-white-color);
}
.single_counter.style-three:hover .countr_text h4{
    color: var(--pi-white-color);
}

.single_counter.style-three:hover{
    background: var(--pi-primary-color);
}
.style-three .counter_thumb img {
    width: 45px;
}
.style-three .countr_text {
    text-align: center;
}
.style-three .pi__counter__icon__thumb {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
}
.style-three .counter_thumb {
    background: var(--pi-white-color);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
}
.style-three .counter_content-three {
    margin-left: 10px;
}
.style-three .countr_text h1 {
    font-size: 65px;
    display: inline-block;
    transition: .6s;
}
.style-three .countr_text h3 {
    display: inline-block;
    font-size: 65px;
    transition: .6s;
}
.style-three .counter_title h4 {
    font-size: 18px;
    opacity: 0.6;
    font-weight: 600;
    margin-top: -5px;
    transition: .6s;
}
/* Team CSS */
.pi-team-single {
    position: relative;
    line-height: 1;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    overflow: hidden;
}
.pi-team-thumb {
    width: 100%;
    height: 440px;
    overflow: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.pi-team-thumb img {
    width: 100%;
    height: 100%;
    -o-object-position: center top;
    object-position: center top;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.pi-team-single:hover .pi-team-thumb img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.pi-team-content {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    -webkit-transform: translate(-50%, 30%) scale(1.2);
    -ms-transform: translate(-50%, 30%) scale(1.2);
    transform: translate(-50%, 30%) scale(1.2);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    padding: 10px;
    text-align: center;
    background: rgba(0,0,0,0) !important;
    overflow: hidden;
}
.pi-team-single:hover .pi-team-content {
    -webkit-transform: translate(-50%, 0) scale(1);
    -ms-transform: translate(-50%, 0) scale(1);
    transform: translate(-50%, 0) scale(1);
}
.pi-team-content::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.29);
    -webkit-backdrop-filter: blur(11.5px);
    backdrop-filter: blur(11.5px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.pi-team-single:hover .pi-team-content::after {
    opacity: 1;
    visibility: visible;
}
.pi-team-content h2 {
    font-size: 18px;
    letter-spacing: .05em;
    text-transform: uppercase;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: var(--pi-white-color);
}
.pi-team-content span {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 5px;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.pi-team-single:hover .pi-team-content span {
    opacity: 1;
}
.pi-social-profiles {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 0;
}
.pi-team-single:hover .pi-social-profiles {
    opacity: 1;
}
.pi-social-profiles ul li {
    display: inline;
    margin: 0 4px;
}
.pi-social-profiles ul li a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    display: inline-block;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.pi-social-profiles ul li a:hover{
    color: var(--pi-primary-color);
}
/* Team Style Two */
.pi-team-thumb-two img {
    max-width: 100%;
}
.pi-team-single-two::before {
    position: absolute;
    content: "";
    width: 66%;
    height: 1px;
    background: var(--pi-white-color);
    bottom: 135px;
    opacity: 0.3;
}
.pi-team-content-two {
    margin-bottom: 20px;
}
.pi-team-single-two:hover .pi-social-profiles-two{
transform: scale(1);
}
.pi-team-thumb-two {
    text-align: center;
}
.pi__team__all__social__icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 65px;
}
.pi__team__text span {
    color: var(--pi-white-color);
    font-size: 15px;
}
.pi-social-profiles-two ul li {
    display: inline;
}
.pi-social-profiles-two ul li a {
    display: inline-block;
    margin-left: 20px;
    border: 1px solid var(--pi-white-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    transition: .6s;
}
.pi-social-profiles-two ul li a {
    display: inline-block;
    color: var(--pi-white-color);
    transition: .7s;
}
.pi-social-profiles-two ul li a:hover{
    background: var(--pi-primary-color);
    border: 1px solid var(--pi-primary-color);
}
.pi-team-content-two h2 {
    color: var(--pi-heading-color);
    margin-bottom: 0;
    font-weight: 400;
}
.pi-team-content-two span {
    color: var(--pi-primary-color);
    font-size: 15px;
}

/*********** Team Style Three ***********/
.pi-team-single-three {
    position: relative;
    display: inline-block;
}
.pi-team-single-three .pi__team__single__img {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.pi-team-single-three .pi__team__single__img img {
    position: relative;
}
.pi-team-single-three .pi__team__single__img img::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;  
}
.pi-team-single-three .pi__team__all__content {
    position: absolute;
    bottom: -16px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pi-team-single-three .pi__team__content h2 {
    margin-bottom: 0;
}
.pi-team-single-three .pi__team__content {
    box-shadow: 0 0 61px rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 18px 0;
    border-radius: 15px;
    background: var(--pi-white-color);
    width: 100%;
    text-align: center;
}
.pi-team-single-three .pi-social-profiles-three {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 15px 0 0 15px;
    position: absolute;
    top: 43px;
    right: 22px;
    transition: .7s;
    opacity: 0;
}
.pi-team-single-three:hover .pi-social-profiles-three{
    opacity: 1;
    top: 66px;
}
.pi-team-single-three .pi-social-profiles-three ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    display: block;
    background: var(--pi-white-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    margin-top: 6px;
}
.pi-team-single-three .pi-social-profiles-three ul li a:hover{
    background: #000;
    color: var(--pi-white-color);
}
.pi-team-single-three .pi__social__share {
    position: absolute;
    top: 28px;
    right: 35px;
    background: var(--pi-secondary-color);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}
.pi-team-single-three .pi__social__share i {
    color: var(--pi-white-color);
}
.pi-team-single-three .pi-social-profiles-three ul li a i {
    font-size: 16px;
    transition: .4s;
}
.pi-team-single-three .pi-social-profiles-three ul li a i:hover{
    color: var(--pi-primary-color);
}
/* Workprocess area style ONe */
.work_progress.style-one {
    position: relative;
    text-align: center;
    display: inline-block;
}

.process_thumb {
    position: relative;
    display: inline-block;
}
.workprocess-none .work_progress.style-one::before{
    display: none;
}
.pi__process__thumb__inner {
    background: var(--pi-white-color);
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
}
.work_progress.style-one:hover .work_progress-number{
    background: #080a0b;
    color: var(--pi-white-color);
}
.style-one .work_progress-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: -14px;
    z-index: 9;
    background: var(--pi-secondary-color);
    transition: .6s;
    color: var(--pi-white-color);
}
.style-one .work_progress-number span {
    font-size: 22px;
}
.style-one .work_progress-title {
    margin-top: 18px;
}
.style-one .work_progress-title h2 {
    font-size: 23px;
    font-weight: 700;
}
.style-one .work_progress-desc p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.style-one .work_progress_title_two h3 {
    font-size: 16px;
}
/* Workprocess area style Two */
.work_progress.style-two {
    position: relative;
    text-align: center;
    display: inline-block;
}

.style-two .process_thumb {
    position: relative;
    display: inline-block;
    margin-top: 18px;
}
.workprocess-none .work_progress.style-two::before{
    display: none;
}
.style-two .pi__process__thumb__inner {
    background: var(--pi-white-color);
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
}
.work_progress.style-two:hover .work_progress-number{
    background: #080a0b;
    color: var(--pi-white-color);
}
.style-two .pi__process__thumb__two__inner{
    background: var(--pi-white-color);
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
}
.style-two .work_progress-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: -14px;
    z-index: 9;
    background: var(--pi-secondary-color);
    transition: .6s;
    color: var(--pi-white-color);
}
.style-two .work_progress-number span {
    font-size: 22px;
}
.style-two .work_progress-title h2 {
    font-size: 23px;
    font-weight: 700;
}
.style-two .work_progress-desc p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.style-two .work_progress_title_two h3 {
    font-size: 16px;
}

/* Workprocess Area Style Two */

/* .work_progress.style-two {
    text-align: center;
    position: relative;
}
.work_progress.style-two::before {
    position: absolute;
    content: "";
    background: url(../images/line-2.png);
    background-repeat: no-repeat;
    bottom: 43%;
    right: -21%;
    width: 117px;
    height: 76px;
}
.process_thumb{
    overflow: hidden;
}
.last-item .work_progress.style-two::before{
    display: none;
}
.style-two .work_progress-title {
    margin-top: 18px;
}
.style-two .process_thumb {
    margin-top: 13px;
}
.style-two .work_progress-title h2 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}
.style-two .work_progress-desc p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.style-two .work_progress_title_two h3 {
    font-size: 16px;
} */






/* Images carousel Section */
.pi__images__thumb a img {
    height: 110px;
    opacity: 0.5;
    transition: .6s;
    display: inline-block !important;
}
.pi__images__thumb {
    text-align: center;
}
.pi__images__thumb a img:hover{
    opacity: 1;
}
/********** Testimonials Area ***********/
.single_testimonial {
    position: relative;
    display: flex;
    overflow: hidden;
}
.testi_title h2 {
    color: var(--pi-white-color);
}
.pi__testi__all__content {
    background: var(--pi-secondary-color);
    display: inline-block;
    padding: 30px 75px 1px;
}
.testi_desr {
    color: var(--pi-white-color);
    opacity: 0.8;
    font-size: 15px;
}
.pi__testimonials__thumb {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.pi__testimonials__thumb img{
    transition: .6s;
}
.single_testimonial:hover .pi__testimonials__thumb img{
    transform: scale(1.1);
}
.pi__all__content__testi {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testi_thumb img {
    width: 175px;
}
.testimonial_list .owl-nav {
    position: absolute;
    bottom: 96px;
    left: -103%;
    display: flex;
    gap: 10px;
}
.testimonial_list .owl-nav div {
    background: var(--pi-primary-color);
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50px;
    color: var(--pi-white-color);
    font-size: 25px;
    transition: .7s;
}
.testimonial_list .owl-nav div:hover{
    background: var(--pi-white-color);
    color: var(--pi-heading-color);
}
.pi__testimonials__contentpart span {
    color: var(--pi-primary-color);
    font-size: 15px;
    font-weight: 700;
}
.pi__testimonials__contentpart h2 {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--pi-white-color);
}
.pi__testi__quote {
    background: var(--pi-primary-color);
    display: inline-block;
    padding: 15px 22px;
    position: absolute;
    top: 0;
    right: 0;
}
.pi__testi__quote i{
    font-size: 50px;
    color: var(--pi-white-color);
}
.pi__testimonials__contentpart p {
    font-size: 16px;
    color: var(--pi-white-color);
    font-weight: 500;
}
.testi-star {
    color: var(--pi-primary-color);
}
.testimonial__code {
    position: absolute;
    bottom: 0px;
    right: 60px;
}

.pi__testimonials__paragraph p {
    font-size: 17px;
}
.testi-star {
    color: #ffb930;
    font-size: 22px;
    margin-bottom: 13px;
}




/* Text Animation CSS */
.pureit-animate-content {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    overflow: hidden;
}
.pureit-animate-text {
    display: flex;
    white-space: nowrap;
    font-size: 0;
    overflow: hidden;
}
.animate-text {
    display: flex;
    align-items: baseline;
    animation: pureit-animation 20s linear infinite;
    -webkit-animation: pureit-animation 20s linear infinite;
}
.animate-text span {
    color: #fff;
    font-size: 65px;
    line-height: 1.1em;
    padding-right: .5em;
    padding-left: .5em;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
}
.animate-text.copy {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateX(100%) translateZ(0);
    animation: pureit-animation-copy 20s linear infinite;
    -webkit-animation: pureit-animation-copy 20s linear infinite;
}
@keyframes pureit-animation-copy{
    0% {
        transform: translateX(100%) translateZ(0);
    }
    100% {
        transform: translateX(0) translateZ(0);
    }
}
@keyframes pureit-animation{
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-100%) translateZ(0);
    }
}
span.pi_color{
    color: var(--pi-primary-color);
}
/* *****Pi Portfolio****** */
.single_protfolio {
    position: relative;
}
.pi__port__one .prot_main-content p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    background: var(--pi-primary-color);
    display: inline-block;
    padding: 3px 12px;
}
.pi__port__one .prot_main-content h2 a {
    color: var(--pi-heading-color);
    font-size: 20px;
    transition: .6s;
    font-weight: 500;
    background: #fff;
    padding: 10px 23px;
}
.single_protfolio:hover .prot_main-content{
    opacity: 1;
    bottom: 10px;
}
.prot_main-content {
    position: absolute;
    bottom: -75px;
    z-index: 9;
    left: 24px;
    opacity: 0;
    transition: .7s;
}
.pi__port__one .prot_main-content h2 a:hover{
    color: var(--pi-primary-color);
}
.pi__port__one .prot_thumb {
    position: relative;
    overflow: hidden;
}
.pi__port__one .prot_thumb::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 155px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: var(--pi-secondary-color);
    transition: all 300ms ease;
    transform: translateX(-150px);
    z-index: 3;
}
.port__btn a:hover {
    color: var(--pi-primary-color);
}
.pi__port__one .prot_thumb img {
    height: 400px;
    object-fit: cover;
    transition: .7s;
}
.port__icon {
    position: absolute;
    bottom: 115px;
    left: -63px;
    opacity: 0;
    transition: .6s;
    z-index: 9;
}
.single_protfolio:hover .port__icon{
    opacity: 1;
    left: 30px;
} 
.port__icon a i {
    display: inline-block;
    width: 55px;
    height: 55px;
    color: var(--pi-white-color);
    line-height: 55px;
    text-align: center;
    background: var(--pi-primary-color);
    font-size: 17px;
    border-radius: 50px;
    transition: .6s;
}
.port__icon a i:hover{
    background: var(--pi-heading-color);
    color: var(--pi-white-color);
}
.single_protfolio:hover .prot_thumb::before{
    opacity: 0.6;
}
.pi__port__one .prot_thumb::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s;
    background: var(--pi-secondary-color);
}
.port__btn {
    display: none;
}
/* Portfolio Style Two */
.port_style--two .single_protfolio {
    position: relative;
    margin-bottom: 30px;
}
.port_style--two .prot_thumb img {
    border-radius: 10px;
    transition: .3s linear;
    height: 482px;
    object-fit: cover;
}
.prot_content.em_port_content{
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pi-primary-color);
    border-radius: 10px;
    padding: 30px;
    transition: .3s linear;
    opacity: 0.7;
    transform: scale(.8);
    visibility: hidden;
    text-align: center;
}
.port_style--two .single_protfolio:hover .prot_content.em_port_content{
    opacity: 0.7;
    transform: scale(1);
    visibility: visible;
}
.port_style--two .porttitle_inner h3 a {
    display: inline-block;
    color: var(--pi-white-color);
    font-size: 30px;
    font-weight: 600;
}
.porttitle_inner p span {
    color: var(--pi-white-color);
}
/* Feature Box Style One */
.feature-box.default-style {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
    background: var(--pi-white-color);
    padding: 35px 55px 19px 31px;
    position: relative;
    transition: .8s;
}
.feature-box.default-style:hover{
    background: #000;
}
.feature-box.default-style:hover .pi__feature__box__img img{
    outline: 3px solid var(--pi-white-color) !important;
    transform: rotate(360deg);
}
.default-style .pi__feature__box__img img {
    border-radius: 50%;
    transition: all 300ms ease;
}
.default-style .pi__feature__Icon:hover{
    background: var(--pi-white-color);
}
.default-style .pi__feature__Icon:hover i{
    color: var(--pi-secondary-color);
}
.default-style .pi__feature__Icon {
    background: var(--pi-secondary-color);
    display: inline-block;
    color: #fff;
    padding: 9px 17px;
    position: absolute;
    top: 0;
    right: 0;
    transition: .6s;
}
.default-style .feature__box__img2 {
    display: flex;
    align-items: center;
    gap: 17px;
    position: relative;
}
.feature-box.default-style:hover .feature-box-title h2{
    color: var(--pi-white-color);
}
.feature-box.default-style:hover .feature__box__img2::before{
     border: 1px dashed var(--pi-white-color);
}
.default-style .feature__box__img2::before {
    position: absolute;
    content: "";
    top: 71px;
    left: 0;
    border: 1px dashed #000;
    width: 100%;
    height: 1px;
    opacity: 0.3;
}
.default-style .feature-box-title h2 {
    color: var(--pi-heading-color);
    font-size: 24px;
    font-weight: 700;
    transition: .6s;
}
.feature-box.default-style:hover .feature-box-desc p{
    color: var(--pi-white-color);
}
.default-style .feature-box-desc p {
    color: var(--pi-heading-color);
    font-size: 16px;
    padding-top: 37px;
}
.default-style .feature__box__img img {
    width: 80px;
}
.feature-box.style-four {
    position: relative;
    transition: .6s;
    border: 1px solid var(--pi-icon-box-color);
    padding: 30px 35px 5px;
    border-radius: 15px;
    transition: .7s;
    background: #fff;
}
.feature-box.style-four:hover{
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.09);
    border: 1px solid var(--pi-white-color);
    transform: translateY(-20px);
}
.style-four .feature__box__all__content {
    text-align: center;
}
.style-four .feature-box-title h2 {
    font-size: 24px;
    font-weight: 700;
}
.style-four .feature-box-desc p {
    font-size: 17px;
}
.style-four .feature-box-title span {
    font-size: 24px;
    font-weight: 600;
   position: relative;
}
.feature-box.style-four .pi__feature__desr span {
    font-size: 22px;
    font-weight: 600;
}
.feature-box.style-four .pi__feature__desr {
    text-align: center;
    margin-top: 50px;
}
.style-four .feature-box-thumb {
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 20px;
    transition: .6s;
}
.feature-box.style-four:hover .feature-box-thumb{
    background: var(--pi-primary-color);
}
.feature-box-thumb img{
    transition: .6s;
}
.feature-box.style-four:hover .feature-box-thumb img{
    filter: brightness(0) invert(1);
}
.style-four .feature-box-title {
    position: relative;
    top: 22px;
    text-align: center;
}
.style-four .feature-btn {
    padding: 27px 0 0px;
}
.style-four .feature-btn a {
    background: var(--pi-primary-color);
    color: var(--pi-white-color);
    padding: 14px 33px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    transition: .6s;
}
/* Feature Box Style Three */
.style-three.feature-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.style-three .feature-box-title {
    display: inline-block;
    padding: 19px 45px 5px 70px;
    border: 1px solid var(--pi-white-color-two);
    position: relative;
    border-radius: 18px 0 0 18px;
}
.style-three .pi__feature__img {
    z-index: 6;
}
.style-three .pi__feature__img img {
    animation: CSSright 60s linear infinite running;
    vertical-align: middle;
    border-radius: 50%;
    max-width: unset;
}
.style-three .feature-box-title h2 {
    color: var(--pi-white-color);
    font-size: 22px;
    margin-bottom: 0;
}
.style-three .feature-box-title p {
    color: var(--pi-white-color);
    font-size: 14px;
    opacity: 0.7;
    line-height: 20px;
    margin-top: 5px;
}
.style-three .feature-box-title {
    max-width: 270px;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    padding: 20px 15px 20px 110px;
    margin-left: -90px;
    z-index: 4;
}
/* Feature BOx Style Six */
.feature-box.style-six {
    display: flex;
    align-items: center;
    border: 2px solid var(--pi-icon-box-color);
    padding: 27px 26px;
    border-radius: 15px;
    transition: .7s;
}
.feature-box.style-six:hover{
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--pi-white-color);
    transform: translateX(20px);
}
.style-six .feature-box-content {
    margin-left: 20px;
}
.style-six .feature-box-desc p {
    font-size: 18px;
    margin-bottom: 5px;
}
.style-six .feature-btn a {
    display: inline-block;
    color: var(--pi-heading-color-two);
    font-size: 19px;
    font-weight: 600;
}
/********** Pi Pricing Area **********/
.pricing_content:hover .order_now a{
    background: var(--pi-primary-color);
    color: var(--pi-white-color)
}
.featur ul li {
    margin-bottom: 6px;
    position: relative;
    padding-bottom: 10px;
    color: var(--pi-heading-color);
    font-size: 18px;
}
.featur ul li:last-child{
    border: none;
}
.featur ul li::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    color: var(--pi-primary-color);
    left: -26px;
}
.featur ul li:last-child:before{
    content: "\f00c";
}
.pricing_title h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 28px;
}
.price_item_inner_center {
    margin-bottom: .5rem;
    color: var(--pi-primary-color);
    font-weight: 700;
    font-size: 51px;
}
.pricing_body {
    margin-top: 60px;
}
.monthp {
    font-size: 20px;
    margin-left: -9px;
}
.tk {
    margin-left: -15px;
}
.order_now a {
    border: 1px solid var(--pi-primary-color);
    color: var(--pi-primary-color);
    padding: 18px 110px;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    z-index: 1;
    margin: 13px 0 63px;
    font-size: 17px;
    transition: .7s;
}
/* Pricing Tab Style Three */
.pricing-item-wrap .pricing-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pricing-item-wrap .pricing-tab .tab-btn.monthly_tab_title.active {
    color: var(--pi-primary-color);
}
.pricing-item-wrap .pricing-tab .tab-btn.monthly_tab_title {
    color:  #687799;
}
.pricing-item-wrap .pricing-tab .annual_tab_title.active {
    color: var(--pi-primary-color);
}
.pricing-item-wrap .pricing-tab .tab-btn {
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    user-select: none;
    transition: .3s;
}
.pricing-tab .pricing-tab-switcher {
    height: 30px;
    width: 70px;
    display: inline-block;
    border-radius: 30px;
    position: relative;
    margin: 0 15px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    cursor: pointer;
    background: var(--pi-primary-color);
}
.pricing-tab .pricing-tab-switcher.active:before {
    left: calc(100% - 28px);
}
.pricing-tab .pricing-tab-switcher:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    width: 26px;
    border-radius: 50%;
    background: #fff;
    transition: .3s;
}
/* Pricing Box Three */
.pricing-box-three {
    position: relative;
    transition: .8s;
}
.pricing-box-three .pricing-price-two {
    background: var(--pi-secondary-color);
    padding: 42px 97px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}
/* .pricing-box-three:hover {
    position: relative;
    box-shadow: 0 0 61px rgba(0, 0, 0, 0.3);
    padding: 27px 30px 45px;
    border-radius: 20px;
    background: var(--pi-white-color);
} */
.pi__pricing__title2 {
    position: absolute;
    bottom: -30px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-box-three .pi__pricing__span {
    margin-top: 12px;
}
.pricing-box-three .pi__pricing__title {
    background: var(--pi-primary-color);
    display: inline-block;
    padding: 8px 90px;
    border-radius: 7px;
    border-top: 1px solid var(--pi-white-color);
    border-right: 1px solid var(--pi-white-color);
    border-left: 1px solid var(--pi-white-color);
}
.pricing-box-three .pi__pricing__title h4 {
    color: var(--pi-white-color);
    font-size: 20px;
    font-weight: 500;
}
.pricing-box-three .pricing_body {
    margin-top: 53px;
    display: flex;
    justify-content: center;
}
.pricing-box-three .pricing-price-two span {
    color: var(--pi-primary-color);
    font-size: 19px;
}
.pricing-box-three .price {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
    line-height: 1;
    justify-content: center;
}
.pricing-box-three .price strong {
    font-weight: 600;
    font-size: 20px;
    margin: 4px 3px auto 0;
}
.pricing-box-three .price span {
    color: var(--pi-white-color);
    font-weight: 500;
    font-size: 14px;
    margin-left: 4px;
    margin-bottom: 7px;
}
.pricing-box-three .pricing__btn {
    text-align: center;
    margin-top: 8px;
}
.pricing-box-three .pricing__btn a {
    color: var(--pi-white-color);
    padding: 15px 46px;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .6s;
    background: var(--pi-secondary-color);
    display: inline-block;
}
.pricing-box-three .pricing__btn a:hover{
    background: var(--pi-primary-color);
}
.pricing-box-three .pricing__btn a::before{
    position: absolute;
    content: "";
    width: 42px;
    height: 45px;
    background: var(--pi-primary-color-two);
    bottom: 0px;
    right: 0;
    border-radius: 50px 0 0 0;
    transition: .5s;
    z-index: -1;
}
.pricing-box-three .pricing__btn a:hover::before{
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.pricing-price-two .annual_price {
    display: flex;
    color: #fff;
}
.pricing-price-two .monthly_price {
    display: none;
}
.pricing-price-two.change-subs-duration .annual_price {
    display: none;
}
.pricing-price-two.change-subs-duration .monthly_price {
    display: flex;
    color: var(--pi-white-color);
}
/********* Pi Blog Area **********/
.blog_style_two {
    position: relative;
}
.blog-page-title {
    position: relative;
    margin-top: 15px;
}
.pureit__single__blog {
    margin-top: 30px;
    position: relative;
    background-color: var(--white);
    box-shadow: var(---box-shadow);
}
.pureit__single__blog:hover .pureit-blog-thumb a img{
    transform: scale(1.1);
}
.pureit-blog-thumb a img{
    transition: .7s;
}
.pureit-blog-readmore a i {
    font-size: 14px;
    margin-left: 5px;
}
.blog-page-title h2 a:hover{
    color: var(--pi-primary-color);
}
.pureit__blog__date {
    background: var(--pi-primary-color);
    display: inline-block;
    padding: 4px 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .7s;
}
.border__bottom {
    border-bottom: 1px dashed var(--pi-white-color);
}
.pi__blog__shape {
    position: absolute;
    top: -118px;
    right: -125px;
    z-index: 9;
}
.post-categories li a {
    display: inline-block;
}
.blog-page-title h2 a {
    color: var(--pi-heading-color);
}
.pureit-blog-readmore a {
    display: inline-block;
}
.pureit__blog__top ul li a {
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0 15px;
    border-radius: 30px;
    padding-bottom: 4px;
    margin-right: 13px;
}
.pureit__blog__date:hover{
    background: var(--pi-heading-color);
}
.pureit__blog__top ul li {
    font-size: 16px;
}
.pureit__blog__date h2 {
    color: var(--pi-white-color);
    margin-bottom: -3px;
    display: inline-block;
    font-size: 16px;
}
.pureit__blog__top ul li {
    display: inline;
}
.pureit__blog__top ul li span i {
    display: inline-block;
    margin-right: 8px;
    color: var(--pi-primary-color);
    display: none;
}
.pureit__blog__top ul li a i {
    display: inline-block;
    margin-right: 8px;
    color: var(--pi-primary-color);
    display: none;
}
.single_blog {
    margin: 15px;
}
.pureit-blog-thumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.pureit-blog-meta-left span i {
    display: inline-block;
    margin-right: 7px;
}
.post-categories {
    font-size: 15px;
    display: inline-block !important;
}
.blog-page-title h2 a {
    display: inline-block;
    font-size: 23px;
    font-weight: 700;
    transition: .6s;
}
.blog-page-title h2 a:hover{
    color: var(--pi-primary-color);
}
.pureit-blog-readmore a {
    display: inline-block;
    color: var(--pi-heading-color);
    position: relative;
    z-index: 1;
}
.pureit-blog-readmore a:hover::before{
    width: 100%;
}
.pureit-blog-readmore {
    margin-top: 22px;
    transition: .6s;
}
.blog__content {
    box-shadow: 0 0 61px rgba(0, 0, 0, 0.07);
    background: var(--pi-white-color);
    padding: 31px 33px;
}
.pi__blog__shape.rotateme3 img {
    transition: .5s;
}
.blog-page-title p {
    font-size: 14px;
}
.pureit-blog-readmore a:hover{
    color: var(--pi-primary-color);
}
.em-blog-content-area {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
    padding: 34px;
}
.blog_carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.blog_carousel .owl-dot.active {
    background: var(--pi-primary-color);
    width: 25px;
    height: 9px;
    border-radius: 5px;
}
.blog_carousel .owl-dot{
    background: var(--pi-primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    transition: .6s;
}
/* FAQ */
.my-accordion li {
    margin-bottom: 20px;
}
.my-accordion li a {
    position: relative;
    display: block;
    font-size: 20px;
    outline: 0;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: var(--pi-heading-colorr);
    transition: .3s;
    transition: .6s;
    border-radius: 5px;
    box-shadow: 0 0 61px rgba(0, 0, 0, 0.2);
    background: var(--pi-white-color);
    padding: 28px 30px;
    border-radius: 5px;
}
.my-accordion li a.active{
    background: var(--pi-primary-color);
    padding: 28px 30px;
    border-radius: 5px;
    color: var(--pi-white-color);
}
.my-accordion p {
    display: none;
    margin: 20px 10px 10px 54px;
    font-size: 16px;
    width: 85%;
    color: var(--pi-heading-color);
}
.my-accordion li a::after {
    content: "\f067";
    font-family: "Font Awesome 6 pro";
    position: absolute;
    right: 10px;
    top: 24px;
    width: 30px;
    height: 30px;
    background: var(--st-theme-color);
    text-align: center;
    line-height: 30px;
    border-radius: 0;
    font-size: 18px;
}
.my-accordion li a.active::after {
    content: "\f068";
}
/* Progressbar Css*/
.bar-bg {
    height: 5px;
    background: #ddd;
}
.bar-bg .progress-bar {
    height: 6px;
    background-color: var(--pi-primary-color);
    transition: width 1s linear;
    width: 0%;
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}
.progress-items.progress-area h5 {
    background: var(--pi-primary-color);
    color: var(--pi-white-color);
    padding: 4px 6px;
    font-size: 15px;
    border-radius: 5px;
}