

.services-three {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 0;
    z-index: 1;
    background-image: url(assets/images/section-shape-1.png);
}

.services-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .6;
    mix-blend-mode: luminosity;
    
    /* background-size: cover;
    background-repeat: no-repeat; */
    background-attachment: scroll;
    background-position: center center;
}
/* style="background-image: url(assets/images/site-footer-shape-1.jpg);" */
.services-three__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(31, 32, 34, .5);
}

.services-three__single {
    position: relative;
    display: block;
    -webkit-border-start: 1px solid var(--tecture-bdr-color);
    border-inline-start: 1px solid var(--tecture-bdr-color);
    padding-left: 29px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 40px;
}

.services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    width: 68px;
    border: 1px dashed var(--tecture-bdr-color);
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-three__single:hover .services-three__icon {
    border: 1px dashed var(--tecture-base);
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 28px;
    color: var(--tecture-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    transform: scale(.9);
}

.services-three__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 22px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.services-three__title a {
    color: var(--tecture-white);
}

.services-three__title a:hover {
    color: var(--tecture-base);
}

.services-three__img {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.services-three__img::after {
    background: hsla(0, 0%, 100%, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.services-three__single:hover .services-three__img::after {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.services-three__img img {
    width: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
    max-height: 360px;
}

.services-three__single:hover .services-three__img img {
    transform: scale(1.1);
}

.services-three__text {
    margin-top: 43px;
    margin-bottom: 42px;
}

.services-three__arrow {
    position: relative;
    display: block;
}

.services-three__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px dashed var(--tecture-bdr-color);
    border-radius: 50%;
    font-size: 12px;
    color: var(--tecture-base);
}

.services-three__arrow a:hover {
    border: 1px dashed var(--tecture-base);
}

