@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
   scroll-behavior: smooth;
}

body{
   overflow-x: hidden;
   width: 100%;
}


a{
    text-decoration: none;
}

ul, li, ol, p, h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
}

/* 
<!---Header-section-start--> */

.navigation-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.01);

}

.sticky-top {
   position: sticky;
   top: 0;
   z-index: 1000; 
   
}

.header{
   background: #FFF;
   box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
}


.navigation-bar a.logo{
    margin-left: 290px;
}

.navigation-bar .logo img{
    max-width: 60px;
    height: 60px;
}

.navigation-bar .nav{
    display: flex;
    align-items: center;
    gap: 50px;
}

.navigation-bar .nav .nav-list {
   display: flex;
   align-items: center;
   gap: 50px;
   margin-bottom: 10px;
}

.navigation-bar .nav a {
   color: #333;
   font-family: Inter;
   font-size: 14px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
   letter-spacing: 0.28px;
   text-transform: capitalize;
   transition: all 0.5s ease;
   position: relative;
}

.nav a::after {
   content: '';
   position: absolute;
   width: 100%;
   transform: scaleX(0);
   height: 2px;
   top: 100%;
   left: 0;
   background-color: #333; /* Line color */
   transform-origin: bottom right;
   transition: transform 0.3s ease-out;
}

.nav a:hover::after,
.nav a.active::after {
   transform: scaleX(1);
   transform-origin: bottom left;
}

.nav a:hover,
.nav a.active {
   color: #FEBB13; /* Change to your desired hover color */
}

.navigation-bar .nav::-webkit-scrollbar {
   display: none;
}


.contact-sec{
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FEBB13;
    padding: 15px 20px;
}

.contact-sec a::after{
   content: unset;
}

.contact-sec .contact-sec-icon img{
    width: 60px;
    height: 55px;
}

.contact-sec .contact-txt h4{
    color: #000;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 68.75% */
    letter-spacing: 0.32px;
    padding-bottom: 10px;
}

.contact-sec .contact-txt p{
    color: #333;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.24px;
}



/* 
<!--top home-section-start--> */

.home-sec{
   width: 100%;
   /* background-color: #fff1c9; */
   padding: 84px 0 103px 0;
   background: linear-gradient(0deg, #FFF8E5 0%, #FFEFC5 100%);
   filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.15));
}

.home-info{
   max-width: 1308px;
   margin: auto;
   width: 100%;
}

.home-text-left h1{
   font-family: Roboto;
   background: linear-gradient(180deg, #FAF2FD 2.5%, rgba(255, 255, 255, 0.4) 100%);
   font-size: 14px;
   font-weight: 500;
   line-height: 28px;
   color: #F86202;
   text-align: left;
   max-Width: 350px;
   border: 1px dashed #402F00;
   border-radius: 20px;
   padding: 7px 21px;
   margin-bottom: 36px;
}

.home-text-left h2{
   font-family: EB Garamond;
   font-size: 60px;
   font-weight: 500;
   line-height: 63px;
   text-align: left;
   color: #333333;
   max-Width: 639px;
   margin-bottom: 22px;
}


.home-text-left p{
   font-family: Roboto;
   font-size: 16px;
   font-weight: 500;
   line-height: 23px;
   text-align: left;
   color: #545454;
   max-Width: 600px;
   margin-bottom: 44px;
}

.home-text-left p span{
   color: #F86202;
}

.home-text-left .home-text-box{
   max-width: 315px;
   height: 120px;
   background: #FDFBF8;
   padding: 18px 18px 18px 24px;
   border: 1.5px solid #C8C7C7;
   border-radius: 10px;
}


.home-text-left .home-text-box p{
   font-family: Roboto;
   font-size: 15px;
   font-weight: 400;
   line-height: 17.58px;
   text-align: left;
   color: #333333;
   margin-bottom: 12px;
}


.home-image-right .animated-image{
   width: 100%;
   height: 100%;
   animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
   0% {
      transform: translateY(10px);
  }
   100% {
      transform: translateY(-10px);
  }
}



/* 
<!--review-section-start--> */

.review-sec{
   background: #FAFAFA;
   width: 100%;
}

.review-content{
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 29px 0;
   gap: 15px;
   flex-wrap: wrap;
}

.review-content .star-icons{
   Width:130px;
   Height:24px;

}

.review-content span.line{
   Width:2px;
   Height:20px;
   background-color: #B2C9C6;
}

.review-content h6{
   font-family: Roboto;
   font-size: 22px;
   font-weight: 600;
   line-height: 26px;
   letter-spacing: 0.02em;
   text-align: left;
   color: #333333;
}  

.review-content p{
   font-family: Roboto;
   font-size: 14px;
   font-weight: 600;
   line-height: 26px;
   letter-spacing: 0.02em;
   text-align: left;
   color: #333333;
}

.review-content p.rating-sec{
   font-weight: 500;
}

.review-content p.rating-sec span{
   color: #00B67A;
}



/* 
<!--case-studies-section-start-->   */

.case-studies-info{
   background: url(../images/case-studies-bg.png) no-repeat center center / cover;
   width: 100%;
   height: 100%;
   max-height: 860px;
   background-color: #fff;
   position: relative;
   background-size: cover;
}



.case-studies-main, .case-slide-content-info, .our-professionals{
   width: 100%;
   max-width: 1308px;
   margin: auto;
}

.case-studies h2{
   font-family: EB Garamond;
   font-size: 48px;
   font-weight: 500;
   line-height: 63px;
   text-align: center;
   padding: 55px 0 60px 0;

}

.case-studies-left{
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   padding-top: 140px;
   position: relative;
   flex-direction: column;
}



.case-studies-left h3{
   font-family: Roboto;
   font-size: 42px;
   font-weight: 300;
   line-height: 49.22px;
   letter-spacing: 0.01em;
   text-align: left;
   max-width: 408px;
}

.case-studies-left span{
   width: 400px;
   height: 1px;
   background-color: #666666;
   margin-bottom: 33px;

}

.case-studies-slider .case-studies-right{
   width: 100%;
   height: 490px;
   position: relative;
   overflow: hidden;
}

.case-studies-slider{
   background-color: #fff;
   border-radius: 30px 30px 0 0;
   margin: 0 12px;
    overflow: hidden;
}

.case-studies-slider .case-studies-right img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 0 30px 0 0;
}

.case-slide-txt{
   display: flex;
   align-items: center;
   /* justify-content: space-between; */
   position: relative;
   z-index: 99;
   gap: 100px;
}


.case-slide-box1{
   max-width: 520px;
   padding-left: 70px;
}

.case-slide-box1 p{
   font-family: EB Garamond;
   font-size: 24px;
   font-weight: 400;
   line-height: 32px;
   margin-top: 23px;
   text-align: left;
   color: #333333;
}


/* .case-slide-box2{
   flex: 1;
   margin-left: 80px;
} */

/* .case-slide-box2 a{
   font-family: Roboto;
   font-size: 14px;
   font-weight: 500;
   line-height: 16.41px;
   letter-spacing: 0.01em;
   text-align: left;
   color: #333333;
   padding: 15px 25px;
   border-radius: 25px;
   border: 1px solid #333333;
   position: relative;
   transition: all 0.6s ease;
   display: flex;
    gap: 15px;
    width: 221px;
    align-items: center;
} */

.case-slide-box2 a:hover{
  /* background-color: #FEBB13; */
}

.btn-casestudy {
   color: #333;
   font-family: Roboto;
   font-size: 14px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
   letter-spacing: 0.14px;
   transition: .5s;
   border-radius: 30px;
   border: 1px solid #333;
   width: 221px;
   height: 48px;
   display: flex;
    align-items: center;
    padding: 0 20px;
}
.btn-casestudy:hover {
   color: #1b1e55;
}


/* .btn-casestudy::after, .btn-review::after, .btn-talk::after {
   content: "";
   background: url(../images/arrow-bg.png) -23px -38px no-repeat;
   display: inline-block;
   transition: .15s linear;
   width: 35px;
   height: 11px;
}



.bg-white, .btn-casestudy:hover, .cta-button, .service-contnet-box {
   background-color: #fff;
}

.btn-casestudy:hover::after, .btn-review:hover::after, .btn-talk:hover::after {
   background-position: 10px -38px;
} */





.case-slide-content{
   background-color: #fff;
   position: relative;
   overflow: hidden;
}

.case-slide-box2 img{
   max-width: 20px;
   display: inline-block !important;
}

.case-slide-box1 img{
   max-width: 245px;
   height: auto;
}

.slideshow-container {
   position: relative;
   margin: auto;
   overflow: hidden;
 }


 .case-slider{
   position: relative;
   width: 100%;
 }

.case-slider.owl-theme .owl-nav{
   position: absolute;
   display: flex;
   right: 292px;
   top: 84%;
   align-items: center;
   gap: 5px;
 }

.case-slider.owl-theme .owl-nav .owl-prev, .case-slider.owl-theme .owl-nav .owl-next{
   width: 68px;
   height: 48px;
   border: 1.3px solid #000;
   border-radius: 25px;
 }

.case-slider.owl-theme .owl-nav [class*=owl-]:hover{
   background: unset;
 }

 
 /* .wraper {display: none;}



 .wraper {
   display: none;
   opacity: 0;
   transition:all opacity 0.9s ease;
 }
 
 .wraper.active {
   display: block;
   opacity: 1;
 } */
 

 
 

.case-studies::before{
   content: '';
   width: 496px;
   height: 100%;
   position: absolute;
   left: -315px;
   top: 178%;
   z-index: 9;
   background: url(../images/angle-shapes.png) no-repeat;
}


 .numbertext {
   color: #333333;
   font-family: Roboto;
   font-size: 24px;
   font-weight: 500;
   width: 60px;
   height: 60px;
   border: 1px solid #C8C7C7;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   line-height: 37.5px;
   text-align: center;
   position: absolute;
   top: 20px;
   left: 20px;
 }


 /* <!-- 
  Talk To Our Professionals-section --> */

  .our-professionals-sec{
   padding: 108px 0 139px 0;
   width: 100%;
  }

  .our-professionals{
   box-shadow: 0px 0px 1px 0px #540C624D;
   background: #F8F8FF;
   padding: 20px;
   border-radius: 10px;
   position: relative;
   z-index: 9;
  }

  .our-professionals-info{
   border: 2px solid #333333;
   padding: 35px 66px 44px 66px;
   text-align: center;
   position: relative;
   z-index: 99;
  }

  .our-professionals-info h5{
   font-family: Roboto;
   font-size: 26px;
   font-weight: 400;
   line-height: 38px;
   color: #333333;
   text-align: center;
   margin-bottom: 23px;

  }

  .our-professionals-info a{
   background: linear-gradient(90deg, #F9BC19 0%, #F86202 100%);
   font-family: Roboto;
   font-size: 20px;
   font-weight: 500;
   line-height: 23.44px;
   text-align: center;
   border-radius: 40px;
   color: #FFFFFF;
   max-width: 320px;
   width: 100%;
   margin: auto;
   height: 52px;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.5s ease;
  }

  .our-professionals-info a:hover{
   background: transparent;
   border: 1px solid #000;
   color: #000;
  }

  
  /* WP Video Tutorial Services */
  .wp-tutorial-services{
   padding-left: 290px;
  }

.wp-tutorial-services-sec {
   background: #000000;
   padding: 80px 0 180px 0;
   width: 100%;
 }
 
 .wp-tutorial-text h2 {
   font-family: EB Garamond;
   font-size: 48px;
   font-weight: 500;
   line-height: 48px;
   text-align: left;
   color: #fff;
   margin-bottom: 27px;
 }
 
 .wp-tutorial-text p {
   font-family: Roboto;
   font-size: 16px;
   font-weight: 500;
   line-height: 27px;
   text-align: left;
   color: #fff;
   margin-bottom: 48px;
   max-width: 782px;
 }

 .wp-tutorial-slider{
   position: relative;
 }
 
 .wp-tutorial-slider .item {
   display: flex;
   align-items: stretch;
 }
 
 .wp-tutorial-slider .card {
   display: flex;
   flex-direction: column;
   border: 2px solid #666666;
   background: #000000;
   position: relative;
   width: 100%;
   max-width: 416px;
 }
 
 .wp-tutorial-slider .wp-card-img {
   width: 100%; 
   height: 200px;
   border-radius: 4px 4px 0 0;
   position: relative;
   overflow: hidden;
   transition: all 0.5s ease;
 }

 .wp-tutorial-slider .wp-card-img:hover .card-img-top{
   transform: scale(1.2);
 }
 
 .wp-tutorial-slider .wp-card-img .card-img-top {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.5s ease;
 }
 
 .wp-tutorial-slider .card-body {
   padding: 0 20px;
   flex: 1;
   max-width: 324px;
 }
 
 .wp-tutorial-slider .card-body h3 {
   font-family: Inter;
   font-size: 20px;
   font-weight: 700;
   line-height: 25px;
   text-align: left;
   margin: 33px 0 23px 0;
   color: #FFFFFF;
 }
 
 .wp-tutorial-slider .card-body .wp-tutorial-content p,  .wp-tutorial-slider .card-body .wp-tutorial-content p a {
   font-family: Roboto;
   font-size: 15px;
   font-weight: 500;
   line-height: 21px;
   letter-spacing: 0.01em;
   text-align: left;
   color: #FFFFFF;
   margin-bottom: 80px;
 }

 .wp-tutorial-slider .card-body .wp-tutorial-content p a{
   font-weight: 600;
 }
 
 .wp-tutorial-slider a.card-arrow {
   position: absolute;
   bottom: 31px;
   right: 25px;
   width: 50px;
   height: 50px;
   border-radius: 120px;
   border: 1px solid #F2F2F2B2;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.5s ease;
   overflow: hidden;
}

.card-arrow::before {
   opacity: 0;
   transform: translate(-100%, -50%);
}

.card-arrow::before,
.card-arrow::after {
   content: "";
   display: block;
   position: absolute;
   top: 50%;
   transform: translate(0%, -50%);
   transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
   width: 25px;
   height: 25px;
   background-image: url(../images/white-arrow.png);
   background-repeat: no-repeat;
   background-position: center;
}

.wp-tutorial-slider a.card-arrow span {
   width: 100%;
   text-align: justify;
   color: #fff;
   display: none;
   transition: all 0.5s ease;
   font-family: Roboto;
   font-size: 15px;
   font-weight: 500;
   line-height: 21px;
   letter-spacing: 0.01em;
}

.wp-tutorial-slider a.card-arrow:hover {
   width: 50%;
   padding-left: 20px; 
   background-color: #FEBB13;
   right: 25px;
   
}

.wp-tutorial-slider a.card-arrow:hover span {
   display: block;
   color: #000;
}

.wp-tutorial-slider a.card-arrow:hover::before {
   opacity: 1;
   transform: translate(200%, -50%);
   background-image: url(../images/black-arrow.png); /* Update this to the new arrow image path */
}






 
 .wp-tutorial-slider a img{
   position: relative;
 }

 .wp-tutorial-slider a img::before{
   position: absolute;
   top: 0;
   left: 0;
   content: '';
   width: 100%;
   height: 100%;
   background: url(../images/black-arrow.png);
 }

 .wp-tutorial-slider.owl-theme .owl-nav{
   position: absolute;
   display: flex;
   right: 17%;
   bottom: -100px;
   align-items: center;
   gap: 5px;
 }

 .wp-tutorial-slider.owl-theme .owl-nav .owl-prev,  .wp-tutorial-slider.owl-theme .owl-nav .owl-next{
   width: 68px;
   height: 48px;
   border: 1.3px solid #FFDC7F;
   border-radius: 25px;
 }

 .wp-tutorial-slider.owl-theme .owl-nav [class*=owl-]:hover{
   background: unset;
 }

 .btn-check:focus+.btn, .btn:focus{
   box-shadow: unset;
 }

 .wp-tutorial-slider::before {
   width: 0; 
   height: 24px;
   background: #EDD9F3;
   position: absolute;
   content: '';
   bottom: -90px;
   left: -580px; 
   transition: width 2s; 
}

.wp-tutorial-slider.animate::before {
   width: 100%; 
}




 
/* 
 <!-- brand-logo-slider-section-stat --> */

 /* .brand-logo-slider{
   margin-top: 30px;
} */

.brand-logo-sec{
   width: 100%;
   background: #fff;
   padding: 55px 0 45px 0;
}

.brand-logo-info{
   max-width: 1308px;
   margin: auto;
   width: 100%;
}

.brand-logo-slide{
   position: relative;
}

 .brand-logo-slide::before{
   content: '';
   position: absolute;
   left: 0px;
   top: 0;
   background: linear-gradient(90deg, #ffff 43.25%, rgba(228, 246, 244, 0.00) 100%);
   width: 100px;
   height: 100%;
   z-index: 9;
}

 .brand-logo-slide::after{
   content: '';
   position: absolute;
   right: 0px;
   top: 0;
   background: linear-gradient(-90deg, #ffff 43.25%, rgba(228, 246, 244, 0.00) 100%);
   width: 100px;
   height:100%;
   z-index: 9;
}


/* 
<!-- SEO Agency-section-stat --> */

.seo-agency-sec{
   background: #FEBB13;
   padding: 80px 0 180px 0;
   position: relative;
   overflow: hidden;
}

.seo-agency-info{
   max-width: 1308px;
   margin: auto;
   width: 100%;
   /* overflow: hidden; */
}

.seo-agency-info h2{
   font-family: EB Garamond;
   font-size: 48px;
   font-weight: 500;
   line-height: 52px;
   text-align: left;
   max-width: 570px;
   margin-bottom: 45px;
   color: #333333;
}

.seo-agency-left{
   width: 100%;
   overflow: hidden;
   height: 100%;
   border-radius: 30px 0px  0px 30px;
  
}

.seo-agency-left img{
   width: 100%;
   position: relative;
   object-fit: cover;
   transition: all 0.5s ease;
   height: 100%;
}

.seo-agency-left img:hover{
   transform: scale(1.1);
}

.seo-agency-right{
   background-color: #fff;
   border-radius: 0px 30px 30px 0px;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   position: relative;
   /* padding-left: 81px; */
}

.seo-agency-right span{
   font-family: Roboto;
   font-size: 24px;
   font-weight: 500;
   line-height: 33.98px;
   text-align: center;
   color: #333333;
   border: 1px solid #C8C7C7;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: absolute;
   top: 30px;
   left: 30px;
}

.seo-agency-right .seo-agency-right-txt{
   max-width: 390px;
   margin: auto;
   width: 100%;
}

.seo-agency-right .seo-agency-right-txt h3{
   font-family: Inter;
   font-size: 17px;
   font-weight: 600;
   line-height: 27px;
   letter-spacing: 0.01em;
   text-align: left;
   color: #F86202;
   margin-bottom: 11px;
   margin-top: 22px;
}

.seo-agency-right .seo-agency-right-txt h4{
   font-family: Roboto;
   font-size: 25px;
   font-weight: 700;
   line-height: 29.3px;
   letter-spacing: 0.01em;
   text-align: left; 
   color: #333333;
   margin-bottom: 16px;

}

.seo-agency-right .seo-agency-right-txt p{
   font-family: Roboto;
   font-size: 16px;
   font-weight: 500;
   line-height: 27px;
   text-align: left;
   color: #333333E5;
   margin-bottom: 20px;
}

.seo-agency-right .seo-agency-right-txt a{
   font-family: Roboto;
   font-size: 18px;
   font-weight: 600;
   line-height: 21.09px;
   text-align: center;
   background: #333333;
   width: 336px;
   height: 52px;
   display: flex;
   align-items: center;
   padding: 0 50px;
   color: #ffff;
   border-radius: 40px;
   text-decoration: none; 
   transition: all 0.5s ease; 
}

/* .seo-agency-right .seo-agency-right-txt a:hover{
   background-color: #FEBB13;
   color: #000;
} */

.seo-agency-right .seo-agency-right-txt a img{
   padding-left: 20px;
   width: 100%;
   max-width: 42px;
   transition: transform 0.5s ease-in-out; 
}

/* .seo-agency-right .seo-agency-right-txt a:hover img {
   transform: translateY(-3px); 
} */


.seo-agency-sec::before {
   content: '';
   width: 426px;
   height:100%;
   position: absolute;
   right: -180px;
   top: -10%;
   z-index: 9;
   background: url(../images/angle-shapes-left.png) no-repeat;
}

.agency-slider{
   position: relative;
}

.agency-slider.owl-theme .owl-nav{
   position: absolute;
   display: flex;
   right: 0;
   bottom: -103px;
   align-items: center;
   gap: 5px;
 }

 .agency-slider.owl-theme .owl-nav .owl-prev,  .agency-slider.owl-theme .owl-nav .owl-next{
   width: 68px;
   height: 48px;
   border: 1.3px solid #805D00;
   border-radius: 25px;
 }

 .agency-slider.owl-theme .owl-nav [class*=owl-]:hover{
   background: unset;
 }

 .btn-check:focus+.btn, .btn:focus{
   box-shadow: unset;
 }

 .agency-slider::before{
   width: 100%;
   height: 24px;
   background: #F86202;
   position: absolute;
   content: '';
   bottom: -90px;
   left: -330px;
 }

  .agency-slider::before {
   width: 0; 
   height: 24px;
   background: #F86202;
   position: absolute;
   content: '';
   bottom: -90px;
   left: -330px;
   transition: width 2s; 
}

 .agency-slider.animate::before {
   width: 100%; 
}



 
/* 
 <!-- Our Clients-review--section-stat --> */

 .client-review-sec{
   background: linear-gradient(180deg, #F2F2F2 0%, #FFF 80%);
   padding: 63px 0 346px 0;
   width: 100%;
 }

 .clients-review{
   max-width: 1308px;
   margin: auto;
   width: 100%;
 }

 .clients-review-txt h6{
   color: #F86202;
   font-family: Roboto;
   font-size: 18px;
   font-weight: 500;
   line-height: 27px;
   letter-spacing: 0.01em;
   text-align: left;
 }

 .clients-review-txt{
   margin-bottom: 54px;
   display: flex;
   justify-content: space-between;
 }

 .clients-review-txt h2{
   color: #333333;
   font-family: EB Garamond;
   font-size: 48px;
   font-weight: 400;
   line-height: 48px;
   text-align: left;   
 }

 .clients-review-box{
   border-radius: 30px;
   border: 1px solid #464545;
   background: #FFFFFF;
   max-width: 416px;
   height: 386px;
   position: relative;
   padding: 42px 44px 44px 44px;
 }

 .bg-photo{
   position: absolute;
   right: 0;
   bottom: 0;
   max-width: 160px;
   height: 130px;
 }

 .more {display: none;}

 .clients-review-content{
   max-width: 312px;
   width: 100%;
   margin: 29px 0 41px 0;
 }

 .clients-review-content p, .clients-review-content a{
   color: #333333;
   font-family: Roboto;
   font-size: 18px;
   font-weight: 400;
   line-height: 28px;
   letter-spacing: 0.03em;
   text-align: left;
 }

 .clients-review-content a{
   text-decoration-line: underline;
 }

 .clients-details{
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .clients-review-box.expanded {
   height: auto;
}

.clients-details .clients-details-left h4{
   color: #333333;
   font-family: Inter;
   font-size: 20px;
   font-weight: 600;
   line-height: 23px;
   text-align: left;

}

.clients-details .clients-details-left p{
   color: #333333;
   font-family: Roboto;
   font-size: 14px;
   font-weight: 400;
   line-height: 23px;
   letter-spacing: 0.02em;
   text-align: left;

}

.clients-details-right{
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.clients-details-right img{
   max-width: 98px;
}

.clients-details-right img.quotes{
   max-width: 65px;
   height: 36px;
}

.client-review.owl-carousel .owl-dots{
   display: block;
}

.client-review.owl-theme .owl-dots .owl-dot span{
   margin: 5px 3px;
   border: 1.3px solid #666666;
   background-color: transparent;
}

.client-review.owl-theme .owl-dots .owl-dot.active span{
   width: 15px;
   background: #FEBB13;
   border: 0;
}

.client-review{
   position: relative;
}

.client-review.owl-theme .owl-dots {
   position: absolute;
   left: 50%;
   transform: translateY(-50%);
   bottom: -65px;
}



/* 
<!--footer-section-stat --> */

.footer-sec{
   background: #000;
   position: relative;
   width: 100%;
}

.footer-info{
   max-width: 1308px;
   width: 100%;
   margin: auto;
   color: #fff;
}

.footer-professional-sec{
   position: absolute;
    background-color: #fff;
    color: #000;
    /* height: 354px; */
    max-width: 1605px;
    top: -222px;
    padding: 53px 0 83px 0;
    right: 0;
    width: 100%;
    z-index: 9;
}

.footer-professional-sec::before{
   content: '';
   width: 100%;
   max-width: 1308px;
   height: 1px;
   background-color: #F2F2F2;
   position: absolute;
   top: 0;
   left: 0;
}

.footer-professional-sec h6{
   font-family: EB Garamond;
   font-size: 32px;
   font-weight: 400;
   line-height: 41.76px;
   letter-spacing: 0.01em;
   color: #000000;
   max-width: 1161px;
   padding-left: 222px;
   text-align: center;
}

.footer-professional-sec a{
background: linear-gradient(90deg, #F9BC19 0%, #F86202 100%);
font-family: Roboto;
font-size: 20px;
font-weight: 500;
line-height: 23.44px;
border-radius: 40px;
color: #FFFFFF;
max-width: 320px;
height: 52px;
display: inline-block;
margin-top: 41px;
margin-left: 530px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.5s ease;
}

.footer-professional-sec a:hover{
   background: transparent;
   border: 1px solid #000;
   color: #000;
}


.footer-text{
padding: 140px 0 38px 0;
position: relative;
overflow: hidden;
}

.footer-text .footer-box1 img{
   max-width: 60px;
   height: 60px;
   margin-bottom: 32px;
}

.footer-text .footer-box1 p{
   font-family: Roboto;
   font-size: 16px;
   font-weight: 500;
   line-height: 25px;
   text-align: left;
   color: #C8C7C7;
   max-width: 305px;

}

.footer-text .footer-box2{
   display: flex;
   flex-direction: column;
}

.footer-text .footer-box2 h5{
   font-family: EB Garamond;
   font-size: 20px;
   font-weight: 400;
   line-height: 37px;
   letter-spacing: 0.02em;
   text-align: left; 
   color: #FFFFFF80;
}

.footer-text .footer-box2 a{
   font-family: Roboto;
   font-size: 15px;
   font-weight: 500;
   line-height: 37px;
   letter-spacing: 0.02em;
   text-align: left;
   margin-bottom: 5px;
   color: #D2D2D2;
   transition: all 0.5s ease;
}

.footer-text .footer-box2 a:hover, .footer-box3 a:hover{
   color: #FEBB13;
   text-decoration: underline;
}

.footer-contact{
   display: flex;
   align-items: center;
   gap: 10px;
   border-radius: 60px;
   border: 1px solid #fff;
   width: 334px;
   height: 80px;
   justify-content: center;
}

.footer-contact a{
   color: none !important;
    text-decoration: none !important;
}

.footer-contact-nb h6{
   color: #fff;
   font-family: Inter;
   font-size: 32px;
   font-style: normal;
   font-weight: 700;
   line-height: 22px; /* 68.75% */
   letter-spacing: 0.32px;
}

.footer-contact-nb p{
   color: #FEBB13;
   font-family: Roboto;
   font-size: 12px;
   font-weight: 500;
   line-height: 21px;
   letter-spacing: 0.02em;
   text-align: left;   
   margin-top: 10px;
}

.footer-box3{
   display: flex;
   flex-direction: column;
   align-items: center;
}

.footer-media {
   margin-top: 29px;
   text-align: center;
}

.footer-media a{
   font-family: Roboto;
   font-size: 16px;
   font-weight: 400;
   line-height: 21px;
   letter-spacing: 0.02em;
   text-align: left;
   color: #FFFFFF;
   transition: all 0.5s ease;
}

.footer-media-icon{
   margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-media-icon i{
   width: 38px;
   height: 38px;
   border: 1px solid #F2F2F24D;
   border-radius: 50%;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: row;
   cursor: pointer;
   transition: all 0.5s ease;
}

.footer-media-icon i:hover{
   background: #FEBB13;
}

.footer-sec::before{
   content: '';
   position: absolute;
   background: url(../images/footer-angle-shape.png);
   background-repeat: no-repeat;
   width: 496px;
   height: 100%;
   left: -325px;
}

/* .footer-sec::after{
   content: '';
   position: absolute;
   background: url(../images/footer-angle-shape-right.png);
   background-repeat: no-repeat;
   width: 496px;
   height: 419px;
   right: -280px;
   top: 90px;
} */



.footer-review-content{
   display: flex;
   border: 1px dashed #FFEEBF80;
   align-items: center;
   padding: 29px 0;
   gap: 15px;
   flex-wrap: wrap;
   max-width: fit-content;
   border-radius: 15px;
   padding: 17px 37px;
   margin-bottom: 96px;
}

.footer-review-content .star-icons{
   Width:130px;
   Height:24px;

}

.footer-review-content span.line{
   Width:2px;
   Height:20px;
   background-color: #fff;
}

.footer-review-content h6{
   font-family: Roboto;
   font-size: 22px;
   font-weight: 600;
   line-height: 26px;
   letter-spacing: 0.02em;
   text-align: left;
   color: #fff;
}  

.footer-review-content p{
   font-family: Roboto;
   font-size: 14px;
   font-weight: 600;
   line-height: 26px;
   letter-spacing: 0.02em;
   text-align: left;
   color: #fff;
}

.footer-review-content p.rating-sec{
   font-weight: 500;
}

.footer-review-content p.rating-sec span{
   color: #00B67A;
}


.footer-copyright{
   background: #F2F2F2;
   padding: 13px 0;
   text-align: center;
}

.footer-copyright p{
   color: #000;
   font-family: Roboto;
   font-size: 13px;
   font-style: normal;
   font-weight: 300;
   line-height: normal;
   text-transform: capitalize;
}


/* 
.read-case-study-link {
   position: relative;
 }
 
 .read-case-study-link::before,
 .read-case-study-link::after {
   content: ""; 
   display: block;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translate(0%, -50%);
   transition: all 0.2s cubic-bezier(0.25, 0.25, 0.08, 1.08);
   width: 25px; 
   height: 25px; 
   background-image: url('../images/single-arrow.png'); 
   background-repeat: no-repeat;
   background-position: center;
 }

 
 .read-case-study-link::before {
   opacity: 0;
   transform: translate(-100%, -50%);
 }
 
 .read-case-study-link:hover::before {
   opacity: 1;
   transform: translate(0, -50%);
 }
 
 .read-case-study-link:hover::after {
   opacity: 0;
   transform: translate(100%, -50%);
 } */



 .card-arrow {

   position: relative;
 
 }
 
 .card-arrow::before,
 .card-arrow::after {
   content: ""; 
   display: block;
   position: absolute;
   top: 50%;
   /* right: 25px; */
   transform: translate(0%, -50%);
   transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
   width: 25px; 
   height: 25px; 
   background-image: url('../images/white-arrow.png'); 
   background-repeat: no-repeat;
   background-position: center;
 }
 
 .card-arrow.font-reg::before,
 .card-arrow.font-reg::after {
   font-weight: 300;
 }
 
 .card-arrow::before {
   opacity: 0;
   transform: translate(-100%, -50%);
 }
 
 .card-arrow:hover::before {
   opacity: 1;
   transform: translate(0, -50%);
 }
 
 .card-arrow:hover::after {
   opacity: 0;
   transform: translate(100%, -50%);
 }


 

 .wp-tutorial-slider .owl-next, .agency-slider .owl-next, .case-slider .owl-next, .seo-agency-right-txt a, .btn-casestudy{
   position: relative;
 
 }
 
.wp-tutorial-slider .owl-next::before,
.wp-tutorial-slider .owl-next::after,  .agency-slider .owl-next::before,
.agency-slider .owl-next::after,  .case-slider .owl-next::before,
.case-slider .owl-next::after, .seo-agency-right-txt a::before, .seo-agency-right-txt a::after, .btn-casestudy::before, .btn-casestudy::after{
    content: ""; 
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0%, -50%);
    transition: all 0.2s cubic-bezier(0.25, 0.25, 0.08, 1.08);
    width: 25px; 
    height: 25px; 
    background-image: url('../images/slide-right-arrow.png'); 
    background-repeat: no-repeat;
    background-position: center;
}
 
 .wp-tutorial-slider .owl-next::before,  .agency-slider .owl-next::before,  .case-slider .owl-next::before, .seo-agency-right-txt a::before, .btn-casestudy::before{
   opacity: 0;
   transform: translate(-100%, -50%);
 }
 
 .wp-tutorial-slider .owl-next:hover::before,  .agency-slider .owl-next:hover::before,  .case-slider .owl-next:hover::before, .seo-agency-right-txt a:hover::before, .btn-casestudy:hover::before {
   opacity: 1;
   transform: translate(0, -50%);
 }
 
 .wp-tutorial-slider .owl-next:hover::after,  .agency-slider .owl-next:hover::after,  .case-slider .owl-next:hover::after, .seo-agency-right-txt a:hover::after, .btn-casestudy:hover::after  {
   opacity: 0;
   transform: translate(100%, -50%);
 }

 .owl-nav button span {
   display: none;
}

 
 .agency-slider .owl-next::before,
.agency-slider .owl-next::after,  
.case-slider .owl-next::before,
.case-slider .owl-next::after,
.btn-casestudy::before, .btn-casestudy::after{
    background-image: url('../images/single-arrow.png'); 
} 
 
.seo-agency-right-txt a::before, .seo-agency-right-txt a::after{
   background-image: url('../images/white-arrow1.png'); 
}


