.section--about-intro {
    padding: 0 0 60px 0;
}

.card-about-intro {
    padding: 40px;
    border-radius: 30px;
}

.card-about-intro h2 {
    margin-bottom: 15px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: var(--black);
}

.card-about-intro p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 170%;
    color: var(--black);
}

.section--about-intro .section__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card-about-intro {
    flex: 0 0 calc(50% - 10px);
}

.document-block {
    padding: 40px 0;
}

.document-block:first-child {
    padding-top: 0;
}

.document-block:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.document-block h3 {
    max-width: 700px;
    margin: 0 auto 30px auto;

    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 125%;
    text-align: center;
    color: var(--black);
}

.ag_reseter table {
    width: 100%;
}

.ag_reseter td {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    justify-content: center;
}

.AG_classic .ag_thumbclassic {
    display: flex;
    background-position: bottom right;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0 10px 0 10px;
}

.document-block__content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    justify-content: center;
    margin: 0 auto;
}

.document-block__img-container {
    display: flex;
    background-position: bottom right;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0 10px 0 10px;
}

.AG_classic .ag_imageThumb {
    width: 335px;
    display: block;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    border: none;
    margin: 0;
    padding: 5px;
}

.document-block__img {
    width: 335px;
    display: block;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    border: none;
    margin: 0;
    padding: 5px;
}

.card-declaration__link {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    justify-content: space-between;
    padding: 30px 40px;
    background: var(--bg-grey);
}

.card-declaration__text span {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: var(--black);

    transition: color 0.3s ease;
}

.card-declaration__text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--black);

    transition: color 0.3s ease;
}

.card-declaration__icon {
    display: flex;
    width: 75px;
    aspect-ratio: 1;
    flex: 0 0 75px;
}

.card-declaration__icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.card-declaration__icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.card-declaration__link:hover .card-declaration__icon svg rect {
    fill: var(--accent);
}

.card-declaration__link:hover .card-declaration__icon svg path {
    stroke: white;
}

.card-declaration__link:hover .card-declaration__text span {
    color: var(--accent);
}

.card-declaration__link:hover .card-declaration__text p {
    color: var(--accent);
}

.section--certificates {
    padding: 60px 0 100px 0;
}

.section--certificates h2 {
    margin-bottom: 25px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 125%;
    text-align: center;
    color: var(--black);
}

.section--certificates .document-block__img {
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--line-grey-on-white);
}





@media(max-width: 767px) {
    .section--about-intro .section__content {
        flex-direction: column;
    }

    .card-declaration__icon {
        width: 65px;
        flex: 0 0 65px;
    }
}

@media(max-width: 575px) {

    .card-declaration__link {
        padding: 30px 30px;
    }

}