/***
=============================================
Services
=============================================
***/
.services-one {
    position: relative;
    display: block;
    padding: 105px 0 120px;
    z-index: 1;
}

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

.services-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.services-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.services-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

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

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

.services-one__img {
    position: relative;
    display: block;
    border-radius: 20px;
    z-index: 1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 10%);
}

.services-one__img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--arovan-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.services-one__single:hover .services-one__img::before {
    opacity: 1;
}

.services-one__img img {
    width: 100%;
    border-top-left-radius: 20px;
    transition: .5s ease;
    transform: scale(1);
    height: 300px;
    object-fit: cover;
}


.services-one__single:hover .services-one__img img {
    transform: scale(1.1);
}

.services-one__icon {
     position: absolute;
    top: 10px;
    right: 15px;
    height: 50px;
    width: 50px;
    background-color: var(--arovan-base);
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.services-one__single:hover .services-one__icon {
    background-color: var(--arovan-black);
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 26px;
    color: var(--arovan-white);
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
    color: var(--arovan-white);
}

.services-one__content {
    position: relative;
    display: block;
    background-color: var(--arovan-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 136px 20px 27px;
    margin-top: -100px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 10%);
    text-align: left;
}

.services-one__count {
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 50px;
    line-height: .8em;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--arovan-black);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--arovan-font-two);
}

.services-one__single:hover .services-one__count {
    -webkit-text-stroke: 1px var(--arovan-base);
    color: var(--arovan-base);
}

.services-one__title {
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 600;
    text-transform: capitalize;
}

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

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

.services-one__text {
    margin-top: 16px;
    margin-bottom: 16px;
}

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

.services-one__btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: var(--arovan-black);
    font-weight: 600;
    text-transform: capitalize;
}

.services-one__btn-box a:hover {
    color: var(--arovan-base);
}

.services-one__carousel.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    margin: 40px 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 2px solid rgba(var(--arovan-black-rgb), .70);
    background-color: transparent;
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.services-one__carousel.owl-carousel .owl-dot.active {
    border: 2px solid var(--arovan-base);
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot:before {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    content: "";
    background-color: rgba(var(--arovan-black-rgb), .70);
    border-radius: 2px;
    transform: scale(1);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.services-one__carousel.owl-carousel .owl-dot.active:before {
    transform: scale(1);
    background-color: var(--arovan-base);
}

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

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


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

.services-page .services-one__single {
    margin-bottom: 30px;
}
.services-one__specifications li{
margin-bottom: 10px;
}
/***
=============================================
End
=============================================
***/

