/*==============================================
  Service One  
===============================================*/
.corp-services {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.corp-services__shape-1 {
    position: absolute;
    top: 123px;
    left: 70px;
    opacity: 0.05;
    z-index: -1;
}

.corp-services__shape-1 img {
    width: auto;
}

.corp-services__shape-2 {
    position: absolute;
    right: 75px;
    top: 120px;
    z-index: -1;
}

.corp-services__shape-2 img {
    width: auto;
}

.corp-services__top {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--corp-border);
    padding-bottom: 82px;
    margin-bottom: 60px;
}

.corp-services__top-text {
    position: relative;
    display: block;
    text-transform: capitalize;
    margin-left: 145px;
    padding-left: 60px;
}

.corp-services__top-text::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 1px;
    height: 123px;
    background-color: var(--corp-border);
}

.corp-services__bottom {
    position: relative;
    display: block;
}

.corp-services__single {
    position: relative;
    display: block;
}

.corp-services__single::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 48px;
    height: 1px;
    background-color: var(--corp-accent);
    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;
}

.corp-services__single:hover::before {
    transform: scalex(1.0);
}

.corp-services__single::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: var(--corp-accent);
    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;
}

.corp-services__single:hover::after {
    transform: scaley(1.0);
}

.corp-services__single-inner {
    position: relative;
    display: block;
    border: 1px solid var(--corp-border);
    padding: 34px 40px 32px;
    margin-bottom: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0% 50%);
}

.corp-services__single-inner-shape-1 {
    position: absolute;
    bottom: -10px;
    right: 24px;
    width: 1px;
    height: 65px;
    background-color: var(--corp-border);
    transform: rotate(48deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.corp-services__single:hover .corp-services__single-inner-shape-1 {
    background-color: var(--corp-accent);
}

.corp-services__single-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--corp-accent);
    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;
}

.corp-services__single:hover .corp-services__single-inner::before {
    transform: scalex(1.0);
}

.corp-services__single-inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: var(--corp-accent);
    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;
}

.corp-services__single:hover .corp-services__single-inner::after {
    transform: scaley(1.0);
}

.corp-services__sub-title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.corp-services__sub-title-shape-1 {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--corp-muted);
    border-radius: 50%;
}

.corp-services__title {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin: 13px 0 20px;
}

.corp-services__title a {
    color: var(--corp-dark);
}

.corp-services__title a:hover {
    color: var(--corp-accent);
}

.corp-services__icon {
    position: relative;
    display: inline-block;
}

.corp-services__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--corp-dark);
    transition: all 500ms ease;
}

.corp-services__single:hover .corp-services__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;
}

.corp-services__text {
    margin-top: 19px;
    text-transform: capitalize;
}

.corp-services__arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
}

.corp-services__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--corp-white);
    border: 1px solid var(--corp-border);
    border-radius: 50%;
    font-size: 23px;
    color: var(--corp-dark);
}

.corp-services__single:hover .corp-services__arrow a {
    background-color: var(--corp-accent);
    border: 1px solid var(--corp-accent);
    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 .corp-heading-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(--corp-dark);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    gap: 5px;
    color: var(--corp-dark);
    text-transform: capitalize;
}

.services-two__btn-box a:hover {
    border: 1px solid var(--corp-accent);
    color: var(--corp-accent);
}

.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(--corp-border);
    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(--corp-border);
    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(--corp-dark);
    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(--corp-accent);
    background-color: var(--corp-accent);
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--corp-dark);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__content-list li:hover .services-two__icon span {
    color: var(--corp-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(--corp-dark);
}

.services-two__title a:hover {
    color: var(--corp-accent);
}

.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(--corp-muted);
    counter-increment: count 1;
    content: "0"counter(count);
    font-family: var(--corp-font-heading);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__count::before {
    color: var(--corp-accent);
}

.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(--corp-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__icon img,
.services-three__icon-img {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    -webkit-transition: opacity 350ms ease, transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease;
}

.services-three__icon-swap {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 52px;
}

.services-three__icon-swap .services-three__icon-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.services-three__icon-img--hover {
    opacity: 0;
}

.services-three__single:hover .services-three__icon-swap.has-hover .services-three__icon-img:not(.services-three__icon-img--hover) {
    opacity: 0;
}

.services-three__single:hover .services-three__icon-swap.has-hover .services-three__icon-img--hover {
    opacity: 1;
}

.services-three__single:hover .services-three__icon span:not(.services-three__icon-swap) {
    -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(--corp-accent);
}

.services-three__single:hover .services-three__icon-swap {
    -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-three__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

.services-three__title a {
    color: var(--corp-white);
}

.services-three__title a:hover {
    color: var(--corp-accent);
}

.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(--corp-white);
    text-transform: capitalize;
}

.services-three__single:hover .services-three__read-more a {
    color: var(--corp-accent);
}

.services-three__read-more a span {
    font-weight: 700;
}

/*==============================================
    Services Page  
===============================================*/
.services-page {
    padding: 120px 0 120px;
}

.services-page .services-three__icon span:not(.services-three__icon-swap) {
    color: var(--corp-dark);
}

.services-page .services-three__title a {
    color: var(--corp-dark);
}

.services-page .services-three__single:hover .services-three__title a {
    color: var(--corp-white);
}

.services-page .services-three__read-more a {
    color: var(--corp-dark);
}

.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(--corp-dark);
    font-weight: 400;
    font-size: 18px;
    border-radius: 50%;
    background-color: transparent;
    font-family: var(--corp-font-heading);
    -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(--corp-dark);
    color: var(--corp-white);
}

.services-page__pagination .pg-pagination li:first-child:hover a {
    background-color: transparent;
    color: var(--corp-accent);
}

.services-page__pagination .pg-pagination li:last-child:hover a {
    background-color: transparent;
    color: var(--corp-accent);
}

.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: 90px 0 100px;
    overflow: hidden;
    z-index: 1;
}

.services-details__atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.services-details__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(var(--corp-border-rgb), 0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--corp-border-rgb), 0.55) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 55% at 80% 12%, #000 20%, transparent 72%);
}

.services-details__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.services-details__orb--one {
    width: 280px;
    height: 280px;
    top: 40px;
    right: 8%;
    background: rgba(var(--corp-accent-rgb), 0.22);
    animation: services-details-float 8s ease-in-out infinite;
}

.services-details__orb--two {
    width: 180px;
    height: 180px;
    top: 320px;
    left: -40px;
    background: rgba(var(--corp-dark-rgb), 0.05);
    animation: services-details-float 10s ease-in-out infinite reverse;
}

@keyframes services-details-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.services-details .container {
    position: relative;
    z-index: 1;
}

.services-details__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 280px);
    gap: 48px 56px;
    align-items: center;
    margin-bottom: 72px;
}

.services-details__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--corp-dark);
}

.services-details__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--corp-accent);
    box-shadow: 0 0 0 4px rgba(var(--corp-accent-rgb), 0.25);
}

.services-details__icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border: 1px solid var(--corp-border);
    background: var(--corp-white);
}

.services-details__icon-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.services-details__icon-badge span {
    font-size: 24px;
    color: var(--corp-dark);
    line-height: 1;
}

.services-details__title {
    max-width: 14ch;
    margin: 0 0 22px;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.12;
    color: var(--corp-dark);
    text-transform: capitalize;
}

.services-details__lead,
.services-details__lead-secondary {
    max-width: 38ch;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    font-family: var(--corp-font-heading);
    color: var(--corp-muted);
}

.services-details__lead-secondary {
    margin-top: 12px;
}

.services-details__hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
    margin-top: 32px;
}

.services-details__text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--corp-dark);
}

.services-details__text-link:hover {
    color: var(--corp-dark);
}

.services-details__text-link span {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-details__text-link:hover span {
    transform: translate(3px, -3px);
}

.services-details__hero-media {
    position: relative;
    justify-self: end;
}

.services-details__media-frame {
    position: relative;
    width: min(100%, 260px);
    aspect-ratio: 1;
}

.services-details__media-accent {
    position: absolute;
    inset: 14px -14px -14px 14px;
    background: var(--corp-accent);
    z-index: 0;
    animation: services-details-accent 6s ease-in-out infinite;
}

@keyframes services-details-accent {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(6px, -6px); }
}

.services-details__media-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(var(--corp-dark-rgb), 0.08);
    transition: transform 0.55s ease;
}

.services-details__media-frame:hover img {
    transform: scale(1.03);
}

.services-details__body {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 300px);
    gap: 48px 56px;
    align-items: start;
}

.services-details__section + .services-details__section,
.services-details__section + .services-details__approach {
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid var(--corp-border);
}

.services-details__section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--corp-dark);
}

.services-details__section-title {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.25;
    color: var(--corp-dark);
    text-transform: capitalize;
}

.services-details__section-text {
    margin: 0;
    max-width: 52ch;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    font-family: var(--corp-font-heading);
    color: var(--corp-muted);
}

.services-details__deliverables {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 0;
}

.services-details__deliverable {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    border: 1px solid var(--corp-border);
    background:
        linear-gradient(135deg, rgba(var(--corp-accent-rgb), 0.12), transparent 55%),
        var(--corp-white);
    transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.services-details__deliverable:hover {
    border-color: rgba(var(--corp-dark-rgb), 0.35);
    transform: translateY(-2px);
    background:
        linear-gradient(135deg, rgba(var(--corp-accent-rgb), 0.22), transparent 60%),
        var(--corp-white);
}

.services-details__deliverable-num {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--corp-dark);
}

.services-details__deliverable-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--corp-dark);
    text-transform: capitalize;
}

.services-details__approach {
    margin-top: 56px;
    padding: 36px 34px;
    background:
        radial-gradient(circle at top right, rgba(var(--corp-accent-rgb), 0.35), transparent 42%),
        var(--corp-dark);
    color: var(--corp-white);
}

.services-details__approach .services-details__section-label {
    color: var(--corp-accent);
}

.services-details__approach .services-details__section-title {
    color: var(--corp-white);
}

.services-details__approach .services-details__section-text {
    color: rgba(var(--corp-white-rgb), 0.78);
    margin-bottom: 28px;
}

.services-details__aside {
    position: sticky;
    top: 110px;
}

.services-details__rail {
    padding: 28px 24px;
    border: 1px solid var(--corp-border);
    background: rgba(var(--corp-white-rgb), 0.88);
    backdrop-filter: blur(6px);
}

.services-details__rail-title {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 500;
    color: var(--corp-dark);
}

.services-details__rail-list > li + li {
    margin-top: 10px;
}

.services-details__rail-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid transparent;
    color: var(--corp-dark);
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.services-details__rail-link:hover {
    border-color: var(--corp-border);
    background: rgba(var(--corp-accent-rgb), 0.12);
    color: var(--corp-dark);
    transform: translateX(3px);
}

.services-details__rail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--corp-surface);
}

.services-details__rail-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.services-details__rail-icon span {
    font-size: 16px;
    line-height: 1;
}

.services-details__rail-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.services-details__rail-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.services-details__rail-arrow {
    font-size: 11px;
    opacity: 0.55;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.services-details__rail-link:hover .services-details__rail-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.services-details__rail-empty {
    font-size: 14px;
    color: var(--corp-muted);
}

@media (max-width: 1199px) {
    .services-details__hero {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
        gap: 36px;
    }

    .services-details__body {
        grid-template-columns: minmax(0, 1.4fr) minmax(220px, 260px);
        gap: 36px;
    }
}

@media (max-width: 991px) {
    .services-details {
        padding: 70px 0 80px;
    }

    .services-details__hero,
    .services-details__body {
        grid-template-columns: 1fr;
    }

    .services-details__hero-media {
        justify-self: start;
        order: -1;
    }

    .services-details__media-frame {
        width: 200px;
    }

    .services-details__title {
        max-width: none;
    }

    .services-details__aside {
        position: static;
    }
}

@media (max-width: 767px) {
    .services-details__deliverables {
        grid-template-columns: 1fr;
    }

    .services-details__approach {
        padding: 28px 22px;
    }

    .services-details__orb--one {
        width: 180px;
        height: 180px;
    }
}

/* Legacy hooks kept for older markup references */
.services-details__top,
.services-details__top-left,
.services-details__content,
.services-details__img,
.services-details__img-box,
.services-details__points-box,
.services-details__points-list {
    position: relative;
    display: block;
}

.services-details__top-title,
.services-details__title-1,
.services-details__title-2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    color: var(--corp-dark);
    text-transform: capitalize;
}

.services-details__top-text-1,
.services-details__top-text-2,
.services-details__text-1,
.services-details__text-2,
.services-details__text-3,
.services-details__text-4 {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--corp-font-heading);
}

/*==============================================
    Services Carousel Page   
===============================================*/
.services-carousel-page {
    padding: 120px 0 90px;
}

.services-carousel-page__carousel {
    position: relative;
    display: block;
    padding-bottom: 30px;
}











/*==============================================
    End   
===============================================*/