/* --- Content from: ./prodcss\root.css --- */
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root
{
    --nav_height : 80px;
    --Roboto : 'Roboto', sans-serif;
    --OpenSans : 'Open Sans', sans-serif;
    --Poppins : 'Poppins', sans-serif;

    --NG_blue : #0a0a8d;
    --NG_dark_blue : #010164;
}

.over-photo-header
{
    color: #fff;
    font-size: 30px;
    font-family: var(--Roboto);
    font-weight: 500;
    letter-spacing: 0.05rem;
    padding-bottom: 20px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.over-photo-description
{
    color: #d6d6d6;
    font-size: 18px;
    font-family: var(--OpenSans);
    font-weight: 400;
    letter-spacing: 0.02rem;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.background-partners
{
    background-color: #080846;
}

.overflow-hidden
{
    overflow: hidden;
}

@media (max-width: 425px)
{
    .over-photo-header
    {
        font-size: 25px;
    }

    .over-photo-description
    {
        font-size: 14px;
    }
}


/* --- Content from: ./prodcss\nav.css --- */
.site-nav
{
    height: var(--nav_height);
    position: relative;
    z-index: 999;
    background-color: #fff;
    border-bottom: 1px solid rgba(17, 25, 54, 0.15);
}

.site-nav__inner
{
    width: min(1420px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-color: #fff;
}

.nav-logo
{
    display: flex;
    align-items: center;
    grid-column: 1;
    justify-self: start;
}

.nav-logo a,
.mobile-nav__logo
{
    display: flex;
    align-items: center;
}

.nav-logo img,
.mobile-nav__logo img
{
    display: block;
}

.access-bar
{
    height: 100%;
    grid-column: 2;
}

.access-bar ul
{
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: clamp(24px, 3vw, 48px);
}

.access-bar li,
.mobile-nav-access-bar li
{
    list-style: none;
}

.access-bar a
{
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: #323746;
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 160ms ease;
}

.access-bar a:hover,
.access-bar .nav-link--active
{
    color: var(--NG_blue);
}

.access-bar .nav-link--active::after
{
    content: '';
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--NG_blue);
}

.mobile-nav-button,
.mobile-nav
{
    display: none;
}

.background-minifier
{
    display: none;
}

@media (max-width: 1024px)
{
    .site-nav__inner
    {
        width: calc(100% - 40px);
        display: grid;
        grid-template-columns: 40px 1fr 40px;
    }

    .access-bar
    {
        display: none;
    }

    .nav-logo
    {
        grid-column: 2;
        justify-content: center;
        margin: 0;
    }

    .mobile-nav-button
    {
        width: 40px;
        height: 40px;
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        color: #111936;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-nav-button svg,
    .nav-close-button svg
    {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
    }

    .mobile-nav
    {
        width: min(360px, calc(100% - 32px));
        height: 100vh;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 0 28px 30px;
        background: #fff;
        transform: translateX(-102%);
        transition: transform 240ms ease;
        overflow-y: auto;
    }

    .mobile-nav-opened
    {
        transform: translateX(0);
    }

    .mobile-nav__header
    {
        min-height: var(--nav_height);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(17, 25, 54, 0.15);
    }

    .nav-close-button
    {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        color: #111936;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-nav-access-bar
    {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 42px 0;
    }

    .mobile-nav-access-bar ul
    {
        width: 100%;
    }

    .mobile-nav-access-bar li
    {
        border-bottom: 1px solid rgba(17, 25, 54, 0.12);
    }

    .mobile-nav-access-bar a
    {
        min-height: 62px;
        display: flex;
        align-items: center;
        color: #34394d;
        font-family: var(--Poppins);
        font-size: 17px;
        font-weight: 400;
        text-decoration: none;
    }

    .mobile-nav-access-bar .nav-link--active
    {
        color: var(--NG_blue);
        font-weight: 500;
    }

    .mobile-nav__footer
    {
        padding-top: 22px;
        border-top: 1px solid rgba(17, 25, 54, 0.15);
        font-family: var(--OpenSans);
    }

    .mobile-nav__footer p
    {
        color: #111936;
        font-size: 13px;
        font-weight: 600;
    }

    .mobile-nav__footer span
    {
        display: block;
        margin-top: 4px;
        color: #686d7e;
        font-size: 12px;
    }

    .background-minifier
    {
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 900;
        top: 0;
        left: 0;
        display: block;
        background: #11131b;
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .background-minifier-opened
    {
        opacity: 0.42;
        pointer-events: auto;
    }
}


/* --- Content from: ./prodcss\footer.css --- */
.site-footer
{
    color: #111936;
    background: #fff;
    border-top: 1px solid rgba(17, 25, 54, 0.15);
}

.site-footer__inner
{
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(70px, 8vw, 110px) 0;
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(160px, 0.55fr) minmax(260px, 0.8fr);
    gap: clamp(48px, 8vw, 120px);
}

.site-footer__brand img
{
    display: block;
}

.site-footer__brand p
{
    max-width: 390px;
    margin-top: 28px;
    color: #5a6073;
    font-family: var(--OpenSans);
    font-size: 15px;
    line-height: 1.75;
}

.site-footer h2
{
    margin-bottom: 24px;
    color: #34394d;
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
}

.site-footer ul
{
    display: grid;
    gap: 13px;
}

.site-footer li
{
    list-style: none;
}

.site-footer a,
.site-footer address,
.site-footer__bottom p
{
    color: #4f5568;
    font-family: var(--OpenSans);
    font-size: 14px;
    font-style: normal;
    line-height: 1.65;
    text-decoration: none;
}

.site-footer a
{
    transition: color 160ms ease;
}

.site-footer a:hover
{
    color: var(--NG_blue);
}

.site-footer__contact address
{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.site-footer__contact address p
{
    margin-bottom: 5px;
}

.site-footer__bottom
{
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    padding: 24px 0 28px;
    border-top: 1px solid rgba(17, 25, 54, 0.13);
}

.site-footer__bottom p
{
    color: #6c7180;
    font-size: 12px;
}

@media (max-width: 820px)
{
    .site-footer__inner
    {
        width: calc(100% - 48px);
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand
    {
        grid-column: 1 / -1;
        padding-bottom: 44px;
        border-bottom: 1px solid rgba(17, 25, 54, 0.13);
    }

    .site-footer__bottom
    {
        width: calc(100% - 48px);
    }
}

@media (max-width: 540px)
{
    .site-footer__inner
    {
        width: calc(100% - 40px);
        padding: 72px 0 58px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .site-footer__brand
    {
        grid-column: auto;
        padding-bottom: 38px;
    }

    .site-footer__bottom
    {
        width: calc(100% - 40px);
    }
}


/* --- Content from: ./prodcss\contact.css --- */
.contact-page
{
    --contact-ink: #111936;
    --contact-blue: #18258f;
    --contact-line: rgba(17, 25, 54, 0.17);
    color: var(--contact-ink);
    background: #fff;
}

.contact-hero
{
    width: min(1380px, calc(100% - 48px));
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
    gap: clamp(56px, 8vw, 120px);
    align-items: center;
    margin: 0 auto;
    padding: 54px 0;
    border-bottom: 1px solid var(--contact-line);
}

.contact-hero__content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(0px, 2vw, 28px);
}

.contact-hero h1
{
    max-width: 560px;
    margin-bottom: 26px;
    font-family: var(--Poppins);
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.contact-hero p
{
    max-width: 480px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 17px;
    line-height: 1.75;
}

.contact-hero__image
{
    height: 500px;
    background-image: url(/img/contact.jpg);
    background-position: center;
    background-size: cover;
}

.contact-layout
{
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(90px, 10vw, 140px) 0;
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}

.contact-details h2,
.contact-form-heading h2
{
    font-family: var(--Poppins);
    font-size: clamp(27px, 2.5vw, 34px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.contact-details > p
{
    margin-top: 20px;
    color: #5a6073;
    font-family: var(--OpenSans);
    font-size: 15px;
    line-height: 1.75;
}

.contact-details dl
{
    margin-top: 48px;
}

.contact-details dl > div
{
    padding: 22px 0;
    border-top: 1px solid var(--contact-line);
}

.contact-details dl > div:last-child
{
    border-bottom: 1px solid var(--contact-line);
}

.contact-details dt
{
    margin-bottom: 8px;
    color: #34394d;
    font-family: var(--Poppins);
    font-size: 12px;
    font-weight: 500;
}

.contact-details dd,
.contact-details a
{
    color: var(--contact-ink);
    font-family: var(--OpenSans);
    font-size: 15px;
    line-height: 1.65;
    text-decoration: none;
}

.contact-details a:hover
{
    color: var(--contact-blue);
}

.contact-form-panel
{
    padding-left: clamp(40px, 6vw, 86px);
    border-left: 1px solid var(--contact-line);
}

.contact-form-heading
{
    margin-bottom: 44px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.contact-form-heading p
{
    color: #34394d;
    font-family: var(--OpenSans);
    font-size: 13px;
}

.contact-form
{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}

.contact-field
{
    min-width: 0;
    position: relative;
}

.contact-field label
{
    display: block;
    margin-bottom: 10px;
    color: var(--contact-ink);
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
}

.input,
.textarea
{
    width: 100%;
    color: var(--contact-ink);
    background: #fff;
    border: 1px solid var(--contact-line);
    border-radius: 4px;
    outline: none;
    font-family: var(--OpenSans);
    font-size: 15px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.input
{
    height: 54px;
    padding: 0 15px;
}

.textarea
{
    min-height: 180px;
    padding: 14px 15px;
    line-height: 1.6;
    resize: vertical;
}

.input:hover,
.textarea:hover
{
    border-color: rgba(17, 25, 54, 0.34);
}

.input:focus,
.textarea:focus
{
    border-color: var(--contact-blue);
    box-shadow: 0 0 0 3px rgba(24, 37, 143, 0.1);
}

.textarea-box
{
    grid-column: 1 / -1;
}

.error-message
{
    min-height: 30px;
    padding: 7px 2px 0;
    color: #ba2525;
    font-family: var(--OpenSans);
    font-size: 12px;
    line-height: 1.45;
    opacity: 0;
}

.error-message-opened
{
    opacity: 1;
}

.input.error-border,
.textarea.error-border
{
    border-color: #ba2525;
}

.input.error-border:focus,
.textarea.error-border:focus
{
    box-shadow: 0 0 0 3px rgba(186, 37, 37, 0.1);
}

.contact-form-footer
{
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 10px;
}

.submit
{
    min-height: 44px;
    padding: 0 18px;
    color: #fff;
    background: var(--contact-blue);
    border: 1px solid var(--contact-blue);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.submit:hover
{
    background: #101b72;
    border-color: #101b72;
}

.submit:focus-visible
{
    box-shadow: 0 0 0 3px rgba(24, 37, 143, 0.16);
}

.submit:disabled
{
    cursor: wait;
    opacity: 0.68;
}

.contact-response
{
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.contact-response-error-svg,
.contact-response-success-svg
{
    display: none;
    flex: 0 0 auto;
}

.contact-response svg
{
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-response-error-svg
{
    color: #ba2525;
}

.contact-response-success-svg
{
    color: #287a45;
}

.contact-response-svg-opened
{
    display: flex;
}

.contact-response-p
{
    max-width: 360px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.contact-response-error
{
    color: #ba2525;
}

.contact-response-success
{
    color: #287a45;
}

@media (max-width: 900px)
{
    .contact-hero
    {
        width: calc(100% - 48px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 48px;
    }

    .contact-hero__content
    {
        min-height: 420px;
        padding: 72px 0 60px;
    }

    .contact-hero__image
    {
        height: 380px;
        background-position: center 55%;
    }

    .contact-layout
    {
        width: min(100% - 48px, 720px);
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .contact-details
    {
        max-width: 560px;
    }

    .contact-form-panel
    {
        padding: 68px 0 0;
        border-top: 1px solid var(--contact-line);
        border-left: 0;
    }
}

@media (max-width: 600px)
{
    .contact-hero
    {
        width: calc(100% - 40px);
        padding-bottom: 38px;
    }

    .contact-hero__content
    {
        min-height: 360px;
        padding: 62px 0 48px;
    }

    .contact-hero h1
    {
        font-size: clamp(38px, 11vw, 50px);
    }

    .contact-hero p
    {
        font-size: 16px;
    }

    .contact-hero__image
    {
        height: 280px;
    }

    .contact-layout
    {
        width: calc(100% - 40px);
        padding: 82px 0 100px;
    }

    .contact-form-heading
    {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .contact-form
    {
        grid-template-columns: 1fr;
    }

    .textarea-box,
    .contact-form-footer
    {
        grid-column: auto;
    }

    .contact-form-footer
    {
        align-items: flex-end;
        flex-direction: column;
    }

    .submit
    {
        min-height: 44px;
        padding: 0 18px;
        font-size: 12px;
    }

    .contact-response
    {
        width: 100%;
        justify-content: flex-start;
    }

    .contact-response-p
    {
        text-align: left;
    }
}


/* --- Content from: ./prodcss\expertise.css --- */
.expertise-page
{
    --expertise-ink: #111936;
    --expertise-line: rgba(17, 25, 54, 0.16);
    color: var(--expertise-ink);
    background: #fff;
}

.expertise-hero
{
    padding-top: clamp(74px, 8vw, 112px);
    background: #fff;
}

.expertise-hero__content
{
    width: min(820px, calc(100% - 48px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    padding-bottom: clamp(58px, 7vw, 86px);
    text-align: center;
}

.expertise-hero h1
{
    max-width: 700px;
    margin: 0;
    color: var(--expertise-ink);
    font-family: var(--Poppins);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.expertise-hero p
{
    max-width: 470px;
    padding-bottom: 0;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 17px;
    line-height: 1.75;
}

.expertise-hero__image
{
    width: min(1320px, calc(100% - 48px));
    height: clamp(360px, 40vw, 520px);
    margin: 0 auto;
    background-image: url(/img/expertise.jpg);
    background-position: center;
    background-size: cover;
}

.expertise-index
{
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(90px, 10vw, 145px) 0;
}

.expertise-index__header
{
    max-width: 760px;
    margin-bottom: 52px;
}

.expertise-index h2
{
    font-family: var(--Poppins);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.expertise-grid
{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(64px, 8vw, 100px) clamp(36px, 6vw, 72px);
}

.expertise-field
{
    min-width: 0;
    padding-top: 28px;
    border-top: 1px solid var(--expertise-line);
}

.expertise-field__image
{
    height: clamp(250px, 28vw, 360px);
    overflow: hidden;
    background: #efefef;
}

.expertise-field__image img
{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.expertise-field__content
{
    padding-top: 28px;
}

.expertise-field h3
{
    margin-bottom: 16px;
    font-family: var(--Poppins);
    font-size: clamp(23px, 2.2vw, 30px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.expertise-field p
{
    max-width: 540px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 900px)
{
    .expertise-hero__content
    {
        width: calc(100% - 48px);
    }

    .expertise-hero__image
    {
        width: calc(100% - 48px);
        height: 380px;
    }

    .expertise-index
    {
        width: calc(100% - 48px);
    }

    .expertise-grid
    {
        gap: 64px 36px;
    }

    .expertise-field__image
    {
        height: 280px;
    }
}

@media (max-width: 650px)
{
    .expertise-hero__content
    {
        width: calc(100% - 40px);
        padding-bottom: 54px;
    }

    .expertise-hero h1
    {
        font-size: clamp(38px, 11vw, 50px);
    }

    .expertise-hero p
    {
        font-size: 16px;
    }

    .expertise-hero__image
    {
        width: calc(100% - 40px);
        height: 270px;
    }

    .expertise-index
    {
        width: calc(100% - 40px);
        padding: 82px 0 100px;
    }

    .expertise-index__header
    {
        margin-bottom: 38px;
    }

    .expertise-grid
    {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .expertise-field
    {
        padding-top: 22px;
    }

    .expertise-field__image
    {
        height: 260px;
    }

    .expertise-field h3
    {
        font-size: 25px;
    }
}


/* --- Content from: ./prodcss\main.css --- */
.home
{
    --home-ink: #111936;
    --home-blue: #18258f;
    --home-line: rgba(17, 25, 54, 0.16);
    color: var(--home-ink);
    background: #fff;
    overflow: hidden;
}

.home img
{
    display: block;
}

.home-hero
{
    min-height: calc(100vh - var(--nav_height));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    border-bottom: 1px solid var(--home-line);
}

.home-hero__content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(70px, 9vw, 145px) clamp(32px, 7vw, 110px);
}

.home-hero h1
{
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--home-ink);
    font-family: var(--Poppins);
    font-size: clamp(44px, 5.2vw, 76px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.home-hero__intro
{
    max-width: 610px;
    color: #4e5367;
    font-family: var(--OpenSans);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.7;
}

.home-actions
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 42px;
}

.home-actions .home-button
{
    width: 190px;
    white-space: nowrap;
}

.home-button
{
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--home-ink);
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.home-button svg
{
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-button:hover
{
    transform: none;
}

.home-button--primary
{
    color: #fff;
    background: var(--home-blue);
    border-color: var(--home-blue);
}

.home-button--primary:hover
{
    background: #101b72;
}

.home-button--outline
{
    color: var(--home-ink);
    background: transparent;
    border-color: var(--home-line);
    transition: none;
}

.home-text-link
{
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--home-ink);
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.home-text-link svg
{
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 160ms ease;
}

.home-text-link:hover svg
{
    transform: translateX(3px);
}

.home-hero__visual
{
    min-height: 620px;
    position: relative;
    overflow: hidden;
    background: var(--home-ink);
}

.home-hero__visual::after
{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 21, 58, 0.04) 42%, rgba(14, 21, 58, 0.72) 100%);
}

.home-hero__visual > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.home-hero:hover .home-hero__visual > img
{
    transform: scale(1.018);
}

.home-hero__note
{
    max-width: 440px;
    position: absolute;
    z-index: 1;
    right: clamp(24px, 4vw, 64px);
    bottom: clamp(30px, 5vw, 72px);
    left: clamp(24px, 4vw, 64px);
    color: #fff;
}

.home-hero__note p
{
    font-family: var(--Poppins);
    font-size: 15px;
    line-height: 1.6;
}

.home-intro
{
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(90px, 11vw, 170px) 0 clamp(70px, 8vw, 120px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
    gap: clamp(50px, 9vw, 150px);
    align-items: end;
}

.home-intro h2,
.home-network h2,
.home-partners h2,
.home-contact h2
{
    margin-top: 0;
    font-family: var(--Poppins);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.home-intro h2
{
    max-width: 850px;
    font-size: clamp(34px, 4vw, 56px);
}

.home-intro > p
{
    padding-bottom: 8px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 17px;
    line-height: 1.8;
}

.home-practices
{
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--home-line);
}

.home-practice
{
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--home-line);
}

.home-practice:last-child
{
    border-right: 0;
}

.home-practice__image
{
    height: clamp(240px, 29vw, 420px);
    overflow: hidden;
    background: #e8e8e8;
}

.home-practice__image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.02);
    transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.home-practice:hover .home-practice__image img
{
    transform: scale(1.035);
    filter: saturate(0.95) contrast(1.02);
}

.home-practice__body
{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 34px clamp(24px, 3vw, 42px) 38px;
}

.home-practice__category
{
    color: var(--home-blue);
    font-family: var(--Poppins);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.home-practice h3
{
    margin: 16px 0;
    font-family: var(--Poppins);
    font-size: clamp(22px, 1.9vw, 27px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.home-practice p
{
    margin-bottom: 0;
    color: #5c6173;
    font-family: var(--OpenSans);
    font-size: 15px;
    line-height: 1.72;
}

.home-services-cta
{
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto clamp(100px, 12vw, 180px);
    padding: clamp(38px, 5vw, 64px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--home-line);
}

.home-services-cta h2
{
    max-width: 670px;
    font-family: var(--Poppins);
    font-size: clamp(26px, 2.7vw, 36px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.home-network
{
    color: var(--home-ink);
    background: #fff;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-network__content
{
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(90px, 10vw, 150px) 0;
}

.home-network h2
{
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
}

.home-network__content > p
{
    max-width: 630px;
    margin: 28px 0 40px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 17px;
    line-height: 1.75;
}

.home-partners
{
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(100px, 11vw, 170px) 0;
}

.home-partners__header
{
    max-width: 740px;
    margin-bottom: 64px;
}

.home-partners h2
{
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 400;
}

.home-partners__grid
{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--home-line);
    border-left: 1px solid var(--home-line);
}

.home-partner
{
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    border-right: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.home-partner img
{
    max-width: 170px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 180ms ease, opacity 180ms ease;
}

.home-partner:hover img
{
    filter: grayscale(0);
    opacity: 1;
}

.home-partner--dark
{
    background: #10194f;
}

.home-partner--dark img
{
    filter: grayscale(1) brightness(2.7);
}

.home-contact
{
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    border-top: 1px solid var(--home-line);
    text-align: center;
    background: #fff;
}

.home-contact h2
{
    margin-bottom: 38px;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 400;
}

.reveal-ready [data-reveal]
{
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.65,.25,1);
}

.reveal-ready [data-reveal].is-visible
{
    opacity: 1;
    transform: translateY(0);
}

.reveal-ready .home-practice:nth-child(2)
{
    transition-delay: 70ms;
}

.reveal-ready .home-practice:nth-child(3)
{
    transition-delay: 140ms;
}

@media (max-width: 1024px)
{
    .home-hero
    {
        grid-template-columns: 1fr 0.82fr;
    }

    .home-hero__content
    {
        padding-right: 44px;
        padding-left: 44px;
    }

    .home-hero h1
    {
        font-size: clamp(42px, 5.8vw, 60px);
    }

    .home-intro,
    .home-practices,
    .home-services-cta,
    .home-partners
    {
        width: min(100% - 48px, 1420px);
    }

    .home-practices
    {
        grid-template-columns: 1fr;
    }

    .home-practice
    {
        border-right: 0;
        border-bottom: 1px solid var(--home-line);
    }

    .home-practice:last-child
    {
        border-bottom: 0;
    }

    .home-practice
    {
        display: grid;
        grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
    }

    .home-practice__image
    {
        height: 100%;
        min-height: 340px;
    }

    .home-network__content
    {
        width: min(100% - 48px, 920px);
    }

    .home-partners__grid
    {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px)
{
    .home-button
    {
        min-height: 42px;
        padding: 0 15px;
        font-size: 12px;
    }

    .home-actions
    {
        gap: 10px;
    }

    .home-actions .home-button
    {
        width: 176px;
    }

    .home-hero
    {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .home-hero__content
    {
        min-height: 610px;
        padding: 78px 24px 68px;
    }

    .home-hero h1
    {
        margin: 20px 0 24px;
        font-size: clamp(42px, 12vw, 60px);
    }

    .home-hero__visual
    {
        min-height: 480px;
    }

    .home-intro
    {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 90px 0 70px;
    }

    .home-intro h2
    {
        font-size: clamp(32px, 8.5vw, 44px);
    }

    .home-intro > p
    {
        font-size: 16px;
    }

    .home-practices
    {
        width: calc(100% - 40px);
    }

    .home-practice
    {
        display: flex;
    }

    .home-practice__image
    {
        height: 300px;
        min-height: auto;
    }

    .home-practice__body
    {
        padding: 28px 22px 34px;
    }

    .home-practice h3
    {
        font-size: 24px;
    }

    .home-services-cta
    {
        width: calc(100% - 40px);
        margin-bottom: 100px;
        padding: 42px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .home-network
    {
        min-height: auto;
    }

    .home-network__content
    {
        width: calc(100% - 40px);
        padding: 84px 0;
    }

    .home-network h2
    {
        font-size: clamp(34px, 9vw, 46px);
    }

    .home-network__content > p
    {
        font-size: 16px;
    }

    .home-partners
    {
        width: calc(100% - 40px);
        padding: 90px 0;
    }

    .home-partners__header
    {
        margin-bottom: 46px;
    }

    .home-partners__grid
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-partner
    {
        min-height: 132px;
        padding: 24px;
    }

    .home-partner img
    {
        max-width: 120px;
        max-height: 52px;
    }

    .home-contact
    {
        min-height: 400px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .home-contact h2
    {
        font-size: clamp(38px, 10vw, 54px);
    }
}

@media (prefers-reduced-motion: reduce)
{
    .home *,
    .home *::before,
    .home *::after
    {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready [data-reveal]
    {
        opacity: 1;
        transform: none;
    }
}


/* --- Content from: ./prodcss\notfound.css --- */
.notfound
{
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.notfound svg
{
    height: 120px;
    fill:#010164;
    clip-rule:evenodd;
    fill-rule:evenodd;
    margin-bottom: 30px;
}

.notfound h1
{
    font-family: var(--Poppins);
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    color: var(--NG_dark_blue);
}

.not-found-return
{
    height: 30px;
    width: 70px;
    border: none;
    background-color: var(--NG_dark_blue);
    margin-top: 20px;
    border-radius: 5px;
    transition: all .1s ease-in-out;
}

.not-found-return a
{
    font-family: var(--Poppins);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05rem;
    font-weight: 500;
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
}

.not-found-return:hover
{
    transform: translateY(-2px);
    background-color: var(--NG_blue);
}

/* --- Content from: ./prodcss\references.css --- */
.references-page
{
    --references-ink: #111936;
    --references-blue: #18258f;
    --references-line: rgba(17, 25, 54, 0.16);
    color: var(--references-ink);
    background: #fff;
}

.references-hero
{
    min-height: 390px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--references-line);
}

.references-hero__content
{
    width: min(1320px, calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: clamp(56px, 9vw, 140px);
    align-items: end;
    margin: 0 auto;
    padding: clamp(78px, 9vw, 124px) 0;
}

.references-hero h1
{
    max-width: 680px;
    margin: 0;
    font-family: var(--Poppins);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.references-hero p
{
    max-width: 450px;
    padding-bottom: 7px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 17px;
    line-height: 1.75;
}

.references-index
{
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(90px, 10vw, 145px) 0;
}

.references-index__header
{
    max-width: 760px;
    margin-bottom: 52px;
}

.references-index h2
{
    font-family: var(--Poppins);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.references-list
{
    border-top: 1px solid var(--references-line);
}

.reference-client
{
    min-height: 145px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 26px 24px;
    color: inherit;
    border-bottom: 1px solid var(--references-line);
    text-decoration: none;
    transition: background-color 160ms ease;
}

.reference-client:hover
{
    background: #f7f7f5;
}

.reference-client__logo
{
    width: 180px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.reference-client__logo img
{
    max-width: 170px;
    object-fit: contain;
}

.reference-client__logo--ilo,
.reference-client__logo--ugfs
{
    justify-content: center;
    padding: 16px;
}

.reference-client__logo--ilo
{
    background: #1c2cbc;
}

.reference-client__logo--ugfs
{
    background: #042433;
}

.reference-client h3
{
    font-family: var(--Poppins);
    font-size: clamp(18px, 1.7vw, 23px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.reference-client > span
{
    padding-bottom: 4px;
    color: #4f5568;
    border-bottom: 1px solid rgba(17, 25, 54, 0.3);
    font-family: var(--OpenSans);
    font-size: 13px;
    white-space: nowrap;
    transition: color 160ms ease, border-color 160ms ease;
}

.reference-client:hover > span
{
    color: var(--references-blue);
    border-color: var(--references-blue);
}

@media (max-width: 900px)
{
    .references-hero__content
    {
        width: calc(100% - 48px);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .references-index
    {
        width: calc(100% - 48px);
    }

    .reference-client
    {
        grid-template-columns: 180px minmax(0, 1fr) auto;
        gap: 28px;
    }

    .reference-client__logo
    {
        width: 150px;
    }

    .reference-client__logo img
    {
        max-width: 140px;
    }
}

@media (max-width: 640px)
{
    .references-hero
    {
        min-height: 360px;
    }

    .references-hero__content
    {
        width: calc(100% - 40px);
        padding: 68px 0;
    }

    .references-hero h1
    {
        font-size: clamp(38px, 11vw, 50px);
    }

    .references-hero p
    {
        font-size: 16px;
    }

    .references-index
    {
        width: calc(100% - 40px);
        padding: 82px 0 100px;
    }

    .references-index__header
    {
        margin-bottom: 38px;
    }

    .reference-client
    {
        min-height: 130px;
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 20px;
        padding: 24px 0;
    }

    .reference-client__logo
    {
        width: 96px;
        min-height: 64px;
    }

    .reference-client__logo img
    {
        max-width: 92px;
        max-height: 60px;
    }

    .reference-client__logo--ilo,
    .reference-client__logo--ugfs
    {
        padding: 12px;
    }

    .reference-client h3
    {
        font-size: 17px;
    }

    .reference-client > span
    {
        width: fit-content;
        grid-column: 2;
        margin-top: -28px;
        font-size: 12px;
    }
}


/* --- Content from: ./prodcss\services.css --- */
.services-page
{
    --services-ink: #111936;
    --services-blue: #18258f;
    --services-line: rgba(17, 25, 54, 0.16);
    color: var(--services-ink);
    background: #fff;
}

.services-hero
{
    border-top: 1px solid var(--services-line);
    border-bottom: 1px solid var(--services-line);
}

.services-hero__content
{
    width: min(1320px, calc(100% - 48px));
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(56px, 9vw, 140px);
    align-items: end;
    margin: 0 auto;
    padding: clamp(80px, 9vw, 130px) 0 clamp(60px, 7vw, 92px);
}

.services-hero h1
{
    max-width: 720px;
    margin: 0;
    font-family: var(--Poppins);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.services-hero p
{
    max-width: 440px;
    padding-bottom: 7px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 17px;
    line-height: 1.75;
}

.services-hero__image
{
    height: clamp(340px, 37vw, 530px);
    background-image: url(/img/services-main.jpg);
    background-position: center 45%;
    background-size: cover;
}

.service-lines,
.service-areas,
.services-contact
{
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.service-lines
{
    padding: clamp(90px, 10vw, 145px) 0 0;
}

.service-lines__header,
.service-areas__header
{
    max-width: 760px;
    margin-bottom: 50px;
}

.service-lines h2,
.service-areas h2,
.services-contact h2
{
    font-family: var(--Poppins);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.service-lines__list
{
    border-top: 1px solid var(--services-line);
}

.service-line
{
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
    padding: clamp(54px, 7vw, 90px) 0;
    border-bottom: 1px solid var(--services-line);
}

.service-line:nth-child(even) .service-line__image
{
    order: 2;
}

.service-line:nth-child(even) .service-line__content
{
    order: 1;
}

.service-line__image
{
    height: clamp(300px, 31vw, 410px);
    overflow: hidden;
    background: #efefef;
}

.service-line__image img
{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-line__content h3
{
    margin-bottom: 20px;
    font-family: var(--Poppins);
    font-size: clamp(27px, 2.8vw, 38px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.service-line__content > p
{
    max-width: 600px;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 16px;
    line-height: 1.75;
}

.service-line__content ul
{
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
}

.service-line__content li
{
    padding: 12px 0;
    color: #34394d;
    border-top: 1px solid var(--services-line);
    font-family: var(--OpenSans);
    font-size: 13px;
    line-height: 1.5;
    list-style: none;
}

.service-areas
{
    padding: clamp(100px, 11vw, 160px) 0;
}

.service-areas__list
{
    border-top: 1px solid var(--services-line);
}

.service-area
{
    min-height: 170px;
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    padding: 46px 24px;
    border-bottom: 1px solid var(--services-line);
}

.service-area h3
{
    font-family: var(--Poppins);
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.service-area p
{
    max-width: 62ch;
    color: #555b70;
    font-family: var(--OpenSans);
    font-size: 15px;
    line-height: 1.75;
}

.services-contact
{
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 64px 0;
    border-top: 1px solid var(--services-line);
}

.services-contact h2
{
    max-width: 620px;
    font-size: clamp(28px, 3vw, 40px);
}

.services-contact a
{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #fff;
    background: var(--services-blue);
    border: 1px solid var(--services-blue);
    border-radius: 8px;
    font-family: var(--Poppins);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.services-contact a:hover
{
    background: #101b72;
    border-color: #101b72;
}

@media (max-width: 900px)
{
    .services-hero__content
    {
        width: calc(100% - 48px);
        min-height: 390px;
        grid-template-columns: 1fr;
        gap: 30px;
        align-content: center;
        align-items: start;
    }

    .services-hero__image
    {
        height: 380px;
    }

    .service-lines,
    .service-areas,
    .services-contact
    {
        width: calc(100% - 48px);
    }

    .service-line
    {
        grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
        gap: 44px;
    }
}

@media (max-width: 700px)
{
    .services-hero__content
    {
        width: calc(100% - 40px);
        min-height: 380px;
        padding: 68px 0;
    }

    .services-hero h1
    {
        font-size: clamp(38px, 11vw, 50px);
    }

    .services-hero p
    {
        font-size: 16px;
    }

    .services-hero__image
    {
        height: 270px;
    }

    .service-lines,
    .service-areas,
    .services-contact
    {
        width: calc(100% - 40px);
    }

    .service-lines
    {
        padding-top: 82px;
    }

    .service-lines__header,
    .service-areas__header
    {
        margin-bottom: 38px;
    }

    .service-line
    {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 44px 0 52px;
    }

    .service-line:nth-child(even) .service-line__image,
    .service-line:nth-child(even) .service-line__content
    {
        order: initial;
    }

    .service-line__image
    {
        height: 270px;
    }

    .service-line__content h3
    {
        font-size: 28px;
    }

    .service-line__content ul
    {
        grid-template-columns: 1fr;
    }

    .service-areas
    {
        padding: 100px 0;
    }

    .service-area
    {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
        padding: 36px 0;
    }

    .services-contact
    {
        min-height: 240px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
    }

    .services-contact a
    {
        min-height: 40px;
        padding: 0 15px;
        font-size: 12px;
    }
}
