main {
    width: var(--width);
    padding: 20px 10px;
    display: flex;
    gap: 24px;
}

main h2 {
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

main .big-box {
    display: flex;
    flex-wrap: wrap;
}

main .blue_title_big_box {
    background-color: #fff;
    padding: 20px 0 8px;
}

main .list {
    margin-bottom: 28px;
}

main .blue_title {
    margin-bottom: 0;
    padding: 16px;
    color: #fff;
    background-color: #1a48c4;
    font-size: 27px;
}

.main_left {
    flex: 1;
}

.main_left_top_big_box a {
    width: calc(100% / 5);
    padding: 8px 12px;
    border-right: 1px solid rgb(204, 204, 204);
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    color: #000;
    text-align: center;
    font-size: 12px;
    line-height: 1;
}

.main_left_top_big_box a .img-box {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.main_left_top_big_box a .img-box::before {
    padding-top: 100%;
}

.main_left_top_big_box a .num {
    font-size: 27px;
    font-weight: 700;
    color: #1a48c4;
    font-family: "neue-haas-grotesk-display", Times New Roman, sans-serif;
}

.main_left_top_big_box a h3 {
    font-size: 13px;
    color: #1a48c4;
}

.main_left_cen_big_box {
    gap: 15px;
}

.main_left_cen_big_box a {
    width: calc((100% - 30px) / 3);
    background-color: #fff;
}

.main_left_cen_big_box a .img-box::before,
.main_left_bot_big_box a .img-box::before {
    padding-top: 58%;
}

.main_left_cen_big_box a .text-box,
.main_left_bot_big_box a .text-box {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.1;
    color: #101119;
    font-size: 13px;
}

.main_left_bot_big_box a {
    display: flex;
    flex-direction: column;
}

.main_left_bot_big_box a .text-box {
    padding: 6px;
    flex: 1;
}

.main_left_cen_big_box a .text-box h3,
.main_left_bot_big_box a .text-box h3 {
    font-size: 14px;
    padding-bottom: 6px;
    border-bottom: 3px solid #1a48c4;
    width: fit-content;
}

.main_left_bot_big_box a .text-box h3 {
    font-size: 12px;
}

.main_left_bot_big_box a .text-box p {
    width: 100%;
    font-size: 11px;
    flex: 1;
}

.main_left_cen_big_box a .text-box h3:hover,
.main_left_bot_big_box a .text-box h3:hover {
    color: #1a48c4;
}

.main_left_cen_big_box a .text-box span,
.main_left_bot_big_box a .text-box span {
    color: #4c5167;
    font-size: 12px;
}

.main_left_bot_big_box {
    gap: 8px;
}

.main_left_bot_big_box a {
    width: calc((100% - 32px) / 5);
}

.main_right {
    width: 300px;
    position: sticky;
    top: 20px;
    margin-bottom: auto;
    background-color: #fff;
}

.main_right::before {
    content: '';
    width: 100%;
    height: 10px;
    display: block;
    background-color: #1a48c4;
}

.main_right .list {
    padding: 8px 20px;
    margin-bottom: 0;
}

.main_right .list h2 {
    font-size: 25px;
    font-weight: bold;
}

.main-right-top-big-box a {
    width: 100%;
    border-bottom: 1px solid rgb(237, 235, 235);
    padding: 8px 0;
    display: flex;
    color: #000;
    font-size: 14px;
    line-height: 1.1;
    gap: 10px;
}

.main-right-top-big-box .img-box {
    min-width: 30%;
    width: 30%;
    max-width: 30%;
    height: fit-content;
}

.main-right-top-big-box .img-box::before {
    padding-top: 100%;
}

.main-right-top-big-box a:last-child {
    border-bottom: 0;
}

.main-right-top-big-box a .text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 14px;
}

.main-right-top-big-box a h3:hover {
    color: #1a48c4;
}

.main-right-top-big-box a .text-box span {
    color: #1a48c4;
    font-size: 13px;
    font-weight: 550;
}

@media screen and (min-width) {
    .main_left_top_big_box a:nth-of-type(5n) {
        border-right: 0;
    }
}

@media screen and (max-width:769px) {
    main {
        flex-direction: column;
        gap: 10px;
        padding: 5px;
    }

    .main_left_top_big_box a {
        width: calc(100% / 2);
    }

    .main_left_top_big_box a:nth-of-type(2n) {
        border-right: 0;
    }

    .main_left_cen_big_box {
        gap: 15px 10px;
    }

    .main_left_cen_big_box a {
        width: calc((100% - 10px) / 2);
    }

    .main_left_bot_big_box a {
        width: calc((100% - 16px) / 3);
    }

    .main_right {
        display: none;
    }
}