.box {
    margin-bottom: 50px;
}
.statistic-box {
    margin: 0 !important;
    margin-bottom: 50px !important;
}

.box-title-h3 {
    color: #000;
    font-weight: 600;
    font-size: 33px;
    line-height: 130%;
    text-align: left;
    margin-bottom: 33px;
}

.box-content-text {
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
    width: 80%;
}


.services-list {
    display: grid;
    gap: 20px;
}
.level-item {
    background: #F3F6FB;
    border-radius: 12px;
    padding: 11px;
}

.level-title {
    display: grid;
    gap: 20px;
    grid-template-columns: 48px 1fr;
    align-items: center;
}

.level-item-arrow {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(180deg, #FFF 44.27%, #F8FAFF 100%);
    box-shadow: 3px 4px 4px 0px #DEE7F6;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.level-item-arrow::after {
    display: inline-block;
    content: "";
    background: url('https://www.ugrasu.ru/local/templates/yugu2021/components/ugraphic/structure/structure-three/img/level-arrow.svg') center no-repeat;
    width: 15px;
    height: 9px;
    opacity: 1;
    transition: 0.3s ease;
}
.level-item-name {
    color: #213457;
    font-size: 18px;
    font-weight: 600;
    display: table;
    width: fit-content;
    cursor: pointer;
}
.accordion__content {
    padding: 25px;
    margin-bottom: 2px;
    font-size: 16px;
    display: none;
    margin-left: 45px;
    margin-top: 0px;
    border-radius: 14px;
}


.section-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.section-nav-item {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    padding: 35px;
    transition: 0.3s;
    background: #3CB07C;
    text-decoration: none !important;
    color: #fff;
    transition: 0.3s ease;
}
.section-nav-item .section-menu-count {
    font-weight: bold;
    font-size: 48px;
    line-height: 100%;
    color: #5ec195;
    transition: 0.3s ease;
}
.section-nav-item .section-menu-name {
    font-weight: 600;
    font-size: 19px;
    line-height: 135%;
    margin-top: 30px;
    color: #fff;
    transition: 0.3s ease;
}
.section-nav-item:hover {
    background: #3aa374;
}
.section-nav-item:hover .section-menu-count {
    transform: translateY(2px);
}
.section-nav-item:hover .section-menu-name {
    transform: translateY(-2px);
}