/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-one__inner {
    position: relative;
    display: block;
    background-color: var(--crank-white);
    max-width: 1710px;
    width: 100%;
    margin: 0 auto 0;
    padding: 120px 15px 90px;
    border-radius: 60px;
}

.services-one__single {
    position: relative;
    display: block;
    border: 2px solid var(--crank-black);
    border-radius: 20px;
    text-align: center;
    padding: 30px 30px 25px;
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover {
    border: 2px solid transparent;
    transform: translateY(-10px);
}

.services-one__single:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--crank-black);
    border-radius: 17px;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.services-one__single:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.services-one__single-shape-1 {
    position: absolute;
    top: 0;
    left: -514px;
    width: 790px;
    height: 417.6px;
    background: #FF0000;
    filter: blur(102.476px);
    transform: matrix(0, 1, 1, 0, 0, 0) scale(0);
    opacity: .50;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-1 {
    transform: matrix(0, 1, 1, 0, 0, 0) scale(1);
    transition-delay: 400ms;
}

.services-one__single-shape-2 {
    position: absolute;
    top: -300px;
    right: -100px;
    width: 484px;
    height: 390px;
    background: #063FFF;
    filter: blur(102.476px);
    transform: matrix(0, 1, 1, 0, 0, 0) scale(0);
    opacity: .50;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-2 {
    transform: matrix(0, 1, 1, 0, 0, 0) scale(1);
    transition-delay: 600ms;
}

.services-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    margin: 0 auto 0;
    background-color: var(--crank-black);
    border-radius: 50%;
    border: 1px solid transparent;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__icon {
    border: 1px solid var(--crank-white);
    background-color: transparent;
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--crank-white);
    -webkit-transition: all 0.90s ease;
    -o-transition: all 0.90s ease;
    transition: all 0.90s ease;
}

.services-one__single:hover .services-one__icon span {
    color: var(--crank-white);
    transform: scale(1.02) translateX(2px);
}

.services-one__icon-shape-1 {
    position: absolute;
    width: 192px;
    height: 101px;
    background: #FF0000;
    filter: blur(24.9942px);
    transform: rotate(-90deg);
    left: -130px;
    top: 10px;
    opacity: .50;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.services-one__single:hover .services-one__icon-shape-1 {
    opacity: 0;
}

.services-one__icon-shape-2 {
    position: absolute;
    width: 118px;
    height: 95px;
    right: -25px;
    top: 90px;
    background: #063FFF;
    filter: blur(24.9942px);
    transform: rotate(-90deg);
    opacity: .50;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.services-one__single:hover .services-one__icon-shape-2 {
    opacity: 0;
}

.services-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-top: 17px;
    margin-bottom: 22px;
}

.services-one__title a {
    color: var(--crank-black);
}

.services-one__single:hover .services-one__title a {
    color: var(--crank-white);
}

.services-one__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__text {
    color: var(--crank-white);
}

/*--------------------------------------------------------------
  # Services Two
  --------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-two__single {
    position: relative;
    display: block;
    background-color: var(--crank-white);
    border: 1px solid var(--crank-bdr-color);
    border-radius: 20px;
    padding: 52px 40px 39px;
    margin-bottom: 30px;
}

.services-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 28px;
}

.services-two__title a {
    color: var(--crank-black);
}

.services-two__title a:hover {
    color: var(--crank-base);
}

.services-two__icon {
    position: absolute;
    top: 40px;
    right: 40px;
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--crank-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
    transform: scale(0.9);
}

.services-two__img {
    position: relative;
    display: block;
    margin-top: 50px;
}

.services-two__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    border: 1px solid var(--crank-bdr-color);
    padding: 35px 30px 28px;
    border-radius: 20px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-three__single:hover {
    border: 1px solid var(--crank-base);
    transform: translateY(-10px);
}

.services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--crank-gray);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-three__single:hover .services-three__icon span {
    transform: scale(.9);
    color: var(--crank-base);
}

.services-three__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 29px;
    margin-bottom: 31px;
}

.services-three__title a {
    color: var(--crank-black);
}

.services-three__title a:hover {
    color: var(--crank-base);
}

.services-three__read-more {
    position: relative;
    display: block;
}

.services-three__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--crank-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-three__read-more a span {
    font-size: 18px;
    color: var(--crank-base);
}

.services-three__read-more a:hover {
    color: var(--crank-base);
}

.services-three__img {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.services-three__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-three__single:hover .services-three__img img {
    transform: scale(1.1);
}

/* Service Detail Sections */
.service-detail-section {
    position: relative;
    width: 100%;
    background-color: var(--crank-white);
    margin-top: 30px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
    z-index: 100;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail__header {
    position: relative;
    background-color: #100531;
    padding: 25px 0;
    /* border-bottom: 2px solid var(--crank-base); */
}

.service-detail__header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--crank-white);
    margin: 0;
}

.service-detail__close {
    background: transparent;
    border: 2px solid var(--crank-white);
    color: var(--crank-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.service-detail__close:hover {
    background-color: var(--crank-base);
    border-color: var(--crank-base);
    transform: rotate(90deg);
}

.service-detail__slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.service-detail__carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-detail__carousel .item {
    position: relative;
    width: 100%;
    height: 500px;
}

.service-detail__carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail__content {
    padding: 50px 40px;
    height: 100%;
    overflow-y: auto;
    max-height: 500px;
}

.service-detail__content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--crank-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-detail__content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--crank-base);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--crank-gray);
    margin-bottom: 25px;
}

.service-detail__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-detail__content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--crank-gray);
}

.service-detail__content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--crank-base);
    font-weight: 700;
    font-size: 18px;
}

.service-detail__content ul li strong {
    color: var(--crank-black);
    font-weight: 600;
}

.service-detail__content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--crank-black);
    margin-top: 20px;
    margin-bottom: 12px;
}

.service-detail__table-wrapper {
    margin: 25px 0;
    overflow-x: auto;
}

.service-detail__table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--crank-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail__table thead {
    background-color: var(--crank-base);
}

.service-detail__table thead th {
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--crank-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail__table tbody tr {
    border-bottom: 1px solid var(--crank-bdr-color);
    transition: background-color 0.3s ease;
}

.service-detail__table tbody tr:last-child {
    border-bottom: none;
}

.service-detail__table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.service-detail__table tbody td {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--crank-gray);
    vertical-align: top;
}

.service-detail__table tbody td:first-child {
    font-weight: 600;
    color: var(--crank-black);
    width: 30%;
}

.service-detail__table tbody td:last-child {
    width: 70%;
}

.service-detail__cta {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--crank-bdr-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background-color: #20BA5A;
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-float__text {
    position: absolute;
    right: 70px;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float__text:before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #25D366;
}

.whatsapp-float:hover .whatsapp-float__text {
    opacity: 1;
    visibility: visible;
}

/* Responsive for Service Detail Sections */
@media only screen and (max-width: 991px) {
    .service-detail__content {
        padding: 40px 30px;
        max-height: none;
    }
    
    .service-detail__slider {
        min-height: 400px;
    }
    
    .service-detail__carousel .item {
        height: 400px;
    }
    
    .service-detail__title {
        font-size: 24px;
    }
    
    .service-detail__table-wrapper {
        margin: 20px -30px;
        padding: 0 30px;
    }
    
    .service-detail__table {
        font-size: 14px;
    }
    
    .service-detail__table thead th {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .service-detail__table tbody td {
        padding: 15px;
        font-size: 14px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float__text {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .service-detail__content {
        padding: 30px 20px;
    }
    
    .service-detail__slider {
        min-height: 300px;
    }
    
    .service-detail__carousel .item {
        height: 300px;
    }
    
    .service-detail__content h3 {
        font-size: 22px;
    }
    
    .service-detail__content h4 {
        font-size: 18px;
    }
    
    .service-detail__title {
        font-size: 20px;
    }
    
    .service-detail__table-wrapper {
        margin: 20px -20px;
        padding: 0 20px;
    }
    
    .service-detail__table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-detail__table thead th {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .service-detail__table tbody td {
        padding: 12px;
        font-size: 13px;
    }
    
    .service-detail__table tbody td:first-child {
        width: 35%;
    }
    
    .service-detail__table tbody td:last-child {
        width: 65%;
    }
    
    .service-detail__close {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
  # Services Four
  --------------------------------------------------------------*/
.services-four {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.services-four__top {
    position: relative;
    display: block;
}

.services-four__single {
    position: relative;
    display: block;
    background-color: var(--crank-white);
    padding: 30px 30px 63px;
    border-radius: 20px;
    margin-bottom: 30px;
    z-index: 1;
}

.services-four__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    background-color: var(--crank-white);
    z-index: 1;
}

.services-four__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--crank-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-four__single:hover .services-four__icon::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-four__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--crank-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-four__single:hover .services-four__icon span {
    transform: scale(0.9);
    color: var(--crank-white);
}

.services-four__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 23px;
    margin-bottom: 21px;
}

.services-four__title a {
    color: var(--crank-black);
}

.services-four__title a:hover {
    color: var(--crank-base);
}

.services-four__bottom {
    position: relative;
    display: block;
}

.services-four__bottom>.row {
    justify-content: center;
}


/*--------------------------------------------------------------
  # Service Details
  --------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.service-details__left {
    position: relative;
    display: block;
}

.service-details__title-1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    text-transform: capitalize;
}

.service-details__text-1 {
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-details__img {
    position: relative;
    display: block;
}

.service-details__img img {
    width: 100%;
    border-radius: 20px;
}

.service-details__title-2 {
    font-size: 21px;
    font-weight: 600;
    line-height: 31px;
    text-transform: capitalize;
    margin-top: 29px;
    margin-bottom: 18px;
}

.service-details__text-3 {
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-details__single {
    position: relative;
    display: block;
    background-color: #F4F4F4;
    border-radius: 20px;
    padding: 30px 30px 30px;
    margin-bottom: 30px;
}

.service-details__icon-and-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-details__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: var(--crank-white);
    border-radius: 50%;
}

.service-details__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--crank-black);
}

.service-details__single-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    position: relative;
    display: block;
    flex: 1;
}

.service-details__single p {
    margin-top: 21px;
}

.service-details__right {
    position: relative;
    display: block;
}

.service-details__service-list-box {
    position: relative;
    display: block;
    background-color: var(--crank-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 38px 40px 40px;
}

.service-details__service-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 28px;
}

.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: 20px;
}

.service-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F4F4;
    color: var(--crank-gray);
    padding: 11px 29px 12px;
    border: 1px solid #F4F4F4;
    border-radius: 25px;
}

.service-details__service-list li:hover a,
.service-details__service-list li.active a {
    border: 1px solid var(--crank-base);
    background-color: var(--crank-white);
}

.service-details__contact-box {
    position: relative;
    display: block;
    background-color: var(--crank-black);
    border-radius: 20px;
    text-align: center;
    padding: 60px 30px 58px;
    overflow: hidden;
    margin-top: 40px;
    z-index: 1;
}

.service-details__contact-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.service-details__contact-box-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .50;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.service-details__contact-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    color: var(--crank-white);
}

.service-details__contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--crank-base);
    border-radius: 50%;
    margin: 22px auto 20px;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-details__contact-icon:hover {
    background-color: var(--crank-white);
}

.service-details__contact-icon span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: var(--crank-white);
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-details__contact-icon:hover span {
    color: var(--crank-base);
}

.service-details__contact-sub-title {
    color: var(--crank-white);
}

.service-details__contact-number {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    font-family: var(--crank-font-two);
    color: var(--crank-white);
    margin-top: 18px;
    position: relative;
    display: block;
}

.service-details__contact-number:hover {
    color: var(--crank-base);
}

.service-details__bottom {
    position: relative;
    display: block;
    margin-top: 40px;
}

.service-details__bottom-left {
    position: relative;
    display: block;
}

.service-details__bottom-img {
    position: relative;
    display: block;
}

.service-details__bottom-img img {
    width: 100%;
    border-radius: 10px;
}

.service-details__bottom-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 18px;
}

.service-details__bottom-right {
    position: relative;
    display: block;
    margin-top: 30px;
}

.service-details__bottom-points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-details__bottom-points {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.service-details__bottom-points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-details__bottom-points li+li {
    margin-top: 20px;
}

.service-details__bottom-points li .icon {
    position: relative;
    display: inline-block;
}

.service-details__bottom-points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--crank-base);
}

.service-details__bottom-img-two {
    position: relative;
    display: block;
}

.service-details__bottom-img-two img {
    width: 100%;
    border-radius: 10px;
}



/*--------------------------------------------------------------
  # Services Page
  --------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.services-page .services-one__single {
    border: none;
    background-color: #F4F4F4;
}


/*--------------------------------------------------------------
  # Services Five
  --------------------------------------------------------------*/
.services-five .services-two__single {
    background-color: #F4F4F4;
}


/*--------------------------------------------------------------
  # Services Page
  --------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.services-page .services-one__single {
    border: none;
    background-color: #F4F4F4;
}


/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

.services-carousel-page .services-one__single {
    margin-bottom: 0;
}














/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/