#partners-page .body{
    padding: 50px 0 100px 0;
}

.partners{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partners__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
}
.partner-block{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}
.partner-block td:nth-child(1) {
    width: 160px;
}
.partner-block td:nth-child(2) {
    width: 407px;
}
.partner-block td:nth-child(3) {
    width: 628px;
}
.default-table tr td div {
    justify-content: flex-start;
}
.partner-block td{
    color: #282828;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%;
}
.partner-block__title{
    color: #282828;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.partner__list{
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px 18px;
    border-radius: 10px;
    background: #FFF;
}
.partner__list-item{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D2D2D2;
}
.partner__list-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.partner__list-logo-box{
    white-space: nowrap;
    max-width: 73px;
}
.partner__list-logo-box img{
    max-width: 73px;
}
.partner__list-text-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}
.partner__list-text-box span{
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.partner__list-text-box p{
    color: #282828;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 17.643px */
}

.partners-page-block__title{
    width: 100%;
    text-align: start;
    color: #282828;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#partners-page .default-table img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}


#partners-page .default-table tr div p{
    width: 100%;
}

@media screen and (max-width: 730px) {
    .partner__list{
        display: flex;
    }
    .partners__container{
        gap: 70px;
    }
    .partner-block{
        gap: 30px;
    }
    .partners-page-block__title{
        color: #282828;
        width: 100%;
        text-align: start;
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
}