main {
    width: 1024px;
    margin: 60px auto 90px auto;
    @media (max-width: 700px) {
        width: 100%;
        padding-inline: 25px;
        margin-top: 30px;
    }

    h1, h2 {
        font-size: 32px;
        color: var(--secondary-text);
        font-family: "VTB Group Demi Bold", sans-serif;
        margin-bottom: 44px;
        @media (max-width: 700px) {
            margin-bottom: 12px;
        }
    }

    .toggle {
        display: flex;
        margin-bottom: 60px;
        @media (max-width: 700px) {
            margin-bottom: 35px;
        }

        .toggle_button {
            padding: 10px 20px;
            font-size: 16px;
            border-top: 1px solid var(--secondary-text);
            border-bottom: 1px solid var(--secondary-text);
            cursor: pointer;
            transition: background-color .5s;
            text-align: center;
            @media (max-width: 700px) {
                font-size: 12px;
                display: flex;
                align-items: center;
            }

            &:first-child {
                border-left: 1px solid var(--secondary-text);
            }

            &:last-child {
                border-right: 1px solid var(--secondary-text);
            }

            &.active {
                background-color: #fff;
                border: 2px solid var(--primary-blue);
            }
        }
    }


    .toggle_target {
        > * {
            display: none;
            &.active {
                display: block;
                animation: show_toggle_target 0.5s forwards;
            }
        }
    }

    .files {
        margin-bottom: 100px;

        .file {
            margin-bottom: 20px;

            .title {
                display: flex;
                gap: 20px;
                align-items: center;
                margin-bottom: 10px;

                .icon {
                    width: 40px;
                    height: 40px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        object-position: center;
                    }
                }

                p {
                    font-size: 16px;
                    color: var(--primary-blue);
                    @media (max-width: 700px) {
                        font-size: 14px;
                    }
                }
            }

            .description {
                font-size: 16px;
                color: var(--secondary-text);
                @media (max-width: 700px) {
                    font-size: 14px;
                }
            }
        }
    }

    .archive {
        .container {
            padding: 30px;
            background: var(--background-darkgray);

            .archive_element {
                color: var(--secondary-text);
                &:not(:last-child) {
                    margin-bottom: 20px;
                }
            }
        }
    }
}