@import url(../index.css);
.row-about {
    max-width: 728px;
}
.about {
    background-color: var(--white);
    padding: 24px 40px;
    margin-top: 32px;
    margin-bottom: 53px;
    border-radius: 12px;
}
.about .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.about table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(226, 228, 230, 1);
    table-layout: fixed;
}
.about table tr td:first-child {
    border-left: none;
}

.about table tr td:last-child {
    border-right: none;
}

.about table tr:last-child td {
    border-bottom: none; 
}
.about table tr:first-child td {
    border-top: none; 
}
.about table .title-table {
    font-weight: 700;
    background-color: rgba(248, 248, 248, 1);
    width: 231px;
}
.about table td {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 20px;
    border: 0.5px solid rgba(226, 228, 230, 1);
} 
.about table td a {
    color: unset;
    word-break: break-word;
}
.about table td .end-link {
    text-decoration: none;
}
.breadcrumbs .--bold {
    font-weight: 700;
}
.row-about .breadcrumbs {
    display: none;
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    gap: 4px;
    padding: 16px 0px;
}
.row-about .breadcrumbs p {
    align-content: center;
    text-align: center;
}
.row-about .breadcrumbs .icon{
    width: 20px;
    height: 20px;
    align-content: center;
    text-align: center;
}
.row .breadcrumbs a {
    color: var(--white);
    text-decoration: none;
}
.about .title {
    padding-bottom: 24px;
}
@media screen and (max-width:1024px){
    .about {
        padding: 16px;
        margin-top: unset;
        margin-bottom: 56px;
    }
    .about .title {
        font-size:20px;
        line-height: 28px;
        padding-bottom: 16px;
    }
    .about table .title-table {
        width: 150px;
    }
    .row-about .breadcrumbs {
        display: flex;
    }
}
@media screen and (max-width: 768px) {
    .about {
        margin-bottom: 29px;
    }
}
@media screen and (max-width: 540px) {
    .about table .title-table {
        width: 90px;
    }
}
