/* Лицензия */
.license__block {
    display:flex;
    flex-direction: column;
    align-items: center;
}

/* Документы */
.docs {
    width: 100%;
    background-color: var(--light-gray);
    display: flex;
    justify-self: center;
    justify-content: center;
}

.docs__text {
    max-width: 1400px;
    align-self: center;
    padding: 0 20px;
}

.docs__text h3 {
    font-weight: normal;
}

.docs__text a {
    display: block;
    position: relative;
    padding-left: 20px;
    color: var(--text-color);
    text-decoration: underline;
    transition: 250ms;
    font-weight: 400;
    flex: 1;
    transform: none;
}

.docs__text a:hover {
    color: rgb(185, 70, 52);
    font-weight: 700;
    font-size: 17px;
    transition: 250ms;
    transform: none;
}

/* Юр.инф-я */
.orginfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orginfo__block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    width: 100%;
    background: white;
    max-width: 1400px;
}

.orginfo__block img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

.orginfo__table {
    border: 2px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    max-width: 550px;
    flex: 1 1 0%;
}


/*=================================МОБИЛЬНЫЙ АДАПТИВ==========================================*/

@media (max-width: 1024px) {
    .orginfo__block img {
        display: none;
    }

    .license__block img {
        width: 100%;
    }

    .docs__text {
        padding: 0;
    }

    .docs__text a {
        padding-top: 20px;
    }
}