.strategy-one__text strong{color: #01a4b2;}
.strategy-one__text p
  {
    margin-bottom: 12px;
}
 .case-details__descrip ul li{margin-bottom: 7px;}
  .case1app h2{
    font-size: 20px;
    color: #01a4b2;
    margin-bottom: 20px;
}
 .case1app h3{
    font-size: 18px;
     margin-bottom: 20px;
}
  .case-details__text-1 p {
    margin-bottom: 12px;
}
.case-details__descrip li strong{color: #01a4b2;}

.mob-quot {
    width: 100%;
    text-align: center;
    border-radius: 0;
}
.img-feat
  {
    width: 50px;
    filter: invert(1);
}
 .atlsimg {
    filter: invert(1);
    width: 60px;
}
.justify-content {
    justify-content: center;
}
.icon-right-arrow{padding-left: 7px;}
.blog-two__btn:hover{color: #000;}
.thm-btn::before {background-color: #4a4a4a;}
.thm-btn::after { background-color: #e4203200;}
 .clrfoot {
    color: #e5e6e7;
}
.clrfoot:hover {
   color: var(--bizgrow-primary);
}
 .icn-fot {
    padding-right: 5px;
    color: var(--bizgrow-primary);
}
.footer-widget__link li a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #089da8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
.strategy-one__text{margin-bottom: 12px;}
.why-choose-one__img {
   z-index: 1;
   position: relative;
   display: block;
}
.why-choose-one__img img {
    width: 100%;
    border-radius: 0px;
    transition: all 500ms ease;
    object-fit: cover;
    height: 450px;
}.why-choose-one__img:after {
    content: '';
    background-color: #15131312;
    width: 100%;
    position: absolute;
    top: -24px;
    bottom: -24px;
    right: 45%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(50%);
    border-radius: 0px;
    z-index: -1;
    opacity: 1;
    /* border: 1px solid red; */
}
 .align-items {
    align-items: center;
}
.mt-10{margin-top: 10px;}
.active .accrodion-title h4 {
    color: var(--bizgrow-primary);
}
 .logo-width {
    width: 210px;
}
 .pddr {
    padding-right: 5px;
}
.blog-two__btn::before {
    background-color: #4a4a4a00;
}

.services-four1__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
    margin-top: 12px;
}
.services-four1__text {
    font-size: 16px;
    line-height: 28px;
}
.services-four1__btn {
    position: relative;
    display: inline-block;
    margin-top: 12px;
}
.services-four1__btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--bizgrow-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.services-four1__btn a:hover {color: var(--bizgrow-primary);}
 .mainbck {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 0;
}
.services-four1__title a{color: var(--bizgrow-primary);}
.services-four1__title a:hover{color: var(--bizgrow-black);}
.sercr .owl-nav .owl-prev {
    color: #ffffff !important;
    background-color: #01a3b1 !important;
}
.sercr .owl-nav .owl-prev:hover {
     background-color: #000 !important;
}
.sercr .owl-nav .owl-next {
    color: #ffffff !important;
    background-color: #01a3b1 !important;
}
.sercr .owl-nav .owl-next:hover {
     background-color: #000 !important;
}
hr.custom-divider {
    width: 50%;
    margin: 5px auto;
    height: 2px !important;
    border: none;
    background: radial-gradient(circle, #000000 0%, #0b7d8b 40%, transparent 80%);
}
.owl-theme .owl-nav [class*=owl-] {
      border-radius: 0px;
}
.sidebar__active a {
    color: var(--bizgrow-white) !important;
    background-color: var(--bizgrow-base) !important;
}
 .sidebar__post::before ,.contact-page__contact-info-list::before ,.sidebar__category::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #01a4b2;
    z-index: 1;
}
 .blog-two__single::after  {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #01a4b2;
    z-index: 1;
}
 .spanproj {
    color: #01a4b2;
    font-weight: 500;
}
.contact-widget{
    position:fixed;
    right:20px;
    bottom:90px;
    z-index:9999;
}
 
.contact-btn{
    background:#01a4b2;
    color:#fff;
    padding: 17px 17px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    animation:pulse 2s infinite;
    text-transform: capitalize;
}
 
.contact-btn:hover{
    animation:none;
}
 
.contact-items{
    position:absolute;
    right:10px;
    bottom:65px;

    display:flex;
    flex-direction:column;
    gap:12px;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.3s ease;
}
 
.contact-btn:hover + .contact-items,
.contact-items:hover{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.contact-items a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:22px;

    transition:.3s;
    box-shadow:0 8px 18px rgba(0,0,0,.2);
}

.contact-items a:hover{
    transform:scale(1.12);
}
  
.whatsapp{
    background:#25D366;
}

.telegram{
    background:#229ED9;
}

.phone{
    background:#007BFF;
}

.sms{
    background:#ff9800;
}
 
@keyframes pulse{

    0%{
        transform:scale(1);
        box-shadow: 0 0 0 0 rgb(1 164 178);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 18px rgba(13,110,253,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(13,110,253,0);
    }

}

.brand-back {
     background-color: #13192200; 
}
.single-mar {
    margin-bottom: 30px;
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dcdad84d;
    padding: 25px 18px;
    border-radius: 20px;
}
.vision-pargraph {
    position: relative;
}
.read-more-text {
  max-height: 7em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
  margin-bottom: 15px !important;
}

.read-more-text.expanded {
  max-height: 100000px;
}
 
.read-more-btn:hover {
    color: #01a4b2;
}
 .quot-form {
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dcdad84d;
    padding: 30px;
    border-radius: 20px;
}
 .mb-20 {
    margin-bottom: 20px;
}
.services-one__content a:hover{color: #01a4b2;}
 .mb-30 {
    margin-bottom: 40px;
}
.carousel-control-next, .carousel-control-prev {
   filter: invert(1);
}
.carousel-indicators {
    filter: invert(1);
}
 .ullist  li {
    margin-bottom: 10px;
}
.ullist li strong {
    margin-bottom: 10px;
    color: #01a4b2;
}
 .bckpage {
     background: #f7f7f5;
}
 .donload {
    float: right;
    position: relative;
    top: -21px;
    color: #fff;
}
.donload:hover {
    color: #fff;
}
.main-slider-three__bg-overly {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 28%);
}.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}.banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
 @media (min-width: 0px) and (max-width: 991px)
    { 

.feature-three {
    padding: 30px 0 30px;
 }
.section-title-two {
    margin-bottom: 25px;
}
.main-slider-two .owl-theme .owl-dots {
     bottom: 24px;
}
.main-slider-two .item {
     height: 45vh; 
}
.main-slider-two__bg {
     height: 45vh;
}
.main-slider-two__btn-box {
    margin-top: 20px;
}
.main-menu__logo {
    padding: 10px 0;
}
.feature-three__single {
     padding: 20px 20px 20px;
    margin-bottom: 20px;  height: auto;
}
.services-one {
     padding: 30px 0 30px; 
}
    .services-one__carousel.owl-theme .owl-nav ,.testimonial-two__carousel.owl-theme .owl-nav {
        position: static;
        display: flex;
        justify-content: center;
        gap: 0px;
        margin-top: 40px !important;
        transform: none;
        margin-bottom: 20px;
    }
.services-one__img img {
    height: 216px;
 }
.services-one__content {
    margin-left: 14px;
    margin-right: 14px;
    margin-top: -28px;
     padding: 8px;
}
 .services-one__carousel.owl-theme .owl-nav .owl-next{
    background-color: #01a4b2;
    color: var(--bizgrow-white);
}
.sercr .owl-nav .owl-next {
    background-color: #4a4a4a !important;
}
.blog-two__img img {
    height: 235px;
 }
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 0px;
}
.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 0px;
}
.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    background-color: #01a4b2;
    color: var(--bizgrow-white);
}
.counter-two__content {
     margin-top: -7px;
}
.counter-two__count-list li {
       border-bottom: 1px solid #26242417;
        padding-bottom: 20px;
    }
.counter-two__count-list li:last-child {
       border-bottom: 0px solid #26242417;
        padding-bottom: 0px;
    }
    .how-it-work__icon span {
    font-size: 35px; 
}
.how-it-work__icon {
    width: 75px;
    height: 60px; 
}
.how-it-work__single {
    margin-bottom: 30px;
}
.why-choose-one__img img {
     height: 260px;
}
.strategy-one__right .section-title-two {
    margin-bottom: 18px;
}
.strategy-one {
    padding: 30px 0 30px;
}
 .flex-direction {
    flex-direction: column-reverse;
}
.project-two__img img {
    height: 335px;
}
    .project-two__content {
         padding: 15px 20px 10px;
    }

.project-two {
    padding: 30px 0 30px;
 }
.testimonial-two {
     padding: 30px 0 360px;
  }
    .faq-one__right {
         margin-top: 0;
    }
.brand-one__img>img {
     height: 55px; 
}
.brand-one {
      padding: 30px 0 30px;
 }
.brand-one__single {
     padding: 14px;
}
.blog-two {
    padding: 30px 0 30px;
 }
.footer-widget__title-box {
     margin-bottom: 15px;
}
.site-footer-two .site-footer__top {
    padding: 30px 0 30px;
}
.page-header {
     padding: 120px 0 120px;
 }

    .about-one {
        padding: 30px 0 30px;
    }
 
.services-two {
    padding: 30px 0 30px;
 }
.about-one__right {
         margin-top: 10px;
    }
.section-title__title {
        font-size: 25px;
        line-height: 28px;
    }
.services-two__single {
    padding: 20px;
    margin-bottom: 20px;
}
.contact-page__contact-info-list {
        padding: 25px 15px 25px;
    }
    .contact-page__right {
        margin-top: 25px;margin-left: 0px;
    }
.contact-page__form-title {
     margin-bottom: 15px;
}
.google-map__two {
     height: 270px;
}
.contact-page-google-map {
     padding: 0 0 30px;
 }
.contact-page {
    padding: 30px 0 30px;
 }
.blog-details__content-one-img img {
     height: 245px;
 }
.blog-details__title
  {
    font-size: 21px;
     line-height: 28px;
     margin-top: 16px;
    margin-bottom: 13px;
}
.blog-details {
      padding: 30px 0 30px;
}
.sidebar {
        margin-top: 20px;
    }
.ddisp{display: none;}
.case-details__top-title {
    font-size: 24px;
  }
.case-details__text-1 {
    margin-top: 13px;
    margin-bottom: 20px;
}
.case-details__description-title {
    font-size: 24px;
 }
 .case-details__descrip h3{
    font-size: 24px;
 }
 .case-details__descrip h2{
    font-size: 24px;
 }
.gallery-page__img img {
     height: 240px;
  }
.services-one__title {
     font-size: 17px;
     line-height: 23px;
}
.mb-30 {
    margin-bottom: 25px;
}
.banner {
        height: 50vh;
    }
     .coll6 {
     padding-right: 7px;
    padding-left: 7px;
}

    }