header {
    background: var(--main-bg);
    .wrapper {
        box-shadow: 0px 2px 12px 0px #0000001A;
    }
}
main {
    padding-top: 120px;
    padding-bottom: 120px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 40px;
    a {
        font-size: 16px;
        line-height: 20px;
        color: var(--text-2);
    }
    span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
        &::before {
            content: '\e010';
            font-family: 'icon';
            font-size: 8px;
            line-height: 10px;
            color: var(--text-2);
        }
    }
    p {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        color: var(--title);
    }
}
.promo {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 64px;
    .info {
        h1 {
            font-size: 60px;
            line-height: 64px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--title);
        }
        p {
            max-width: 740px;
            font-size: 24px;
            line-height: 32px;
        }
    }
    .list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: auto;
        p {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            line-height: 28px;
            span {
                font-size: 24px;
                line-height: 28px;
                font-weight: 500;
                color: var(--green-text);
            }
        }
    }
}
.text-block {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    p {
        font-size: 16px;
        line-height: 20px;
        color: var(--text-2);
        max-width: 720px;
    }
}
.main-img {
    margin-bottom: 120px;
}
.managment {
    margin-bottom: 240px;
    h2 {
        font-size: 36px;
        line-height: 40px;
        font-weight: 600;
        margin-bottom: 64px;
        color: var(--title);
    }
    .list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        .item {
            display: flex;
            flex-direction: column;
            padding: 24px;
            border: 1px solid var(--border);
            border-radius: 24px;
            img {
                margin-bottom: 24px;
            }
            h3 {
                font-size: 24px;
                line-height: 28px;
                font-weight: 500;
                color: var(--title);
                margin-bottom: 12px;
            }
            p {
                font-size: 16px;
                line-height: 20px;
            }
        }
    }
}
.association {
    margin-bottom: 120px;
    h2 {
        font-size: 36px;
        line-height: 40px;
        font-weight: 600;
        margin-bottom: 64px;
        color: var(--title);
    }
    .list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        .item {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid  var(--border);
            img {
                max-width: 100px;
            }
            p {
                font-size: 16px;
                line-height: 20px;
            }
            a {
                font-size: 16px;
                font-weight: 600;
                line-height: 20px;
                color: var(--green-link);
            }
            &.last {
                gap: 16px;
                border: 1px solid var(--green-bg);
            }
        }
    }
}
.member {
    padding: 120px 0;
    margin-bottom: 120px;
    background: var(--bg-2);
    position: relative;
    .wrapper {
        h2 {
            font-size: 36px;
            line-height: 40px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
            color: var(--title);
        }
        ul {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-left: 30px;
            margin-bottom: 44px;
            max-width: 768px;
            li {
                font-size: 20px;
                line-height: 28px;
                font-weight: 700;
            }
        }
        p {
            font-size: 20px;
            font-weight: 700;
            line-height: 28px;
            max-width: 768px;
            a {
                font-size: inherit;
                line-height: inherit;
                font-weight: 700;
                color: var(--green-text);
            }
        }
        img {
            position: absolute;
            right: 125px;
            top: 136px;
            max-width: 145px;
        }
    }
}
.structure {
    margin-bottom: 120px;
    h2 {
        font-size: 36px;
        line-height: 40px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--title);
    }
    & > p {
        max-width: 768px;
        margin-bottom: 24px;
        font-size: 20px;
        line-height: 28px;
    }
    .items {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        .item {
            display: grid;
            grid-template-columns: 384px 1fr;
            gap: 32px;
            padding: 40px 0;
            &:not(:last-child) {
                border-bottom: 1px solid var(--border);
            }
            .info {
                display: flex;
                flex-direction: column;
                gap: 8px;
                p {
                    font-size: 20px;
                    font-weight: 500;
                    line-height: 24px;
                    color: var(--title);
                }
                span {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 20px;
                    color: var(--green-text);
                }
            }
            .text {
                display: flex;
                flex-direction: column;
                gap: 30px;
                ol, ul {
                    margin-left: 23px;
                }
                p, li {
                    font-size: 16px;
                    line-height: 20px;
                }
            }
        }
    }
    .desc {
        display: flex;
        padding: 32px;
        background: var(--bg-2);
        border-radius: 24px;
        font-size: 20px;
        line-height: 28px;
        color: var(--title);
    }
}
@media screen and (max-width: 1640px) {
    main {
        padding-top: 96px;
        padding-bottom: 96px;
    }
    .main-img {
        margin-bottom: 96px;
    }
    .text-block {
        gap: 36px;
    }
    .managment {
        margin-bottom: 192px;
    }
    .association {
        margin-bottom: 96px;
    }
    .member {
        padding: 96px 0;
        margin-bottom: 96px;
        .wrapper {
            img {
                top: 100px;
            }
        }
    }
    .structure {
        margin-bottom: 96px;
    }
}
@media screen and (max-width: 1239px) {
    main {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .breadcrumbs {
        gap: 8px;
        margin-bottom: 32px;
        a {
            font-size: 14px;
            line-height: 16px;
        }
        p {
            font-size: 16px;
            line-height: 16px;
        }
    }
    .promo {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        .info {
            h1 {
                font-size: 40px;
                line-height: 48px;
                margin-bottom: 20px;
            }
            p {
                max-width: 100%;
                font-size: 20px;
                line-height: 28px;
            }
        }
        .list {
            margin-bottom: 0px;
            margin-right: 0px;
            p {
                font-size: 18px;
                span {
                    font-size: 20px;
                    line-height: 24px;
                }
            }
        }
    }
    .text-block {
        margin-bottom: 40px;
        gap: 32px;
        p {
            font-size: 14px;
            line-height: 16px;
        }
    }
    .main-img {
        margin-bottom: 64px;
        border-radius: 32px;
        overflow: hidden;
    }
    .managment {
        margin-bottom: 128px;
        h2 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 30px;
        }
        .list {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            .item {
                padding: 20px;
                img {
                    margin-bottom: 20px;
                }
                h3 {
                    font-size: 20px;
                    line-height: 24px;
                }
                p {
                    font-size: 14px;
                    line-height: 16px;
                }
            }
        }
    }
    .association {
        margin-bottom: 64px;
        h2 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 40px;
        }
        .list {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            .item {
                padding: 31px;
                p {
                    font-size: 14px;
                    line-height: 16px;
                }
                a {
                    font-size: 16px;
                    line-height: 16px;
                }
            }
        }
    }
    .member {
        padding: 64px 0;
        margin-bottom: 64px;
        .wrapper {
            h2 {
                font-size: 28px;
                line-height: 32px;
            }
            ul {
                gap: 4px;
                margin-left: 30px;
                margin-bottom: 44px;
                li {
                    font-size: 18px;
                }
            }
            p {
                font-size: 18px;
            }
            img {
                display: none;
            }
        }
    }
    .structure {
        margin-bottom: 64px;
         h2 {
            font-size: 28px;
            line-height: 32px;
        }
        & > p {
            margin-bottom: 8px;
            font-size: 18px;
            line-height: 28px;
        }
        .items {
            margin-bottom: 8px;
            .item {
                gap: 24px;
                padding: 32px 0;
                .info {
                    gap: 8px;
                    p {
                        font-size: 18px;
                        line-height: 24px;
                    }
                    span {
                        font-size: 12px;
                        line-height: 16px;
                    }
                }
                .text {
                    gap: 28px;
                    font-size: 14px;
                    line-height: 16px;
                }
            }
        }
        .desc {
            padding: 24px;
            font-size: 18px;
            line-height: 28px;
        }
    }
}
@media screen and (max-width: 599px) {
    main {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .breadcrumbs {
        margin-bottom: 24px;
        overflow: auto;
        &::-webkit-scrollbar {
            width: 0;
            height: 0;
        }
        a {
            white-space: nowrap;
        }
        span {
            min-width: 16px;
        }
        p {
            white-space: nowrap;
        }
    }
    .promo {
        gap: 28px;
        margin-bottom: 28px;
        .info {
            h1 {
                font-size: 36px;
                line-height: 40px;
                margin-bottom: 16px;
            }
            p {
                font-size: 18px;
                line-height: 24px;
            }
        }
        .list {
            gap: 12px;
            p {
                gap: 12px;
                font-size: 16px;
                line-height: 24px;
            }
        }
    }
    .text-block {
        margin-bottom: 28px;
    }
    .main-img {
        margin-bottom: 64px;
        border-radius: 32px;
        overflow: hidden;
    }
    .managment {
        margin-bottom: 80px;
        h2 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 28px;
        }
        .list {
            grid-template-columns: 1fr;
            gap: 16px;
            .item {
                padding: 16px;
                img {
                    margin-bottom: 16px;
                }
                h3 {
                    font-size: 20px;
                    line-height: 24px;
                }
            }
        }
    }
    .association {
        margin-bottom: 40px;
        h2 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 28px;
        }
        .list {
            grid-template-columns: 1fr;
            gap: 16px;
            .item {
                padding: 23px;
            }
        }
    }
    .member {
        padding: 40px 0;
        margin-bottom: 40px;
        .wrapper {
            h2 {
                margin-bottom: 12px;
            }
            ul {
                gap: 4px;
                margin-left: 24px;
                margin-bottom: 24px;
                li {
                    font-size: 16px;
                }
            }
            p {
                font-size: 16px;
            }
        }
    }
    .structure {
        margin-bottom: 40px;
       & > p {
            margin-bottom: 4px;
            font-size: 16px;
            line-height: 24px;
        }
        .items {
            .item {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 24px 0;
                .info {
                    gap: 8px;
                }
                .text {
                    gap: 25px;
                    ol, ul {
                        margin-left: 23px;
                    }
                    p, li {
                        font-size: 14px;
                        line-height: 16px;
                    }
                }
            }
        }
        .desc {
            padding: 16px;
            font-size: 16px;
            line-height: 24px;
        }
    }
}