:root {
    --ogb-home-blue: #123a70;
    --ogb-home-blue-deep: #0b2648;
    --ogb-home-blue-soft: #1baff4;
    --ogb-home-red: #c71f3b;
    --ogb-home-red-dark: #a81932;
    --ogb-home-yellow: #fbc900;
    --ogb-home-ink: #163355;
    --ogb-home-copy: #41566f;
    --ogb-home-panel: #f7f8fb;
    --ogb-home-panel-strong: #eef3f8;
    --ogb-home-white: #ffffff;
    --ogb-home-shadow: 0 24px 60px rgba(12, 38, 73, 0.12);
}

html {
    scroll-behavior: smooth;
}

body.ogb-home-body {
    margin: 0;
    color: var(--ogb-home-ink);
    background: #ffffff;
    font-family: "Lato", "Montserrat", sans-serif;
}

body.ogb-home-body img {
    max-width: 100%;
    height: auto;
}

body.ogb-home-body a {
    color: inherit;
    text-decoration: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ogb-home-shell {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.ogb-home-header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 16px 34px rgba(10, 34, 67, 0.08);
}

.ogb-home-ticker {
    background: var(--ogb-home-yellow);
    color: #142033;
    font-size: 14px;
    font-weight: 700;
}

.ogb-home-ticker__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 44px;
}

.ogb-home-ticker__content {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.ogb-home-ticker__label {
    white-space: nowrap;
}

.ogb-home-ticker__scores {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.ogb-home-ticker__scores li {
    position: relative;
    white-space: nowrap;
}

.ogb-home-ticker__scores li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(20, 32, 51, 0.28);
    transform: translateY(-50%);
}

.ogb-home-ticker__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.ogb-home-ticker__switch {
    padding-right: 18px;
    border-right: 1px solid rgba(20, 32, 51, 0.28);
}

.ogb-home-ticker__langs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ogb-home-ticker__langs img {
    display: block;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 3px 8px rgba(12, 38, 73, 0.14);
}

.ogb-home-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
}

.ogb-home-nav__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 88px;
}

.ogb-home-nav__logo img,
.ogb-home-footer__logo img {
    display: block;
    width: 212px;
}

.ogb-home-nav__checkbox {
    display: none;
}

.ogb-home-nav__toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(18, 58, 112, 0.16);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ogb-home-nav__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ogb-home-blue);
}

.ogb-home-nav__menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 34px;
}

.ogb-home-nav__link {
    position: relative;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--ogb-home-blue);
}

.ogb-home-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--ogb-home-blue-soft);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.ogb-home-nav__link:hover::after,
.ogb-home-nav__link:focus-visible::after {
    transform: scaleX(1);
}

.ogb-home-hero {
    position: relative;
    min-height: 667px;
    background:
        linear-gradient(90deg, rgba(8, 31, 62, 0.96) 0%, rgba(10, 41, 80, 0.82) 34%, rgba(10, 41, 80, 0.35) 58%, rgba(10, 41, 80, 0.08) 100%),
        url("../figma/hero-bg.png") center/cover no-repeat;
    overflow: hidden;
}

.ogb-home-hero::after {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 175, 244, 0.34) 0%, rgba(27, 175, 244, 0) 68%);
    pointer-events: none;
}

.ogb-home-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 667px;
    padding-top: 76px;
    padding-bottom: 88px;
    box-sizing: border-box;
}

.ogb-home-hero__content {
    max-width: 670px;
    color: var(--ogb-home-white);
}

.ogb-home-hero__content h1 {
    margin: 0;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: clamp(46px, 5.3vw, 78px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.ogb-home-hero__content h1 span {
    display: block;
}

.ogb-home-hero__content p {
    max-width: 610px;
    margin: 28px 0 0;
    font-size: 22px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.ogb-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ogb-home-button:hover,
.ogb-home-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(13, 44, 86, 0.16);
}

.ogb-home-button--hero,
.ogb-home-button--solid {
    margin-top: 36px;
    background: var(--ogb-home-blue-soft);
    color: var(--ogb-home-white);
}

.ogb-home-button--solid {
    margin-top: 8px;
}

.ogb-home-hero__badge {
    max-width: 358px;
    padding: 28px 32px;
    border-radius: 32px 32px 32px 10px;
    background: var(--ogb-home-red);
    color: var(--ogb-home-white);
    box-shadow: 0 28px 48px rgba(121, 17, 39, 0.38);
}

.ogb-home-hero__badge span,
.ogb-home-hero__badge strong {
    display: block;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 28px;
    line-height: 1.06;
}

.ogb-home-hero__badge strong {
    margin-top: 8px;
    font-size: 34px;
    font-weight: 900;
}

.ogb-home-section {
    padding: 92px 0;
}

.ogb-home-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.ogb-home-section__eyebrow,
.ogb-home-contact__eyebrow,
.ogb-home-project-card__eyebrow {
    margin: 0 0 12px;
    color: var(--ogb-home-red);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ogb-home-section__head h2,
.ogb-home-contact__intro h2 {
    margin: 0;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ogb-home-blue);
}

.ogb-home-section--offers {
    padding-top: 74px;
}

.ogb-home-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ogb-home-offer-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 126px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--ogb-home-red) 0%, var(--ogb-home-red-dark) 100%);
    box-shadow: 0 22px 40px rgba(134, 17, 40, 0.18);
    color: var(--ogb-home-white);
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
}

.ogb-home-section--methodology {
    background:
        radial-gradient(circle at left top, rgba(27, 175, 244, 0.08) 0%, rgba(27, 175, 244, 0) 36%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.ogb-home-method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ogb-home-method-card {
    min-height: 238px;
    padding: 30px 26px;
    border: 1px solid rgba(18, 58, 112, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--ogb-home-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ogb-home-method-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: rgba(18, 58, 112, 0.06);
}

.ogb-home-method-card__icon img {
    width: 42px;
    height: 42px;
}

.ogb-home-method-card__title {
    margin-top: 42px;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 26px;
    line-height: 1.16;
    font-weight: 900;
    color: var(--ogb-home-blue);
}

.ogb-home-about {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 460px);
    gap: 56px;
    align-items: center;
}

.ogb-home-about__lead {
    margin: 28px 0 0;
    color: var(--ogb-home-copy);
    font-size: 22px;
    line-height: 1.72;
    font-style: italic;
}

.ogb-home-about__figure {
    position: relative;
    margin: 0;
    padding: 16px 16px 0;
}

.ogb-home-about__figure::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(27, 175, 244, 0.14) 0%, rgba(18, 58, 112, 0.06) 100%);
}

.ogb-home-about__figure img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 28px;
}

.ogb-home-about__figure figcaption {
    position: absolute;
    left: 34px;
    bottom: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(18, 58, 112, 0.84);
    color: var(--ogb-home-white);
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ogb-home-awards {
    padding: 44px 0 52px;
    background: var(--ogb-home-yellow);
}

.ogb-home-awards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.ogb-home-award-card {
    min-height: 100%;
    padding: 34px 28px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
}

.ogb-home-award-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.ogb-home-award-card h3 {
    margin: 20px 0 0;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 900;
    color: #112340;
}

.ogb-home-award-card p {
    margin: 16px 0 0;
    color: rgba(17, 35, 64, 0.82);
    font-size: 18px;
    line-height: 1.55;
}

.ogb-home-credibility {
    position: relative;
    padding: 102px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(27, 175, 244, 0.24) 0%, rgba(27, 175, 244, 0) 24%),
        linear-gradient(180deg, #0a2f5f 0%, #081f3d 100%);
    color: var(--ogb-home-white);
}

.ogb-home-section__head--light h2,
.ogb-home-section__head--light .ogb-home-section__eyebrow {
    color: var(--ogb-home-white);
}

.ogb-home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ogb-home-trust-card {
    min-height: 100%;
    padding: 32px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ogb-home-trust-card img {
    display: block;
    width: auto;
    height: 66px;
    object-fit: contain;
}

.ogb-home-trust-card h3 {
    margin: 22px 0 0;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 900;
}

.ogb-home-trust-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}

.ogb-home-section--projects {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.ogb-home-project-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: 54px 58px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(27, 175, 244, 0.28) 0%, rgba(27, 175, 244, 0) 28%),
        linear-gradient(135deg, #183f75 0%, #0a2d56 100%);
    color: var(--ogb-home-white);
    box-shadow: 0 30px 62px rgba(10, 38, 74, 0.16);
}

.ogb-home-project-card::before {
    content: "";
    position: absolute;
    inset: auto auto -110px -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 44px solid rgba(255, 255, 255, 0.08);
}

.ogb-home-project-card__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.ogb-home-project-card__content h3 {
    margin: 0;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 0.98;
    font-weight: 900;
}

.ogb-home-project-card__content p:last-child {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.65;
}

.ogb-home-project-card img {
    position: relative;
    z-index: 1;
    width: 220px;
}

.ogb-home-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ogb-home-partner-logo {
    min-height: 124px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(18, 58, 112, 0.08);
    background: var(--ogb-home-white);
    box-shadow: 0 18px 40px rgba(12, 38, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ogb-home-partner-logo img {
    max-height: 58px;
    width: auto;
}

.ogb-home-contact {
    padding: 108px 0 54px;
    background:
        radial-gradient(circle at right top, rgba(27, 175, 244, 0.12) 0%, rgba(27, 175, 244, 0) 34%),
        var(--ogb-home-panel);
}

.ogb-home-contact__intro {
    text-align: center;
    margin-bottom: 42px;
}

.ogb-home-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
}

.ogb-home-contact__form,
.ogb-home-contact__details {
    padding: 34px;
    border-radius: 28px;
    background: var(--ogb-home-white);
    box-shadow: var(--ogb-home-shadow);
}

.ogb-home-contact__form {
    display: grid;
    gap: 16px;
}

.ogb-home-contact__form input,
.ogb-home-contact__form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(18, 58, 112, 0.12);
    border-radius: 18px;
    box-sizing: border-box;
    font: inherit;
    color: var(--ogb-home-ink);
    background: #fcfdff;
}

.ogb-home-contact__form textarea {
    resize: vertical;
    min-height: 180px;
}

.ogb-home-contact__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ogb-home-copy);
    font-size: 14px;
    line-height: 1.55;
}

.ogb-home-contact__consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 0;
}

.ogb-home-contact__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background:
        linear-gradient(180deg, rgba(18, 58, 112, 0.03) 0%, rgba(18, 58, 112, 0.06) 100%),
        var(--ogb-home-white);
}

.ogb-home-contact__link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--ogb-home-blue);
}

.ogb-home-contact__link img {
    width: 22px;
    height: 22px;
}

.ogb-home-contact__address {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    color: var(--ogb-home-copy);
    font-size: 18px;
    line-height: 1.55;
}

.ogb-home-contact__address strong {
    color: var(--ogb-home-ink);
    font-family: "Nunito Sans", "Lato", sans-serif;
    font-size: 20px;
    line-height: 1.3;
}

.ogb-home-footer {
    padding: 38px 0 46px;
    background: var(--ogb-home-white);
}

.ogb-home-footer__inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    gap: 28px;
    align-items: center;
}

.ogb-home-footer__column {
    display: grid;
    gap: 12px;
}

.ogb-home-footer__column--links a {
    color: var(--ogb-home-copy);
    font-size: 15px;
    font-weight: 700;
}

.ogb-home-footer__column:last-child {
    text-align: right;
}

.ogb-home-footer__brand {
    text-align: center;
}

.ogb-home-footer__logo {
    display: inline-flex;
    justify-content: center;
}

.ogb-home-footer__social {
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ogb-home-panel-strong);
    color: var(--ogb-home-blue);
    font-size: 14px;
    font-weight: 800;
}

.ogb-home-footer__brand p {
    margin: 16px 0 0;
    color: var(--ogb-home-copy);
    font-size: 14px;
}

@media (max-width: 1180px) {
    .ogb-home-method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ogb-home-about {
        grid-template-columns: minmax(0, 1fr);
    }

    .ogb-home-awards__grid,
    .ogb-home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ogb-home-partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ogb-home-contact__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 980px) {
    .ogb-home-shell {
        padding: 0 22px;
    }

    .ogb-home-ticker__inner,
    .ogb-home-ticker__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ogb-home-ticker__inner {
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 12px;
    }

    .ogb-home-nav__toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .ogb-home-nav__menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 22px;
        right: 22px;
        display: grid;
        gap: 14px;
        padding: 22px;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 20px 40px rgba(12, 38, 73, 0.16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .ogb-home-nav__checkbox:checked ~ .ogb-home-nav__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .ogb-home-hero,
    .ogb-home-hero__inner {
        min-height: 720px;
    }

    .ogb-home-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
    }

    .ogb-home-hero__badge {
        max-width: 100%;
    }

    .ogb-home-offer-grid,
    .ogb-home-awards__grid,
    .ogb-home-trust-grid,
    .ogb-home-partner-grid,
    .ogb-home-footer__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .ogb-home-project-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .ogb-home-footer__column:last-child,
    .ogb-home-footer__brand,
    .ogb-home-footer__column {
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .ogb-home-ticker__scores {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .ogb-home-ticker__scores li:not(:last-child)::after {
        display: none;
    }

    .ogb-home-hero {
        min-height: 680px;
        background-position: 68% center;
    }

    .ogb-home-hero__inner {
        min-height: 680px;
        padding-top: 38px;
        padding-bottom: 48px;
    }

    .ogb-home-hero__content p,
    .ogb-home-about__lead,
    .ogb-home-award-card p,
    .ogb-home-trust-card p,
    .ogb-home-project-card__content p:last-child {
        font-size: 18px;
    }

    .ogb-home-hero__badge span {
        font-size: 24px;
    }

    .ogb-home-hero__badge strong {
        font-size: 28px;
    }

    .ogb-home-method-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ogb-home-method-card,
    .ogb-home-contact__form,
    .ogb-home-contact__details,
    .ogb-home-project-card {
        padding: 24px;
    }

    .ogb-home-section,
    .ogb-home-credibility,
    .ogb-home-contact {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

body.ogb-home-body,
body.ogb-home-body input,
body.ogb-home-body textarea,
body.ogb-home-body button {
    font-family: "Museo Sans Rounded", "Nunito Sans", "Lato", sans-serif;
}

.ogb-home-button,
.ogb-home-offer-card,
.ogb-home-method-card,
.ogb-home-contact__form input,
.ogb-home-contact__form textarea {
    box-sizing: border-box;
}

.ogb-home-shell {
    width: min(100%, 1920px);
    padding-left: 180px;
    padding-right: 180px;
}

.ogb-home-button--hero {
    width: 168px;
    min-width: 168px;
    height: 58.89px;
    min-height: 58.89px;
    padding: 14.9467px 22.4201px;
    gap: 3.46px;
    margin-top: 34px;
    justify-content: center;
    align-items: center;
    background: #00b8ee;
    border-radius: 3.46178px;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    box-shadow: none;
}

.ogb-home-button--footer {
    width: 112.84px;
    min-width: 112.84px;
    height: 58.89px;
    min-height: 58.89px;
    padding: 14.9467px 22.4201px;
    gap: 3.46px;
    justify-content: center;
    align-items: center;
    background: #db403c;
    border-radius: 3.46178px;
    color: #ffffff;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    box-shadow: none;
}

.ogb-home-section__head--with-icon {
    margin-bottom: 0;
}

.ogb-home-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.ogb-home-heading h2 {
    margin: 0;
    color: #21457e;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.ogb-home-heading__icon {
    position: relative;
    flex: none;
}

.ogb-home-heading--offers {
    width: 339.52px;
    height: 60px;
}

.ogb-home-heading--offers .ogb-home-heading__icon {
    width: 83.52px;
    height: 60px;
    background:
        radial-gradient(circle at 39px 30px, transparent 24px, #3cb6e9 24px 27px, transparent 27px),
        radial-gradient(circle at 40px 34px, transparent 15px, #d9332e 15px 17px, transparent 17px);
}

.ogb-home-heading--methodology {
    width: 357.94px;
    height: 60px;
}

.ogb-home-heading--methodology .ogb-home-heading__icon {
    width: 72.94px;
    height: 60px;
    background:
        linear-gradient(#3ab6ea 0 0) left bottom / 11px 18px no-repeat,
        linear-gradient(#d9332f 0 0) 20px bottom / 11px 29px no-repeat,
        linear-gradient(#283d77 0 0) 40px bottom / 11px 43px no-repeat,
        linear-gradient(#3ab6ea 0 0) 60px bottom / 11px 60px no-repeat;
}

.ogb-home-section--offers {
    padding-top: 44px;
    padding-bottom: 64px;
}

.ogb-home-section--methodology {
    padding-top: 52px;
    padding-bottom: 84px;
}

.ogb-home-section--about,
.ogb-home-section--projects,
.ogb-home-section--partners {
    padding-top: 0;
    padding-bottom: 0;
}

.ogb-home-section--offers .ogb-home-shell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 72px;
    min-height: 257px;
}

.ogb-home-offer-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    height: 137px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}

a.ogb-home-offer-card,
a.ogb-home-offer-card:visited,
a.ogb-home-offer-card:hover,
a.ogb-home-offer-card:focus-visible,
a.ogb-home-offer-card:active {
    flex: 1 1 0;
    width: auto;
    max-width: 493.33px;
    height: 137px;
    min-height: 137px;
    padding: 57.2658px 27.6456px;
    gap: 9.87px;
    border-radius: 5.94606px;
    background: #db403c;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: none;
}

.ogb-home-section--methodology .ogb-home-shell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    min-height: 243px;
}

.ogb-home-method-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 43px;
    width: 100%;
    height: 143px;
}

.ogb-home-method-card {
    position: relative;
    flex: 1 1 0;
    width: auto;
    max-width: 357px;
    height: 143px;
    min-height: 143px;
    padding: 0;
    border-radius: 9.4772px;
    box-shadow: 5px 5px 11.8042px rgba(0, 0, 0, 0.08);
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
    background: #ffffff;
}

.ogb-home-method-card__icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 80px;
    border-radius: 0;
    background: transparent;
}

.ogb-home-method-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ogb-home-method-card:nth-child(2) .ogb-home-method-card__icon {
    width: 84px;
}

.ogb-home-method-card:nth-child(3) .ogb-home-method-card__icon {
    width: 96px;
}

.ogb-home-method-card:nth-child(4) .ogb-home-method-card__icon {
    width: 86px;
}

.ogb-home-method-card__title {
    margin-top: 0;
    color: #21457e;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.ogb-home-section--about .ogb-home-shell {
    min-height: 992px;
}

.ogb-home-about {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.ogb-home-about__content {
    max-width: 748px;
    padding-top: 344px;
}

.ogb-home-about__content h2 {
    margin-top: 0;
    color: #21457e;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.ogb-home-about__lead {
    margin-top: 42px;
    color: #21457e;
    font-size: 24px;
    line-height: 44px;
    font-weight: 400;
    font-style: italic;
}

.ogb-home-about__figure {
    width: 732px;
    padding: 0;
    margin-top: 148px;
}

.ogb-home-about__figure::before {
    display: none;
}

.ogb-home-about__figure img {
    border-radius: 36px;
}

.ogb-home-awards {
    min-height: 814.27px;
    padding: 84px 0 90px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
}

.ogb-home-awards .ogb-home-shell {
    display: flex;
    align-items: center;
    min-height: 640px;
}

.ogb-home-awards__grid {
    width: 100%;
    gap: 24px;
}

.ogb-home-award-card {
    padding: 40px 24px 34px;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.ogb-home-award-card img {
    width: 120px;
    height: auto;
}

.ogb-home-award-card h3 {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #21457e;
}

.ogb-home-award-card p {
    color: #21457e;
    font-size: 24px;
    line-height: 34px;
}

.ogb-home-credibility {
    min-height: 539px;
    padding: 60px 0;
    background: #283d77;
}

.ogb-home-credibility .ogb-home-shell {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.ogb-home-credibility .ogb-home-section__head {
    margin-bottom: 0;
}

.ogb-home-credibility .ogb-home-section__head h2 {
    width: 556px;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.ogb-home-trust-grid {
    gap: 80px;
}

.ogb-home-trust-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.ogb-home-trust-card img {
    width: auto;
    height: auto;
    max-height: 97px;
}

.ogb-home-trust-card:nth-child(1) img {
    width: 367.57px;
    max-width: 100%;
}

.ogb-home-trust-card:nth-child(2) {
    justify-content: flex-end;
    gap: 57px;
}

.ogb-home-trust-card:nth-child(2) img {
    width: 434px;
    max-width: 100%;
}

.ogb-home-trust-card:nth-child(3) {
    gap: 20px;
}

.ogb-home-trust-card:nth-child(3) img {
    width: 230.34px;
    max-width: 100%;
}

.ogb-home-trust-card p {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    text-align: center;
}

.ogb-home-section--projects .ogb-home-shell {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 620px;
}

.ogb-home-project-card {
    height: 320px;
}

.ogb-home-contact {
    padding: 72px 0 0;
    background: #ffffff;
}

.ogb-home-contact__shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
}

.ogb-home-contact__heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.ogb-home-contact__divider,
.ogb-home-footer__divider {
    width: 1224px;
    max-width: 100%;
    height: 1px;
    background: #21457e;
}

.ogb-home-contact__intro {
    width: 100%;
    margin-bottom: 0;
}

.ogb-home-contact__intro h2 {
    color: #21457e;
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
}

.ogb-home-contact__row {
    display: flex;
    align-items: center;
    gap: 113px;
    width: 1134.93px;
    max-width: 100%;
    min-height: 600.89px;
}

.ogb-home-contact__form {
    width: 600px;
    padding: 0;
    gap: 34px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ogb-home-contact__form input,
.ogb-home-contact__form textarea {
    border: 1px solid #606264;
    border-radius: 3.46px;
    background: #ffffff;
    color: #21457e;
    font-size: 20px;
    line-height: 24px;
    padding: 17px 12px;
}

.ogb-home-contact__form input {
    height: 58px;
}

.ogb-home-contact__form textarea {
    height: 160px;
    min-height: 160px;
    resize: none;
}

.ogb-home-contact__consent {
    width: 600px;
    align-items: flex-start;
    gap: 12px;
    color: #000000;
    font-size: 12px;
    line-height: 19px;
}

.ogb-home-contact__consent > span {
    display: flex;
    flex-direction: column;
}

.ogb-home-contact__consent input {
    box-sizing: border-box;
    width: 13px;
    height: 13px;
    margin-top: 2px;
    border: 1px solid #767676;
    border-radius: 2.5px;
}

.ogb-home-contact__details {
    width: 421.93px;
    min-height: 294px;
    padding: 0;
    gap: 86px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ogb-home-contact__links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 213px;
}

.ogb-home-contact__link {
    gap: 40px;
    color: #21457e;
    font-size: 20px;
    line-height: 36px;
    font-weight: 400;
}

.ogb-home-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #cf4520;
}

.ogb-home-contact__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.ogb-home-contact__link--phone .ogb-home-contact__icon {
    width: 33px;
    height: 33px;
}

.ogb-home-contact__company {
    width: 421.93px;
}

.ogb-home-contact__company strong {
    display: block;
    color: #cf4520;
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
}

.ogb-home-contact__company p {
    margin: 18px 0 0;
    color: #21457e;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.ogb-home-footer {
    padding: 89px 0 132px;
    background: #ffffff;
}

.ogb-home-footer__shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 89px;
}

.ogb-home-footer__masthead {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 351px;
    width: 100%;
    padding: 21px 0;
}

.ogb-home-footer__flags {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 120px;
    height: 25px;
}

.ogb-home-footer__flags img {
    width: 40px;
    height: 25px;
    object-fit: cover;
}

.ogb-home-footer__logo img {
    width: 347px;
}

.ogb-home-footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 96px;
    height: 40px;
}

.ogb-home-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: 0;
    border: 1px solid #cf4520;
    border-radius: 4px;
    background: transparent;
    color: #cf4520;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}

.ogb-home-footer__social svg {
    display: block;
    width: 21px;
    height: 21px;
}

.ogb-home-footer__social:hover,
.ogb-home-footer__social:focus-visible {
    background: #cf4520;
    color: #ffffff;
}

.ogb-home-footer__links-grid {
    display: grid;
    grid-template-columns: 198px 187px 212px 234px;
    justify-content: center;
    align-items: flex-start;
    gap: 127px;
    width: 100%;
}

.ogb-home-footer__column {
    gap: 26px;
}

.ogb-home-footer__column h3 {
    margin: 0;
    color: #24457e;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.ogb-home-footer__column--nav h3,
.ogb-home-footer__column--nav a {
    line-height: 19px;
}

.ogb-home-footer__column--nav a,
.ogb-home-footer__column--company p {
    color: #24457e;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.ogb-home-footer__column--nav a {
    display: block;
}

.ogb-home-footer__column--company {
    gap: 22px;
}

.ogb-home-footer__column--company p {
    margin: 0;
}

@media (max-width: 1600px) {
    .ogb-home-shell {
        padding-left: 80px;
        padding-right: 80px;
    }

    .ogb-home-offer-card {
        font-size: 34px;
    }

    .ogb-home-method-grid,
    .ogb-home-offer-grid,
    .ogb-home-trust-grid,
    .ogb-home-footer__masthead,
    .ogb-home-footer__links-grid,
    .ogb-home-contact__row {
        width: 100%;
    }

    .ogb-home-footer__masthead,
    .ogb-home-footer__links-grid {
        gap: 48px;
    }

    .ogb-home-footer__links-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .ogb-home-about__content {
        padding-top: 220px;
    }
}

@media (max-width: 1200px) {
    .ogb-home-shell {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ogb-home-offer-grid,
    .ogb-home-method-grid,
    .ogb-home-trust-grid,
    .ogb-home-contact__row,
    .ogb-home-footer__masthead {
        flex-wrap: wrap;
        height: auto;
    }

    .ogb-home-method-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

    .ogb-home-offer-grid {
        flex-direction: column;
    }

    .ogb-home-offer-card,
    .ogb-home-method-card,
    .ogb-home-contact__form,
    .ogb-home-contact__details {
        width: 100%;
    }

    .ogb-home-about {
        flex-direction: column;
    }

    .ogb-home-about__content,
    .ogb-home-about__figure {
        padding-top: 0;
        margin-top: 0;
        width: 100%;
        max-width: none;
    }

    .ogb-home-contact__consent {
        width: 100%;
    }

    .ogb-home-trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ogb-home-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ogb-home-heading,
    .ogb-home-contact__row,
    .ogb-home-footer__masthead {
        gap: 24px;
    }

    .ogb-home-heading {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
    }

    .ogb-home-heading h2,
    .ogb-home-credibility .ogb-home-section__head h2,
    .ogb-home-about__content h2,
    .ogb-home-contact__intro h2 {
        width: auto;
        font-size: 32px;
        line-height: 38px;
    }

    .ogb-home-offer-card {
        height: auto;
        min-height: 96px;
        padding: 24px;
        font-size: 28px;
        line-height: 34px;
        white-space: normal;
    }

    .ogb-home-method-grid,
    .ogb-home-footer__links-grid {
        grid-template-columns: 1fr;
    }

    .ogb-home-method-card {
        width: 100%;
    }

    .ogb-home-project-card {
        height: auto;
    }

    .ogb-home-contact__link,
    .ogb-home-contact__company strong,
    .ogb-home-contact__company p,
    .ogb-home-footer__column--nav a,
    .ogb-home-footer__column--company p,
    .ogb-home-footer__column h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

.ogb-home-section,
.ogb-home-awards,
.ogb-home-credibility,
.ogb-home-contact {
    padding-top: 40px;
    padding-bottom: 40px;
}
