/*==============================================
  Service One  
===============================================*/
.service-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.service-one__shape-1 {
    position: absolute;
    top: 123px;
    left: 70px;
    opacity: 0.05;
    z-index: -1;
}

.service-one__shape-1 img {
    width: auto;
}

.service-one__shape-2 {
    position: absolute;
    right: 75px;
    top: 120px;
    z-index: -1;
}

.service-one__shape-2 img {
    width: auto;
}

.service-one__top {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--nexin-bdr-color);
    padding-bottom: 82px;
    margin-bottom: 60px;
}

.service-one__top-text {
    position: relative;
    display: block;
    text-transform: capitalize;
    margin-left: 145px;
    padding-left: 60px;
}

.service-one__top-text::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 1px;
    height: 123px;
    background-color: var(--nexin-bdr-color);
}

.service-one__bottom {
    position: relative;
    display: block;
}

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

.service-one__single::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 48px;
    height: 1px;
    background-color: var(--nexin-base);
    background-position: left right;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: left;
    transform-style: preserve-3d;
    transform: scalex(0);
    z-index: 2;
}

.service-one__single:hover::before {
    transform: scalex(1.0);
}

.service-one__single::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: var(--nexin-base);
    background-position: bottom top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaley(0);
    z-index: 2;
}

.service-one__single:hover::after {
    transform: scaley(1.0);
}

.service-one__single-inner {
    position: relative;
    display: block;
    border: 1px solid var(--nexin-bdr-color);
    padding: 34px 40px 32px;
    margin-bottom: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0% 50%);
}

.service-one__single-inner-shape-1 {
    position: absolute;
    bottom: -10px;
    right: 24px;
    width: 1px;
    height: 65px;
    background-color: var(--nexin-bdr-color);
    transform: rotate(48deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-one__single:hover .service-one__single-inner-shape-1 {
    background-color: var(--nexin-base);
}

.service-one__single-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--nexin-base);
    background-position: right left;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: right;
    transform-style: preserve-3d;
    transform: scalex(0);
    z-index: 2;
}

.service-one__single:hover .service-one__single-inner::before {
    transform: scalex(1.0);
}

.service-one__single-inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: var(--nexin-base);
    background-position: top bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaley(0);
    z-index: 2;
}

.service-one__single:hover .service-one__single-inner::after {
    transform: scaley(1.0);
}

.service-one__sub-title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-one__sub-title-shape-1 {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--nexin-gray);
    border-radius: 50%;
}

.service-one__title {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin: 13px 0 20px;
}

.service-one__title a {
    color: var(--nexin-black);
}

.service-one__title a:hover {
    color: var(--nexin-base);
}

.service-one__icon {
    position: relative;
    display: inline-block;
}

.service-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--nexin-black);
    transition: all 500ms ease;
}

.service-one__single:hover .service-one__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.service-one__text {
    margin-top: 19px;
    text-transform: capitalize;
}

.service-one__arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
}

.service-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--nexin-white);
    border: 1px solid var(--nexin-bdr-color);
    border-radius: 50%;
    font-size: 23px;
    color: var(--nexin-black);
}

.service-one__single:hover .service-one__arrow a {
    background-color: var(--nexin-base);
    border: 1px solid var(--nexin-base);
    transform: rotate(-45deg);
}

/*==============================================
    Service Two   
===============================================*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 109px;
    z-index: 1;
}

.services-two__top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.services-two__top .section-title-two {
    margin-bottom: 0;
}

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

.services-two__btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 1px solid var(--nexin-black);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    gap: 5px;
    color: var(--nexin-black);
    text-transform: capitalize;
}

.services-two__btn-box a:hover {
    border: 1px solid var(--nexin-base);
    color: var(--nexin-base);
}

.services-two__btn-box a span {
    font-size: 18px;
    position: relative;
    top: -2px;
    font-weight: 700;
}

.services-two__bottom {
    position: relative;
    display: block;
    padding-top: 60px;
}

.services-two__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid var(--nexin-bdr-color);
    padding-top: 60px;
}

.services-two__content-box {
    position: relative;
    display: block;
    max-width: 917px;
    width: 100%;
}

.services-two__content-list {
    position: relative;
    display: block;
}

.services-two__content-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-two__content-list li+li {
    margin-top: 30px;
    border-top: 1px solid var(--nexin-bdr-color);
    padding-top: 40px;
}

.services-two__icon-and-title {
    position: relative;
    display: block;
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--nexin-black);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__content-list li:hover .services-two__icon {
    border: 1px solid var(--nexin-base);
    background-color: var(--nexin-base);
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--nexin-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__content-list li:hover .services-two__icon span {
    color: var(--nexin-white);
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.services-two__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 19px;
    text-transform: capitalize;
}

.services-two__title a {
    color: var(--nexin-black);
}

.services-two__title a:hover {
    color: var(--nexin-base);
}

.services-two__title a span {
    font-weight: 600;
}

.services-two__single-text {
    position: relative;
    display: block;
}

.services-two__img-box {
    position: relative;
    display: block;
    max-width: 313px;
    width: 100%;
}

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

.services-two__img img {
    width: 100%;
}

.services-two__single+.services-two__single {
    margin-top: 60px;
}

/*==============================================
    Services Three  
===============================================*/
.services-three {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-three__single {
    position: relative;
    display: block;
    border: 1px solid #2A2A2A;
    padding: 32px 30px 32px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 30px;
    z-index: 1;
}

.services-three__single:hover {
    border: 1px solid transparent;
    transition-delay: 250ms;
}

.services-three__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.services-three__single:hover .services-three__single-bg {
    opacity: 1;
    transform: translateY(0px);
}

.services-three__single-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 25, 27, .96);
    z-index: -1;
}

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

.services-three__count::before {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--nexin-gray);
    counter-increment: count 1;
    content: "0"counter(count);
    font-family: var(--nexin-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__count::before {
    color: var(--nexin-base);
}

.services-three__icon {
    position: relative;
    display: inline-block;
    margin: 63px 0 25px;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--nexin-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    color: var(--nexin-base);
}

.services-three__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

.services-three__title a {
    color: var(--nexin-white);
}

.services-three__title a:hover {
    color: var(--nexin-base);
}

.services-three__text {
    margin: 14px 0 27px;
}

.services-three__read-more {
    position: relative;
    display: inline-block;
}

.services-three__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 15px;
    color: var(--nexin-white);
    text-transform: capitalize;
}

.services-three__single:hover .services-three__read-more a {
    color: var(--nexin-base);
}

.services-three__read-more a span {
    font-weight: 700;
}

/*==============================================
    Services Page  
===============================================*/
.services-page {
    padding: 120px 0 120px;
}

.services-page__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
}

.services-page__top .section-title-two {
    margin-bottom: 0;
}

.services-page__intro {
    max-width: 390px;
    margin: 0 0 6px;
    color: var(--nexin-gray);
    font-size: 18px;
    line-height: 30px;
}

.services-page .services-three__icon span {
    color: var(--nexin-black);
}

.services-page .services-three__title a {
    color: var(--nexin-black);
}

.services-page .services-three__summary {
    color: var(--nexin-base);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 10px 0 0;
}

.services-three__offerings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.services-three__offerings li {
    position: relative;
    padding-left: 17px;
    color: var(--nexin-gray);
    font-size: 14px;
    line-height: 21px;
}

.services-three__offerings li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--nexin-base);
}

.services-page .services-three__single:hover .services-three__summary,
.services-page .services-three__single:hover .services-three__offerings li {
    color: var(--nexin-white);
}

.services-page .services-three__single:hover .services-three__title a {
    color: var(--nexin-white);
}

.services-page .services-three__read-more a {
    color: var(--nexin-black);
}

@media only screen and (max-width: 767px) {
    .services-page__top {
        display: block;
        margin-bottom: 40px;
    }

    .services-page__intro {
        margin-top: 24px;
    }
}

.services-page__pagination {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 40px;
}

.services-page__pagination .pg-pagination li {
    display: inline-block;
}

.services-page__pagination .pg-pagination li a {
    height: 45px;
    width: 45px;
    text-align: center;
    display: flex;
    color: var(--nexin-black);
    font-weight: 400;
    font-size: 18px;
    border-radius: 50%;
    background-color: transparent;
    font-family: var(--nexin-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-page__pagination .pg-pagination li:hover a,
.services-page__pagination .pg-pagination li.active a {
    background-color: var(--nexin-black);
    color: var(--nexin-white);
}

.services-page__pagination .pg-pagination li:first-child:hover a {
    background-color: transparent;
    color: var(--nexin-base);
}

.services-page__pagination .pg-pagination li:last-child:hover a {
    background-color: transparent;
    color: var(--nexin-base);
}

.services-page__pagination .pg-pagination li:first-child {
    margin-right: 30px;
}

.services-page__pagination .pg-pagination li:last-child {
    margin-left: 30px;
}

/*==============================================
    Services Details  
===============================================*/
.services-details {
    position: relative;
    display: block;
    padding: 108px 0 92px;
    z-index: 1;
}

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

.services-details__top-left {
    position: relative;
    display: block;
}

.services-details__top-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--nexin-black);
    text-transform: capitalize;
}

.services-details__top-text {
    position: relative;
    display: block;
    margin-left: 85px;
    margin-right: -60px;
}

.services-details__top-text-1 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--nexin-font-two);
}

.services-details__top-text-two {
    position: relative;
    display: block;
    margin-left: 90px;
}

.services-details__top-text-2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--nexin-font-two);
}

.services-details__img {
    position: relative;
    display: block;
    margin-top: 60px;
    margin-bottom: 48px;
}

.services-details__img img {
    width: 100%;
}

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

.services-details__title-1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--nexin-black);
    text-transform: capitalize;
}

.services-details__text-1 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--nexin-font-two);
    margin-top: 30px;
    margin-bottom: 71px;
}

.services-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 180px;
}

.services-details__points-list {
    position: relative;
    display: block;
}

.services-details__points-list li {
    position: relative;
    display: block;
}

.services-details__points-list li+li {
    margin-top: 11px;
}

.services-details__points-list li p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: var(--nexin-font-two);
    text-transform: capitalize;
}

.services-details__title-2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--nexin-black);
    text-transform: capitalize;
    margin: 47px 0 30px;
}

.services-details__text-2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--nexin-font-two);
}

.services-details__img-box {
    position: relative;
    display: block;
    margin-top: 51px;
    margin-bottom: 20px;
}

.services-details__img-box-img {
    position: relative;
    display: block;
    margin-right: 55px;
    margin-bottom: 19px;
}

.services-details__img-box-img img {
    width: 100%;
}

.services-details__img-box-img-2 {
    position: relative;
    display: block;
    margin-left: -55px;
    margin-bottom: 19px;
}

.services-details__img-box-img-2 img {
    width: 100%;
}

.services-details__text-3 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--nexin-font-two);
}

.services-details__text-4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--nexin-font-two);
    margin-top: 6px;
}

/*==============================================
    Services Carousel Page   
===============================================*/
.services-carousel-page {
    padding: 120px 0 90px;
}

.services-carousel-page__carousel {
    position: relative;
    display: block;
    padding-bottom: 30px;
}











/*==============================================
  Signature Specialism
===============================================*/
.signature-specialism {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
    background-color: var(--nexin-black);
}

.signature-specialism__inner {
    position: relative;
    display: block;
}

.signature-specialism__content {
    position: relative;
    display: block;
}

.signature-specialism__tag {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.signature-specialism__tag-text {
    background-color: var(--nexin-base);
    color: var(--nexin-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 50px;
}

.signature-specialism__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: var(--nexin-white);
    text-transform: capitalize;
    margin-bottom: 24px;
}

.signature-specialism__text {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: rgba(var(--nexin-white-rgb), 0.85);
    margin-bottom: 40px;
}

.signature-specialism__points {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.signature-specialism__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.signature-specialism__points li:last-child {
    margin-bottom: 0;
}

.signature-specialism__check {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--nexin-base);
    flex-shrink: 0;
}

.signature-specialism__check span {
    font-size: 14px;
    color: var(--nexin-white);
}

.signature-specialism__points li p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(var(--nexin-white-rgb), 0.7);
    margin: 0;
}

.signature-specialism__cta {
    position: relative;
    display: inline-block;
}

.signature-specialism__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--nexin-base);
    color: var(--nexin-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 500ms ease;
}

.signature-specialism__btn:hover {
    background-color: rgba(var(--nexin-base-rgb), 0.85);
}

.signature-specialism__btn span {
    font-size: 16px;
    font-weight: 700;
}

.signature-specialism__img-box {
    position: relative;
    display: block;
}

.signature-specialism__img-box img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.signature-specialism__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.signature-specialism__img-sub {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(var(--nexin-white-rgb), 0.7);
    margin-bottom: 8px;
}

.signature-specialism__img-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--nexin-white);
}

/*==============================================
    End
===============================================*/