
.services-two {
   position: relative;
   display: block;
   padding: 70px 0 60px;
   z-index: 2;
}

.services-two__bg-color {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 57%;
   background-color: #000000;
   overflow: hidden;
   z-index: -1;
}

.services-two__shape-1 {
   position: absolute;
   top: 0;
   left: 0;
   opacity: .15;
   animation: leftRight 4s ease-in-out infinite;
   z-index: -1;
}

.services-two__shape-1 img {
   width: auto;
}
.services-two__shape-2 {
   position: absolute;
   top: 0;
   right: 0;
   opacity: .15;
   animation: leftRight 4s ease-in-out infinite;
   z-index: -1;
}

.services-two__shape-2 img {
   width: auto;
}
.services-two__carousel {
   position: relative;
   display: block;
}

.services-two__single {
   position: relative;
   display: block;
   background-color: var(--fixpro-white);
   box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
   padding: 30px 30px 32px;
   text-align: center;
   border-radius: var(--fixpro-bdr-radius);
}

.services-two__img-box {
   position: relative;
   display: block;
}

.services-two__img {
   position: relative;
   display: block;
   border-radius: var(--fixpro-bdr-radius);
   overflow: hidden;
   z-index: 1;
}

.services-two__img:before {
   /* content: ""; */
   /* position: absolute; */
   top: -100%;
   bottom: 100%;
   left: 0;
   right: 0;
   background-color: rgb(42 127 185 / 50%);
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   transition: all 600ms ease 100ms;
   z-index: 1;
}

.services-two__single:hover .services-two__img:before {
   top: 0;
   bottom: 0;
}

.services-two__img img {
   width: 100%;
   border-radius: var(--fixpro-bdr-radius);
   -webkit-transition: all 500ms ease;
   transition: all 500ms ease;
   height: 250px;
   object-fit: cover;
}

.services-two__single:hover .services-two__img img {
   transform: scale(1.05);
}

.services-two__content {
   position: relative;
   display: block;
   margin-top: 20px;
   margin-bottom: 15px;
}

.services-two__title {
   font-size: 24px;
   font-weight: 700;
   line-height: 34px;
}

.services-two__title a {
   color: var(--fixpro-black);
}

.services-two__title a:hover {
   color: var(--fixpro-base);
}

.services-two__hover-content {
   /* position: absolute; */
   top: 50%;
   left: 20px;
   right: 20px;
   text-align: center;
   /* transform: translateY(-50%); */
   -webkit-transition: all 900ms ease;
   transition: all 900ms ease;
   /* opacity: 0; */
   z-index: 2;
}

.services-two__single:hover .services-two__hover-content {
   opacity: 1;
   transition-delay: 400ms;
}

.services-two__hover-text {
   /* color: var(--fixpro-white); */
}

.services-two__btn-box {
   position: relative;
   display: block;
   margin-top: 15px;
}

.services-two__btn-box .thm-btn {
   padding: 14px 31px 15px;
   background-color: var(--fixpro-white);
   color: var(--fixpro-base);
   text-transform: capitalize;
   border: 1px solid var(--fixpro-base);
}

.services-two__icon {
   position: absolute;
   bottom: -25px;
   left: 50%;
   width: 60px;
   height: 60px;
   background-color: var(--fixpro-base);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   transform: translateX(-50%);
   -webkit-transition: all 500ms ease;
   transition: all 500ms ease;
   z-index: 2;
}

.services-two__single:hover .services-two__icon {
   background-color: var(--fixpro-black);
   transition-delay: 600ms;
}

.services-two__icon span {
   position: relative;
   display: inline-block;
   font-size: 40px;
   color: var(--fixpro-white);
}


.services-two__carousel.owl-carousel .owl-stage-outer {
   overflow: visible;
}

.services-two__carousel.owl-carousel .owl-item {
   opacity: 0;
   visibility: hidden;
   transition: opacity 500ms ease, visibility 500ms ease;
}

.services-two__carousel.owl-carousel .owl-item.active {
   opacity: 1;
   visibility: visible;
}
 

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
   position: relative;
   display: block;
   padding: 40px 0 40px;
   z-index: 1;
}

.service-details__left {
   position: relative;
   display: block;
}

.service-details__img {
   position: relative;
   display: block;
}

.service-details__img img {
   width: 100%;
   border-radius: var(--fixpro-bdr-radius);
}

.service-details__title-1 {
   font-size: 28px;
   font-weight: 700;
   line-height: 40px;
   /* margin-top: 41px; */
   margin-bottom: 20px;
}
 

.service-details__points-list {
   position: relative;
   display: block;
}

.service-details__points-list li {
   position: relative;
   display: flex;
   align-items: center;
   gap: 10px;
}

.service-details__points-list li+li {
   margin-top: 16px;
}

.service-details__points-list li .icon {
   position: relative;
   display: flex;
   align-items: center;
}

.service-details__points-list li .icon span {
   position: relative;
   display: inline-block;
   font-size: 18px;
   color: var(--fixpro-base);
}

.service-details__points-list li p {
   color: var(--fixpro-black);
}

.service-details__img-box {
   position: relative;
   display: block;
   margin-top: 60px;
}

.service-details__img-box-single {
   position: relative;
   display: block;
   margin-bottom: 21px;
}

.service-details__img-box-img {
   position: relative;
   display: block;
   overflow: hidden;
   margin-bottom: 30px;
   border-radius: 20px;
   z-index: 1;
}

.service-details__img-box-img:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   opacity: 0;
   background: rgb(0, 0, 0);
   border-radius: 20px;
   transition: all 0.5s ease;
   z-index: 1;
}

.service-details__img-box-img:hover:before {
   opacity: 0.2;
}

.service-details__img-box-img img {
   width: 100%;
   border-radius: 20px;
   transform: scale3d(1, 1, 1);
   transition: transform 1s ease-in-out;
}

.service-details__img-box-img:hover img {
   transform: scale(1.06) rotate(0deg);
}

.service-details__img-box-content-single {
   position: relative;
   display: block;
   margin-bottom: 21px;
}

.service-details__img-box-content-icon-and-title {
   position: relative;
   display: flex;
   align-items: center;
   gap: 15px;
}

.service-details__img-box-content-icon {
   position: relative;
   display: flex;
   align-items: center;
}

.service-details__img-box-content-icon span {
   position: relative;
   display: inline-block;
   font-size: 36px;
   color: var(--fixpro-base);
}

.service-details__img-box-content-title {
   font-size: 24px;
   line-height: 36px;
   font-weight: 700;
}

.service-details__img-box-content-text {
   margin-top: 17px;
}

.service-details__faq-box {
   position: relative;
   display: block;
   margin-top: 30px;
   margin-bottom: 30px;
}

.service-details__sidebar {
   position: relative;
   display: block;
}

.service-details__services-box {
   position: relative;
   display: block;
   padding: 31px 35px 40px;
   background-color: var(--fixpro-primary);
   border-radius: var(--fixpro-bdr-radius);
}

.service-details__services-title {
   font-size: 24px;
   font-weight: 700;
   line-height: 34px;
   margin-bottom: 28px;
}

.service-details__services-list {
   position: relative;
   display: block;
}

.service-details__services-list li {
   position: relative;
   display: block;
}

.service-details__services-list li+li {
   margin-top: 12px;
}

.service-details__services-list li a {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background-color: var(--fixpro-white);
   border-radius: 10px;
   padding: 13px 20px 14px;
   font-size: 18px;
   font-weight: 700;
   text-transform: capitalize;
   font-family: var(--fixpro-font-two);
   color: var(--fixpro-black);
   overflow: hidden;
   z-index: 1;
}

.service-details__services-list li:hover a {
   color: var(--fixpro-white);
}

.service-details__services-list li.active a {
   color: var(--fixpro-white);
}

.service-details__services-list li a::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: var(--fixpro-base);
   transition: -webkit-transform 0.5s ease;
   transition: transform 0.5s ease;
   transition: transform 0.5s ease, -webkit-transform 0.5s ease;
   transform-origin: bottom right;
   -webkit-transform: scale(1, 0);
   transform: scale(1, 0);
   z-index: -1;
}

.service-details__services-list li:hover a::before {
   -webkit-transform: scale(1, 1);
   transform: scale(1, 1);
   transform-origin: top center;
}

.service-details__services-list li.active a::before {
   -webkit-transform: scale(1, 1);
   transform: scale(1, 1);
   transform-origin: top center;
}

.service-details__services-list li a span {
   color: var(--fixpro-gray);
   -webkit-transition: all 500ms ease;
   transition: all 500ms ease;
   font-size: 14px;
}

.service-details__services-list li:hover a span {
   color: var(--fixpro-white);
}

.service-details__services-list li.active a span {
   color: var(--fixpro-white);
}


.service-details__get-started {
   position: relative;
   display: block;
   background-color: var(--fixpro-primary);
   border-radius: var(--fixpro-bdr-radius);
   padding: 40px 40px 40px;
   margin-top: 30px;
}

.service-details__get-started-title {
   font-size: 30px;
   font-weight: 700;
   line-height: 40px;
}

.service-details__get-started-text {
   margin-top: 18px;
   margin-bottom: 29px;
}

.service-details__get-started-points {
   position: relative;
   display: block;
}

.service-details__get-started-points li {
   position: relative;
   display: flex;
   align-items: center;
   gap: 14px;
}

.service-details__get-started-points li+li {
   margin-top: 11px;
}

.service-details__get-started-points li .icon {
   position: relative;
   display: inline-block;
   top: 5px;
}

.service-details__get-started-points li .icon span {
   position: relative;
   display: inline-block;
   font-size: 22px;
   color: var(--fixpro-black);
}

.service-details__get-started-points li p {
   color: var(--fixpro-black);
}

.service-details__get-started-points li p a {
   color: var(--fixpro-black);
}

.service-details__get-started-points li p a:hover {
   color: var(--fixpro-base);
}

.service-details__get-started-btn-box {
   position: relative;
   display: block;
   margin-top: 30px;
}

.service-details__get-started-btn-box .thm-btn {
   width: 100%;
   justify-content: center;
}

.service-details__sidebar-download-box {
   position: relative;
   display: block;
   padding: 31px 35px 40px;
   background-color: var(--fixpro-primary);
   border-radius: var(--fixpro-bdr-radius);
   margin-top: 50px;
   margin-bottom: 50px;
}

.service-details__sidebar-single-download {
   position: relative;
   display: block;
}

.service-details__sidebar-single-download ul {
   position: relative;
   display: block;
}

.service-details__sidebar-single-download ul li {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-bottom: 1px solid rgba(var(--fixpro-base-rgb), .30);
   padding: 14px 0px 14px;
   line-height: 0;
}

.service-details__sidebar-single-download ul li:first-child {
   padding-top: 0px;
}

.service-details__sidebar-single-download ul li:last-child {
   padding-bottom: 0px;
   border-bottom: none;
}

.service-details__sidebar-single-download ul li .content-box {
   position: relative;
   display: flex;
   align-items: center;
}

.service-details__sidebar-single-download ul li .content-box .icon {
   position: relative;
   display: block;
}

.service-details__sidebar-single-download ul li .content-box .icon span {
   position: relative;
   display: inline-block;
   color: var(--fixpro-black);
   font-size: 45px;
   line-height: 45px;
}

.service-details__sidebar-single-download ul li .content-box .text-box {
   position: relative;
   display: block;
   margin-left: 17px;
   flex: 1;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 {
   font-size: 20px;
   line-height: 30px;
   font-weight: 700;
   text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a {
   color: var(--fixpro-black);
   transition: all 200ms linear;
   transition-delay: 0.1s;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
   color: var(--fixpro-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
   color: var(--fixpro-black);
   font-size: 14px;
   line-height: 20px;
   font-weight: 400;
   text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box p a {
   color: var(--fixpro-black);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
   color: var(--fixpro-base);
}

.service-details__sidebar-single-download ul li .btn-box {
   position: relative;
   display: block;
}

.service-details__sidebar-single-download ul li .btn-box a {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 45px;
   height: 45px;
   background: var(--fixpro-base);
   border-radius: 2px;
   overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
   background: var(--fixpro-black);
}

.service-details__sidebar-single-download ul li .btn-box a span::before {
   position: relative;
   display: inline-block;
   color: var(--fixpro-white);
   font-size: 20px;
   line-height: 20px;
}
 
 