.engraving-page-faq-container{
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}
.engraving-page-faq-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.engraving-page-faq-title h3{
    font-size: 28px;
    font-weight: bold;
    line-height: 150%;
    margin: 0;
    padding: 0;
    color: #27251F;
}
.engraving-page-faq-top-block{
    display: flex;
    width: 100%;
}
.engraving-page-faq-top-block img{
    object-fit: cover;
    max-height: 470px;
    width: 100%;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

/* при работе с float */

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.characteristics__list {
    max-width: 95%;
    margin: 5% auto;
    list-style: none;
}
.characteristics__item-description ul{
    list-style: inside;
}
.characteristics__item {
    margin-bottom: 15px;
}
.characteristics__title {
    position: relative;
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    text-align: left;
    border-top:1px solid #000000;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    font-weight: bold;
}

.characteristics__title:after {
    content: '';
    position: absolute;
    right: 15px;
    bottom: 50%;
    width: 17px;
    height: 17px;
    border: 1px solid;
    border-color: transparent #27251F #27251F transparent;
    transform: rotate(45deg);
    transition: all ease .4s;
}

.characteristics__title.active:after {
    border-color: #27251F transparent transparent #27251F;
    transform: rotate(225deg);
    transition: all ease .4s;
}

.characteristics__title:after {
    border-color: transparent #27251F #27251F transparent;
}

.characteristics__title.active:after {
    border-color: #27251F transparent transparent #27251F;
}

.characteristics__description {
    margin-top: -2px;
    border-bottom:1px solid #27251F;
    font-size: 16px;
    color: #27251F;
    height: 0;
    overflow: hidden;
    transition: height .4s ease-in-out;
}

.characteristics__title:hover + .characteristics__description {
    border-color: #000000;
}

.characteristics__title:focus {
    outline:none;
}

.characteristics__title:hover,
.characteristics__title:focus {
    border-color: #000000;
}

.characteristics__title:hover:after,
.characteristics__title:focus:after {
    border-color: transparent #000000 #000000 transparent;
}

.characteristics__description.active {
    height: auto;
}

.characteristics__item-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #27251F;
}

.characteristics__item-description {
    padding: 15px 0;
}

.characteristics__item-description p {
    margin: 0 15px;
}

.characteristics__item-description:first-child {
    padding-top: 30px;
}

.characteristics__item-description:last-child {
    padding-bottom: 30px;
}
@media (max-width: 1279px) {
    .engraving-page-faq-container{
        gap: 30px;
        margin: 30px 0;
    }
    .engraving-page-faq-top-block img{
        object-fit: cover;
        max-height: 400px;
        width: 100%;
    }
}
@media (max-width: 1023px) {
    .engraving-page-faq-container{
        gap: 20px;
        margin: 20px 0;
    }
    .engraving-page-faq-top-block img{
        object-fit: cover;
        max-height: 360px;
    }
}
@media (max-width: 767px) {
    .engraving-page-faq-title h3{
        font-size: 24px;
    }
    .engraving-page-faq-top-block img{
        object-fit: cover;
        max-height: 306px;
        width: 100%;
    }
    .characteristics__title{
        font-size: 14px;
        padding: 10px 15px 10px 0;
    }
    .characteristics__item-description{
        font-size: 12px;
    }
    .characteristics__item-description:first-child {
        padding: 10px 0 10px 10px;
    }
    .characteristics__title:after {
        right: 5px;
        width: 12px;
        height: 12px;
    }
    .characteristics__list {
        margin: 30px auto;
    }
}

