/*
-----------------------------------------
  Service style2 Css
-----------------------------------------
*/
.service-style2 {
    position: relative;
    display: block;
    background: #FFFFFF;
    padding: 120px 0px 90px;
    z-index: 1;
}

.service-style2__gray-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% + 630px) / 2);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    background-color: var(--thm-gray-bg);
    z-index: -1;
}

.service-style2 .shape1 {
    position: absolute;
    top: 50px;
    right: 100px;
    z-index: -1;
}

.service-style2 .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.single-service-style2 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-service-style2 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.single-service-style2 .img-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 93.33%);
    content: "";
    z-index: 1;
    height: 200px;
}

.single-service-style2 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.single-service-style2:hover .img-box img {
    transform: scale(1.1) rotate(1deg);
}

.single-service-style2 .img-box::after {
    position: absolute;
    top: 80px;
    right: 0%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(var(--thm-primary-color-rgb), .80);
    border-radius: 30%;
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.single-service-style2:hover .img-box::after {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.single-service-style2 .img-box .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 5;
}

.single-service-style2 .img-box .overlay-content .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 0px 0px 8px 0px;
}

.single-service-style2 .img-box .overlay-content .icon-box span:before {
    position: relative;
    display: inline-block;
    color: #d9d9d9;
    font-size: 55px;
    line-height: 55px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style2:hover .img-box .overlay-content .icon-box span:before {
    color: var(--thm-primary-color);
}

.single-service-style2 .img-box .overlay-content .text-box {
    position: relative;
    display: block;
    margin-left: 35px;
}

.single-service-style2 .img-box .overlay-content .text-box h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
}

.single-service-style2 .btn-box {
    position: relative;
    display: block;
    border-radius: 0px 0px 8px 8px;
    background: #FFF;
    box-shadow: 0px 6px 30px 8px rgba(0, 0, 0, 0.05);
}

.single-service-style2 .btn-box a {
    position: relative;
    display: block;
    color: #09F;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    padding: 31px 40px 31px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-service-style2:hover .btn-box a {
    color: #ffffff;
}

.single-service-style2 .btn-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 0px;
    background-color: var(--thm-primary);
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    border-radius: 0px 0px 8px 8px;
    z-index: -1;
}

.single-service-style2:hover .btn-box a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.single-service-style2 .btn-box a span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding-left: 6px;
    transition: all 400ms linear;
    transition-delay: 0.1s;
}

.single-service-style2:hover .btn-box a span:before {
    transform: rotate(90deg);
}



/*------------------------------------------
    Service Details Page Css
-------------------------------------------*/
.service-details-page {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}



/*Service Details Page Content Css*/
.service-details-page__content {
    position: relative;
    display: block;
    margin-left: 30px;
    z-index: 1;
}

.service-details-page__content::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    content: "";
    z-index: -1;
}

.service-details-page__content-img-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-primary-color);
    border-radius: 8px;
}

.service-details-page__content-img-box img {
    width: 100%;
    transition: all 700ms linear;
    transition-delay: 0.2s;
}

.service-details-page__content-img-box:hover img {
    transform: scale(1.05) rotate(0deg);
    opacity: 0.5;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.service-details-page__content-inner {
    position: relative;
    display: block;
    padding: 51px 50px 50px;
}

.service-details-page__content-text1 {
    position: relative;
    display: block;
}

.service-details-page__content-text1 h2 {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.service-details-page__content-text1 p+p {
    margin-top: 20px;
}



.service-details-page__content-text2 {
    position: relative;
    display: block;
    margin-top: 42px;
}

.service-details-page__content-text2 h2 {
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.service-details-page__content-text2 p+p {
    margin-top: 20px;
}

.service-details-page__content-text2 ul {
    position: relative;
    display: block;
    margin-top: 26px;
}

.service-details-page__content-text2 ul li {
    position: relative;
    display: block;
    padding-left: 40px;
    margin-bottom: 14px;
}

.service-details-page__content-text2 ul li:last-child {
    margin-bottom: 0;
}

.service-details-page__content-text2 ul li .icon-box {
    position: absolute;
    top: 4px;
    left: 0;
}

.service-details-page__content-text2 ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 25px;
}

.service-details-page__content-text2 ul li p {
    margin: 0;
}

.service-details-page__content-text3 {
    position: relative;
    display: block;
    margin-top: 43px;
}

.service-details-page__content-text3 h2 {
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.service-details-page__content-text3 p {
    margin: 0;
}

.service-details-page__content-text3-inner {
    position: relative;
    display: block;
    margin-top: 50px;
}

.service-details-page__content-text3-inner .single-img {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.service-details-page__content-text3-inner .single-img img {
    width: 100%;
}

.service-details-carousel.owl-theme .owl-nav {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-top: 0px;
}

.service-details-carousel.owl-carousel .owl-nav button.owl-next,
.service-details-carousel.owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    border: none;
    padding: 0 !important;
    color: var(--thm-primary-color);
    font-size: 18px;
    font-weight: 700;
}

.service-details-carousel.owl-carousel .owl-nav button.owl-next span,
.service-details-carousel.owl-carousel .owl-nav button.owl-prev span {
    font-weight: 700;
}



























/*** 
=============================================
    End Css
=============================================
***/