/* =========================================================
   GENESIS IT SOLUTIONS
   CLEAN / MODERN / USER-FRIENDLY SERVICE DETAIL DESIGN
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {
    --green: #a9e09d;
    --green-dark: #6dbb64;
    --green-soft: #ddfdd4;
    --green-pale: #f7fcf5;

    --black: #262626;
    --black-soft: #4d4d4d;

    --white: #ffffff;

    --gray: #707070;
    --gray-light: #f6f7f5;

    --border: #e5eee2;

    --shadow-sm: 0 8px 25px rgba(35, 60, 30, 0.05);
    --shadow-md: 0 18px 45px rgba(35, 60, 30, 0.08);
    --shadow-lg: 0 25px 65px rgba(35, 60, 30, 0.12);

    --radius: 18px;
    --radius-lg: 24px;

    --transition: all 0.3s ease;
}


/* =========================================================
   GLOBAL RESET
========================================================= */



img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
}

::selection {
    background: var(--green);
    color: var(--black);
}

/* ============================================================ */


.banner {
    position: relative;
    width: 100%;
    max-width: 1240px;
    aspect-ratio: 16/8.2;
    background: var(--bg-light);
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(10, 30, 25, 0.35);
    display: grid;
    grid-template-columns: 1fr 1.12fr;
}

/* dotted texture top-right of left panel */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38%;
    width: 30%;
    height: 55%;
    background-image: radial-gradient(rgba(20, 60, 50, 0.15) 1.4px, transparent 1.4px);
    background-size: 9px 9px;
    -webkit-mask-image: linear-gradient(to bottom right, black, transparent 70%);
    mask-image: linear-gradient(to bottom right, black, transparent 70%);
    pointer-events: none;
}

/* ---------- LEFT PANEL ---------- */
.left {
    position: relative;
    padding: 6% 4.5% 6% 6.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.icon-badge {
    width: 62px;
    height: 62px;
    background: #fff;
    clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(20, 60, 50, 0.12);
    margin-bottom: 22px;
}

.icon-badge i {
    font-size: 24px;
    color: var(--green);
}

.eyebrow {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.14em;
    color: var(--green);
    margin-bottom: 10px;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.08;
    letter-spacing: 0.005em;
    color: var(--navy);
    text-transform: uppercase;
}

h1 .accent {
    color: var(--green);
}

.rule {
    width: 64px;
    height: 3px;
    background: var(--green);
    margin: 18px 0 16px;
}

.desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-body);
    max-width: 46ch;
    margin-bottom: 22px;
}

.features {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(20, 60, 50, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 0px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    border-right: 1px solid #e7ebe9;
}

.feature:last-child {
    border-right: none;
}

.feature .circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .circle i {
    font-size: 16px;
    color: var(--green);
}

.feature .label {
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.25;
    color: var(--navy);
}

.feature .label span {
    display: block;
    font-weight: 500;
    color: var(--text-body);
}

/* ---------- RIGHT PANEL ---------- */
.right {
    position: relative;
    overflow: hidden;
}

.photo {
    position: absolute;
    inset: 0;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%, 0% 42%);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
}

.photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 25, 0.05), rgba(6, 25, 20, 0.15) 70%, rgba(4, 20, 16, 0.55));
}

/* =========================================================
   GREEN OVERLAY PIECES (wedge / bottom panel / info panel)
   Default: all visible, each keeping its own direction/position.
   On hover of the whole .right (image) area: hide all three so
   only the plain photo is shown underneath.
========================================================= */

.green-wedge-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 32%;
    height: 52%;
    background: var(--green);
    clip-path: polygon(0 0, 68% 0, 100% 100%, 0% 100%);
}

.green-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 34%;
    background: var(--green);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
}

.green-panel-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    padding: 0 5% 0 0;
    background: rgba(0, 0, 0, 0.18);
}

/* Default: all three overlay pieces visible, each in its own
   position/direction. Slow fade transition for a smooth swap. */
.green-panel,
.green-wedge-top,
.green-panel-inner {
    opacity: 1;
    visibility: visible;
    transition:
        opacity 1s ease,
        visibility 1s ease;
}

/* Hovering anywhere over the image (.right) slowly fades out all
   three overlay pieces so only the plain photo remains visible. */
.right:hover .green-panel,
.right:hover .green-wedge-top,
.right:hover .green-panel-inner {
    opacity: 0;
    visibility: hidden;
}


.badge-icon {
    width: 64px;
    height: 64px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 44px;
    color: #fff;
}

.green-text h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 1.5vw, 20px);
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.25;
}

.green-text h2.hl {
    color: rgba(255, 255, 255, 0.65);
}

.green-text .divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 8px 0;
}

.green-text p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media (max-width:820px) {
    .banner {
        grid-template-columns: 1fr;
        aspect-ratio: auto;
    }

    .right {
        height: 340px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 14px;
    }

    .feature {
        border-right: none;
    }

    .green-panel-inner {
        padding: 0 4%;
        gap: 14px;
    }
}


/* =========================================================
   MAIN SERVICE SECTION
========================================================= */

.gnx-detail {
    position: relative;
    padding: 10px 0 10px;
    background-color: #eaf8ee;
    overflow: hidden;
}

.gnx-detail::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    top: -120px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: eduTopFloat 8s ease-in-out infinite;
}

.gnx-detail::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: eduBottomFloat 10s ease-in-out infinite;
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.gnx-detail__circle {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -230px;
    top: 100px;

    background: var(--green-soft);

    border-radius: 50%;

    opacity: 0.8;

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.gnx-detail__content-col {
    position: relative;
    z-index: 2;
}

.gnx-detail__content {
    padding-right: 35px;
}


/* =========================================================
   INTRO / APPROACH
========================================================= */

.gnx-feature {
    margin-bottom: 45px;
}

.gnx-feature__inner {
    position: relative;

    padding: 38px;

    background: var(--green-soft);

    border: 1px solid #dcebd8;
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.gnx-feature__inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.gnx-feature__icon {
    width: 64px;
    height: 64px;

    margin-bottom: 22px;

    border-radius: 15px;

    overflow: hidden;

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.gnx-feature__icon img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   FEATURE TITLE
========================================================= */

.gnx-feature h3 {
    margin-bottom: 15px;

    color: var(--green-dark);

    font-size: 13px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 2px;
}

.gnx-feature p {
    margin: 0;

    color: var(--black-soft);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   IMAGE
========================================================= */

.gnx-detail__image,
.gnx-detail__image-alt {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--green-soft);

    box-shadow: var(--shadow-md);
}

.gnx-detail__image {
    margin-top: 35px;
}

.gnx-detail__image-alt {
    height: 560px;
}

.gnx-detail__image img,
.gnx-detail__image-alt img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.gnx-detail__image:hover img,
.gnx-detail__image-alt:hover img {
    transform: scale(1.04);
}


/* Image overlay */

.gnx-detail__image::after,
.gnx-detail__image-alt::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(135deg,
            rgba(169, 224, 157, 0.12),
            transparent 55%);

    pointer-events: none;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.gnx-inner>h3 {
    position: relative;

    margin-top: 40px;
    margin-bottom: 10px;

    padding-left: 18px;

    color: var(--black);

    font-size: 27px;
    line-height: 1.35;

    font-weight: 800;
}


/* Green heading line */

.gnx-inner>h3::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 5px;
    height: calc(100% - 8px);

    background: var(--green);

    border-radius: 10px;
}

.gnx-inner>p {
    max-width: 1000px;

    margin-bottom: 28px;

    color: var(--gray);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   SERVICES
========================================================= */

.gnx-services {
    margin-top: 40px;
    margin-bottom: 40px;
}

.gnx-services>h3 {
    margin-bottom: 42px;

    color: var(--black);

    font-size: 32px;
    line-height: 1.3;

    font-weight: 800;

    text-align: center;
}


/* =========================================================
   CARD GRID
========================================================= */

.gnx-card-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.gnx-card {
    position: relative;

    min-height: 310px;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.gnx-card:hover {
    transform: translateY(-7px);

    border-color: #cfe4c9;

    box-shadow: var(--shadow-lg);
}


/* Decorative circle */

.gnx-card::before {
    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    top: -75px;
    right: -75px;

    border-radius: 50%;

    background: var(--green-soft);

    transition: var(--transition);

    z-index: 0;
}

.gnx-card:hover::before {
    width: 190px;
    height: 190px;
}


/* Bottom line */

.gnx-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--green);

    transition: width 0.35s ease;
}

.gnx-card:hover::after {
    width: 100%;
}


/* =========================================================
   CARD TOP
========================================================= */

.gnx-card__top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 22px;
}


/* =========================================================
   CARD ICON
========================================================= */

.gnx-card__icon {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    overflow: hidden;

    border-radius: 15px;

    background: var(--green-soft);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

.gnx-card__icon img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.gnx-card:hover .gnx-card__icon {
    background: var(--green);
}

.gnx-card:hover .gnx-card__icon img {
    transform: scale(1.07);
}


/* =========================================================
   CARD TITLE
========================================================= */

.gnx-card h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 800;
}

.gnx-card h3 a {
    color: var(--black);
}

.gnx-card h3 a:hover {
    color: var(--green-dark);
}


/* =========================================================
   CARD TEXT
========================================================= */

.gnx-card p {
    position: relative;
    z-index: 2;

    margin-bottom: 60px;

    color: var(--gray);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   CARD ARROW
========================================================= */

.gnx-card__arrow {
    position: absolute;

    right: 28px;
    bottom: 25px;

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: var(--black);

    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    z-index: 3;

    transition: var(--transition);
}

.gnx-card__arrow:hover,
.gnx-card:hover .gnx-card__arrow {
    background: var(--green);

    color: var(--black);

    transform: translateX(4px);
}


/* =========================================================
   VIDEO
========================================================= */

.gnx-video {
    position: relative;

    width: 100%;
    min-height: 420px;

    margin: 90px 0;

    border-radius: var(--radius-lg);

    overflow: hidden;

    background: var(--green-soft);

    box-shadow: var(--shadow-md);

    display: flex;
    align-items: center;
    justify-content: center;
}

.gnx-video>img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.82;

    transition: transform 0.7s ease;
}

.gnx-video:hover>img {
    transform: scale(1.03);
}


/* Video overlay */

.gnx-video::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.25);

    pointer-events: none;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.gnx-video__play {
    position: relative;
    z-index: 5;

    width: 86px;
    height: 86px;

    border-radius: 50%;

    background: var(--green);

    color: var(--black);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);

    transition: var(--transition);
}

.gnx-video__play:hover {
    background: var(--white);

    transform: scale(1.08);
}

.gnx-video__play .fa-play {
    margin-left: 4px;
}


/* =========================================================
   ACCORDION
========================================================= */

.gnx-accordion {
    list-style: none;

    margin: 30px 0 30px;

    padding: 0;

    border-radius: var(--radius);

    overflow: hidden;

    border: 1px solid var(--border);
}

.gnx-accordion__item {
    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.gnx-accordion__item:last-child {
    border-bottom: 0;
}


/* =========================================================
   ACCORDION BUTTON
========================================================= */

.gnx-accordion__btn {
    position: relative;

    min-height: 72px;

    padding: 20px 70px;

    display: flex;
    align-items: center;

    color: var(--black);

    background: var(--white);

    font-size: 14px;
    line-height: 1.5;

    font-weight: 800;

    letter-spacing: 0.3px;

    cursor: pointer;

    transition: var(--transition);
}

.gnx-accordion__btn:hover,
.gnx-accordion__btn--active {
    background: var(--green-soft);
}


/* =========================================================
   ACCORDION ICON
========================================================= */

.gnx-accordion__icon {
    position: absolute;

    left: 20px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: var(--gray-light);

    color: var(--black);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

.gnx-accordion__btn:hover .gnx-accordion__icon,
.gnx-accordion__btn--active .gnx-accordion__icon {
    background: var(--green);
    color: #fff;
    transform: rotate(180deg);
}


/* Plus/minus */

.gnx-accordion__icon-minus {
    display: none;
}

.gnx-accordion__btn--active .gnx-accordion__icon-plus {
    display: none;
}

.gnx-accordion__btn--active .gnx-accordion__icon-minus {
    display: inline-block;
}


/* =========================================================
   ACCORDION CONTENT
========================================================= */

.gnx-accordion__content {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    background: var(--white);

    transition:
        grid-template-rows 0.35s ease,
        opacity 0.3s ease;
}

.gnx-accordion__content--open {
    grid-template-rows: 1fr;

    opacity: 1;
}

.gnx-accordion__content-inner {
    min-height: 0;

    overflow: hidden;

    padding: 0 30px 0 70px;

    transition: padding 0.35s ease;
}

.gnx-accordion__content--open .gnx-accordion__content-inner {
    padding-top: 5px;
    padding-bottom: 28px;
}

.gnx-accordion__text {
    color: var(--gray);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   RESEARCH CONTACT
========================================================= */

.gnx-inner>h4 {
    display: inline-flex;
    align-items: center;

    padding: 14px 20px;

    background: var(--green-soft);

    border: 1px solid #dcebd8;

    border-radius: 12px;

    color: var(--black);

    font-size: 14px;
    line-height: 1.5;

    font-weight: 700;

    margin-top: 5px;
}

.gnx-inner>h4 a{
    padding-left: 5px;
    color: green;
}


/* =========================================================
   CTA
========================================================= */

.gnx-cta {
    padding: 40px 0;
    background: var(--white) !important;
}

.gnx-cta .gnx-inner {
    position: relative;

    min-height: 340px;

    padding: 65px 60px;

    background: var(--green-soft) !important;

    border: 1px solid #dcebd8;

    border-radius: var(--radius-lg) !important;

    overflow: hidden;

    box-shadow: var(--shadow-md);
}


/* Background image */

.gnx-cta__bg {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0.05 !important;

    pointer-events: none;
}


/* Content */

.gnx-cta__content {
    position: relative;

    z-index: 3;

    max-width: 720px;
}


/* Decorative vector */

.gnx-cta__vector {
    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -90px;

    background-size: contain;
    background-repeat: no-repeat;

    opacity: 0.08 !important;

    pointer-events: none;
}


/* =========================================================
   CTA TITLE
========================================================= */

.gnx-sec-title__label {
    margin-bottom: 12px;

    color: var(--green-dark) !important;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: 800 !important;
}

.gnx-sec-title__heading {
    margin-bottom: 18px;

    color: var(--black) !important;

    font-size: clamp(32px, 5vw, 52px);

    line-height: 1.15;

    font-weight: 800;
}

.gnx-sec-title__text {
    max-width: 600px;

    margin-bottom: 30px;

    color: var(--black-soft) !important;

    font-size: 15px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.gnx-cta__button {
    position: relative;
    z-index: 5;
}

.gnx-btn.gnx-btn--primary {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 185px;
    min-height: 54px;

    padding: 0 28px;

    border-radius: 10px !important;

    background: var(--black) !important;

    color: var(--white) !important;

    border: 2px solid var(--black) !important;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}

.gnx-btn.gnx-btn--primary:hover {
    background: var(--green) !important;

    border-color: var(--green) !important;

    color: var(--black) !important;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   ACCESSIBILITY / FOCUS
========================================================= */

a:focus-visible,
button:focus-visible,
.gnx-accordion__btn:focus-visible {
    outline: 3px solid rgba(109, 187, 100, 0.45);

    outline-offset: 4px;
}


/* =========================================================
   SIMPLE REVEAL
========================================================= */

.gnx-wow {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

    transition-delay: calc(var(--wow-i, 0) * 80ms);
}

.gnx-wow.gnx-wow--in {
    opacity: 1;

    transform: translateY(0);
}


/* Wipe variant */

.gnx-wow--wipe {
    opacity: 0;

    transform: translateY(20px);

    clip-path: inset(0 0 0 0);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.gnx-wow--wipe.gnx-wow--in {
    opacity: 1;

    transform: translateY(0);
}


/* Heading variant */

.gnx-wow--line {
    opacity: 0;

    transform: translateX(-20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.gnx-wow--line.gnx-wow--in {
    opacity: 1;

    transform: translateX(0);
}


/* Cards */

.gnx-wow--card {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;

    transition-delay: calc(var(--wow-i, 0) * 100ms);
}

.gnx-wow--card.gnx-wow--in {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   REMOVE EXCESSIVE CARD / ICON ANIMATION
========================================================= */

.gnx-card__icon,
.gnx-feature__icon {
    opacity: 1;

    transform: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gnx-detail {
        padding: 75px 0 80px;
    }

    .gnx-detail__content {
        padding-right: 0;
    }

    .gnx-detail__image-alt {
        height: 450px;

        margin-top: 35px;
    }

    .gnx-detail__circle {
        width: 300px;
        height: 300px;

        right: -180px;
    }

    .gnx-services {
        margin-top: 70px;
    }

    .gnx-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gnx-cta .gnx-inner {
        padding: 55px 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .auto-container,
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .gnx-detail {
        padding: 55px 0 65px;
    }

    .gnx-feature {
        margin-bottom: 30px;
    }

    .gnx-feature__inner {
        padding: 28px 23px;
    }

    .gnx-feature p {
        font-size: 14px;

        line-height: 1.8;
    }

    .gnx-detail__image {
        margin-top: 25px;
    }

    .gnx-detail__image-alt {
        height: 350px;

        margin-top: 25px;
    }

    .gnx-inner>h3 {
        margin-top: 55px;
        margin-bottom: 17px;

        font-size: 22px;
    }

    .gnx-inner>p {
        font-size: 14px;

        line-height: 1.85;

        margin-bottom: 22px;
    }

    .gnx-services {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .gnx-services>h3 {
        margin-bottom: 30px;

        font-size: 27px;
    }

    .gnx-card-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .gnx-card {
        min-height: 280px;

        padding: 26px 23px;
    }

    .gnx-card p {
        font-size: 13px;
    }

    .gnx-video {
        min-height: 280px;

        margin: 65px 0;
    }

    .gnx-video__play {
        width: 70px;
        height: 70px;

        font-size: 19px;
    }

    .gnx-accordion {
        margin: 35px 0 50px;
    }

    .gnx-accordion__btn {
        min-height: 64px;

        padding: 18px 20px 18px 58px;

        font-size: 12px;
    }

    .gnx-accordion__icon {
        left: 14px;

        width: 32px;
        height: 32px;
    }

    .gnx-accordion__content-inner {
        padding-left: 58px;
        padding-right: 20px;
    }

    .gnx-accordion__content--open .gnx-accordion__content-inner {
        padding-bottom: 22px;
    }

    .gnx-accordion__text {
        font-size: 13px;

        line-height: 1.8;
    }

    .gnx-inner>h4 {
        font-size: 12px;

        line-height: 1.6;

        padding: 12px 15px;
    }

    .gnx-cta {
        padding: 55px 0;
    }

    .gnx-cta .gnx-inner {
        min-height: auto;

        padding: 45px 25px;

        border-radius: 20px !important;
    }

    .gnx-sec-title__heading {
        font-size: 34px;
    }

    .gnx-sec-title__text {
        font-size: 14px;
    }

    .gnx-btn.gnx-btn--primary {
        width: 100%;
    }

    .gnx-cta__vector {
        width: 230px;
        height: 230px;

        right: -100px;
        top: -70px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .gnx-detail {
        padding-top: 45px;
    }

    .gnx-feature__icon {
        width: 55px;
        height: 55px;
    }

    .gnx-feature h3 {
        font-size: 12px;
    }

    .gnx-inner>h3 {
        font-size: 20px;
    }

    .gnx-card__top {
        gap: 13px;
    }

    .gnx-card__icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .gnx-card h3 {
        font-size: 18px;
    }

    .gnx-card p {
        font-size: 13px;
    }

    .gnx-video {
        min-height: 230px;
    }

    .gnx-sec-title__heading {
        font-size: 29px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;

        transition-duration: 0.01ms !important;
    }

    .gnx-wow,
    .gnx-wow--wipe,
    .gnx-wow--line,
    .gnx-wow--card {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f7f4;
}

::-webkit-scrollbar-thumb {
    background: #b7dcb0;

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}