.common-title-section {
    font-size: 20px;

}

.service-gallery {
    position: relative;
    overflow: hidden !important;
    z-index: 1;
}


.common-title-section h6 {
    color: var(--p-c);
    font-weight: 400;
    font-size: 1.2em;
}

.common-title-section h1 {
    font-weight: 700;
    font-size: 2.6em;
}


.common-title-section p {
    font-weight: 500;
    font-size: .6em;
}

.service-gallery-sub-section {
    background-repeat: no-repeat !important;
    background-position: center;
    aspect-ratio: .7;
    width: 100%;
    background-size: 150%;
    transition: .4s all ease;
    isolation: isolate;
}

.service-gallery-sub-section:hover {
    background-size: 160%;
}

.service-gallery-sub-section:hover .service-gallery-sub-section-icon {
    top: 0%;
}

.service-gallery-sub-section-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .4s all ease;
    background: linear-gradient(30deg,
            rgba(210, 174, 85, 1) 0%,
            rgba(210, 174, 85, 0.7) 50%,
            rgba(210, 174, 85, 0) 100%);
    top: 100%;
    left: 0%;
    z-index: -1;
}


.service-gallery-sub-section h6 {
    color: #f7f7f745;
    font-size: .8em;
}

.service-gallery-sub-section h5 {
    color: var(--w-c);
    font-size: 1.1em;
    font-weight: 600;
}

.service-gallery-hover-section p {
    color: var(--w-c);
    font-size: .8em;
}

.service-gallery-hover-section-description p {
    font-size: .6em;
    color: #F7F7F7;
    font-weight: 300;
}

.service-gallery-sub-section-icon a h6 {
    color: var(--w-c);
    font-size: .7em;
    font-weight: 700;
}

.service-gallery-sub-section .trade-icon {
    transition: .4s;
}

.service-gallery-sub-section:hover .trade-icon {
    opacity: 0;
    pointer-events: none;
}

/* slider css  */
.service-slider-relative {
    position: relative;
}

.service-slide-next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--p-c);
    z-index: 20;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-slide-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--p-c);
    z-index: 20;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (min-width: 0px) and (max-width: 572px) {
    .common-title-section {
        font-size: 12px;
    }
}