/*
 Theme Name:   Hello Elementor Child
 Theme URI:    http://example.com/hello-elementor-child
 Description:  Hello Elementor Child Theme
 Author:       Your Name
 Author URI:   http://example.com
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Importing the parent theme style.css */
@import url("../hello-elementor/style.css");

:root {
  --color1: #FE9C03;
  --color2: #f3c985;
  --color3: #292c2d;
  --color4: #fff;
}

/* Custom CSS can go here */

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1240px !important;
  }
}
label {
  width: 100%;
}


/* my css start */

.button-animation .elementor-button {
    position: relative;
    overflow: hidden;
    transition: all 0.45s ease;
    transform: translateY(0) scale(1);
}

.button-animation .elementor-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60px;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(25deg);
    transition: all 0.8s ease;
}

.button-animation .elementor-button:hover::before {
    left: 130%;
}

.button-animation .elementor-button:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.button-animation .elementor-button-content-wrapper {
    position: relative;
    z-index: 2;
}


.underline-text .elementor-heading-title{
    position: relative;
    display: inline-block;
}

.underline-text .elementor-heading-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50%;
    height: 2px;
    background: currentColor;
}


.section-one{
    position: relative;
    overflow: hidden;
    transition: all 0.45s ease;
    transform: translateY(0);
    cursor: pointer;
}

.section-one::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60px;
    height: 200%;
    background: rgba(255,255,255,0.5);
    transform: rotate(25deg);
    transition: all 1s ease;
    z-index: 1;
}

.section-one:hover::before{
    left: 130%;
}

.section-one:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.section-one .elementor-widget{
    position: relative;
    z-index: 2;
}


.section-hover {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all .45s cubic-bezier(.165, .84, .44, 1);
    border: 1px solid #eee;

}

.section-hover::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(201,169,110,0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease;
    z-index: 1;
    pointer-events: none;
}

.section-hover:hover::after {
    width: 600px;
    height: 600px;
}

.section-hover:hover {
    transform: translateY(-10px);
    border-color: #c9a96e;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.section-hover img {
    transition: all .6s ease;
}

.section-hover h2 {
    transition: all .4s ease;
}

.section-hover .elementor-button {
    opacity: 1;
    transition: all .4s ease;
}
.elementor-button-icon svg {
    height: auto;
    width: 12px;
}

.about-why-bus{
    position: relative;
    overflow: hidden;
    transition: all .45s ease;

}

.about-why-bus::before{
    content:'';
    position:absolute;
    background:linear-gradient(
        135deg,
        rgba(254,156,3,.08),
        transparent
    );
    opacity:0;
    transition:.4s ease;
}

.about-why-bus:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-why-bus:hover::before{
    opacity:1;
}

.about-why-bus .elementor-icon{
    transition:all .5s ease;
}

.about-why-bus:hover .elementor-icon{
    transform:rotateY(180deg) scale(1.15);
}

.about-why-bus .elementor-icon-box-title{
    transition:.3s ease;
}


.doted-line{
    position: relative;
}

.doted-line::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    border-top: 2px dashed #FE9C03;
    z-index: 0;
}

.doted-line::after{
    display: none;
}

.doted-line .about-why-bus{
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 20px;
}

.wpcf7-spinner {
  position: absolute !important;
}

.recapcha{
  scale: 0.8 !important;
  transform-origin: left !important;
}

/* my css end */


/* home banner css start */

.hero-banner .carousel-caption {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: inherit;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  text-align: left !important;
  transform: translate(0%, -50%);
}
.hero-banner .carousel-caption h3 {
  font: normal normal normal 52px/62px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
}
.arrow-control-slider {
  display: flex;
}
.arrow-control-slider span {
  background-color: var(--color1);
  padding: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-right: 5px;
}
.arrow-control-slider span:hover {
  background-color: var(--color2);
}

.arrow-control-slider .control-prev {
  border-radius: 5px;
}
.arrow-control-slider .control-next {
  border-radius: 5px;
}
.arrow-control-bottom {
  display: flex;
  position: absolute;
  bottom: 15%;
  left: 0;
  z-index: 9;
  width: 100%;
}

.hero-banner .indicators-num {
  display: flex;
  position: absolute;
  bottom: 5%;
  left: 0;
  z-index: 9;
  width: 100%;
}
.hero-banner  .carousel-indicator {
  display: flex;
}
.hero-banner  .carousel-indicator span {
color: #fff;
}
.hero-banner  .carousel-indicator button  {
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0;
  border: 0 !important;
  margin-right: 8px;
}
.hero-banner  .carousel-indicator button .budge {
  background: #eee !important;
  opacity: 1 !important;
  padding: 3px 15px 3px 15px !important;
  border: 0 !important;
  border-radius: 0;
  width: 30px !important;
  height: 10px !important;
  display: inline-block;
}
.hero-banner .carousel-indicator button.active .budge {
  background: var(--color1) !important;
}
.hero-banner  .carousel-indicator button .number {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.hero-banner .carousel-indicator button.active .number {
  color: var(--color1) !important;
}

/* home banner css end */

/* pagination style one css start  */
.pagination-style-one {
  display: inline-flex;
  justify-content: center;
}
.pagination-style-one .page-numbers.current {
  font-weight: 700 !important;
  color: #FE9C03 !important;
}
.pagination-style-one .page-numbers {
  font: normal normal 700 16px / 22px DM Sans !important;
  letter-spacing: 0px;
  color: #292c2d !important;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 8px;
  text-decoration: none !important;
  width: 25px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}
/* pagination style one css start  */

/* Blog css start */


/* blog start */

.home-blog .blog-page a.read-more-btn.elementor-button {
  padding: 0 !important;
  color: #222 !important;
  background-color: transparent !important;
  font-weight: 700;
}

.home-blog .blog-page a.read-more-btn.elementor-button:hover {
  padding: 0 !important;
  color: #FE9C03 !important;
  background-color: transparent !important;
  font-weight: 700;
}
.home-blog .blog-page .blog-content h3{
  margin-bottom: 0 !important;
}


.blog-page .blog-post-card {
  border: solid 1px #a7a7a7 !important;
  border-radius: 20px !important;
  background-color: #f2f9ff !important;
}
.blog-page .blog-post-card img {
  border-radius: 20px 20px 0px 0px !important;
}

.blog-page .blog-content {
  padding: 0px 20px 30px 20px !important;
}

.blog-page .blog-para{
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.6;
    max-height: calc(1.3em * 5);
}

.blog-page .blog-content h2 {
  font: normal normal 600 18px/26px DM Sans !important;
  color: #2e2e2e !important;
  margin-bottom: 10px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;   
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
}
.blog-page .blog-content h3 {
  font: normal normal 600 18px/26px DM Sans !important;
  color: #2e2e2e !important;
  margin-bottom: 10px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;   
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
}

.blog-page .blog-content .blog-para {
  font: normal normal normal 14px/20px DM Sans !important;
  color: #2e2e2e !important;
  /* height: 240px !important; */
}

.blog-single-post .blog-para ul,
.blog-single-post .blog-para li,
.blog-single-post .blog-para p{
  font: normal normal normal 15px/20px DM Sans !important;
}
.blog-page .date {
  display: none !important;
}

.blog-page .date {
  background-color: #FE9C03;
  padding: 8px 12px;
  border-radius: 8px 0 0 8px;
  width: fit-content;
  margin-top: -20px;
  position: relative;

}
.blog-page .blog-date {
  justify-items: end;
}
.blog-page .blog-date {
  display: flex;
  justify-content: flex-end;
}
.blog-page span.month {
  font: normal normal bold 16px DM Sans;
  color: #fcfcfc !important;
}

.blog-page a.read-more-btn.elementor-button {
  padding: 0 !important;
  color: #222 !important;
  background-color: transparent !important;
  font-weight: 700;
	margin-top: 10px !important;
}

.blog-page a.read-more-btn.elementor-button:hover {
  padding: 0 !important;
  color: #FE9C03 !important;
  background-color: transparent !important;
  font-weight: 700;
}

.blog-page .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-page .read-more-btn::after {
  content: "\e8c0";
  font-family: "eicons";
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 1;
  margin-top: 3px !important;
}

.blog-page .read-more-btn:hover::after {
  color: #FE9C03 !important;
}

a.page-numbers,
span.page-numbers.current {
  padding-right: 10px;
	font-family: "DM Sans", Sans-serif;
}

span.page-numbers.current {
	text-decoration: underline !important;
	color: #FE9C03 !important;
}

a.page-numbers{
	color: #222 !important;
}

.eicon-chevron-left:before,
.eicon-chevron-right:before{
	color:#FE9C03 !important;
}
.blog-inner .eicon-chevron-left:before,
.blog-inner .eicon-chevron-right:before{
	color: #222 !important;
  font-size: 12px !important;
}

/* blog end */

/* blog inner start */

.blog-sidebar{
  position: sticky;
  top: 20px !important;
  border: solid 2px #FE9C03 !important;
  border-radius: 10px !important;
  padding: 20px;
}

/* breadcrumb start*/
.blog-inner .blog-baner {
  padding: 0 !important;
  margin: 0 !important;
}

.blog-inner .blog-baner {
  position: relative;
  /* background-image: url(https://nidanpathologylab.com/wp-content/uploads/2026/03/african-american-patient-discussing-with-therapist-doctor-online-videocall-meeting-1.jpg) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important; */
  background-color: #fff9f0;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  border-bottom: solid 1px #FE9C03 !important;
  z-index: 1;
  
}

.blog-inner .blog-baner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.blog-inner .blog-baner > * {
  position: relative;
  z-index: 2;
}

.blog-inner .banner-title h1 {
  font: normal normal 600 24px/60px DM Sans;
  color: #fff !important;
  text-align: start !important;
}

.blog-inner .blog-breadcrumb a,
.blog-breadcrumb {
  font: normal normal 500 15px / 20px DM Sans;
  letter-spacing: 0px;
  color: #222;
}

.blog-inner .blog-breadcrumb {
  color: #FE9C03;
  text-align: left;
}
.blog-inner .blog-breadcrumb i {
  color: #fff !important;
}
/* breadcrumb end*/

.blog-inner .blog-featured-img img {
  border-radius: 20px !important;
}

.blog-inner .blog-inner-content {
  padding: 60px 10px 60px 10px !important;
}

.blog-inner span.date {
  background-color: #FE9C03 !important;
  color: #fff !important;
  padding: 10px !important;
  border-radius: 8px;
  font: normal normal bold 16px/60px DM Sans;
}

.blog-inner .blog-title {
  font: normal normal bold 38px/45px DM Sans;
}

.blog-inner .blog-sidebar h4.widget-title {
  font: normal normal bold 25px DM Sans;
  border-bottom: solid 2px #FE9C03 !important;
  padding-bottom: 20px !important;
}

.blog-inner .recent-post-link img {
  height: 80px;
  object-fit: cover !important;
  border-radius: 10px !important;
}

.blog-inner .recent-info h6 {
  font: normal normal 600 15px DM Sans;
  margin: 5px 0px !important;
  color: #222;
}

.blog-inner .recent-post-item:hover h6 {
  color: #FE9C03;
}
.blog-inner .recent-info span {
  font: normal normal 400 14px DM Sans;
  color: #222;
}


.blog-inner-content .blog-para h1{
	font-size: 30px !important;
  font-family: "DM Sans", Sans-serif;
  padding-top: 20px !important;
  color: #FE9C03 !important;
}
.blog-inner-content .blog-para h2{
	font-size: 28px !important;
  font-family: "DM Sans", Sans-serif;
  padding-top: 20px !important;
  color: #FE9C03 !important;
}
.blog-inner-content .blog-para h3{
	font-size: 25px !important;
  font-family: "DM Sans", Sans-serif;
  padding-top: 20px !important;
  color: #FE9C03 !important;
}
.blog-inner-content .blog-para h4{
	font-size: 22px !important;
  font-family: "DM Sans", Sans-serif;
  padding-top: 20px !important;
  color: #FE9C03 !important;
}
.blog-inner-content .blog-para h5{
	font-size: 18px !important;
  font-family: "DM Sans", Sans-serif;
  padding-top: 20px !important;
  color: #FE9C03 !important;
}
.blog-inner-content .blog-para h6{
	font-size: 16px !important;
  font-family: "DM Sans", Sans-serif;
  padding-top: 20px !important;
  color: #FE9C03 !important;
}

/* blog inner end */


/* blog css end */
/* testimonials css start */

/* testimonials box one  css start */

.testimonials-box-one{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all .45s ease;
    background: #fff;
}

.testimonials-box-one::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:160px;
    height:160px;
    border-radius:50%;
    background: #fef0c6;
    transform:scale(0);
    transition:.6s ease;
}

.testimonials-box-one:hover::before{
    transform:scale(3);
}

.testimonials-box-one > *{
    position:relative;
    z-index:2;
}



.testimonials-slider-one {
  margin: 0 -15px;
}
.testimonials-box-one {
  border: 1px solid #FE9C03;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: start;
  margin-top: 0px;
  height: 100%;
  position: relative;
}

.testimonials-box-one .img-wrap {
  position: relative;
  margin-top: 0px;
  border-bottom: 1px solid #5a453e26;
  margin-bottom: 20px;
}

.testimonials-box-one .img-wrap img {
  height: 80px;
  width: max-content !important;
  margin: 0px auto;
  padding-bottom: 20px;
  object-fit: cover !important;
}
.testimonials-box-one .title,
.testimonials-box-one-popup .title {
  font: normal normal bold 16px / 24px DM Sans;
  letter-spacing: 0px;
  color: #FE9C03;
  margin-bottom: 2px;
  margin-top: 5px;
}
.testimonials-box-one .position {
  font: normal normal 500 13px/20px DM Sans;
  letter-spacing: 0px;
  color: #191919;
}
.testimonials-box-one .quate-img img {
  width: 25px;
  margin: 0 auto;
}
.testimonials-box-one .rating-area {
  color: #ffc107;
  font-size: 20px;
  margin-top: 24px;
}
.testimonials-box-one .content-box {
  height: 130px;
}
.testimonials-box-one .read-more {
  font: normal normal bold 14px / 20px DM Sans;
  letter-spacing: 0px;
  color: #FE9C03;
}
.testimonials-box-one .read-more:hover {
  color: #FE9C03;
}
.testimonials-box-one .view-more {
  font: normal normal 600 14px / 25px DM Sans;
  letter-spacing: 0px;
  color: #FE9C03;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.3px !important;
}
.testimonials-box-one .view-more:hover {
  color: #784e38;
}
.testimonials-box-one .content-box .description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font: normal normal normal 14px/20px DM Sans;
  letter-spacing: 0px;
  color: #191919;
}

.read-more-link {
  text-decoration: underline !important;
  font: normal normal 700 15px / 28px DM Sans;
  letter-spacing: 0px;
  color: #191919 !important;
}

/* testimonials box one  css end */

/* testimonials box two  css start */
.testimonials-box-two {
  background: #f9f9f9 0% 0% no-repeat padding-box;
  box-shadow: 2px 5px 10px #d9d6cd29;
  border-radius: 20px;
  padding: 25px;
}
.testimonials-box-two .testimonials-wrap,
.testimonials-box-two-slider .testimonials-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
}
.testimonials-box-two .content-box {
  font: normal normal 500 16px / 24px DM Sans;
  letter-spacing: 0px;
  color: #3a3a3a;
  margin-bottom: 30px;
}
.testimonials-box-two .content-box strong {
  color: #bfa74b;
  font-weight: 500 !important;
  font-style: italic;
}
.testimonials-box-two .testimonials-wrap .img-wrap img,
.testimonials-box-two-slider .testimonials-wrap .img-wrap img {
  width: 70px !important;
  min-width: 70px !important;
  height: 70px;
  border-radius: 50%;
  margin-right: 10px;
}
.testimonials-box-two .testimonials-wrap .title,
.testimonials-box-two-slider .testimonials-wrap .title {
  font: normal normal 600 16px / 24px DM Sans;
  letter-spacing: 0px;
  color: #000;
  margin: 0;
}
.testimonials-box-two .testimonials-wrap {
  color: #ffc107;
  font-size: 16px;
}

/* testimonials css start */

/* testimonials popup css start */
.model-testimonial .img-wrap img {
  margin: 0px auto;
  border-radius: 0%;
}
.model-testimonial button.btn-close {
  position: absolute;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  right: 15px;
  top: 15px;
  z-index: 9;
  opacity: 1;
  filter: none;
  padding: 0;
  width: 20px;
  box-shadow: none !important;
  outline: none;
}
.model-testimonial-certificate button.btn-close {
  position: absolute;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  right: -40px;
  top: -5px;
  z-index: 9;
  opacity: 1;
  filter: invert(1);
  padding: 0;
  width: 20px;
  box-shadow: none !important;
  outline: none;
}
@media only screen and (max-width: 991px) {
  .model-testimonial button.btn-close {
    right: 15px;
    top: 15px;
    filter: none;
  }
  .model-testimonial-certificate button.btn-close {
    right: 10px;
    top: 10px;
    z-index: 9;
    filter: none;
  }
}

.model-testimonial button.btn-close:hover,
.model-testimonial button.btn-close:focus,
.model-testimonial button.btn-close:focus-visible {
  filter: none;
}
.model-testimonial .modal-content {
  background: #f2ebdd;
  border-radius: 0px;
  padding: 40px;
}
.model-testimonial .testimonials-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid #5a453e;
  margin-bottom: 20px;
}
.model-testimonial .testimonials-wrap .img-wrap {
  margin-right: 0px;
  margin-bottom: 25px;
}
.model-testimonial .testimonials-wrap .img-wrap img {
  border-radius: 0%;
  height: 80px;
  width: max-content !important;
  object-fit: contain;
}
.model-testimonial .testimonial-text-full {
  font: normal normal normal 14px / 20px DM Sans;
  letter-spacing: 0px;
  color: #191919;
}
.model-testimonial .head-wrap .title {
  font: normal normal 600 16px / 24px DM Sans;
  letter-spacing: 0px;
  color: #000;
  margin: 0;
}
.model-testimonial .head-wrap .position {
  font: normal normal 500 14px / 20px DM Sans;
  letter-spacing: 0px;
  color: #191919;
}
.model-testimonial .rating {
  color: #ffc107;
  font-size: 14px;
}
.model-testimonial .view-more {
  font: normal normal 600 14px / 25px DM Sans;
  letter-spacing: 0px;
  color: #191919;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.3px !important;
}
.model-testimonial .view-more:hover {
  color: #784e38;
}
.modal-backdrop {
  background-color: #000 !important;
  opacity: 0.9 !important;
}

/* testimonials popup css end */

/* slick dots start  */

.arrowbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3a3a3a;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 99;
  color: #fff;
  cursor: pointer;
}
.arrowbtn:hover {
  background: var(--color2);
  color: #fff;
}
.left-btn {
  left: 0;
}
.right-btn {
  right: 0;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  list-style: none;
}
ul.slick-dots li {
  margin: 0 5px;
}
ul.slick-dots li button {
  padding: 5px;
  font-size: 0;
  border-radius: 50% !important;
  width: 10px;
  height: 10px !important;
  background-color: #cfcfcf;
  border-color: #cfcfcf;
}
ul.slick-dots li.slick-active button,
ul.slick-dots li button:hover {
  background-color: #FE9C03 !important;
  border-color: #FE9C03 !important;
}
/* slick dots end  */

/* download pdf start */

.download-box .img-box {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #bec0c5;
  border-radius: 20px;
  overflow: hidden;
}
.download-box .img-box img {
  transition: 0.3s ease all;
}
.download-box:hover .img-box img {
  scale: 1.1;
}
.download-box .text-box h4 {
  text-align: left;
  font: normal normal 500 20px/26px DM Sans;
  letter-spacing: 0px;
  color: var(--color1);
  opacity: 1;
}
.download-box .text-box .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-box .text-box .elementor-button img {
  filter: brightness(10);
}
.download-box .text-box .elementor-button:hover img {
  filter: inherit;
}

/* download pdf end */

/* other box one css start */

.other-box-one .img-wrap {
  position: relative;
  overflow: hidden;
}
.other-box-one .img-wrap img {
  transition: all 0.4s ease;
}
.other-box-one .img-wrap .btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
}
.other-box-one:hover .img-wrap .btn-center {
  opacity: 1;
}
.other-box-one:hover .img-wrap img {
  transform: scale(1.05);
}
.other-box-one .content-box .date {
  font: normal normal 600 13px / 18px DM Sans;
  letter-spacing: 1.6px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.other-box-one .content-box .title {
  font: normal normal 500 20px/28px DM Sans;
  letter-spacing: 0px;
  color: var(--color1);
  margin-bottom: 10px;
}
/* other box one css start */

/* filter css start */
ul#project-filter-list {
  display: flex;
  justify-content: center;
  margin-bottom: 40px !important;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
}
ul#project-filter-list li {
  margin: 0 10px;
}
ul#project-filter-list li .cats {
  font: normal normal bold 18px / 30px DM Sans;
  letter-spacing: 0px;
  color: #292c2d;
  padding: 5px 15px;
  text-decoration: none;
}
ul#project-filter-list li .cats.active {
  color: var(--color1);
}
/* filter css end */

/* portfolio css start  */

.portfolio-box {
  position: relative;
  z-index: 0;
}
.portfolio-box:before {
  content: "";
  background: transparent
    linear-gradient(180deg, #ffffff 0%, #e3e3e3 43%, #575757 60%, #000000 100%)
    0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  border-radius: 22px 155px 22px 22px;
  opacity: 0.75;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 0;
}

.portfolio-box .portfolio-wrap {
  transition: all 0.4s ease;
  border-radius: 22px 150px 22px 22px;
  transform: translateY(53px);
}
.portfolio-box .portfolio-effect {
  overflow: hidden;
}
.portfolio-box .portfolio-img img {
  border-radius: 22px 150px 22px 22px;
}
.portfolio-box:hover .portfolio-wrap {
  transition: all 0.4s ease;
  transform: translateY(0px);
}
.portfolio-info {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
}
.portfolio-info .title {
  font: normal normal normal 28px / 35px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.portfolio-info p {
  font: normal normal normal 14px/21px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-normal {
  display: flex !important;
  align-items: center !important;
  font: normal normal 700 16px / 20px DM Sans !important;
  letter-spacing: 0px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.4s ease;
}
.btn-normal svg {
  fill: #fff;
  margin-left: 10px;
  transition: all 0.4s ease;
  height: 14px !important;
}
.btn-normal:hover {
  color: var(--color1) !important;
}
.btn-normal:hover svg {
  fill: var(--color1) !important;
  transform: translateX(10px);
}
/* portfolio css end  */

.other-box-two {
  background: #fafafa 0% 0% no-repeat padding-box;
  border-radius: 20px;
}
.other-box-two .text-box {
  padding: 30px;
}
.other-box-two h4 {
  text-align: left;
  font: normal normal 600 24px / 34px DM Sans;
  letter-spacing: 0px;
  color: #101010;
  opacity: 1;
}
.other-box-two .videos-box video {
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  min-height: 240px;
  object-fit: cover;
}

button.close-top-right,
button.close-top-right:hover,
button.close-top-right:focus,
button.close-top-right:focus-visible {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: transparent;
  border: 0;
  filter: invert(1);
  opacity: 1;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  z-index: 9999;
}

@media only screen and (max-width: 768px) {
  h3.cat-color {
    font-size: 18px !important;
  }
  .sidebar-box {
    padding: 10px;
  }
  .blog-content h2 {
    font-size: 24px !important;
  }
  .read-more-btn {
    font-size: 14px !important;
    padding: 8px 20px !important;
    border-radius: 7px !important;
  }
  .article-detail {
    padding: 30px 0;
  }

  /* banner responsive css  start */
  .hero-banner .carousel-caption h3 {
    font-size: 24px;
    line-height: 30px;
  }
  /* banner responsive css  end */

  .arrowbtn {
    width: 30px;
    height: 30px;
  }

  ul#project-filter-list li .cats {
    font-size: 16px;
    padding: 5px 2px;
  }

  .portfolio-info .title {
    font-size: 18px;
    line-height: 23px;
  }

  .other-box-two h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .doted-line::before{
    display: none;
  }

  .doted-line::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 5%;
    height: 90%;
    border-left: 2px dashed #FE9C03;
    transform: translateX(-50%);
    z-index: 0;
  }

  .recapcha {
    transform-origin: center !important;
    display: flex;
    justify-content: center;
		margin: 15px 0px !important;
  }

  .text-end.sub-btn {
    text-align: center !important;
  }
  
}
