.certificate__block {
    gap: 60px;
    margin-top: 30px;
}
.certificate__image {
    width: 60%;
}
.certificate__info {
    width: 40%;
    justify-content: start;
}

.certificate__image img {
    width: 100%;
}
.certificate__info .prime__text {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 150%;
}
.informations {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.information_block {
    color: var(--grey2);
    border-bottom: 1px solid var(--grey);
    position: relative;
}
.information_block input {
    display: none;
}
.information_title {
    font-size: clamp(16px, 3vw, 20px);
    padding: 10px 0;
    display: block;
    cursor: pointer;
}
.information_title::after {
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    background: url(../image/icons/down.svg);
    background-size: 100%;
    top: 10px;
    transition: transform 0.3s ease;
}
.information_text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}
.information_text .prime__text ul {
    margin: 0;
}
.information_text .prime__text ol {
    margin: 0;
    padding-left: 20px;
}
.information_block input:checked ~ .information_text {
    max-height: none;
    padding-bottom: 20px;
}
.information_block input:checked ~ .information_title {
    color: var(--black);
}
.information_block input:checked ~ .information_title::after {
    transform: rotate(180deg);
}

.information_block.open::after {
    transform: rotate(180deg);
}
.information_block.open .information_text {
    max-height: none;
}
.information_block.open .information_title {
    color: var(--black);
}
.certificate__radio {
    display: flex;
    gap: 20px;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 22px;
    color: var(--black);
}
.certificate__value {
    padding: 14px 0;
    width: 100%;
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid var(--grey);
    font-size: clamp(18px, 3vw, 20px);
}
.certificate__value::-webkit-inner-spin-button,
.certificate__value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.certificate__value:focus {
    border-bottom: 1px solid var(--orange);
}
.certificate__value::placeholder {
    color: var(--grey2);
    line-height: 120%;
    font-size: clamp(18px, 3vw, 20px);
}
.certificate__variants {
    margin-top: 56px;
    gap: 30px;
}
.certificate__variant {
    gap: 30px;
}
.certificate__title {
    margin-top: clamp(18px, 3vw, 24px);
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
}
.certificate__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

@media(max-width: 768px) {
    .certificate__variant,
    .certificate__block {
        flex-direction: column;
        gap: 20px;
    }

    .certificate__variants,
    .certificate__block {
        margin: 0;
    }

    .certificate__image,
    .certificate__info {
        width: 100%;
    }
}