/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 60px 0;
    z-index: 1;
}

.services-one-carousel {
    position: relative;
    display: block;
}

.services-one__single {
    position: relative;
    display: block;
}

.services-one__img-box {
    position: relative;
    display: block;
}

.services-one__img {
    position: relative;
    display: block;
    overflow: hidden;
/*    border-top-left-radius: 20px;
    border-top-right-radius: 20px; */
}

.services-one__img::after {
    background: rgba(var(--maroof-black-rgb), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.services-one__single:hover .services-one__img::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.services-one__img img {
    width: 100%;
/*    border-top-left-radius: 20px;
    border-top-right-radius: 20px; */
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.05) rotate(0deg);
}

.services-one__icon {
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-color: var(--maroof-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
	box-shadow: -100px 130px 150px rgba(0,0,0,0.3);
}

.services-one__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--maroof-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-one__single:hover .services-one__icon:before {
    transform: scaleX(1);
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--maroof-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
    transform: scale(0.9);
    color: var(--maroof-white);
}

.services-one__content {
    position: relative;
    display: block;
    /* border: 1px solid var(--maroof-bdr-color); */
/*    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px; */
    padding: 25px 40px 25px;
	background: #f7f7f7;
	margin-bottom: 20px;
}
.services-one__content1 {
    position: relative;
    display: block;
    /* border: 1px solid var(--maroof-bdr-color); */
/*    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px; */
    padding: 25px;
	background: #f7f7f7;
	margin-bottom: 20px;
}

.services-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-transform: capitalize;
}

.services-one__title a {
    color: var(--maroof-black);
}

.services-one__title a:hover {
    color: var(--maroof-base);
}


.services-one__title1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-transform: capitalize;
}

.services-one__title1 a {
    color: var(--maroof-black);
}

.services-one__title1 a:hover {
    color: var(--maroof-base);
}

.services-one__text {
	line-height: 25px;
    margin-top: 15px;
    margin-bottom: 20px;
	font-weight: 500;
	height: 50px;
	font-size: 15px;
	overflow: hidden;
	  display: -webkit-box; /* 使用弹性盒子布局模型 */
	  -webkit-box-orient: vertical; /* 垂直排列子元素 */
	  -webkit-line-clamp: 2; /* 限制在三行内 */
	  text-overflow: ellipsis;
	  white-space: normal;
}
.services-one__text1 {
    margin: 15px 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	height: 44px;
	overflow: hidden;
	  display: -webkit-box; /* 使用弹性盒子布局模型 */
	  -webkit-box-orient: vertical; /* 垂直排列子元素 */
	  -webkit-line-clamp: 2; /* 限制在三行内 */
	  text-overflow: ellipsis;
	  white-space: normal;
}
.services-one__btn-box {
    position: relative;
    display: block;
}
.services-one__btn-box .thm-btn{
	font-size: 13px;
}
.services-one__btn span {
    /* background-color: var(--maroof-primary) !important; */
    color: var(--maroof-black) !important;
}

.services-one__single:hover .services-one__btn span {
    /* background-color: var(--maroof-base) !important; */
    color: var(--maroof-base) !important;
}

.services-one__carousel.owl-carousel .owl-dots {
    position: relative;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    border-radius: 5px;
    height: 10px;
    background-color: var(--maroof-primary);
    margin: 20px auto 0 !important;
    z-index: 2;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 10px;
    width: 100px;
    border-radius: 5px;
    background-color: transparent;
    margin: 0;
    padding: 0 !important;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-one__carousel.owl-carousel .owl-dot.active {
    background-color: var(--maroof-base);
    opacity: 1;
}

.services-one__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Service Two
--------------------------------------------------------------*/
.service-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.service-two__left {
    position: relative;
    display: block;
}

.service-two__left .section-title {
    margin-bottom: 15px;
}

.service-two__view-all {
    position: relative;
    display: inline-block;
    margin-top: 22px;
}

.service-two__view-all a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--maroof-black);
}

.service-two__view-all a:hover {
    color: var(--maroof-base);
}

.service-two__view-all a span {
    font-size: 12px;
    color: var(--maroof-base);
}

.service-two__single {
    position: relative;
    display: block;
    border: 1px solid var(--maroof-bdr-color);
    border-radius: 20px;
    padding: 39px 40px 41px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.service-two__single:hover {
    border: 1px solid transparent;
}

.service-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.service-two__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.service-two__icon-and-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
}

.service-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--maroof-primary);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.service-two__icon::after {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: var(--maroof-base);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.service-two__single:hover .service-two__icon::after {
    top: -40%;
}

.service-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 46px;
    color: var(--maroof-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-two__single:hover .service-two__icon span {
    color: var(--maroof-white);
}

.service-two__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    text-transform: capitalize;
}

.service-two__title a {
    color: var(--maroof-black);
}

.service-two__title a:hover {
    color: var(--maroof-base);
}

.service-two__single-text {
    margin-top: 21px;
    margin-bottom: 31px;
    font-size: 16px;
}

.service-two__read-more {
    position: relative;
    display: inline-block;
}

.service-two__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.32px;
    text-transform: capitalize;
    color: var(--maroof-black);
}

.service-two__read-more a:hover {
    color: var(--maroof-base);
}

.service-two__read-more a span {
    font-size: 12px;
    color: var(--maroof-base);
}

/*--------------------------------------------------------------
# Service Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    padding: 0;
    z-index: 1;
}

.services-three__inner {
    position: relative;
    display: block;
}

.services-three__service-list {
    position: relative;
    display: block;
}

.services-three__service-list li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--maroof-black-rgb), .30);
    padding: 36px 0 36px;
}

.services-three__service-list li:first-child {
    border-top: 1px solid rgba(var(--maroof-black-rgb), .30);
}

.services-three__service-list-single {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-three__sub-title {
    max-width: 200px;
    width: 100%;
}

.services-three__sub-title p {
    color: var(--maroof-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
	font-size: 18px;
}

.services-three__service-list li:hover .services-three__sub-title p {
    margin-left: 110px;
}

.services-three__title {
    font-size: 22px;
    line-height: 36px;
}
.services-three__title img {
    width: 150px;
    margin-right: 30px;
}
.services-three__title a {
    color: var(--maroof-black);
}

.services-three__long-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-82px);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__service-list li:hover .services-three__long-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.services-three__long-arrow img {
    width: auto;
}

.hover-item__box {
    position: absolute;
    width: 325px;
    height: 356px;
    top: 50%;
    right: 40px;
    pointer-events: none;
    transform: translate(-100%, -50%);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    z-index: 10;
}

.hover-item__box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease-out;
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
    position: relative;
    display: block;
}

.services-four__wrap {
    position: relative;
    display: block;
    background-color: var(--maroof-black);
    padding: 120px 0 260px;
    max-width: 1760px;
    border-radius: 40px;
    margin: 0 auto;
    z-index: 1;
}

.services-four__wrap .section-title__title {
    color: var(--maroof-white);
}

.services-four__carousel {
    position: relative;
    display: block;
}

.services-four__single {
    position: relative;
    display: block;
}

.services-four__img-box {
    position: relative;
    display: block;
}

.services-four__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.services-four__img::after {
    background: rgba(var(--maroof-black-rgb), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.services-four__single:hover .services-four__img::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.services-four__img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.services-four__single:hover .services-four__img img {
    transform: scale(1.05) rotate(0deg);
}

.services-four__content {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    background-color: #20202D;
    margin-top: -27px;
    border-radius: 20px;
    padding: 58px 30px 20px;
}

.services-four__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
}

.services-four__title a {
    color: var(--maroof-white);
}

.services-four__title a:hover {
    color: var(--maroof-base);
}

.services-four__text {
    color: var(--maroof-white);
    margin-top: 16px;
    margin-bottom: 30px;
}

.services-four__btn-box {
    position: relative;
    display: block;
}

.services-four__btn {
    border: 1px solid rgba(var(--maroof-bdr-color-rgb), .20) !important;
    color: var(--maroof-white) !important;
}

.services-four__btn:hover {
    border: 1px solid var(--maroof-base) !important;
}

.services-four__btn span {
    background-color: rgba(var(--maroof-white-rgb), .20) !important;
}

.services-four__btn:hover span {
    background-color: var(--maroof-base) !important;
    color: var(--maroof-white) !important;
}

.services-four__btn::after {
    background: transparent !important;
}

.services-four__icon {
    position: absolute;
    top: -40px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--maroof-black);
    border-radius: 50%;
    z-index: 1;
}

.services-four__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--maroof-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-four__single:hover .services-four__icon:before {
    transform: scaleX(1);
}

.services-four__icon span {
    position: relative;
    display: inline-block;
    font-size: 38px;
    color: var(--maroof-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-four__single:hover .services-four__icon span {
    transform: scale(0.9);
}

.services-four__carousel.owl-carousel .owl-dots {
    position: relative;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    border-radius: 5px;
    height: 10px;
    background-color: #20202D;
    margin: 60px auto 0 !important;
    z-index: 2;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 10px;
    width: 100px;
    border-radius: 5px;
    background-color: transparent;
    margin: 0;
    padding: 0 !important;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-four__carousel.owl-carousel .owl-dot.active {
    background-color: var(--maroof-base);
    opacity: 1;
}

.services-four__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.services-four__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Services Five
--------------------------------------------------------------*/
.services-five {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.services-five__carousel {
    position: relative;
    display: block;
}

.services-five__single {
    position: relative;
    display: block;
    border: 1px solid var(--maroof-bdr-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 29px 29px 29px;
}

.services-five__img-box {
    position: relative;
    display: block;
}

.services-five__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.services-five__img::after {
    background: rgba(var(--maroof-black-rgb), 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.services-five__single:hover .services-five__img::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.services-five__img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.services-five__single:hover .services-five__img img {
    transform: scale(1.05) rotate(0deg);
}

.services-five__icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--maroof-primary);
    border-radius: 50%;
    z-index: 2;
}

.services-five__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--maroof-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-five__single:hover .services-five__icon:before {
    transform: scaleX(1);
}

.services-five__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--maroof-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-five__single:hover .services-five__icon span {
    transform: scale(0.9);
    color: var(--maroof-white);
}

.services-five__content {
    position: relative;
    display: block;
    padding-top: 21px;
}

.services-five__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
}

.services-five__title a {
    color: var(--maroof-black);
}

.services-five__title a:hover {
    color: var(--maroof-base);
}

.services-five__btn-box {
    position: relative;
    display: block;
}

.services-five__btn::after {
    background: var(--maroof-base) !important;
}

.services-five__btn span {
    background-color: var(--maroof-primary) !important;
    color: var(--maroof-black) !important;
}

.services-five__btn:hover span {
    background-color: rgba(var(--maroof-white-rgb), .20) !important;
    color: var(--maroof-white) !important;
}

.services-five__carousel.owl-carousel .owl-dots {
    position: relative;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    border-radius: 5px;
    height: 10px;
    background-color: var(--maroof-primary);
    margin: 80px auto 0 !important;
    z-index: 2;
}

.services-five__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    height: 10px;
    width: 100px;
    border-radius: 5px;
    background-color: transparent;
    margin: 0;
    padding: 0 !important;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-five__carousel.owl-carousel .owl-dot.active {
    background-color: var(--maroof-base);
    opacity: 1;
}

.services-five__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.services-five__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 80px 0;
    z-index: 1;
}

.service-details__left {
    position: relative;
    display: block;
	padding-left: 60px;
}

.service-details__content-one {
    position: relative;
    display: block;
}

.service-details__title-one {
	font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
	}
.service-details__content-one .service-details__text-1 {
	font-size: 18px;
	margin-bottom: 60px;
	color: var(--maroof-black);
}

.service-details__img-one {
    position: relative;
    display: block;
    margin: 30px;
	text-align: center;
}

.service-details__img-one img {
/*    width: 100%;
    border-radius: 20px; */
}

.service-details__content-two {
    position: relative;
    display: block;
    margin-bottom: 58px;
}

.service-details__title-two {
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 16px;
}

.service-details__points {
    position: relative;
    display: block;
    margin-top: 20px;
}

.service-details__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__points li+li {
    margin-top: 12px;
}

.service-details__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    max-width: 16px;
    width: 100%;
    background-color: var(--maroof-base);
    border-radius: 50%;
    font-size: 10px;
    color: var(--maroof-white);
}

.service-details__points li .text {
    margin-left: 15px;
	font-size: 16px;
	color: var(--maroof-gray);
	
}

.service-details__images-box {
    position: relative;
    display: block;
}

.service-details__images-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.service-details__images-single img {
    width: 100%;
    border-radius: 20px;
}

.service-details__content-three {
    position: relative;
    display: block;
    margin-bottom: 81px;
}

.service-details__title-four {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 26px;
}

.service-details__text-3 {
    margin-bottom: 20px;
}


.service-details__feature-box {
    position: relative;
    display: block;
}

.service-details__feature-single {
    position: relative;
    display: block;
    border: 1px solid var(--maroof-bdr-color);
    border-radius: 20px;
    padding: 20px;
}
.service-details__feature-single img {
	width: 100%;
}

.service-details__feature-icon-box {
    position: relative;
    display: flex;
	justify-content: center;
    align-items: center;
    /* gap: 20px; */
    flex-wrap: wrap;
   /* margin-bottom: 12px; */
}

.service-details__feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border: 1px solid var(--maroof-base);
    border-radius: 20px;
}

.service-details__feature-icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--maroof-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.service-details__feature-single:hover .service-details__feature-icon span {
    transform: scale(.9);
}

.service-details__feature-title {
    font-size: 16px;
   /* line-height: 36px; */
   margin-top: 15px;
	color: var(--maroof-base);
}

.service-details__feature-title a {
    color: var(--maroof-base);
}

.service-details__feature-title a:hover {
    color: var(--maroof-black);
	text-decoration: underline;
}

.service-details__feature-text {
	line-height: 20px;
    font-size:14px;
    margin-bottom: 31px;
}

.service-details__read-more {
    position: relative;
    display: flex;
	justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    color: var(--maroof-gray);
    text-transform: capitalize;
}

.service-details__read-more .icon-dubble-arrow-right{font-size: 8px;}
.service-details__read-more:hover {
    color: var(--maroof-base);
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__service-list-box {
    position: relative;
    display: block;
    /* border: 1px solid var(--maroof-bdr-color); */
    border-radius: 20px;
    padding: 20px;
	background: url(../../images/bg11.jpg) top center no-repeat #ecf8ff;
	background-size: 100% auto;
	
}

.service-details__sidebar-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    margin: 20px;
}

.service-details__service-list {
    position: relative;
    display: block;
}

.service-details__service-list li {
    position: relative;
    display: block;
}

.service-details__service-list li+li {
    margin-top: 10px;
}

.service-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: var(--maroof-black);
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
    color: var(--maroof-white);
    background-color: #03368b;
}

.service-details__service-list li a span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 10px;
    color: var(--maroof-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-details__service-list li:hover a span,
.service-details__service-list li.active a span {
    color: var(--maroof-white);
}


/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 80px 0;
    z-index: 1;
}

.services-page .services-one__single {
    margin-bottom: 30px;
}
@media only screen and (max-width: 1400px){
	h3.services-three__title a {
	    max-width: 74%;
	    display: inline-block;
	}
}
@media only screen and (max-width: 1000px){
	    h3.services-three__title a {
	        max-width: 100%;
	        display: inline-block;
	    }
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/